From c11bea41e664f59a1607bbd4a0e16f80357965db Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Tue, 3 Sep 2019 13:05:47 +0100
Subject: [PATCH 01/11] First pass: Adds transcript form component
---
.../TranscriptForm/CustomAlert/index.js | 48 +++++
packages/components/TranscriptForm/index.js | 198 ++++++++++++++++++
.../TranscriptForm/stories/index.stories.js | 47 +++++
3 files changed, 293 insertions(+)
create mode 100644 packages/components/TranscriptForm/CustomAlert/index.js
create mode 100644 packages/components/TranscriptForm/index.js
create mode 100644 packages/components/TranscriptForm/stories/index.stories.js
diff --git a/packages/components/TranscriptForm/CustomAlert/index.js b/packages/components/TranscriptForm/CustomAlert/index.js
new file mode 100644
index 0000000..1d8a9b5
--- /dev/null
+++ b/packages/components/TranscriptForm/CustomAlert/index.js
@@ -0,0 +1,48 @@
+import React, { useState } from 'react';
+import PropTypes from 'prop-types';
+import Alert from 'react-bootstrap/Alert';
+
+const CustomAlert = ( { props } ) => {
+
+ const [ showAlert, toggleShowAlert ] = useState(props.show);
+
+ const handleDismiss = () => {
+ toggleShowAlert(false);
+ };
+
+ const setAlertHeading = () => {
+ return props.heading ? {props.heading} : null;
+ };
+
+ const setAlert = () => {
+ if (showAlert) {
+ return (
+
+ {setAlertHeading()}
+ {props.message}
+
+ );
+ } else {
+ return null;
+ }
+ };
+
+ return setAlert();
+};
+
+CustomAlert.propTypes = {
+ show: PropTypes.bool.isRequired,
+ heading: PropTypes.string,
+ message: PropTypes.string,
+ vatiant: PropTypes.string,
+};
+
+CustomAlert.defaultProps = {
+ show: true,
+};
+
+export default CustomAlert;
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
new file mode 100644
index 0000000..fc5a753
--- /dev/null
+++ b/packages/components/TranscriptForm/index.js
@@ -0,0 +1,198 @@
+import React, { useState } from 'react';
+import Form from 'react-bootstrap/Form';
+import Button from 'react-bootstrap/Button';
+import Modal from 'react-bootstrap/Modal';
+// import ApiWrapper from '../../Helpers/DemoAPIWrapper/index.js';
+// import CustomAlert from './CustomAlert/index.js';
+// import './index.module.css';
+// import whichJsEnv from '../../Util/which-js-env';
+
+const TranscriptForm = ({ ...props }) => {
+
+ const [ title, setTitle ] = useState(props.title);
+ const [ description, setDescription ] = useState(props.description);
+ const [ isValidated, setValidationStatus ] = useState(false);
+ const [ shouldRedirect, toggleRedirectStatus ] = useState(false);
+ var [ formData, setFormData ] = useState({});
+ const [ notification, setNotification ] = useState(null);
+ const [ isUploading, setIsUploadingStatus ] = useState(false);
+ const [ uploadCompleted, setIsUploadComplete ] = useState(false);
+
+ const handleTitleChange = event => {
+ setTitle(event.target.value);
+ };
+
+ const handleDescriptionChange = event => {
+ setDescription(event.target.value);
+ };
+
+ // const updateFormData = (file) => {
+ // setFormData(
+ // formData = file,
+ // formData.type = file.type
+ // );
+
+ // if (file.path) {
+ // setFormData(formData.path = file.path);
+ // }
+ // };
+
+ const handleFileUpload = e => {
+ const files = Array.from(e.target.files);
+ const file = files[0];
+ console.log(file.name);
+ const tmpObj = {
+ title: title,
+ description: description,
+ file: file,
+ type: file.type
+ };
+ if (file.path) {
+ tmpObj.path = file.path;
+ }
+ setFormData(tmpObj);
+
+ if (!title) {
+ setTitle(file.name);
+ }
+ };
+
+ const sendRequest = () => {
+ setIsUploadingStatus(true);
+
+ const tmpObj = {
+ ...formData,
+ title: title,
+ description: description
+ };
+
+ setFormData(tmpObj);
+
+ return props.handleSaveForm(formData);
+ };
+
+ // const electronData = {};
+ // if (whichJsEnv() === 'electron') {
+ // // if client run inside of electron
+ // // is easier to pass another object with title, description
+ // // as well as the additional path to the file
+ // // rather then parsing a formData object in node etc..
+ // electronData = {
+ // title: formData.title,
+ // description: formData.description,
+ // path: formData.path
+ // };
+ // }
+ // try {
+ // ApiWrapper.createTranscript(props.projectId, formData, data)
+ // .then(response => {
+ // console.log('ApiWrapper.createTranscript-response ', response);
+ // setIsUploadingStatus(false);
+ // setIsUploadComplete(true);
+
+ // props.handleSaveForm(response.transcript);
+
+ // this.setState({
+ // uploading: false,
+ // uploadCompleted: true,
+ // redirect: true,
+ // newTranscriptId: response.transcriptId
+ // });
+ // props.handleSaveForm(response.transcript);
+
+ // }).catch(() => {
+ // const alert = There was an error trying to create this transcript on the server
}
+ // />;
+
+ // setNotification(alert);
+ // setIsUploadingStatus(false);
+ // toggleRedirectStatus(false);
+ // });
+
+ // } catch (e) {
+ // console.error('error submitting:::', e);
+ // }
+ // };
+
+ const handleSubmit = (event) => {
+ const form = event.currentTarget;
+ event.preventDefault();
+ event.stopPropagation();
+
+ return (!form.checkValidity()) ? setValidationStatus(true) : sendRequest();
+ };
+
+ return (
+ <>
+ {notification}
+
+
+ Title
+ handleTitleChange(e) }
+ />
+
+ Chose a title for your Transcript
+
+ Looks good!
+
+ Please chose a title for your transcript
+
+
+
+
+ Description
+ handleDescriptionChange(e) }
+ />
+
+ Chose an optional description for your Transcript
+
+ Looks good!
+
+ Please chose a description for your transcript
+
+
+
+ handleFileUpload(e) }
+ />
+
+ Select an audio or video file to upload
+
+ Looks good!
+
+ Please chose a audio or video file to upload
+
+
+
+
+
+
+ >
+ );
+};
+
+export default TranscriptForm;
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/stories/index.stories.js b/packages/components/TranscriptForm/stories/index.stories.js
new file mode 100644
index 0000000..42ab11b
--- /dev/null
+++ b/packages/components/TranscriptForm/stories/index.stories.js
@@ -0,0 +1,47 @@
+import React from 'react';
+import { storiesOf } from '@storybook/react';
+import { actions } from '@storybook/addon-actions';
+import StoryRouter from 'storybook-react-router';
+import CustomAlert from '../CustomAlert/index.js';
+import TranscriptForm from '../index.js';
+
+export const alertProps = {
+ variant: 'danger',
+ heading: 'Error could not contact the server',
+ message: 'There was an error trying to create this transcript on the server',
+ show: true
+};
+
+export const transcriptFormProps = {
+ projectId: 123,
+ title: 'Sample Transcript Title',
+ description: 'Sample Transcript Description',
+ id: 456
+};
+
+export const transcriptFormActions = actions({ handleSaveForm: 'Form saved', handleCloseModal: 'Modal closed' });
+
+storiesOf('Custom Alert', module)
+ .addDecorator(StoryRouter())
+ .add('Transcript Error', () => {
+ return (
+
+ );
+ });
+
+storiesOf('Transcript Form', module)
+ .addDecorator(StoryRouter())
+ .add('Default', () => {
+ return (
+
+ );
+ });
From ba47377db48123dc31cc2e26961290ccd66785aa Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Tue, 3 Sep 2019 14:39:45 +0100
Subject: [PATCH 02/11] Refactor TranscriptForm and Stories
---
packages/components/TranscriptForm/index.js | 186 ++++++------------
.../TranscriptForm/stories/index.stories.js | 9 +-
2 files changed, 64 insertions(+), 131 deletions(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index fc5a753..312e989 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -2,21 +2,13 @@ import React, { useState } from 'react';
import Form from 'react-bootstrap/Form';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
-// import ApiWrapper from '../../Helpers/DemoAPIWrapper/index.js';
-// import CustomAlert from './CustomAlert/index.js';
-// import './index.module.css';
-// import whichJsEnv from '../../Util/which-js-env';
const TranscriptForm = ({ ...props }) => {
const [ title, setTitle ] = useState(props.title);
const [ description, setDescription ] = useState(props.description);
const [ isValidated, setValidationStatus ] = useState(false);
- const [ shouldRedirect, toggleRedirectStatus ] = useState(false);
var [ formData, setFormData ] = useState({});
- const [ notification, setNotification ] = useState(null);
- const [ isUploading, setIsUploadingStatus ] = useState(false);
- const [ uploadCompleted, setIsUploadComplete ] = useState(false);
const handleTitleChange = event => {
setTitle(event.target.value);
@@ -26,21 +18,9 @@ const TranscriptForm = ({ ...props }) => {
setDescription(event.target.value);
};
- // const updateFormData = (file) => {
- // setFormData(
- // formData = file,
- // formData.type = file.type
- // );
-
- // if (file.path) {
- // setFormData(formData.path = file.path);
- // }
- // };
-
const handleFileUpload = e => {
const files = Array.from(e.target.files);
const file = files[0];
- console.log(file.name);
const tmpObj = {
title: title,
description: description,
@@ -57,8 +37,7 @@ const TranscriptForm = ({ ...props }) => {
}
};
- const sendRequest = () => {
- setIsUploadingStatus(true);
+ const sendRequest = async () => {
const tmpObj = {
...formData,
@@ -67,57 +46,10 @@ const TranscriptForm = ({ ...props }) => {
};
setFormData(tmpObj);
-
- return props.handleSaveForm(formData);
+ props.handleSaveForm(formData);
+ props.handleSubmitForm(formData);
};
- // const electronData = {};
- // if (whichJsEnv() === 'electron') {
- // // if client run inside of electron
- // // is easier to pass another object with title, description
- // // as well as the additional path to the file
- // // rather then parsing a formData object in node etc..
- // electronData = {
- // title: formData.title,
- // description: formData.description,
- // path: formData.path
- // };
- // }
- // try {
- // ApiWrapper.createTranscript(props.projectId, formData, data)
- // .then(response => {
- // console.log('ApiWrapper.createTranscript-response ', response);
- // setIsUploadingStatus(false);
- // setIsUploadComplete(true);
-
- // props.handleSaveForm(response.transcript);
-
- // this.setState({
- // uploading: false,
- // uploadCompleted: true,
- // redirect: true,
- // newTranscriptId: response.transcriptId
- // });
- // props.handleSaveForm(response.transcript);
-
- // }).catch(() => {
- // const alert = There was an error trying to create this transcript on the server }
- // />;
-
- // setNotification(alert);
- // setIsUploadingStatus(false);
- // toggleRedirectStatus(false);
- // });
-
- // } catch (e) {
- // console.error('error submitting:::', e);
- // }
- // };
-
const handleSubmit = (event) => {
const form = event.currentTarget;
event.preventDefault();
@@ -127,71 +59,67 @@ const TranscriptForm = ({ ...props }) => {
};
return (
- <>
- {notification}
-
-
- Title
- handleTitleChange(e) }
- />
-
+
+ Title
+ handleTitleChange(e) }
+ />
+
Chose a title for your Transcript
-
- Looks good!
-
+
+ Looks good!
+
Please chose a title for your transcript
-
-
-
-
- Description
- handleDescriptionChange(e) }
- />
-
+
+
+
+
+ Description
+ handleDescriptionChange(e) }
+ />
+
Chose an optional description for your Transcript
-
- Looks good!
-
+
+ Looks good!
+
Please chose a description for your transcript
-
-
-
- handleFileUpload(e) }
- />
-
+
+
+
+ handleFileUpload(e) }
+ />
+
Select an audio or video file to upload
-
- Looks good!
-
+
+ Looks good!
+
Please chose a audio or video file to upload
-
-
-
-
+
+
);
};
diff --git a/packages/components/TranscriptForm/stories/index.stories.js b/packages/components/TranscriptForm/stories/index.stories.js
index 42ab11b..abcdd1b 100644
--- a/packages/components/TranscriptForm/stories/index.stories.js
+++ b/packages/components/TranscriptForm/stories/index.stories.js
@@ -19,9 +19,14 @@ export const transcriptFormProps = {
id: 456
};
-export const transcriptFormActions = actions({ handleSaveForm: 'Form saved', handleCloseModal: 'Modal closed' });
+export const transcriptFormActions = actions(
+ {
+ handleSaveForm: 'Form saved',
+ handleCloseModal: 'Modal closed',
+ handleSubmitForm: 'Form submitted' }
+);
-storiesOf('Custom Alert', module)
+storiesOf('Transcript Form / Custom Alert', module)
.addDecorator(StoryRouter())
.add('Transcript Error', () => {
return (
From 3e60f94dc051e4ed093611d68175dd54c99c1714 Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Fri, 6 Sep 2019 09:57:39 +0100
Subject: [PATCH 03/11] Adds TranscriptForm with helper API Wrapper
---
.../ApiWrapper/DemoAPIWrapper/index.js | 343 +
packages/Helpers/ApiWrapper/index.js | 30 +
packages/Helpers/db/annotations.json | 1 +
packages/Helpers/db/labels.json | 65 +
packages/Helpers/db/paperedits.json | 1 +
packages/Helpers/db/projects.json | 12 +
packages/Helpers/db/transcripts.json | 135603 +++++++++++++++
packages/Helpers/which-js-env/index.js | 61 +
.../TranscriptForm/TranscriptWrapper/index.js | 48 +
packages/components/TranscriptForm/index.js | 51 +-
10 files changed, 136211 insertions(+), 4 deletions(-)
create mode 100644 packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
create mode 100644 packages/Helpers/ApiWrapper/index.js
create mode 100644 packages/Helpers/db/annotations.json
create mode 100644 packages/Helpers/db/labels.json
create mode 100644 packages/Helpers/db/paperedits.json
create mode 100644 packages/Helpers/db/projects.json
create mode 100644 packages/Helpers/db/transcripts.json
create mode 100644 packages/Helpers/which-js-env/index.js
create mode 100644 packages/components/TranscriptForm/TranscriptWrapper/index.js
diff --git a/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js b/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
new file mode 100644
index 0000000..95d798b
--- /dev/null
+++ b/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
@@ -0,0 +1,343 @@
+class DemoApiWrapper {
+ /**
+ * Projects
+ */
+ // eslint-disable-next-line class-methods-use-this
+ async getAllProjects() {
+ const response = await fetch('db/projects.json');
+ const projects = await response.json();
+ let results = 0;
+ if (projects.length !== 0) {
+ results = projects.map((project) => {
+ project.id = project._id;
+
+ return project;
+ });
+
+ return results;
+ }
+ }
+
+ // eslint-disable-next-line class-methods-use-this
+ async getProject(id) {
+ const response = await fetch('db/projects.json');
+ const projects = await response.json();
+ const project = projects.find((project) => {
+ return project._id === id;
+ });
+
+ return { status: 'ok', project: project };
+ }
+
+ async createProject(data) {
+ alert('Not implemented in demo mode');
+
+ return { status: 'false' };
+ }
+
+ async updateProject(id, data) {
+ alert('Not implemented in demo mode');
+
+ return { status: 'false' };
+ }
+
+ async deleteProject(id) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false, status: 'false', project: {} };
+ }
+
+ /**
+ * Transcripts
+ */
+ // eslint-disable-next-line class-methods-use-this
+ async getTranscripts(projectId) {
+ const response = await fetch('db/transcripts.json');
+ let transcripts = await response.json();
+ transcripts = transcripts.filter((transcript) => {
+ return transcript.projectId === projectId;
+ });
+
+ transcripts = transcripts.map((transcript) => {
+ transcript.id = transcript._id;
+
+ return transcript;
+ });
+
+ return { transcripts: transcripts };
+ }
+
+ async createTranscript(projectId, formData, data) {
+ alert('Not implemented in demo mode');
+
+ return { status: 'false' };
+ }
+
+ async getTranscript(projectId, transcriptId, queryParamsOptions) {
+ const response = await fetch('db/transcripts.json');
+ const transcripts = await response.json();
+ const transcript = transcripts.find((transcript) => {
+ return transcript._id === transcriptId;
+ });
+
+ transcript.id = transcript._id;
+ const resProject = await this.getProject(projectId);
+ transcript.projectTitle = resProject.project.title;
+ transcript.transcriptTitle = transcript.title;
+
+ return transcript;
+ }
+
+ async updateTranscript(projectId, transcriptId, queryParamsOptions, data) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false };
+ }
+
+ async deleteTranscript(projectId, transcriptId) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false, status: 'false' };
+ }
+
+ /**
+ * Annotations
+ */
+ // eslint-disable-next-line class-methods-use-this
+ async getAllAnnotations(projectId, transcriptId) {
+
+ const response = await fetch('db/annotations.json');
+ let annotations = await response.json();
+
+ annotations = annotations.filter((annotation) => {
+ return annotation.transcriptId === transcriptId;
+ });
+
+ if (annotations) {
+ annotations = annotations
+ .map((annotation) => {
+ annotation.id = annotation._id;
+
+ return annotation;
+ });
+ } else {
+ annotations = [];
+ }
+
+ return { annotations };
+ }
+
+ // not used
+ async getAnnotation(projectId, transcriptId, annotationId) {
+ const response = await fetch('db/annotations.json');
+ const annotations = await response.json();
+ const annotation = annotations[0];
+
+ return { annotation };
+ }
+
+ async createAnnotation(projectId, transcriptId, data) {
+ alert('Not implemented in demo mode');
+
+ return { 'ok': false, status: 'false', annotation: [] };
+ }
+
+ async deleteAnnotation(projectId, transcriptId, annotationId) {
+ alert('Not implemented in demo mode');
+
+ return { 'ok': false, status: 'false' };
+ }
+
+ /**
+ * Labels
+ */
+
+ // Get All Labels
+ // eslint-disable-next-line class-methods-use-this
+ async getAllLabels(projectId) {
+ const response = await fetch('db/labels.json');
+ let labels = await response.json();
+ const defaultLabel = labels[0];
+ labels = labels.filter((label) => {
+ return label.projectId === projectId;
+ });
+ labels.unshift(defaultLabel);
+
+ if (!labels) {
+ labels = [];
+ }
+
+ return { ok: true, status: 'ok', labels };
+ }
+ // Get Label - not used
+ async getLabel(projectId, labelId) {
+ const response = await fetch('db/labels.json');
+ const labels = await response.json();
+ const label = labels[0];
+
+ return { ok: true, status: 'ok', label };
+ }
+
+ // Create Label
+ async createLabel(projectId, data) {
+ alert('Not implemented in demo mode');
+
+ return ({ ok: false, status: 'false' });
+ }
+
+ // Update Label
+ async updateLabel(projectId, labelId, data) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false, status: 'false' };
+ }
+ // Delete Label
+ async deleteLabel(projectId, labelId) {
+ alert('Not implemented in demo mode');
+
+ return { status: 'false' };
+ }
+ /**
+ * PaperEdits
+ */
+ // eslint-disable-next-line class-methods-use-this
+ async getAllPaperEdits(projectId) {
+ const response = await fetch('db/paperedits.json');
+ let paperedits = await response.json();
+ paperedits = paperedits.filter((paperedit) => {
+ return paperedit.projectId === projectId;
+ });
+ const data = {};
+ data.paperedits = [];
+ data.paperedits = paperedits;
+ if (data.paperedits) {
+ data.paperedits = data.paperedits
+ .map((paperedit) => {
+ paperedit.id = paperedit._id;
+
+ return paperedit;
+ });
+ }
+
+ return data.paperedits;
+ }
+
+ // eslint-disable-next-line class-methods-use-this
+ async getPaperEdit(projectId, id) {
+ const paperEditId = id;
+ const response = await fetch('db/paperedits.json');
+ const paperedits = await response.json();
+ const paperEdit = paperedits.find((paperedit) => {
+ return paperedit.id === paperEditId;
+ });
+ if (!paperEdit) {
+ const err = new Error('No paper edit found');
+ err.statusCode = 404;
+ }
+
+ return { ok: true, status: 'ok', programmeScript: paperEdit };
+ }
+
+ async createPaperEdit(projectId, data) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false, status: 'false' };
+ }
+
+ async updatePaperEdit(projectId, id, data) {
+ alert('Not implemented in demo mode');
+
+ return { ok: true, status: 'false' };
+ }
+
+ async deletePaperEdit(projectId, id) {
+ alert('Not implemented in demo mode');
+
+ return { ok: false, status: 'false' };
+ }
+
+ /**
+ * Helper SDK function to avoid making multiple calls client side when in Annotated Transcript view
+ * Transcript + Annotations for that transcript + Labels for the project
+ */
+ async get_TranscriptLabelsAnnotations(projectId, transcriptId) {
+ // GET Transcripts
+ const transcriptResult = await this.getTranscript(projectId, transcriptId);
+ // GET Labels for Project <-- or separate request in label component
+ const labelsResults = await this.getAllLabels(projectId, transcriptId);
+ // GET Annotation for Transcript
+ const annotationsResult = await this.getAllAnnotations(projectId, transcriptId);
+
+ // Combine results
+ const results = {
+ transcriptId: transcriptId,
+ projectId: projectId,
+ projectTitle: transcriptResult.projectTitle,
+ transcriptTitle: transcriptResult.transcriptTitle,
+ url: transcriptResult.url,
+ labels: labelsResults.labels,
+ transcript: transcriptResult.transcript,
+ annotations: annotationsResult.annotations
+ };
+
+ return results;
+ }
+
+ // Helper function to get program script & associated transcript
+ // https://flaviocopes.com/javascript-async-await-array-map/
+ async get_ProgrammeScriptAndTranscripts(projectId, papereditId) { // // get transcripts list, this contain id, title, description only
+ const transcriptsResult = await this.getTranscripts(projectId);
+ // use that list of ids to loop through and get json payload for each individual transcript
+ // as separate request
+
+ const transcriptsJson = await Promise.all(transcriptsResult.transcripts.map((transcript) => {
+ const transcriptTmp = this.getTranscript(projectId, transcript.id);
+
+ return transcriptTmp;
+ }));
+
+ const annotationsJson = await Promise.all(transcriptsResult.transcripts.map((transcript) => {
+ const annotations = this.getAllAnnotations(projectId, transcript.id);
+
+ return annotations;
+ }));
+
+ // add annotations to transcript
+ transcriptsJson.forEach((tr) => {
+ // get annotations for transcript
+ const currentAnnotationsSet = annotationsJson.find((a) => {
+
+ return a.transcriptId === tr.id;
+ });
+ // if there are annotations for this transcript add them to it
+ if (currentAnnotationsSet) {
+ tr.annotations = currentAnnotationsSet.annotations;
+
+ return;
+ }
+ else {
+ tr.annotations = [];
+ }
+ });
+
+ // getting program script for paperEdit
+ const paperEditResult = await this.getPaperEdit(projectId, papereditId);
+ // getting project info - eg to get tile and description
+ const projectResult = await this.getProject(projectId);
+ // Get labels
+ const labelsResults = await this.getAllLabels(projectId);
+ // package results
+ const results = {
+ programmeScript: paperEditResult.programmeScript,
+ project: projectResult.project,
+ // each transcript contains its annotations
+ transcripts: transcriptsJson,
+ labels: labelsResults.labels
+ };
+
+ return results;
+ }
+}
+
+// module.exports = DemoApiWrapper;
+export default DemoApiWrapper;
\ No newline at end of file
diff --git a/packages/Helpers/ApiWrapper/index.js b/packages/Helpers/ApiWrapper/index.js
new file mode 100644
index 0000000..3b2695e
--- /dev/null
+++ b/packages/Helpers/ApiWrapper/index.js
@@ -0,0 +1,30 @@
+// import ApiWrapper from './ApiWrapper';
+import DemoApiWrapper from './DemoAPIWrapper/index.js';
+import whichJsEnv from '../which-js-env';
+
+const jsENV = whichJsEnv();
+
+export default ( () => {
+
+ if (jsENV === 'demo') {
+ console.log('API Wrapper demo time!');
+ const demoApiWrapper = new DemoApiWrapper();
+ Object.freeze(demoApiWrapper);
+
+ return demoApiWrapper;
+ }
+ if (jsENV === 'browser') {
+ // const apiWrapper = new ApiWrapper();
+ // Object.freeze(apiWrapper);
+
+ // return apiWrapper;
+ console.log('nope');
+ }
+ if (jsENV === 'electron') {
+ const ElectronWrapper = window.ElectronWrapper;
+ const electronWrapper = new ElectronWrapper();
+ Object.freeze(electronWrapper);
+
+ return electronWrapper;
+ }
+})();
\ No newline at end of file
diff --git a/packages/Helpers/db/annotations.json b/packages/Helpers/db/annotations.json
new file mode 100644
index 0000000..1323623
--- /dev/null
+++ b/packages/Helpers/db/annotations.json
@@ -0,0 +1 @@
+[{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":246.58,"end":249.34,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"example note on this annotation","_id":"72d4ac9d0f16481eac83946a0384d12d","id":"72d4ac9d0f16481eac83946a0384d12d"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":585.66,"end":596.03,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"4de867b1f8694235b01f64e4b5628cc1"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":13.86,"end":19.58,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"ac440b482b5842a2aa36050ed74cc132"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"29cjw29xii80000ird74yb19swa","start":19.3,"end":24.3,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"9d78e7fa69274497956f2efbd39351c6"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":116.26,"end":122.62,"labelId":"default","note":"","_id":"c75da56b01aa4f2ab571abcec8b9da92"},{"projectId":"10046281c4ad4938b7d0ae6fa9899bec","transcriptId":"1000cjw29xii80000ird74yb19swa","start":9.48,"end":13.72,"labelId":"default","note":"","_id":"00dd43dbcdd8419e9177784158aac9fa"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":109.41,"end":119.2,"labelId":"default","note":"","_id":"1de06f64ea5a4dd4a7f4b68dfb917d53"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":366.26,"end":368.95,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"ef8a71a6ec684c9295b97ded19ebd383"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":55.36,"end":66.47,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"5c48fb82cfa9416baf480b5bab432521"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":89.86,"end":101.84,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"139d1ecc3c1c496892955cab9d8d0714"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":86.66,"end":100.87,"labelId":"db055983fabd40ef84dc35fbd3dfb40b","note":"","_id":"2a3e18369d9f497289730ad291ba34b8"}]
\ No newline at end of file
diff --git a/packages/Helpers/db/labels.json b/packages/Helpers/db/labels.json
new file mode 100644
index 0000000..9e6ff49
--- /dev/null
+++ b/packages/Helpers/db/labels.json
@@ -0,0 +1,65 @@
+[
+ {
+ "_id": "default",
+ "id": "default",
+ "projectId": "default",
+ "value": "default",
+ "label": "Default",
+ "color": "orange",
+ "description": "A default label"
+ },
+ {
+ "value": "darkblue",
+ "label": "Computer vision",
+ "color": "darkblue",
+ "description": "Talking about computer vision in robotics",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "_id": "db055983fabd40ef84dc35fbd3dfb40b",
+ "id": "db055983fabd40ef84dc35fbd3dfb40b"
+ },
+ {
+ "value": "greenyellow",
+ "label": "Bacteria",
+ "color": "greenyellow",
+ "description": "Talking about Bacteria and technology",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "_id": "920fa8f97acc43b5bc0694b2e5648080",
+ "id": "920fa8f97acc43b5bc0694b2e5648080"
+ },
+ {
+ "value": "deepskyblue",
+ "label": "Test",
+ "color": "deepskyblue",
+ "description": "Test blue",
+ "projectId": "54bae8166afc4b379de5d4e10b77218d",
+ "_id": "64b071fefa394b5b968c56f8b14149b7",
+ "id": "64b071fefa394b5b968c56f8b14149b7"
+ },
+ {
+ "value": "crimson",
+ "label": "Robotics",
+ "color": "crimson",
+ "description": "when they speak about robotics",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "_id": "cb10e79c20af4a7f8b3fe8a4c789d43e",
+ "id": "cb10e79c20af4a7f8b3fe8a4c789d43e"
+ },
+ {
+ "value": "yellow",
+ "label": "D",
+ "color": "yellow",
+ "description": "",
+ "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
+ "_id": "eab94271d5894c3a8800ee59cc03d7be",
+ "id": "eab94271d5894c3a8800ee59cc03d7be"
+ },
+ {
+ "value": "yellow",
+ "label": "Test",
+ "color": "yellow",
+ "description": "",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "_id": "bddffe16cf024b2dbe74be4d64eb0ed4",
+ "id": "bddffe16cf024b2dbe74be4d64eb0ed4"
+ }
+]
diff --git a/packages/Helpers/db/paperedits.json b/packages/Helpers/db/paperedits.json
new file mode 100644
index 0000000..b6629b9
--- /dev/null
+++ b/packages/Helpers/db/paperedits.json
@@ -0,0 +1 @@
+[{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","title":"Example programme script","description":"An example programme script","elements":[{"id":"cjy1gxwtn00003h5v51deh5li","index":4,"type":"title","text":"Introduction"},{"id":"cjy3hbk6100003h5vjhnkfp9e","index":7,"type":"paper-cut","start":55.51,"end":64.47,"speaker":"TBC 11","words":[{"start":"55.51","end":"55.93","text":"hing ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"55.93","end":"56.01","text":"the ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"56.01","end":"56.92","text":"theatrics ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"56.92","end":"57.01","text":"of ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.01","end":"57.25","text":"this ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.25","end":"57.52","text":"robe ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.53","end":"58.02","text":"that ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"58.88","end":"59.84","text":"struggle ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"59.89","end":"60.08","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"60.08","end":"60.71","text":"cry ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"60.71","end":"61.07","text":"out ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"61.86","end":"61.9","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"62.77","end":"63.06","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.25","end":"63.53","text":"after ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.53","end":"63.57","text":"a ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.57","end":"63.73","text":"few ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.73","end":"64.47","text":"second","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"}],"transcriptId":"19cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gy4gi00013h5v0vcrule9","index":5,"type":"voice-over","text":"Some voice over / links notes"},{"id":"cjy1gwn4i00023h5vavkq9o55","index":2,"type":"paper-cut","start":317.32,"end":320.44,"speaker":"TBC 38","words":[{"start":"317.32","end":"318","text":"enzymes ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"317.98","end":"318.18","text":"are ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"318.14","end":"318.52","text":"simply ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"318.54","end":"319.14","text":"compounds ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.12","end":"319.3","text":"that ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.26","end":"319.58","text":"exist ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.58","end":"319.74","text":"in ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.72","end":"319.9","text":"all ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.88","end":"320.22","text":"living ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"320.2","end":"320.44","text":"things.","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"}],"transcriptId":"29cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gwgyn00013h5vsfyqrfik","index":1,"type":"paper-cut","start":575.49,"end":583.79,"speaker":"TBC 115","words":[{"start":"575.49","end":"575.72","text":"it's ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"575.74","end":"575.97","text":"part ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"575.97","end":"576.07","text":"of ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.07","end":"576.12","text":"a ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.12","end":"576.48","text":"large ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.48","end":"576.77","text":"body ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.77","end":"576.88","text":"of ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.88","end":"577.56","text":"research ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"577.56","end":"577.9","text":"that ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.02","end":"578.25","text":"is ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.25","end":"578.61","text":"starting ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.61","end":"578.73","text":"to ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.76","end":"579.2","text":"indicate ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.2","end":"579.3","text":"that ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.3","end":"579.4","text":"there ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.4","end":"579.62","text":"may ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.62","end":"579.84","text":"be ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.87","end":"579.95","text":"a ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.95","end":"580.53","text":"connection ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"580.53","end":"580.87","text":"between ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"580.87","end":"581.3","text":"people's ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.3","end":"581.81","text":"tendencies ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.81","end":"581.9","text":"for ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.9","end":"582.61","text":"empathy ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"582.86","end":"582.99","text":"and ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"583.03","end":"583.15","text":"their ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"583.15","end":"583.79","text":"behaviour ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"}],"transcriptId":"19cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gyhrx00023h5vyrhw2kgh","index":6,"type":"note","text":"some notes for the edit"},{"id":"cjy1gxazs00033h5vr5niy7y4","index":3,"type":"paper-cut","start":153.46,"end":162.24,"speaker":"TBC 31","words":[{"start":"153.46","end":"153.6","text":"I ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.58","end":"153.78","text":"read ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.76","end":"153.9","text":"when ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.88","end":"153.96","text":"I ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.94","end":"154.1","text":"was ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.06","end":"154.14","text":"a ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.16","end":"154.58","text":"teenager ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.88","end":"155.38","text":"and ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.34","end":"155.5","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.5","end":"155.86","text":"central ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.84","end":"156.18","text":"idea ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.16","end":"156.28","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.28","end":"156.44","text":"this ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.46","end":"156.7","text":"book, ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.08","end":"157.46","text":"one ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.42","end":"157.56","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.54","end":"157.68","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.64","end":"158.06","text":"essential ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.02","end":"158.32","text":"ideas ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.32","end":"158.46","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.42","end":"158.58","text":"this ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.58","end":"158.82","text":"book ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"159.32","end":"159.5","text":"is ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"159.52","end":"159.68","text":"that ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.08","end":"160.38","text":"you ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.36","end":"160.56","text":"can ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.54","end":"160.98","text":"change ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.94","end":"161.18","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.16","end":"161.68","text":"purpose ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.64","end":"161.82","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.82","end":"162.24","text":"things","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"}],"transcriptId":"39cjw29xii80000ird74yb19swa","labelId":[]}],"created":"Sat Jul 13 2019 12:48:53 GMT+0100 (BST)","_id":"c0dbe6136424483a887b28bb51936ade","id":"c0dbe6136424483a887b28bb51936ade"},{"projectId":"10046281c4ad4938b7d0ae6fa9899bec","title":"Test","description":"","elements":[{"id":"cjy6do3x600003h5v1ewqq9ni","index":1,"type":"paper-cut","start":25.43,"end":35.64,"speaker":"Soleio Cuervo","words":[{"start":"25.43","end":"25.57","text":"And ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.57","end":"25.68","text":"so ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.68","end":"25.76","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.76","end":"26.05","text":"reached ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"26.05","end":"27.17","text":"out, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.17","end":"27.59","text":"because ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.59","end":"27.74","text":"the ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.74","end":"27.93","text":"web ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.93","end":"28.15","text":"being ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.15","end":"28.22","text":"the ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.22","end":"28.59","text":"web ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.59","end":"28.73","text":"as ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.73","end":"28.8","text":"it ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.8","end":"28.97","text":"was ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.97","end":"29.18","text":"back ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.18","end":"29.48","text":"then, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.486666666666665","end":"29.756666666666664","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.793333333333333","end":"30.03333333333333","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.1","end":"30.31","text":"reached ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.25","end":"30.490000000000002","text":"out ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.4","end":"30.67","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.55","end":"30.85","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.700000000000003","end":"31.03","text":"asked, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.85","end":"31.21","text":"“Hey, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.185000000000002","end":"31.445","text":"you ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.52","end":"31.68","text":"live ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.68","end":"31.75","text":"in ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.75","end":"31.9","text":"San ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.9","end":"32.64","text":"Francisco. ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.64","end":"32.82","text":"Would ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.82","end":"32.89","text":"you ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.89","end":"32.98","text":"be ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.98","end":"33.26","text":"interested ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.26","end":"33.33","text":"in ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.33","end":"33.52","text":"coming ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.52","end":"33.63","text":"down ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.63","end":"33.7","text":"to ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.803333333333335","end":"33.92","text":"Palo ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.97666666666667","end":"34.14","text":"Alto ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.15","end":"34.36","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.36","end":"34.64","text":"meeting ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.64","end":"34.77","text":"with ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.77","end":"35.64","text":"us?”","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"}],"transcriptId":"1000cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dod0500013h5v3302rr6f","index":2,"type":"paper-cut","start":23.71,"end":33.39,"speaker":"Nathan Gleicher","words":[{"start":"23.71","end":"23.85","text":"d ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"23.85","end":"23.93","text":"how ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"23.93","end":"24","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24","end":"24.07","text":"we ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.07","end":"24.22","text":"make ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.22","end":"24.29","text":"it ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.29","end":"24.48","text":"much ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.48","end":"25.4","text":"harder? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"25.4","end":"26.31","text":"And ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.31","end":"26.58","text":"how ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.58","end":"26.91","text":"actually ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.91","end":"26.99","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.99","end":"27.05","text":"you ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"27.05","end":"27.22","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"27.22","end":"29.8","text":"that? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"28.32","end":"30.46","text":"So ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"29.635000000000005","end":"31.004999999999995","text":"two ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"30.95","end":"31.55","text":"pieces, ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.55","end":"31.81","text":"right? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.81","end":"31.9","text":"The ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.9","end":"32.45","text":"first ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"32.45","end":"33.09","text":"is ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"33.09","end":"33.39","text":"we ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"}],"transcriptId":"1001cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dojc400023h5vk6kmz0cg","index":3,"type":"paper-cut","start":21.53,"end":31.87,"speaker":"Naomi Gleit","words":[{"start":"21.53","end":"21.66","text":"I’ve ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.66","end":"21.78","text":"been ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.78","end":"21.91","text":"at ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.91","end":"22.37","text":"Facebook, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.37","end":"22.61","text":"just ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.61","end":"22.76","text":"as ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.76","end":"22.96","text":"some ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.96","end":"23.54","text":"background, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"23.54","end":"24.05","text":"for ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.05","end":"24.35","text":"almost ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.35","end":"24.7","text":"13 ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.7","end":"26.16","text":"years. ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.16","end":"26.29","text":"I ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.29","end":"26.54","text":"started ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.54","end":"26.64","text":"when ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.64","end":"26.69","text":"I ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.69","end":"26.82","text":"was ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.095000000000002","end":"27.2825","text":"21 ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.500000000000004","end":"27.744999999999997","text":"in ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.905","end":"28.207500000000003","text":"2005, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.31","end":"28.67","text":"and ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.67","end":"28.85","text":"there ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.85","end":"29.06","text":"have ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.06","end":"29.39","text":"been ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.39","end":"29.51","text":"a ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.51","end":"29.92","text":"lot ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.92","end":"31.04","text":"of ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.04","end":"31.31","text":"ups ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.31","end":"31.41","text":"and ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.41","end":"31.87","text":"do","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"}],"transcriptId":"1002cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dor2c00033h5vb6eegd7y","index":4,"type":"paper-cut","start":15.84,"end":24.78,"speaker":"Guy Rosen","words":[{"start":"15.84","end":"16.71","text":"So ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"16.71","end":"16.95","text":"let ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"16.95","end":"17.08","text":"me ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.08","end":"17.28","text":"step ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.28","end":"17.56","text":"back ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.56","end":"17.65","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.65","end":"18.17","text":"explain ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.17","end":"18.81","text":"how ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.81","end":"18.95","text":"my ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.95","end":"19.19","text":"role ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"19.310000000000002","end":"19.675","text":"works. ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"19.67","end":"20.16","text":"So ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"20.03","end":"20.645","text":"I’m ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"20.39","end":"21.13","text":"responsible ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.13","end":"21.59","text":"overall ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.59","end":"21.74","text":"for ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.74","end":"22.04","text":"the ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.04","end":"22.39","text":"safety ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.39","end":"22.49","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.49","end":"22.89","text":"security ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.89","end":"23.22","text":"work ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.22","end":"23.37","text":"at ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.37","end":"24.24","text":"Facebook ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.93","end":"24.38","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"24.155","end":"24.58","text":"I ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"24.38","end":"24.78","text":"appr","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"}],"transcriptId":"1003cjw29xii80000ird74yb19swa","labelId":[]}],"created":"Sat Jul 13 2019 18:30:23 GMT+0100 (BST)","_id":"86e938c468de4b0cb873c6e97a3a25f8","id":"86e938c468de4b0cb873c6e97a3a25f8"}]
\ No newline at end of file
diff --git a/packages/Helpers/db/projects.json b/packages/Helpers/db/projects.json
new file mode 100644
index 0000000..ea0a73d
--- /dev/null
+++ b/packages/Helpers/db/projects.json
@@ -0,0 +1,12 @@
+[
+ {
+ "title": "Ted Talks",
+ "description": "Ted Talks - sample project",
+ "_id": "94346281c4ad4938b7d0ae6fa9899bec"
+ },
+ {
+ "title": "PBS Frontline - The Facebook Dilemma",
+ "description": "Interviews from PBS Frontline documentary, The Facebook Dilemma - sample project.",
+ "_id": "10046281c4ad4938b7d0ae6fa9899bec"
+ }
+]
diff --git a/packages/Helpers/db/transcripts.json b/packages/Helpers/db/transcripts.json
new file mode 100644
index 0000000..428bf77
--- /dev/null
+++ b/packages/Helpers/db/transcripts.json
@@ -0,0 +1,135603 @@
+[
+ {
+ "_id": "19cjw29xii80000ird74yb19swa",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "title": "Kate Darling Ted Talk",
+ "description": "Ted Talk by Kate Darling ",
+ "url": "https://download.ted.com/talks/KateDarling_2018S-950k.mp4",
+ "clipName": "KateDarling_2018S-950k.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "id": 0,
+ "start": 13.02,
+ "end": 13.17,
+ "text": "There"
+ },
+ {
+ "id": 1,
+ "start": 13.17,
+ "end": 13.38,
+ "text": "is"
+ },
+ {
+ "id": 2,
+ "start": 13.38,
+ "end": 13.44,
+ "text": "a"
+ },
+ {
+ "id": 3,
+ "start": 13.44,
+ "end": 13.86,
+ "text": "day."
+ },
+ {
+ "id": 4,
+ "start": 13.86,
+ "end": 14.13,
+ "text": "About"
+ },
+ {
+ "id": 5,
+ "start": 14.13,
+ "end": 14.38,
+ "text": "ten"
+ },
+ {
+ "id": 6,
+ "start": 14.38,
+ "end": 14.61,
+ "text": "years"
+ },
+ {
+ "id": 7,
+ "start": 14.61,
+ "end": 15.15,
+ "text": "ago"
+ },
+ {
+ "id": 8,
+ "start": 15.47,
+ "end": 15.59,
+ "text": "when"
+ },
+ {
+ "id": 9,
+ "start": 15.68,
+ "end": 15.84,
+ "text": "I"
+ },
+ {
+ "id": 10,
+ "start": 15.86,
+ "end": 16.19,
+ "text": "asked"
+ },
+ {
+ "id": 11,
+ "start": 16.19,
+ "end": 16.28,
+ "text": "a"
+ },
+ {
+ "id": 12,
+ "start": 16.28,
+ "end": 16.65,
+ "text": "friend"
+ },
+ {
+ "id": 13,
+ "start": 16.65,
+ "end": 16.74,
+ "text": "to"
+ },
+ {
+ "id": 14,
+ "start": 16.74,
+ "end": 17.2,
+ "text": "hold"
+ },
+ {
+ "id": 15,
+ "start": 17.23,
+ "end": 17.33,
+ "text": "a"
+ },
+ {
+ "id": 16,
+ "start": 17.33,
+ "end": 17.63,
+ "text": "baby"
+ },
+ {
+ "id": 17,
+ "start": 17.63,
+ "end": 18.14,
+ "text": "dinosaur"
+ },
+ {
+ "id": 18,
+ "start": 18.14,
+ "end": 18.59,
+ "text": "robot"
+ },
+ {
+ "id": 19,
+ "start": 18.72,
+ "end": 19.17,
+ "text": "upside"
+ },
+ {
+ "id": 20,
+ "start": 19.17,
+ "end": 19.58,
+ "text": "down."
+ },
+ {
+ "id": 21,
+ "start": 21.83,
+ "end": 21.9,
+ "text": "It"
+ },
+ {
+ "id": 22,
+ "start": 21.95,
+ "end": 22.09,
+ "text": "was"
+ },
+ {
+ "id": 23,
+ "start": 22.1,
+ "end": 22.22,
+ "text": "a"
+ },
+ {
+ "id": 24,
+ "start": 22.23,
+ "end": 22.68,
+ "text": "toy"
+ },
+ {
+ "id": 25,
+ "start": 22.72,
+ "end": 22.99,
+ "text": "called"
+ },
+ {
+ "id": 26,
+ "start": 23.03,
+ "end": 23.39,
+ "text": "plea."
+ },
+ {
+ "id": 27,
+ "start": 23.45,
+ "end": 23.82,
+ "text": "All"
+ },
+ {
+ "id": 28,
+ "start": 24.2,
+ "end": 24.6,
+ "text": "that"
+ },
+ {
+ "id": 29,
+ "start": 24.65,
+ "end": 24.84,
+ "text": "he'd"
+ },
+ {
+ "id": 30,
+ "start": 24.86,
+ "end": 25.3,
+ "text": "ordered"
+ },
+ {
+ "id": 31,
+ "start": 25.3,
+ "end": 25.42,
+ "text": "and"
+ },
+ {
+ "id": 32,
+ "start": 25.42,
+ "end": 25.49,
+ "text": "I"
+ },
+ {
+ "id": 33,
+ "start": 25.49,
+ "end": 25.66,
+ "text": "was"
+ },
+ {
+ "id": 34,
+ "start": 25.66,
+ "end": 25.88,
+ "text": "really"
+ },
+ {
+ "id": 35,
+ "start": 25.88,
+ "end": 26.49,
+ "text": "excited"
+ },
+ {
+ "id": 36,
+ "start": 26.49,
+ "end": 26.82,
+ "text": "about"
+ },
+ {
+ "id": 37,
+ "start": 26.82,
+ "end": 27.04,
+ "text": "it"
+ },
+ {
+ "id": 38,
+ "start": 27.04,
+ "end": 27.77,
+ "text": "because"
+ },
+ {
+ "id": 39,
+ "start": 28.35,
+ "end": 28.47,
+ "text": "I've"
+ },
+ {
+ "id": 40,
+ "start": 28.59,
+ "end": 28.79,
+ "text": "always"
+ },
+ {
+ "id": 41,
+ "start": 28.79,
+ "end": 29.03,
+ "text": "loved"
+ },
+ {
+ "id": 42,
+ "start": 29.09,
+ "end": 29.6,
+ "text": "about"
+ },
+ {
+ "id": 43,
+ "start": 29.8,
+ "end": 30.04,
+ "text": "this"
+ },
+ {
+ "id": 44,
+ "start": 30.04,
+ "end": 30.2,
+ "text": "one"
+ },
+ {
+ "id": 45,
+ "start": 30.2,
+ "end": 30.46,
+ "text": "has"
+ },
+ {
+ "id": 46,
+ "start": 30.46,
+ "end": 30.76,
+ "text": "really"
+ },
+ {
+ "id": 47,
+ "start": 30.76,
+ "end": 30.96,
+ "text": "caught"
+ },
+ {
+ "id": 48,
+ "start": 30.96,
+ "end": 31.34,
+ "text": "technical"
+ },
+ {
+ "id": 49,
+ "start": 31.34,
+ "end": 31.8,
+ "text": "features."
+ },
+ {
+ "id": 50,
+ "start": 31.8,
+ "end": 31.93,
+ "text": "It"
+ },
+ {
+ "id": 51,
+ "start": 31.93,
+ "end": 32.12,
+ "text": "had"
+ },
+ {
+ "id": 52,
+ "start": 32.12,
+ "end": 32.45,
+ "text": "more"
+ },
+ {
+ "id": 53,
+ "start": 32.45,
+ "end": 32.76,
+ "text": "orders"
+ },
+ {
+ "id": 54,
+ "start": 32.76,
+ "end": 32.92,
+ "text": "and"
+ },
+ {
+ "id": 55,
+ "start": 32.92,
+ "end": 33.18,
+ "text": "touch"
+ },
+ {
+ "id": 56,
+ "start": 33.18,
+ "end": 33.88,
+ "text": "sensors."
+ },
+ {
+ "id": 57,
+ "start": 34.27,
+ "end": 34.51,
+ "text": "It"
+ },
+ {
+ "id": 58,
+ "start": 34.51,
+ "end": 34.7,
+ "text": "had"
+ },
+ {
+ "id": 59,
+ "start": 34.7,
+ "end": 34.81,
+ "text": "an"
+ },
+ {
+ "id": 60,
+ "start": 34.81,
+ "end": 34.97,
+ "text": "infra"
+ },
+ {
+ "id": 61,
+ "start": 34.97,
+ "end": 35.32,
+ "text": "red"
+ },
+ {
+ "id": 62,
+ "start": 35.31,
+ "end": 35.97,
+ "text": "camera"
+ },
+ {
+ "id": 63,
+ "start": 36.45,
+ "end": 36.61,
+ "text": "and"
+ },
+ {
+ "id": 64,
+ "start": 36.64,
+ "end": 36.79,
+ "text": "one"
+ },
+ {
+ "id": 65,
+ "start": 36.79,
+ "end": 36.87,
+ "text": "of"
+ },
+ {
+ "id": 66,
+ "start": 36.87,
+ "end": 36.98,
+ "text": "the"
+ },
+ {
+ "id": 67,
+ "start": 36.98,
+ "end": 37.22,
+ "text": "things"
+ },
+ {
+ "id": 68,
+ "start": 37.22,
+ "end": 37.33,
+ "text": "that"
+ },
+ {
+ "id": 69,
+ "start": 37.33,
+ "end": 37.53,
+ "text": "had"
+ },
+ {
+ "id": 70,
+ "start": 37.53,
+ "end": 37.69,
+ "text": "was"
+ },
+ {
+ "id": 71,
+ "start": 37.69,
+ "end": 37.83,
+ "text": "a"
+ },
+ {
+ "id": 72,
+ "start": 37.95,
+ "end": 38.39,
+ "text": "tilt"
+ },
+ {
+ "id": 73,
+ "start": 38.39,
+ "end": 39.01,
+ "text": "sensor"
+ },
+ {
+ "id": 74,
+ "start": 39.24,
+ "end": 39.51,
+ "text": "so"
+ },
+ {
+ "id": 75,
+ "start": 39.51,
+ "end": 39.61,
+ "text": "it."
+ },
+ {
+ "id": 76,
+ "start": 39.62,
+ "end": 39.82,
+ "text": "Knew"
+ },
+ {
+ "id": 77,
+ "start": 39.82,
+ "end": 39.96,
+ "text": "what"
+ },
+ {
+ "id": 78,
+ "start": 39.96,
+ "end": 40.54,
+ "text": "direction."
+ },
+ {
+ "id": 79,
+ "start": 40.54,
+ "end": 40.65,
+ "text": "It"
+ },
+ {
+ "id": 80,
+ "start": 40.65,
+ "end": 40.94,
+ "text": "was"
+ },
+ {
+ "id": 81,
+ "start": 40.97,
+ "end": 41.55,
+ "text": "facing."
+ },
+ {
+ "id": 82,
+ "start": 41.68,
+ "end": 42,
+ "text": "If"
+ },
+ {
+ "id": 83,
+ "start": 42.04,
+ "end": 42.14,
+ "text": "and"
+ },
+ {
+ "id": 84,
+ "start": 42.14,
+ "end": 42.22,
+ "text": "when"
+ },
+ {
+ "id": 85,
+ "start": 42.27,
+ "end": 42.42,
+ "text": "you"
+ },
+ {
+ "id": 86,
+ "start": 42.42,
+ "end": 42.62,
+ "text": "held"
+ },
+ {
+ "id": 87,
+ "start": 42.63,
+ "end": 42.73,
+ "text": "it"
+ },
+ {
+ "id": 88,
+ "start": 42.73,
+ "end": 43.05,
+ "text": "upside"
+ },
+ {
+ "id": 89,
+ "start": 43.05,
+ "end": 43.61,
+ "text": "down."
+ },
+ {
+ "id": 90,
+ "start": 46.53,
+ "end": 46.68,
+ "text": "I"
+ },
+ {
+ "id": 91,
+ "start": 46.69,
+ "end": 46.89,
+ "text": "thought."
+ },
+ {
+ "id": 92,
+ "start": 46.9,
+ "end": 47.1,
+ "text": "It's"
+ },
+ {
+ "id": 93,
+ "start": 47.12,
+ "end": 47.21,
+ "text": "a"
+ },
+ {
+ "id": 94,
+ "start": 47.21,
+ "end": 47.65,
+ "text": "super"
+ },
+ {
+ "id": 95,
+ "start": 47.65,
+ "end": 48.09,
+ "text": "courts"
+ },
+ {
+ "id": 96,
+ "start": 48.11,
+ "end": 48.26,
+ "text": "are"
+ },
+ {
+ "id": 97,
+ "start": 48.28,
+ "end": 48.67,
+ "text": "showing"
+ },
+ {
+ "id": 98,
+ "start": 48.66,
+ "end": 48.79,
+ "text": "off"
+ },
+ {
+ "id": 99,
+ "start": 48.79,
+ "end": 48.94,
+ "text": "to"
+ },
+ {
+ "id": 100,
+ "start": 48.94,
+ "end": 49.04,
+ "text": "my"
+ },
+ {
+ "id": 101,
+ "start": 49.04,
+ "end": 49.56,
+ "text": "friend"
+ },
+ {
+ "id": 102,
+ "start": 50,
+ "end": 50.14,
+ "text": "and"
+ },
+ {
+ "id": 103,
+ "start": 50.15,
+ "end": 50.21,
+ "text": "I"
+ },
+ {
+ "id": 104,
+ "start": 50.21,
+ "end": 50.42,
+ "text": "said"
+ },
+ {
+ "id": 105,
+ "start": 50.42,
+ "end": 50.58,
+ "text": "to"
+ },
+ {
+ "id": 106,
+ "start": 50.58,
+ "end": 50.83,
+ "text": "hold"
+ },
+ {
+ "id": 107,
+ "start": 50.83,
+ "end": 50.97,
+ "text": "it,"
+ },
+ {
+ "id": 108,
+ "start": 50.97,
+ "end": 51.16,
+ "text": "but"
+ },
+ {
+ "id": 109,
+ "start": 51.22,
+ "end": 51.49,
+ "text": "he'll"
+ },
+ {
+ "id": 110,
+ "start": 51.48,
+ "end": 51.65,
+ "text": "see"
+ },
+ {
+ "id": 111,
+ "start": 51.66,
+ "end": 51.79,
+ "text": "what"
+ },
+ {
+ "id": 112,
+ "start": 51.82,
+ "end": 52.31,
+ "text": "debts."
+ },
+ {
+ "id": 113,
+ "start": 55.22,
+ "end": 55.29,
+ "text": "We"
+ },
+ {
+ "id": 114,
+ "start": 55.36,
+ "end": 55.51,
+ "text": "were"
+ },
+ {
+ "id": 115,
+ "start": 55.51,
+ "end": 55.93,
+ "text": "watching"
+ },
+ {
+ "id": 116,
+ "start": 55.93,
+ "end": 56.01,
+ "text": "the"
+ },
+ {
+ "id": 117,
+ "start": 56.01,
+ "end": 56.92,
+ "text": "theatrics"
+ },
+ {
+ "id": 118,
+ "start": 56.92,
+ "end": 57.01,
+ "text": "of"
+ },
+ {
+ "id": 119,
+ "start": 57.01,
+ "end": 57.25,
+ "text": "this"
+ },
+ {
+ "id": 120,
+ "start": 57.25,
+ "end": 57.52,
+ "text": "robe"
+ },
+ {
+ "id": 121,
+ "start": 57.53,
+ "end": 58.02,
+ "text": "that"
+ },
+ {
+ "id": 122,
+ "start": 58.88,
+ "end": 59.84,
+ "text": "struggle"
+ },
+ {
+ "id": 123,
+ "start": 59.89,
+ "end": 60.08,
+ "text": "and"
+ },
+ {
+ "id": 124,
+ "start": 60.08,
+ "end": 60.71,
+ "text": "cry"
+ },
+ {
+ "id": 125,
+ "start": 60.71,
+ "end": 61.07,
+ "text": "out"
+ },
+ {
+ "id": 126,
+ "start": 61.86,
+ "end": 61.9,
+ "text": "and"
+ },
+ {
+ "id": 127,
+ "start": 62.77,
+ "end": 63.06,
+ "text": "and"
+ },
+ {
+ "id": 128,
+ "start": 63.25,
+ "end": 63.53,
+ "text": "after"
+ },
+ {
+ "id": 129,
+ "start": 63.53,
+ "end": 63.57,
+ "text": "a"
+ },
+ {
+ "id": 130,
+ "start": 63.57,
+ "end": 63.73,
+ "text": "few"
+ },
+ {
+ "id": 131,
+ "start": 63.73,
+ "end": 64.47,
+ "text": "seconds."
+ },
+ {
+ "id": 132,
+ "start": 64.73,
+ "end": 64.92,
+ "text": "The"
+ },
+ {
+ "id": 133,
+ "start": 64.94,
+ "end": 65.33,
+ "text": "first."
+ },
+ {
+ "id": 134,
+ "start": 65.42,
+ "end": 65.78,
+ "text": "After"
+ },
+ {
+ "id": 135,
+ "start": 65.79,
+ "end": 66,
+ "text": "my"
+ },
+ {
+ "id": 136,
+ "start": 66.01,
+ "end": 66.47,
+ "text": "little"
+ },
+ {
+ "id": 137,
+ "start": 67.66,
+ "end": 67.79,
+ "text": "and"
+ },
+ {
+ "id": 138,
+ "start": 67.87,
+ "end": 67.96,
+ "text": "I"
+ },
+ {
+ "id": 139,
+ "start": 67.96,
+ "end": 68.22,
+ "text": "said"
+ },
+ {
+ "id": 140,
+ "start": 68.22,
+ "end": 68.9,
+ "text": "o.k."
+ },
+ {
+ "id": 141,
+ "start": 69.99,
+ "end": 70.22,
+ "text": "That's"
+ },
+ {
+ "id": 142,
+ "start": 70.22,
+ "end": 70.58,
+ "text": "enough."
+ },
+ {
+ "id": 143,
+ "start": 70.58,
+ "end": 71.11,
+ "text": "Now,"
+ },
+ {
+ "id": 144,
+ "start": 71.81,
+ "end": 71.98,
+ "text": "let's"
+ },
+ {
+ "id": 145,
+ "start": 72.12,
+ "end": 72.25,
+ "text": "put"
+ },
+ {
+ "id": 146,
+ "start": 72.25,
+ "end": 72.33,
+ "text": "him"
+ },
+ {
+ "id": 147,
+ "start": 72.33,
+ "end": 72.55,
+ "text": "back"
+ },
+ {
+ "id": 148,
+ "start": 72.55,
+ "end": 73.12,
+ "text": "down"
+ },
+ {
+ "id": 149,
+ "start": 74.27,
+ "end": 74.59,
+ "text": "and"
+ },
+ {
+ "id": 150,
+ "start": 74.64,
+ "end": 75.03,
+ "text": "pepper,"
+ },
+ {
+ "id": 151,
+ "start": 75.04,
+ "end": 75.31,
+ "text": "about"
+ },
+ {
+ "id": 152,
+ "start": 75.34,
+ "end": 75.43,
+ "text": "to"
+ },
+ {
+ "id": 153,
+ "start": 75.44,
+ "end": 75.57,
+ "text": "make"
+ },
+ {
+ "id": 154,
+ "start": 75.57,
+ "end": 75.66,
+ "text": "it."
+ },
+ {
+ "id": 155,
+ "start": 75.67,
+ "end": 75.92,
+ "text": "Stop"
+ },
+ {
+ "id": 156,
+ "start": 75.92,
+ "end": 76.47,
+ "text": "crying"
+ },
+ {
+ "id": 157,
+ "start": 76.75,
+ "end": 76.8,
+ "text": "and"
+ },
+ {
+ "id": 158,
+ "start": 77.75,
+ "end": 77.79,
+ "text": "I"
+ },
+ {
+ "id": 159,
+ "start": 79.1,
+ "end": 79.29,
+ "text": "was"
+ },
+ {
+ "id": 160,
+ "start": 79.29,
+ "end": 79.44,
+ "text": "kind"
+ },
+ {
+ "id": 161,
+ "start": 79.44,
+ "end": 79.51,
+ "text": "of"
+ },
+ {
+ "id": 162,
+ "start": 79.51,
+ "end": 79.65,
+ "text": "a"
+ },
+ {
+ "id": 163,
+ "start": 79.65,
+ "end": 79.93,
+ "text": "weird"
+ },
+ {
+ "id": 164,
+ "start": 79.93,
+ "end": 80.65,
+ "text": "experience"
+ },
+ {
+ "id": 165,
+ "start": 80.65,
+ "end": 80.78,
+ "text": "for"
+ },
+ {
+ "id": 166,
+ "start": 80.78,
+ "end": 81.18,
+ "text": "me"
+ },
+ {
+ "id": 167,
+ "start": 82.09,
+ "end": 82.33,
+ "text": "one"
+ },
+ {
+ "id": 168,
+ "start": 82.35,
+ "end": 82.7,
+ "text": "thing,"
+ },
+ {
+ "id": 169,
+ "start": 83.02,
+ "end": 83.28,
+ "text": "wasn't"
+ },
+ {
+ "id": 170,
+ "start": 83.31,
+ "end": 83.38,
+ "text": "the"
+ },
+ {
+ "id": 171,
+ "start": 83.38,
+ "end": 83.75,
+ "text": "most"
+ },
+ {
+ "id": 172,
+ "start": 83.78,
+ "end": 84.39,
+ "text": "maternal"
+ },
+ {
+ "id": 173,
+ "start": 84.39,
+ "end": 84.94,
+ "text": "person"
+ },
+ {
+ "id": 174,
+ "start": 84.94,
+ "end": 85.08,
+ "text": "at"
+ },
+ {
+ "id": 175,
+ "start": 85.08,
+ "end": 85.15,
+ "text": "the"
+ },
+ {
+ "id": 176,
+ "start": 85.15,
+ "end": 85.81,
+ "text": "time."
+ },
+ {
+ "id": 177,
+ "start": 86.66,
+ "end": 86.9,
+ "text": "Although,"
+ },
+ {
+ "id": 178,
+ "start": 86.94,
+ "end": 87.16,
+ "text": "since"
+ },
+ {
+ "id": 179,
+ "start": 87.16,
+ "end": 87.27,
+ "text": "then"
+ },
+ {
+ "id": 180,
+ "start": 87.27,
+ "end": 87.38,
+ "text": "I've"
+ },
+ {
+ "id": 181,
+ "start": 87.38,
+ "end": 87.62,
+ "text": "become"
+ },
+ {
+ "id": 182,
+ "start": 87.61,
+ "end": 87.67,
+ "text": "a"
+ },
+ {
+ "id": 183,
+ "start": 87.67,
+ "end": 87.95,
+ "text": "mother"
+ },
+ {
+ "id": 184,
+ "start": 87.96,
+ "end": 88.04,
+ "text": "and"
+ },
+ {
+ "id": 185,
+ "start": 88.05,
+ "end": 88.26,
+ "text": "nine"
+ },
+ {
+ "id": 186,
+ "start": 88.26,
+ "end": 88.49,
+ "text": "months"
+ },
+ {
+ "id": 187,
+ "start": 88.49,
+ "end": 88.91,
+ "text": "ago."
+ },
+ {
+ "id": 188,
+ "start": 89.46,
+ "end": 89.64,
+ "text": "And"
+ },
+ {
+ "id": 189,
+ "start": 89.86,
+ "end": 90.1,
+ "text": "that"
+ },
+ {
+ "id": 190,
+ "start": 90.14,
+ "end": 90.45,
+ "text": "is"
+ },
+ {
+ "id": 191,
+ "start": 90.49,
+ "end": 90.71,
+ "text": "a"
+ },
+ {
+ "id": 192,
+ "start": 90.71,
+ "end": 91,
+ "text": "score"
+ },
+ {
+ "id": 193,
+ "start": 91.05,
+ "end": 91.21,
+ "text": "when"
+ },
+ {
+ "id": 194,
+ "start": 91.24,
+ "end": 91.41,
+ "text": "hold"
+ },
+ {
+ "id": 195,
+ "start": 91.41,
+ "end": 91.53,
+ "text": "them"
+ },
+ {
+ "id": 196,
+ "start": 91.53,
+ "end": 91.65,
+ "text": "up"
+ },
+ {
+ "id": 197,
+ "start": 91.65,
+ "end": 91.79,
+ "text": "to"
+ },
+ {
+ "id": 198,
+ "start": 91.8,
+ "end": 92.1,
+ "text": "now,"
+ },
+ {
+ "id": 199,
+ "start": 95.03,
+ "end": 95.27,
+ "text": "but"
+ },
+ {
+ "id": 200,
+ "start": 95.27,
+ "end": 95.49,
+ "text": "my"
+ },
+ {
+ "id": 201,
+ "start": 95.49,
+ "end": 95.88,
+ "text": "response"
+ },
+ {
+ "id": 202,
+ "start": 95.88,
+ "end": 95.91,
+ "text": "to"
+ },
+ {
+ "id": 203,
+ "start": 95.92,
+ "end": 96.12,
+ "text": "this"
+ },
+ {
+ "id": 204,
+ "start": 96.12,
+ "end": 96.43,
+ "text": "robot"
+ },
+ {
+ "id": 205,
+ "start": 96.43,
+ "end": 96.57,
+ "text": "was"
+ },
+ {
+ "id": 206,
+ "start": 96.57,
+ "end": 96.85,
+ "text": "also"
+ },
+ {
+ "id": 207,
+ "start": 96.85,
+ "end": 97.26,
+ "text": "interesting"
+ },
+ {
+ "id": 208,
+ "start": 97.26,
+ "end": 97.7,
+ "text": "because"
+ },
+ {
+ "id": 209,
+ "start": 97.87,
+ "end": 97.98,
+ "text": "I"
+ },
+ {
+ "id": 210,
+ "start": 98.01,
+ "end": 98.17,
+ "text": "knew"
+ },
+ {
+ "id": 211,
+ "start": 98.17,
+ "end": 98.91,
+ "text": "exactly"
+ },
+ {
+ "id": 212,
+ "start": 98.91,
+ "end": 99.18,
+ "text": "how"
+ },
+ {
+ "id": 213,
+ "start": 99.18,
+ "end": 99.4,
+ "text": "this"
+ },
+ {
+ "id": 214,
+ "start": 99.4,
+ "end": 100.03,
+ "text": "machine"
+ },
+ {
+ "id": 215,
+ "start": 100.07,
+ "end": 100.54,
+ "text": "work"
+ },
+ {
+ "id": 216,
+ "start": 100.57,
+ "end": 100.87,
+ "text": "it."
+ },
+ {
+ "id": 217,
+ "start": 101.49,
+ "end": 101.64,
+ "text": "And"
+ },
+ {
+ "id": 218,
+ "start": 101.67,
+ "end": 101.84,
+ "text": "yet."
+ },
+ {
+ "id": 219,
+ "start": 101.87,
+ "end": 101.97,
+ "text": "I"
+ },
+ {
+ "id": 220,
+ "start": 101.97,
+ "end": 102.37,
+ "text": "still"
+ },
+ {
+ "id": 221,
+ "start": 102.37,
+ "end": 102.65,
+ "text": "felt"
+ },
+ {
+ "id": 222,
+ "start": 102.65,
+ "end": 103.39,
+ "text": "compelled"
+ },
+ {
+ "id": 223,
+ "start": 103.39,
+ "end": 103.51,
+ "text": "to"
+ },
+ {
+ "id": 224,
+ "start": 103.51,
+ "end": 103.67,
+ "text": "be"
+ },
+ {
+ "id": 225,
+ "start": 103.67,
+ "end": 104.38,
+ "text": "kind"
+ },
+ {
+ "id": 226,
+ "start": 104.41,
+ "end": 104.59,
+ "text": "to"
+ },
+ {
+ "id": 227,
+ "start": 104.59,
+ "end": 104.79,
+ "text": "it."
+ },
+ {
+ "id": 228,
+ "start": 106.41,
+ "end": 106.61,
+ "text": "And"
+ },
+ {
+ "id": 229,
+ "start": 106.62,
+ "end": 106.9,
+ "text": "that"
+ },
+ {
+ "id": 230,
+ "start": 106.93,
+ "end": 107.71,
+ "text": "observation"
+ },
+ {
+ "id": 231,
+ "start": 107.71,
+ "end": 108.1,
+ "text": "sparked"
+ },
+ {
+ "id": 232,
+ "start": 108.1,
+ "end": 108.17,
+ "text": "that"
+ },
+ {
+ "id": 233,
+ "start": 108.18,
+ "end": 109.13,
+ "text": "curiosity"
+ },
+ {
+ "id": 234,
+ "start": 109.13,
+ "end": 109.32,
+ "text": "that"
+ },
+ {
+ "id": 235,
+ "start": 109.32,
+ "end": 109.41,
+ "text": "I"
+ },
+ {
+ "id": 236,
+ "start": 109.41,
+ "end": 109.74,
+ "text": "spent"
+ },
+ {
+ "id": 237,
+ "start": 109.74,
+ "end": 109.81,
+ "text": "the"
+ },
+ {
+ "id": 238,
+ "start": 109.81,
+ "end": 110.27,
+ "text": "fat,"
+ },
+ {
+ "id": 239,
+ "start": 110.27,
+ "end": 110.36,
+ "text": "the"
+ },
+ {
+ "id": 240,
+ "start": 110.36,
+ "end": 110.7,
+ "text": "past"
+ },
+ {
+ "id": 241,
+ "start": 110.75,
+ "end": 111.28,
+ "text": "decade"
+ },
+ {
+ "id": 242,
+ "start": 111.28,
+ "end": 112.01,
+ "text": "pursuing"
+ },
+ {
+ "id": 243,
+ "start": 112.48,
+ "end": 112.52,
+ "text": "it."
+ },
+ {
+ "id": 244,
+ "start": 112.93,
+ "end": 113.18,
+ "text": "Why"
+ },
+ {
+ "id": 245,
+ "start": 113.18,
+ "end": 113.33,
+ "text": "did"
+ },
+ {
+ "id": 246,
+ "start": 113.33,
+ "end": 113.44,
+ "text": "they"
+ },
+ {
+ "id": 247,
+ "start": 113.45,
+ "end": 113.84,
+ "text": "comfort"
+ },
+ {
+ "id": 248,
+ "start": 113.92,
+ "end": 114.17,
+ "text": "this"
+ },
+ {
+ "id": 249,
+ "start": 114.17,
+ "end": 114.6,
+ "text": "robe."
+ },
+ {
+ "id": 250,
+ "start": 116.26,
+ "end": 116.48,
+ "text": "One"
+ },
+ {
+ "id": 251,
+ "start": 116.48,
+ "end": 116.57,
+ "text": "of"
+ },
+ {
+ "id": 252,
+ "start": 116.57,
+ "end": 116.65,
+ "text": "the"
+ },
+ {
+ "id": 253,
+ "start": 116.65,
+ "end": 116.87,
+ "text": "things"
+ },
+ {
+ "id": 254,
+ "start": 116.87,
+ "end": 116.93,
+ "text": "I"
+ },
+ {
+ "id": 255,
+ "start": 116.93,
+ "end": 117.57,
+ "text": "discovered"
+ },
+ {
+ "id": 256,
+ "start": 117.57,
+ "end": 117.77,
+ "text": "was"
+ },
+ {
+ "id": 257,
+ "start": 117.77,
+ "end": 118.22,
+ "text": "that"
+ },
+ {
+ "id": 258,
+ "start": 118.45,
+ "end": 118.61,
+ "text": "my"
+ },
+ {
+ "id": 259,
+ "start": 118.61,
+ "end": 119.2,
+ "text": "treatment"
+ },
+ {
+ "id": 260,
+ "start": 119.2,
+ "end": 119.26,
+ "text": "of"
+ },
+ {
+ "id": 261,
+ "start": 119.26,
+ "end": 119.45,
+ "text": "this"
+ },
+ {
+ "id": 262,
+ "start": 119.45,
+ "end": 119.8,
+ "text": "machine"
+ },
+ {
+ "id": 263,
+ "start": 119.8,
+ "end": 119.95,
+ "text": "was"
+ },
+ {
+ "id": 264,
+ "start": 119.95,
+ "end": 120.21,
+ "text": "more"
+ },
+ {
+ "id": 265,
+ "start": 120.21,
+ "end": 120.36,
+ "text": "than"
+ },
+ {
+ "id": 266,
+ "start": 120.36,
+ "end": 120.86,
+ "text": "just"
+ },
+ {
+ "id": 267,
+ "start": 120.98,
+ "end": 121.16,
+ "text": "an"
+ },
+ {
+ "id": 268,
+ "start": 121.19,
+ "end": 121.6,
+ "text": "awkward"
+ },
+ {
+ "id": 269,
+ "start": 121.6,
+ "end": 122.08,
+ "text": "moment"
+ },
+ {
+ "id": 270,
+ "start": 122.08,
+ "end": 122.16,
+ "text": "in"
+ },
+ {
+ "id": 271,
+ "start": 122.16,
+ "end": 122.3,
+ "text": "my"
+ },
+ {
+ "id": 272,
+ "start": 122.3,
+ "end": 122.62,
+ "text": "living"
+ },
+ {
+ "id": 273,
+ "start": 122.62,
+ "end": 123,
+ "text": "room"
+ },
+ {
+ "id": 274,
+ "start": 123.45,
+ "end": 123.63,
+ "text": "that"
+ },
+ {
+ "id": 275,
+ "start": 123.74,
+ "end": 123.81,
+ "text": "in"
+ },
+ {
+ "id": 276,
+ "start": 123.81,
+ "end": 123.95,
+ "text": "a"
+ },
+ {
+ "id": 277,
+ "start": 123.95,
+ "end": 124.42,
+ "text": "world"
+ },
+ {
+ "id": 278,
+ "start": 124.45,
+ "end": 124.63,
+ "text": "were"
+ },
+ {
+ "id": 279,
+ "start": 124.64,
+ "end": 125.43,
+ "text": "increasingly"
+ },
+ {
+ "id": 280,
+ "start": 125.46,
+ "end": 126.07,
+ "text": "integrating"
+ },
+ {
+ "id": 281,
+ "start": 126.21,
+ "end": 127.02,
+ "text": "robots"
+ },
+ {
+ "id": 282,
+ "start": 127.22,
+ "end": 127.57,
+ "text": "into"
+ },
+ {
+ "id": 283,
+ "start": 127.57,
+ "end": 127.66,
+ "text": "our"
+ },
+ {
+ "id": 284,
+ "start": 127.66,
+ "end": 128.54,
+ "text": "lives"
+ },
+ {
+ "id": 285,
+ "start": 128.85,
+ "end": 128.96,
+ "text": "and"
+ },
+ {
+ "id": 286,
+ "start": 129.1,
+ "end": 129.36,
+ "text": "things"
+ },
+ {
+ "id": 287,
+ "start": 129.39,
+ "end": 129.75,
+ "text": "like"
+ },
+ {
+ "id": 288,
+ "start": 129.75,
+ "end": 130.04,
+ "text": "that"
+ },
+ {
+ "id": 289,
+ "start": 130.04,
+ "end": 130.29,
+ "text": "might"
+ },
+ {
+ "id": 290,
+ "start": 130.39,
+ "end": 130.75,
+ "text": "actually"
+ },
+ {
+ "id": 291,
+ "start": 130.75,
+ "end": 130.89,
+ "text": "have"
+ },
+ {
+ "id": 292,
+ "start": 130.89,
+ "end": 132.15,
+ "text": "consequences"
+ },
+ {
+ "id": 293,
+ "start": 133.44,
+ "end": 133.68,
+ "text": "because"
+ },
+ {
+ "id": 294,
+ "start": 133.68,
+ "end": 133.76,
+ "text": "the"
+ },
+ {
+ "id": 295,
+ "start": 133.76,
+ "end": 134.02,
+ "text": "first"
+ },
+ {
+ "id": 296,
+ "start": 134.02,
+ "end": 134.17,
+ "text": "thing"
+ },
+ {
+ "id": 297,
+ "start": 134.17,
+ "end": 134.23,
+ "text": "that"
+ },
+ {
+ "id": 298,
+ "start": 134.23,
+ "end": 134.33,
+ "text": "I"
+ },
+ {
+ "id": 299,
+ "start": 134.33,
+ "end": 135.12,
+ "text": "discovered"
+ },
+ {
+ "id": 300,
+ "start": 135.16,
+ "end": 135.35,
+ "text": "is"
+ },
+ {
+ "id": 301,
+ "start": 135.35,
+ "end": 135.53,
+ "text": "that."
+ },
+ {
+ "id": 302,
+ "start": 135.56,
+ "end": 135.8,
+ "text": "It's"
+ },
+ {
+ "id": 303,
+ "start": 135.8,
+ "end": 136.05,
+ "text": "not"
+ },
+ {
+ "id": 304,
+ "start": 136.05,
+ "end": 136.39,
+ "text": "just"
+ },
+ {
+ "id": 305,
+ "start": 136.39,
+ "end": 136.9,
+ "text": "me"
+ },
+ {
+ "id": 306,
+ "start": 139.25,
+ "end": 139.42,
+ "text": "in"
+ },
+ {
+ "id": 307,
+ "start": 139.42,
+ "end": 139.58,
+ "text": "two"
+ },
+ {
+ "id": 308,
+ "start": 139.58,
+ "end": 140.08,
+ "text": "thousand"
+ },
+ {
+ "id": 309,
+ "start": 140.08,
+ "end": 140.69,
+ "text": "seven."
+ },
+ {
+ "id": 310,
+ "start": 140.75,
+ "end": 140.88,
+ "text": "The"
+ },
+ {
+ "id": 311,
+ "start": 140.88,
+ "end": 141.4,
+ "text": "Washington"
+ },
+ {
+ "id": 312,
+ "start": 141.4,
+ "end": 141.74,
+ "text": "Post"
+ },
+ {
+ "id": 313,
+ "start": 141.74,
+ "end": 142.27,
+ "text": "reported"
+ },
+ {
+ "id": 314,
+ "start": 142.27,
+ "end": 142.42,
+ "text": "that"
+ },
+ {
+ "id": 315,
+ "start": 142.42,
+ "end": 142.51,
+ "text": "the"
+ },
+ {
+ "id": 316,
+ "start": 142.51,
+ "end": 142.94,
+ "text": "United"
+ },
+ {
+ "id": 317,
+ "start": 142.94,
+ "end": 143.21,
+ "text": "States"
+ },
+ {
+ "id": 318,
+ "start": 143.21,
+ "end": 144.05,
+ "text": "military"
+ },
+ {
+ "id": 319,
+ "start": 144.08,
+ "end": 144.28,
+ "text": "was"
+ },
+ {
+ "id": 320,
+ "start": 144.28,
+ "end": 144.82,
+ "text": "testing"
+ },
+ {
+ "id": 321,
+ "start": 144.82,
+ "end": 145.12,
+ "text": "this"
+ },
+ {
+ "id": 322,
+ "start": 145.33,
+ "end": 145.86,
+ "text": "robot"
+ },
+ {
+ "id": 323,
+ "start": 145.91,
+ "end": 146.46,
+ "text": "diffused"
+ },
+ {
+ "id": 324,
+ "start": 146.6,
+ "end": 147.31,
+ "text": "landmines."
+ },
+ {
+ "id": 325,
+ "start": 147.42,
+ "end": 147.67,
+ "text": "We"
+ },
+ {
+ "id": 326,
+ "start": 147.74,
+ "end": 148.11,
+ "text": "workers"
+ },
+ {
+ "id": 327,
+ "start": 148.35,
+ "end": 148.52,
+ "text": "were"
+ },
+ {
+ "id": 328,
+ "start": 148.57,
+ "end": 148.95,
+ "text": "shaped"
+ },
+ {
+ "id": 329,
+ "start": 148.95,
+ "end": 149.09,
+ "text": "like"
+ },
+ {
+ "id": 330,
+ "start": 149.09,
+ "end": 149.16,
+ "text": "a"
+ },
+ {
+ "id": 331,
+ "start": 149.16,
+ "end": 149.56,
+ "text": "stick"
+ },
+ {
+ "id": 332,
+ "start": 149.56,
+ "end": 150.1,
+ "text": "insect"
+ },
+ {
+ "id": 333,
+ "start": 150.16,
+ "end": 150.68,
+ "text": "would"
+ },
+ {
+ "id": 334,
+ "start": 150.7,
+ "end": 150.94,
+ "text": "walk"
+ },
+ {
+ "id": 335,
+ "start": 150.94,
+ "end": 151.16,
+ "text": "around"
+ },
+ {
+ "id": 336,
+ "start": 151.16,
+ "end": 151.2,
+ "text": "a"
+ },
+ {
+ "id": 337,
+ "start": 151.2,
+ "end": 151.8,
+ "text": "minefield"
+ },
+ {
+ "id": 338,
+ "start": 151.8,
+ "end": 151.9,
+ "text": "on"
+ },
+ {
+ "id": 339,
+ "start": 151.9,
+ "end": 152.06,
+ "text": "its"
+ },
+ {
+ "id": 340,
+ "start": 152.06,
+ "end": 152.57,
+ "text": "legs"
+ },
+ {
+ "id": 341,
+ "start": 152.82,
+ "end": 152.93,
+ "text": "and"
+ },
+ {
+ "id": 342,
+ "start": 153.07,
+ "end": 153.29,
+ "text": "every"
+ },
+ {
+ "id": 343,
+ "start": 153.29,
+ "end": 153.47,
+ "text": "time"
+ },
+ {
+ "id": 344,
+ "start": 153.47,
+ "end": 153.55,
+ "text": "he"
+ },
+ {
+ "id": 345,
+ "start": 153.55,
+ "end": 153.9,
+ "text": "stepped"
+ },
+ {
+ "id": 346,
+ "start": 153.9,
+ "end": 153.98,
+ "text": "on"
+ },
+ {
+ "id": 347,
+ "start": 153.98,
+ "end": 154.04,
+ "text": "a"
+ },
+ {
+ "id": 348,
+ "start": 154.04,
+ "end": 154.45,
+ "text": "mine."
+ },
+ {
+ "id": 349,
+ "start": 154.48,
+ "end": 154.64,
+ "text": "One"
+ },
+ {
+ "id": 350,
+ "start": 154.64,
+ "end": 154.73,
+ "text": "of"
+ },
+ {
+ "id": 351,
+ "start": 154.73,
+ "end": 154.83,
+ "text": "the"
+ },
+ {
+ "id": 352,
+ "start": 154.83,
+ "end": 155.09,
+ "text": "legs"
+ },
+ {
+ "id": 353,
+ "start": 155.09,
+ "end": 155.21,
+ "text": "would"
+ },
+ {
+ "id": 354,
+ "start": 155.21,
+ "end": 155.47,
+ "text": "blow"
+ },
+ {
+ "id": 355,
+ "start": 155.47,
+ "end": 155.76,
+ "text": "up"
+ },
+ {
+ "id": 356,
+ "start": 155.82,
+ "end": 155.99,
+ "text": "would"
+ },
+ {
+ "id": 357,
+ "start": 156.01,
+ "end": 156.53,
+ "text": "continue"
+ },
+ {
+ "id": 358,
+ "start": 156.53,
+ "end": 156.63,
+ "text": "on"
+ },
+ {
+ "id": 359,
+ "start": 156.63,
+ "end": 156.72,
+ "text": "the"
+ },
+ {
+ "id": 360,
+ "start": 156.72,
+ "end": 156.93,
+ "text": "other"
+ },
+ {
+ "id": 361,
+ "start": 156.93,
+ "end": 157.28,
+ "text": "legs"
+ },
+ {
+ "id": 362,
+ "start": 157.28,
+ "end": 157.39,
+ "text": "to"
+ },
+ {
+ "id": 363,
+ "start": 157.39,
+ "end": 157.71,
+ "text": "block"
+ },
+ {
+ "id": 364,
+ "start": 157.71,
+ "end": 157.9,
+ "text": "your"
+ },
+ {
+ "id": 365,
+ "start": 157.9,
+ "end": 158.45,
+ "text": "minds"
+ },
+ {
+ "id": 366,
+ "start": 159.23,
+ "end": 159.5,
+ "text": "in"
+ },
+ {
+ "id": 367,
+ "start": 159.53,
+ "end": 159.68,
+ "text": "the"
+ },
+ {
+ "id": 368,
+ "start": 159.68,
+ "end": 160.16,
+ "text": "colonel"
+ },
+ {
+ "id": 369,
+ "start": 160.16,
+ "end": 160.34,
+ "text": "was"
+ },
+ {
+ "id": 370,
+ "start": 160.36,
+ "end": 160.45,
+ "text": "in"
+ },
+ {
+ "id": 371,
+ "start": 160.45,
+ "end": 160.94,
+ "text": "charge"
+ },
+ {
+ "id": 372,
+ "start": 160.94,
+ "end": 161.03,
+ "text": "of"
+ },
+ {
+ "id": 373,
+ "start": 161.03,
+ "end": 161.19,
+ "text": "this"
+ },
+ {
+ "id": 374,
+ "start": 161.2,
+ "end": 161.72,
+ "text": "testing"
+ },
+ {
+ "id": 375,
+ "start": 161.72,
+ "end": 162.68,
+ "text": "exercise"
+ },
+ {
+ "id": 376,
+ "start": 163.09,
+ "end": 163.23,
+ "text": "for"
+ },
+ {
+ "id": 377,
+ "start": 163.32,
+ "end": 163.8,
+ "text": "calling"
+ },
+ {
+ "id": 378,
+ "start": 163.8,
+ "end": 163.9,
+ "text": "it"
+ },
+ {
+ "id": 379,
+ "start": 163.9,
+ "end": 164.42,
+ "text": "off"
+ },
+ {
+ "id": 380,
+ "start": 165.19,
+ "end": 165.61,
+ "text": "because"
+ },
+ {
+ "id": 381,
+ "start": 165.61,
+ "end": 165.74,
+ "text": "he"
+ },
+ {
+ "id": 382,
+ "start": 165.74,
+ "end": 166.16,
+ "text": "says"
+ },
+ {
+ "id": 383,
+ "start": 166.19,
+ "end": 166.49,
+ "text": "it's"
+ },
+ {
+ "id": 384,
+ "start": 166.49,
+ "end": 166.78,
+ "text": "too"
+ },
+ {
+ "id": 385,
+ "start": 166.78,
+ "end": 167.63,
+ "text": "inhumane"
+ },
+ {
+ "id": 386,
+ "start": 167.63,
+ "end": 167.82,
+ "text": "to"
+ },
+ {
+ "id": 387,
+ "start": 167.82,
+ "end": 168.37,
+ "text": "watch"
+ },
+ {
+ "id": 388,
+ "start": 168.37,
+ "end": 168.6,
+ "text": "this"
+ },
+ {
+ "id": 389,
+ "start": 168.6,
+ "end": 169.13,
+ "text": "damage"
+ },
+ {
+ "id": 390,
+ "start": 169.14,
+ "end": 169.55,
+ "text": "robot"
+ },
+ {
+ "id": 391,
+ "start": 169.6,
+ "end": 170.06,
+ "text": "drag"
+ },
+ {
+ "id": 392,
+ "start": 170.09,
+ "end": 170.46,
+ "text": "itself"
+ },
+ {
+ "id": 393,
+ "start": 170.46,
+ "end": 170.98,
+ "text": "along"
+ },
+ {
+ "id": 394,
+ "start": 171.34,
+ "end": 171.43,
+ "text": "the"
+ },
+ {
+ "id": 395,
+ "start": 171.44,
+ "end": 172.15,
+ "text": "minefield."
+ },
+ {
+ "id": 396,
+ "start": 175.1,
+ "end": 175.41,
+ "text": "What"
+ },
+ {
+ "id": 397,
+ "start": 175.41,
+ "end": 175.54,
+ "text": "would"
+ },
+ {
+ "id": 398,
+ "start": 175.54,
+ "end": 176.17,
+ "text": "cause"
+ },
+ {
+ "id": 399,
+ "start": 176.23,
+ "end": 176.4,
+ "text": "a"
+ },
+ {
+ "id": 400,
+ "start": 176.42,
+ "end": 176.96,
+ "text": "hardened"
+ },
+ {
+ "id": 401,
+ "start": 176.96,
+ "end": 177.67,
+ "text": "military"
+ },
+ {
+ "id": 402,
+ "start": 177.67,
+ "end": 178.51,
+ "text": "officer"
+ },
+ {
+ "id": 403,
+ "start": 178.75,
+ "end": 178.85,
+ "text": "and"
+ },
+ {
+ "id": 404,
+ "start": 179.04,
+ "end": 179.44,
+ "text": "someone"
+ },
+ {
+ "id": 405,
+ "start": 179.44,
+ "end": 179.6,
+ "text": "like"
+ },
+ {
+ "id": 406,
+ "start": 179.6,
+ "end": 180.33,
+ "text": "myself"
+ },
+ {
+ "id": 407,
+ "start": 180.95,
+ "end": 181.1,
+ "text": "to"
+ },
+ {
+ "id": 408,
+ "start": 181.1,
+ "end": 181.29,
+ "text": "have"
+ },
+ {
+ "id": 409,
+ "start": 181.29,
+ "end": 181.44,
+ "text": "this"
+ },
+ {
+ "id": 410,
+ "start": 181.44,
+ "end": 181.94,
+ "text": "response"
+ },
+ {
+ "id": 411,
+ "start": 181.94,
+ "end": 182.07,
+ "text": "to"
+ },
+ {
+ "id": 412,
+ "start": 182.07,
+ "end": 182.25,
+ "text": "row."
+ },
+ {
+ "id": 413,
+ "start": 182.25,
+ "end": 182.77,
+ "text": "But"
+ },
+ {
+ "id": 414,
+ "start": 183.53,
+ "end": 183.99,
+ "text": "what."
+ },
+ {
+ "id": 415,
+ "start": 184.07,
+ "end": 184.22,
+ "text": "Of"
+ },
+ {
+ "id": 416,
+ "start": 184.22,
+ "end": 184.51,
+ "text": "course"
+ },
+ {
+ "id": 417,
+ "start": 184.51,
+ "end": 184.62,
+ "text": "for"
+ },
+ {
+ "id": 418,
+ "start": 184.62,
+ "end": 185.08,
+ "text": "prime"
+ },
+ {
+ "id": 419,
+ "start": 185.2,
+ "end": 185.35,
+ "text": "for"
+ },
+ {
+ "id": 420,
+ "start": 185.35,
+ "end": 185.78,
+ "text": "science"
+ },
+ {
+ "id": 421,
+ "start": 185.78,
+ "end": 186.09,
+ "text": "fiction,"
+ },
+ {
+ "id": 422,
+ "start": 186.09,
+ "end": 186.44,
+ "text": "pop"
+ },
+ {
+ "id": 423,
+ "start": 186.44,
+ "end": 186.87,
+ "text": "culture"
+ },
+ {
+ "id": 424,
+ "start": 186.91,
+ "end": 187.17,
+ "text": "really"
+ },
+ {
+ "id": 425,
+ "start": 187.17,
+ "end": 187.27,
+ "text": "want"
+ },
+ {
+ "id": 426,
+ "start": 187.27,
+ "end": 187.38,
+ "text": "to"
+ },
+ {
+ "id": 427,
+ "start": 187.38,
+ "end": 188.05,
+ "text": "personify"
+ },
+ {
+ "id": 428,
+ "start": 188.05,
+ "end": 188.28,
+ "text": "these"
+ },
+ {
+ "id": 429,
+ "start": 188.29,
+ "end": 188.94,
+ "text": "things,"
+ },
+ {
+ "id": 430,
+ "start": 189.45,
+ "end": 189.72,
+ "text": "but"
+ },
+ {
+ "id": 431,
+ "start": 189.74,
+ "end": 189.87,
+ "text": "it"
+ },
+ {
+ "id": 432,
+ "start": 189.88,
+ "end": 190.07,
+ "text": "goes"
+ },
+ {
+ "id": 433,
+ "start": 190.07,
+ "end": 190.15,
+ "text": "a"
+ },
+ {
+ "id": 434,
+ "start": 190.15,
+ "end": 190.34,
+ "text": "little"
+ },
+ {
+ "id": 435,
+ "start": 190.34,
+ "end": 190.48,
+ "text": "bit"
+ },
+ {
+ "id": 436,
+ "start": 190.48,
+ "end": 190.8,
+ "text": "deeper"
+ },
+ {
+ "id": 437,
+ "start": 190.8,
+ "end": 190.94,
+ "text": "than"
+ },
+ {
+ "id": 438,
+ "start": 190.94,
+ "end": 191.27,
+ "text": "that"
+ },
+ {
+ "id": 439,
+ "start": 192.25,
+ "end": 192.38,
+ "text": "it"
+ },
+ {
+ "id": 440,
+ "start": 192.38,
+ "end": 192.7,
+ "text": "turns"
+ },
+ {
+ "id": 441,
+ "start": 192.7,
+ "end": 192.81,
+ "text": "out"
+ },
+ {
+ "id": 442,
+ "start": 192.81,
+ "end": 192.95,
+ "text": "that"
+ },
+ {
+ "id": 443,
+ "start": 192.95,
+ "end": 193.03,
+ "text": "we"
+ },
+ {
+ "id": 444,
+ "start": 193.03,
+ "end": 193.08,
+ "text": "are"
+ },
+ {
+ "id": 445,
+ "start": 193.08,
+ "end": 193.95,
+ "text": "biologically"
+ },
+ {
+ "id": 446,
+ "start": 193.95,
+ "end": 194.49,
+ "text": "hard"
+ },
+ {
+ "id": 447,
+ "start": 194.49,
+ "end": 194.96,
+ "text": "wired"
+ },
+ {
+ "id": 448,
+ "start": 194.96,
+ "end": 195.09,
+ "text": "to"
+ },
+ {
+ "id": 449,
+ "start": 195.09,
+ "end": 195.84,
+ "text": "project"
+ },
+ {
+ "id": 450,
+ "start": 196.1,
+ "end": 196.89,
+ "text": "intent"
+ },
+ {
+ "id": 451,
+ "start": 196.92,
+ "end": 197.17,
+ "text": "and"
+ },
+ {
+ "id": 452,
+ "start": 197.19,
+ "end": 197.63,
+ "text": "life"
+ },
+ {
+ "id": 453,
+ "start": 197.69,
+ "end": 198.27,
+ "text": "onto"
+ },
+ {
+ "id": 454,
+ "start": 198.58,
+ "end": 198.81,
+ "text": "any"
+ },
+ {
+ "id": 455,
+ "start": 198.81,
+ "end": 199.38,
+ "text": "movement"
+ },
+ {
+ "id": 456,
+ "start": 199.38,
+ "end": 199.49,
+ "text": "in"
+ },
+ {
+ "id": 457,
+ "start": 199.49,
+ "end": 199.57,
+ "text": "a"
+ },
+ {
+ "id": 458,
+ "start": 199.58,
+ "end": 200.12,
+ "text": "physical"
+ },
+ {
+ "id": 459,
+ "start": 200.12,
+ "end": 200.52,
+ "text": "space."
+ },
+ {
+ "id": 460,
+ "start": 200.52,
+ "end": 200.68,
+ "text": "It"
+ },
+ {
+ "id": 461,
+ "start": 200.68,
+ "end": 201.15,
+ "text": "seems"
+ },
+ {
+ "id": 462,
+ "start": 201.15,
+ "end": 201.23,
+ "text": "I"
+ },
+ {
+ "id": 463,
+ "start": 201.28,
+ "end": 201.86,
+ "text": "promised"
+ },
+ {
+ "id": 464,
+ "start": 201.92,
+ "end": 202.37,
+ "text": "us"
+ },
+ {
+ "id": 465,
+ "start": 202.96,
+ "end": 203.14,
+ "text": "some"
+ },
+ {
+ "id": 466,
+ "start": 203.37,
+ "end": 203.74,
+ "text": "people"
+ },
+ {
+ "id": 467,
+ "start": 203.75,
+ "end": 204,
+ "text": "treat"
+ },
+ {
+ "id": 468,
+ "start": 204.03,
+ "end": 204.23,
+ "text": "all"
+ },
+ {
+ "id": 469,
+ "start": 204.23,
+ "end": 204.47,
+ "text": "sort"
+ },
+ {
+ "id": 470,
+ "start": 204.47,
+ "end": 204.59,
+ "text": "of"
+ },
+ {
+ "id": 471,
+ "start": 204.59,
+ "end": 204.95,
+ "text": "robots"
+ },
+ {
+ "id": 472,
+ "start": 204.95,
+ "end": 205.13,
+ "text": "like"
+ },
+ {
+ "id": 473,
+ "start": 205.13,
+ "end": 205.3,
+ "text": "their"
+ },
+ {
+ "id": 474,
+ "start": 205.31,
+ "end": 205.86,
+ "text": "life."
+ },
+ {
+ "id": 475,
+ "start": 206.65,
+ "end": 206.9,
+ "text": "These"
+ },
+ {
+ "id": 476,
+ "start": 206.93,
+ "end": 207.25,
+ "text": "bomb"
+ },
+ {
+ "id": 477,
+ "start": 207.25,
+ "end": 208.02,
+ "text": "disposal"
+ },
+ {
+ "id": 478,
+ "start": 208.05,
+ "end": 208.58,
+ "text": "units"
+ },
+ {
+ "id": 479,
+ "start": 208.58,
+ "end": 208.77,
+ "text": "get"
+ },
+ {
+ "id": 480,
+ "start": 208.77,
+ "end": 209.4,
+ "text": "names."
+ },
+ {
+ "id": 481,
+ "start": 209.44,
+ "end": 209.54,
+ "text": "They"
+ },
+ {
+ "id": 482,
+ "start": 209.54,
+ "end": 209.73,
+ "text": "get"
+ },
+ {
+ "id": 483,
+ "start": 209.73,
+ "end": 210.18,
+ "text": "medals"
+ },
+ {
+ "id": 484,
+ "start": 210.18,
+ "end": 210.27,
+ "text": "of"
+ },
+ {
+ "id": 485,
+ "start": 210.27,
+ "end": 210.67,
+ "text": "honour"
+ },
+ {
+ "id": 486,
+ "start": 211.13,
+ "end": 211.4,
+ "text": "had"
+ },
+ {
+ "id": 487,
+ "start": 211.4,
+ "end": 211.97,
+ "text": "funeral"
+ },
+ {
+ "id": 488,
+ "start": 211.98,
+ "end": 212.18,
+ "text": "for"
+ },
+ {
+ "id": 489,
+ "start": 212.19,
+ "end": 212.37,
+ "text": "them"
+ },
+ {
+ "id": 490,
+ "start": 212.37,
+ "end": 212.49,
+ "text": "with"
+ },
+ {
+ "id": 491,
+ "start": 212.52,
+ "end": 212.79,
+ "text": "gun"
+ },
+ {
+ "id": 492,
+ "start": 212.78,
+ "end": 213.28,
+ "text": "salutes."
+ },
+ {
+ "id": 493,
+ "start": 214.85,
+ "end": 215.08,
+ "text": "Research"
+ },
+ {
+ "id": 494,
+ "start": 215.16,
+ "end": 215.53,
+ "text": "shows"
+ },
+ {
+ "id": 495,
+ "start": 215.55,
+ "end": 215.67,
+ "text": "that"
+ },
+ {
+ "id": 496,
+ "start": 215.67,
+ "end": 215.76,
+ "text": "we"
+ },
+ {
+ "id": 497,
+ "start": 215.76,
+ "end": 215.88,
+ "text": "do"
+ },
+ {
+ "id": 498,
+ "start": 215.88,
+ "end": 216.06,
+ "text": "this."
+ },
+ {
+ "id": 499,
+ "start": 216.09,
+ "end": 216.33,
+ "text": "Even"
+ },
+ {
+ "id": 500,
+ "start": 216.33,
+ "end": 216.49,
+ "text": "with"
+ },
+ {
+ "id": 501,
+ "start": 216.5,
+ "end": 216.8,
+ "text": "very"
+ },
+ {
+ "id": 502,
+ "start": 216.8,
+ "end": 217.22,
+ "text": "simple"
+ },
+ {
+ "id": 503,
+ "start": 217.22,
+ "end": 217.77,
+ "text": "household"
+ },
+ {
+ "id": 504,
+ "start": 217.77,
+ "end": 218.27,
+ "text": "robots"
+ },
+ {
+ "id": 505,
+ "start": 218.27,
+ "end": 218.57,
+ "text": "like"
+ },
+ {
+ "id": 506,
+ "start": 218.84,
+ "end": 219.02,
+ "text": "the"
+ },
+ {
+ "id": 507,
+ "start": 219.02,
+ "end": 219.3,
+ "text": "room."
+ },
+ {
+ "id": 508,
+ "start": 219.3,
+ "end": 219.4,
+ "text": "A"
+ },
+ {
+ "id": 509,
+ "start": 219.4,
+ "end": 219.85,
+ "text": "vacuum"
+ },
+ {
+ "id": 510,
+ "start": 219.85,
+ "end": 220.31,
+ "text": "cleaner."
+ },
+ {
+ "id": 511,
+ "start": 221.68,
+ "end": 221.94,
+ "text": "Just"
+ },
+ {
+ "id": 512,
+ "start": 221.94,
+ "end": 222,
+ "text": "a"
+ },
+ {
+ "id": 513,
+ "start": 222,
+ "end": 222.53,
+ "text": "desk"
+ },
+ {
+ "id": 514,
+ "start": 222.53,
+ "end": 222.69,
+ "text": "that"
+ },
+ {
+ "id": 515,
+ "start": 222.69,
+ "end": 222.99,
+ "text": "runs"
+ },
+ {
+ "id": 516,
+ "start": 222.99,
+ "end": 223.28,
+ "text": "around"
+ },
+ {
+ "id": 517,
+ "start": 223.28,
+ "end": 223.36,
+ "text": "the"
+ },
+ {
+ "id": 518,
+ "start": 223.36,
+ "end": 223.74,
+ "text": "floor"
+ },
+ {
+ "id": 519,
+ "start": 223.74,
+ "end": 223.83,
+ "text": "and"
+ },
+ {
+ "id": 520,
+ "start": 223.86,
+ "end": 224.23,
+ "text": "clean"
+ },
+ {
+ "id": 521,
+ "start": 224.23,
+ "end": 224.46,
+ "text": "it"
+ },
+ {
+ "id": 522,
+ "start": 224.83,
+ "end": 225,
+ "text": "just"
+ },
+ {
+ "id": 523,
+ "start": 225.02,
+ "end": 225.1,
+ "text": "the"
+ },
+ {
+ "id": 524,
+ "start": 225.1,
+ "end": 225.45,
+ "text": "fact"
+ },
+ {
+ "id": 525,
+ "start": 225.45,
+ "end": 225.57,
+ "text": "that"
+ },
+ {
+ "id": 526,
+ "start": 225.57,
+ "end": 225.75,
+ "text": "it's"
+ },
+ {
+ "id": 527,
+ "start": 225.75,
+ "end": 226.23,
+ "text": "moving"
+ },
+ {
+ "id": 528,
+ "start": 226.23,
+ "end": 226.56,
+ "text": "around"
+ },
+ {
+ "id": 529,
+ "start": 226.56,
+ "end": 226.67,
+ "text": "on"
+ },
+ {
+ "id": 530,
+ "start": 226.67,
+ "end": 226.81,
+ "text": "his"
+ },
+ {
+ "id": 531,
+ "start": 226.84,
+ "end": 227.12,
+ "text": "own"
+ },
+ {
+ "id": 532,
+ "start": 227.12,
+ "end": 227.21,
+ "text": "will"
+ },
+ {
+ "id": 533,
+ "start": 227.21,
+ "end": 227.56,
+ "text": "cause"
+ },
+ {
+ "id": 534,
+ "start": 227.56,
+ "end": 227.8,
+ "text": "people"
+ },
+ {
+ "id": 535,
+ "start": 227.8,
+ "end": 227.97,
+ "text": "to"
+ },
+ {
+ "id": 536,
+ "start": 227.97,
+ "end": 228.43,
+ "text": "name"
+ },
+ {
+ "id": 537,
+ "start": 228.43,
+ "end": 228.62,
+ "text": "the"
+ },
+ {
+ "id": 538,
+ "start": 228.62,
+ "end": 229.02,
+ "text": "marimba"
+ },
+ {
+ "id": 539,
+ "start": 229.27,
+ "end": 229.42,
+ "text": "and"
+ },
+ {
+ "id": 540,
+ "start": 229.47,
+ "end": 229.7,
+ "text": "feel"
+ },
+ {
+ "id": 541,
+ "start": 229.7,
+ "end": 230.13,
+ "text": "bad"
+ },
+ {
+ "id": 542,
+ "start": 230.13,
+ "end": 230.29,
+ "text": "for"
+ },
+ {
+ "id": 543,
+ "start": 230.29,
+ "end": 230.4,
+ "text": "the"
+ },
+ {
+ "id": 544,
+ "start": 230.4,
+ "end": 230.62,
+ "text": "room."
+ },
+ {
+ "id": 545,
+ "start": 230.61,
+ "end": 230.74,
+ "text": "But"
+ },
+ {
+ "id": 546,
+ "start": 230.75,
+ "end": 230.85,
+ "text": "when"
+ },
+ {
+ "id": 547,
+ "start": 230.85,
+ "end": 230.91,
+ "text": "he"
+ },
+ {
+ "id": 548,
+ "start": 230.92,
+ "end": 231.12,
+ "text": "gets"
+ },
+ {
+ "id": 549,
+ "start": 231.12,
+ "end": 231.45,
+ "text": "stuck"
+ },
+ {
+ "id": 550,
+ "start": 231.44,
+ "end": 231.62,
+ "text": "under"
+ },
+ {
+ "id": 551,
+ "start": 231.63,
+ "end": 231.73,
+ "text": "the"
+ },
+ {
+ "id": 552,
+ "start": 231.73,
+ "end": 232.57,
+ "text": "couch."
+ },
+ {
+ "id": 553,
+ "start": 234.54,
+ "end": 234.71,
+ "text": "We"
+ },
+ {
+ "id": 554,
+ "start": 234.71,
+ "end": 234.86,
+ "text": "can"
+ },
+ {
+ "id": 555,
+ "start": 234.86,
+ "end": 235.36,
+ "text": "design"
+ },
+ {
+ "id": 556,
+ "start": 235.38,
+ "end": 235.67,
+ "text": "about"
+ },
+ {
+ "id": 557,
+ "start": 235.67,
+ "end": 236.49,
+ "text": "specifically"
+ },
+ {
+ "id": 558,
+ "start": 236.49,
+ "end": 236.66,
+ "text": "to"
+ },
+ {
+ "id": 559,
+ "start": 236.66,
+ "end": 236.96,
+ "text": "invoke"
+ },
+ {
+ "id": 560,
+ "start": 237,
+ "end": 237.21,
+ "text": "this"
+ },
+ {
+ "id": 561,
+ "start": 237.21,
+ "end": 237.78,
+ "text": "response"
+ },
+ {
+ "id": 562,
+ "start": 237.78,
+ "end": 238.15,
+ "text": "using"
+ },
+ {
+ "id": 563,
+ "start": 238.24,
+ "end": 238.91,
+ "text": "eyes"
+ },
+ {
+ "id": 564,
+ "start": 239.16,
+ "end": 239.33,
+ "text": "and"
+ },
+ {
+ "id": 565,
+ "start": 239.34,
+ "end": 240.23,
+ "text": "faces"
+ },
+ {
+ "id": 566,
+ "start": 240.44,
+ "end": 240.62,
+ "text": "were"
+ },
+ {
+ "id": 567,
+ "start": 240.66,
+ "end": 241.28,
+ "text": "movement."
+ },
+ {
+ "id": 568,
+ "start": 241.32,
+ "end": 241.71,
+ "text": "People"
+ },
+ {
+ "id": 569,
+ "start": 241.74,
+ "end": 241.97,
+ "text": "are"
+ },
+ {
+ "id": 570,
+ "start": 241.97,
+ "end": 242.53,
+ "text": "magically"
+ },
+ {
+ "id": 571,
+ "start": 242.53,
+ "end": 243.47,
+ "text": "subconsciously"
+ },
+ {
+ "id": 572,
+ "start": 243.48,
+ "end": 244.36,
+ "text": "associate"
+ },
+ {
+ "id": 573,
+ "start": 244.56,
+ "end": 244.72,
+ "text": "with"
+ },
+ {
+ "id": 574,
+ "start": 244.73,
+ "end": 245.08,
+ "text": "state"
+ },
+ {
+ "id": 575,
+ "start": 245.08,
+ "end": 245.17,
+ "text": "of"
+ },
+ {
+ "id": 576,
+ "start": 245.17,
+ "end": 245.86,
+ "text": "mind."
+ },
+ {
+ "id": 577,
+ "start": 246.58,
+ "end": 246.77,
+ "text": "There's"
+ },
+ {
+ "id": 578,
+ "start": 246.83,
+ "end": 246.94,
+ "text": "an"
+ },
+ {
+ "id": 579,
+ "start": 246.94,
+ "end": 247.36,
+ "text": "entire"
+ },
+ {
+ "id": 580,
+ "start": 247.36,
+ "end": 247.58,
+ "text": "body"
+ },
+ {
+ "id": 581,
+ "start": 247.58,
+ "end": 247.69,
+ "text": "of"
+ },
+ {
+ "id": 582,
+ "start": 247.69,
+ "end": 248.1,
+ "text": "research"
+ },
+ {
+ "id": 583,
+ "start": 248.11,
+ "end": 248.35,
+ "text": "called"
+ },
+ {
+ "id": 584,
+ "start": 248.34,
+ "end": 248.58,
+ "text": "Human"
+ },
+ {
+ "id": 585,
+ "start": 248.59,
+ "end": 248.86,
+ "text": "robot"
+ },
+ {
+ "id": 586,
+ "start": 248.87,
+ "end": 249.34,
+ "text": "interaction"
+ },
+ {
+ "id": 587,
+ "start": 249.36,
+ "end": 249.59,
+ "text": "that"
+ },
+ {
+ "id": 588,
+ "start": 249.66,
+ "end": 249.92,
+ "text": "really"
+ },
+ {
+ "id": 589,
+ "start": 249.92,
+ "end": 250.4,
+ "text": "shows"
+ },
+ {
+ "id": 590,
+ "start": 250.4,
+ "end": 250.61,
+ "text": "how"
+ },
+ {
+ "id": 591,
+ "start": 250.61,
+ "end": 250.7,
+ "text": "all"
+ },
+ {
+ "id": 592,
+ "start": 250.7,
+ "end": 250.89,
+ "text": "this"
+ },
+ {
+ "id": 593,
+ "start": 250.89,
+ "end": 251.33,
+ "text": "works"
+ },
+ {
+ "id": 594,
+ "start": 251.65,
+ "end": 251.88,
+ "text": "so."
+ },
+ {
+ "id": 595,
+ "start": 251.88,
+ "end": 252.01,
+ "text": "For"
+ },
+ {
+ "id": 596,
+ "start": 252.01,
+ "end": 252.58,
+ "text": "example."
+ },
+ {
+ "id": 597,
+ "start": 252.58,
+ "end": 253.13,
+ "text": "Researchers"
+ },
+ {
+ "id": 598,
+ "start": 253.13,
+ "end": 253.38,
+ "text": "at"
+ },
+ {
+ "id": 599,
+ "start": 253.44,
+ "end": 253.98,
+ "text": "Stamford"
+ },
+ {
+ "id": 600,
+ "start": 253.98,
+ "end": 254.48,
+ "text": "University"
+ },
+ {
+ "id": 601,
+ "start": 254.48,
+ "end": 254.77,
+ "text": "found"
+ },
+ {
+ "id": 602,
+ "start": 254.77,
+ "end": 254.94,
+ "text": "out"
+ },
+ {
+ "id": 603,
+ "start": 254.94,
+ "end": 255.08,
+ "text": "that"
+ },
+ {
+ "id": 604,
+ "start": 255.1,
+ "end": 255.32,
+ "text": "makes"
+ },
+ {
+ "id": 605,
+ "start": 255.32,
+ "end": 255.66,
+ "text": "people"
+ },
+ {
+ "id": 606,
+ "start": 255.66,
+ "end": 255.92,
+ "text": "really"
+ },
+ {
+ "id": 607,
+ "start": 255.92,
+ "end": 256.6,
+ "text": "uncomfortable"
+ },
+ {
+ "id": 608,
+ "start": 256.63,
+ "end": 256.76,
+ "text": "and"
+ },
+ {
+ "id": 609,
+ "start": 256.79,
+ "end": 257.05,
+ "text": "asked"
+ },
+ {
+ "id": 610,
+ "start": 257.05,
+ "end": 257.17,
+ "text": "them"
+ },
+ {
+ "id": 611,
+ "start": 257.17,
+ "end": 257.27,
+ "text": "to"
+ },
+ {
+ "id": 612,
+ "start": 257.27,
+ "end": 257.54,
+ "text": "touch"
+ },
+ {
+ "id": 613,
+ "start": 257.54,
+ "end": 257.66,
+ "text": "her"
+ },
+ {
+ "id": 614,
+ "start": 257.66,
+ "end": 257.87,
+ "text": "about"
+ },
+ {
+ "id": 615,
+ "start": 257.86,
+ "end": 257.95,
+ "text": "his"
+ },
+ {
+ "id": 616,
+ "start": 257.96,
+ "end": 258.37,
+ "text": "private"
+ },
+ {
+ "id": 617,
+ "start": 258.37,
+ "end": 258.94,
+ "text": "parts"
+ },
+ {
+ "id": 618,
+ "start": 261.63,
+ "end": 261.93,
+ "text": "from"
+ },
+ {
+ "id": 619,
+ "start": 261.93,
+ "end": 262.11,
+ "text": "this"
+ },
+ {
+ "id": 620,
+ "start": 262.18,
+ "end": 262.48,
+ "text": "from"
+ },
+ {
+ "id": 621,
+ "start": 262.48,
+ "end": 262.71,
+ "text": "any"
+ },
+ {
+ "id": 622,
+ "start": 262.8,
+ "end": 262.99,
+ "text": "other"
+ },
+ {
+ "id": 623,
+ "start": 262.99,
+ "end": 263.39,
+ "text": "studies."
+ },
+ {
+ "id": 624,
+ "start": 263.39,
+ "end": 263.55,
+ "text": "We"
+ },
+ {
+ "id": 625,
+ "start": 263.55,
+ "end": 264.09,
+ "text": "know."
+ },
+ {
+ "id": 626,
+ "start": 264.48,
+ "end": 264.67,
+ "text": "We"
+ },
+ {
+ "id": 627,
+ "start": 264.67,
+ "end": 265.1,
+ "text": "know"
+ },
+ {
+ "id": 628,
+ "start": 265.1,
+ "end": 265.25,
+ "text": "that"
+ },
+ {
+ "id": 629,
+ "start": 265.25,
+ "end": 265.79,
+ "text": "people"
+ },
+ {
+ "id": 630,
+ "start": 265.79,
+ "end": 266.42,
+ "text": "respond"
+ },
+ {
+ "id": 631,
+ "start": 266.42,
+ "end": 266.52,
+ "text": "to"
+ },
+ {
+ "id": 632,
+ "start": 266.52,
+ "end": 266.65,
+ "text": "the"
+ },
+ {
+ "id": 633,
+ "start": 266.65,
+ "end": 267.28,
+ "text": "cues"
+ },
+ {
+ "id": 634,
+ "start": 267.28,
+ "end": 267.56,
+ "text": "given"
+ },
+ {
+ "id": 635,
+ "start": 267.56,
+ "end": 267.67,
+ "text": "to"
+ },
+ {
+ "id": 636,
+ "start": 267.67,
+ "end": 267.88,
+ "text": "them"
+ },
+ {
+ "id": 637,
+ "start": 267.88,
+ "end": 268,
+ "text": "by"
+ },
+ {
+ "id": 638,
+ "start": 268,
+ "end": 268.17,
+ "text": "the"
+ },
+ {
+ "id": 639,
+ "start": 268.19,
+ "end": 268.67,
+ "text": "lifelike"
+ },
+ {
+ "id": 640,
+ "start": 268.69,
+ "end": 269.46,
+ "text": "machines."
+ },
+ {
+ "id": 641,
+ "start": 269.9,
+ "end": 270.19,
+ "text": "Even"
+ },
+ {
+ "id": 642,
+ "start": 270.19,
+ "end": 270.29,
+ "text": "if"
+ },
+ {
+ "id": 643,
+ "start": 270.29,
+ "end": 270.43,
+ "text": "they"
+ },
+ {
+ "id": 644,
+ "start": 270.43,
+ "end": 270.68,
+ "text": "know"
+ },
+ {
+ "id": 645,
+ "start": 270.68,
+ "end": 270.82,
+ "text": "that"
+ },
+ {
+ "id": 646,
+ "start": 270.82,
+ "end": 270.99,
+ "text": "they're"
+ },
+ {
+ "id": 647,
+ "start": 270.99,
+ "end": 271.28,
+ "text": "not"
+ },
+ {
+ "id": 648,
+ "start": 271.3,
+ "end": 271.58,
+ "text": "real."
+ },
+ {
+ "id": 649,
+ "start": 274.49,
+ "end": 274.69,
+ "text": "We're"
+ },
+ {
+ "id": 650,
+ "start": 274.69,
+ "end": 274.96,
+ "text": "heading"
+ },
+ {
+ "id": 651,
+ "start": 274.96,
+ "end": 275.21,
+ "text": "towards"
+ },
+ {
+ "id": 652,
+ "start": 275.21,
+ "end": 275.28,
+ "text": "a"
+ },
+ {
+ "id": 653,
+ "start": 275.28,
+ "end": 275.71,
+ "text": "world"
+ },
+ {
+ "id": 654,
+ "start": 275.71,
+ "end": 275.9,
+ "text": "where"
+ },
+ {
+ "id": 655,
+ "start": 275.9,
+ "end": 276.33,
+ "text": "robots"
+ },
+ {
+ "id": 656,
+ "start": 276.34,
+ "end": 276.52,
+ "text": "are"
+ },
+ {
+ "id": 657,
+ "start": 276.55,
+ "end": 277.18,
+ "text": "everywhere"
+ },
+ {
+ "id": 658,
+ "start": 277.71,
+ "end": 277.96,
+ "text": "about"
+ },
+ {
+ "id": 659,
+ "start": 277.96,
+ "end": 278.02,
+ "text": "the"
+ },
+ {
+ "id": 660,
+ "start": 278.02,
+ "end": 278.61,
+ "text": "technology"
+ },
+ {
+ "id": 661,
+ "start": 278.61,
+ "end": 278.81,
+ "text": "is"
+ },
+ {
+ "id": 662,
+ "start": 278.84,
+ "end": 279.24,
+ "text": "moving"
+ },
+ {
+ "id": 663,
+ "start": 279.24,
+ "end": 279.41,
+ "text": "out"
+ },
+ {
+ "id": 664,
+ "start": 279.41,
+ "end": 279.57,
+ "text": "from"
+ },
+ {
+ "id": 665,
+ "start": 279.57,
+ "end": 279.84,
+ "text": "behind"
+ },
+ {
+ "id": 666,
+ "start": 279.84,
+ "end": 280.26,
+ "text": "factory"
+ },
+ {
+ "id": 667,
+ "start": 280.26,
+ "end": 280.81,
+ "text": "was"
+ },
+ {
+ "id": 668,
+ "start": 280.88,
+ "end": 281.36,
+ "text": "entering"
+ },
+ {
+ "id": 669,
+ "start": 281.4,
+ "end": 282.33,
+ "text": "workplaces"
+ },
+ {
+ "id": 670,
+ "start": 282.34,
+ "end": 283.29,
+ "text": "households"
+ },
+ {
+ "id": 671,
+ "start": 283.61,
+ "end": 283.81,
+ "text": "and"
+ },
+ {
+ "id": 672,
+ "start": 284.11,
+ "end": 284.34,
+ "text": "as"
+ },
+ {
+ "id": 673,
+ "start": 284.34,
+ "end": 284.55,
+ "text": "these"
+ },
+ {
+ "id": 674,
+ "start": 284.55,
+ "end": 285.22,
+ "text": "machines."
+ },
+ {
+ "id": 675,
+ "start": 285.22,
+ "end": 285.32,
+ "text": "They"
+ },
+ {
+ "id": 676,
+ "start": 285.33,
+ "end": 285.89,
+ "text": "can"
+ },
+ {
+ "id": 677,
+ "start": 285.92,
+ "end": 286.63,
+ "text": "sense"
+ },
+ {
+ "id": 678,
+ "start": 286.63,
+ "end": 286.99,
+ "text": "and"
+ },
+ {
+ "id": 679,
+ "start": 287.21,
+ "end": 287.45,
+ "text": "make"
+ },
+ {
+ "id": 680,
+ "start": 287.45,
+ "end": 287.48,
+ "text": "a"
+ },
+ {
+ "id": 681,
+ "start": 287.49,
+ "end": 287.78,
+ "text": "ton"
+ },
+ {
+ "id": 682,
+ "start": 287.77,
+ "end": 287.89,
+ "text": "of"
+ },
+ {
+ "id": 683,
+ "start": 287.89,
+ "end": 288.02,
+ "text": "my"
+ },
+ {
+ "id": 684,
+ "start": 288.04,
+ "end": 288.69,
+ "text": "decisions"
+ },
+ {
+ "id": 685,
+ "start": 288.69,
+ "end": 288.92,
+ "text": "and"
+ },
+ {
+ "id": 686,
+ "start": 288.99,
+ "end": 289.54,
+ "text": "learn"
+ },
+ {
+ "id": 687,
+ "start": 290.05,
+ "end": 290.37,
+ "text": "enter"
+ },
+ {
+ "id": 688,
+ "start": 290.37,
+ "end": 290.58,
+ "text": "into"
+ },
+ {
+ "id": 689,
+ "start": 290.58,
+ "end": 290.72,
+ "text": "the"
+ },
+ {
+ "id": 690,
+ "start": 290.72,
+ "end": 291.09,
+ "text": "shared"
+ },
+ {
+ "id": 691,
+ "start": 291.09,
+ "end": 292.16,
+ "text": "spaces."
+ },
+ {
+ "id": 692,
+ "start": 292.68,
+ "end": 292.77,
+ "text": "I"
+ },
+ {
+ "id": 693,
+ "start": 292.78,
+ "end": 293.01,
+ "text": "think"
+ },
+ {
+ "id": 694,
+ "start": 293.01,
+ "end": 293.19,
+ "text": "that"
+ },
+ {
+ "id": 695,
+ "start": 293.19,
+ "end": 293.39,
+ "text": "maybe"
+ },
+ {
+ "id": 696,
+ "start": 293.42,
+ "end": 293.51,
+ "text": "the"
+ },
+ {
+ "id": 697,
+ "start": 293.51,
+ "end": 293.76,
+ "text": "best"
+ },
+ {
+ "id": 698,
+ "start": 293.76,
+ "end": 294.32,
+ "text": "analogy."
+ },
+ {
+ "id": 699,
+ "start": 294.32,
+ "end": 294.45,
+ "text": "We"
+ },
+ {
+ "id": 700,
+ "start": 294.45,
+ "end": 294.76,
+ "text": "have"
+ },
+ {
+ "id": 701,
+ "start": 294.76,
+ "end": 294.84,
+ "text": "for"
+ },
+ {
+ "id": 702,
+ "start": 294.84,
+ "end": 295.08,
+ "text": "this"
+ },
+ {
+ "id": 703,
+ "start": 295.08,
+ "end": 295.21,
+ "text": "is"
+ },
+ {
+ "id": 704,
+ "start": 295.2,
+ "end": 295.32,
+ "text": "our"
+ },
+ {
+ "id": 705,
+ "start": 295.32,
+ "end": 296.04,
+ "text": "relationship"
+ },
+ {
+ "id": 706,
+ "start": 296.04,
+ "end": 296.21,
+ "text": "with"
+ },
+ {
+ "id": 707,
+ "start": 296.34,
+ "end": 297.08,
+ "text": "animals."
+ },
+ {
+ "id": 708,
+ "start": 297.49,
+ "end": 297.99,
+ "text": "Thousands"
+ },
+ {
+ "id": 709,
+ "start": 297.99,
+ "end": 298.08,
+ "text": "of"
+ },
+ {
+ "id": 710,
+ "start": 298.08,
+ "end": 298.32,
+ "text": "years"
+ },
+ {
+ "id": 711,
+ "start": 298.32,
+ "end": 298.82,
+ "text": "ago,"
+ },
+ {
+ "id": 712,
+ "start": 299.29,
+ "end": 299.44,
+ "text": "we"
+ },
+ {
+ "id": 713,
+ "start": 299.44,
+ "end": 299.76,
+ "text": "started"
+ },
+ {
+ "id": 714,
+ "start": 299.76,
+ "end": 299.86,
+ "text": "to"
+ },
+ {
+ "id": 715,
+ "start": 299.86,
+ "end": 300.54,
+ "text": "domesticate"
+ },
+ {
+ "id": 716,
+ "start": 300.54,
+ "end": 301.15,
+ "text": "animals"
+ },
+ {
+ "id": 717,
+ "start": 301.3,
+ "end": 301.37,
+ "text": "and"
+ },
+ {
+ "id": 718,
+ "start": 301.51,
+ "end": 301.64,
+ "text": "we"
+ },
+ {
+ "id": 719,
+ "start": 301.64,
+ "end": 301.99,
+ "text": "train"
+ },
+ {
+ "id": 720,
+ "start": 301.99,
+ "end": 302.15,
+ "text": "them"
+ },
+ {
+ "id": 721,
+ "start": 302.15,
+ "end": 302.34,
+ "text": "for"
+ },
+ {
+ "id": 722,
+ "start": 302.34,
+ "end": 302.89,
+ "text": "work"
+ },
+ {
+ "id": 723,
+ "start": 302.92,
+ "end": 303.14,
+ "text": "and"
+ },
+ {
+ "id": 724,
+ "start": 303.14,
+ "end": 303.83,
+ "text": "weaponry"
+ },
+ {
+ "id": 725,
+ "start": 303.86,
+ "end": 303.95,
+ "text": "and"
+ },
+ {
+ "id": 726,
+ "start": 303.94,
+ "end": 305,
+ "text": "companionship."
+ },
+ {
+ "id": 727,
+ "start": 305.64,
+ "end": 305.91,
+ "text": "Throughout"
+ },
+ {
+ "id": 728,
+ "start": 305.91,
+ "end": 306.43,
+ "text": "history."
+ },
+ {
+ "id": 729,
+ "start": 306.43,
+ "end": 306.58,
+ "text": "We've"
+ },
+ {
+ "id": 730,
+ "start": 306.6,
+ "end": 306.92,
+ "text": "treated."
+ },
+ {
+ "id": 731,
+ "start": 306.94,
+ "end": 307.2,
+ "text": "Some"
+ },
+ {
+ "id": 732,
+ "start": 307.24,
+ "end": 307.75,
+ "text": "animals"
+ },
+ {
+ "id": 733,
+ "start": 307.75,
+ "end": 307.93,
+ "text": "like"
+ },
+ {
+ "id": 734,
+ "start": 307.96,
+ "end": 308.67,
+ "text": "tools"
+ },
+ {
+ "id": 735,
+ "start": 308.82,
+ "end": 309.03,
+ "text": "are"
+ },
+ {
+ "id": 736,
+ "start": 309.05,
+ "end": 309.16,
+ "text": "the"
+ },
+ {
+ "id": 737,
+ "start": 309.17,
+ "end": 310.11,
+ "text": "products"
+ },
+ {
+ "id": 738,
+ "start": 310.52,
+ "end": 310.74,
+ "text": "and"
+ },
+ {
+ "id": 739,
+ "start": 310.77,
+ "end": 310.99,
+ "text": "other"
+ },
+ {
+ "id": 740,
+ "start": 310.99,
+ "end": 311.33,
+ "text": "animals."
+ },
+ {
+ "id": 741,
+ "start": 311.33,
+ "end": 311.45,
+ "text": "We"
+ },
+ {
+ "id": 742,
+ "start": 311.45,
+ "end": 311.73,
+ "text": "treated"
+ },
+ {
+ "id": 743,
+ "start": 311.73,
+ "end": 311.87,
+ "text": "with"
+ },
+ {
+ "id": 744,
+ "start": 311.87,
+ "end": 312.58,
+ "text": "kindness"
+ },
+ {
+ "id": 745,
+ "start": 312.61,
+ "end": 312.79,
+ "text": "and"
+ },
+ {
+ "id": 746,
+ "start": 312.87,
+ "end": 313.09,
+ "text": "given"
+ },
+ {
+ "id": 747,
+ "start": 313.09,
+ "end": 313.16,
+ "text": "a"
+ },
+ {
+ "id": 748,
+ "start": 313.16,
+ "end": 313.56,
+ "text": "place"
+ },
+ {
+ "id": 749,
+ "start": 313.56,
+ "end": 313.64,
+ "text": "in"
+ },
+ {
+ "id": 750,
+ "start": 313.64,
+ "end": 314.12,
+ "text": "society"
+ },
+ {
+ "id": 751,
+ "start": 314.12,
+ "end": 314.24,
+ "text": "as"
+ },
+ {
+ "id": 752,
+ "start": 314.24,
+ "end": 314.3,
+ "text": "our"
+ },
+ {
+ "id": 753,
+ "start": 314.31,
+ "end": 315.18,
+ "text": "companions."
+ },
+ {
+ "id": 754,
+ "start": 315.81,
+ "end": 315.94,
+ "text": "I"
+ },
+ {
+ "id": 755,
+ "start": 315.94,
+ "end": 316.1,
+ "text": "think"
+ },
+ {
+ "id": 756,
+ "start": 316.1,
+ "end": 316.23,
+ "text": "it's"
+ },
+ {
+ "id": 757,
+ "start": 316.23,
+ "end": 316.7,
+ "text": "possible."
+ },
+ {
+ "id": 758,
+ "start": 316.7,
+ "end": 316.82,
+ "text": "We"
+ },
+ {
+ "id": 759,
+ "start": 316.82,
+ "end": 317.04,
+ "text": "might"
+ },
+ {
+ "id": 760,
+ "start": 317.04,
+ "end": 317.26,
+ "text": "start"
+ },
+ {
+ "id": 761,
+ "start": 317.26,
+ "end": 317.33,
+ "text": "to"
+ },
+ {
+ "id": 762,
+ "start": 317.36,
+ "end": 317.78,
+ "text": "integrate"
+ },
+ {
+ "id": 763,
+ "start": 317.78,
+ "end": 318.16,
+ "text": "Robartes,"
+ },
+ {
+ "id": 764,
+ "start": 318.16,
+ "end": 318.45,
+ "text": "but"
+ },
+ {
+ "id": 765,
+ "start": 318.47,
+ "end": 318.91,
+ "text": "similar"
+ },
+ {
+ "id": 766,
+ "start": 318.91,
+ "end": 319.62,
+ "text": "weights"
+ },
+ {
+ "id": 767,
+ "start": 323.05,
+ "end": 323.52,
+ "text": "animals"
+ },
+ {
+ "id": 768,
+ "start": 323.52,
+ "end": 323.71,
+ "text": "are"
+ },
+ {
+ "id": 769,
+ "start": 323.71,
+ "end": 324.18,
+ "text": "alive."
+ },
+ {
+ "id": 770,
+ "start": 324.57,
+ "end": 325.02,
+ "text": "Robert"
+ },
+ {
+ "id": 771,
+ "start": 325.03,
+ "end": 325.17,
+ "text": "and"
+ },
+ {
+ "id": 772,
+ "start": 325.16,
+ "end": 325.43,
+ "text": "that."
+ },
+ {
+ "id": 773,
+ "start": 327.58,
+ "end": 327.73,
+ "text": "And"
+ },
+ {
+ "id": 774,
+ "start": 327.81,
+ "end": 327.89,
+ "text": "I"
+ },
+ {
+ "id": 775,
+ "start": 327.89,
+ "end": 328.03,
+ "text": "can"
+ },
+ {
+ "id": 776,
+ "start": 328.03,
+ "end": 328.25,
+ "text": "tell"
+ },
+ {
+ "id": 777,
+ "start": 328.25,
+ "end": 328.35,
+ "text": "you"
+ },
+ {
+ "id": 778,
+ "start": 328.35,
+ "end": 328.62,
+ "text": "from"
+ },
+ {
+ "id": 779,
+ "start": 328.62,
+ "end": 328.94,
+ "text": "working."
+ },
+ {
+ "id": 780,
+ "start": 328.94,
+ "end": 329.07,
+ "text": "What"
+ },
+ {
+ "id": 781,
+ "start": 329.07,
+ "end": 329.32,
+ "text": "about"
+ },
+ {
+ "id": 782,
+ "start": 329.33,
+ "end": 329.44,
+ "text": "the"
+ },
+ {
+ "id": 783,
+ "start": 329.44,
+ "end": 329.8,
+ "text": "sister"
+ },
+ {
+ "id": 784,
+ "start": 329.82,
+ "end": 330.03,
+ "text": "were"
+ },
+ {
+ "id": 785,
+ "start": 330.22,
+ "end": 330.52,
+ "text": "pretty"
+ },
+ {
+ "id": 786,
+ "start": 330.52,
+ "end": 330.73,
+ "text": "far"
+ },
+ {
+ "id": 787,
+ "start": 330.73,
+ "end": 331.02,
+ "text": "away"
+ },
+ {
+ "id": 788,
+ "start": 331.02,
+ "end": 331.24,
+ "text": "from"
+ },
+ {
+ "id": 789,
+ "start": 331.24,
+ "end": 331.72,
+ "text": "developing"
+ },
+ {
+ "id": 790,
+ "start": 331.72,
+ "end": 332.04,
+ "text": "robots."
+ },
+ {
+ "id": 791,
+ "start": 332.04,
+ "end": 332.11,
+ "text": "They"
+ },
+ {
+ "id": 792,
+ "start": 332.11,
+ "end": 332.28,
+ "text": "can"
+ },
+ {
+ "id": 793,
+ "start": 332.28,
+ "end": 332.69,
+ "text": "feel"
+ },
+ {
+ "id": 794,
+ "start": 332.69,
+ "end": 333.21,
+ "text": "anything"
+ },
+ {
+ "id": 795,
+ "start": 334.13,
+ "end": 334.17,
+ "text": "there,"
+ },
+ {
+ "id": 796,
+ "start": 334.9,
+ "end": 335.1,
+ "text": "but"
+ },
+ {
+ "id": 797,
+ "start": 335.24,
+ "end": 335.53,
+ "text": "we"
+ },
+ {
+ "id": 798,
+ "start": 335.53,
+ "end": 335.78,
+ "text": "feel"
+ },
+ {
+ "id": 799,
+ "start": 335.78,
+ "end": 335.97,
+ "text": "for"
+ },
+ {
+ "id": 800,
+ "start": 335.97,
+ "end": 336.22,
+ "text": "that."
+ },
+ {
+ "id": 801,
+ "start": 337.77,
+ "end": 337.9,
+ "text": "And"
+ },
+ {
+ "id": 802,
+ "start": 337.97,
+ "end": 338.22,
+ "text": "that"
+ },
+ {
+ "id": 803,
+ "start": 338.22,
+ "end": 339,
+ "text": "matters"
+ },
+ {
+ "id": 804,
+ "start": 339.03,
+ "end": 339.55,
+ "text": "because"
+ },
+ {
+ "id": 805,
+ "start": 339.58,
+ "end": 339.78,
+ "text": "if"
+ },
+ {
+ "id": 806,
+ "start": 339.78,
+ "end": 339.86,
+ "text": "we're"
+ },
+ {
+ "id": 807,
+ "start": 339.86,
+ "end": 340.17,
+ "text": "trying"
+ },
+ {
+ "id": 808,
+ "start": 340.17,
+ "end": 340.29,
+ "text": "to"
+ },
+ {
+ "id": 809,
+ "start": 340.32,
+ "end": 340.94,
+ "text": "integrate"
+ },
+ {
+ "id": 810,
+ "start": 340.94,
+ "end": 341.41,
+ "text": "robots"
+ },
+ {
+ "id": 811,
+ "start": 341.41,
+ "end": 341.54,
+ "text": "into"
+ },
+ {
+ "id": 812,
+ "start": 341.55,
+ "end": 341.7,
+ "text": "the"
+ },
+ {
+ "id": 813,
+ "start": 341.7,
+ "end": 342.05,
+ "text": "shared"
+ },
+ {
+ "id": 814,
+ "start": 342.05,
+ "end": 342.68,
+ "text": "spaces"
+ },
+ {
+ "id": 815,
+ "start": 342.73,
+ "end": 342.96,
+ "text": "need"
+ },
+ {
+ "id": 816,
+ "start": 342.96,
+ "end": 343.05,
+ "text": "to"
+ },
+ {
+ "id": 817,
+ "start": 343.08,
+ "end": 343.81,
+ "text": "understand"
+ },
+ {
+ "id": 818,
+ "start": 343.81,
+ "end": 343.93,
+ "text": "that"
+ },
+ {
+ "id": 819,
+ "start": 343.93,
+ "end": 344.35,
+ "text": "people"
+ },
+ {
+ "id": 820,
+ "start": 344.37,
+ "end": 344.63,
+ "text": "treat"
+ },
+ {
+ "id": 821,
+ "start": 344.63,
+ "end": 344.78,
+ "text": "them"
+ },
+ {
+ "id": 822,
+ "start": 344.78,
+ "end": 345.38,
+ "text": "differently"
+ },
+ {
+ "id": 823,
+ "start": 345.38,
+ "end": 345.53,
+ "text": "than"
+ },
+ {
+ "id": 824,
+ "start": 345.53,
+ "end": 345.73,
+ "text": "other"
+ },
+ {
+ "id": 825,
+ "start": 345.74,
+ "end": 346.6,
+ "text": "devices"
+ },
+ {
+ "id": 826,
+ "start": 347.39,
+ "end": 347.64,
+ "text": "that"
+ },
+ {
+ "id": 827,
+ "start": 347.65,
+ "end": 347.77,
+ "text": "in"
+ },
+ {
+ "id": 828,
+ "start": 347.77,
+ "end": 348.08,
+ "text": "some"
+ },
+ {
+ "id": 829,
+ "start": 348.08,
+ "end": 348.94,
+ "text": "cases."
+ },
+ {
+ "id": 830,
+ "start": 349.19,
+ "end": 349.36,
+ "text": "For"
+ },
+ {
+ "id": 831,
+ "start": 349.36,
+ "end": 349.98,
+ "text": "example,"
+ },
+ {
+ "id": 832,
+ "start": 349.98,
+ "end": 350.1,
+ "text": "the"
+ },
+ {
+ "id": 833,
+ "start": 350.1,
+ "end": 350.39,
+ "text": "case"
+ },
+ {
+ "id": 834,
+ "start": 350.39,
+ "end": 350.47,
+ "text": "of"
+ },
+ {
+ "id": 835,
+ "start": 350.47,
+ "end": 350.53,
+ "text": "a"
+ },
+ {
+ "id": 836,
+ "start": 350.53,
+ "end": 351.02,
+ "text": "soldier"
+ },
+ {
+ "id": 837,
+ "start": 351.02,
+ "end": 351.08,
+ "text": "who"
+ },
+ {
+ "id": 838,
+ "start": 351.09,
+ "end": 351.42,
+ "text": "becomes"
+ },
+ {
+ "id": 839,
+ "start": 351.42,
+ "end": 351.99,
+ "text": "emotionally"
+ },
+ {
+ "id": 840,
+ "start": 351.99,
+ "end": 352.52,
+ "text": "attached"
+ },
+ {
+ "id": 841,
+ "start": 352.52,
+ "end": 352.62,
+ "text": "to"
+ },
+ {
+ "id": 842,
+ "start": 352.62,
+ "end": 352.75,
+ "text": "the"
+ },
+ {
+ "id": 843,
+ "start": 352.75,
+ "end": 353.1,
+ "text": "robot."
+ },
+ {
+ "id": 844,
+ "start": 353.14,
+ "end": 353.34,
+ "text": "They"
+ },
+ {
+ "id": 845,
+ "start": 353.34,
+ "end": 353.59,
+ "text": "work."
+ },
+ {
+ "id": 846,
+ "start": 353.61,
+ "end": 353.81,
+ "text": "Well,"
+ },
+ {
+ "id": 847,
+ "start": 353.84,
+ "end": 354.41,
+ "text": "if"
+ },
+ {
+ "id": 848,
+ "start": 354.45,
+ "end": 354.64,
+ "text": "that"
+ },
+ {
+ "id": 849,
+ "start": 354.65,
+ "end": 354.8,
+ "text": "can"
+ },
+ {
+ "id": 850,
+ "start": 354.8,
+ "end": 354.92,
+ "text": "be"
+ },
+ {
+ "id": 851,
+ "start": 354.95,
+ "end": 355.31,
+ "text": "anything"
+ },
+ {
+ "id": 852,
+ "start": 355.31,
+ "end": 355.46,
+ "text": "from"
+ },
+ {
+ "id": 853,
+ "start": 355.49,
+ "end": 355.93,
+ "text": "inefficient"
+ },
+ {
+ "id": 854,
+ "start": 355.96,
+ "end": 356.12,
+ "text": "to"
+ },
+ {
+ "id": 855,
+ "start": 356.14,
+ "end": 356.98,
+ "text": "dangerous."
+ },
+ {
+ "id": 856,
+ "start": 358.5,
+ "end": 358.63,
+ "text": "But"
+ },
+ {
+ "id": 857,
+ "start": 358.67,
+ "end": 358.8,
+ "text": "in"
+ },
+ {
+ "id": 858,
+ "start": 358.8,
+ "end": 359.02,
+ "text": "other"
+ },
+ {
+ "id": 859,
+ "start": 359.02,
+ "end": 359.43,
+ "text": "cases."
+ },
+ {
+ "id": 860,
+ "start": 359.43,
+ "end": 359.49,
+ "text": "It"
+ },
+ {
+ "id": 861,
+ "start": 359.49,
+ "end": 359.63,
+ "text": "can"
+ },
+ {
+ "id": 862,
+ "start": 359.63,
+ "end": 359.94,
+ "text": "actually"
+ },
+ {
+ "id": 863,
+ "start": 359.94,
+ "end": 360.16,
+ "text": "be"
+ },
+ {
+ "id": 864,
+ "start": 360.16,
+ "end": 360.49,
+ "text": "used"
+ },
+ {
+ "id": 865,
+ "start": 360.49,
+ "end": 360.67,
+ "text": "for"
+ },
+ {
+ "id": 866,
+ "start": 360.68,
+ "end": 360.77,
+ "text": "the"
+ },
+ {
+ "id": 867,
+ "start": 360.77,
+ "end": 361.34,
+ "text": "faster"
+ },
+ {
+ "id": 868,
+ "start": 361.35,
+ "end": 361.51,
+ "text": "this"
+ },
+ {
+ "id": 869,
+ "start": 361.51,
+ "end": 361.92,
+ "text": "emotional"
+ },
+ {
+ "id": 870,
+ "start": 361.92,
+ "end": 362.45,
+ "text": "connection"
+ },
+ {
+ "id": 871,
+ "start": 362.45,
+ "end": 362.56,
+ "text": "to,"
+ },
+ {
+ "id": 872,
+ "start": 362.61,
+ "end": 363.28,
+ "text": "but"
+ },
+ {
+ "id": 873,
+ "start": 364.16,
+ "end": 364.38,
+ "text": "we're"
+ },
+ {
+ "id": 874,
+ "start": 364.38,
+ "end": 364.63,
+ "text": "really"
+ },
+ {
+ "id": 875,
+ "start": 364.63,
+ "end": 364.96,
+ "text": "seeing"
+ },
+ {
+ "id": 876,
+ "start": 364.96,
+ "end": 365.15,
+ "text": "some"
+ },
+ {
+ "id": 877,
+ "start": 365.15,
+ "end": 365.5,
+ "text": "great"
+ },
+ {
+ "id": 878,
+ "start": 365.5,
+ "end": 365.75,
+ "text": "use"
+ },
+ {
+ "id": 879,
+ "start": 365.75,
+ "end": 366.26,
+ "text": "cases."
+ },
+ {
+ "id": 880,
+ "start": 366.26,
+ "end": 366.38,
+ "text": "For"
+ },
+ {
+ "id": 881,
+ "start": 366.38,
+ "end": 366.87,
+ "text": "example,"
+ },
+ {
+ "id": 882,
+ "start": 366.87,
+ "end": 367.29,
+ "text": "robots"
+ },
+ {
+ "id": 883,
+ "start": 367.29,
+ "end": 367.59,
+ "text": "working"
+ },
+ {
+ "id": 884,
+ "start": 367.59,
+ "end": 367.78,
+ "text": "with"
+ },
+ {
+ "id": 885,
+ "start": 367.81,
+ "end": 368.41,
+ "text": "autistic"
+ },
+ {
+ "id": 886,
+ "start": 368.41,
+ "end": 368.95,
+ "text": "children"
+ },
+ {
+ "id": 887,
+ "start": 368.95,
+ "end": 369.1,
+ "text": "to"
+ },
+ {
+ "id": 888,
+ "start": 369.13,
+ "end": 369.67,
+ "text": "engage"
+ },
+ {
+ "id": 889,
+ "start": 369.67,
+ "end": 369.93,
+ "text": "them"
+ },
+ {
+ "id": 890,
+ "start": 369.93,
+ "end": 370.1,
+ "text": "in"
+ },
+ {
+ "id": 891,
+ "start": 370.1,
+ "end": 370.39,
+ "text": "ways"
+ },
+ {
+ "id": 892,
+ "start": 370.39,
+ "end": 370.48,
+ "text": "that"
+ },
+ {
+ "id": 893,
+ "start": 370.48,
+ "end": 370.58,
+ "text": "we"
+ },
+ {
+ "id": 894,
+ "start": 370.58,
+ "end": 370.96,
+ "text": "haven't"
+ },
+ {
+ "id": 895,
+ "start": 370.96,
+ "end": 371.18,
+ "text": "seen"
+ },
+ {
+ "id": 896,
+ "start": 371.18,
+ "end": 372.03,
+ "text": "previously"
+ },
+ {
+ "id": 897,
+ "start": 372.7,
+ "end": 373.1,
+ "text": "robot's"
+ },
+ {
+ "id": 898,
+ "start": 373.17,
+ "end": 373.51,
+ "text": "working"
+ },
+ {
+ "id": 899,
+ "start": 373.51,
+ "end": 373.64,
+ "text": "with"
+ },
+ {
+ "id": 900,
+ "start": 373.64,
+ "end": 374.23,
+ "text": "teachers"
+ },
+ {
+ "id": 901,
+ "start": 374.23,
+ "end": 374.35,
+ "text": "to"
+ },
+ {
+ "id": 902,
+ "start": 374.35,
+ "end": 374.75,
+ "text": "engage"
+ },
+ {
+ "id": 903,
+ "start": 374.75,
+ "end": 375.03,
+ "text": "kids"
+ },
+ {
+ "id": 904,
+ "start": 375.03,
+ "end": 375.21,
+ "text": "and"
+ },
+ {
+ "id": 905,
+ "start": 375.2,
+ "end": 375.55,
+ "text": "learning"
+ },
+ {
+ "id": 906,
+ "start": 375.61,
+ "end": 375.76,
+ "text": "with"
+ },
+ {
+ "id": 907,
+ "start": 375.76,
+ "end": 375.89,
+ "text": "new"
+ },
+ {
+ "id": 908,
+ "start": 375.89,
+ "end": 376.65,
+ "text": "results"
+ },
+ {
+ "id": 909,
+ "start": 377.34,
+ "end": 377.45,
+ "text": "and"
+ },
+ {
+ "id": 910,
+ "start": 377.52,
+ "end": 377.7,
+ "text": "it's"
+ },
+ {
+ "id": 911,
+ "start": 377.7,
+ "end": 377.88,
+ "text": "not"
+ },
+ {
+ "id": 912,
+ "start": 377.88,
+ "end": 378.07,
+ "text": "just"
+ },
+ {
+ "id": 913,
+ "start": 378.07,
+ "end": 378.18,
+ "text": "for"
+ },
+ {
+ "id": 914,
+ "start": 378.18,
+ "end": 378.87,
+ "text": "kids"
+ },
+ {
+ "id": 915,
+ "start": 379.75,
+ "end": 380.04,
+ "text": "early"
+ },
+ {
+ "id": 916,
+ "start": 380.04,
+ "end": 380.42,
+ "text": "studies"
+ },
+ {
+ "id": 917,
+ "start": 380.42,
+ "end": 380.74,
+ "text": "show"
+ },
+ {
+ "id": 918,
+ "start": 380.74,
+ "end": 381.05,
+ "text": "that"
+ },
+ {
+ "id": 919,
+ "start": 381.07,
+ "end": 381.26,
+ "text": "we"
+ },
+ {
+ "id": 920,
+ "start": 381.38,
+ "end": 381.54,
+ "text": "can"
+ },
+ {
+ "id": 921,
+ "start": 381.54,
+ "end": 381.75,
+ "text": "help"
+ },
+ {
+ "id": 922,
+ "start": 381.75,
+ "end": 382.27,
+ "text": "doctors"
+ },
+ {
+ "id": 923,
+ "start": 382.27,
+ "end": 382.41,
+ "text": "and"
+ },
+ {
+ "id": 924,
+ "start": 382.41,
+ "end": 383.01,
+ "text": "patients"
+ },
+ {
+ "id": 925,
+ "start": 383.01,
+ "end": 383.07,
+ "text": "and"
+ },
+ {
+ "id": 926,
+ "start": 383.07,
+ "end": 383.37,
+ "text": "health"
+ },
+ {
+ "id": 927,
+ "start": 383.38,
+ "end": 383.66,
+ "text": "care"
+ },
+ {
+ "id": 928,
+ "start": 383.66,
+ "end": 384.4,
+ "text": "settings"
+ },
+ {
+ "id": 929,
+ "start": 384.94,
+ "end": 385,
+ "text": "and"
+ },
+ {
+ "id": 930,
+ "start": 385.54,
+ "end": 385.74,
+ "text": "this"
+ },
+ {
+ "id": 931,
+ "start": 385.74,
+ "end": 385.9,
+ "text": "is"
+ },
+ {
+ "id": 932,
+ "start": 385.9,
+ "end": 385.98,
+ "text": "the"
+ },
+ {
+ "id": 933,
+ "start": 385.98,
+ "end": 386.41,
+ "text": "pirate"
+ },
+ {
+ "id": 934,
+ "start": 386.41,
+ "end": 386.59,
+ "text": "b."
+ },
+ {
+ "id": 935,
+ "start": 386.59,
+ "end": 386.76,
+ "text": "b."
+ },
+ {
+ "id": 936,
+ "start": 386.76,
+ "end": 386.91,
+ "text": "c."
+ },
+ {
+ "id": 937,
+ "start": 387.01,
+ "end": 387.33,
+ "text": "But"
+ },
+ {
+ "id": 938,
+ "start": 387.36,
+ "end": 387.56,
+ "text": "it's"
+ },
+ {
+ "id": 939,
+ "start": 387.56,
+ "end": 387.9,
+ "text": "used"
+ },
+ {
+ "id": 940,
+ "start": 387.93,
+ "end": 388.05,
+ "text": "in"
+ },
+ {
+ "id": 941,
+ "start": 388.05,
+ "end": 388.47,
+ "text": "nursing"
+ },
+ {
+ "id": 942,
+ "start": 388.47,
+ "end": 388.94,
+ "text": "homes"
+ },
+ {
+ "id": 943,
+ "start": 388.97,
+ "end": 389.16,
+ "text": "with"
+ },
+ {
+ "id": 944,
+ "start": 389.16,
+ "end": 389.63,
+ "text": "dementia"
+ },
+ {
+ "id": 945,
+ "start": 389.63,
+ "end": 390.37,
+ "text": "patients"
+ },
+ {
+ "id": 946,
+ "start": 390.53,
+ "end": 390.66,
+ "text": "has"
+ },
+ {
+ "id": 947,
+ "start": 390.65,
+ "end": 390.78,
+ "text": "been"
+ },
+ {
+ "id": 948,
+ "start": 390.78,
+ "end": 391.08,
+ "text": "around"
+ },
+ {
+ "id": 949,
+ "start": 391.08,
+ "end": 391.22,
+ "text": "for"
+ },
+ {
+ "id": 950,
+ "start": 391.22,
+ "end": 391.31,
+ "text": "a"
+ },
+ {
+ "id": 951,
+ "start": 391.31,
+ "end": 391.83,
+ "text": "while"
+ },
+ {
+ "id": 952,
+ "start": 392.3,
+ "end": 392.47,
+ "text": "I"
+ },
+ {
+ "id": 953,
+ "start": 392.48,
+ "end": 393.08,
+ "text": "remember"
+ },
+ {
+ "id": 954,
+ "start": 393.37,
+ "end": 393.81,
+ "text": "years"
+ },
+ {
+ "id": 955,
+ "start": 393.81,
+ "end": 394.06,
+ "text": "ago."
+ },
+ {
+ "id": 956,
+ "start": 394.06,
+ "end": 394.25,
+ "text": "Being"
+ },
+ {
+ "id": 957,
+ "start": 394.28,
+ "end": 394.37,
+ "text": "a"
+ },
+ {
+ "id": 958,
+ "start": 394.37,
+ "end": 395.1,
+ "text": "party"
+ },
+ {
+ "id": 959,
+ "start": 395.59,
+ "end": 395.73,
+ "text": "and"
+ },
+ {
+ "id": 960,
+ "start": 395.75,
+ "end": 396.19,
+ "text": "telling"
+ },
+ {
+ "id": 961,
+ "start": 396.19,
+ "end": 396.44,
+ "text": "someone"
+ },
+ {
+ "id": 962,
+ "start": 396.44,
+ "end": 396.7,
+ "text": "about"
+ },
+ {
+ "id": 963,
+ "start": 396.7,
+ "end": 396.81,
+ "text": "this"
+ },
+ {
+ "id": 964,
+ "start": 396.84,
+ "end": 397.34,
+ "text": "throwback"
+ },
+ {
+ "id": 965,
+ "start": 397.78,
+ "end": 397.97,
+ "text": "and"
+ },
+ {
+ "id": 966,
+ "start": 398.32,
+ "end": 398.54,
+ "text": "her"
+ },
+ {
+ "id": 967,
+ "start": 398.54,
+ "end": 399.06,
+ "text": "response"
+ },
+ {
+ "id": 968,
+ "start": 399.06,
+ "end": 399.65,
+ "text": "was"
+ },
+ {
+ "id": 969,
+ "start": 400.28,
+ "end": 400.5,
+ "text": "on"
+ },
+ {
+ "id": 970,
+ "start": 400.5,
+ "end": 400.63,
+ "text": "my"
+ },
+ {
+ "id": 971,
+ "start": 400.64,
+ "end": 401.24,
+ "text": "cart."
+ },
+ {
+ "id": 972,
+ "start": 405.04,
+ "end": 405.11,
+ "text": "I"
+ },
+ {
+ "id": 973,
+ "start": 405.13,
+ "end": 405.45,
+ "text": "can't"
+ },
+ {
+ "id": 974,
+ "start": 405.45,
+ "end": 405.78,
+ "text": "believe"
+ },
+ {
+ "id": 975,
+ "start": 405.78,
+ "end": 405.89,
+ "text": "we're"
+ },
+ {
+ "id": 976,
+ "start": 405.89,
+ "end": 406.17,
+ "text": "giving"
+ },
+ {
+ "id": 977,
+ "start": 406.17,
+ "end": 406.5,
+ "text": "people"
+ },
+ {
+ "id": 978,
+ "start": 406.51,
+ "end": 407.09,
+ "text": "robots"
+ },
+ {
+ "id": 979,
+ "start": 407.11,
+ "end": 407.45,
+ "text": "instead"
+ },
+ {
+ "id": 980,
+ "start": 407.45,
+ "end": 407.54,
+ "text": "of"
+ },
+ {
+ "id": 981,
+ "start": 407.54,
+ "end": 407.89,
+ "text": "human"
+ },
+ {
+ "id": 982,
+ "start": 407.89,
+ "end": 408.49,
+ "text": "care."
+ },
+ {
+ "id": 983,
+ "start": 410.45,
+ "end": 410.53,
+ "text": "And"
+ },
+ {
+ "id": 984,
+ "start": 410.64,
+ "end": 410.83,
+ "text": "this"
+ },
+ {
+ "id": 985,
+ "start": 410.83,
+ "end": 410.94,
+ "text": "is"
+ },
+ {
+ "id": 986,
+ "start": 410.94,
+ "end": 411.03,
+ "text": "a"
+ },
+ {
+ "id": 987,
+ "start": 411.03,
+ "end": 411.35,
+ "text": "really"
+ },
+ {
+ "id": 988,
+ "start": 411.35,
+ "end": 411.68,
+ "text": "common"
+ },
+ {
+ "id": 989,
+ "start": 411.68,
+ "end": 412.39,
+ "text": "response"
+ },
+ {
+ "id": 990,
+ "start": 412.42,
+ "end": 412.68,
+ "text": "and"
+ },
+ {
+ "id": 991,
+ "start": 412.71,
+ "end": 412.81,
+ "text": "I"
+ },
+ {
+ "id": 992,
+ "start": 412.81,
+ "end": 413.01,
+ "text": "think"
+ },
+ {
+ "id": 993,
+ "start": 413.01,
+ "end": 413.17,
+ "text": "it's"
+ },
+ {
+ "id": 994,
+ "start": 413.26,
+ "end": 414.05,
+ "text": "absolutely"
+ },
+ {
+ "id": 995,
+ "start": 414.05,
+ "end": 414.72,
+ "text": "correct"
+ },
+ {
+ "id": 996,
+ "start": 414.93,
+ "end": 415.3,
+ "text": "because"
+ },
+ {
+ "id": 997,
+ "start": 415.3,
+ "end": 415.61,
+ "text": "that"
+ },
+ {
+ "id": 998,
+ "start": 415.61,
+ "end": 415.91,
+ "text": "would"
+ },
+ {
+ "id": 999,
+ "start": 415.91,
+ "end": 416.15,
+ "text": "be"
+ },
+ {
+ "id": 1000,
+ "start": 416.18,
+ "end": 417.01,
+ "text": "terrible."
+ },
+ {
+ "id": 1001,
+ "start": 417.44,
+ "end": 417.49,
+ "text": "And"
+ },
+ {
+ "id": 1002,
+ "start": 417.89,
+ "end": 418.05,
+ "text": "in"
+ },
+ {
+ "id": 1003,
+ "start": 418.05,
+ "end": 418.24,
+ "text": "this"
+ },
+ {
+ "id": 1004,
+ "start": 418.24,
+ "end": 418.46,
+ "text": "case."
+ },
+ {
+ "id": 1005,
+ "start": 418.46,
+ "end": 418.6,
+ "text": "It's"
+ },
+ {
+ "id": 1006,
+ "start": 418.6,
+ "end": 418.81,
+ "text": "not"
+ },
+ {
+ "id": 1007,
+ "start": 418.81,
+ "end": 418.9,
+ "text": "with"
+ },
+ {
+ "id": 1008,
+ "start": 418.9,
+ "end": 419.08,
+ "text": "this"
+ },
+ {
+ "id": 1009,
+ "start": 419.08,
+ "end": 419.41,
+ "text": "robot"
+ },
+ {
+ "id": 1010,
+ "start": 419.41,
+ "end": 419.93,
+ "text": "replace"
+ },
+ {
+ "id": 1011,
+ "start": 419.97,
+ "end": 420.27,
+ "text": "it"
+ },
+ {
+ "id": 1012,
+ "start": 420.83,
+ "end": 420.99,
+ "text": "with"
+ },
+ {
+ "id": 1013,
+ "start": 420.99,
+ "end": 421.18,
+ "text": "this"
+ },
+ {
+ "id": 1014,
+ "start": 421.18,
+ "end": 421.54,
+ "text": "robot"
+ },
+ {
+ "id": 1015,
+ "start": 421.54,
+ "end": 422.25,
+ "text": "replaces"
+ },
+ {
+ "id": 1016,
+ "start": 422.28,
+ "end": 422.49,
+ "text": "his"
+ },
+ {
+ "id": 1017,
+ "start": 422.55,
+ "end": 422.9,
+ "text": "animal"
+ },
+ {
+ "id": 1018,
+ "start": 422.9,
+ "end": 423.62,
+ "text": "therapy"
+ },
+ {
+ "id": 1019,
+ "start": 423.98,
+ "end": 424.14,
+ "text": "in"
+ },
+ {
+ "id": 1020,
+ "start": 424.14,
+ "end": 424.84,
+ "text": "context"
+ },
+ {
+ "id": 1021,
+ "start": 424.86,
+ "end": 425.16,
+ "text": "which"
+ },
+ {
+ "id": 1022,
+ "start": 425.19,
+ "end": 425.61,
+ "text": "he"
+ },
+ {
+ "id": 1023,
+ "start": 425.61,
+ "end": 425.82,
+ "text": "was"
+ },
+ {
+ "id": 1024,
+ "start": 425.83,
+ "end": 426.14,
+ "text": "real"
+ },
+ {
+ "id": 1025,
+ "start": 426.14,
+ "end": 426.87,
+ "text": "animals."
+ },
+ {
+ "id": 1026,
+ "start": 427.23,
+ "end": 427.44,
+ "text": "We"
+ },
+ {
+ "id": 1027,
+ "start": 427.44,
+ "end": 427.78,
+ "text": "can"
+ },
+ {
+ "id": 1028,
+ "start": 427.78,
+ "end": 427.95,
+ "text": "use"
+ },
+ {
+ "id": 1029,
+ "start": 427.98,
+ "end": 428.38,
+ "text": "robots"
+ },
+ {
+ "id": 1030,
+ "start": 428.38,
+ "end": 428.66,
+ "text": "because"
+ },
+ {
+ "id": 1031,
+ "start": 428.66,
+ "end": 428.98,
+ "text": "people"
+ },
+ {
+ "id": 1032,
+ "start": 429.04,
+ "end": 429.96,
+ "text": "consistently"
+ },
+ {
+ "id": 1033,
+ "start": 429.96,
+ "end": 430.32,
+ "text": "treat"
+ },
+ {
+ "id": 1034,
+ "start": 430.32,
+ "end": 430.63,
+ "text": "them"
+ },
+ {
+ "id": 1035,
+ "start": 430.66,
+ "end": 430.87,
+ "text": "like"
+ },
+ {
+ "id": 1036,
+ "start": 430.87,
+ "end": 431.33,
+ "text": "more."
+ },
+ {
+ "id": 1037,
+ "start": 431.72,
+ "end": 431.99,
+ "text": "More"
+ },
+ {
+ "id": 1038,
+ "start": 431.99,
+ "end": 432.23,
+ "text": "like"
+ },
+ {
+ "id": 1039,
+ "start": 432.23,
+ "end": 432.3,
+ "text": "an"
+ },
+ {
+ "id": 1040,
+ "start": 432.34,
+ "end": 432.88,
+ "text": "animal"
+ },
+ {
+ "id": 1041,
+ "start": 432.91,
+ "end": 433.12,
+ "text": "and"
+ },
+ {
+ "id": 1042,
+ "start": 433.14,
+ "end": 433.32,
+ "text": "have"
+ },
+ {
+ "id": 1043,
+ "start": 433.41,
+ "end": 433.67,
+ "text": "it"
+ },
+ {
+ "id": 1044,
+ "start": 435.5,
+ "end": 436.19,
+ "text": "acknowledging"
+ },
+ {
+ "id": 1045,
+ "start": 436.19,
+ "end": 436.35,
+ "text": "this"
+ },
+ {
+ "id": 1046,
+ "start": 436.36,
+ "end": 436.74,
+ "text": "emotional"
+ },
+ {
+ "id": 1047,
+ "start": 436.74,
+ "end": 437.21,
+ "text": "connection."
+ },
+ {
+ "id": 1048,
+ "start": 437.23,
+ "end": 437.52,
+ "text": "Robert,"
+ },
+ {
+ "id": 1049,
+ "start": 437.58,
+ "end": 437.73,
+ "text": "can"
+ },
+ {
+ "id": 1050,
+ "start": 437.73,
+ "end": 438.02,
+ "text": "also"
+ },
+ {
+ "id": 1051,
+ "start": 438.02,
+ "end": 438.24,
+ "text": "help"
+ },
+ {
+ "id": 1052,
+ "start": 438.24,
+ "end": 438.41,
+ "text": "us"
+ },
+ {
+ "id": 1053,
+ "start": 438.41,
+ "end": 438.93,
+ "text": "anticipate"
+ },
+ {
+ "id": 1054,
+ "start": 438.93,
+ "end": 439.85,
+ "text": "challenges"
+ },
+ {
+ "id": 1055,
+ "start": 439.88,
+ "end": 440.13,
+ "text": "as"
+ },
+ {
+ "id": 1056,
+ "start": 440.13,
+ "end": 440.28,
+ "text": "these"
+ },
+ {
+ "id": 1057,
+ "start": 440.28,
+ "end": 440.87,
+ "text": "devices."
+ },
+ {
+ "id": 1058,
+ "start": 440.87,
+ "end": 441.23,
+ "text": "Move"
+ },
+ {
+ "id": 1059,
+ "start": 441.23,
+ "end": 441.42,
+ "text": "into"
+ },
+ {
+ "id": 1060,
+ "start": 441.43,
+ "end": 441.57,
+ "text": "more"
+ },
+ {
+ "id": 1061,
+ "start": 441.6,
+ "end": 442,
+ "text": "intimate"
+ },
+ {
+ "id": 1062,
+ "start": 442,
+ "end": 442.34,
+ "text": "areas"
+ },
+ {
+ "id": 1063,
+ "start": 442.34,
+ "end": 442.43,
+ "text": "of"
+ },
+ {
+ "id": 1064,
+ "start": 442.43,
+ "end": 442.78,
+ "text": "people's"
+ },
+ {
+ "id": 1065,
+ "start": 442.78,
+ "end": 443.4,
+ "text": "lives"
+ },
+ {
+ "id": 1066,
+ "start": 443.74,
+ "end": 443.79,
+ "text": "and"
+ },
+ {
+ "id": 1067,
+ "start": 444.1,
+ "end": 444.23,
+ "text": "for"
+ },
+ {
+ "id": 1068,
+ "start": 444.23,
+ "end": 444.8,
+ "text": "example"
+ },
+ {
+ "id": 1069,
+ "start": 444.83,
+ "end": 444.98,
+ "text": "is"
+ },
+ {
+ "id": 1070,
+ "start": 444.98,
+ "end": 445.07,
+ "text": "it."
+ },
+ {
+ "id": 1071,
+ "start": 445.07,
+ "end": 445.49,
+ "text": "o.k."
+ },
+ {
+ "id": 1072,
+ "start": 445.5,
+ "end": 445.63,
+ "text": "If"
+ },
+ {
+ "id": 1073,
+ "start": 445.63,
+ "end": 445.74,
+ "text": "your"
+ },
+ {
+ "id": 1074,
+ "start": 445.74,
+ "end": 446.43,
+ "text": "child's"
+ },
+ {
+ "id": 1075,
+ "start": 446.68,
+ "end": 447,
+ "text": "teddy"
+ },
+ {
+ "id": 1076,
+ "start": 446.99,
+ "end": 447.2,
+ "text": "bear"
+ },
+ {
+ "id": 1077,
+ "start": 447.21,
+ "end": 447.54,
+ "text": "robot"
+ },
+ {
+ "id": 1078,
+ "start": 447.54,
+ "end": 447.87,
+ "text": "records"
+ },
+ {
+ "id": 1079,
+ "start": 447.87,
+ "end": 448.19,
+ "text": "private"
+ },
+ {
+ "id": 1080,
+ "start": 448.19,
+ "end": 449.18,
+ "text": "conversations."
+ },
+ {
+ "id": 1081,
+ "start": 449.76,
+ "end": 449.89,
+ "text": "Is"
+ },
+ {
+ "id": 1082,
+ "start": 449.89,
+ "end": 449.98,
+ "text": "it."
+ },
+ {
+ "id": 1083,
+ "start": 449.98,
+ "end": 450.29,
+ "text": "o.k."
+ },
+ {
+ "id": 1084,
+ "start": 450.29,
+ "end": 450.41,
+ "text": "If"
+ },
+ {
+ "id": 1085,
+ "start": 450.41,
+ "end": 450.58,
+ "text": "your"
+ },
+ {
+ "id": 1086,
+ "start": 450.59,
+ "end": 451.04,
+ "text": "sex"
+ },
+ {
+ "id": 1087,
+ "start": 451.04,
+ "end": 451.47,
+ "text": "robot"
+ },
+ {
+ "id": 1088,
+ "start": 451.47,
+ "end": 451.65,
+ "text": "has"
+ },
+ {
+ "id": 1089,
+ "start": 451.65,
+ "end": 452.31,
+ "text": "compelling"
+ },
+ {
+ "id": 1090,
+ "start": 452.34,
+ "end": 452.54,
+ "text": "in"
+ },
+ {
+ "id": 1091,
+ "start": 452.58,
+ "end": 452.86,
+ "text": "our"
+ },
+ {
+ "id": 1092,
+ "start": 452.88,
+ "end": 453.79,
+ "text": "purchasers"
+ },
+ {
+ "id": 1093,
+ "start": 455.26,
+ "end": 455.67,
+ "text": "because"
+ },
+ {
+ "id": 1094,
+ "start": 455.73,
+ "end": 456.02,
+ "text": "rope."
+ },
+ {
+ "id": 1095,
+ "start": 456.02,
+ "end": 456.32,
+ "text": "That's"
+ },
+ {
+ "id": 1096,
+ "start": 456.32,
+ "end": 456.65,
+ "text": "plus"
+ },
+ {
+ "id": 1097,
+ "start": 456.66,
+ "end": 457.78,
+ "text": "capitalism"
+ },
+ {
+ "id": 1098,
+ "start": 457.81,
+ "end": 458.17,
+ "text": "equals"
+ },
+ {
+ "id": 1099,
+ "start": 458.17,
+ "end": 458.91,
+ "text": "questions"
+ },
+ {
+ "id": 1100,
+ "start": 458.94,
+ "end": 459.52,
+ "text": "around"
+ },
+ {
+ "id": 1101,
+ "start": 459.72,
+ "end": 460.18,
+ "text": "consumer"
+ },
+ {
+ "id": 1102,
+ "start": 460.18,
+ "end": 460.79,
+ "text": "protection"
+ },
+ {
+ "id": 1103,
+ "start": 460.79,
+ "end": 460.89,
+ "text": "and"
+ },
+ {
+ "id": 1104,
+ "start": 460.89,
+ "end": 461.58,
+ "text": "privacy"
+ },
+ {
+ "id": 1105,
+ "start": 462.47,
+ "end": 462.59,
+ "text": "and"
+ },
+ {
+ "id": 1106,
+ "start": 462.68,
+ "end": 462.9,
+ "text": "those"
+ },
+ {
+ "id": 1107,
+ "start": 462.9,
+ "end": 463.14,
+ "text": "aren't"
+ },
+ {
+ "id": 1108,
+ "start": 463.14,
+ "end": 463.27,
+ "text": "the"
+ },
+ {
+ "id": 1109,
+ "start": 463.27,
+ "end": 463.54,
+ "text": "only"
+ },
+ {
+ "id": 1110,
+ "start": 463.54,
+ "end": 463.9,
+ "text": "reason,"
+ },
+ {
+ "id": 1111,
+ "start": 463.9,
+ "end": 464.08,
+ "text": "said"
+ },
+ {
+ "id": 1112,
+ "start": 464.08,
+ "end": 464.17,
+ "text": "her"
+ },
+ {
+ "id": 1113,
+ "start": 464.16,
+ "end": 464.76,
+ "text": "behaviour"
+ },
+ {
+ "id": 1114,
+ "start": 464.76,
+ "end": 465.04,
+ "text": "around"
+ },
+ {
+ "id": 1115,
+ "start": 465.04,
+ "end": 465.21,
+ "text": "these"
+ },
+ {
+ "id": 1116,
+ "start": 465.21,
+ "end": 465.65,
+ "text": "machines"
+ },
+ {
+ "id": 1117,
+ "start": 465.65,
+ "end": 465.82,
+ "text": "could,"
+ },
+ {
+ "id": 1118,
+ "start": 465.82,
+ "end": 466.25,
+ "text": "madam."
+ },
+ {
+ "id": 1119,
+ "start": 468.75,
+ "end": 468.83,
+ "text": "A"
+ },
+ {
+ "id": 1120,
+ "start": 468.83,
+ "end": 469.09,
+ "text": "few"
+ },
+ {
+ "id": 1121,
+ "start": 469.09,
+ "end": 469.36,
+ "text": "years"
+ },
+ {
+ "id": 1122,
+ "start": 469.36,
+ "end": 470.12,
+ "text": "after"
+ },
+ {
+ "id": 1123,
+ "start": 470.15,
+ "end": 470.36,
+ "text": "that"
+ },
+ {
+ "id": 1124,
+ "start": 470.36,
+ "end": 470.7,
+ "text": "first"
+ },
+ {
+ "id": 1125,
+ "start": 470.7,
+ "end": 471.09,
+ "text": "initial"
+ },
+ {
+ "id": 1126,
+ "start": 471.09,
+ "end": 471.71,
+ "text": "experience."
+ },
+ {
+ "id": 1127,
+ "start": 471.71,
+ "end": 471.8,
+ "text": "I"
+ },
+ {
+ "id": 1128,
+ "start": 471.8,
+ "end": 472.07,
+ "text": "had"
+ },
+ {
+ "id": 1129,
+ "start": 472.07,
+ "end": 472.21,
+ "text": "with"
+ },
+ {
+ "id": 1130,
+ "start": 472.21,
+ "end": 472.42,
+ "text": "this"
+ },
+ {
+ "id": 1131,
+ "start": 472.42,
+ "end": 472.67,
+ "text": "baby"
+ },
+ {
+ "id": 1132,
+ "start": 472.67,
+ "end": 473.13,
+ "text": "dinosaur"
+ },
+ {
+ "id": 1133,
+ "start": 473.13,
+ "end": 473.58,
+ "text": "robot"
+ },
+ {
+ "id": 1134,
+ "start": 474.43,
+ "end": 474.69,
+ "text": "do"
+ },
+ {
+ "id": 1135,
+ "start": 474.7,
+ "end": 475.16,
+ "text": "workshop"
+ },
+ {
+ "id": 1136,
+ "start": 475.16,
+ "end": 475.29,
+ "text": "with"
+ },
+ {
+ "id": 1137,
+ "start": 475.29,
+ "end": 475.4,
+ "text": "her"
+ },
+ {
+ "id": 1138,
+ "start": 475.39,
+ "end": 475.7,
+ "text": "friend"
+ },
+ {
+ "id": 1139,
+ "start": 475.7,
+ "end": 475.93,
+ "text": "Hannah"
+ },
+ {
+ "id": 1140,
+ "start": 475.93,
+ "end": 476.19,
+ "text": "Scott."
+ },
+ {
+ "id": 1141,
+ "start": 476.2,
+ "end": 476.62,
+ "text": "Scott,"
+ },
+ {
+ "id": 1142,
+ "start": 476.9,
+ "end": 477.27,
+ "text": "then"
+ },
+ {
+ "id": 1143,
+ "start": 477.55,
+ "end": 477.68,
+ "text": "we"
+ },
+ {
+ "id": 1144,
+ "start": 477.68,
+ "end": 477.89,
+ "text": "took"
+ },
+ {
+ "id": 1145,
+ "start": 477.89,
+ "end": 478.27,
+ "text": "five"
+ },
+ {
+ "id": 1146,
+ "start": 478.27,
+ "end": 478.36,
+ "text": "of"
+ },
+ {
+ "id": 1147,
+ "start": 478.36,
+ "end": 478.67,
+ "text": "these"
+ },
+ {
+ "id": 1148,
+ "start": 478.67,
+ "end": 478.9,
+ "text": "baby"
+ },
+ {
+ "id": 1149,
+ "start": 478.9,
+ "end": 479.32,
+ "text": "dinosaur"
+ },
+ {
+ "id": 1150,
+ "start": 479.33,
+ "end": 479.79,
+ "text": "about"
+ },
+ {
+ "id": 1151,
+ "start": 479.84,
+ "end": 480,
+ "text": "we"
+ },
+ {
+ "id": 1152,
+ "start": 480,
+ "end": 480.2,
+ "text": "give"
+ },
+ {
+ "id": 1153,
+ "start": 480.2,
+ "end": 480.33,
+ "text": "them."
+ },
+ {
+ "id": 1154,
+ "start": 480.33,
+ "end": 480.4,
+ "text": "The"
+ },
+ {
+ "id": 1155,
+ "start": 480.39,
+ "end": 480.75,
+ "text": "five"
+ },
+ {
+ "id": 1156,
+ "start": 480.75,
+ "end": 481.08,
+ "text": "teams"
+ },
+ {
+ "id": 1157,
+ "start": 481.08,
+ "end": 481.18,
+ "text": "of"
+ },
+ {
+ "id": 1158,
+ "start": 481.18,
+ "end": 481.72,
+ "text": "people."
+ },
+ {
+ "id": 1159,
+ "start": 482.31,
+ "end": 482.5,
+ "text": "We"
+ },
+ {
+ "id": 1160,
+ "start": 482.5,
+ "end": 482.7,
+ "text": "had"
+ },
+ {
+ "id": 1161,
+ "start": 482.7,
+ "end": 482.79,
+ "text": "the"
+ },
+ {
+ "id": 1162,
+ "start": 482.79,
+ "end": 483.22,
+ "text": "name"
+ },
+ {
+ "id": 1163,
+ "start": 483.22,
+ "end": 483.68,
+ "text": "them"
+ },
+ {
+ "id": 1164,
+ "start": 483.96,
+ "end": 484.12,
+ "text": "and"
+ },
+ {
+ "id": 1165,
+ "start": 484.12,
+ "end": 484.44,
+ "text": "play"
+ },
+ {
+ "id": 1166,
+ "start": 484.44,
+ "end": 484.6,
+ "text": "with"
+ },
+ {
+ "id": 1167,
+ "start": 484.6,
+ "end": 485.11,
+ "text": "them"
+ },
+ {
+ "id": 1168,
+ "start": 485.14,
+ "end": 485.24,
+ "text": "and"
+ },
+ {
+ "id": 1169,
+ "start": 485.24,
+ "end": 485.79,
+ "text": "interact"
+ },
+ {
+ "id": 1170,
+ "start": 485.79,
+ "end": 485.92,
+ "text": "with"
+ },
+ {
+ "id": 1171,
+ "start": 485.92,
+ "end": 486.31,
+ "text": "them"
+ },
+ {
+ "id": 1172,
+ "start": 486.31,
+ "end": 486.75,
+ "text": "for"
+ },
+ {
+ "id": 1173,
+ "start": 486.83,
+ "end": 487.17,
+ "text": "about"
+ },
+ {
+ "id": 1174,
+ "start": 487.17,
+ "end": 487.28,
+ "text": "an"
+ },
+ {
+ "id": 1175,
+ "start": 487.28,
+ "end": 487.74,
+ "text": "hour."
+ },
+ {
+ "id": 1176,
+ "start": 488.8,
+ "end": 489.07,
+ "text": "Then"
+ },
+ {
+ "id": 1177,
+ "start": 489.07,
+ "end": 489.19,
+ "text": "we"
+ },
+ {
+ "id": 1178,
+ "start": 489.19,
+ "end": 489.7,
+ "text": "unveiled"
+ },
+ {
+ "id": 1179,
+ "start": 489.73,
+ "end": 489.81,
+ "text": "a"
+ },
+ {
+ "id": 1180,
+ "start": 489.81,
+ "end": 490.06,
+ "text": "him"
+ },
+ {
+ "id": 1181,
+ "start": 490.06,
+ "end": 490.22,
+ "text": "or"
+ },
+ {
+ "id": 1182,
+ "start": 490.23,
+ "end": 490.33,
+ "text": "a"
+ },
+ {
+ "id": 1183,
+ "start": 490.34,
+ "end": 490.9,
+ "text": "hatchet"
+ },
+ {
+ "id": 1184,
+ "start": 490.92,
+ "end": 491.01,
+ "text": "and"
+ },
+ {
+ "id": 1185,
+ "start": 491.01,
+ "end": 491.14,
+ "text": "we"
+ },
+ {
+ "id": 1186,
+ "start": 491.14,
+ "end": 491.39,
+ "text": "told"
+ },
+ {
+ "id": 1187,
+ "start": 491.39,
+ "end": 491.51,
+ "text": "them"
+ },
+ {
+ "id": 1188,
+ "start": 491.51,
+ "end": 491.61,
+ "text": "to"
+ },
+ {
+ "id": 1189,
+ "start": 491.61,
+ "end": 492.01,
+ "text": "torture"
+ },
+ {
+ "id": 1190,
+ "start": 492.01,
+ "end": 492.1,
+ "text": "and"
+ },
+ {
+ "id": 1191,
+ "start": 492.1,
+ "end": 492.42,
+ "text": "kill"
+ },
+ {
+ "id": 1192,
+ "start": 492.42,
+ "end": 492.54,
+ "text": "the"
+ },
+ {
+ "id": 1193,
+ "start": 492.62,
+ "end": 493.03,
+ "text": "row"
+ },
+ {
+ "id": 1194,
+ "start": 496.18,
+ "end": 496.25,
+ "text": "and"
+ },
+ {
+ "id": 1195,
+ "start": 496.78,
+ "end": 496.98,
+ "text": "then"
+ },
+ {
+ "id": 1196,
+ "start": 497.21,
+ "end": 497.42,
+ "text": "this"
+ },
+ {
+ "id": 1197,
+ "start": 497.42,
+ "end": 497.67,
+ "text": "turned"
+ },
+ {
+ "id": 1198,
+ "start": 497.67,
+ "end": 497.78,
+ "text": "out"
+ },
+ {
+ "id": 1199,
+ "start": 497.78,
+ "end": 497.91,
+ "text": "to"
+ },
+ {
+ "id": 1200,
+ "start": 497.91,
+ "end": 498.03,
+ "text": "be"
+ },
+ {
+ "id": 1201,
+ "start": 498.03,
+ "end": 498.1,
+ "text": "a"
+ },
+ {
+ "id": 1202,
+ "start": 498.1,
+ "end": 498.29,
+ "text": "little"
+ },
+ {
+ "id": 1203,
+ "start": 498.29,
+ "end": 498.41,
+ "text": "more"
+ },
+ {
+ "id": 1204,
+ "start": 498.41,
+ "end": 499.01,
+ "text": "dramatic"
+ },
+ {
+ "id": 1205,
+ "start": 499.01,
+ "end": 499.13,
+ "text": "than"
+ },
+ {
+ "id": 1206,
+ "start": 499.13,
+ "end": 499.24,
+ "text": "we"
+ },
+ {
+ "id": 1207,
+ "start": 499.24,
+ "end": 499.9,
+ "text": "expected"
+ },
+ {
+ "id": 1208,
+ "start": 499.9,
+ "end": 500,
+ "text": "it"
+ },
+ {
+ "id": 1209,
+ "start": 500,
+ "end": 500.12,
+ "text": "to"
+ },
+ {
+ "id": 1210,
+ "start": 500.12,
+ "end": 500.3,
+ "text": "be"
+ },
+ {
+ "id": 1211,
+ "start": 500.3,
+ "end": 500.6,
+ "text": "because"
+ },
+ {
+ "id": 1212,
+ "start": 500.6,
+ "end": 500.9,
+ "text": "none"
+ },
+ {
+ "id": 1213,
+ "start": 500.9,
+ "end": 501.02,
+ "text": "of"
+ },
+ {
+ "id": 1214,
+ "start": 501.02,
+ "end": 501.1,
+ "text": "the"
+ },
+ {
+ "id": 1215,
+ "start": 501.1,
+ "end": 501.86,
+ "text": "participants"
+ },
+ {
+ "id": 1216,
+ "start": 501.86,
+ "end": 502.15,
+ "text": "wouldn't"
+ },
+ {
+ "id": 1217,
+ "start": 502.44,
+ "end": 502.71,
+ "text": "even"
+ },
+ {
+ "id": 1218,
+ "start": 502.71,
+ "end": 502.83,
+ "text": "so"
+ },
+ {
+ "id": 1219,
+ "start": 502.83,
+ "end": 503.01,
+ "text": "much"
+ },
+ {
+ "id": 1220,
+ "start": 503.01,
+ "end": 503.11,
+ "text": "as"
+ },
+ {
+ "id": 1221,
+ "start": 503.11,
+ "end": 503.56,
+ "text": "straight."
+ },
+ {
+ "id": 1222,
+ "start": 504.21,
+ "end": 504.36,
+ "text": "A"
+ },
+ {
+ "id": 1223,
+ "start": 504.36,
+ "end": 504.74,
+ "text": "robot."
+ },
+ {
+ "id": 1224,
+ "start": 504.76,
+ "end": 505.11,
+ "text": "So"
+ },
+ {
+ "id": 1225,
+ "start": 505.42,
+ "end": 505.57,
+ "text": "we"
+ },
+ {
+ "id": 1226,
+ "start": 505.57,
+ "end": 505.65,
+ "text": "had"
+ },
+ {
+ "id": 1227,
+ "start": 505.65,
+ "end": 505.75,
+ "text": "to"
+ },
+ {
+ "id": 1228,
+ "start": 505.76,
+ "end": 506.26,
+ "text": "improvise."
+ },
+ {
+ "id": 1229,
+ "start": 507.35,
+ "end": 507.77,
+ "text": "End"
+ },
+ {
+ "id": 1230,
+ "start": 507.8,
+ "end": 507.98,
+ "text": "at"
+ },
+ {
+ "id": 1231,
+ "start": 507.99,
+ "end": 508.16,
+ "text": "some"
+ },
+ {
+ "id": 1232,
+ "start": 508.15,
+ "end": 508.33,
+ "text": "point."
+ },
+ {
+ "id": 1233,
+ "start": 508.33,
+ "end": 508.42,
+ "text": "He"
+ },
+ {
+ "id": 1234,
+ "start": 508.42,
+ "end": 508.72,
+ "text": "said"
+ },
+ {
+ "id": 1235,
+ "start": 508.73,
+ "end": 509.38,
+ "text": "o.k."
+ },
+ {
+ "id": 1236,
+ "start": 510.07,
+ "end": 510.34,
+ "text": "You"
+ },
+ {
+ "id": 1237,
+ "start": 510.34,
+ "end": 510.51,
+ "text": "can"
+ },
+ {
+ "id": 1238,
+ "start": 510.51,
+ "end": 510.84,
+ "text": "save"
+ },
+ {
+ "id": 1239,
+ "start": 510.84,
+ "end": 511.17,
+ "text": "your"
+ },
+ {
+ "id": 1240,
+ "start": 511.17,
+ "end": 511.61,
+ "text": "team's"
+ },
+ {
+ "id": 1241,
+ "start": 511.7,
+ "end": 512.08,
+ "text": "robot."
+ },
+ {
+ "id": 1242,
+ "start": 512.11,
+ "end": 512.33,
+ "text": "If"
+ },
+ {
+ "id": 1243,
+ "start": 512.33,
+ "end": 512.45,
+ "text": "you"
+ },
+ {
+ "id": 1244,
+ "start": 512.45,
+ "end": 513.03,
+ "text": "destroy"
+ },
+ {
+ "id": 1245,
+ "start": 513.06,
+ "end": 513.63,
+ "text": "another"
+ },
+ {
+ "id": 1246,
+ "start": 513.63,
+ "end": 513.89,
+ "text": "team"
+ },
+ {
+ "id": 1247,
+ "start": 513.9,
+ "end": 514.21,
+ "text": "throw."
+ },
+ {
+ "id": 1248,
+ "start": 514.23,
+ "end": 514.6,
+ "text": "I"
+ },
+ {
+ "id": 1249,
+ "start": 514.77,
+ "end": 515.58,
+ "text": "I."
+ },
+ {
+ "id": 1250,
+ "start": 516.52,
+ "end": 516.6,
+ "text": "And"
+ },
+ {
+ "id": 1251,
+ "start": 516.86,
+ "end": 517.17,
+ "text": "anyone"
+ },
+ {
+ "id": 1252,
+ "start": 517.17,
+ "end": 517.34,
+ "text": "that"
+ },
+ {
+ "id": 1253,
+ "start": 517.34,
+ "end": 517.59,
+ "text": "didn't"
+ },
+ {
+ "id": 1254,
+ "start": 517.59,
+ "end": 517.84,
+ "text": "work."
+ },
+ {
+ "id": 1255,
+ "start": 517.87,
+ "end": 517.94,
+ "text": "They"
+ },
+ {
+ "id": 1256,
+ "start": 517.94,
+ "end": 518.21,
+ "text": "couldn't"
+ },
+ {
+ "id": 1257,
+ "start": 518.22,
+ "end": 518.35,
+ "text": "do"
+ },
+ {
+ "id": 1258,
+ "start": 518.35,
+ "end": 518.57,
+ "text": "it."
+ },
+ {
+ "id": 1259,
+ "start": 518.61,
+ "end": 518.76,
+ "text": "So"
+ },
+ {
+ "id": 1260,
+ "start": 518.79,
+ "end": 519.3,
+ "text": "finally"
+ },
+ {
+ "id": 1261,
+ "start": 519.33,
+ "end": 519.75,
+ "text": "said,"
+ },
+ {
+ "id": 1262,
+ "start": 520.05,
+ "end": 520.24,
+ "text": "We're"
+ },
+ {
+ "id": 1263,
+ "start": 520.24,
+ "end": 520.4,
+ "text": "gonna"
+ },
+ {
+ "id": 1264,
+ "start": 520.41,
+ "end": 520.88,
+ "text": "destroy"
+ },
+ {
+ "id": 1265,
+ "start": 520.91,
+ "end": 521.24,
+ "text": "all"
+ },
+ {
+ "id": 1266,
+ "start": 521.28,
+ "end": 521.39,
+ "text": "the"
+ },
+ {
+ "id": 1267,
+ "start": 521.45,
+ "end": 521.93,
+ "text": "robots"
+ },
+ {
+ "id": 1268,
+ "start": 521.94,
+ "end": 522.16,
+ "text": "are"
+ },
+ {
+ "id": 1269,
+ "start": 522.17,
+ "end": 522.5,
+ "text": "someone"
+ },
+ {
+ "id": 1270,
+ "start": 522.5,
+ "end": 522.7,
+ "text": "takes"
+ },
+ {
+ "id": 1271,
+ "start": 522.7,
+ "end": 522.78,
+ "text": "a"
+ },
+ {
+ "id": 1272,
+ "start": 522.78,
+ "end": 523.22,
+ "text": "hatchet"
+ },
+ {
+ "id": 1273,
+ "start": 523.23,
+ "end": 523.36,
+ "text": "to"
+ },
+ {
+ "id": 1274,
+ "start": 523.36,
+ "end": 523.57,
+ "text": "one"
+ },
+ {
+ "id": 1275,
+ "start": 523.57,
+ "end": 523.72,
+ "text": "of"
+ },
+ {
+ "id": 1276,
+ "start": 523.72,
+ "end": 524,
+ "text": "them."
+ },
+ {
+ "id": 1277,
+ "start": 525.74,
+ "end": 525.98,
+ "text": "This"
+ },
+ {
+ "id": 1278,
+ "start": 525.98,
+ "end": 526.24,
+ "text": "guy"
+ },
+ {
+ "id": 1279,
+ "start": 526.24,
+ "end": 526.51,
+ "text": "stood"
+ },
+ {
+ "id": 1280,
+ "start": 526.51,
+ "end": 526.8,
+ "text": "up"
+ },
+ {
+ "id": 1281,
+ "start": 526.83,
+ "end": 527.05,
+ "text": "and"
+ },
+ {
+ "id": 1282,
+ "start": 527.05,
+ "end": 527.29,
+ "text": "he"
+ },
+ {
+ "id": 1283,
+ "start": 527.29,
+ "end": 527.64,
+ "text": "took"
+ },
+ {
+ "id": 1284,
+ "start": 527.64,
+ "end": 527.73,
+ "text": "the"
+ },
+ {
+ "id": 1285,
+ "start": 527.8,
+ "end": 528.37,
+ "text": "hatchet"
+ },
+ {
+ "id": 1286,
+ "start": 528.72,
+ "end": 528.76,
+ "text": "and"
+ },
+ {
+ "id": 1287,
+ "start": 529.32,
+ "end": 529.45,
+ "text": "the"
+ },
+ {
+ "id": 1288,
+ "start": 529.45,
+ "end": 529.74,
+ "text": "whole"
+ },
+ {
+ "id": 1289,
+ "start": 529.74,
+ "end": 530.09,
+ "text": "room,"
+ },
+ {
+ "id": 1290,
+ "start": 530.09,
+ "end": 530.52,
+ "text": "Winston."
+ },
+ {
+ "id": 1291,
+ "start": 530.53,
+ "end": 530.72,
+ "text": "See"
+ },
+ {
+ "id": 1292,
+ "start": 530.75,
+ "end": 531.1,
+ "text": "brother"
+ },
+ {
+ "id": 1293,
+ "start": 531.1,
+ "end": 531.37,
+ "text": "had"
+ },
+ {
+ "id": 1294,
+ "start": 531.36,
+ "end": 531.44,
+ "text": "to"
+ },
+ {
+ "id": 1295,
+ "start": 531.45,
+ "end": 531.77,
+ "text": "down"
+ },
+ {
+ "id": 1296,
+ "start": 531.76,
+ "end": 531.83,
+ "text": "on"
+ },
+ {
+ "id": 1297,
+ "start": 531.83,
+ "end": 531.95,
+ "text": "the"
+ },
+ {
+ "id": 1298,
+ "start": 531.95,
+ "end": 532.43,
+ "text": "robot's"
+ },
+ {
+ "id": 1299,
+ "start": 532.43,
+ "end": 533.06,
+ "text": "neck"
+ },
+ {
+ "id": 1300,
+ "start": 533.7,
+ "end": 533.99,
+ "text": "and"
+ },
+ {
+ "id": 1301,
+ "start": 534.07,
+ "end": 534.31,
+ "text": "there"
+ },
+ {
+ "id": 1302,
+ "start": 534.31,
+ "end": 534.52,
+ "text": "was"
+ },
+ {
+ "id": 1303,
+ "start": 534.52,
+ "end": 534.69,
+ "text": "this"
+ },
+ {
+ "id": 1304,
+ "start": 534.69,
+ "end": 535.14,
+ "text": "half"
+ },
+ {
+ "id": 1305,
+ "start": 535.14,
+ "end": 535.87,
+ "text": "joking."
+ },
+ {
+ "id": 1306,
+ "start": 536.02,
+ "end": 536.66,
+ "text": "Half"
+ },
+ {
+ "id": 1307,
+ "start": 536.69,
+ "end": 537.43,
+ "text": "serious"
+ },
+ {
+ "id": 1308,
+ "start": 537.43,
+ "end": 537.81,
+ "text": "moment"
+ },
+ {
+ "id": 1309,
+ "start": 537.81,
+ "end": 537.88,
+ "text": "of"
+ },
+ {
+ "id": 1310,
+ "start": 537.88,
+ "end": 538.57,
+ "text": "silence"
+ },
+ {
+ "id": 1311,
+ "start": 538.57,
+ "end": 538.81,
+ "text": "in"
+ },
+ {
+ "id": 1312,
+ "start": 538.81,
+ "end": 538.91,
+ "text": "the"
+ },
+ {
+ "id": 1313,
+ "start": 538.91,
+ "end": 539.54,
+ "text": "room"
+ },
+ {
+ "id": 1314,
+ "start": 540.03,
+ "end": 540.29,
+ "text": "from"
+ },
+ {
+ "id": 1315,
+ "start": 540.29,
+ "end": 540.49,
+ "text": "this"
+ },
+ {
+ "id": 1316,
+ "start": 540.49,
+ "end": 540.86,
+ "text": "farm"
+ },
+ {
+ "id": 1317,
+ "start": 540.86,
+ "end": 541.06,
+ "text": "and"
+ },
+ {
+ "id": 1318,
+ "start": 541.11,
+ "end": 541.58,
+ "text": "but"
+ },
+ {
+ "id": 1319,
+ "start": 543.21,
+ "end": 543.59,
+ "text": "so"
+ },
+ {
+ "id": 1320,
+ "start": 543.65,
+ "end": 543.89,
+ "text": "that"
+ },
+ {
+ "id": 1321,
+ "start": 543.89,
+ "end": 544.05,
+ "text": "was"
+ },
+ {
+ "id": 1322,
+ "start": 544.05,
+ "end": 544.17,
+ "text": "a"
+ },
+ {
+ "id": 1323,
+ "start": 544.17,
+ "end": 544.52,
+ "text": "really"
+ },
+ {
+ "id": 1324,
+ "start": 544.55,
+ "end": 545.37,
+ "text": "interesting"
+ },
+ {
+ "id": 1325,
+ "start": 545.37,
+ "end": 546.54,
+ "text": "experience."
+ },
+ {
+ "id": 1326,
+ "start": 547.04,
+ "end": 547.27,
+ "text": "It"
+ },
+ {
+ "id": 1327,
+ "start": 547.27,
+ "end": 547.54,
+ "text": "wasn't"
+ },
+ {
+ "id": 1328,
+ "start": 547.54,
+ "end": 547.59,
+ "text": "a"
+ },
+ {
+ "id": 1329,
+ "start": 547.59,
+ "end": 548.26,
+ "text": "controlled"
+ },
+ {
+ "id": 1330,
+ "start": 548.26,
+ "end": 548.74,
+ "text": "study"
+ },
+ {
+ "id": 1331,
+ "start": 548.74,
+ "end": 548.94,
+ "text": "up"
+ },
+ {
+ "id": 1332,
+ "start": 548.94,
+ "end": 549.08,
+ "text": "your"
+ },
+ {
+ "id": 1333,
+ "start": 549.08,
+ "end": 549.4,
+ "text": "sleeve,"
+ },
+ {
+ "id": 1334,
+ "start": 549.4,
+ "end": 549.57,
+ "text": "but"
+ },
+ {
+ "id": 1335,
+ "start": 549.57,
+ "end": 549.69,
+ "text": "it"
+ },
+ {
+ "id": 1336,
+ "start": 549.69,
+ "end": 549.93,
+ "text": "did"
+ },
+ {
+ "id": 1337,
+ "start": 549.93,
+ "end": 550.13,
+ "text": "lead"
+ },
+ {
+ "id": 1338,
+ "start": 550.13,
+ "end": 550.23,
+ "text": "to"
+ },
+ {
+ "id": 1339,
+ "start": 550.23,
+ "end": 550.44,
+ "text": "some"
+ },
+ {
+ "id": 1340,
+ "start": 550.44,
+ "end": 550.72,
+ "text": "leader"
+ },
+ {
+ "id": 1341,
+ "start": 550.72,
+ "end": 551.2,
+ "text": "research"
+ },
+ {
+ "id": 1342,
+ "start": 551.2,
+ "end": 551.32,
+ "text": "that"
+ },
+ {
+ "id": 1343,
+ "start": 551.32,
+ "end": 551.43,
+ "text": "I"
+ },
+ {
+ "id": 1344,
+ "start": 551.43,
+ "end": 551.76,
+ "text": "did."
+ },
+ {
+ "id": 1345,
+ "start": 551.78,
+ "end": 552.01,
+ "text": "i."
+ },
+ {
+ "id": 1346,
+ "start": 552.01,
+ "end": 552.25,
+ "text": "t."
+ },
+ {
+ "id": 1347,
+ "start": 552.27,
+ "end": 552.46,
+ "text": "With"
+ },
+ {
+ "id": 1348,
+ "start": 552.46,
+ "end": 552.87,
+ "text": "plush,"
+ },
+ {
+ "id": 1349,
+ "start": 552.87,
+ "end": 553.26,
+ "text": "London."
+ },
+ {
+ "id": 1350,
+ "start": 553.27,
+ "end": 553.59,
+ "text": "Cynthia"
+ },
+ {
+ "id": 1351,
+ "start": 553.63,
+ "end": 553.93,
+ "text": "busy."
+ },
+ {
+ "id": 1352,
+ "start": 553.93,
+ "end": 554.23,
+ "text": "Or"
+ },
+ {
+ "id": 1353,
+ "start": 554.52,
+ "end": 554.96,
+ "text": "we"
+ },
+ {
+ "id": 1354,
+ "start": 554.97,
+ "end": 555.11,
+ "text": "had"
+ },
+ {
+ "id": 1355,
+ "start": 555.11,
+ "end": 555.33,
+ "text": "people"
+ },
+ {
+ "id": 1356,
+ "start": 555.33,
+ "end": 555.54,
+ "text": "come"
+ },
+ {
+ "id": 1357,
+ "start": 555.54,
+ "end": 555.71,
+ "text": "into"
+ },
+ {
+ "id": 1358,
+ "start": 555.71,
+ "end": 555.82,
+ "text": "the"
+ },
+ {
+ "id": 1359,
+ "start": 555.82,
+ "end": 556.3,
+ "text": "lab"
+ },
+ {
+ "id": 1360,
+ "start": 556.67,
+ "end": 556.9,
+ "text": "and"
+ },
+ {
+ "id": 1361,
+ "start": 556.9,
+ "end": 557.25,
+ "text": "smash"
+ },
+ {
+ "id": 1362,
+ "start": 557.25,
+ "end": 557.43,
+ "text": "these"
+ },
+ {
+ "id": 1363,
+ "start": 557.43,
+ "end": 557.85,
+ "text": "Hex"
+ },
+ {
+ "id": 1364,
+ "start": 557.85,
+ "end": 558.21,
+ "text": "bugs"
+ },
+ {
+ "id": 1365,
+ "start": 558.21,
+ "end": 558.32,
+ "text": "that"
+ },
+ {
+ "id": 1366,
+ "start": 558.32,
+ "end": 558.6,
+ "text": "move"
+ },
+ {
+ "id": 1367,
+ "start": 558.6,
+ "end": 559.1,
+ "text": "around"
+ },
+ {
+ "id": 1368,
+ "start": 559.1,
+ "end": 559.24,
+ "text": "in"
+ },
+ {
+ "id": 1369,
+ "start": 559.24,
+ "end": 559.3,
+ "text": "a"
+ },
+ {
+ "id": 1370,
+ "start": 559.29,
+ "end": 559.5,
+ "text": "really"
+ },
+ {
+ "id": 1371,
+ "start": 559.5,
+ "end": 559.9,
+ "text": "lifelike"
+ },
+ {
+ "id": 1372,
+ "start": 559.92,
+ "end": 560.1,
+ "text": "way,"
+ },
+ {
+ "id": 1373,
+ "start": 560.1,
+ "end": 560.31,
+ "text": "like"
+ },
+ {
+ "id": 1374,
+ "start": 560.31,
+ "end": 561.16,
+ "text": "insects."
+ },
+ {
+ "id": 1375,
+ "start": 561.28,
+ "end": 561.48,
+ "text": "So"
+ },
+ {
+ "id": 1376,
+ "start": 561.48,
+ "end": 561.71,
+ "text": "instead"
+ },
+ {
+ "id": 1377,
+ "start": 561.71,
+ "end": 561.8,
+ "text": "of"
+ },
+ {
+ "id": 1378,
+ "start": 561.8,
+ "end": 562.09,
+ "text": "choosing"
+ },
+ {
+ "id": 1379,
+ "start": 562.09,
+ "end": 562.36,
+ "text": "something"
+ },
+ {
+ "id": 1380,
+ "start": 562.39,
+ "end": 562.75,
+ "text": "huge."
+ },
+ {
+ "id": 1381,
+ "start": 562.81,
+ "end": 563.33,
+ "text": "People"
+ },
+ {
+ "id": 1382,
+ "start": 563.69,
+ "end": 563.83,
+ "text": "are"
+ },
+ {
+ "id": 1383,
+ "start": 563.86,
+ "end": 564.23,
+ "text": "trying"
+ },
+ {
+ "id": 1384,
+ "start": 564.23,
+ "end": 564.48,
+ "text": "to"
+ },
+ {
+ "id": 1385,
+ "start": 564.48,
+ "end": 564.65,
+ "text": "reach"
+ },
+ {
+ "id": 1386,
+ "start": 564.65,
+ "end": 564.76,
+ "text": "for"
+ },
+ {
+ "id": 1387,
+ "start": 564.76,
+ "end": 565.06,
+ "text": "something"
+ },
+ {
+ "id": 1388,
+ "start": 565.06,
+ "end": 565.23,
+ "text": "more"
+ },
+ {
+ "id": 1389,
+ "start": 565.23,
+ "end": 566.05,
+ "text": "basic."
+ },
+ {
+ "id": 1390,
+ "start": 566.59,
+ "end": 567.04,
+ "text": "And"
+ },
+ {
+ "id": 1391,
+ "start": 567.23,
+ "end": 567.41,
+ "text": "what"
+ },
+ {
+ "id": 1392,
+ "start": 567.41,
+ "end": 567.53,
+ "text": "we"
+ },
+ {
+ "id": 1393,
+ "start": 567.53,
+ "end": 568.18,
+ "text": "found"
+ },
+ {
+ "id": 1394,
+ "start": 568.18,
+ "end": 568.55,
+ "text": "was"
+ },
+ {
+ "id": 1395,
+ "start": 568.55,
+ "end": 568.77,
+ "text": "that"
+ },
+ {
+ "id": 1396,
+ "start": 568.8,
+ "end": 569.22,
+ "text": "high"
+ },
+ {
+ "id": 1397,
+ "start": 569.22,
+ "end": 569.65,
+ "text": "embassy"
+ },
+ {
+ "id": 1398,
+ "start": 569.65,
+ "end": 570.1,
+ "text": "people"
+ },
+ {
+ "id": 1399,
+ "start": 570.1,
+ "end": 570.25,
+ "text": "would"
+ },
+ {
+ "id": 1400,
+ "start": 570.25,
+ "end": 570.77,
+ "text": "hesitate,"
+ },
+ {
+ "id": 1401,
+ "start": 570.78,
+ "end": 570.97,
+ "text": "more"
+ },
+ {
+ "id": 1402,
+ "start": 570.99,
+ "end": 571.24,
+ "text": "hit"
+ },
+ {
+ "id": 1403,
+ "start": 571.25,
+ "end": 571.35,
+ "text": "the"
+ },
+ {
+ "id": 1404,
+ "start": 571.35,
+ "end": 571.69,
+ "text": "heck's"
+ },
+ {
+ "id": 1405,
+ "start": 571.7,
+ "end": 572.22,
+ "text": "bucks."
+ },
+ {
+ "id": 1406,
+ "start": 573.62,
+ "end": 573.81,
+ "text": "This"
+ },
+ {
+ "id": 1407,
+ "start": 573.82,
+ "end": 573.92,
+ "text": "is"
+ },
+ {
+ "id": 1408,
+ "start": 573.92,
+ "end": 574.1,
+ "text": "just"
+ },
+ {
+ "id": 1409,
+ "start": 574.1,
+ "end": 574.16,
+ "text": "a"
+ },
+ {
+ "id": 1410,
+ "start": 574.16,
+ "end": 574.4,
+ "text": "little"
+ },
+ {
+ "id": 1411,
+ "start": 574.4,
+ "end": 574.91,
+ "text": "study,"
+ },
+ {
+ "id": 1412,
+ "start": 574.91,
+ "end": 575.27,
+ "text": "but"
+ },
+ {
+ "id": 1413,
+ "start": 575.49,
+ "end": 575.72,
+ "text": "it's"
+ },
+ {
+ "id": 1414,
+ "start": 575.74,
+ "end": 575.97,
+ "text": "part"
+ },
+ {
+ "id": 1415,
+ "start": 575.97,
+ "end": 576.07,
+ "text": "of"
+ },
+ {
+ "id": 1416,
+ "start": 576.07,
+ "end": 576.12,
+ "text": "a"
+ },
+ {
+ "id": 1417,
+ "start": 576.12,
+ "end": 576.48,
+ "text": "large"
+ },
+ {
+ "id": 1418,
+ "start": 576.48,
+ "end": 576.77,
+ "text": "body"
+ },
+ {
+ "id": 1419,
+ "start": 576.77,
+ "end": 576.88,
+ "text": "of"
+ },
+ {
+ "id": 1420,
+ "start": 576.88,
+ "end": 577.56,
+ "text": "research"
+ },
+ {
+ "id": 1421,
+ "start": 577.56,
+ "end": 577.9,
+ "text": "that"
+ },
+ {
+ "id": 1422,
+ "start": 578.02,
+ "end": 578.25,
+ "text": "is"
+ },
+ {
+ "id": 1423,
+ "start": 578.25,
+ "end": 578.61,
+ "text": "starting"
+ },
+ {
+ "id": 1424,
+ "start": 578.61,
+ "end": 578.73,
+ "text": "to"
+ },
+ {
+ "id": 1425,
+ "start": 578.76,
+ "end": 579.2,
+ "text": "indicate"
+ },
+ {
+ "id": 1426,
+ "start": 579.2,
+ "end": 579.3,
+ "text": "that"
+ },
+ {
+ "id": 1427,
+ "start": 579.3,
+ "end": 579.4,
+ "text": "there"
+ },
+ {
+ "id": 1428,
+ "start": 579.4,
+ "end": 579.62,
+ "text": "may"
+ },
+ {
+ "id": 1429,
+ "start": 579.62,
+ "end": 579.84,
+ "text": "be"
+ },
+ {
+ "id": 1430,
+ "start": 579.87,
+ "end": 579.95,
+ "text": "a"
+ },
+ {
+ "id": 1431,
+ "start": 579.95,
+ "end": 580.53,
+ "text": "connection"
+ },
+ {
+ "id": 1432,
+ "start": 580.53,
+ "end": 580.87,
+ "text": "between"
+ },
+ {
+ "id": 1433,
+ "start": 580.87,
+ "end": 581.3,
+ "text": "people's"
+ },
+ {
+ "id": 1434,
+ "start": 581.3,
+ "end": 581.81,
+ "text": "tendencies"
+ },
+ {
+ "id": 1435,
+ "start": 581.81,
+ "end": 581.9,
+ "text": "for"
+ },
+ {
+ "id": 1436,
+ "start": 581.9,
+ "end": 582.61,
+ "text": "empathy"
+ },
+ {
+ "id": 1437,
+ "start": 582.86,
+ "end": 582.99,
+ "text": "and"
+ },
+ {
+ "id": 1438,
+ "start": 583.03,
+ "end": 583.15,
+ "text": "their"
+ },
+ {
+ "id": 1439,
+ "start": 583.15,
+ "end": 583.79,
+ "text": "behaviour"
+ },
+ {
+ "id": 1440,
+ "start": 583.79,
+ "end": 584.19,
+ "text": "around,"
+ },
+ {
+ "id": 1441,
+ "start": 584.2,
+ "end": 584.63,
+ "text": "Rover."
+ },
+ {
+ "id": 1442,
+ "start": 585.66,
+ "end": 585.8,
+ "text": "But"
+ },
+ {
+ "id": 1443,
+ "start": 585.84,
+ "end": 586.09,
+ "text": "my"
+ },
+ {
+ "id": 1444,
+ "start": 586.09,
+ "end": 586.85,
+ "text": "question"
+ },
+ {
+ "id": 1445,
+ "start": 586.88,
+ "end": 587.01,
+ "text": "for"
+ },
+ {
+ "id": 1446,
+ "start": 587.01,
+ "end": 587.1,
+ "text": "the"
+ },
+ {
+ "id": 1447,
+ "start": 587.1,
+ "end": 587.61,
+ "text": "coming"
+ },
+ {
+ "id": 1448,
+ "start": 587.61,
+ "end": 587.94,
+ "text": "era"
+ },
+ {
+ "id": 1449,
+ "start": 587.97,
+ "end": 588.09,
+ "text": "of"
+ },
+ {
+ "id": 1450,
+ "start": 588.09,
+ "end": 588.39,
+ "text": "human"
+ },
+ {
+ "id": 1451,
+ "start": 588.39,
+ "end": 588.68,
+ "text": "robot"
+ },
+ {
+ "id": 1452,
+ "start": 588.69,
+ "end": 589.27,
+ "text": "interaction"
+ },
+ {
+ "id": 1453,
+ "start": 589.37,
+ "end": 589.54,
+ "text": "is"
+ },
+ {
+ "id": 1454,
+ "start": 589.55,
+ "end": 589.99,
+ "text": "not"
+ },
+ {
+ "id": 1455,
+ "start": 590.35,
+ "end": 590.47,
+ "text": "to."
+ },
+ {
+ "id": 1456,
+ "start": 590.57,
+ "end": 590.76,
+ "text": "We"
+ },
+ {
+ "id": 1457,
+ "start": 590.76,
+ "end": 591.42,
+ "text": "empathise"
+ },
+ {
+ "id": 1458,
+ "start": 591.42,
+ "end": 591.57,
+ "text": "with"
+ },
+ {
+ "id": 1459,
+ "start": 591.57,
+ "end": 591.78,
+ "text": "throw,"
+ },
+ {
+ "id": 1460,
+ "start": 591.78,
+ "end": 592.4,
+ "text": "but"
+ },
+ {
+ "id": 1461,
+ "start": 593.2,
+ "end": 593.41,
+ "text": "it."
+ },
+ {
+ "id": 1462,
+ "start": 593.41,
+ "end": 593.85,
+ "text": "Can"
+ },
+ {
+ "id": 1463,
+ "start": 593.86,
+ "end": 594.36,
+ "text": "robots"
+ },
+ {
+ "id": 1464,
+ "start": 594.37,
+ "end": 595.01,
+ "text": "change"
+ },
+ {
+ "id": 1465,
+ "start": 595.03,
+ "end": 595.41,
+ "text": "people's"
+ },
+ {
+ "id": 1466,
+ "start": 595.63,
+ "end": 596.03,
+ "text": "thinking,"
+ },
+ {
+ "id": 1467,
+ "start": 597.48,
+ "end": 597.69,
+ "text": "Is"
+ },
+ {
+ "id": 1468,
+ "start": 597.69,
+ "end": 597.85,
+ "text": "there"
+ },
+ {
+ "id": 1469,
+ "start": 597.86,
+ "end": 598.27,
+ "text": "reason"
+ },
+ {
+ "id": 1470,
+ "start": 598.27,
+ "end": 598.49,
+ "text": "to."
+ },
+ {
+ "id": 1471,
+ "start": 598.49,
+ "end": 598.65,
+ "text": "For"
+ },
+ {
+ "id": 1472,
+ "start": 598.65,
+ "end": 599.47,
+ "text": "example,"
+ },
+ {
+ "id": 1473,
+ "start": 599.79,
+ "end": 600.15,
+ "text": "prevent"
+ },
+ {
+ "id": 1474,
+ "start": 600.15,
+ "end": 600.25,
+ "text": "the"
+ },
+ {
+ "id": 1475,
+ "start": 600.25,
+ "end": 600.7,
+ "text": "child"
+ },
+ {
+ "id": 1476,
+ "start": 600.7,
+ "end": 600.85,
+ "text": "from"
+ },
+ {
+ "id": 1477,
+ "start": 600.85,
+ "end": 601.25,
+ "text": "kicking"
+ },
+ {
+ "id": 1478,
+ "start": 601.3,
+ "end": 601.62,
+ "text": "about"
+ },
+ {
+ "id": 1479,
+ "start": 601.69,
+ "end": 602.1,
+ "text": "Doc"
+ },
+ {
+ "id": 1480,
+ "start": 603.2,
+ "end": 603.51,
+ "text": "That"
+ },
+ {
+ "id": 1481,
+ "start": 603.55,
+ "end": 603.92,
+ "text": "just"
+ },
+ {
+ "id": 1482,
+ "start": 603.95,
+ "end": 604.06,
+ "text": "out"
+ },
+ {
+ "id": 1483,
+ "start": 604.06,
+ "end": 604.16,
+ "text": "of"
+ },
+ {
+ "id": 1484,
+ "start": 604.16,
+ "end": 604.66,
+ "text": "respect"
+ },
+ {
+ "id": 1485,
+ "start": 604.66,
+ "end": 604.8,
+ "text": "for"
+ },
+ {
+ "id": 1486,
+ "start": 604.8,
+ "end": 605.53,
+ "text": "property"
+ },
+ {
+ "id": 1487,
+ "start": 606.15,
+ "end": 606.83,
+ "text": "because"
+ },
+ {
+ "id": 1488,
+ "start": 606.83,
+ "end": 606.93,
+ "text": "the"
+ },
+ {
+ "id": 1489,
+ "start": 606.93,
+ "end": 607.25,
+ "text": "child"
+ },
+ {
+ "id": 1490,
+ "start": 607.25,
+ "end": 607.35,
+ "text": "may"
+ },
+ {
+ "id": 1491,
+ "start": 607.35,
+ "end": 607.47,
+ "text": "be"
+ },
+ {
+ "id": 1492,
+ "start": 607.47,
+ "end": 607.6,
+ "text": "more"
+ },
+ {
+ "id": 1493,
+ "start": 607.6,
+ "end": 607.97,
+ "text": "likely"
+ },
+ {
+ "id": 1494,
+ "start": 607.97,
+ "end": 608.07,
+ "text": "to"
+ },
+ {
+ "id": 1495,
+ "start": 608.07,
+ "end": 608.28,
+ "text": "take"
+ },
+ {
+ "id": 1496,
+ "start": 608.28,
+ "end": 608.35,
+ "text": "a"
+ },
+ {
+ "id": 1497,
+ "start": 608.35,
+ "end": 608.55,
+ "text": "real"
+ },
+ {
+ "id": 1498,
+ "start": 608.55,
+ "end": 609.03,
+ "text": "dark"
+ },
+ {
+ "id": 1499,
+ "start": 610.49,
+ "end": 610.63,
+ "text": "and"
+ },
+ {
+ "id": 1500,
+ "start": 610.65,
+ "end": 610.96,
+ "text": "again."
+ },
+ {
+ "id": 1501,
+ "start": 610.96,
+ "end": 611.17,
+ "text": "It's"
+ },
+ {
+ "id": 1502,
+ "start": 611.17,
+ "end": 611.46,
+ "text": "not"
+ },
+ {
+ "id": 1503,
+ "start": 611.46,
+ "end": 611.72,
+ "text": "just"
+ },
+ {
+ "id": 1504,
+ "start": 611.72,
+ "end": 612.38,
+ "text": "kids"
+ },
+ {
+ "id": 1505,
+ "start": 612.96,
+ "end": 613.14,
+ "text": "and"
+ },
+ {
+ "id": 1506,
+ "start": 613.54,
+ "end": 613.77,
+ "text": "this"
+ },
+ {
+ "id": 1507,
+ "start": 613.77,
+ "end": 613.96,
+ "text": "is"
+ },
+ {
+ "id": 1508,
+ "start": 613.96,
+ "end": 614.37,
+ "text": "the"
+ },
+ {
+ "id": 1509,
+ "start": 614.41,
+ "end": 615.06,
+ "text": "violent"
+ },
+ {
+ "id": 1510,
+ "start": 615.06,
+ "end": 615.39,
+ "text": "video"
+ },
+ {
+ "id": 1511,
+ "start": 615.39,
+ "end": 615.69,
+ "text": "games"
+ },
+ {
+ "id": 1512,
+ "start": 615.69,
+ "end": 616.15,
+ "text": "question,"
+ },
+ {
+ "id": 1513,
+ "start": 616.15,
+ "end": 616.32,
+ "text": "but"
+ },
+ {
+ "id": 1514,
+ "start": 616.32,
+ "end": 616.42,
+ "text": "it's"
+ },
+ {
+ "id": 1515,
+ "start": 616.43,
+ "end": 616.53,
+ "text": "a"
+ },
+ {
+ "id": 1516,
+ "start": 616.54,
+ "end": 617.15,
+ "text": "completely"
+ },
+ {
+ "id": 1517,
+ "start": 617.15,
+ "end": 617.29,
+ "text": "new"
+ },
+ {
+ "id": 1518,
+ "start": 617.29,
+ "end": 617.6,
+ "text": "level"
+ },
+ {
+ "id": 1519,
+ "start": 617.6,
+ "end": 617.85,
+ "text": "because"
+ },
+ {
+ "id": 1520,
+ "start": 617.85,
+ "end": 617.94,
+ "text": "of"
+ },
+ {
+ "id": 1521,
+ "start": 617.94,
+ "end": 618.16,
+ "text": "this"
+ },
+ {
+ "id": 1522,
+ "start": 618.16,
+ "end": 618.82,
+ "text": "visceral"
+ },
+ {
+ "id": 1523,
+ "start": 618.82,
+ "end": 619.75,
+ "text": "physicality"
+ },
+ {
+ "id": 1524,
+ "start": 619.75,
+ "end": 619.92,
+ "text": "that"
+ },
+ {
+ "id": 1525,
+ "start": 619.92,
+ "end": 620.08,
+ "text": "we"
+ },
+ {
+ "id": 1526,
+ "start": 620.08,
+ "end": 620.72,
+ "text": "respond"
+ },
+ {
+ "id": 1527,
+ "start": 620.72,
+ "end": 621.03,
+ "text": "more"
+ },
+ {
+ "id": 1528,
+ "start": 621.03,
+ "end": 621.74,
+ "text": "intensely."
+ },
+ {
+ "id": 1529,
+ "start": 622.03,
+ "end": 622.39,
+ "text": "Two"
+ },
+ {
+ "id": 1530,
+ "start": 622.73,
+ "end": 623.15,
+ "text": "images"
+ },
+ {
+ "id": 1531,
+ "start": 623.15,
+ "end": 623.23,
+ "text": "on"
+ },
+ {
+ "id": 1532,
+ "start": 623.23,
+ "end": 623.3,
+ "text": "a"
+ },
+ {
+ "id": 1533,
+ "start": 623.3,
+ "end": 623.95,
+ "text": "screen,"
+ },
+ {
+ "id": 1534,
+ "start": 625.67,
+ "end": 625.89,
+ "text": "we"
+ },
+ {
+ "id": 1535,
+ "start": 625.93,
+ "end": 626.17,
+ "text": "behave"
+ },
+ {
+ "id": 1536,
+ "start": 626.27,
+ "end": 626.9,
+ "text": "violently"
+ },
+ {
+ "id": 1537,
+ "start": 626.9,
+ "end": 627.43,
+ "text": "towards"
+ },
+ {
+ "id": 1538,
+ "start": 627.43,
+ "end": 628.09,
+ "text": "Robarts"
+ },
+ {
+ "id": 1539,
+ "start": 628.12,
+ "end": 628.84,
+ "text": "specifically"
+ },
+ {
+ "id": 1540,
+ "start": 628.84,
+ "end": 629.22,
+ "text": "robots"
+ },
+ {
+ "id": 1541,
+ "start": 629.22,
+ "end": 629.37,
+ "text": "that"
+ },
+ {
+ "id": 1542,
+ "start": 629.37,
+ "end": 629.46,
+ "text": "are"
+ },
+ {
+ "id": 1543,
+ "start": 629.46,
+ "end": 629.95,
+ "text": "designed"
+ },
+ {
+ "id": 1544,
+ "start": 629.95,
+ "end": 630.08,
+ "text": "to"
+ },
+ {
+ "id": 1545,
+ "start": 630.08,
+ "end": 630.4,
+ "text": "mimic"
+ },
+ {
+ "id": 1546,
+ "start": 630.4,
+ "end": 630.95,
+ "text": "life"
+ },
+ {
+ "id": 1547,
+ "start": 631.37,
+ "end": 631.55,
+ "text": "is"
+ },
+ {
+ "id": 1548,
+ "start": 631.55,
+ "end": 631.99,
+ "text": "that"
+ },
+ {
+ "id": 1549,
+ "start": 632.38,
+ "end": 632.45,
+ "text": "a"
+ },
+ {
+ "id": 1550,
+ "start": 632.62,
+ "end": 633.02,
+ "text": "healthy"
+ },
+ {
+ "id": 1551,
+ "start": 633.07,
+ "end": 633.49,
+ "text": "outlook"
+ },
+ {
+ "id": 1552,
+ "start": 633.49,
+ "end": 633.73,
+ "text": "from"
+ },
+ {
+ "id": 1553,
+ "start": 633.73,
+ "end": 633.91,
+ "text": "the"
+ },
+ {
+ "id": 1554,
+ "start": 633.94,
+ "end": 634.56,
+ "text": "behaviour"
+ },
+ {
+ "id": 1555,
+ "start": 635,
+ "end": 635.23,
+ "text": "or"
+ },
+ {
+ "id": 1556,
+ "start": 635.42,
+ "end": 635.6,
+ "text": "is"
+ },
+ {
+ "id": 1557,
+ "start": 635.6,
+ "end": 635.89,
+ "text": "that"
+ },
+ {
+ "id": 1558,
+ "start": 635.92,
+ "end": 636.41,
+ "text": "training"
+ },
+ {
+ "id": 1559,
+ "start": 636.48,
+ "end": 637,
+ "text": "cruelty"
+ },
+ {
+ "id": 1560,
+ "start": 637.02,
+ "end": 637.72,
+ "text": "muscles."
+ },
+ {
+ "id": 1561,
+ "start": 642.67,
+ "end": 642.86,
+ "text": "The"
+ },
+ {
+ "id": 1562,
+ "start": 642.9,
+ "end": 643.24,
+ "text": "answer"
+ },
+ {
+ "id": 1563,
+ "start": 643.24,
+ "end": 643.28,
+ "text": "to"
+ },
+ {
+ "id": 1564,
+ "start": 643.29,
+ "end": 643.48,
+ "text": "this"
+ },
+ {
+ "id": 1565,
+ "start": 643.48,
+ "end": 644.1,
+ "text": "question"
+ },
+ {
+ "id": 1566,
+ "start": 644.1,
+ "end": 644.34,
+ "text": "has"
+ },
+ {
+ "id": 1567,
+ "start": 644.34,
+ "end": 644.42,
+ "text": "the"
+ },
+ {
+ "id": 1568,
+ "start": 644.42,
+ "end": 644.96,
+ "text": "potential"
+ },
+ {
+ "id": 1569,
+ "start": 645.01,
+ "end": 645.45,
+ "text": "impact"
+ },
+ {
+ "id": 1570,
+ "start": 645.45,
+ "end": 645.73,
+ "text": "human"
+ },
+ {
+ "id": 1571,
+ "start": 645.73,
+ "end": 646.44,
+ "text": "behaviour"
+ },
+ {
+ "id": 1572,
+ "start": 646.61,
+ "end": 646.9,
+ "text": "has"
+ },
+ {
+ "id": 1573,
+ "start": 646.9,
+ "end": 646.98,
+ "text": "the"
+ },
+ {
+ "id": 1574,
+ "start": 646.98,
+ "end": 647.5,
+ "text": "potential"
+ },
+ {
+ "id": 1575,
+ "start": 647.5,
+ "end": 647.96,
+ "text": "impact"
+ },
+ {
+ "id": 1576,
+ "start": 647.96,
+ "end": 648.32,
+ "text": "social"
+ },
+ {
+ "id": 1577,
+ "start": 648.32,
+ "end": 648.94,
+ "text": "norms."
+ },
+ {
+ "id": 1578,
+ "start": 649.33,
+ "end": 649.45,
+ "text": "It"
+ },
+ {
+ "id": 1579,
+ "start": 649.48,
+ "end": 649.67,
+ "text": "has"
+ },
+ {
+ "id": 1580,
+ "start": 649.67,
+ "end": 649.77,
+ "text": "the"
+ },
+ {
+ "id": 1581,
+ "start": 649.77,
+ "end": 650.22,
+ "text": "potential"
+ },
+ {
+ "id": 1582,
+ "start": 650.22,
+ "end": 650.37,
+ "text": "to"
+ },
+ {
+ "id": 1583,
+ "start": 650.37,
+ "end": 650.87,
+ "text": "inspire"
+ },
+ {
+ "id": 1584,
+ "start": 650.87,
+ "end": 651.43,
+ "text": "rules"
+ },
+ {
+ "id": 1585,
+ "start": 651.46,
+ "end": 651.8,
+ "text": "around."
+ },
+ {
+ "id": 1586,
+ "start": 651.8,
+ "end": 651.93,
+ "text": "What"
+ },
+ {
+ "id": 1587,
+ "start": 651.93,
+ "end": 652.26,
+ "text": "we"
+ },
+ {
+ "id": 1588,
+ "start": 652.31,
+ "end": 652.65,
+ "text": "can"
+ },
+ {
+ "id": 1589,
+ "start": 652.65,
+ "end": 652.72,
+ "text": "and"
+ },
+ {
+ "id": 1590,
+ "start": 652.72,
+ "end": 653.04,
+ "text": "can't"
+ },
+ {
+ "id": 1591,
+ "start": 653.04,
+ "end": 653.29,
+ "text": "do"
+ },
+ {
+ "id": 1592,
+ "start": 653.33,
+ "end": 653.61,
+ "text": "certain"
+ },
+ {
+ "id": 1593,
+ "start": 653.63,
+ "end": 654.43,
+ "text": "Robarts"
+ },
+ {
+ "id": 1594,
+ "start": 655,
+ "end": 655.32,
+ "text": "animal"
+ },
+ {
+ "id": 1595,
+ "start": 655.32,
+ "end": 655.74,
+ "text": "cruelty,"
+ },
+ {
+ "id": 1596,
+ "start": 655.81,
+ "end": 656.25,
+ "text": "but"
+ },
+ {
+ "id": 1597,
+ "start": 657.22,
+ "end": 657.55,
+ "text": "because"
+ },
+ {
+ "id": 1598,
+ "start": 657.58,
+ "end": 657.87,
+ "text": "even"
+ },
+ {
+ "id": 1599,
+ "start": 657.87,
+ "end": 658.02,
+ "text": "if"
+ },
+ {
+ "id": 1600,
+ "start": 658.02,
+ "end": 658.42,
+ "text": "robots"
+ },
+ {
+ "id": 1601,
+ "start": 658.42,
+ "end": 658.68,
+ "text": "can't"
+ },
+ {
+ "id": 1602,
+ "start": 658.71,
+ "end": 659.38,
+ "text": "fuel"
+ },
+ {
+ "id": 1603,
+ "start": 660.1,
+ "end": 660.22,
+ "text": "our"
+ },
+ {
+ "id": 1604,
+ "start": 660.25,
+ "end": 660.89,
+ "text": "behaviour"
+ },
+ {
+ "id": 1605,
+ "start": 660.89,
+ "end": 661.26,
+ "text": "towards"
+ },
+ {
+ "id": 1606,
+ "start": 661.26,
+ "end": 661.34,
+ "text": "a"
+ },
+ {
+ "id": 1607,
+ "start": 661.42,
+ "end": 662.25,
+ "text": "matter"
+ },
+ {
+ "id": 1608,
+ "start": 662.39,
+ "end": 662.64,
+ "text": "for"
+ },
+ {
+ "id": 1609,
+ "start": 662.64,
+ "end": 663.15,
+ "text": "us"
+ },
+ {
+ "id": 1610,
+ "start": 664.89,
+ "end": 665.03,
+ "text": "and"
+ },
+ {
+ "id": 1611,
+ "start": 665.06,
+ "end": 665.6,
+ "text": "regardless"
+ },
+ {
+ "id": 1612,
+ "start": 665.6,
+ "end": 665.7,
+ "text": "of"
+ },
+ {
+ "id": 1613,
+ "start": 665.7,
+ "end": 665.93,
+ "text": "whether"
+ },
+ {
+ "id": 1614,
+ "start": 665.93,
+ "end": 666.06,
+ "text": "we"
+ },
+ {
+ "id": 1615,
+ "start": 666.06,
+ "end": 666.21,
+ "text": "end"
+ },
+ {
+ "id": 1616,
+ "start": 666.21,
+ "end": 666.33,
+ "text": "up"
+ },
+ {
+ "id": 1617,
+ "start": 666.32,
+ "end": 666.9,
+ "text": "changing"
+ },
+ {
+ "id": 1618,
+ "start": 666.97,
+ "end": 667.64,
+ "text": "ovals"
+ },
+ {
+ "id": 1619,
+ "start": 668.9,
+ "end": 669.34,
+ "text": "robots"
+ },
+ {
+ "id": 1620,
+ "start": 669.34,
+ "end": 669.59,
+ "text": "might"
+ },
+ {
+ "id": 1621,
+ "start": 669.59,
+ "end": 669.74,
+ "text": "be"
+ },
+ {
+ "id": 1622,
+ "start": 669.74,
+ "end": 669.94,
+ "text": "able"
+ },
+ {
+ "id": 1623,
+ "start": 669.94,
+ "end": 670.03,
+ "text": "to"
+ },
+ {
+ "id": 1624,
+ "start": 670.03,
+ "end": 670.25,
+ "text": "help"
+ },
+ {
+ "id": 1625,
+ "start": 670.25,
+ "end": 670.38,
+ "text": "us"
+ },
+ {
+ "id": 1626,
+ "start": 670.38,
+ "end": 670.59,
+ "text": "come"
+ },
+ {
+ "id": 1627,
+ "start": 670.59,
+ "end": 670.73,
+ "text": "to"
+ },
+ {
+ "id": 1628,
+ "start": 670.73,
+ "end": 670.79,
+ "text": "a"
+ },
+ {
+ "id": 1629,
+ "start": 670.79,
+ "end": 671.02,
+ "text": "new"
+ },
+ {
+ "id": 1630,
+ "start": 671.02,
+ "end": 671.59,
+ "text": "understanding"
+ },
+ {
+ "id": 1631,
+ "start": 671.59,
+ "end": 671.7,
+ "text": "of"
+ },
+ {
+ "id": 1632,
+ "start": 671.7,
+ "end": 672.51,
+ "text": "ourselves."
+ },
+ {
+ "id": 1633,
+ "start": 674.24,
+ "end": 674.52,
+ "text": "Most"
+ },
+ {
+ "id": 1634,
+ "start": 674.52,
+ "end": 674.62,
+ "text": "of"
+ },
+ {
+ "id": 1635,
+ "start": 674.62,
+ "end": 674.76,
+ "text": "what"
+ },
+ {
+ "id": 1636,
+ "start": 674.8,
+ "end": 675.03,
+ "text": "learned"
+ },
+ {
+ "id": 1637,
+ "start": 675.03,
+ "end": 675.15,
+ "text": "over"
+ },
+ {
+ "id": 1638,
+ "start": 675.16,
+ "end": 675.24,
+ "text": "the"
+ },
+ {
+ "id": 1639,
+ "start": 675.24,
+ "end": 675.53,
+ "text": "past"
+ },
+ {
+ "id": 1640,
+ "start": 675.53,
+ "end": 675.72,
+ "text": "ten"
+ },
+ {
+ "id": 1641,
+ "start": 675.72,
+ "end": 676.36,
+ "text": "years"
+ },
+ {
+ "id": 1642,
+ "start": 676.45,
+ "end": 676.63,
+ "text": "have"
+ },
+ {
+ "id": 1643,
+ "start": 676.63,
+ "end": 676.85,
+ "text": "not"
+ },
+ {
+ "id": 1644,
+ "start": 676.85,
+ "end": 676.97,
+ "text": "been"
+ },
+ {
+ "id": 1645,
+ "start": 676.98,
+ "end": 677.21,
+ "text": "about"
+ },
+ {
+ "id": 1646,
+ "start": 677.21,
+ "end": 677.8,
+ "text": "technology."
+ },
+ {
+ "id": 1647,
+ "start": 677.8,
+ "end": 678.1,
+ "text": "A"
+ },
+ {
+ "id": 1648,
+ "start": 678.84,
+ "end": 679.07,
+ "text": "It's"
+ },
+ {
+ "id": 1649,
+ "start": 679.07,
+ "end": 679.21,
+ "text": "been"
+ },
+ {
+ "id": 1650,
+ "start": 679.21,
+ "end": 679.45,
+ "text": "about"
+ },
+ {
+ "id": 1651,
+ "start": 679.45,
+ "end": 679.76,
+ "text": "human"
+ },
+ {
+ "id": 1652,
+ "start": 679.76,
+ "end": 680.68,
+ "text": "psychology"
+ },
+ {
+ "id": 1653,
+ "start": 681.22,
+ "end": 681.34,
+ "text": "and"
+ },
+ {
+ "id": 1654,
+ "start": 681.54,
+ "end": 682.29,
+ "text": "empathy"
+ },
+ {
+ "id": 1655,
+ "start": 682.32,
+ "end": 682.41,
+ "text": "and"
+ },
+ {
+ "id": 1656,
+ "start": 682.42,
+ "end": 682.67,
+ "text": "how"
+ },
+ {
+ "id": 1657,
+ "start": 682.67,
+ "end": 682.8,
+ "text": "we"
+ },
+ {
+ "id": 1658,
+ "start": 682.8,
+ "end": 683.12,
+ "text": "relate"
+ },
+ {
+ "id": 1659,
+ "start": 683.12,
+ "end": 683.23,
+ "text": "to"
+ },
+ {
+ "id": 1660,
+ "start": 683.26,
+ "end": 683.91,
+ "text": "others."
+ },
+ {
+ "id": 1661,
+ "start": 685.11,
+ "end": 685.16,
+ "text": "And"
+ },
+ {
+ "id": 1662,
+ "start": 685.51,
+ "end": 685.84,
+ "text": "because"
+ },
+ {
+ "id": 1663,
+ "start": 685.84,
+ "end": 685.97,
+ "text": "when"
+ },
+ {
+ "id": 1664,
+ "start": 685.97,
+ "end": 686.05,
+ "text": "a"
+ },
+ {
+ "id": 1665,
+ "start": 686.05,
+ "end": 686.48,
+ "text": "child"
+ },
+ {
+ "id": 1666,
+ "start": 686.48,
+ "end": 686.6,
+ "text": "is"
+ },
+ {
+ "id": 1667,
+ "start": 686.6,
+ "end": 687,
+ "text": "kind"
+ },
+ {
+ "id": 1668,
+ "start": 687,
+ "end": 687.12,
+ "text": "to"
+ },
+ {
+ "id": 1669,
+ "start": 687.12,
+ "end": 687.24,
+ "text": "her"
+ },
+ {
+ "id": 1670,
+ "start": 687.24,
+ "end": 687.5,
+ "text": "room."
+ },
+ {
+ "id": 1671,
+ "start": 687.5,
+ "end": 687.8,
+ "text": "But"
+ },
+ {
+ "id": 1672,
+ "start": 689.25,
+ "end": 689.42,
+ "text": "when"
+ },
+ {
+ "id": 1673,
+ "start": 689.42,
+ "end": 689.51,
+ "text": "a"
+ },
+ {
+ "id": 1674,
+ "start": 689.51,
+ "end": 690,
+ "text": "soldier"
+ },
+ {
+ "id": 1675,
+ "start": 690.01,
+ "end": 690.34,
+ "text": "tries"
+ },
+ {
+ "id": 1676,
+ "start": 690.34,
+ "end": 690.45,
+ "text": "to"
+ },
+ {
+ "id": 1677,
+ "start": 690.45,
+ "end": 690.77,
+ "text": "save"
+ },
+ {
+ "id": 1678,
+ "start": 690.77,
+ "end": 690.87,
+ "text": "a"
+ },
+ {
+ "id": 1679,
+ "start": 690.87,
+ "end": 691.22,
+ "text": "robot"
+ },
+ {
+ "id": 1680,
+ "start": 691.22,
+ "end": 691.36,
+ "text": "on"
+ },
+ {
+ "id": 1681,
+ "start": 691.36,
+ "end": 691.43,
+ "text": "the"
+ },
+ {
+ "id": 1682,
+ "start": 691.43,
+ "end": 692.28,
+ "text": "battlefield."
+ },
+ {
+ "id": 1683,
+ "start": 693.36,
+ "end": 693.55,
+ "text": "When"
+ },
+ {
+ "id": 1684,
+ "start": 693.56,
+ "end": 693.62,
+ "text": "a"
+ },
+ {
+ "id": 1685,
+ "start": 693.62,
+ "end": 693.84,
+ "text": "group"
+ },
+ {
+ "id": 1686,
+ "start": 693.84,
+ "end": 693.97,
+ "text": "of"
+ },
+ {
+ "id": 1687,
+ "start": 693.97,
+ "end": 694.34,
+ "text": "people"
+ },
+ {
+ "id": 1688,
+ "start": 694.34,
+ "end": 694.9,
+ "text": "refuses"
+ },
+ {
+ "id": 1689,
+ "start": 694.9,
+ "end": 695,
+ "text": "to"
+ },
+ {
+ "id": 1690,
+ "start": 695,
+ "end": 695.44,
+ "text": "harm"
+ },
+ {
+ "id": 1691,
+ "start": 695.44,
+ "end": 695.57,
+ "text": "her"
+ },
+ {
+ "id": 1692,
+ "start": 695.56,
+ "end": 695.8,
+ "text": "about"
+ },
+ {
+ "id": 1693,
+ "start": 695.81,
+ "end": 695.89,
+ "text": "a"
+ },
+ {
+ "id": 1694,
+ "start": 695.92,
+ "end": 696.13,
+ "text": "baby"
+ },
+ {
+ "id": 1695,
+ "start": 696.13,
+ "end": 696.86,
+ "text": "dinosaur."
+ },
+ {
+ "id": 1696,
+ "start": 698.23,
+ "end": 698.46,
+ "text": "Those"
+ },
+ {
+ "id": 1697,
+ "start": 698.46,
+ "end": 698.86,
+ "text": "robots"
+ },
+ {
+ "id": 1698,
+ "start": 698.89,
+ "end": 699.1,
+ "text": "aren't"
+ },
+ {
+ "id": 1699,
+ "start": 699.1,
+ "end": 699.49,
+ "text": "just"
+ },
+ {
+ "id": 1700,
+ "start": 699.5,
+ "end": 699.93,
+ "text": "motors"
+ },
+ {
+ "id": 1701,
+ "start": 699.92,
+ "end": 700.04,
+ "text": "in"
+ },
+ {
+ "id": 1702,
+ "start": 700.05,
+ "end": 700.35,
+ "text": "years"
+ },
+ {
+ "id": 1703,
+ "start": 700.35,
+ "end": 700.45,
+ "text": "and"
+ },
+ {
+ "id": 1704,
+ "start": 700.45,
+ "end": 700.61,
+ "text": "a"
+ },
+ {
+ "id": 1705,
+ "start": 700.61,
+ "end": 701.37,
+ "text": "groom's."
+ },
+ {
+ "id": 1706,
+ "start": 702.17,
+ "end": 702.37,
+ "text": "Their"
+ },
+ {
+ "id": 1707,
+ "start": 702.62,
+ "end": 703.26,
+ "text": "reflections"
+ },
+ {
+ "id": 1708,
+ "start": 703.26,
+ "end": 703.36,
+ "text": "of"
+ },
+ {
+ "id": 1709,
+ "start": 703.36,
+ "end": 703.45,
+ "text": "our"
+ },
+ {
+ "id": 1710,
+ "start": 703.45,
+ "end": 703.63,
+ "text": "own"
+ },
+ {
+ "id": 1711,
+ "start": 703.63,
+ "end": 704.34,
+ "text": "humanity."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 13.02,
+ "end": 13.86,
+ "speaker": "TBC 0"
+ },
+ {
+ "id": 1,
+ "start": 13.86,
+ "end": 19.58,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 2,
+ "start": 21.83,
+ "end": 23.39,
+ "speaker": "TBC 2"
+ },
+ {
+ "id": 3,
+ "start": 23.45,
+ "end": 31.8,
+ "speaker": "test"
+ },
+ {
+ "id": 4,
+ "start": 31.8,
+ "end": 33.88,
+ "speaker": "TBC 4"
+ },
+ {
+ "id": 5,
+ "start": 34.27,
+ "end": 39.61,
+ "speaker": "TBC 5"
+ },
+ {
+ "id": 6,
+ "start": 39.62,
+ "end": 40.54,
+ "speaker": "TBC 6"
+ },
+ {
+ "id": 7,
+ "start": 40.54,
+ "end": 41.55,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 8,
+ "start": 41.68,
+ "end": 43.61,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 9,
+ "start": 46.53,
+ "end": 46.89,
+ "speaker": "TBC 9"
+ },
+ {
+ "id": 10,
+ "start": 46.9,
+ "end": 52.31,
+ "speaker": "TBC 10"
+ },
+ {
+ "id": 11,
+ "start": 55.22,
+ "end": 64.47,
+ "speaker": "TBC 11"
+ },
+ {
+ "id": 12,
+ "start": 64.73,
+ "end": 65.33,
+ "speaker": "TBC 12"
+ },
+ {
+ "id": 13,
+ "start": 65.42,
+ "end": 68.9,
+ "speaker": "TBC 13"
+ },
+ {
+ "id": 14,
+ "start": 69.99,
+ "end": 70.58,
+ "speaker": "TBC 14"
+ },
+ {
+ "id": 15,
+ "start": 70.58,
+ "end": 75.66,
+ "speaker": "TBC 15"
+ },
+ {
+ "id": 16,
+ "start": 75.67,
+ "end": 85.81,
+ "speaker": "TBC 16"
+ },
+ {
+ "id": 17,
+ "start": 86.66,
+ "end": 88.91,
+ "speaker": "TBC 17"
+ },
+ {
+ "id": 18,
+ "start": 89.46,
+ "end": 100.87,
+ "speaker": "TBC 18"
+ },
+ {
+ "id": 19,
+ "start": 101.49,
+ "end": 101.84,
+ "speaker": "TBC 19"
+ },
+ {
+ "id": 20,
+ "start": 101.87,
+ "end": 104.79,
+ "speaker": "TBC 20"
+ },
+ {
+ "id": 21,
+ "start": 106.41,
+ "end": 112.52,
+ "speaker": "TBC 21"
+ },
+ {
+ "id": 22,
+ "start": 112.93,
+ "end": 114.6,
+ "speaker": "TBC 22"
+ },
+ {
+ "id": 23,
+ "start": 116.26,
+ "end": 135.53,
+ "speaker": "TBC 23"
+ },
+ {
+ "id": 24,
+ "start": 135.56,
+ "end": 140.69,
+ "speaker": "TBC 24"
+ },
+ {
+ "id": 25,
+ "start": 140.75,
+ "end": 147.31,
+ "speaker": "TBC 25"
+ },
+ {
+ "id": 26,
+ "start": 147.42,
+ "end": 154.45,
+ "speaker": "TBC 26"
+ },
+ {
+ "id": 27,
+ "start": 154.48,
+ "end": 172.15,
+ "speaker": "TBC 27"
+ },
+ {
+ "id": 28,
+ "start": 175.1,
+ "end": 182.25,
+ "speaker": "TBC 28"
+ },
+ {
+ "id": 29,
+ "start": 182.25,
+ "end": 183.99,
+ "speaker": "TBC 29"
+ },
+ {
+ "id": 30,
+ "start": 184.07,
+ "end": 200.52,
+ "speaker": "TBC 30"
+ },
+ {
+ "id": 31,
+ "start": 200.52,
+ "end": 205.86,
+ "speaker": "TBC 31"
+ },
+ {
+ "id": 32,
+ "start": 206.65,
+ "end": 209.4,
+ "speaker": "TBC 32"
+ },
+ {
+ "id": 33,
+ "start": 209.44,
+ "end": 213.28,
+ "speaker": "TBC 33"
+ },
+ {
+ "id": 34,
+ "start": 214.85,
+ "end": 216.06,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 35,
+ "start": 216.09,
+ "end": 219.3,
+ "speaker": "TBC 35"
+ },
+ {
+ "id": 36,
+ "start": 219.3,
+ "end": 220.31,
+ "speaker": "TBC 36"
+ },
+ {
+ "id": 37,
+ "start": 221.68,
+ "end": 230.62,
+ "speaker": "TBC 37"
+ },
+ {
+ "id": 38,
+ "start": 230.61,
+ "end": 232.57,
+ "speaker": "TBC 38"
+ },
+ {
+ "id": 39,
+ "start": 234.54,
+ "end": 241.28,
+ "speaker": "TBC 39"
+ },
+ {
+ "id": 40,
+ "start": 241.32,
+ "end": 245.86,
+ "speaker": "TBC 40"
+ },
+ {
+ "id": 41,
+ "start": 246.58,
+ "end": 251.88,
+ "speaker": "TBC 41"
+ },
+ {
+ "id": 42,
+ "start": 251.88,
+ "end": 252.58,
+ "speaker": "TBC 42"
+ },
+ {
+ "id": 43,
+ "start": 252.58,
+ "end": 263.39,
+ "speaker": "TBC 43"
+ },
+ {
+ "id": 44,
+ "start": 263.39,
+ "end": 264.09,
+ "speaker": "TBC 44"
+ },
+ {
+ "id": 45,
+ "start": 264.48,
+ "end": 269.46,
+ "speaker": "TBC 45"
+ },
+ {
+ "id": 46,
+ "start": 269.9,
+ "end": 271.58,
+ "speaker": "TBC 46"
+ },
+ {
+ "id": 47,
+ "start": 274.49,
+ "end": 285.22,
+ "speaker": "TBC 47"
+ },
+ {
+ "id": 48,
+ "start": 285.22,
+ "end": 292.16,
+ "speaker": "TBC 48"
+ },
+ {
+ "id": 49,
+ "start": 292.68,
+ "end": 294.32,
+ "speaker": "TBC 49"
+ },
+ {
+ "id": 50,
+ "start": 294.32,
+ "end": 297.08,
+ "speaker": "TBC 50"
+ },
+ {
+ "id": 51,
+ "start": 297.49,
+ "end": 305,
+ "speaker": "TBC 51"
+ },
+ {
+ "id": 52,
+ "start": 305.64,
+ "end": 306.43,
+ "speaker": "TBC 52"
+ },
+ {
+ "id": 53,
+ "start": 306.43,
+ "end": 306.92,
+ "speaker": "TBC 53"
+ },
+ {
+ "id": 54,
+ "start": 306.94,
+ "end": 311.33,
+ "speaker": "TBC 54"
+ },
+ {
+ "id": 55,
+ "start": 311.33,
+ "end": 315.18,
+ "speaker": "TBC 55"
+ },
+ {
+ "id": 56,
+ "start": 315.81,
+ "end": 316.7,
+ "speaker": "TBC 56"
+ },
+ {
+ "id": 57,
+ "start": 316.7,
+ "end": 324.18,
+ "speaker": "TBC 57"
+ },
+ {
+ "id": 58,
+ "start": 324.57,
+ "end": 325.43,
+ "speaker": "TBC 58"
+ },
+ {
+ "id": 59,
+ "start": 327.58,
+ "end": 328.94,
+ "speaker": "TBC 59"
+ },
+ {
+ "id": 60,
+ "start": 328.94,
+ "end": 332.04,
+ "speaker": "TBC 60"
+ },
+ {
+ "id": 61,
+ "start": 332.04,
+ "end": 336.22,
+ "speaker": "TBC 61"
+ },
+ {
+ "id": 62,
+ "start": 337.77,
+ "end": 348.94,
+ "speaker": "TBC 62"
+ },
+ {
+ "id": 63,
+ "start": 349.19,
+ "end": 353.1,
+ "speaker": "TBC 63"
+ },
+ {
+ "id": 64,
+ "start": 353.14,
+ "end": 353.59,
+ "speaker": "TBC 64"
+ },
+ {
+ "id": 65,
+ "start": 353.61,
+ "end": 356.98,
+ "speaker": "TBC 65"
+ },
+ {
+ "id": 66,
+ "start": 358.5,
+ "end": 359.43,
+ "speaker": "TBC 66"
+ },
+ {
+ "id": 67,
+ "start": 359.43,
+ "end": 366.26,
+ "speaker": "TBC 67"
+ },
+ {
+ "id": 68,
+ "start": 366.26,
+ "end": 386.59,
+ "speaker": "TBC 68"
+ },
+ {
+ "id": 69,
+ "start": 386.59,
+ "end": 386.76,
+ "speaker": "TBC 69"
+ },
+ {
+ "id": 70,
+ "start": 386.76,
+ "end": 386.91,
+ "speaker": "TBC 70"
+ },
+ {
+ "id": 71,
+ "start": 387.01,
+ "end": 394.06,
+ "speaker": "TBC 71"
+ },
+ {
+ "id": 72,
+ "start": 394.06,
+ "end": 401.24,
+ "speaker": "TBC 72"
+ },
+ {
+ "id": 73,
+ "start": 405.04,
+ "end": 408.49,
+ "speaker": "TBC 73"
+ },
+ {
+ "id": 74,
+ "start": 410.45,
+ "end": 417.01,
+ "speaker": "TBC 74"
+ },
+ {
+ "id": 75,
+ "start": 417.44,
+ "end": 418.46,
+ "speaker": "TBC 75"
+ },
+ {
+ "id": 76,
+ "start": 418.46,
+ "end": 426.87,
+ "speaker": "TBC 76"
+ },
+ {
+ "id": 77,
+ "start": 427.23,
+ "end": 431.33,
+ "speaker": "TBC 77"
+ },
+ {
+ "id": 78,
+ "start": 431.72,
+ "end": 437.21,
+ "speaker": "TBC 78"
+ },
+ {
+ "id": 79,
+ "start": 437.23,
+ "end": 440.87,
+ "speaker": "TBC 79"
+ },
+ {
+ "id": 80,
+ "start": 440.87,
+ "end": 445.07,
+ "speaker": "TBC 80"
+ },
+ {
+ "id": 81,
+ "start": 445.07,
+ "end": 445.49,
+ "speaker": "TBC 81"
+ },
+ {
+ "id": 82,
+ "start": 445.5,
+ "end": 449.18,
+ "speaker": "TBC 82"
+ },
+ {
+ "id": 83,
+ "start": 449.76,
+ "end": 449.98,
+ "speaker": "TBC 83"
+ },
+ {
+ "id": 84,
+ "start": 449.98,
+ "end": 450.29,
+ "speaker": "TBC 84"
+ },
+ {
+ "id": 85,
+ "start": 450.29,
+ "end": 456.02,
+ "speaker": "TBC 85"
+ },
+ {
+ "id": 86,
+ "start": 456.02,
+ "end": 466.25,
+ "speaker": "TBC 86"
+ },
+ {
+ "id": 87,
+ "start": 468.75,
+ "end": 471.71,
+ "speaker": "TBC 87"
+ },
+ {
+ "id": 88,
+ "start": 471.71,
+ "end": 476.19,
+ "speaker": "TBC 88"
+ },
+ {
+ "id": 89,
+ "start": 476.2,
+ "end": 480.33,
+ "speaker": "TBC 89"
+ },
+ {
+ "id": 90,
+ "start": 480.33,
+ "end": 481.72,
+ "speaker": "TBC 90"
+ },
+ {
+ "id": 91,
+ "start": 482.31,
+ "end": 487.74,
+ "speaker": "TBC 91"
+ },
+ {
+ "id": 92,
+ "start": 488.8,
+ "end": 503.56,
+ "speaker": "TBC 92"
+ },
+ {
+ "id": 93,
+ "start": 504.21,
+ "end": 504.74,
+ "speaker": "TBC 93"
+ },
+ {
+ "id": 94,
+ "start": 504.76,
+ "end": 506.26,
+ "speaker": "TBC 94"
+ },
+ {
+ "id": 95,
+ "start": 507.35,
+ "end": 508.33,
+ "speaker": "TBC 95"
+ },
+ {
+ "id": 96,
+ "start": 508.33,
+ "end": 509.38,
+ "speaker": "TBC 96"
+ },
+ {
+ "id": 97,
+ "start": 510.07,
+ "end": 512.08,
+ "speaker": "TBC 97"
+ },
+ {
+ "id": 98,
+ "start": 512.11,
+ "end": 514.21,
+ "speaker": "TBC 98"
+ },
+ {
+ "id": 99,
+ "start": 514.23,
+ "end": 515.58,
+ "speaker": "TBC 99"
+ },
+ {
+ "id": 100,
+ "start": 516.52,
+ "end": 517.84,
+ "speaker": "TBC 100"
+ },
+ {
+ "id": 101,
+ "start": 517.87,
+ "end": 518.57,
+ "speaker": "TBC 101"
+ },
+ {
+ "id": 102,
+ "start": 518.61,
+ "end": 524,
+ "speaker": "TBC 102"
+ },
+ {
+ "id": 103,
+ "start": 525.74,
+ "end": 530.52,
+ "speaker": "TBC 103"
+ },
+ {
+ "id": 104,
+ "start": 530.53,
+ "end": 535.87,
+ "speaker": "TBC 104"
+ },
+ {
+ "id": 105,
+ "start": 536.02,
+ "end": 546.54,
+ "speaker": "TBC 105"
+ },
+ {
+ "id": 106,
+ "start": 547.04,
+ "end": 551.76,
+ "speaker": "TBC 106"
+ },
+ {
+ "id": 107,
+ "start": 551.78,
+ "end": 552.01,
+ "speaker": "TBC 107"
+ },
+ {
+ "id": 108,
+ "start": 552.01,
+ "end": 552.25,
+ "speaker": "TBC 108"
+ },
+ {
+ "id": 109,
+ "start": 552.27,
+ "end": 553.26,
+ "speaker": "TBC 109"
+ },
+ {
+ "id": 110,
+ "start": 553.27,
+ "end": 553.93,
+ "speaker": "TBC 110"
+ },
+ {
+ "id": 111,
+ "start": 553.93,
+ "end": 561.16,
+ "speaker": "TBC 111"
+ },
+ {
+ "id": 112,
+ "start": 561.28,
+ "end": 562.75,
+ "speaker": "TBC 112"
+ },
+ {
+ "id": 113,
+ "start": 562.81,
+ "end": 566.05,
+ "speaker": "TBC 113"
+ },
+ {
+ "id": 114,
+ "start": 566.59,
+ "end": 572.22,
+ "speaker": "TBC 114"
+ },
+ {
+ "id": 115,
+ "start": 573.62,
+ "end": 584.63,
+ "speaker": "TBC 115"
+ },
+ {
+ "id": 116,
+ "start": 585.66,
+ "end": 590.47,
+ "speaker": "TBC 116"
+ },
+ {
+ "id": 117,
+ "start": 590.57,
+ "end": 593.41,
+ "speaker": "TBC 117"
+ },
+ {
+ "id": 118,
+ "start": 593.41,
+ "end": 598.49,
+ "speaker": "TBC 118"
+ },
+ {
+ "id": 119,
+ "start": 598.49,
+ "end": 610.96,
+ "speaker": "TBC 119"
+ },
+ {
+ "id": 120,
+ "start": 610.96,
+ "end": 621.74,
+ "speaker": "TBC 120"
+ },
+ {
+ "id": 121,
+ "start": 622.03,
+ "end": 637.72,
+ "speaker": "TBC 121"
+ },
+ {
+ "id": 122,
+ "start": 642.67,
+ "end": 648.94,
+ "speaker": "TBC 122"
+ },
+ {
+ "id": 123,
+ "start": 649.33,
+ "end": 651.8,
+ "speaker": "TBC 123"
+ },
+ {
+ "id": 124,
+ "start": 651.8,
+ "end": 672.51,
+ "speaker": "TBC 124"
+ },
+ {
+ "id": 125,
+ "start": 674.24,
+ "end": 677.8,
+ "speaker": "TBC 125"
+ },
+ {
+ "id": 126,
+ "start": 677.8,
+ "end": 683.91,
+ "speaker": "TBC 126"
+ },
+ {
+ "id": 127,
+ "start": 685.11,
+ "end": 687.5,
+ "speaker": "TBC 127"
+ },
+ {
+ "id": 128,
+ "start": 687.5,
+ "end": 692.28,
+ "speaker": "TBC 128"
+ },
+ {
+ "id": 129,
+ "start": 693.36,
+ "end": 696.86,
+ "speaker": "TBC 129"
+ },
+ {
+ "id": 130,
+ "start": 698.23,
+ "end": 701.37,
+ "speaker": "TBC 130"
+ },
+ {
+ "id": 131,
+ "start": 702.17,
+ "end": 704.34,
+ "speaker": "TBC 131"
+ }
+ ]
+ }
+ },
+ {
+ "_id": "29cjw29xii80000ird74yb19swa",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "title": "Morgan Vague Ted Talk",
+ "description": "Ted Talk by Morgan Vague ",
+ "url": "https://download.ted.com/talks/MorganVague_2018X.mp4",
+ "status": "done",
+ "clipName": "MorganVague_2018X.mp4",
+ "transcript": {
+ "words": [
+ {
+ "start": 13.26,
+ "end": 14.08,
+ "text": "Plastic"
+ },
+ {
+ "start": 14.42,
+ "end": 14.88,
+ "text": "you"
+ },
+ {
+ "start": 14.86,
+ "end": 15.08,
+ "text": "know"
+ },
+ {
+ "start": 15.06,
+ "end": 15.36,
+ "text": "about"
+ },
+ {
+ "start": 15.32,
+ "end": 15.56,
+ "text": "them,"
+ },
+ {
+ "start": 15.9,
+ "end": 16.1,
+ "text": "you"
+ },
+ {
+ "start": 16.1,
+ "end": 16.28,
+ "text": "may"
+ },
+ {
+ "start": 16.28,
+ "end": 16.48,
+ "text": "not"
+ },
+ {
+ "start": 16.48,
+ "end": 16.76,
+ "text": "love"
+ },
+ {
+ "start": 16.72,
+ "end": 16.92,
+ "text": "them."
+ },
+ {
+ "start": 17.3,
+ "end": 17.48,
+ "text": "But"
+ },
+ {
+ "start": 17.5,
+ "end": 17.98,
+ "text": "chances"
+ },
+ {
+ "start": 17.96,
+ "end": 18.24,
+ "text": "are"
+ },
+ {
+ "start": 18.24,
+ "end": 18.54,
+ "text": "you"
+ },
+ {
+ "start": 18.5,
+ "end": 18.9,
+ "text": "use"
+ },
+ {
+ "start": 18.94,
+ "end": 19.16,
+ "text": "them"
+ },
+ {
+ "start": 19.3,
+ "end": 19.76,
+ "text": "every"
+ },
+ {
+ "start": 19.78,
+ "end": 20.16,
+ "text": "single"
+ },
+ {
+ "start": 20.16,
+ "end": 20.42,
+ "text": "day"
+ },
+ {
+ "start": 20.86,
+ "end": 22.24,
+ "text": "by"
+ },
+ {
+ "start": 22.22,
+ "end": 22.68,
+ "text": "twenty"
+ },
+ {
+ "start": 22.68,
+ "end": 23.22,
+ "text": "fifty"
+ },
+ {
+ "start": 23.24,
+ "end": 24.3,
+ "text": "researchers"
+ },
+ {
+ "start": 24.36,
+ "end": 24.9,
+ "text": "estimate"
+ },
+ {
+ "start": 24.88,
+ "end": 25.04,
+ "text": "that"
+ },
+ {
+ "start": 25,
+ "end": 25.18,
+ "text": "there"
+ },
+ {
+ "start": 25.16,
+ "end": 25.36,
+ "text": "will"
+ },
+ {
+ "start": 25.32,
+ "end": 25.44,
+ "text": "be"
+ },
+ {
+ "start": 25.4,
+ "end": 25.64,
+ "text": "more"
+ },
+ {
+ "start": 25.62,
+ "end": 26.22,
+ "text": "plastic"
+ },
+ {
+ "start": 26.2,
+ "end": 26.34,
+ "text": "in"
+ },
+ {
+ "start": 26.32,
+ "end": 26.46,
+ "text": "the"
+ },
+ {
+ "start": 26.44,
+ "end": 26.76,
+ "text": "ocean"
+ },
+ {
+ "start": 26.74,
+ "end": 26.94,
+ "text": "than"
+ },
+ {
+ "start": 26.96,
+ "end": 27.3,
+ "text": "fish."
+ },
+ {
+ "start": 27.86,
+ "end": 29.48,
+ "text": "Despite"
+ },
+ {
+ "start": 29.46,
+ "end": 29.62,
+ "text": "our"
+ },
+ {
+ "start": 29.6,
+ "end": 29.9,
+ "text": "best"
+ },
+ {
+ "start": 29.88,
+ "end": 30.44,
+ "text": "efforts"
+ },
+ {
+ "start": 30.42,
+ "end": 31.2,
+ "text": "only"
+ },
+ {
+ "start": 31.18,
+ "end": 31.64,
+ "text": "nine"
+ },
+ {
+ "start": 31.64,
+ "end": 32.18,
+ "text": "percent"
+ },
+ {
+ "start": 32.14,
+ "end": 32.42,
+ "text": "of"
+ },
+ {
+ "start": 32.5,
+ "end": 32.78,
+ "text": "all"
+ },
+ {
+ "start": 32.82,
+ "end": 33.4,
+ "text": "plastic."
+ },
+ {
+ "start": 33.38,
+ "end": 33.56,
+ "text": "We"
+ },
+ {
+ "start": 33.54,
+ "end": 34.02,
+ "text": "use"
+ },
+ {
+ "start": 34.02,
+ "end": 34.88,
+ "text": "winds"
+ },
+ {
+ "start": 34.86,
+ "end": 35.04,
+ "text": "up"
+ },
+ {
+ "start": 35.06,
+ "end": 35.32,
+ "text": "being"
+ },
+ {
+ "start": 35.32,
+ "end": 35.92,
+ "text": "recycled"
+ },
+ {
+ "start": 36.4,
+ "end": 37.58,
+ "text": "and"
+ },
+ {
+ "start": 37.56,
+ "end": 37.86,
+ "text": "even"
+ },
+ {
+ "start": 37.84,
+ "end": 38.24,
+ "text": "worse"
+ },
+ {
+ "start": 38.22,
+ "end": 39.4,
+ "text": "plastic"
+ },
+ {
+ "start": 39.38,
+ "end": 39.54,
+ "text": "is"
+ },
+ {
+ "start": 39.52,
+ "end": 40.42,
+ "text": "incredibly"
+ },
+ {
+ "start": 40.4,
+ "end": 40.74,
+ "text": "tough"
+ },
+ {
+ "start": 40.72,
+ "end": 40.92,
+ "text": "and"
+ },
+ {
+ "start": 40.88,
+ "end": 41.34,
+ "text": "durable"
+ },
+ {
+ "start": 41.34,
+ "end": 42.04,
+ "text": "and"
+ },
+ {
+ "start": 42.04,
+ "end": 42.68,
+ "text": "researchers"
+ },
+ {
+ "start": 42.72,
+ "end": 43.28,
+ "text": "estimate"
+ },
+ {
+ "start": 43.28,
+ "end": 43.56,
+ "text": "that"
+ },
+ {
+ "start": 43.54,
+ "end": 43.68,
+ "text": "it"
+ },
+ {
+ "start": 43.66,
+ "end": 43.82,
+ "text": "can"
+ },
+ {
+ "start": 43.82,
+ "end": 44.04,
+ "text": "take"
+ },
+ {
+ "start": 44.02,
+ "end": 44.56,
+ "text": "anywhere"
+ },
+ {
+ "start": 44.54,
+ "end": 44.8,
+ "text": "from"
+ },
+ {
+ "start": 44.78,
+ "end": 45.08,
+ "text": "five"
+ },
+ {
+ "start": 45.06,
+ "end": 45.5,
+ "text": "hundred"
+ },
+ {
+ "start": 45.5,
+ "end": 46.08,
+ "text": "to"
+ },
+ {
+ "start": 46.06,
+ "end": 46.48,
+ "text": "five"
+ },
+ {
+ "start": 46.44,
+ "end": 47.1,
+ "text": "thousand"
+ },
+ {
+ "start": 47.08,
+ "end": 47.42,
+ "text": "years"
+ },
+ {
+ "start": 47.4,
+ "end": 47.66,
+ "text": "to"
+ },
+ {
+ "start": 47.64,
+ "end": 48,
+ "text": "fully"
+ },
+ {
+ "start": 48.06,
+ "end": 48.36,
+ "text": "break"
+ },
+ {
+ "start": 48.44,
+ "end": 48.7,
+ "text": "down."
+ },
+ {
+ "start": 49,
+ "end": 49.1,
+ "text": "It"
+ },
+ {
+ "start": 49.88,
+ "end": 50.18,
+ "text": "leach"
+ },
+ {
+ "start": 50.16,
+ "end": 50.38,
+ "text": "is"
+ },
+ {
+ "start": 50.42,
+ "end": 50.88,
+ "text": "harmful"
+ },
+ {
+ "start": 51,
+ "end": 51.44,
+ "text": "chemical"
+ },
+ {
+ "start": 51.46,
+ "end": 52.22,
+ "text": "contaminants"
+ },
+ {
+ "start": 52.3,
+ "end": 52.64,
+ "text": "into"
+ },
+ {
+ "start": 52.66,
+ "end": 52.84,
+ "text": "our"
+ },
+ {
+ "start": 52.86,
+ "end": 53.3,
+ "text": "oceans."
+ },
+ {
+ "start": 53.82,
+ "end": 54.12,
+ "text": "Our"
+ },
+ {
+ "start": 54.24,
+ "end": 54.64,
+ "text": "soil"
+ },
+ {
+ "start": 55.26,
+ "end": 55.48,
+ "text": "or"
+ },
+ {
+ "start": 55.56,
+ "end": 55.94,
+ "text": "food"
+ },
+ {
+ "start": 56.48,
+ "end": 56.7,
+ "text": "or"
+ },
+ {
+ "start": 56.74,
+ "end": 57.14,
+ "text": "water"
+ },
+ {
+ "start": 57.8,
+ "end": 58.12,
+ "text": "and"
+ },
+ {
+ "start": 58.54,
+ "end": 58.9,
+ "text": "into"
+ },
+ {
+ "start": 58.94,
+ "end": 59.06,
+ "text": "us."
+ },
+ {
+ "start": 59.74,
+ "end": 59.84,
+ "text": "So"
+ },
+ {
+ "start": 61.12,
+ "end": 61.38,
+ "text": "how"
+ },
+ {
+ "start": 61.36,
+ "end": 61.52,
+ "text": "did"
+ },
+ {
+ "start": 61.52,
+ "end": 61.66,
+ "text": "we"
+ },
+ {
+ "start": 61.64,
+ "end": 61.92,
+ "text": "wind"
+ },
+ {
+ "start": 61.88,
+ "end": 62.04,
+ "text": "up"
+ },
+ {
+ "start": 62.04,
+ "end": 62.24,
+ "text": "with"
+ },
+ {
+ "start": 62.22,
+ "end": 62.34,
+ "text": "so"
+ },
+ {
+ "start": 62.34,
+ "end": 62.56,
+ "text": "much"
+ },
+ {
+ "start": 62.58,
+ "end": 63.06,
+ "text": "plastic"
+ },
+ {
+ "start": 63.04,
+ "end": 63.36,
+ "text": "waste?"
+ },
+ {
+ "start": 63.88,
+ "end": 64.84,
+ "text": "Well,"
+ },
+ {
+ "start": 64.84,
+ "end": 65.42,
+ "text": "it's"
+ },
+ {
+ "start": 65.38,
+ "end": 65.82,
+ "text": "simple"
+ },
+ {
+ "start": 65.82,
+ "end": 67.14,
+ "text": "plastic"
+ },
+ {
+ "start": 67.12,
+ "end": 67.28,
+ "text": "is"
+ },
+ {
+ "start": 67.38,
+ "end": 67.68,
+ "text": "cheap."
+ },
+ {
+ "start": 68.04,
+ "end": 68.58,
+ "text": "Durable"
+ },
+ {
+ "start": 68.58,
+ "end": 69.42,
+ "text": "adaptable"
+ },
+ {
+ "start": 69.4,
+ "end": 70.26,
+ "text": "and"
+ },
+ {
+ "start": 70.22,
+ "end": 70.96,
+ "text": "it's"
+ },
+ {
+ "start": 70.96,
+ "end": 71.46,
+ "text": "everywhere."
+ },
+ {
+ "start": 71.98,
+ "end": 72.94,
+ "text": "But"
+ },
+ {
+ "start": 72.9,
+ "end": 73.12,
+ "text": "the"
+ },
+ {
+ "start": 73.08,
+ "end": 73.36,
+ "text": "good"
+ },
+ {
+ "start": 73.34,
+ "end": 73.54,
+ "text": "news"
+ },
+ {
+ "start": 73.5,
+ "end": 73.64,
+ "text": "is,"
+ },
+ {
+ "start": 73.8,
+ "end": 74.3,
+ "text": "is"
+ },
+ {
+ "start": 74.28,
+ "end": 74.5,
+ "text": "there"
+ },
+ {
+ "start": 74.46,
+ "end": 74.9,
+ "text": "something"
+ },
+ {
+ "start": 74.88,
+ "end": 75.12,
+ "text": "else"
+ },
+ {
+ "start": 75.1,
+ "end": 75.52,
+ "text": "that's"
+ },
+ {
+ "start": 75.6,
+ "end": 75.92,
+ "text": "cheap,"
+ },
+ {
+ "start": 75.92,
+ "end": 76.68,
+ "text": "durable"
+ },
+ {
+ "start": 76.7,
+ "end": 77.4,
+ "text": "adaptable"
+ },
+ {
+ "start": 77.38,
+ "end": 77.68,
+ "text": "and"
+ },
+ {
+ "start": 77.64,
+ "end": 78.1,
+ "text": "everywhere"
+ },
+ {
+ "start": 78.4,
+ "end": 79,
+ "text": "and"
+ },
+ {
+ "start": 78.98,
+ "end": 79.12,
+ "text": "my"
+ },
+ {
+ "start": 79.14,
+ "end": 79.66,
+ "text": "research"
+ },
+ {
+ "start": 79.64,
+ "end": 79.98,
+ "text": "shows"
+ },
+ {
+ "start": 80.02,
+ "end": 80.46,
+ "text": "it"
+ },
+ {
+ "start": 80.44,
+ "end": 80.66,
+ "text": "may"
+ },
+ {
+ "start": 80.64,
+ "end": 81,
+ "text": "even"
+ },
+ {
+ "start": 81,
+ "end": 81.14,
+ "text": "be"
+ },
+ {
+ "start": 81.1,
+ "end": 81.32,
+ "text": "able"
+ },
+ {
+ "start": 81.3,
+ "end": 81.42,
+ "text": "to"
+ },
+ {
+ "start": 81.4,
+ "end": 81.68,
+ "text": "help"
+ },
+ {
+ "start": 81.7,
+ "end": 81.9,
+ "text": "us"
+ },
+ {
+ "start": 81.94,
+ "end": 82.38,
+ "text": "with"
+ },
+ {
+ "start": 82.34,
+ "end": 82.52,
+ "text": "our"
+ },
+ {
+ "start": 82.5,
+ "end": 82.96,
+ "text": "plastic"
+ },
+ {
+ "start": 82.96,
+ "end": 83.46,
+ "text": "pollution"
+ },
+ {
+ "start": 83.44,
+ "end": 83.86,
+ "text": "problem."
+ },
+ {
+ "start": 84.1,
+ "end": 85.68,
+ "text": "I'm"
+ },
+ {
+ "start": 85.66,
+ "end": 86.2,
+ "text": "talking"
+ },
+ {
+ "start": 86.16,
+ "end": 86.54,
+ "text": "about"
+ },
+ {
+ "start": 86.52,
+ "end": 87.42,
+ "text": "bacteria"
+ },
+ {
+ "start": 88.04,
+ "end": 89.38,
+ "text": "bacteria"
+ },
+ {
+ "start": 89.4,
+ "end": 89.74,
+ "text": "are"
+ },
+ {
+ "start": 89.7,
+ "end": 90.58,
+ "text": "microscopic"
+ },
+ {
+ "start": 90.56,
+ "end": 90.98,
+ "text": "living"
+ },
+ {
+ "start": 90.96,
+ "end": 91.36,
+ "text": "beings"
+ },
+ {
+ "start": 91.34,
+ "end": 92.34,
+ "text": "invisible"
+ },
+ {
+ "start": 92.32,
+ "end": 92.48,
+ "text": "to"
+ },
+ {
+ "start": 92.48,
+ "end": 92.62,
+ "text": "the"
+ },
+ {
+ "start": 92.6,
+ "end": 92.96,
+ "text": "naked"
+ },
+ {
+ "start": 92.92,
+ "end": 93.2,
+ "text": "eye"
+ },
+ {
+ "start": 93.34,
+ "end": 93.84,
+ "text": "that"
+ },
+ {
+ "start": 93.86,
+ "end": 94.18,
+ "text": "live"
+ },
+ {
+ "start": 94.38,
+ "end": 95.02,
+ "text": "everywhere"
+ },
+ {
+ "start": 95.02,
+ "end": 95.52,
+ "text": "in"
+ },
+ {
+ "start": 95.5,
+ "end": 95.72,
+ "text": "all"
+ },
+ {
+ "start": 95.72,
+ "end": 96.04,
+ "text": "sorts"
+ },
+ {
+ "start": 96.02,
+ "end": 96.18,
+ "text": "of"
+ },
+ {
+ "start": 96.16,
+ "end": 96.64,
+ "text": "diverse"
+ },
+ {
+ "start": 96.62,
+ "end": 96.8,
+ "text": "and"
+ },
+ {
+ "start": 96.76,
+ "end": 97.24,
+ "text": "extreme"
+ },
+ {
+ "start": 97.22,
+ "end": 97.86,
+ "text": "environments"
+ },
+ {
+ "start": 98.14,
+ "end": 98.84,
+ "text": "from"
+ },
+ {
+ "start": 98.82,
+ "end": 98.98,
+ "text": "the"
+ },
+ {
+ "start": 98.94,
+ "end": 99.34,
+ "text": "human"
+ },
+ {
+ "start": 99.34,
+ "end": 99.82,
+ "text": "gut"
+ },
+ {
+ "start": 99.94,
+ "end": 100.84,
+ "text": "soil"
+ },
+ {
+ "start": 100.86,
+ "end": 101.8,
+ "text": "skin"
+ },
+ {
+ "start": 102.26,
+ "end": 102.38,
+ "text": "to"
+ },
+ {
+ "start": 102.36,
+ "end": 102.7,
+ "text": "vent"
+ },
+ {
+ "start": 102.74,
+ "end": 102.86,
+ "text": "on"
+ },
+ {
+ "start": 102.84,
+ "end": 102.98,
+ "text": "the"
+ },
+ {
+ "start": 102.94,
+ "end": 103.22,
+ "text": "ocean"
+ },
+ {
+ "start": 103.24,
+ "end": 103.58,
+ "text": "floor,"
+ },
+ {
+ "start": 103.54,
+ "end": 103.96,
+ "text": "reaching"
+ },
+ {
+ "start": 103.92,
+ "end": 104.52,
+ "text": "temperatures"
+ },
+ {
+ "start": 104.52,
+ "end": 104.68,
+ "text": "of"
+ },
+ {
+ "start": 104.96,
+ "end": 105.26,
+ "text": "seven"
+ },
+ {
+ "start": 105.24,
+ "end": 105.5,
+ "text": "hundred"
+ },
+ {
+ "start": 105.46,
+ "end": 105.84,
+ "text": "degrees"
+ },
+ {
+ "start": 105.84,
+ "end": 106.42,
+ "text": "fahrenheit"
+ },
+ {
+ "start": 106.8,
+ "end": 107.44,
+ "text": "bacteria"
+ },
+ {
+ "start": 107.5,
+ "end": 107.9,
+ "text": "live"
+ },
+ {
+ "start": 108.04,
+ "end": 108.66,
+ "text": "everywhere"
+ },
+ {
+ "start": 108.68,
+ "end": 109.2,
+ "text": "in"
+ },
+ {
+ "start": 109.26,
+ "end": 109.5,
+ "text": "all"
+ },
+ {
+ "start": 109.54,
+ "end": 109.84,
+ "text": "sorts"
+ },
+ {
+ "start": 109.84,
+ "end": 110.02,
+ "text": "of"
+ },
+ {
+ "start": 110,
+ "end": 110.42,
+ "text": "diverse"
+ },
+ {
+ "start": 110.42,
+ "end": 110.58,
+ "text": "and"
+ },
+ {
+ "start": 110.56,
+ "end": 111.02,
+ "text": "extreme"
+ },
+ {
+ "start": 111,
+ "end": 111.64,
+ "text": "environments."
+ },
+ {
+ "start": 111.9,
+ "end": 112.46,
+ "text": "And"
+ },
+ {
+ "start": 112.42,
+ "end": 112.66,
+ "text": "as"
+ },
+ {
+ "start": 112.62,
+ "end": 113.04,
+ "text": "such,"
+ },
+ {
+ "start": 113.56,
+ "end": 113.86,
+ "text": "they"
+ },
+ {
+ "start": 113.84,
+ "end": 114,
+ "text": "have"
+ },
+ {
+ "start": 113.96,
+ "end": 114.08,
+ "text": "to"
+ },
+ {
+ "start": 114.06,
+ "end": 114.24,
+ "text": "get"
+ },
+ {
+ "start": 114.34,
+ "end": 114.74,
+ "text": "pretty"
+ },
+ {
+ "start": 114.76,
+ "end": 115.28,
+ "text": "creative"
+ },
+ {
+ "start": 115.26,
+ "end": 115.42,
+ "text": "with"
+ },
+ {
+ "start": 115.38,
+ "end": 115.58,
+ "text": "their"
+ },
+ {
+ "start": 115.58,
+ "end": 115.84,
+ "text": "food"
+ },
+ {
+ "start": 115.82,
+ "end": 116.2,
+ "text": "sources."
+ },
+ {
+ "start": 116.76,
+ "end": 118.2,
+ "text": "There's"
+ },
+ {
+ "start": 118.18,
+ "end": 118.52,
+ "text": "also"
+ },
+ {
+ "start": 118.5,
+ "end": 118.58,
+ "text": "a"
+ },
+ {
+ "start": 118.58,
+ "end": 118.9,
+ "text": "lot"
+ },
+ {
+ "start": 118.94,
+ "end": 119.08,
+ "text": "of"
+ },
+ {
+ "start": 119.04,
+ "end": 119.24,
+ "text": "them"
+ },
+ {
+ "start": 119.3,
+ "end": 120.74,
+ "text": "researchers"
+ },
+ {
+ "start": 120.76,
+ "end": 121.34,
+ "text": "estimate"
+ },
+ {
+ "start": 121.3,
+ "end": 121.46,
+ "text": "that"
+ },
+ {
+ "start": 121.42,
+ "end": 121.68,
+ "text": "they're"
+ },
+ {
+ "start": 121.64,
+ "end": 122.18,
+ "text": "roughly"
+ },
+ {
+ "start": 122.32,
+ "end": 122.74,
+ "text": "five"
+ },
+ {
+ "start": 122.88,
+ "end": 123.32,
+ "text": "million"
+ },
+ {
+ "start": 123.32,
+ "end": 123.92,
+ "text": "trillion"
+ },
+ {
+ "start": 123.92,
+ "end": 124.42,
+ "text": "trillion,"
+ },
+ {
+ "start": 124.84,
+ "end": 125.42,
+ "text": "that's"
+ },
+ {
+ "start": 125.4,
+ "end": 125.48,
+ "text": "a"
+ },
+ {
+ "start": 125.5,
+ "end": 126.06,
+ "text": "five"
+ },
+ {
+ "start": 126.06,
+ "end": 126.26,
+ "text": "with"
+ },
+ {
+ "start": 126.32,
+ "end": 126.7,
+ "text": "thirty"
+ },
+ {
+ "start": 126.76,
+ "end": 127.02,
+ "text": "zero"
+ },
+ {
+ "start": 127,
+ "end": 127.52,
+ "text": "after"
+ },
+ {
+ "start": 127.5,
+ "end": 127.64,
+ "text": "a"
+ },
+ {
+ "start": 128.14,
+ "end": 128.9,
+ "text": "bacteria"
+ },
+ {
+ "start": 129,
+ "end": 129.24,
+ "text": "on"
+ },
+ {
+ "start": 129.26,
+ "end": 129.4,
+ "text": "the"
+ },
+ {
+ "start": 129.42,
+ "end": 129.84,
+ "text": "planet."
+ },
+ {
+ "start": 130.32,
+ "end": 131.82,
+ "text": "Now,"
+ },
+ {
+ "start": 131.94,
+ "end": 133.22,
+ "text": "considering"
+ },
+ {
+ "start": 133.2,
+ "end": 133.52,
+ "text": "that"
+ },
+ {
+ "start": 133.5,
+ "end": 133.64,
+ "text": "we"
+ },
+ {
+ "start": 133.62,
+ "end": 134.16,
+ "text": "humans"
+ },
+ {
+ "start": 134.28,
+ "end": 134.78,
+ "text": "produce"
+ },
+ {
+ "start": 134.78,
+ "end": 135.22,
+ "text": "three"
+ },
+ {
+ "start": 135.26,
+ "end": 135.6,
+ "text": "hundred"
+ },
+ {
+ "start": 135.72,
+ "end": 136.16,
+ "text": "million"
+ },
+ {
+ "start": 136.16,
+ "end": 136.7,
+ "text": "tons"
+ },
+ {
+ "start": 136.82,
+ "end": 136.98,
+ "text": "of"
+ },
+ {
+ "start": 136.96,
+ "end": 137.18,
+ "text": "new"
+ },
+ {
+ "start": 137.22,
+ "end": 137.74,
+ "text": "plastic"
+ },
+ {
+ "start": 137.72,
+ "end": 138.08,
+ "text": "each"
+ },
+ {
+ "start": 138.1,
+ "end": 138.28,
+ "text": "year."
+ },
+ {
+ "start": 139,
+ "end": 139.08,
+ "text": "I"
+ },
+ {
+ "start": 139.18,
+ "end": 139.92,
+ "text": "say"
+ },
+ {
+ "start": 139.9,
+ "end": 140.14,
+ "text": "that"
+ },
+ {
+ "start": 140.12,
+ "end": 140.28,
+ "text": "our"
+ },
+ {
+ "start": 140.3,
+ "end": 140.76,
+ "text": "plastic"
+ },
+ {
+ "start": 140.76,
+ "end": 141.12,
+ "text": "numbers"
+ },
+ {
+ "start": 141.14,
+ "end": 142.1,
+ "text": "are"
+ },
+ {
+ "start": 142.08,
+ "end": 142.4,
+ "text": "looking"
+ },
+ {
+ "start": 142.42,
+ "end": 142.76,
+ "text": "pretty"
+ },
+ {
+ "start": 142.74,
+ "end": 143.38,
+ "text": "comparable"
+ },
+ {
+ "start": 143.36,
+ "end": 143.52,
+ "text": "to"
+ },
+ {
+ "start": 143.5,
+ "end": 144.2,
+ "text": "bacterias."
+ },
+ {
+ "start": 144.72,
+ "end": 144.82,
+ "text": "So"
+ },
+ {
+ "start": 146.1,
+ "end": 146.96,
+ "text": "after"
+ },
+ {
+ "start": 146.94,
+ "end": 147.5,
+ "text": "noticing"
+ },
+ {
+ "start": 147.48,
+ "end": 147.68,
+ "text": "this"
+ },
+ {
+ "start": 147.66,
+ "end": 148.44,
+ "text": "and"
+ },
+ {
+ "start": 148.4,
+ "end": 148.72,
+ "text": "after"
+ },
+ {
+ "start": 148.7,
+ "end": 149.12,
+ "text": "learning"
+ },
+ {
+ "start": 149.08,
+ "end": 149.36,
+ "text": "about"
+ },
+ {
+ "start": 149.34,
+ "end": 149.52,
+ "text": "all"
+ },
+ {
+ "start": 149.5,
+ "end": 149.7,
+ "text": "the"
+ },
+ {
+ "start": 149.7,
+ "end": 150.2,
+ "text": "creative"
+ },
+ {
+ "start": 150.16,
+ "end": 150.42,
+ "text": "ways"
+ },
+ {
+ "start": 150.4,
+ "end": 150.64,
+ "text": "that"
+ },
+ {
+ "start": 150.64,
+ "end": 151.12,
+ "text": "bacteria"
+ },
+ {
+ "start": 151.24,
+ "end": 151.52,
+ "text": "find"
+ },
+ {
+ "start": 151.54,
+ "end": 151.82,
+ "text": "food."
+ },
+ {
+ "start": 152.16,
+ "end": 152.24,
+ "text": "I"
+ },
+ {
+ "start": 152.22,
+ "end": 153.24,
+ "text": "started"
+ },
+ {
+ "start": 153.2,
+ "end": 153.34,
+ "text": "to"
+ },
+ {
+ "start": 153.32,
+ "end": 153.64,
+ "text": "think"
+ },
+ {
+ "start": 153.62,
+ "end": 155.12,
+ "text": "good"
+ },
+ {
+ "start": 155.1,
+ "end": 155.74,
+ "text": "bacteria"
+ },
+ {
+ "start": 155.76,
+ "end": 156.12,
+ "text": "and"
+ },
+ {
+ "start": 156.1,
+ "end": 156.6,
+ "text": "plastic"
+ },
+ {
+ "start": 156.62,
+ "end": 157.1,
+ "text": "polluted"
+ },
+ {
+ "start": 157.06,
+ "end": 157.72,
+ "text": "environments."
+ },
+ {
+ "start": 157.76,
+ "end": 158,
+ "text": "Have"
+ },
+ {
+ "start": 157.98,
+ "end": 158.34,
+ "text": "figured"
+ },
+ {
+ "start": 158.32,
+ "end": 158.5,
+ "text": "out"
+ },
+ {
+ "start": 158.8,
+ "end": 159.14,
+ "text": "how"
+ },
+ {
+ "start": 159.12,
+ "end": 159.22,
+ "text": "to"
+ },
+ {
+ "start": 159.22,
+ "end": 159.48,
+ "text": "use"
+ },
+ {
+ "start": 159.5,
+ "end": 160.06,
+ "text": "plastic"
+ },
+ {
+ "start": 160.08,
+ "end": 160.42,
+ "text": "for"
+ },
+ {
+ "start": 160.4,
+ "end": 160.64,
+ "text": "food."
+ },
+ {
+ "start": 161.86,
+ "end": 162.62,
+ "text": "Well,"
+ },
+ {
+ "start": 162.6,
+ "end": 163.2,
+ "text": "this"
+ },
+ {
+ "start": 163.16,
+ "end": 163.36,
+ "text": "is"
+ },
+ {
+ "start": 163.32,
+ "end": 163.48,
+ "text": "the"
+ },
+ {
+ "start": 163.46,
+ "end": 163.9,
+ "text": "question"
+ },
+ {
+ "start": 163.86,
+ "end": 164.06,
+ "text": "that"
+ },
+ {
+ "start": 164.02,
+ "end": 164.1,
+ "text": "I"
+ },
+ {
+ "start": 164.1,
+ "end": 164.52,
+ "text": "decided"
+ },
+ {
+ "start": 164.56,
+ "end": 164.7,
+ "text": "to"
+ },
+ {
+ "start": 164.68,
+ "end": 165.06,
+ "text": "pursue"
+ },
+ {
+ "start": 165.04,
+ "end": 165.14,
+ "text": "a"
+ },
+ {
+ "start": 165.16,
+ "end": 165.44,
+ "text": "couple"
+ },
+ {
+ "start": 165.4,
+ "end": 165.7,
+ "text": "years"
+ },
+ {
+ "start": 165.7,
+ "end": 165.92,
+ "text": "ago."
+ },
+ {
+ "start": 166.32,
+ "end": 167.52,
+ "text": "Now,"
+ },
+ {
+ "start": 167.5,
+ "end": 168.16,
+ "text": "fortunately"
+ },
+ {
+ "start": 168.14,
+ "end": 168.48,
+ "text": "for"
+ },
+ {
+ "start": 168.46,
+ "end": 168.66,
+ "text": "me,"
+ },
+ {
+ "start": 168.68,
+ "end": 169.6,
+ "text": "I'm"
+ },
+ {
+ "start": 169.6,
+ "end": 169.78,
+ "text": "from"
+ },
+ {
+ "start": 169.76,
+ "end": 169.92,
+ "text": "one"
+ },
+ {
+ "start": 169.9,
+ "end": 170,
+ "text": "of"
+ },
+ {
+ "start": 169.98,
+ "end": 170.12,
+ "text": "the"
+ },
+ {
+ "start": 170.08,
+ "end": 170.28,
+ "text": "most"
+ },
+ {
+ "start": 170.3,
+ "end": 170.74,
+ "text": "polluted"
+ },
+ {
+ "start": 170.72,
+ "end": 171.08,
+ "text": "cities"
+ },
+ {
+ "start": 171.06,
+ "end": 171.2,
+ "text": "in"
+ },
+ {
+ "start": 171.16,
+ "end": 171.62,
+ "text": "america,"
+ },
+ {
+ "start": 171.6,
+ "end": 173.16,
+ "text": "houston,"
+ },
+ {
+ "start": 173.12,
+ "end": 173.64,
+ "text": "texas."
+ },
+ {
+ "start": 173.66,
+ "end": 175.76,
+ "text": "In"
+ },
+ {
+ "start": 175.76,
+ "end": 175.92,
+ "text": "my"
+ },
+ {
+ "start": 175.96,
+ "end": 176.46,
+ "text": "hometown"
+ },
+ {
+ "start": 176.48,
+ "end": 176.86,
+ "text": "alone."
+ },
+ {
+ "start": 176.84,
+ "end": 177.06,
+ "text": "There"
+ },
+ {
+ "start": 177.04,
+ "end": 177.26,
+ "text": "are"
+ },
+ {
+ "start": 177.24,
+ "end": 178,
+ "text": "seven"
+ },
+ {
+ "start": 178.12,
+ "end": 178.56,
+ "text": "epa"
+ },
+ {
+ "start": 178.68,
+ "end": 179.34,
+ "text": "designated"
+ },
+ {
+ "start": 179.32,
+ "end": 180.04,
+ "text": "superfund"
+ },
+ {
+ "start": 180.12,
+ "end": 180.42,
+ "text": "sites."
+ },
+ {
+ "start": 180.54,
+ "end": 182.46,
+ "text": "These"
+ },
+ {
+ "start": 182.42,
+ "end": 182.6,
+ "text": "are"
+ },
+ {
+ "start": 182.58,
+ "end": 182.94,
+ "text": "sites"
+ },
+ {
+ "start": 182.9,
+ "end": 183.12,
+ "text": "that"
+ },
+ {
+ "start": 183.1,
+ "end": 183.28,
+ "text": "are"
+ },
+ {
+ "start": 183.26,
+ "end": 183.6,
+ "text": "so"
+ },
+ {
+ "start": 183.64,
+ "end": 184.44,
+ "text": "polluted"
+ },
+ {
+ "start": 184.42,
+ "end": 184.92,
+ "text": "that"
+ },
+ {
+ "start": 184.88,
+ "end": 185.08,
+ "text": "the"
+ },
+ {
+ "start": 185.12,
+ "end": 185.72,
+ "text": "government"
+ },
+ {
+ "start": 185.7,
+ "end": 185.96,
+ "text": "has"
+ },
+ {
+ "start": 185.96,
+ "end": 186.32,
+ "text": "deemed"
+ },
+ {
+ "start": 186.28,
+ "end": 186.54,
+ "text": "their"
+ },
+ {
+ "start": 186.58,
+ "end": 186.9,
+ "text": "clean"
+ },
+ {
+ "start": 186.88,
+ "end": 187.06,
+ "text": "up"
+ },
+ {
+ "start": 187.32,
+ "end": 187.4,
+ "text": "a"
+ },
+ {
+ "start": 187.42,
+ "end": 188,
+ "text": "national"
+ },
+ {
+ "start": 188,
+ "end": 188.54,
+ "text": "priority."
+ },
+ {
+ "start": 188.88,
+ "end": 188.98,
+ "text": "So"
+ },
+ {
+ "start": 190.54,
+ "end": 191.06,
+ "text": "I"
+ },
+ {
+ "start": 191.14,
+ "end": 191.64,
+ "text": "decided"
+ },
+ {
+ "start": 191.6,
+ "end": 191.82,
+ "text": "to"
+ },
+ {
+ "start": 191.78,
+ "end": 192.16,
+ "text": "track"
+ },
+ {
+ "start": 192.14,
+ "end": 192.46,
+ "text": "around"
+ },
+ {
+ "start": 192.42,
+ "end": 192.58,
+ "text": "to"
+ },
+ {
+ "start": 192.56,
+ "end": 192.78,
+ "text": "these"
+ },
+ {
+ "start": 192.76,
+ "end": 193.06,
+ "text": "sites"
+ },
+ {
+ "start": 193.3,
+ "end": 193.48,
+ "text": "and"
+ },
+ {
+ "start": 193.44,
+ "end": 193.76,
+ "text": "collect"
+ },
+ {
+ "start": 193.72,
+ "end": 194.14,
+ "text": "soil"
+ },
+ {
+ "start": 194.16,
+ "end": 194.56,
+ "text": "samples"
+ },
+ {
+ "start": 194.56,
+ "end": 195.18,
+ "text": "teaming"
+ },
+ {
+ "start": 195.14,
+ "end": 195.34,
+ "text": "with"
+ },
+ {
+ "start": 195.32,
+ "end": 195.9,
+ "text": "bacteria."
+ },
+ {
+ "start": 196.26,
+ "end": 196.34,
+ "text": "I"
+ },
+ {
+ "start": 196.3,
+ "end": 197.32,
+ "text": "started"
+ },
+ {
+ "start": 197.3,
+ "end": 197.7,
+ "text": "toying"
+ },
+ {
+ "start": 197.68,
+ "end": 197.9,
+ "text": "with"
+ },
+ {
+ "start": 197.88,
+ "end": 197.96,
+ "text": "a"
+ },
+ {
+ "start": 198.18,
+ "end": 198.68,
+ "text": "protocol"
+ },
+ {
+ "start": 198.76,
+ "end": 199.24,
+ "text": "which"
+ },
+ {
+ "start": 199.22,
+ "end": 199.44,
+ "text": "is"
+ },
+ {
+ "start": 199.44,
+ "end": 199.96,
+ "text": "fancy"
+ },
+ {
+ "start": 199.94,
+ "end": 200.3,
+ "text": "science"
+ },
+ {
+ "start": 200.28,
+ "end": 200.6,
+ "text": "talk"
+ },
+ {
+ "start": 200.66,
+ "end": 200.82,
+ "text": "for"
+ },
+ {
+ "start": 200.8,
+ "end": 200.88,
+ "text": "a"
+ },
+ {
+ "start": 200.86,
+ "end": 201.26,
+ "text": "recipe."
+ },
+ {
+ "start": 201.62,
+ "end": 202.4,
+ "text": "And"
+ },
+ {
+ "start": 202.36,
+ "end": 202.92,
+ "text": "what"
+ },
+ {
+ "start": 202.88,
+ "end": 202.96,
+ "text": "I"
+ },
+ {
+ "start": 202.96,
+ "end": 203.14,
+ "text": "was"
+ },
+ {
+ "start": 203.1,
+ "end": 203.42,
+ "text": "trying"
+ },
+ {
+ "start": 203.38,
+ "end": 203.5,
+ "text": "to"
+ },
+ {
+ "start": 203.48,
+ "end": 203.7,
+ "text": "cook"
+ },
+ {
+ "start": 203.68,
+ "end": 203.82,
+ "text": "up"
+ },
+ {
+ "start": 203.94,
+ "end": 204.58,
+ "text": "was"
+ },
+ {
+ "start": 204.54,
+ "end": 204.62,
+ "text": "a"
+ },
+ {
+ "start": 204.72,
+ "end": 205.16,
+ "text": "carbon"
+ },
+ {
+ "start": 205.2,
+ "end": 205.46,
+ "text": "free"
+ },
+ {
+ "start": 205.46,
+ "end": 205.82,
+ "text": "media"
+ },
+ {
+ "start": 206.22,
+ "end": 206.34,
+ "text": "or"
+ },
+ {
+ "start": 206.54,
+ "end": 206.76,
+ "text": "a"
+ },
+ {
+ "start": 206.82,
+ "end": 207.16,
+ "text": "food"
+ },
+ {
+ "start": 207.16,
+ "end": 207.44,
+ "text": "free"
+ },
+ {
+ "start": 207.4,
+ "end": 208.06,
+ "text": "environment"
+ },
+ {
+ "start": 208.04,
+ "end": 209.26,
+ "text": "an"
+ },
+ {
+ "start": 209.24,
+ "end": 209.88,
+ "text": "environment"
+ },
+ {
+ "start": 209.88,
+ "end": 210.2,
+ "text": "without"
+ },
+ {
+ "start": 210.16,
+ "end": 210.36,
+ "text": "the"
+ },
+ {
+ "start": 210.34,
+ "end": 210.74,
+ "text": "usual"
+ },
+ {
+ "start": 210.82,
+ "end": 211.32,
+ "text": "carbons"
+ },
+ {
+ "start": 211.32,
+ "end": 211.5,
+ "text": "or"
+ },
+ {
+ "start": 211.52,
+ "end": 211.88,
+ "text": "food."
+ },
+ {
+ "start": 211.92,
+ "end": 212.18,
+ "text": "That"
+ },
+ {
+ "start": 212.26,
+ "end": 212.94,
+ "text": "bacteria"
+ },
+ {
+ "start": 213.06,
+ "end": 213.28,
+ "text": "like"
+ },
+ {
+ "start": 213.26,
+ "end": 213.44,
+ "text": "us"
+ },
+ {
+ "start": 213.42,
+ "end": 213.8,
+ "text": "humans"
+ },
+ {
+ "start": 213.82,
+ "end": 214.04,
+ "text": "need"
+ },
+ {
+ "start": 214.04,
+ "end": 214.16,
+ "text": "to"
+ },
+ {
+ "start": 214.14,
+ "end": 214.38,
+ "text": "live."
+ },
+ {
+ "start": 214.68,
+ "end": 216.28,
+ "text": "Now"
+ },
+ {
+ "start": 216.26,
+ "end": 216.42,
+ "text": "in"
+ },
+ {
+ "start": 216.42,
+ "end": 216.6,
+ "text": "this"
+ },
+ {
+ "start": 216.58,
+ "end": 217.24,
+ "text": "environment,"
+ },
+ {
+ "start": 217.22,
+ "end": 217.32,
+ "text": "I"
+ },
+ {
+ "start": 217.36,
+ "end": 217.58,
+ "text": "would"
+ },
+ {
+ "start": 217.56,
+ "end": 217.96,
+ "text": "provide"
+ },
+ {
+ "start": 217.92,
+ "end": 218.1,
+ "text": "my"
+ },
+ {
+ "start": 218.12,
+ "end": 218.64,
+ "text": "bacteria"
+ },
+ {
+ "start": 218.68,
+ "end": 218.86,
+ "text": "with"
+ },
+ {
+ "start": 218.84,
+ "end": 218.98,
+ "text": "the"
+ },
+ {
+ "start": 218.94,
+ "end": 219.28,
+ "text": "sole"
+ },
+ {
+ "start": 219.38,
+ "end": 219.8,
+ "text": "carbon"
+ },
+ {
+ "start": 219.8,
+ "end": 219.94,
+ "text": "or"
+ },
+ {
+ "start": 219.92,
+ "end": 220.2,
+ "text": "food"
+ },
+ {
+ "start": 220.18,
+ "end": 220.54,
+ "text": "source."
+ },
+ {
+ "start": 221.02,
+ "end": 221.1,
+ "text": "I"
+ },
+ {
+ "start": 221.08,
+ "end": 222.38,
+ "text": "would"
+ },
+ {
+ "start": 222.36,
+ "end": 222.6,
+ "text": "see"
+ },
+ {
+ "start": 222.56,
+ "end": 222.8,
+ "text": "my"
+ },
+ {
+ "start": 222.82,
+ "end": 223.5,
+ "text": "bacteria"
+ },
+ {
+ "start": 223.58,
+ "end": 224.98,
+ "text": "polyethylene"
+ },
+ {
+ "start": 225,
+ "end": 225.44,
+ "text": "corrupt"
+ },
+ {
+ "start": 225.4,
+ "end": 225.54,
+ "text": "the"
+ },
+ {
+ "start": 225.52,
+ "end": 225.76,
+ "text": "late"
+ },
+ {
+ "start": 226.14,
+ "end": 226.44,
+ "text": "or"
+ },
+ {
+ "start": 226.66,
+ "end": 227.34,
+ "text": "pet"
+ },
+ {
+ "start": 227.86,
+ "end": 228.34,
+ "text": "plastic."
+ },
+ {
+ "start": 229.14,
+ "end": 230.16,
+ "text": "Pet"
+ },
+ {
+ "start": 230.56,
+ "end": 231.08,
+ "text": "plastic"
+ },
+ {
+ "start": 231.12,
+ "end": 231.26,
+ "text": "is"
+ },
+ {
+ "start": 231.24,
+ "end": 231.4,
+ "text": "the"
+ },
+ {
+ "start": 231.36,
+ "end": 231.6,
+ "text": "most"
+ },
+ {
+ "start": 231.74,
+ "end": 232.72,
+ "text": "widely-produce"
+ },
+ {
+ "start": 232.8,
+ "end": 233.3,
+ "text": "plastic"
+ },
+ {
+ "start": 233.34,
+ "end": 233.52,
+ "text": "in"
+ },
+ {
+ "start": 233.54,
+ "end": 233.7,
+ "text": "the"
+ },
+ {
+ "start": 233.7,
+ "end": 234,
+ "text": "world."
+ },
+ {
+ "start": 234.42,
+ "end": 235.16,
+ "text": "It's"
+ },
+ {
+ "start": 235.14,
+ "end": 235.42,
+ "text": "used"
+ },
+ {
+ "start": 235.38,
+ "end": 235.54,
+ "text": "in"
+ },
+ {
+ "start": 235.62,
+ "end": 235.84,
+ "text": "all"
+ },
+ {
+ "start": 235.84,
+ "end": 236.22,
+ "text": "sorts"
+ },
+ {
+ "start": 236.18,
+ "end": 236.36,
+ "text": "of"
+ },
+ {
+ "start": 236.36,
+ "end": 236.64,
+ "text": "food"
+ },
+ {
+ "start": 236.6,
+ "end": 236.78,
+ "text": "and"
+ },
+ {
+ "start": 236.74,
+ "end": 237.04,
+ "text": "drink"
+ },
+ {
+ "start": 237.04,
+ "end": 237.6,
+ "text": "containers"
+ },
+ {
+ "start": 237.62,
+ "end": 238.18,
+ "text": "with"
+ },
+ {
+ "start": 238.14,
+ "end": 238.28,
+ "text": "the"
+ },
+ {
+ "start": 238.26,
+ "end": 238.48,
+ "text": "most"
+ },
+ {
+ "start": 238.5,
+ "end": 239.2,
+ "text": "notorious"
+ },
+ {
+ "start": 239.18,
+ "end": 239.74,
+ "text": "example"
+ },
+ {
+ "start": 239.72,
+ "end": 240.16,
+ "text": "being"
+ },
+ {
+ "start": 240.2,
+ "end": 240.74,
+ "text": "plastic"
+ },
+ {
+ "start": 240.78,
+ "end": 241.12,
+ "text": "water"
+ },
+ {
+ "start": 241.12,
+ "end": 241.42,
+ "text": "bottles"
+ },
+ {
+ "start": 241.9,
+ "end": 242.08,
+ "text": "of"
+ },
+ {
+ "start": 242.18,
+ "end": 242.44,
+ "text": "which"
+ },
+ {
+ "start": 242.42,
+ "end": 242.66,
+ "text": "we"
+ },
+ {
+ "start": 242.64,
+ "end": 243.22,
+ "text": "humans"
+ },
+ {
+ "start": 243.5,
+ "end": 244.16,
+ "text": "currently"
+ },
+ {
+ "start": 244.14,
+ "end": 244.34,
+ "text": "go"
+ },
+ {
+ "start": 244.36,
+ "end": 244.7,
+ "text": "through"
+ },
+ {
+ "start": 244.66,
+ "end": 244.84,
+ "text": "at"
+ },
+ {
+ "start": 244.8,
+ "end": 244.88,
+ "text": "a"
+ },
+ {
+ "start": 244.9,
+ "end": 245.24,
+ "text": "rate"
+ },
+ {
+ "start": 245.24,
+ "end": 245.4,
+ "text": "of"
+ },
+ {
+ "start": 245.42,
+ "end": 245.82,
+ "text": "one"
+ },
+ {
+ "start": 245.84,
+ "end": 246.54,
+ "text": "million"
+ },
+ {
+ "start": 246.56,
+ "end": 246.78,
+ "text": "per"
+ },
+ {
+ "start": 246.76,
+ "end": 247.16,
+ "text": "minute."
+ },
+ {
+ "start": 247.54,
+ "end": 247.64,
+ "text": "So"
+ },
+ {
+ "start": 250.34,
+ "end": 251.16,
+ "text": "what"
+ },
+ {
+ "start": 251.12,
+ "end": 251.2,
+ "text": "I"
+ },
+ {
+ "start": 251.22,
+ "end": 251.48,
+ "text": "would"
+ },
+ {
+ "start": 251.46,
+ "end": 251.6,
+ "text": "be"
+ },
+ {
+ "start": 251.58,
+ "end": 252,
+ "text": "doing"
+ },
+ {
+ "start": 251.98,
+ "end": 252.32,
+ "text": "is"
+ },
+ {
+ "start": 252.4,
+ "end": 253,
+ "text": "essentially"
+ },
+ {
+ "start": 252.98,
+ "end": 253.38,
+ "text": "putting"
+ },
+ {
+ "start": 253.36,
+ "end": 253.5,
+ "text": "my"
+ },
+ {
+ "start": 253.52,
+ "end": 254.14,
+ "text": "bacteria"
+ },
+ {
+ "start": 254.24,
+ "end": 254.44,
+ "text": "on"
+ },
+ {
+ "start": 254.42,
+ "end": 254.5,
+ "text": "a"
+ },
+ {
+ "start": 254.54,
+ "end": 254.9,
+ "text": "force"
+ },
+ {
+ "start": 254.96,
+ "end": 255.34,
+ "text": "diet"
+ },
+ {
+ "start": 255.4,
+ "end": 255.48,
+ "text": "a"
+ },
+ {
+ "start": 255.56,
+ "end": 255.98,
+ "text": "pet"
+ },
+ {
+ "start": 256.14,
+ "end": 256.7,
+ "text": "plastic"
+ },
+ {
+ "start": 257.18,
+ "end": 257.38,
+ "text": "and"
+ },
+ {
+ "start": 257.34,
+ "end": 257.68,
+ "text": "saying"
+ },
+ {
+ "start": 257.68,
+ "end": 258,
+ "text": "which"
+ },
+ {
+ "start": 258.26,
+ "end": 258.42,
+ "text": "is"
+ },
+ {
+ "start": 258.42,
+ "end": 258.56,
+ "text": "any"
+ },
+ {
+ "start": 259.02,
+ "end": 259.12,
+ "text": "my"
+ },
+ {
+ "start": 259.18,
+ "end": 259.88,
+ "text": "survivor"
+ },
+ {
+ "start": 259.86,
+ "end": 260.4,
+ "text": "hopefully"
+ },
+ {
+ "start": 260.4,
+ "end": 261.18,
+ "text": "drive."
+ },
+ {
+ "start": 261.92,
+ "end": 263.2,
+ "text": "See"
+ },
+ {
+ "start": 263.2,
+ "end": 263.38,
+ "text": "this"
+ },
+ {
+ "start": 263.34,
+ "end": 263.64,
+ "text": "type"
+ },
+ {
+ "start": 263.6,
+ "end": 263.76,
+ "text": "of"
+ },
+ {
+ "start": 263.74,
+ "end": 264.38,
+ "text": "experiment"
+ },
+ {
+ "start": 264.36,
+ "end": 264.56,
+ "text": "would"
+ },
+ {
+ "start": 264.52,
+ "end": 264.72,
+ "text": "act"
+ },
+ {
+ "start": 264.7,
+ "end": 264.86,
+ "text": "as"
+ },
+ {
+ "start": 264.84,
+ "end": 264.92,
+ "text": "a"
+ },
+ {
+ "start": 264.94,
+ "end": 265.44,
+ "text": "screen"
+ },
+ {
+ "start": 265.46,
+ "end": 265.66,
+ "text": "for"
+ },
+ {
+ "start": 265.64,
+ "end": 266.3,
+ "text": "bacteria"
+ },
+ {
+ "start": 266.3,
+ "end": 266.48,
+ "text": "that"
+ },
+ {
+ "start": 266.46,
+ "end": 266.62,
+ "text": "it"
+ },
+ {
+ "start": 266.6,
+ "end": 267.24,
+ "text": "adapted"
+ },
+ {
+ "start": 267.24,
+ "end": 267.38,
+ "text": "to"
+ },
+ {
+ "start": 267.36,
+ "end": 267.56,
+ "text": "their"
+ },
+ {
+ "start": 267.56,
+ "end": 268.02,
+ "text": "plastic"
+ },
+ {
+ "start": 268.02,
+ "end": 268.48,
+ "text": "polluted"
+ },
+ {
+ "start": 268.46,
+ "end": 269.06,
+ "text": "environments"
+ },
+ {
+ "start": 269.42,
+ "end": 269.68,
+ "text": "and"
+ },
+ {
+ "start": 269.66,
+ "end": 270.22,
+ "text": "evolved."
+ },
+ {
+ "start": 270.2,
+ "end": 270.68,
+ "text": "The"
+ },
+ {
+ "start": 270.66,
+ "end": 271.36,
+ "text": "incredibly"
+ },
+ {
+ "start": 271.38,
+ "end": 271.68,
+ "text": "cool"
+ },
+ {
+ "start": 271.66,
+ "end": 272.16,
+ "text": "ability"
+ },
+ {
+ "start": 272.14,
+ "end": 272.32,
+ "text": "to"
+ },
+ {
+ "start": 272.3,
+ "end": 272.62,
+ "text": "eat"
+ },
+ {
+ "start": 272.68,
+ "end": 273.18,
+ "text": "pet"
+ },
+ {
+ "start": 273.28,
+ "end": 273.74,
+ "text": "plastic"
+ },
+ {
+ "start": 274.06,
+ "end": 275.32,
+ "text": "and"
+ },
+ {
+ "start": 275.28,
+ "end": 275.72,
+ "text": "using"
+ },
+ {
+ "start": 275.7,
+ "end": 275.88,
+ "text": "this"
+ },
+ {
+ "start": 275.86,
+ "end": 276.3,
+ "text": "screen."
+ },
+ {
+ "start": 276.28,
+ "end": 276.82,
+ "text": "I"
+ },
+ {
+ "start": 276.88,
+ "end": 277.1,
+ "text": "was"
+ },
+ {
+ "start": 277.08,
+ "end": 277.34,
+ "text": "able"
+ },
+ {
+ "start": 277.32,
+ "end": 277.44,
+ "text": "to"
+ },
+ {
+ "start": 277.42,
+ "end": 277.68,
+ "text": "find"
+ },
+ {
+ "start": 277.66,
+ "end": 277.9,
+ "text": "some"
+ },
+ {
+ "start": 277.86,
+ "end": 278.4,
+ "text": "bacteria"
+ },
+ {
+ "start": 278.4,
+ "end": 278.6,
+ "text": "that"
+ },
+ {
+ "start": 278.56,
+ "end": 278.76,
+ "text": "have"
+ },
+ {
+ "start": 278.74,
+ "end": 279.02,
+ "text": "done"
+ },
+ {
+ "start": 279.3,
+ "end": 279.6,
+ "text": "just"
+ },
+ {
+ "start": 279.56,
+ "end": 279.84,
+ "text": "that"
+ },
+ {
+ "start": 280.4,
+ "end": 281.64,
+ "text": "these"
+ },
+ {
+ "start": 281.62,
+ "end": 282.28,
+ "text": "bacteria"
+ },
+ {
+ "start": 282.34,
+ "end": 282.68,
+ "text": "had"
+ },
+ {
+ "start": 282.7,
+ "end": 283.08,
+ "text": "figured"
+ },
+ {
+ "start": 283.06,
+ "end": 283.28,
+ "text": "out"
+ },
+ {
+ "start": 283.28,
+ "end": 283.66,
+ "text": "how"
+ },
+ {
+ "start": 283.64,
+ "end": 283.78,
+ "text": "to"
+ },
+ {
+ "start": 283.74,
+ "end": 284.04,
+ "text": "eat"
+ },
+ {
+ "start": 284.16,
+ "end": 285,
+ "text": "pet"
+ },
+ {
+ "start": 285.3,
+ "end": 285.76,
+ "text": "plastic."
+ },
+ {
+ "start": 286.06,
+ "end": 286.16,
+ "text": "So"
+ },
+ {
+ "start": 288.72,
+ "end": 288.94,
+ "text": "how"
+ },
+ {
+ "start": 288.9,
+ "end": 289.04,
+ "text": "do"
+ },
+ {
+ "start": 289.02,
+ "end": 289.26,
+ "text": "these"
+ },
+ {
+ "start": 289.24,
+ "end": 289.76,
+ "text": "bacteria"
+ },
+ {
+ "start": 289.74,
+ "end": 289.98,
+ "text": "do"
+ },
+ {
+ "start": 289.96,
+ "end": 290.18,
+ "text": "this?"
+ },
+ {
+ "start": 290.78,
+ "end": 291.84,
+ "text": "Well,"
+ },
+ {
+ "start": 291.84,
+ "end": 292.34,
+ "text": "it's"
+ },
+ {
+ "start": 292.3,
+ "end": 292.7,
+ "text": "actually"
+ },
+ {
+ "start": 292.68,
+ "end": 292.98,
+ "text": "pretty"
+ },
+ {
+ "start": 292.96,
+ "end": 293.34,
+ "text": "simple"
+ },
+ {
+ "start": 293.94,
+ "end": 294.6,
+ "text": "just"
+ },
+ {
+ "start": 294.58,
+ "end": 294.8,
+ "text": "as"
+ },
+ {
+ "start": 294.78,
+ "end": 295,
+ "text": "we"
+ },
+ {
+ "start": 294.98,
+ "end": 295.5,
+ "text": "human"
+ },
+ {
+ "start": 295.48,
+ "end": 296.04,
+ "text": "digest"
+ },
+ {
+ "start": 296.12,
+ "end": 296.6,
+ "text": "carbon"
+ },
+ {
+ "start": 296.6,
+ "end": 296.74,
+ "text": "or"
+ },
+ {
+ "start": 296.76,
+ "end": 297.16,
+ "text": "food"
+ },
+ {
+ "start": 297.18,
+ "end": 297.38,
+ "text": "and"
+ },
+ {
+ "start": 297.34,
+ "end": 297.48,
+ "text": "the"
+ },
+ {
+ "start": 297.5,
+ "end": 297.8,
+ "text": "chunks"
+ },
+ {
+ "start": 297.78,
+ "end": 297.98,
+ "text": "of"
+ },
+ {
+ "start": 297.96,
+ "end": 298.32,
+ "text": "sugar"
+ },
+ {
+ "start": 298.4,
+ "end": 298.58,
+ "text": "that"
+ },
+ {
+ "start": 298.56,
+ "end": 298.68,
+ "text": "we"
+ },
+ {
+ "start": 298.72,
+ "end": 298.9,
+ "text": "then"
+ },
+ {
+ "start": 298.9,
+ "end": 299.14,
+ "text": "used"
+ },
+ {
+ "start": 299.12,
+ "end": 299.3,
+ "text": "for"
+ },
+ {
+ "start": 299.32,
+ "end": 299.68,
+ "text": "energy."
+ },
+ {
+ "start": 299.96,
+ "end": 300.06,
+ "text": "So"
+ },
+ {
+ "start": 300.56,
+ "end": 300.88,
+ "text": "two"
+ },
+ {
+ "start": 300.84,
+ "end": 301.06,
+ "text": "to"
+ },
+ {
+ "start": 301.04,
+ "end": 301.2,
+ "text": "my"
+ },
+ {
+ "start": 301.22,
+ "end": 301.76,
+ "text": "bacteria,"
+ },
+ {
+ "start": 302.96,
+ "end": 303.5,
+ "text": "my"
+ },
+ {
+ "start": 303.6,
+ "end": 304.26,
+ "text": "bacteria"
+ },
+ {
+ "start": 304.28,
+ "end": 304.74,
+ "text": "however"
+ },
+ {
+ "start": 304.72,
+ "end": 304.98,
+ "text": "have"
+ },
+ {
+ "start": 304.94,
+ "end": 305.26,
+ "text": "figured"
+ },
+ {
+ "start": 305.24,
+ "end": 305.4,
+ "text": "out"
+ },
+ {
+ "start": 305.38,
+ "end": 305.56,
+ "text": "how"
+ },
+ {
+ "start": 305.54,
+ "end": 305.66,
+ "text": "to"
+ },
+ {
+ "start": 305.64,
+ "end": 305.84,
+ "text": "do"
+ },
+ {
+ "start": 305.82,
+ "end": 306.06,
+ "text": "this"
+ },
+ {
+ "start": 306.06,
+ "end": 306.74,
+ "text": "digestion"
+ },
+ {
+ "start": 306.74,
+ "end": 307.28,
+ "text": "process"
+ },
+ {
+ "start": 307.28,
+ "end": 307.86,
+ "text": "to"
+ },
+ {
+ "start": 307.92,
+ "end": 308.2,
+ "text": "big"
+ },
+ {
+ "start": 308.32,
+ "end": 308.64,
+ "text": "tough"
+ },
+ {
+ "start": 308.72,
+ "end": 309.18,
+ "text": "durable"
+ },
+ {
+ "start": 309.24,
+ "end": 309.7,
+ "text": "pet"
+ },
+ {
+ "start": 309.9,
+ "end": 310.38,
+ "text": "plastic"
+ },
+ {
+ "start": 310.7,
+ "end": 312.46,
+ "text": "now"
+ },
+ {
+ "start": 312.42,
+ "end": 312.58,
+ "text": "to"
+ },
+ {
+ "start": 312.56,
+ "end": 312.76,
+ "text": "do"
+ },
+ {
+ "start": 312.74,
+ "end": 313,
+ "text": "this,"
+ },
+ {
+ "start": 313,
+ "end": 313.44,
+ "text": "my"
+ },
+ {
+ "start": 313.48,
+ "end": 314.02,
+ "text": "bacteria"
+ },
+ {
+ "start": 314,
+ "end": 314.28,
+ "text": "use"
+ },
+ {
+ "start": 314.24,
+ "end": 314.32,
+ "text": "a"
+ },
+ {
+ "start": 314.34,
+ "end": 314.74,
+ "text": "special"
+ },
+ {
+ "start": 314.74,
+ "end": 315.06,
+ "text": "version"
+ },
+ {
+ "start": 315.04,
+ "end": 315.16,
+ "text": "of"
+ },
+ {
+ "start": 315.12,
+ "end": 315.34,
+ "text": "what's"
+ },
+ {
+ "start": 315.32,
+ "end": 315.58,
+ "text": "called"
+ },
+ {
+ "start": 315.56,
+ "end": 315.72,
+ "text": "an"
+ },
+ {
+ "start": 315.72,
+ "end": 316.24,
+ "text": "enzyme."
+ },
+ {
+ "start": 316.54,
+ "end": 317.34,
+ "text": "Now,"
+ },
+ {
+ "start": 317.32,
+ "end": 318,
+ "text": "enzymes"
+ },
+ {
+ "start": 317.98,
+ "end": 318.18,
+ "text": "are"
+ },
+ {
+ "start": 318.14,
+ "end": 318.52,
+ "text": "simply"
+ },
+ {
+ "start": 318.54,
+ "end": 319.14,
+ "text": "compounds"
+ },
+ {
+ "start": 319.12,
+ "end": 319.3,
+ "text": "that"
+ },
+ {
+ "start": 319.26,
+ "end": 319.58,
+ "text": "exist"
+ },
+ {
+ "start": 319.58,
+ "end": 319.74,
+ "text": "in"
+ },
+ {
+ "start": 319.72,
+ "end": 319.9,
+ "text": "all"
+ },
+ {
+ "start": 319.88,
+ "end": 320.22,
+ "text": "living"
+ },
+ {
+ "start": 320.2,
+ "end": 320.44,
+ "text": "things."
+ },
+ {
+ "start": 320.82,
+ "end": 321.6,
+ "text": "There"
+ },
+ {
+ "start": 321.56,
+ "end": 321.72,
+ "text": "are"
+ },
+ {
+ "start": 321.7,
+ "end": 321.88,
+ "text": "many"
+ },
+ {
+ "start": 321.9,
+ "end": 322.26,
+ "text": "different"
+ },
+ {
+ "start": 322.22,
+ "end": 322.62,
+ "text": "types"
+ },
+ {
+ "start": 322.58,
+ "end": 322.72,
+ "text": "of"
+ },
+ {
+ "start": 322.76,
+ "end": 323.34,
+ "text": "enzymes"
+ },
+ {
+ "start": 323.3,
+ "end": 323.54,
+ "text": "but"
+ },
+ {
+ "start": 323.54,
+ "end": 324.22,
+ "text": "basically"
+ },
+ {
+ "start": 324.18,
+ "end": 324.54,
+ "text": "they"
+ },
+ {
+ "start": 324.54,
+ "end": 324.8,
+ "text": "make"
+ },
+ {
+ "start": 324.8,
+ "end": 325.32,
+ "text": "processes"
+ },
+ {
+ "start": 325.46,
+ "end": 325.62,
+ "text": "go"
+ },
+ {
+ "start": 325.68,
+ "end": 326.34,
+ "text": "forward"
+ },
+ {
+ "start": 326.32,
+ "end": 326.98,
+ "text": "such"
+ },
+ {
+ "start": 326.96,
+ "end": 327.1,
+ "text": "as"
+ },
+ {
+ "start": 327.08,
+ "end": 327.24,
+ "text": "the"
+ },
+ {
+ "start": 327.2,
+ "end": 327.82,
+ "text": "digestion"
+ },
+ {
+ "start": 327.8,
+ "end": 327.96,
+ "text": "of"
+ },
+ {
+ "start": 327.92,
+ "end": 328.24,
+ "text": "food"
+ },
+ {
+ "start": 328.22,
+ "end": 328.54,
+ "text": "into"
+ },
+ {
+ "start": 328.54,
+ "end": 328.9,
+ "text": "energy."
+ },
+ {
+ "start": 329.24,
+ "end": 330.58,
+ "text": "For"
+ },
+ {
+ "start": 330.54,
+ "end": 331.02,
+ "text": "instance,"
+ },
+ {
+ "start": 331,
+ "end": 331.18,
+ "text": "we"
+ },
+ {
+ "start": 331.22,
+ "end": 331.72,
+ "text": "humans"
+ },
+ {
+ "start": 331.72,
+ "end": 331.92,
+ "text": "have"
+ },
+ {
+ "start": 331.88,
+ "end": 332.02,
+ "text": "an"
+ },
+ {
+ "start": 331.98,
+ "end": 332.44,
+ "text": "enzyme"
+ },
+ {
+ "start": 332.42,
+ "end": 332.76,
+ "text": "college"
+ },
+ {
+ "start": 332.72,
+ "end": 332.86,
+ "text": "in"
+ },
+ {
+ "start": 332.88,
+ "end": 333.84,
+ "text": "amalie"
+ },
+ {
+ "start": 333.8,
+ "end": 334,
+ "text": "that"
+ },
+ {
+ "start": 333.98,
+ "end": 334.2,
+ "text": "help"
+ },
+ {
+ "start": 334.3,
+ "end": 334.6,
+ "text": "us"
+ },
+ {
+ "start": 334.58,
+ "end": 335.02,
+ "text": "digest"
+ },
+ {
+ "start": 335.06,
+ "end": 335.54,
+ "text": "complex"
+ },
+ {
+ "start": 335.62,
+ "end": 336.04,
+ "text": "starches"
+ },
+ {
+ "start": 336.3,
+ "end": 336.58,
+ "text": "such"
+ },
+ {
+ "start": 336.56,
+ "end": 336.7,
+ "text": "as"
+ },
+ {
+ "start": 336.72,
+ "end": 337.12,
+ "text": "bread"
+ },
+ {
+ "start": 337.46,
+ "end": 337.72,
+ "text": "into"
+ },
+ {
+ "start": 337.7,
+ "end": 338,
+ "text": "small"
+ },
+ {
+ "start": 338.02,
+ "end": 338.28,
+ "text": "chunks"
+ },
+ {
+ "start": 338.26,
+ "end": 338.44,
+ "text": "of"
+ },
+ {
+ "start": 338.42,
+ "end": 338.78,
+ "text": "sugar"
+ },
+ {
+ "start": 339,
+ "end": 339.2,
+ "text": "that."
+ },
+ {
+ "start": 339.18,
+ "end": 339.3,
+ "text": "We"
+ },
+ {
+ "start": 339.34,
+ "end": 339.52,
+ "text": "can"
+ },
+ {
+ "start": 339.5,
+ "end": 339.7,
+ "text": "then"
+ },
+ {
+ "start": 339.7,
+ "end": 339.94,
+ "text": "use"
+ },
+ {
+ "start": 339.92,
+ "end": 340.14,
+ "text": "for"
+ },
+ {
+ "start": 340.12,
+ "end": 340.5,
+ "text": "energy."
+ },
+ {
+ "start": 340.82,
+ "end": 342.26,
+ "text": "Now"
+ },
+ {
+ "start": 342.26,
+ "end": 342.5,
+ "text": "my"
+ },
+ {
+ "start": 342.54,
+ "end": 343.22,
+ "text": "bacteria"
+ },
+ {
+ "start": 343.28,
+ "end": 343.64,
+ "text": "have"
+ },
+ {
+ "start": 343.6,
+ "end": 343.68,
+ "text": "a"
+ },
+ {
+ "start": 343.68,
+ "end": 344.12,
+ "text": "special"
+ },
+ {
+ "start": 344.12,
+ "end": 344.56,
+ "text": "enzyme"
+ },
+ {
+ "start": 344.54,
+ "end": 344.84,
+ "text": "called"
+ },
+ {
+ "start": 344.8,
+ "end": 345.94,
+ "text": "alias."
+ },
+ {
+ "start": 345.9,
+ "end": 346.1,
+ "text": "That"
+ },
+ {
+ "start": 346.14,
+ "end": 346.56,
+ "text": "binds"
+ },
+ {
+ "start": 346.68,
+ "end": 346.86,
+ "text": "a"
+ },
+ {
+ "start": 346.84,
+ "end": 347.1,
+ "text": "big"
+ },
+ {
+ "start": 347.24,
+ "end": 347.54,
+ "text": "tough"
+ },
+ {
+ "start": 347.62,
+ "end": 348.08,
+ "text": "durable"
+ },
+ {
+ "start": 348.12,
+ "end": 348.74,
+ "text": "pet"
+ },
+ {
+ "start": 348.7,
+ "end": 349.24,
+ "text": "plastic"
+ },
+ {
+ "start": 349.62,
+ "end": 349.8,
+ "text": "and"
+ },
+ {
+ "start": 349.78,
+ "end": 350.04,
+ "text": "helps"
+ },
+ {
+ "start": 350.06,
+ "end": 350.4,
+ "text": "break"
+ },
+ {
+ "start": 350.42,
+ "end": 350.6,
+ "text": "it"
+ },
+ {
+ "start": 350.66,
+ "end": 350.96,
+ "text": "into"
+ },
+ {
+ "start": 350.92,
+ "end": 351.2,
+ "text": "small"
+ },
+ {
+ "start": 351.18,
+ "end": 351.46,
+ "text": "chunks"
+ },
+ {
+ "start": 351.44,
+ "end": 351.62,
+ "text": "of"
+ },
+ {
+ "start": 351.58,
+ "end": 351.88,
+ "text": "sugar"
+ },
+ {
+ "start": 352.32,
+ "end": 352.5,
+ "text": "that"
+ },
+ {
+ "start": 352.54,
+ "end": 352.68,
+ "text": "my"
+ },
+ {
+ "start": 352.74,
+ "end": 353.54,
+ "text": "bacteria"
+ },
+ {
+ "start": 353.56,
+ "end": 353.74,
+ "text": "can"
+ },
+ {
+ "start": 353.72,
+ "end": 353.88,
+ "text": "then"
+ },
+ {
+ "start": 353.88,
+ "end": 354.1,
+ "text": "use"
+ },
+ {
+ "start": 354.1,
+ "end": 354.28,
+ "text": "for"
+ },
+ {
+ "start": 354.26,
+ "end": 354.64,
+ "text": "energy."
+ },
+ {
+ "start": 355.22,
+ "end": 355.32,
+ "text": "So"
+ },
+ {
+ "start": 356.42,
+ "end": 357.18,
+ "text": "basically"
+ },
+ {
+ "start": 357.16,
+ "end": 357.76,
+ "text": "pet"
+ },
+ {
+ "start": 358.08,
+ "end": 358.6,
+ "text": "plastic"
+ },
+ {
+ "start": 358.62,
+ "end": 358.92,
+ "text": "goes"
+ },
+ {
+ "start": 358.96,
+ "end": 359.16,
+ "text": "from"
+ },
+ {
+ "start": 359.16,
+ "end": 359.44,
+ "text": "being"
+ },
+ {
+ "start": 359.4,
+ "end": 359.48,
+ "text": "a"
+ },
+ {
+ "start": 359.58,
+ "end": 359.86,
+ "text": "big"
+ },
+ {
+ "start": 360.04,
+ "end": 360.32,
+ "text": "tough"
+ },
+ {
+ "start": 360.34,
+ "end": 360.74,
+ "text": "long"
+ },
+ {
+ "start": 360.72,
+ "end": 361.18,
+ "text": "lasting"
+ },
+ {
+ "start": 361.16,
+ "end": 361.72,
+ "text": "pollutant"
+ },
+ {
+ "start": 362.18,
+ "end": 362.34,
+ "text": "to"
+ },
+ {
+ "start": 362.34,
+ "end": 362.42,
+ "text": "a"
+ },
+ {
+ "start": 362.52,
+ "end": 363.08,
+ "text": "tasty"
+ },
+ {
+ "start": 363.1,
+ "end": 363.38,
+ "text": "meal"
+ },
+ {
+ "start": 363.4,
+ "end": 363.6,
+ "text": "for"
+ },
+ {
+ "start": 363.58,
+ "end": 363.74,
+ "text": "my"
+ },
+ {
+ "start": 363.76,
+ "end": 364.28,
+ "text": "bacteria."
+ },
+ {
+ "start": 364.64,
+ "end": 367.24,
+ "text": "Sounds"
+ },
+ {
+ "start": 367.22,
+ "end": 367.5,
+ "text": "pretty"
+ },
+ {
+ "start": 367.48,
+ "end": 367.72,
+ "text": "cool."
+ },
+ {
+ "start": 367.7,
+ "end": 367.94,
+ "text": "Right."
+ },
+ {
+ "start": 368.56,
+ "end": 370.58,
+ "text": "And"
+ },
+ {
+ "start": 370.54,
+ "end": 370.62,
+ "text": "I"
+ },
+ {
+ "start": 370.64,
+ "end": 370.96,
+ "text": "think"
+ },
+ {
+ "start": 370.98,
+ "end": 371.7,
+ "text": "given"
+ },
+ {
+ "start": 371.66,
+ "end": 371.84,
+ "text": "the"
+ },
+ {
+ "start": 371.8,
+ "end": 372.14,
+ "text": "current"
+ },
+ {
+ "start": 372.1,
+ "end": 372.5,
+ "text": "scope"
+ },
+ {
+ "start": 372.46,
+ "end": 372.62,
+ "text": "of"
+ },
+ {
+ "start": 372.6,
+ "end": 372.78,
+ "text": "our"
+ },
+ {
+ "start": 372.76,
+ "end": 373.22,
+ "text": "plastic"
+ },
+ {
+ "start": 373.2,
+ "end": 373.68,
+ "text": "pollution"
+ },
+ {
+ "start": 373.66,
+ "end": 374.1,
+ "text": "problem,"
+ },
+ {
+ "start": 374.44,
+ "end": 374.52,
+ "text": "I"
+ },
+ {
+ "start": 374.48,
+ "end": 375.46,
+ "text": "think"
+ },
+ {
+ "start": 375.42,
+ "end": 375.52,
+ "text": "it"
+ },
+ {
+ "start": 375.54,
+ "end": 375.82,
+ "text": "sounds"
+ },
+ {
+ "start": 375.82,
+ "end": 376.1,
+ "text": "pretty"
+ },
+ {
+ "start": 376.08,
+ "end": 376.5,
+ "text": "useful."
+ },
+ {
+ "start": 377.44,
+ "end": 378.38,
+ "text": "The"
+ },
+ {
+ "start": 378.34,
+ "end": 379,
+ "text": "statistics"
+ },
+ {
+ "start": 378.98,
+ "end": 379.06,
+ "text": "I"
+ },
+ {
+ "start": 379.04,
+ "end": 379.5,
+ "text": "shared"
+ },
+ {
+ "start": 379.5,
+ "end": 379.7,
+ "text": "with"
+ },
+ {
+ "start": 379.66,
+ "end": 379.84,
+ "text": "you"
+ },
+ {
+ "start": 379.82,
+ "end": 380.18,
+ "text": "on"
+ },
+ {
+ "start": 380.32,
+ "end": 380.66,
+ "text": "just"
+ },
+ {
+ "start": 380.68,
+ "end": 380.92,
+ "text": "how"
+ },
+ {
+ "start": 380.94,
+ "end": 381.18,
+ "text": "much"
+ },
+ {
+ "start": 381.18,
+ "end": 381.72,
+ "text": "plastic"
+ },
+ {
+ "start": 381.72,
+ "end": 382.02,
+ "text": "waste"
+ },
+ {
+ "start": 382,
+ "end": 382.2,
+ "text": "has"
+ },
+ {
+ "start": 382.18,
+ "end": 382.9,
+ "text": "accumulated"
+ },
+ {
+ "start": 382.88,
+ "end": 383.04,
+ "text": "on"
+ },
+ {
+ "start": 383,
+ "end": 383.18,
+ "text": "our"
+ },
+ {
+ "start": 383.16,
+ "end": 383.46,
+ "text": "planet"
+ },
+ {
+ "start": 383.8,
+ "end": 384.62,
+ "text": "are"
+ },
+ {
+ "start": 384.62,
+ "end": 385.26,
+ "text": "daunting."
+ },
+ {
+ "start": 385.24,
+ "end": 386.16,
+ "text": "They're"
+ },
+ {
+ "start": 386.14,
+ "end": 386.58,
+ "text": "scary."
+ },
+ {
+ "start": 387.3,
+ "end": 387.76,
+ "text": "And"
+ },
+ {
+ "start": 387.72,
+ "end": 387.8,
+ "text": "I"
+ },
+ {
+ "start": 387.82,
+ "end": 388.06,
+ "text": "think"
+ },
+ {
+ "start": 388.04,
+ "end": 388.24,
+ "text": "they"
+ },
+ {
+ "start": 388.2,
+ "end": 388.74,
+ "text": "highlight"
+ },
+ {
+ "start": 388.72,
+ "end": 389.3,
+ "text": "that"
+ },
+ {
+ "start": 389.3,
+ "end": 389.54,
+ "text": "while"
+ },
+ {
+ "start": 389.52,
+ "end": 390.18,
+ "text": "reducing"
+ },
+ {
+ "start": 390.16,
+ "end": 390.7,
+ "text": "reusing"
+ },
+ {
+ "start": 390.66,
+ "end": 390.82,
+ "text": "and"
+ },
+ {
+ "start": 390.78,
+ "end": 391.52,
+ "text": "recycling"
+ },
+ {
+ "start": 391.5,
+ "end": 391.98,
+ "text": "are"
+ },
+ {
+ "start": 391.96,
+ "end": 392.52,
+ "text": "important."
+ },
+ {
+ "start": 392.8,
+ "end": 393.74,
+ "text": "They"
+ },
+ {
+ "start": 393.76,
+ "end": 394.26,
+ "text": "alone"
+ },
+ {
+ "start": 394.24,
+ "end": 394.54,
+ "text": "are"
+ },
+ {
+ "start": 394.52,
+ "end": 394.84,
+ "text": "not"
+ },
+ {
+ "start": 394.86,
+ "end": 395.14,
+ "text": "going"
+ },
+ {
+ "start": 395.1,
+ "end": 395.24,
+ "text": "to"
+ },
+ {
+ "start": 395.22,
+ "end": 395.36,
+ "text": "be"
+ },
+ {
+ "start": 395.32,
+ "end": 395.7,
+ "text": "enough"
+ },
+ {
+ "start": 395.68,
+ "end": 395.82,
+ "text": "to"
+ },
+ {
+ "start": 395.88,
+ "end": 396.18,
+ "text": "solve"
+ },
+ {
+ "start": 396.14,
+ "end": 396.34,
+ "text": "this"
+ },
+ {
+ "start": 396.32,
+ "end": 396.78,
+ "text": "problem."
+ },
+ {
+ "start": 397.1,
+ "end": 398.56,
+ "text": "And"
+ },
+ {
+ "start": 398.52,
+ "end": 398.7,
+ "text": "this"
+ },
+ {
+ "start": 398.66,
+ "end": 398.84,
+ "text": "is"
+ },
+ {
+ "start": 398.82,
+ "end": 399.14,
+ "text": "where"
+ },
+ {
+ "start": 399.12,
+ "end": 399.36,
+ "text": "I"
+ },
+ {
+ "start": 399.34,
+ "end": 399.7,
+ "text": "think"
+ },
+ {
+ "start": 399.68,
+ "end": 400.32,
+ "text": "bacteria"
+ },
+ {
+ "start": 400.38,
+ "end": 401.32,
+ "text": "might"
+ },
+ {
+ "start": 401.3,
+ "end": 401.46,
+ "text": "be"
+ },
+ {
+ "start": 401.44,
+ "end": 401.64,
+ "text": "able"
+ },
+ {
+ "start": 401.62,
+ "end": 401.76,
+ "text": "to"
+ },
+ {
+ "start": 401.74,
+ "end": 401.94,
+ "text": "help"
+ },
+ {
+ "start": 401.92,
+ "end": 402.1,
+ "text": "us"
+ },
+ {
+ "start": 402.1,
+ "end": 402.34,
+ "text": "out."
+ },
+ {
+ "start": 402.38,
+ "end": 403.84,
+ "text": "But"
+ },
+ {
+ "start": 403.8,
+ "end": 403.88,
+ "text": "I"
+ },
+ {
+ "start": 403.9,
+ "end": 404.14,
+ "text": "do"
+ },
+ {
+ "start": 404.12,
+ "end": 404.9,
+ "text": "understand"
+ },
+ {
+ "start": 404.88,
+ "end": 405.22,
+ "text": "why"
+ },
+ {
+ "start": 405.18,
+ "end": 405.38,
+ "text": "the"
+ },
+ {
+ "start": 405.38,
+ "end": 405.9,
+ "text": "concept"
+ },
+ {
+ "start": 405.88,
+ "end": 406.06,
+ "text": "of"
+ },
+ {
+ "start": 406.02,
+ "end": 406.6,
+ "text": "bacterial"
+ },
+ {
+ "start": 406.6,
+ "end": 406.84,
+ "text": "help"
+ },
+ {
+ "start": 407.32,
+ "end": 407.84,
+ "text": "might"
+ },
+ {
+ "start": 407.82,
+ "end": 408.04,
+ "text": "make"
+ },
+ {
+ "start": 408,
+ "end": 408.26,
+ "text": "some"
+ },
+ {
+ "start": 408.24,
+ "end": 408.56,
+ "text": "people"
+ },
+ {
+ "start": 408.54,
+ "end": 408.62,
+ "text": "a"
+ },
+ {
+ "start": 408.6,
+ "end": 408.9,
+ "text": "little"
+ },
+ {
+ "start": 408.88,
+ "end": 409.24,
+ "text": "nervous"
+ },
+ {
+ "start": 410.22,
+ "end": 410.94,
+ "text": "after"
+ },
+ {
+ "start": 410.92,
+ "end": 411.14,
+ "text": "all"
+ },
+ {
+ "start": 411.14,
+ "end": 411.32,
+ "text": "a"
+ },
+ {
+ "start": 411.88,
+ "end": 412.34,
+ "text": "plastic"
+ },
+ {
+ "start": 412.34,
+ "end": 412.48,
+ "text": "is"
+ },
+ {
+ "start": 412.48,
+ "end": 413.02,
+ "text": "everywhere"
+ },
+ {
+ "start": 413.02,
+ "end": 413.48,
+ "text": "and"
+ },
+ {
+ "start": 413.46,
+ "end": 413.7,
+ "text": "these"
+ },
+ {
+ "start": 413.68,
+ "end": 414.2,
+ "text": "bacteria"
+ },
+ {
+ "start": 414.22,
+ "end": 414.54,
+ "text": "eat"
+ },
+ {
+ "start": 414.56,
+ "end": 415.06,
+ "text": "plastic."
+ },
+ {
+ "start": 415.58,
+ "end": 416.34,
+ "text": "Isn't"
+ },
+ {
+ "start": 416.3,
+ "end": 416.5,
+ "text": "there"
+ },
+ {
+ "start": 416.5,
+ "end": 416.58,
+ "text": "a"
+ },
+ {
+ "start": 416.56,
+ "end": 416.82,
+ "text": "risk"
+ },
+ {
+ "start": 416.8,
+ "end": 417.04,
+ "text": "of"
+ },
+ {
+ "start": 417,
+ "end": 417.22,
+ "text": "these"
+ },
+ {
+ "start": 417.2,
+ "end": 417.76,
+ "text": "bacteria"
+ },
+ {
+ "start": 417.8,
+ "end": 418.22,
+ "text": "getting"
+ },
+ {
+ "start": 418.18,
+ "end": 418.32,
+ "text": "out"
+ },
+ {
+ "start": 418.3,
+ "end": 418.44,
+ "text": "in"
+ },
+ {
+ "start": 418.4,
+ "end": 418.54,
+ "text": "the"
+ },
+ {
+ "start": 418.5,
+ "end": 419.06,
+ "text": "environment"
+ },
+ {
+ "start": 419.04,
+ "end": 419.22,
+ "text": "and"
+ },
+ {
+ "start": 419.18,
+ "end": 419.8,
+ "text": "wreaking"
+ },
+ {
+ "start": 419.78,
+ "end": 420.1,
+ "text": "havoc?"
+ },
+ {
+ "start": 420.4,
+ "end": 422.56,
+ "text": "Well,"
+ },
+ {
+ "start": 422.56,
+ "end": 422.9,
+ "text": "the"
+ },
+ {
+ "start": 422.86,
+ "end": 423.12,
+ "text": "short"
+ },
+ {
+ "start": 423.12,
+ "end": 423.48,
+ "text": "answer"
+ },
+ {
+ "start": 423.44,
+ "end": 423.6,
+ "text": "is"
+ },
+ {
+ "start": 423.56,
+ "end": 423.7,
+ "text": "no."
+ },
+ {
+ "start": 423.84,
+ "end": 424.36,
+ "text": "And"
+ },
+ {
+ "start": 424.32,
+ "end": 424.54,
+ "text": "I'll"
+ },
+ {
+ "start": 424.5,
+ "end": 424.68,
+ "text": "tell"
+ },
+ {
+ "start": 424.64,
+ "end": 424.82,
+ "text": "you"
+ },
+ {
+ "start": 424.78,
+ "end": 424.92,
+ "text": "why"
+ },
+ {
+ "start": 425.36,
+ "end": 426.46,
+ "text": "these"
+ },
+ {
+ "start": 426.46,
+ "end": 427.08,
+ "text": "bacteria"
+ },
+ {
+ "start": 427.1,
+ "end": 427.52,
+ "text": "are"
+ },
+ {
+ "start": 427.48,
+ "end": 427.94,
+ "text": "already"
+ },
+ {
+ "start": 427.92,
+ "end": 428.24,
+ "text": "in"
+ },
+ {
+ "start": 428.26,
+ "end": 428.48,
+ "text": "the"
+ },
+ {
+ "start": 428.44,
+ "end": 429.08,
+ "text": "environments."
+ },
+ {
+ "start": 429.54,
+ "end": 430.5,
+ "text": "The"
+ },
+ {
+ "start": 430.46,
+ "end": 431.02,
+ "text": "bacteria"
+ },
+ {
+ "start": 430.98,
+ "end": 431.2,
+ "text": "and"
+ },
+ {
+ "start": 431.18,
+ "end": 431.34,
+ "text": "my"
+ },
+ {
+ "start": 431.32,
+ "end": 431.88,
+ "text": "research"
+ },
+ {
+ "start": 431.86,
+ "end": 432.06,
+ "text": "are"
+ },
+ {
+ "start": 432.04,
+ "end": 432.26,
+ "text": "not"
+ },
+ {
+ "start": 432.28,
+ "end": 432.86,
+ "text": "genetically,"
+ },
+ {
+ "start": 432.84,
+ "end": 433.38,
+ "text": "modified"
+ },
+ {
+ "start": 433.4,
+ "end": 433.94,
+ "text": "franken"
+ },
+ {
+ "start": 433.96,
+ "end": 434.2,
+ "text": "bugs."
+ },
+ {
+ "start": 434.46,
+ "end": 436.48,
+ "text": "These"
+ },
+ {
+ "start": 436.46,
+ "end": 436.64,
+ "text": "are"
+ },
+ {
+ "start": 436.6,
+ "end": 437.36,
+ "text": "naturally"
+ },
+ {
+ "start": 437.34,
+ "end": 437.8,
+ "text": "occurring"
+ },
+ {
+ "start": 437.78,
+ "end": 438.4,
+ "text": "bacteria"
+ },
+ {
+ "start": 438.44,
+ "end": 438.7,
+ "text": "that"
+ },
+ {
+ "start": 438.66,
+ "end": 438.84,
+ "text": "have"
+ },
+ {
+ "start": 438.8,
+ "end": 439.2,
+ "text": "simply"
+ },
+ {
+ "start": 439.26,
+ "end": 440.02,
+ "text": "adapted"
+ },
+ {
+ "start": 440,
+ "end": 440.18,
+ "text": "to"
+ },
+ {
+ "start": 440.18,
+ "end": 440.38,
+ "text": "their"
+ },
+ {
+ "start": 440.38,
+ "end": 440.86,
+ "text": "plastic"
+ },
+ {
+ "start": 440.88,
+ "end": 441.36,
+ "text": "polluted"
+ },
+ {
+ "start": 441.32,
+ "end": 442,
+ "text": "environment"
+ },
+ {
+ "start": 441.98,
+ "end": 442.56,
+ "text": "and"
+ },
+ {
+ "start": 442.52,
+ "end": 443.1,
+ "text": "evolved"
+ },
+ {
+ "start": 443.08,
+ "end": 443.48,
+ "text": "the"
+ },
+ {
+ "start": 443.48,
+ "end": 444.18,
+ "text": "incredibly"
+ },
+ {
+ "start": 444.2,
+ "end": 444.76,
+ "text": "narly"
+ },
+ {
+ "start": 444.76,
+ "end": 445.18,
+ "text": "ability"
+ },
+ {
+ "start": 445.16,
+ "end": 445.34,
+ "text": "to"
+ },
+ {
+ "start": 445.36,
+ "end": 445.62,
+ "text": "eat"
+ },
+ {
+ "start": 445.68,
+ "end": 446.16,
+ "text": "pet"
+ },
+ {
+ "start": 446.28,
+ "end": 446.74,
+ "text": "plastic."
+ },
+ {
+ "start": 447.16,
+ "end": 447.26,
+ "text": "So"
+ },
+ {
+ "start": 448.36,
+ "end": 448.56,
+ "text": "the"
+ },
+ {
+ "start": 448.56,
+ "end": 449.14,
+ "text": "process"
+ },
+ {
+ "start": 449.14,
+ "end": 449.44,
+ "text": "of"
+ },
+ {
+ "start": 449.4,
+ "end": 449.92,
+ "text": "bacteria"
+ },
+ {
+ "start": 449.98,
+ "end": 450.42,
+ "text": "eating"
+ },
+ {
+ "start": 450.4,
+ "end": 451,
+ "text": "plastic"
+ },
+ {
+ "start": 451,
+ "end": 451.62,
+ "text": "is"
+ },
+ {
+ "start": 451.58,
+ "end": 452.04,
+ "text": "actually"
+ },
+ {
+ "start": 452.02,
+ "end": 452.1,
+ "text": "a"
+ },
+ {
+ "start": 452.1,
+ "end": 452.64,
+ "text": "natural"
+ },
+ {
+ "start": 452.64,
+ "end": 452.88,
+ "text": "one"
+ },
+ {
+ "start": 453.2,
+ "end": 453.74,
+ "text": "but"
+ },
+ {
+ "start": 453.7,
+ "end": 453.94,
+ "text": "it's"
+ },
+ {
+ "start": 453.9,
+ "end": 454.06,
+ "text": "an"
+ },
+ {
+ "start": 454.02,
+ "end": 454.88,
+ "text": "incredibly"
+ },
+ {
+ "start": 454.88,
+ "end": 455.26,
+ "text": "slow"
+ },
+ {
+ "start": 455.32,
+ "end": 455.88,
+ "text": "process"
+ },
+ {
+ "start": 455.96,
+ "end": 456.56,
+ "text": "and"
+ },
+ {
+ "start": 456.52,
+ "end": 456.72,
+ "text": "there"
+ },
+ {
+ "start": 456.68,
+ "end": 457.04,
+ "text": "remains"
+ },
+ {
+ "start": 457.04,
+ "end": 457.12,
+ "text": "a"
+ },
+ {
+ "start": 457.24,
+ "end": 457.56,
+ "text": "lot"
+ },
+ {
+ "start": 457.54,
+ "end": 457.68,
+ "text": "of"
+ },
+ {
+ "start": 457.66,
+ "end": 457.88,
+ "text": "work"
+ },
+ {
+ "start": 457.88,
+ "end": 458.06,
+ "text": "to"
+ },
+ {
+ "start": 458.06,
+ "end": 458.18,
+ "text": "be"
+ },
+ {
+ "start": 458.18,
+ "end": 458.62,
+ "text": "done"
+ },
+ {
+ "start": 458.6,
+ "end": 459.08,
+ "text": "to"
+ },
+ {
+ "start": 459.08,
+ "end": 459.42,
+ "text": "figure"
+ },
+ {
+ "start": 459.4,
+ "end": 459.64,
+ "text": "out"
+ },
+ {
+ "start": 459.64,
+ "end": 459.9,
+ "text": "how"
+ },
+ {
+ "start": 459.86,
+ "end": 459.98,
+ "text": "to"
+ },
+ {
+ "start": 459.96,
+ "end": 460.32,
+ "text": "speed"
+ },
+ {
+ "start": 460.28,
+ "end": 460.46,
+ "text": "up"
+ },
+ {
+ "start": 460.46,
+ "end": 460.66,
+ "text": "this"
+ },
+ {
+ "start": 460.7,
+ "end": 461.22,
+ "text": "process"
+ },
+ {
+ "start": 461.22,
+ "end": 461.5,
+ "text": "to"
+ },
+ {
+ "start": 461.48,
+ "end": 461.56,
+ "text": "a"
+ },
+ {
+ "start": 461.6,
+ "end": 461.98,
+ "text": "useful"
+ },
+ {
+ "start": 462,
+ "end": 462.26,
+ "text": "pace."
+ },
+ {
+ "start": 462.6,
+ "end": 464.14,
+ "text": "My"
+ },
+ {
+ "start": 464.2,
+ "end": 464.78,
+ "text": "research"
+ },
+ {
+ "start": 464.76,
+ "end": 464.9,
+ "text": "is"
+ },
+ {
+ "start": 464.88,
+ "end": 465.36,
+ "text": "currently"
+ },
+ {
+ "start": 465.34,
+ "end": 465.7,
+ "text": "looking"
+ },
+ {
+ "start": 465.68,
+ "end": 465.82,
+ "text": "at"
+ },
+ {
+ "start": 465.78,
+ "end": 466,
+ "text": "ways"
+ },
+ {
+ "start": 466,
+ "end": 466.18,
+ "text": "of"
+ },
+ {
+ "start": 466.14,
+ "end": 466.46,
+ "text": "doing"
+ },
+ {
+ "start": 466.42,
+ "end": 466.62,
+ "text": "this"
+ },
+ {
+ "start": 466.6,
+ "end": 466.92,
+ "text": "through"
+ },
+ {
+ "start": 466.88,
+ "end": 466.96,
+ "text": "a"
+ },
+ {
+ "start": 466.94,
+ "end": 467.42,
+ "text": "series"
+ },
+ {
+ "start": 467.4,
+ "end": 467.6,
+ "text": "of"
+ },
+ {
+ "start": 467.68,
+ "end": 468.06,
+ "text": "uv"
+ },
+ {
+ "start": 468.34,
+ "end": 468.52,
+ "text": "or"
+ },
+ {
+ "start": 468.52,
+ "end": 469.3,
+ "text": "ultraviolet"
+ },
+ {
+ "start": 469.34,
+ "end": 470.1,
+ "text": "pretreatments"
+ },
+ {
+ "start": 470.26,
+ "end": 471.12,
+ "text": "which"
+ },
+ {
+ "start": 471.12,
+ "end": 471.86,
+ "text": "basically"
+ },
+ {
+ "start": 471.82,
+ "end": 472.08,
+ "text": "means"
+ },
+ {
+ "start": 472.06,
+ "end": 472.24,
+ "text": "we"
+ },
+ {
+ "start": 472.28,
+ "end": 472.9,
+ "text": "blast"
+ },
+ {
+ "start": 472.98,
+ "end": 473.22,
+ "text": "pet"
+ },
+ {
+ "start": 473.5,
+ "end": 473.92,
+ "text": "plastic"
+ },
+ {
+ "start": 473.92,
+ "end": 474.1,
+ "text": "with"
+ },
+ {
+ "start": 474.1,
+ "end": 474.52,
+ "text": "sunlight."
+ },
+ {
+ "start": 474.74,
+ "end": 474.84,
+ "text": "We"
+ },
+ {
+ "start": 476.4,
+ "end": 476.54,
+ "text": "do"
+ },
+ {
+ "start": 476.62,
+ "end": 476.86,
+ "text": "this"
+ },
+ {
+ "start": 476.84,
+ "end": 477.26,
+ "text": "because"
+ },
+ {
+ "start": 477.24,
+ "end": 477.56,
+ "text": "some"
+ },
+ {
+ "start": 477.58,
+ "end": 477.84,
+ "text": "might"
+ },
+ {
+ "start": 477.82,
+ "end": 478.68,
+ "text": "accident"
+ },
+ {
+ "start": 478.64,
+ "end": 478.9,
+ "text": "like"
+ },
+ {
+ "start": 479.04,
+ "end": 479.7,
+ "text": "tenderizer"
+ },
+ {
+ "start": 479.68,
+ "end": 479.82,
+ "text": "on"
+ },
+ {
+ "start": 479.78,
+ "end": 479.94,
+ "text": "a"
+ },
+ {
+ "start": 479.92,
+ "end": 480.18,
+ "text": "stake"
+ },
+ {
+ "start": 480.38,
+ "end": 481.3,
+ "text": "turning"
+ },
+ {
+ "start": 481.26,
+ "end": 481.42,
+ "text": "the"
+ },
+ {
+ "start": 481.38,
+ "end": 481.64,
+ "text": "big"
+ },
+ {
+ "start": 481.82,
+ "end": 482.12,
+ "text": "tough"
+ },
+ {
+ "start": 482.1,
+ "end": 482.6,
+ "text": "durable"
+ },
+ {
+ "start": 482.58,
+ "end": 482.98,
+ "text": "bonds"
+ },
+ {
+ "start": 482.98,
+ "end": 483.16,
+ "text": "and"
+ },
+ {
+ "start": 483.16,
+ "end": 483.44,
+ "text": "pet"
+ },
+ {
+ "start": 483.78,
+ "end": 484.26,
+ "text": "plastic"
+ },
+ {
+ "start": 484.74,
+ "end": 484.82,
+ "text": "a"
+ },
+ {
+ "start": 484.86,
+ "end": 485.14,
+ "text": "bit"
+ },
+ {
+ "start": 485.12,
+ "end": 485.84,
+ "text": "softer"
+ },
+ {
+ "start": 485.82,
+ "end": 486.22,
+ "text": "and"
+ },
+ {
+ "start": 486.2,
+ "end": 486.28,
+ "text": "a"
+ },
+ {
+ "start": 486.3,
+ "end": 486.46,
+ "text": "bit"
+ },
+ {
+ "start": 486.54,
+ "end": 486.98,
+ "text": "easier"
+ },
+ {
+ "start": 487,
+ "end": 487.2,
+ "text": "for"
+ },
+ {
+ "start": 487.18,
+ "end": 487.32,
+ "text": "my"
+ },
+ {
+ "start": 487.32,
+ "end": 487.86,
+ "text": "bacteria"
+ },
+ {
+ "start": 487.9,
+ "end": 488.02,
+ "text": "to"
+ },
+ {
+ "start": 488.06,
+ "end": 488.3,
+ "text": "chew"
+ },
+ {
+ "start": 488.28,
+ "end": 488.4,
+ "text": "on."
+ },
+ {
+ "start": 488.68,
+ "end": 490.78,
+ "text": "Ultimately"
+ },
+ {
+ "start": 490.8,
+ "end": 491.12,
+ "text": "when"
+ },
+ {
+ "start": 491.08,
+ "end": 491.24,
+ "text": "my"
+ },
+ {
+ "start": 491.22,
+ "end": 491.68,
+ "text": "research"
+ },
+ {
+ "start": 491.64,
+ "end": 491.92,
+ "text": "hopes"
+ },
+ {
+ "start": 491.96,
+ "end": 492.1,
+ "text": "to"
+ },
+ {
+ "start": 492.1,
+ "end": 492.26,
+ "text": "do"
+ },
+ {
+ "start": 492.52,
+ "end": 492.82,
+ "text": "is"
+ },
+ {
+ "start": 492.86,
+ "end": 493.2,
+ "text": "create"
+ },
+ {
+ "start": 493.16,
+ "end": 493.3,
+ "text": "an"
+ },
+ {
+ "start": 493.26,
+ "end": 494,
+ "text": "industrial"
+ },
+ {
+ "start": 494,
+ "end": 494.5,
+ "text": "scale"
+ },
+ {
+ "start": 494.6,
+ "end": 495.38,
+ "text": "contained."
+ },
+ {
+ "start": 495.52,
+ "end": 496,
+ "text": "Carbon"
+ },
+ {
+ "start": 496.04,
+ "end": 496.34,
+ "text": "free"
+ },
+ {
+ "start": 496.38,
+ "end": 496.88,
+ "text": "system"
+ },
+ {
+ "start": 497.38,
+ "end": 497.82,
+ "text": "similar"
+ },
+ {
+ "start": 497.8,
+ "end": 498.1,
+ "text": "to"
+ },
+ {
+ "start": 498.1,
+ "end": 498.18,
+ "text": "a"
+ },
+ {
+ "start": 498.2,
+ "end": 498.7,
+ "text": "compost"
+ },
+ {
+ "start": 498.7,
+ "end": 498.92,
+ "text": "deep"
+ },
+ {
+ "start": 499.16,
+ "end": 499.8,
+ "text": "where"
+ },
+ {
+ "start": 499.78,
+ "end": 500.06,
+ "text": "these"
+ },
+ {
+ "start": 500.04,
+ "end": 500.58,
+ "text": "bacteria"
+ },
+ {
+ "start": 500.62,
+ "end": 500.82,
+ "text": "can"
+ },
+ {
+ "start": 500.8,
+ "end": 501.3,
+ "text": "thrive"
+ },
+ {
+ "start": 501.28,
+ "end": 501.5,
+ "text": "and"
+ },
+ {
+ "start": 501.46,
+ "end": 501.54,
+ "text": "a"
+ },
+ {
+ "start": 501.58,
+ "end": 502.18,
+ "text": "contain"
+ },
+ {
+ "start": 502.16,
+ "end": 502.74,
+ "text": "system"
+ },
+ {
+ "start": 503.04,
+ "end": 503.32,
+ "text": "where"
+ },
+ {
+ "start": 503.3,
+ "end": 503.5,
+ "text": "their"
+ },
+ {
+ "start": 503.48,
+ "end": 503.82,
+ "text": "soul"
+ },
+ {
+ "start": 503.88,
+ "end": 504.3,
+ "text": "food"
+ },
+ {
+ "start": 504.26,
+ "end": 504.72,
+ "text": "source"
+ },
+ {
+ "start": 504.84,
+ "end": 505.02,
+ "text": "is"
+ },
+ {
+ "start": 505.1,
+ "end": 505.68,
+ "text": "pet"
+ },
+ {
+ "start": 505.92,
+ "end": 506.42,
+ "text": "plastic"
+ },
+ {
+ "start": 506.44,
+ "end": 506.72,
+ "text": "waste."
+ },
+ {
+ "start": 507.12,
+ "end": 508.98,
+ "text": "Imagine"
+ },
+ {
+ "start": 508.94,
+ "end": 509.6,
+ "text": "one"
+ },
+ {
+ "start": 509.8,
+ "end": 510.1,
+ "text": "day"
+ },
+ {
+ "start": 510.1,
+ "end": 510.8,
+ "text": "being"
+ },
+ {
+ "start": 510.78,
+ "end": 511,
+ "text": "able"
+ },
+ {
+ "start": 510.98,
+ "end": 511.12,
+ "text": "to"
+ },
+ {
+ "start": 511.1,
+ "end": 511.56,
+ "text": "dispose"
+ },
+ {
+ "start": 511.54,
+ "end": 511.7,
+ "text": "of"
+ },
+ {
+ "start": 511.82,
+ "end": 512.06,
+ "text": "all"
+ },
+ {
+ "start": 512.04,
+ "end": 512.22,
+ "text": "of"
+ },
+ {
+ "start": 512.2,
+ "end": 512.4,
+ "text": "your"
+ },
+ {
+ "start": 512.38,
+ "end": 512.84,
+ "text": "plastic"
+ },
+ {
+ "start": 512.84,
+ "end": 513.12,
+ "text": "waste"
+ },
+ {
+ "start": 513.12,
+ "end": 513.32,
+ "text": "and"
+ },
+ {
+ "start": 513.28,
+ "end": 513.4,
+ "text": "a"
+ },
+ {
+ "start": 513.46,
+ "end": 513.66,
+ "text": "bin"
+ },
+ {
+ "start": 513.66,
+ "end": 513.8,
+ "text": "at"
+ },
+ {
+ "start": 513.76,
+ "end": 513.9,
+ "text": "the"
+ },
+ {
+ "start": 513.88,
+ "end": 514.2,
+ "text": "curb"
+ },
+ {
+ "start": 514.56,
+ "end": 514.76,
+ "text": "that"
+ },
+ {
+ "start": 514.8,
+ "end": 514.98,
+ "text": "you"
+ },
+ {
+ "start": 515.02,
+ "end": 515.2,
+ "text": "knew"
+ },
+ {
+ "start": 515.24,
+ "end": 515.44,
+ "text": "was"
+ },
+ {
+ "start": 515.48,
+ "end": 515.86,
+ "text": "bound"
+ },
+ {
+ "start": 515.88,
+ "end": 516.06,
+ "text": "for"
+ },
+ {
+ "start": 516.02,
+ "end": 516.14,
+ "text": "a"
+ },
+ {
+ "start": 516.18,
+ "end": 516.76,
+ "text": "dedicated"
+ },
+ {
+ "start": 517.22,
+ "end": 517.88,
+ "text": "bacteria,"
+ },
+ {
+ "start": 517.94,
+ "end": 518.44,
+ "text": "powered"
+ },
+ {
+ "start": 518.48,
+ "end": 519.1,
+ "text": "plastic"
+ },
+ {
+ "start": 519.1,
+ "end": 519.38,
+ "text": "waste"
+ },
+ {
+ "start": 519.38,
+ "end": 519.9,
+ "text": "facility."
+ },
+ {
+ "start": 520.22,
+ "end": 520.3,
+ "text": "I"
+ },
+ {
+ "start": 520.28,
+ "end": 522.08,
+ "text": "think"
+ },
+ {
+ "start": 522.06,
+ "end": 522.68,
+ "text": "with"
+ },
+ {
+ "start": 522.64,
+ "end": 522.86,
+ "text": "some"
+ },
+ {
+ "start": 522.82,
+ "end": 523.1,
+ "text": "hard"
+ },
+ {
+ "start": 523.14,
+ "end": 523.42,
+ "text": "work,"
+ },
+ {
+ "start": 523.44,
+ "end": 524.18,
+ "text": "this"
+ },
+ {
+ "start": 524.16,
+ "end": 524.32,
+ "text": "is"
+ },
+ {
+ "start": 524.28,
+ "end": 524.44,
+ "text": "an"
+ },
+ {
+ "start": 524.42,
+ "end": 525.18,
+ "text": "achievable"
+ },
+ {
+ "start": 525.16,
+ "end": 525.7,
+ "text": "reality."
+ },
+ {
+ "start": 526.12,
+ "end": 527.72,
+ "text": "Plastic"
+ },
+ {
+ "start": 527.68,
+ "end": 528,
+ "text": "eating"
+ },
+ {
+ "start": 527.98,
+ "end": 528.66,
+ "text": "bacteria"
+ },
+ {
+ "start": 528.8,
+ "end": 529.14,
+ "text": "is"
+ },
+ {
+ "start": 529.12,
+ "end": 529.4,
+ "text": "not"
+ },
+ {
+ "start": 529.38,
+ "end": 529.46,
+ "text": "a"
+ },
+ {
+ "start": 529.5,
+ "end": 529.78,
+ "text": "curl"
+ },
+ {
+ "start": 530.36,
+ "end": 530.76,
+ "text": "but"
+ },
+ {
+ "start": 530.74,
+ "end": 531.08,
+ "text": "given"
+ },
+ {
+ "start": 531.06,
+ "end": 531.24,
+ "text": "the"
+ },
+ {
+ "start": 531.2,
+ "end": 531.54,
+ "text": "current"
+ },
+ {
+ "start": 531.5,
+ "end": 532.16,
+ "text": "statistics,"
+ },
+ {
+ "start": 532.14,
+ "end": 532.42,
+ "text": "it's"
+ },
+ {
+ "start": 532.44,
+ "end": 532.78,
+ "text": "clear"
+ },
+ {
+ "start": 532.82,
+ "end": 533.38,
+ "text": "that"
+ },
+ {
+ "start": 533.36,
+ "end": 533.5,
+ "text": "we"
+ },
+ {
+ "start": 533.48,
+ "end": 533.98,
+ "text": "humans,"
+ },
+ {
+ "start": 534.48,
+ "end": 535,
+ "text": "we"
+ },
+ {
+ "start": 535.06,
+ "end": 535.3,
+ "text": "could"
+ },
+ {
+ "start": 535.28,
+ "end": 535.5,
+ "text": "use"
+ },
+ {
+ "start": 535.48,
+ "end": 535.56,
+ "text": "a"
+ },
+ {
+ "start": 535.52,
+ "end": 535.84,
+ "text": "little"
+ },
+ {
+ "start": 535.82,
+ "end": 536.06,
+ "text": "help"
+ },
+ {
+ "start": 536.08,
+ "end": 536.28,
+ "text": "with"
+ },
+ {
+ "start": 536.24,
+ "end": 536.42,
+ "text": "this"
+ },
+ {
+ "start": 536.44,
+ "end": 536.84,
+ "text": "problem"
+ },
+ {
+ "start": 537.48,
+ "end": 538.58,
+ "text": "because"
+ },
+ {
+ "start": 538.56,
+ "end": 539.04,
+ "text": "people"
+ },
+ {
+ "start": 539.02,
+ "end": 539.72,
+ "text": "we"
+ },
+ {
+ "start": 539.72,
+ "end": 540.2,
+ "text": "possess"
+ },
+ {
+ "start": 540.2,
+ "end": 540.28,
+ "text": "a"
+ },
+ {
+ "start": 540.32,
+ "end": 540.9,
+ "text": "pressing"
+ },
+ {
+ "start": 540.94,
+ "end": 541.38,
+ "text": "problem"
+ },
+ {
+ "start": 541.38,
+ "end": 541.52,
+ "text": "of"
+ },
+ {
+ "start": 541.52,
+ "end": 541.98,
+ "text": "plastic"
+ },
+ {
+ "start": 541.98,
+ "end": 542.46,
+ "text": "pollution"
+ },
+ {
+ "start": 542.78,
+ "end": 543.46,
+ "text": "and"
+ },
+ {
+ "start": 543.44,
+ "end": 544.04,
+ "text": "bacteria"
+ },
+ {
+ "start": 544.12,
+ "end": 544.8,
+ "text": "might"
+ },
+ {
+ "start": 544.78,
+ "end": 544.94,
+ "text": "be"
+ },
+ {
+ "start": 544.92,
+ "end": 545,
+ "text": "a"
+ },
+ {
+ "start": 545,
+ "end": 545.5,
+ "text": "really"
+ },
+ {
+ "start": 545.48,
+ "end": 545.96,
+ "text": "important"
+ },
+ {
+ "start": 545.96,
+ "end": 546.2,
+ "text": "part"
+ },
+ {
+ "start": 546.18,
+ "end": 546.32,
+ "text": "of"
+ },
+ {
+ "start": 546.28,
+ "end": 546.42,
+ "text": "the"
+ },
+ {
+ "start": 546.38,
+ "end": 546.84,
+ "text": "solution."
+ },
+ {
+ "start": 547.04,
+ "end": 547.94,
+ "text": "Thank"
+ },
+ {
+ "start": 547.92,
+ "end": 548.08,
+ "text": "you."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 13.26,
+ "end": 16.92,
+ "speaker": "TBC 0"
+ },
+ {
+ "id": 1,
+ "start": 17.3,
+ "end": 27.3,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 2,
+ "start": 27.86,
+ "end": 33.4,
+ "speaker": "TBC 2"
+ },
+ {
+ "id": 3,
+ "start": 33.38,
+ "end": 48.7,
+ "speaker": "TBC 3"
+ },
+ {
+ "id": 4,
+ "start": 49,
+ "end": 53.3,
+ "speaker": "TBC 4"
+ },
+ {
+ "id": 5,
+ "start": 53.82,
+ "end": 59.06,
+ "speaker": "TBC 5"
+ },
+ {
+ "id": 6,
+ "start": 59.74,
+ "end": 63.36,
+ "speaker": "TBC 6"
+ },
+ {
+ "id": 7,
+ "start": 63.88,
+ "end": 67.68,
+ "speaker": "TBC 7"
+ },
+ {
+ "id": 8,
+ "start": 68.04,
+ "end": 71.46,
+ "speaker": "TBC 8"
+ },
+ {
+ "id": 9,
+ "start": 71.98,
+ "end": 83.86,
+ "speaker": "TBC 9"
+ },
+ {
+ "id": 10,
+ "start": 84.1,
+ "end": 111.64,
+ "speaker": "TBC 10"
+ },
+ {
+ "id": 11,
+ "start": 111.9,
+ "end": 116.2,
+ "speaker": "TBC 11"
+ },
+ {
+ "id": 12,
+ "start": 116.76,
+ "end": 129.84,
+ "speaker": "TBC 12"
+ },
+ {
+ "id": 13,
+ "start": 130.32,
+ "end": 138.28,
+ "speaker": "TBC 13"
+ },
+ {
+ "id": 14,
+ "start": 139,
+ "end": 144.2,
+ "speaker": "TBC 14"
+ },
+ {
+ "id": 15,
+ "start": 144.72,
+ "end": 151.82,
+ "speaker": "TBC 15"
+ },
+ {
+ "id": 16,
+ "start": 152.16,
+ "end": 157.72,
+ "speaker": "TBC 16"
+ },
+ {
+ "id": 17,
+ "start": 157.76,
+ "end": 160.64,
+ "speaker": "TBC 17"
+ },
+ {
+ "id": 18,
+ "start": 161.86,
+ "end": 165.92,
+ "speaker": "TBC 18"
+ },
+ {
+ "id": 19,
+ "start": 166.32,
+ "end": 173.64,
+ "speaker": "TBC 19"
+ },
+ {
+ "id": 20,
+ "start": 173.66,
+ "end": 176.86,
+ "speaker": "TBC 20"
+ },
+ {
+ "id": 21,
+ "start": 176.84,
+ "end": 180.42,
+ "speaker": "TBC 21"
+ },
+ {
+ "id": 22,
+ "start": 180.54,
+ "end": 188.54,
+ "speaker": "TBC 22"
+ },
+ {
+ "id": 23,
+ "start": 188.88,
+ "end": 195.9,
+ "speaker": "TBC 23"
+ },
+ {
+ "id": 24,
+ "start": 196.26,
+ "end": 201.26,
+ "speaker": "TBC 24"
+ },
+ {
+ "id": 25,
+ "start": 201.62,
+ "end": 211.88,
+ "speaker": "TBC 25"
+ },
+ {
+ "id": 26,
+ "start": 211.92,
+ "end": 214.38,
+ "speaker": "TBC 26"
+ },
+ {
+ "id": 27,
+ "start": 214.68,
+ "end": 220.54,
+ "speaker": "TBC 27"
+ },
+ {
+ "id": 28,
+ "start": 221.02,
+ "end": 228.34,
+ "speaker": "TBC 28"
+ },
+ {
+ "id": 29,
+ "start": 229.14,
+ "end": 234,
+ "speaker": "TBC 29"
+ },
+ {
+ "id": 30,
+ "start": 234.42,
+ "end": 247.16,
+ "speaker": "TBC 30"
+ },
+ {
+ "id": 31,
+ "start": 247.54,
+ "end": 261.18,
+ "speaker": "TBC 31"
+ },
+ {
+ "id": 32,
+ "start": 261.92,
+ "end": 270.22,
+ "speaker": "TBC 32"
+ },
+ {
+ "id": 33,
+ "start": 270.2,
+ "end": 276.3,
+ "speaker": "TBC 33"
+ },
+ {
+ "id": 34,
+ "start": 276.28,
+ "end": 285.76,
+ "speaker": "TBC 34"
+ },
+ {
+ "id": 35,
+ "start": 286.06,
+ "end": 290.18,
+ "speaker": "TBC 35"
+ },
+ {
+ "id": 36,
+ "start": 290.78,
+ "end": 299.68,
+ "speaker": "TBC 36"
+ },
+ {
+ "id": 37,
+ "start": 299.96,
+ "end": 316.24,
+ "speaker": "TBC 37"
+ },
+ {
+ "id": 38,
+ "start": 316.54,
+ "end": 320.44,
+ "speaker": "TBC 38"
+ },
+ {
+ "id": 39,
+ "start": 320.82,
+ "end": 328.9,
+ "speaker": "TBC 39"
+ },
+ {
+ "id": 40,
+ "start": 329.24,
+ "end": 339.2,
+ "speaker": "TBC 40"
+ },
+ {
+ "id": 41,
+ "start": 339.18,
+ "end": 340.5,
+ "speaker": "TBC 41"
+ },
+ {
+ "id": 42,
+ "start": 340.82,
+ "end": 345.94,
+ "speaker": "TBC 42"
+ },
+ {
+ "id": 43,
+ "start": 345.9,
+ "end": 354.64,
+ "speaker": "TBC 43"
+ },
+ {
+ "id": 44,
+ "start": 355.22,
+ "end": 364.28,
+ "speaker": "TBC 44"
+ },
+ {
+ "id": 45,
+ "start": 364.64,
+ "end": 367.72,
+ "speaker": "TBC 45"
+ },
+ {
+ "id": 46,
+ "start": 367.7,
+ "end": 367.94,
+ "speaker": "TBC 46"
+ },
+ {
+ "id": 47,
+ "start": 368.56,
+ "end": 376.5,
+ "speaker": "TBC 47"
+ },
+ {
+ "id": 48,
+ "start": 377.44,
+ "end": 385.26,
+ "speaker": "TBC 48"
+ },
+ {
+ "id": 49,
+ "start": 385.24,
+ "end": 386.58,
+ "speaker": "TBC 49"
+ },
+ {
+ "id": 50,
+ "start": 387.3,
+ "end": 392.52,
+ "speaker": "TBC 50"
+ },
+ {
+ "id": 51,
+ "start": 392.8,
+ "end": 396.78,
+ "speaker": "TBC 51"
+ },
+ {
+ "id": 52,
+ "start": 397.1,
+ "end": 402.34,
+ "speaker": "TBC 52"
+ },
+ {
+ "id": 53,
+ "start": 402.38,
+ "end": 415.06,
+ "speaker": "TBC 53"
+ },
+ {
+ "id": 54,
+ "start": 415.58,
+ "end": 420.1,
+ "speaker": "TBC 54"
+ },
+ {
+ "id": 55,
+ "start": 420.4,
+ "end": 423.7,
+ "speaker": "TBC 55"
+ },
+ {
+ "id": 56,
+ "start": 423.84,
+ "end": 429.08,
+ "speaker": "TBC 56"
+ },
+ {
+ "id": 57,
+ "start": 429.54,
+ "end": 434.2,
+ "speaker": "TBC 57"
+ },
+ {
+ "id": 58,
+ "start": 434.46,
+ "end": 446.74,
+ "speaker": "TBC 58"
+ },
+ {
+ "id": 59,
+ "start": 447.16,
+ "end": 462.26,
+ "speaker": "TBC 59"
+ },
+ {
+ "id": 60,
+ "start": 462.6,
+ "end": 474.52,
+ "speaker": "TBC 60"
+ },
+ {
+ "id": 61,
+ "start": 474.74,
+ "end": 488.4,
+ "speaker": "TBC 61"
+ },
+ {
+ "id": 62,
+ "start": 488.68,
+ "end": 495.38,
+ "speaker": "TBC 62"
+ },
+ {
+ "id": 63,
+ "start": 495.52,
+ "end": 506.72,
+ "speaker": "TBC 63"
+ },
+ {
+ "id": 64,
+ "start": 507.12,
+ "end": 519.9,
+ "speaker": "TBC 64"
+ },
+ {
+ "id": 65,
+ "start": 520.22,
+ "end": 525.7,
+ "speaker": "TBC 65"
+ },
+ {
+ "id": 66,
+ "start": 526.12,
+ "end": 546.84,
+ "speaker": "TBC 66"
+ },
+ {
+ "id": 67,
+ "start": 547.04,
+ "end": 548.08,
+ "speaker": "TBC 67"
+ }
+ ]
+ }
+ },
+ {
+ "_id": "39cjw29xii80000ird74yb19swa",
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "title": "Ivan Poupyrev Ted Talk",
+ "url": "https://download.ted.com/talks/IvanPoupyrev_2019.mp4",
+ "clipName": "IvanPoupyrev_2019.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "start": 7.96,
+ "end": 13.5,
+ "text": "Computers"
+ },
+ {
+ "start": 13.48,
+ "end": 14.12,
+ "text": "have"
+ },
+ {
+ "start": 14.1,
+ "end": 14.52,
+ "text": "become"
+ },
+ {
+ "start": 14.48,
+ "end": 14.86,
+ "text": "truly"
+ },
+ {
+ "start": 14.84,
+ "end": 15.3,
+ "text": "incredible."
+ },
+ {
+ "start": 15.54,
+ "end": 15.64,
+ "text": "We"
+ },
+ {
+ "start": 16.64,
+ "end": 16.84,
+ "text": "are"
+ },
+ {
+ "start": 16.82,
+ "end": 17.24,
+ "text": "walking"
+ },
+ {
+ "start": 17.2,
+ "end": 17.6,
+ "text": "around"
+ },
+ {
+ "start": 17.58,
+ "end": 17.84,
+ "text": "with"
+ },
+ {
+ "start": 17.8,
+ "end": 17.94,
+ "text": "the"
+ },
+ {
+ "start": 17.9,
+ "end": 18.78,
+ "text": "supercomputers"
+ },
+ {
+ "start": 18.76,
+ "end": 18.92,
+ "text": "in"
+ },
+ {
+ "start": 18.9,
+ "end": 19.18,
+ "text": "our"
+ },
+ {
+ "start": 19.16,
+ "end": 19.36,
+ "text": "book"
+ },
+ {
+ "start": 19.32,
+ "end": 19.46,
+ "text": "at"
+ },
+ {
+ "start": 19.46,
+ "end": 19.66,
+ "text": "how"
+ },
+ {
+ "start": 19.66,
+ "end": 20.24,
+ "text": "amazing"
+ },
+ {
+ "start": 20.22,
+ "end": 20.36,
+ "text": "is"
+ },
+ {
+ "start": 20.38,
+ "end": 20.52,
+ "text": "that."
+ },
+ {
+ "start": 20.78,
+ "end": 20.88,
+ "text": "So"
+ },
+ {
+ "start": 21.76,
+ "end": 21.96,
+ "text": "it"
+ },
+ {
+ "start": 21.92,
+ "end": 22.14,
+ "text": "is"
+ },
+ {
+ "start": 22.14,
+ "end": 22.96,
+ "text": "disappointing"
+ },
+ {
+ "start": 22.92,
+ "end": 24.02,
+ "text": "that"
+ },
+ {
+ "start": 24.58,
+ "end": 24.72,
+ "text": "the"
+ },
+ {
+ "start": 24.7,
+ "end": 24.88,
+ "text": "way"
+ },
+ {
+ "start": 24.88,
+ "end": 25,
+ "text": "we"
+ },
+ {
+ "start": 25.04,
+ "end": 25.3,
+ "text": "use"
+ },
+ {
+ "start": 25.28,
+ "end": 25.8,
+ "text": "computers,"
+ },
+ {
+ "start": 25.76,
+ "end": 25.94,
+ "text": "the"
+ },
+ {
+ "start": 25.9,
+ "end": 26.06,
+ "text": "way"
+ },
+ {
+ "start": 26.04,
+ "end": 26.16,
+ "text": "we"
+ },
+ {
+ "start": 26.14,
+ "end": 26.54,
+ "text": "interact"
+ },
+ {
+ "start": 26.54,
+ "end": 26.72,
+ "text": "with"
+ },
+ {
+ "start": 26.7,
+ "end": 26.96,
+ "text": "them"
+ },
+ {
+ "start": 26.94,
+ "end": 27.42,
+ "text": "haven't"
+ },
+ {
+ "start": 27.4,
+ "end": 27.76,
+ "text": "really"
+ },
+ {
+ "start": 27.76,
+ "end": 28.1,
+ "text": "changed"
+ },
+ {
+ "start": 28.32,
+ "end": 28.42,
+ "text": "in"
+ },
+ {
+ "start": 28.68,
+ "end": 28.98,
+ "text": "last"
+ },
+ {
+ "start": 29.04,
+ "end": 29.5,
+ "text": "e-t"
+ },
+ {
+ "start": 29.46,
+ "end": 29.74,
+ "text": "years."
+ },
+ {
+ "start": 30.48,
+ "end": 30.62,
+ "text": "We"
+ },
+ {
+ "start": 30.64,
+ "end": 30.88,
+ "text": "still"
+ },
+ {
+ "start": 30.86,
+ "end": 31,
+ "text": "as"
+ },
+ {
+ "start": 31.16,
+ "end": 31.5,
+ "text": "mars"
+ },
+ {
+ "start": 31.5,
+ "end": 31.68,
+ "text": "and"
+ },
+ {
+ "start": 31.66,
+ "end": 32.06,
+ "text": "keyboards"
+ },
+ {
+ "start": 32.06,
+ "end": 32.26,
+ "text": "were"
+ },
+ {
+ "start": 32.22,
+ "end": 32.56,
+ "text": "clicking"
+ },
+ {
+ "start": 32.52,
+ "end": 32.64,
+ "text": "on"
+ },
+ {
+ "start": 32.74,
+ "end": 33.22,
+ "text": "screens"
+ },
+ {
+ "start": 33.2,
+ "end": 33.36,
+ "text": "and"
+ },
+ {
+ "start": 33.32,
+ "end": 33.48,
+ "text": "the"
+ },
+ {
+ "start": 33.46,
+ "end": 33.92,
+ "text": "buttons"
+ },
+ {
+ "start": 34.34,
+ "end": 34.76,
+ "text": "mobile"
+ },
+ {
+ "start": 34.84,
+ "end": 35.16,
+ "text": "phones"
+ },
+ {
+ "start": 35.14,
+ "end": 35.38,
+ "text": "the"
+ },
+ {
+ "start": 35.36,
+ "end": 35.66,
+ "text": "same"
+ },
+ {
+ "start": 35.92,
+ "end": 36.7,
+ "text": "with"
+ },
+ {
+ "start": 36.7,
+ "end": 36.9,
+ "text": "just"
+ },
+ {
+ "start": 36.86,
+ "end": 37.2,
+ "text": "using"
+ },
+ {
+ "start": 37.16,
+ "end": 37.62,
+ "text": "finger"
+ },
+ {
+ "start": 37.58,
+ "end": 37.7,
+ "text": "in"
+ },
+ {
+ "start": 37.72,
+ "end": 37.92,
+ "text": "a"
+ },
+ {
+ "start": 38.72,
+ "end": 38.96,
+ "text": "mass."
+ },
+ {
+ "start": 39.2,
+ "end": 39.3,
+ "text": "So"
+ },
+ {
+ "start": 40.08,
+ "end": 40.34,
+ "text": "is"
+ },
+ {
+ "start": 40.44,
+ "end": 40.64,
+ "text": "that"
+ },
+ {
+ "start": 40.62,
+ "end": 40.82,
+ "text": "is"
+ },
+ {
+ "start": 41.58,
+ "end": 41.74,
+ "text": "it"
+ },
+ {
+ "start": 41.72,
+ "end": 41.88,
+ "text": "is"
+ },
+ {
+ "start": 41.86,
+ "end": 42.04,
+ "text": "how"
+ },
+ {
+ "start": 42.06,
+ "end": 42.8,
+ "text": "future"
+ },
+ {
+ "start": 42.78,
+ "end": 43.06,
+ "text": "looks"
+ },
+ {
+ "start": 43.06,
+ "end": 43.34,
+ "text": "like"
+ },
+ {
+ "start": 43.3,
+ "end": 43.62,
+ "text": "we're"
+ },
+ {
+ "start": 43.6,
+ "end": 43.76,
+ "text": "going"
+ },
+ {
+ "start": 43.72,
+ "end": 43.82,
+ "text": "to"
+ },
+ {
+ "start": 43.78,
+ "end": 43.88,
+ "text": "be"
+ },
+ {
+ "start": 43.86,
+ "end": 44.28,
+ "text": "stuck"
+ },
+ {
+ "start": 44.28,
+ "end": 44.42,
+ "text": "in"
+ },
+ {
+ "start": 44.38,
+ "end": 44.54,
+ "text": "the"
+ },
+ {
+ "start": 44.56,
+ "end": 44.92,
+ "text": "screen"
+ },
+ {
+ "start": 45.3,
+ "end": 45.82,
+ "text": "without"
+ },
+ {
+ "start": 45.78,
+ "end": 46.34,
+ "text": "faces"
+ },
+ {
+ "start": 46.34,
+ "end": 47.32,
+ "text": "not"
+ },
+ {
+ "start": 47.3,
+ "end": 47.6,
+ "text": "seeing"
+ },
+ {
+ "start": 47.56,
+ "end": 47.7,
+ "text": "the"
+ },
+ {
+ "start": 47.66,
+ "end": 47.9,
+ "text": "world"
+ },
+ {
+ "start": 47.88,
+ "end": 48.24,
+ "text": "around"
+ },
+ {
+ "start": 48.22,
+ "end": 48.36,
+ "text": "us."
+ },
+ {
+ "start": 48.72,
+ "end": 49.52,
+ "text": "That's"
+ },
+ {
+ "start": 49.48,
+ "end": 49.74,
+ "text": "not"
+ },
+ {
+ "start": 49.7,
+ "end": 49.92,
+ "text": "the"
+ },
+ {
+ "start": 49.88,
+ "end": 50.34,
+ "text": "future."
+ },
+ {
+ "start": 50.32,
+ "end": 50.4,
+ "text": "I"
+ },
+ {
+ "start": 50.36,
+ "end": 50.9,
+ "text": "imagine"
+ },
+ {
+ "start": 50.88,
+ "end": 51.06,
+ "text": "them"
+ },
+ {
+ "start": 51.06,
+ "end": 51.24,
+ "text": "the"
+ },
+ {
+ "start": 51.2,
+ "end": 51.58,
+ "text": "future"
+ },
+ {
+ "start": 51.54,
+ "end": 51.64,
+ "text": "I"
+ },
+ {
+ "start": 51.6,
+ "end": 52.08,
+ "text": "attracted"
+ },
+ {
+ "start": 52.08,
+ "end": 52.18,
+ "text": "to."
+ },
+ {
+ "start": 52.54,
+ "end": 53.14,
+ "text": "What"
+ },
+ {
+ "start": 53.1,
+ "end": 53.26,
+ "text": "I'm"
+ },
+ {
+ "start": 53.24,
+ "end": 53.4,
+ "text": "ben"
+ },
+ {
+ "start": 53.4,
+ "end": 53.72,
+ "text": "always"
+ },
+ {
+ "start": 53.78,
+ "end": 54.28,
+ "text": "interested"
+ },
+ {
+ "start": 54.24,
+ "end": 54.62,
+ "text": "is"
+ },
+ {
+ "start": 54.6,
+ "end": 54.94,
+ "text": "things"
+ },
+ {
+ "start": 55.54,
+ "end": 56.36,
+ "text": "physical"
+ },
+ {
+ "start": 56.34,
+ "end": 56.84,
+ "text": "things"
+ },
+ {
+ "start": 56.8,
+ "end": 56.96,
+ "text": "we"
+ },
+ {
+ "start": 57.02,
+ "end": 57.34,
+ "text": "use"
+ },
+ {
+ "start": 57.3,
+ "end": 57.54,
+ "text": "every"
+ },
+ {
+ "start": 57.52,
+ "end": 57.72,
+ "text": "day"
+ },
+ {
+ "start": 57.7,
+ "end": 57.98,
+ "text": "like"
+ },
+ {
+ "start": 57.94,
+ "end": 58.3,
+ "text": "things"
+ },
+ {
+ "start": 58.28,
+ "end": 58.42,
+ "text": "on"
+ },
+ {
+ "start": 58.4,
+ "end": 58.56,
+ "text": "the"
+ },
+ {
+ "start": 58.52,
+ "end": 59.04,
+ "text": "table"
+ },
+ {
+ "start": 59.04,
+ "end": 59.2,
+ "text": "that"
+ },
+ {
+ "start": 59.18,
+ "end": 59.52,
+ "text": "family"
+ },
+ {
+ "start": 59.5,
+ "end": 59.8,
+ "text": "doesn't"
+ },
+ {
+ "start": 59.78,
+ "end": 59.94,
+ "text": "pay"
+ },
+ {
+ "start": 59.9,
+ "end": 60.3,
+ "text": "attention"
+ },
+ {
+ "start": 60.28,
+ "end": 60.42,
+ "text": "to"
+ },
+ {
+ "start": 60.72,
+ "end": 61.84,
+ "text": "things"
+ },
+ {
+ "start": 61.92,
+ "end": 62.16,
+ "text": "till"
+ },
+ {
+ "start": 62.12,
+ "end": 62.28,
+ "text": "our"
+ },
+ {
+ "start": 62.32,
+ "end": 62.74,
+ "text": "story"
+ },
+ {
+ "start": 62.74,
+ "end": 63.2,
+ "text": "until"
+ },
+ {
+ "start": 63.18,
+ "end": 63.34,
+ "text": "who"
+ },
+ {
+ "start": 63.36,
+ "end": 63.48,
+ "text": "we"
+ },
+ {
+ "start": 63.5,
+ "end": 63.7,
+ "text": "are"
+ },
+ {
+ "start": 63.68,
+ "end": 63.88,
+ "text": "the"
+ },
+ {
+ "start": 63.9,
+ "end": 64.14,
+ "text": "one"
+ },
+ {
+ "start": 64.12,
+ "end": 64.38,
+ "text": "word"
+ },
+ {
+ "start": 64.38,
+ "end": 64.62,
+ "text": "about"
+ },
+ {
+ "start": 64.6,
+ "end": 64.76,
+ "text": "us."
+ },
+ {
+ "start": 64.98,
+ "end": 66.1,
+ "text": "Let"
+ },
+ {
+ "start": 66.08,
+ "end": 66.18,
+ "text": "me"
+ },
+ {
+ "start": 66.22,
+ "end": 66.4,
+ "text": "give"
+ },
+ {
+ "start": 66.36,
+ "end": 66.48,
+ "text": "an"
+ },
+ {
+ "start": 66.44,
+ "end": 66.86,
+ "text": "example."
+ },
+ {
+ "start": 66.82,
+ "end": 68.28,
+ "text": "These"
+ },
+ {
+ "start": 68.24,
+ "end": 68.44,
+ "text": "are"
+ },
+ {
+ "start": 68.4,
+ "end": 68.94,
+ "text": "photographs"
+ },
+ {
+ "start": 69.26,
+ "end": 69.62,
+ "text": "of"
+ },
+ {
+ "start": 69.62,
+ "end": 70,
+ "text": "things."
+ },
+ {
+ "start": 69.96,
+ "end": 70.04,
+ "text": "A"
+ },
+ {
+ "start": 70.14,
+ "end": 70.52,
+ "text": "person"
+ },
+ {
+ "start": 70.5,
+ "end": 70.94,
+ "text": "touched"
+ },
+ {
+ "start": 70.9,
+ "end": 71.76,
+ "text": "doing"
+ },
+ {
+ "start": 71.74,
+ "end": 72.1,
+ "text": "twenty"
+ },
+ {
+ "start": 72.08,
+ "end": 72.26,
+ "text": "four"
+ },
+ {
+ "start": 72.24,
+ "end": 72.5,
+ "text": "hours."
+ },
+ {
+ "start": 72.7,
+ "end": 73.28,
+ "text": "What"
+ },
+ {
+ "start": 73.28,
+ "end": 73.46,
+ "text": "can"
+ },
+ {
+ "start": 73.44,
+ "end": 73.58,
+ "text": "you"
+ },
+ {
+ "start": 73.56,
+ "end": 73.78,
+ "text": "tell"
+ },
+ {
+ "start": 73.74,
+ "end": 74.02,
+ "text": "about"
+ },
+ {
+ "start": 74,
+ "end": 74.26,
+ "text": "him?"
+ },
+ {
+ "start": 74.28,
+ "end": 75.36,
+ "text": "He"
+ },
+ {
+ "start": 75.32,
+ "end": 75.72,
+ "text": "loves"
+ },
+ {
+ "start": 75.68,
+ "end": 75.84,
+ "text": "his"
+ },
+ {
+ "start": 75.88,
+ "end": 76.42,
+ "text": "motorcycle."
+ },
+ {
+ "start": 76.7,
+ "end": 76.78,
+ "text": "A"
+ },
+ {
+ "start": 77.14,
+ "end": 77.78,
+ "text": "biggest"
+ },
+ {
+ "start": 77.84,
+ "end": 78.08,
+ "text": "in"
+ },
+ {
+ "start": 78.06,
+ "end": 78.26,
+ "text": "his"
+ },
+ {
+ "start": 78.28,
+ "end": 78.6,
+ "text": "fiction."
+ },
+ {
+ "start": 79.38,
+ "end": 79.56,
+ "text": "What"
+ },
+ {
+ "start": 79.52,
+ "end": 79.72,
+ "text": "can"
+ },
+ {
+ "start": 79.7,
+ "end": 80,
+ "text": "tell"
+ },
+ {
+ "start": 79.98,
+ "end": 80.22,
+ "text": "about"
+ },
+ {
+ "start": 80.18,
+ "end": 80.36,
+ "text": "this"
+ },
+ {
+ "start": 80.38,
+ "end": 80.56,
+ "text": "girl."
+ },
+ {
+ "start": 81.14,
+ "end": 81.92,
+ "text": "She"
+ },
+ {
+ "start": 81.88,
+ "end": 82.26,
+ "text": "spent"
+ },
+ {
+ "start": 82.26,
+ "end": 82.46,
+ "text": "all"
+ },
+ {
+ "start": 82.44,
+ "end": 82.6,
+ "text": "the"
+ },
+ {
+ "start": 82.64,
+ "end": 82.88,
+ "text": "time"
+ },
+ {
+ "start": 82.84,
+ "end": 83,
+ "text": "on"
+ },
+ {
+ "start": 82.98,
+ "end": 83.12,
+ "text": "the"
+ },
+ {
+ "start": 83.1,
+ "end": 83.38,
+ "text": "beach."
+ },
+ {
+ "start": 83.4,
+ "end": 83.7,
+ "text": "This"
+ },
+ {
+ "start": 83.68,
+ "end": 83.86,
+ "text": "is"
+ },
+ {
+ "start": 83.88,
+ "end": 84.06,
+ "text": "so"
+ },
+ {
+ "start": 84.1,
+ "end": 84.44,
+ "text": "board."
+ },
+ {
+ "start": 84.66,
+ "end": 85.06,
+ "text": "He"
+ },
+ {
+ "start": 85.12,
+ "end": 85.46,
+ "text": "leaves"
+ },
+ {
+ "start": 85.44,
+ "end": 85.6,
+ "text": "by"
+ },
+ {
+ "start": 85.58,
+ "end": 85.74,
+ "text": "the"
+ },
+ {
+ "start": 85.7,
+ "end": 86.02,
+ "text": "sea."
+ },
+ {
+ "start": 87.36,
+ "end": 87.54,
+ "text": "What"
+ },
+ {
+ "start": 87.56,
+ "end": 87.72,
+ "text": "can"
+ },
+ {
+ "start": 87.7,
+ "end": 87.82,
+ "text": "I"
+ },
+ {
+ "start": 87.78,
+ "end": 88.02,
+ "text": "tell"
+ },
+ {
+ "start": 87.98,
+ "end": 88.24,
+ "text": "about"
+ },
+ {
+ "start": 88.2,
+ "end": 88.44,
+ "text": "this"
+ },
+ {
+ "start": 88.44,
+ "end": 88.58,
+ "text": "guy?"
+ },
+ {
+ "start": 89.12,
+ "end": 89.7,
+ "text": "He's"
+ },
+ {
+ "start": 89.74,
+ "end": 89.82,
+ "text": "a"
+ },
+ {
+ "start": 89.9,
+ "end": 90.26,
+ "text": "chef,"
+ },
+ {
+ "start": 90.24,
+ "end": 91.24,
+ "text": "look"
+ },
+ {
+ "start": 91.22,
+ "end": 91.36,
+ "text": "at"
+ },
+ {
+ "start": 91.32,
+ "end": 91.58,
+ "text": "all"
+ },
+ {
+ "start": 91.56,
+ "end": 91.74,
+ "text": "the"
+ },
+ {
+ "start": 91.7,
+ "end": 92.32,
+ "text": "ingredients"
+ },
+ {
+ "start": 92.3,
+ "end": 92.6,
+ "text": "can"
+ },
+ {
+ "start": 92.56,
+ "end": 92.84,
+ "text": "touch"
+ },
+ {
+ "start": 92.82,
+ "end": 93.32,
+ "text": "during"
+ },
+ {
+ "start": 93.28,
+ "end": 93.42,
+ "text": "the"
+ },
+ {
+ "start": 93.42,
+ "end": 93.68,
+ "text": "day"
+ },
+ {
+ "start": 93.7,
+ "end": 93.9,
+ "text": "while"
+ },
+ {
+ "start": 93.86,
+ "end": 94,
+ "text": "he"
+ },
+ {
+ "start": 93.98,
+ "end": 94.14,
+ "text": "was"
+ },
+ {
+ "start": 94.12,
+ "end": 94.6,
+ "text": "preparing"
+ },
+ {
+ "start": 94.56,
+ "end": 94.74,
+ "text": "the"
+ },
+ {
+ "start": 94.72,
+ "end": 95,
+ "text": "food"
+ },
+ {
+ "start": 95.28,
+ "end": 95.46,
+ "text": "and"
+ },
+ {
+ "start": 95.46,
+ "end": 95.98,
+ "text": "computer."
+ },
+ {
+ "start": 96.32,
+ "end": 96.6,
+ "text": "It's"
+ },
+ {
+ "start": 96.58,
+ "end": 96.66,
+ "text": "a"
+ },
+ {
+ "start": 96.66,
+ "end": 97.16,
+ "text": "tiny"
+ },
+ {
+ "start": 97.2,
+ "end": 97.44,
+ "text": "part"
+ },
+ {
+ "start": 97.42,
+ "end": 97.56,
+ "text": "of"
+ },
+ {
+ "start": 97.54,
+ "end": 97.74,
+ "text": "his"
+ },
+ {
+ "start": 97.78,
+ "end": 98.12,
+ "text": "life."
+ },
+ {
+ "start": 98.12,
+ "end": 98.68,
+ "text": "This"
+ },
+ {
+ "start": 98.8,
+ "end": 99.1,
+ "text": "sad"
+ },
+ {
+ "start": 99.42,
+ "end": 99.74,
+ "text": "things"
+ },
+ {
+ "start": 99.74,
+ "end": 99.88,
+ "text": "in"
+ },
+ {
+ "start": 99.86,
+ "end": 100,
+ "text": "the"
+ },
+ {
+ "start": 99.98,
+ "end": 100.28,
+ "text": "corner."
+ },
+ {
+ "start": 100.56,
+ "end": 100.66,
+ "text": "So"
+ },
+ {
+ "start": 101.92,
+ "end": 102.2,
+ "text": "if"
+ },
+ {
+ "start": 102.2,
+ "end": 102.5,
+ "text": "we're"
+ },
+ {
+ "start": 102.48,
+ "end": 102.84,
+ "text": "using"
+ },
+ {
+ "start": 102.8,
+ "end": 103.28,
+ "text": "things"
+ },
+ {
+ "start": 103.68,
+ "end": 103.98,
+ "text": "all"
+ },
+ {
+ "start": 103.98,
+ "end": 104.2,
+ "text": "the"
+ },
+ {
+ "start": 104.16,
+ "end": 104.6,
+ "text": "time"
+ },
+ {
+ "start": 104.56,
+ "end": 104.8,
+ "text": "and"
+ },
+ {
+ "start": 104.76,
+ "end": 104.92,
+ "text": "this"
+ },
+ {
+ "start": 104.9,
+ "end": 105.06,
+ "text": "is"
+ },
+ {
+ "start": 105.04,
+ "end": 105.36,
+ "text": "part"
+ },
+ {
+ "start": 105.34,
+ "end": 105.42,
+ "text": "a"
+ },
+ {
+ "start": 105.46,
+ "end": 105.64,
+ "text": "big"
+ },
+ {
+ "start": 105.62,
+ "end": 105.8,
+ "text": "part"
+ },
+ {
+ "start": 105.78,
+ "end": 105.9,
+ "text": "of"
+ },
+ {
+ "start": 105.86,
+ "end": 106.02,
+ "text": "our"
+ },
+ {
+ "start": 106.04,
+ "end": 106.38,
+ "text": "lives."
+ },
+ {
+ "start": 106.68,
+ "end": 107.14,
+ "text": "Again,"
+ },
+ {
+ "start": 107.12,
+ "end": 107.6,
+ "text": "things"
+ },
+ {
+ "start": 107.68,
+ "end": 108.14,
+ "text": "become"
+ },
+ {
+ "start": 108.64,
+ "end": 108.78,
+ "text": "a"
+ },
+ {
+ "start": 108.8,
+ "end": 109.04,
+ "text": "way"
+ },
+ {
+ "start": 109.06,
+ "end": 109.22,
+ "text": "for"
+ },
+ {
+ "start": 109.2,
+ "end": 109.38,
+ "text": "us"
+ },
+ {
+ "start": 109.44,
+ "end": 109.56,
+ "text": "to"
+ },
+ {
+ "start": 109.56,
+ "end": 110.02,
+ "text": "interact"
+ },
+ {
+ "start": 110,
+ "end": 110.16,
+ "text": "with"
+ },
+ {
+ "start": 110.12,
+ "end": 110.28,
+ "text": "our"
+ },
+ {
+ "start": 110.28,
+ "end": 110.74,
+ "text": "digital"
+ },
+ {
+ "start": 110.7,
+ "end": 111,
+ "text": "life"
+ },
+ {
+ "start": 111.28,
+ "end": 111.38,
+ "text": "in"
+ },
+ {
+ "start": 113.06,
+ "end": 113.22,
+ "text": "the"
+ },
+ {
+ "start": 113.24,
+ "end": 113.64,
+ "text": "world"
+ },
+ {
+ "start": 113.64,
+ "end": 114.32,
+ "text": "become"
+ },
+ {
+ "start": 114.3,
+ "end": 114.54,
+ "text": "your"
+ },
+ {
+ "start": 114.54,
+ "end": 115.12,
+ "text": "interface."
+ },
+ {
+ "start": 115.32,
+ "end": 116.96,
+ "text": "This"
+ },
+ {
+ "start": 116.96,
+ "end": 117.12,
+ "text": "was"
+ },
+ {
+ "start": 117.14,
+ "end": 117.3,
+ "text": "my"
+ },
+ {
+ "start": 117.28,
+ "end": 117.64,
+ "text": "idea."
+ },
+ {
+ "start": 117.84,
+ "end": 118.26,
+ "text": "I've"
+ },
+ {
+ "start": 118.24,
+ "end": 118.42,
+ "text": "been"
+ },
+ {
+ "start": 118.38,
+ "end": 118.68,
+ "text": "working"
+ },
+ {
+ "start": 118.66,
+ "end": 118.82,
+ "text": "for"
+ },
+ {
+ "start": 118.8,
+ "end": 119.22,
+ "text": "twenty"
+ },
+ {
+ "start": 119.22,
+ "end": 119.46,
+ "text": "years"
+ },
+ {
+ "start": 119.44,
+ "end": 119.6,
+ "text": "on"
+ },
+ {
+ "start": 120.22,
+ "end": 120.92,
+ "text": "my"
+ },
+ {
+ "start": 121,
+ "end": 121.32,
+ "text": "idea"
+ },
+ {
+ "start": 121.32,
+ "end": 121.44,
+ "text": "is"
+ },
+ {
+ "start": 121.48,
+ "end": 121.68,
+ "text": "that"
+ },
+ {
+ "start": 122.02,
+ "end": 122.18,
+ "text": "in"
+ },
+ {
+ "start": 122.16,
+ "end": 122.6,
+ "text": "writing"
+ },
+ {
+ "start": 122.56,
+ "end": 122.68,
+ "text": "to"
+ },
+ {
+ "start": 122.66,
+ "end": 123.3,
+ "text": "rouse"
+ },
+ {
+ "start": 123.3,
+ "end": 123.42,
+ "text": "a"
+ },
+ {
+ "start": 123.38,
+ "end": 123.68,
+ "text": "life,"
+ },
+ {
+ "start": 123.74,
+ "end": 123.92,
+ "text": "you"
+ },
+ {
+ "start": 123.9,
+ "end": 124.18,
+ "text": "don't"
+ },
+ {
+ "start": 124.22,
+ "end": 124.46,
+ "text": "need"
+ },
+ {
+ "start": 124.78,
+ "end": 124.94,
+ "text": "to"
+ },
+ {
+ "start": 124.94,
+ "end": 125.14,
+ "text": "have"
+ },
+ {
+ "start": 125.24,
+ "end": 125.74,
+ "text": "screens"
+ },
+ {
+ "start": 125.84,
+ "end": 126.06,
+ "text": "and"
+ },
+ {
+ "start": 126.12,
+ "end": 126.62,
+ "text": "keyboards"
+ },
+ {
+ "start": 126.96,
+ "end": 127.48,
+ "text": "and"
+ },
+ {
+ "start": 127.48,
+ "end": 128.04,
+ "text": "moses"
+ },
+ {
+ "start": 128.52,
+ "end": 128.66,
+ "text": "you"
+ },
+ {
+ "start": 128.66,
+ "end": 128.82,
+ "text": "can"
+ },
+ {
+ "start": 128.78,
+ "end": 129.22,
+ "text": "interact"
+ },
+ {
+ "start": 129.2,
+ "end": 129.4,
+ "text": "with."
+ },
+ {
+ "start": 129.36,
+ "end": 129.66,
+ "text": "You'll"
+ },
+ {
+ "start": 129.74,
+ "end": 129.96,
+ "text": "use"
+ },
+ {
+ "start": 129.96,
+ "end": 130.12,
+ "text": "the"
+ },
+ {
+ "start": 130.1,
+ "end": 130.46,
+ "text": "life"
+ },
+ {
+ "start": 130.76,
+ "end": 130.98,
+ "text": "does"
+ },
+ {
+ "start": 131.04,
+ "end": 131.18,
+ "text": "by"
+ },
+ {
+ "start": 131.2,
+ "end": 131.54,
+ "text": "using"
+ },
+ {
+ "start": 131.5,
+ "end": 132,
+ "text": "things"
+ },
+ {
+ "start": 132.12,
+ "end": 132.32,
+ "text": "you"
+ },
+ {
+ "start": 132.3,
+ "end": 132.56,
+ "text": "use"
+ },
+ {
+ "start": 132.68,
+ "end": 133.02,
+ "text": "every"
+ },
+ {
+ "start": 133.06,
+ "end": 133.2,
+ "text": "day"
+ },
+ {
+ "start": 133.52,
+ "end": 134.16,
+ "text": "and"
+ },
+ {
+ "start": 134.14,
+ "end": 134.26,
+ "text": "to"
+ },
+ {
+ "start": 134.22,
+ "end": 134.6,
+ "text": "realize"
+ },
+ {
+ "start": 134.56,
+ "end": 134.72,
+ "text": "this"
+ },
+ {
+ "start": 134.68,
+ "end": 135.04,
+ "text": "idea"
+ },
+ {
+ "start": 135.02,
+ "end": 135.2,
+ "text": "and"
+ },
+ {
+ "start": 135.16,
+ "end": 135.28,
+ "text": "he"
+ },
+ {
+ "start": 135.26,
+ "end": 135.44,
+ "text": "to"
+ },
+ {
+ "start": 135.42,
+ "end": 135.76,
+ "text": "solve"
+ },
+ {
+ "start": 135.74,
+ "end": 136.1,
+ "text": "three"
+ },
+ {
+ "start": 136.2,
+ "end": 136.44,
+ "text": "big"
+ },
+ {
+ "start": 136.48,
+ "end": 136.84,
+ "text": "challenges."
+ },
+ {
+ "start": 137.08,
+ "end": 137.98,
+ "text": "This"
+ },
+ {
+ "start": 137.96,
+ "end": 138.12,
+ "text": "I"
+ },
+ {
+ "start": 138.12,
+ "end": 138.32,
+ "text": "tell"
+ },
+ {
+ "start": 138.28,
+ "end": 138.42,
+ "text": "you"
+ },
+ {
+ "start": 138.38,
+ "end": 138.6,
+ "text": "about"
+ },
+ {
+ "start": 138.56,
+ "end": 138.78,
+ "text": "them."
+ },
+ {
+ "start": 140.08,
+ "end": 140.64,
+ "text": "The"
+ },
+ {
+ "start": 140.6,
+ "end": 140.92,
+ "text": "first"
+ },
+ {
+ "start": 140.88,
+ "end": 141.22,
+ "text": "one"
+ },
+ {
+ "start": 141.18,
+ "end": 142.68,
+ "text": "obviously"
+ },
+ {
+ "start": 142.72,
+ "end": 142.92,
+ "text": "is"
+ },
+ {
+ "start": 143,
+ "end": 143.16,
+ "text": "it"
+ },
+ {
+ "start": 143.12,
+ "end": 143.36,
+ "text": "even"
+ },
+ {
+ "start": 143.34,
+ "end": 143.76,
+ "text": "possible?"
+ },
+ {
+ "start": 144.04,
+ "end": 144.78,
+ "text": "How"
+ },
+ {
+ "start": 144.78,
+ "end": 144.9,
+ "text": "do"
+ },
+ {
+ "start": 144.9,
+ "end": 145.14,
+ "text": "you"
+ },
+ {
+ "start": 145.1,
+ "end": 145.5,
+ "text": "take"
+ },
+ {
+ "start": 145.46,
+ "end": 145.62,
+ "text": "an"
+ },
+ {
+ "start": 145.66,
+ "end": 146.18,
+ "text": "everyday"
+ },
+ {
+ "start": 146.18,
+ "end": 146.56,
+ "text": "thing"
+ },
+ {
+ "start": 147.04,
+ "end": 147.5,
+ "text": "you"
+ },
+ {
+ "start": 147.46,
+ "end": 147.76,
+ "text": "use"
+ },
+ {
+ "start": 147.72,
+ "end": 147.96,
+ "text": "every"
+ },
+ {
+ "start": 147.94,
+ "end": 148.16,
+ "text": "day"
+ },
+ {
+ "start": 148.16,
+ "end": 148.6,
+ "text": "and"
+ },
+ {
+ "start": 148.58,
+ "end": 148.9,
+ "text": "turn"
+ },
+ {
+ "start": 148.9,
+ "end": 149.04,
+ "text": "it"
+ },
+ {
+ "start": 149.02,
+ "end": 149.58,
+ "text": "and"
+ },
+ {
+ "start": 149.54,
+ "end": 150.04,
+ "text": "computing"
+ },
+ {
+ "start": 150,
+ "end": 150.16,
+ "text": "the"
+ },
+ {
+ "start": 150.14,
+ "end": 150.38,
+ "text": "face."
+ },
+ {
+ "start": 150.66,
+ "end": 151.7,
+ "text": "Now,"
+ },
+ {
+ "start": 151.68,
+ "end": 151.76,
+ "text": "I"
+ },
+ {
+ "start": 151.8,
+ "end": 152,
+ "text": "was"
+ },
+ {
+ "start": 151.98,
+ "end": 152.52,
+ "text": "inspired"
+ },
+ {
+ "start": 152.5,
+ "end": 152.62,
+ "text": "by"
+ },
+ {
+ "start": 152.58,
+ "end": 152.78,
+ "text": "the"
+ },
+ {
+ "start": 152.74,
+ "end": 152.96,
+ "text": "book"
+ },
+ {
+ "start": 152.98,
+ "end": 153.38,
+ "text": "hackers."
+ },
+ {
+ "start": 153.46,
+ "end": 153.6,
+ "text": "I"
+ },
+ {
+ "start": 153.58,
+ "end": 153.78,
+ "text": "read"
+ },
+ {
+ "start": 153.76,
+ "end": 153.9,
+ "text": "when"
+ },
+ {
+ "start": 153.88,
+ "end": 153.96,
+ "text": "I"
+ },
+ {
+ "start": 153.94,
+ "end": 154.1,
+ "text": "was"
+ },
+ {
+ "start": 154.06,
+ "end": 154.14,
+ "text": "a"
+ },
+ {
+ "start": 154.16,
+ "end": 154.58,
+ "text": "teenager"
+ },
+ {
+ "start": 154.88,
+ "end": 155.38,
+ "text": "and"
+ },
+ {
+ "start": 155.34,
+ "end": 155.5,
+ "text": "the"
+ },
+ {
+ "start": 155.5,
+ "end": 155.86,
+ "text": "central"
+ },
+ {
+ "start": 155.84,
+ "end": 156.18,
+ "text": "idea"
+ },
+ {
+ "start": 156.16,
+ "end": 156.28,
+ "text": "of"
+ },
+ {
+ "start": 156.28,
+ "end": 156.44,
+ "text": "this"
+ },
+ {
+ "start": 156.46,
+ "end": 156.7,
+ "text": "book,"
+ },
+ {
+ "start": 157.08,
+ "end": 157.46,
+ "text": "one"
+ },
+ {
+ "start": 157.42,
+ "end": 157.56,
+ "text": "of"
+ },
+ {
+ "start": 157.54,
+ "end": 157.68,
+ "text": "the"
+ },
+ {
+ "start": 157.64,
+ "end": 158.06,
+ "text": "essential"
+ },
+ {
+ "start": 158.02,
+ "end": 158.32,
+ "text": "ideas"
+ },
+ {
+ "start": 158.32,
+ "end": 158.46,
+ "text": "of"
+ },
+ {
+ "start": 158.42,
+ "end": 158.58,
+ "text": "this"
+ },
+ {
+ "start": 158.58,
+ "end": 158.82,
+ "text": "book"
+ },
+ {
+ "start": 159.32,
+ "end": 159.5,
+ "text": "is"
+ },
+ {
+ "start": 159.52,
+ "end": 159.68,
+ "text": "that"
+ },
+ {
+ "start": 160.08,
+ "end": 160.38,
+ "text": "you"
+ },
+ {
+ "start": 160.36,
+ "end": 160.56,
+ "text": "can"
+ },
+ {
+ "start": 160.54,
+ "end": 160.98,
+ "text": "change"
+ },
+ {
+ "start": 160.94,
+ "end": 161.18,
+ "text": "the"
+ },
+ {
+ "start": 161.16,
+ "end": 161.68,
+ "text": "purpose"
+ },
+ {
+ "start": 161.64,
+ "end": 161.82,
+ "text": "of"
+ },
+ {
+ "start": 161.82,
+ "end": 162.24,
+ "text": "things"
+ },
+ {
+ "start": 162.22,
+ "end": 162.7,
+ "text": "by"
+ },
+ {
+ "start": 162.68,
+ "end": 163.32,
+ "text": "inventing"
+ },
+ {
+ "start": 163.3,
+ "end": 163.5,
+ "text": "it"
+ },
+ {
+ "start": 163.72,
+ "end": 163.9,
+ "text": "now"
+ },
+ {
+ "start": 163.98,
+ "end": 164.42,
+ "text": "than"
+ },
+ {
+ "start": 164.38,
+ "end": 164.84,
+ "text": "hacking"
+ },
+ {
+ "start": 164.82,
+ "end": 165.02,
+ "text": "to"
+ },
+ {
+ "start": 164.98,
+ "end": 165.24,
+ "text": "things"
+ },
+ {
+ "start": 165.44,
+ "end": 166.08,
+ "text": "and"
+ },
+ {
+ "start": 166.04,
+ "end": 166.42,
+ "text": "changing"
+ },
+ {
+ "start": 166.4,
+ "end": 166.64,
+ "text": "them."
+ },
+ {
+ "start": 166.62,
+ "end": 167.28,
+ "text": "So"
+ },
+ {
+ "start": 167.24,
+ "end": 167.32,
+ "text": "I"
+ },
+ {
+ "start": 167.38,
+ "end": 167.56,
+ "text": "been"
+ },
+ {
+ "start": 167.6,
+ "end": 168.02,
+ "text": "thinking"
+ },
+ {
+ "start": 168.32,
+ "end": 168.52,
+ "text": "what"
+ },
+ {
+ "start": 168.54,
+ "end": 168.74,
+ "text": "kind"
+ },
+ {
+ "start": 168.72,
+ "end": 168.86,
+ "text": "of"
+ },
+ {
+ "start": 168.84,
+ "end": 169,
+ "text": "the"
+ },
+ {
+ "start": 169.1,
+ "end": 169.56,
+ "text": "nose"
+ },
+ {
+ "start": 169.52,
+ "end": 169.7,
+ "text": "can"
+ },
+ {
+ "start": 169.72,
+ "end": 170.14,
+ "text": "invent"
+ },
+ {
+ "start": 170.46,
+ "end": 170.56,
+ "text": "so"
+ },
+ {
+ "start": 171.44,
+ "end": 171.64,
+ "text": "they"
+ },
+ {
+ "start": 171.64,
+ "end": 171.8,
+ "text": "can"
+ },
+ {
+ "start": 172.16,
+ "end": 172.44,
+ "text": "hack"
+ },
+ {
+ "start": 172.42,
+ "end": 172.7,
+ "text": "into"
+ },
+ {
+ "start": 172.68,
+ "end": 173.04,
+ "text": "things"
+ },
+ {
+ "start": 173.46,
+ "end": 174.16,
+ "text": "use"
+ },
+ {
+ "start": 174.14,
+ "end": 174.36,
+ "text": "every"
+ },
+ {
+ "start": 174.36,
+ "end": 174.58,
+ "text": "day"
+ },
+ {
+ "start": 174.64,
+ "end": 175.54,
+ "text": "and"
+ },
+ {
+ "start": 175.52,
+ "end": 175.72,
+ "text": "make"
+ },
+ {
+ "start": 175.7,
+ "end": 175.88,
+ "text": "them"
+ },
+ {
+ "start": 175.84,
+ "end": 176.36,
+ "text": "interactive."
+ },
+ {
+ "start": 176.58,
+ "end": 176.68,
+ "text": "So"
+ },
+ {
+ "start": 177.82,
+ "end": 178.02,
+ "text": "when"
+ },
+ {
+ "start": 178,
+ "end": 178.08,
+ "text": "I"
+ },
+ {
+ "start": 178.06,
+ "end": 178.24,
+ "text": "was"
+ },
+ {
+ "start": 178.2,
+ "end": 178.52,
+ "text": "looking"
+ },
+ {
+ "start": 178.48,
+ "end": 178.62,
+ "text": "at"
+ },
+ {
+ "start": 178.58,
+ "end": 179.14,
+ "text": "dead"
+ },
+ {
+ "start": 179.18,
+ "end": 179.5,
+ "text": "vented"
+ },
+ {
+ "start": 179.54,
+ "end": 179.96,
+ "text": "sensor"
+ },
+ {
+ "start": 180.24,
+ "end": 180.54,
+ "text": "which"
+ },
+ {
+ "start": 180.5,
+ "end": 181.02,
+ "text": "injects"
+ },
+ {
+ "start": 180.98,
+ "end": 181.6,
+ "text": "structure,"
+ },
+ {
+ "start": 181.56,
+ "end": 182.06,
+ "text": "political"
+ },
+ {
+ "start": 182.1,
+ "end": 182.44,
+ "text": "fields"
+ },
+ {
+ "start": 182.44,
+ "end": 182.72,
+ "text": "into"
+ },
+ {
+ "start": 182.7,
+ "end": 183.14,
+ "text": "objects"
+ },
+ {
+ "start": 183.34,
+ "end": 183.68,
+ "text": "and"
+ },
+ {
+ "start": 183.66,
+ "end": 183.92,
+ "text": "till"
+ },
+ {
+ "start": 183.96,
+ "end": 184.08,
+ "text": "the"
+ },
+ {
+ "start": 184.06,
+ "end": 184.58,
+ "text": "ingestion"
+ },
+ {
+ "start": 184.56,
+ "end": 184.74,
+ "text": "to"
+ },
+ {
+ "start": 184.74,
+ "end": 185.08,
+ "text": "faces."
+ },
+ {
+ "start": 185.34,
+ "end": 185.48,
+ "text": "So"
+ },
+ {
+ "start": 185.48,
+ "end": 185.64,
+ "text": "this"
+ },
+ {
+ "start": 185.72,
+ "end": 186.02,
+ "text": "door"
+ },
+ {
+ "start": 186,
+ "end": 186.56,
+ "text": "knob"
+ },
+ {
+ "start": 186.54,
+ "end": 187.28,
+ "text": "unmodified"
+ },
+ {
+ "start": 187.58,
+ "end": 187.92,
+ "text": "can"
+ },
+ {
+ "start": 187.92,
+ "end": 188.22,
+ "text": "become"
+ },
+ {
+ "start": 188.18,
+ "end": 188.26,
+ "text": "a"
+ },
+ {
+ "start": 188.26,
+ "end": 188.64,
+ "text": "disco"
+ },
+ {
+ "start": 188.62,
+ "end": 189.02,
+ "text": "sensors"
+ },
+ {
+ "start": 189.1,
+ "end": 189.3,
+ "text": "can"
+ },
+ {
+ "start": 189.26,
+ "end": 189.42,
+ "text": "know"
+ },
+ {
+ "start": 189.4,
+ "end": 189.66,
+ "text": "how"
+ },
+ {
+ "start": 189.64,
+ "end": 189.82,
+ "text": "you"
+ },
+ {
+ "start": 189.8,
+ "end": 190.16,
+ "text": "touching"
+ },
+ {
+ "start": 190.22,
+ "end": 190.38,
+ "text": "can"
+ },
+ {
+ "start": 190.44,
+ "end": 190.66,
+ "text": "feel"
+ },
+ {
+ "start": 190.72,
+ "end": 190.82,
+ "text": "it"
+ },
+ {
+ "start": 191.48,
+ "end": 191.68,
+ "text": "in"
+ },
+ {
+ "start": 191.8,
+ "end": 191.96,
+ "text": "a"
+ },
+ {
+ "start": 192.02,
+ "end": 192.36,
+ "text": "circle."
+ },
+ {
+ "start": 193.1,
+ "end": 193.48,
+ "text": "We"
+ },
+ {
+ "start": 193.44,
+ "end": 193.62,
+ "text": "can"
+ },
+ {
+ "start": 193.62,
+ "end": 193.72,
+ "text": "a"
+ },
+ {
+ "start": 193.7,
+ "end": 193.96,
+ "text": "graph"
+ },
+ {
+ "start": 194.48,
+ "end": 195.5,
+ "text": "and"
+ },
+ {
+ "start": 195.46,
+ "end": 195.64,
+ "text": "this"
+ },
+ {
+ "start": 195.62,
+ "end": 196.08,
+ "text": "loop"
+ },
+ {
+ "start": 196.06,
+ "end": 196.18,
+ "text": "is"
+ },
+ {
+ "start": 196.18,
+ "end": 196.28,
+ "text": "a"
+ },
+ {
+ "start": 196.3,
+ "end": 196.88,
+ "text": "modified."
+ },
+ {
+ "start": 196.86,
+ "end": 197.2,
+ "text": "There's"
+ },
+ {
+ "start": 197.16,
+ "end": 197.44,
+ "text": "nothing"
+ },
+ {
+ "start": 197.4,
+ "end": 197.62,
+ "text": "about"
+ },
+ {
+ "start": 197.58,
+ "end": 197.92,
+ "text": "special"
+ },
+ {
+ "start": 197.9,
+ "end": 198.14,
+ "text": "about"
+ },
+ {
+ "start": 198.16,
+ "end": 198.88,
+ "text": "dooms"
+ },
+ {
+ "start": 198.88,
+ "end": 199.36,
+ "text": "anything"
+ },
+ {
+ "start": 199.32,
+ "end": 199.5,
+ "text": "can"
+ },
+ {
+ "start": 199.5,
+ "end": 199.8,
+ "text": "become"
+ },
+ {
+ "start": 199.76,
+ "end": 200.32,
+ "text": "interactive."
+ },
+ {
+ "start": 200.52,
+ "end": 200.88,
+ "text": "What's"
+ },
+ {
+ "start": 200.84,
+ "end": 201.12,
+ "text": "about"
+ },
+ {
+ "start": 201.16,
+ "end": 201.58,
+ "text": "plants?"
+ },
+ {
+ "start": 202.78,
+ "end": 203.06,
+ "text": "So"
+ },
+ {
+ "start": 203.02,
+ "end": 203.18,
+ "text": "the"
+ },
+ {
+ "start": 203.2,
+ "end": 203.56,
+ "text": "plants"
+ },
+ {
+ "start": 203.56,
+ "end": 203.72,
+ "text": "are"
+ },
+ {
+ "start": 203.68,
+ "end": 204.14,
+ "text": "interesting"
+ },
+ {
+ "start": 204.12,
+ "end": 204.44,
+ "text": "because"
+ },
+ {
+ "start": 204.4,
+ "end": 204.6,
+ "text": "with"
+ },
+ {
+ "start": 204.6,
+ "end": 204.9,
+ "text": "plants"
+ },
+ {
+ "start": 204.88,
+ "end": 205.02,
+ "text": "the"
+ },
+ {
+ "start": 204.98,
+ "end": 205.46,
+ "text": "connection"
+ },
+ {
+ "start": 205.44,
+ "end": 205.66,
+ "text": "know"
+ },
+ {
+ "start": 205.74,
+ "end": 205.96,
+ "text": "where"
+ },
+ {
+ "start": 205.92,
+ "end": 206.16,
+ "text": "you're"
+ },
+ {
+ "start": 206.12,
+ "end": 206.48,
+ "text": "touching,"
+ },
+ {
+ "start": 206.44,
+ "end": 206.62,
+ "text": "you"
+ },
+ {
+ "start": 206.62,
+ "end": 206.8,
+ "text": "see"
+ },
+ {
+ "start": 206.76,
+ "end": 206.92,
+ "text": "the"
+ },
+ {
+ "start": 206.9,
+ "end": 207.24,
+ "text": "line"
+ },
+ {
+ "start": 207.22,
+ "end": 207.5,
+ "text": "moving"
+ },
+ {
+ "start": 207.46,
+ "end": 207.64,
+ "text": "up"
+ },
+ {
+ "start": 207.62,
+ "end": 207.8,
+ "text": "and"
+ },
+ {
+ "start": 207.78,
+ "end": 207.98,
+ "text": "down"
+ },
+ {
+ "start": 208,
+ "end": 208.16,
+ "text": "on"
+ },
+ {
+ "start": 208.14,
+ "end": 208.28,
+ "text": "the"
+ },
+ {
+ "start": 208.24,
+ "end": 208.56,
+ "text": "image"
+ },
+ {
+ "start": 208.8,
+ "end": 209.4,
+ "text": "and"
+ },
+ {
+ "start": 209.36,
+ "end": 209.54,
+ "text": "that"
+ },
+ {
+ "start": 209.54,
+ "end": 209.76,
+ "text": "in"
+ },
+ {
+ "start": 209.78,
+ "end": 210.06,
+ "text": "turn"
+ },
+ {
+ "start": 210.04,
+ "end": 210.18,
+ "text": "to"
+ },
+ {
+ "start": 210.16,
+ "end": 210.3,
+ "text": "the"
+ },
+ {
+ "start": 210.26,
+ "end": 210.56,
+ "text": "musical"
+ },
+ {
+ "start": 210.52,
+ "end": 210.94,
+ "text": "interface."
+ },
+ {
+ "start": 215.36,
+ "end": 216.66,
+ "text": "Now,"
+ },
+ {
+ "start": 216.62,
+ "end": 217.02,
+ "text": "we"
+ },
+ {
+ "start": 217,
+ "end": 217.34,
+ "text": "do"
+ },
+ {
+ "start": 217.44,
+ "end": 217.82,
+ "text": "have"
+ },
+ {
+ "start": 217.78,
+ "end": 218.16,
+ "text": "also"
+ },
+ {
+ "start": 218.14,
+ "end": 218.26,
+ "text": "a"
+ },
+ {
+ "start": 218.3,
+ "end": 218.74,
+ "text": "practical"
+ },
+ {
+ "start": 218.72,
+ "end": 219.28,
+ "text": "applications,"
+ },
+ {
+ "start": 219.56,
+ "end": 219.64,
+ "text": "a"
+ },
+ {
+ "start": 219.9,
+ "end": 220.44,
+ "text": "calendar"
+ },
+ {
+ "start": 220.4,
+ "end": 221.36,
+ "text": "plans"
+ },
+ {
+ "start": 221.34,
+ "end": 221.52,
+ "text": "for"
+ },
+ {
+ "start": 221.5,
+ "end": 221.8,
+ "text": "those"
+ },
+ {
+ "start": 222.4,
+ "end": 222.56,
+ "text": "who"
+ },
+ {
+ "start": 222.58,
+ "end": 223.1,
+ "text": "obsessed"
+ },
+ {
+ "start": 223.08,
+ "end": 223.38,
+ "text": "about"
+ },
+ {
+ "start": 223.4,
+ "end": 224.06,
+ "text": "partiality."
+ },
+ {
+ "start": 227.38,
+ "end": 227.48,
+ "text": "We"
+ },
+ {
+ "start": 228.22,
+ "end": 228.42,
+ "text": "can"
+ },
+ {
+ "start": 228.4,
+ "end": 228.8,
+ "text": "give"
+ },
+ {
+ "start": 228.76,
+ "end": 230.48,
+ "text": "seeing"
+ },
+ {
+ "start": 230.46,
+ "end": 230.62,
+ "text": "a"
+ },
+ {
+ "start": 230.6,
+ "end": 231.32,
+ "text": "personality."
+ },
+ {
+ "start": 231.3,
+ "end": 233.26,
+ "text": "So"
+ },
+ {
+ "start": 233.26,
+ "end": 233.42,
+ "text": "in"
+ },
+ {
+ "start": 233.42,
+ "end": 233.6,
+ "text": "this"
+ },
+ {
+ "start": 233.6,
+ "end": 234.02,
+ "text": "particular"
+ },
+ {
+ "start": 233.98,
+ "end": 234.46,
+ "text": "example,"
+ },
+ {
+ "start": 234.44,
+ "end": 236.12,
+ "text": "the"
+ },
+ {
+ "start": 236.16,
+ "end": 236.44,
+ "text": "or"
+ },
+ {
+ "start": 236.42,
+ "end": 237.82,
+ "text": "kids"
+ },
+ {
+ "start": 237.8,
+ "end": 237.98,
+ "text": "can"
+ },
+ {
+ "start": 238,
+ "end": 238.56,
+ "text": "communicate"
+ },
+ {
+ "start": 238.56,
+ "end": 238.74,
+ "text": "to"
+ },
+ {
+ "start": 238.72,
+ "end": 238.86,
+ "text": "you"
+ },
+ {
+ "start": 238.96,
+ "end": 239.24,
+ "text": "through"
+ },
+ {
+ "start": 239.26,
+ "end": 239.72,
+ "text": "images"
+ },
+ {
+ "start": 240.84,
+ "end": 241.04,
+ "text": "and"
+ },
+ {
+ "start": 241.08,
+ "end": 241.46,
+ "text": "sounds"
+ },
+ {
+ "start": 242.26,
+ "end": 242.42,
+ "text": "it"
+ },
+ {
+ "start": 242.4,
+ "end": 242.72,
+ "text": "doesn't"
+ },
+ {
+ "start": 242.7,
+ "end": 242.9,
+ "text": "like"
+ },
+ {
+ "start": 242.9,
+ "end": 243.04,
+ "text": "to"
+ },
+ {
+ "start": 243.02,
+ "end": 243.16,
+ "text": "be"
+ },
+ {
+ "start": 243.12,
+ "end": 243.42,
+ "text": "touched,"
+ },
+ {
+ "start": 243.52,
+ "end": 243.92,
+ "text": "create"
+ },
+ {
+ "start": 243.9,
+ "end": 244.42,
+ "text": "electrical,"
+ },
+ {
+ "start": 244.42,
+ "end": 244.78,
+ "text": "usual"
+ },
+ {
+ "start": 244.88,
+ "end": 245.24,
+ "text": "heating"
+ },
+ {
+ "start": 245.2,
+ "end": 245.38,
+ "text": "as"
+ },
+ {
+ "start": 245.36,
+ "end": 245.48,
+ "text": "you."
+ },
+ {
+ "start": 248.3,
+ "end": 248.86,
+ "text": "We"
+ },
+ {
+ "start": 248.84,
+ "end": 249,
+ "text": "can"
+ },
+ {
+ "start": 248.98,
+ "end": 249.22,
+ "text": "also"
+ },
+ {
+ "start": 249.22,
+ "end": 249.38,
+ "text": "give"
+ },
+ {
+ "start": 249.34,
+ "end": 249.88,
+ "text": "this"
+ },
+ {
+ "start": 249.92,
+ "end": 250.22,
+ "text": "man."
+ },
+ {
+ "start": 250.18,
+ "end": 250.34,
+ "text": "For"
+ },
+ {
+ "start": 250.3,
+ "end": 250.74,
+ "text": "example"
+ },
+ {
+ "start": 250.8,
+ "end": 251,
+ "text": "is"
+ },
+ {
+ "start": 252.08,
+ "end": 252.28,
+ "text": "is"
+ },
+ {
+ "start": 252.26,
+ "end": 252.46,
+ "text": "more"
+ },
+ {
+ "start": 252.44,
+ "end": 252.58,
+ "text": "a"
+ },
+ {
+ "start": 252.56,
+ "end": 252.82,
+ "text": "bus"
+ },
+ {
+ "start": 252.78,
+ "end": 253.06,
+ "text": "to"
+ },
+ {
+ "start": 253.06,
+ "end": 253.26,
+ "text": "take"
+ },
+ {
+ "start": 253.3,
+ "end": 253.62,
+ "text": "once"
+ },
+ {
+ "start": 253.6,
+ "end": 253.74,
+ "text": "and"
+ },
+ {
+ "start": 253.7,
+ "end": 253.9,
+ "text": "it's"
+ },
+ {
+ "start": 253.88,
+ "end": 254.12,
+ "text": "like"
+ },
+ {
+ "start": 254.12,
+ "end": 254.5,
+ "text": "playing"
+ },
+ {
+ "start": 254.5,
+ "end": 254.7,
+ "text": "out"
+ },
+ {
+ "start": 254.7,
+ "end": 255.16,
+ "text": "engages"
+ },
+ {
+ "start": 255.2,
+ "end": 255.36,
+ "text": "you"
+ },
+ {
+ "start": 256.12,
+ "end": 256.28,
+ "text": "so"
+ },
+ {
+ "start": 256.28,
+ "end": 256.84,
+ "text": "everything"
+ },
+ {
+ "start": 256.88,
+ "end": 257.06,
+ "text": "can"
+ },
+ {
+ "start": 257.04,
+ "end": 257.18,
+ "text": "be"
+ },
+ {
+ "start": 257.16,
+ "end": 257.56,
+ "text": "different"
+ },
+ {
+ "start": 257.72,
+ "end": 258.1,
+ "text": "and"
+ },
+ {
+ "start": 258.06,
+ "end": 258.54,
+ "text": "everything"
+ },
+ {
+ "start": 258.52,
+ "end": 258.72,
+ "text": "can"
+ },
+ {
+ "start": 258.8,
+ "end": 258.94,
+ "text": "be"
+ },
+ {
+ "start": 259.02,
+ "end": 260.42,
+ "text": "represent"
+ },
+ {
+ "start": 260.4,
+ "end": 260.56,
+ "text": "what"
+ },
+ {
+ "start": 260.52,
+ "end": 260.66,
+ "text": "I"
+ },
+ {
+ "start": 260.9,
+ "end": 261.12,
+ "text": "feel."
+ },
+ {
+ "start": 261.42,
+ "end": 261.52,
+ "text": "So"
+ },
+ {
+ "start": 262.98,
+ "end": 263.84,
+ "text": "everything"
+ },
+ {
+ "start": 263.82,
+ "end": 263.98,
+ "text": "can"
+ },
+ {
+ "start": 263.96,
+ "end": 264.14,
+ "text": "be"
+ },
+ {
+ "start": 264.12,
+ "end": 264.4,
+ "text": "hacked"
+ },
+ {
+ "start": 264.48,
+ "end": 265,
+ "text": "all"
+ },
+ {
+ "start": 264.96,
+ "end": 265.12,
+ "text": "of"
+ },
+ {
+ "start": 265.1,
+ "end": 265.32,
+ "text": "things"
+ },
+ {
+ "start": 265.28,
+ "end": 265.78,
+ "text": "including"
+ },
+ {
+ "start": 265.76,
+ "end": 265.94,
+ "text": "your"
+ },
+ {
+ "start": 265.92,
+ "end": 266.18,
+ "text": "body."
+ },
+ {
+ "start": 266.46,
+ "end": 266.9,
+ "text": "In"
+ },
+ {
+ "start": 266.98,
+ "end": 267.18,
+ "text": "this"
+ },
+ {
+ "start": 267.14,
+ "end": 267.64,
+ "text": "example,"
+ },
+ {
+ "start": 267.6,
+ "end": 267.74,
+ "text": "we"
+ },
+ {
+ "start": 267.78,
+ "end": 268.42,
+ "text": "have"
+ },
+ {
+ "start": 268.42,
+ "end": 268.92,
+ "text": "your"
+ },
+ {
+ "start": 268.92,
+ "end": 269.2,
+ "text": "body"
+ },
+ {
+ "start": 269.16,
+ "end": 269.36,
+ "text": "so"
+ },
+ {
+ "start": 269.36,
+ "end": 269.5,
+ "text": "you"
+ },
+ {
+ "start": 269.5,
+ "end": 269.66,
+ "text": "can"
+ },
+ {
+ "start": 269.66,
+ "end": 270.02,
+ "text": "measure"
+ },
+ {
+ "start": 269.98,
+ "end": 270.16,
+ "text": "how"
+ },
+ {
+ "start": 270.14,
+ "end": 270.3,
+ "text": "you"
+ },
+ {
+ "start": 270.34,
+ "end": 270.6,
+ "text": "fold"
+ },
+ {
+ "start": 270.58,
+ "end": 270.72,
+ "text": "in"
+ },
+ {
+ "start": 270.7,
+ "end": 270.9,
+ "text": "your"
+ },
+ {
+ "start": 270.88,
+ "end": 271.18,
+ "text": "hands"
+ },
+ {
+ "start": 271.44,
+ "end": 272,
+ "text": "and"
+ },
+ {
+ "start": 271.96,
+ "end": 272.14,
+ "text": "they"
+ },
+ {
+ "start": 272.1,
+ "end": 272.5,
+ "text": "using"
+ },
+ {
+ "start": 272.46,
+ "end": 272.66,
+ "text": "your"
+ },
+ {
+ "start": 272.66,
+ "end": 272.92,
+ "text": "hand"
+ },
+ {
+ "start": 272.94,
+ "end": 273.3,
+ "text": "jesus"
+ },
+ {
+ "start": 273.28,
+ "end": 273.42,
+ "text": "to"
+ },
+ {
+ "start": 273.4,
+ "end": 273.82,
+ "text": "control"
+ },
+ {
+ "start": 273.84,
+ "end": 274.2,
+ "text": "something"
+ },
+ {
+ "start": 274.16,
+ "end": 274.36,
+ "text": "else."
+ },
+ {
+ "start": 274.34,
+ "end": 274.48,
+ "text": "So"
+ },
+ {
+ "start": 274.46,
+ "end": 274.6,
+ "text": "if"
+ },
+ {
+ "start": 274.56,
+ "end": 274.7,
+ "text": "you"
+ },
+ {
+ "start": 274.68,
+ "end": 274.88,
+ "text": "don't"
+ },
+ {
+ "start": 274.86,
+ "end": 275.02,
+ "text": "want"
+ },
+ {
+ "start": 274.98,
+ "end": 275.1,
+ "text": "to"
+ },
+ {
+ "start": 275.06,
+ "end": 275.34,
+ "text": "listen"
+ },
+ {
+ "start": 275.3,
+ "end": 275.46,
+ "text": "to"
+ },
+ {
+ "start": 275.44,
+ "end": 275.7,
+ "text": "music"
+ },
+ {
+ "start": 275.9,
+ "end": 276.48,
+ "text": "for"
+ },
+ {
+ "start": 276.46,
+ "end": 276.94,
+ "text": "thousands"
+ },
+ {
+ "start": 276.9,
+ "end": 277.06,
+ "text": "of"
+ },
+ {
+ "start": 277.02,
+ "end": 277.3,
+ "text": "time,"
+ },
+ {
+ "start": 277.28,
+ "end": 277.46,
+ "text": "just"
+ },
+ {
+ "start": 277.42,
+ "end": 277.72,
+ "text": "simply"
+ },
+ {
+ "start": 277.68,
+ "end": 277.88,
+ "text": "can"
+ },
+ {
+ "start": 277.94,
+ "end": 278.22,
+ "text": "cover"
+ },
+ {
+ "start": 278.18,
+ "end": 278.36,
+ "text": "your"
+ },
+ {
+ "start": 278.34,
+ "end": 278.54,
+ "text": "ears"
+ },
+ {
+ "start": 278.9,
+ "end": 279,
+ "text": "to"
+ },
+ {
+ "start": 279.62,
+ "end": 279.92,
+ "text": "turn"
+ },
+ {
+ "start": 279.9,
+ "end": 280.02,
+ "text": "it"
+ },
+ {
+ "start": 280,
+ "end": 280.18,
+ "text": "off."
+ },
+ {
+ "start": 280.16,
+ "end": 280.98,
+ "text": "So"
+ },
+ {
+ "start": 281.02,
+ "end": 281.42,
+ "text": "everything"
+ },
+ {
+ "start": 281.38,
+ "end": 281.54,
+ "text": "can"
+ },
+ {
+ "start": 281.62,
+ "end": 281.72,
+ "text": "be"
+ },
+ {
+ "start": 281.7,
+ "end": 281.98,
+ "text": "hacked"
+ },
+ {
+ "start": 282.28,
+ "end": 282.46,
+ "text": "and"
+ },
+ {
+ "start": 282.42,
+ "end": 282.82,
+ "text": "research"
+ },
+ {
+ "start": 282.78,
+ "end": 282.92,
+ "text": "is"
+ },
+ {
+ "start": 282.9,
+ "end": 283.34,
+ "text": "important."
+ },
+ {
+ "start": 283.8,
+ "end": 284.1,
+ "text": "But"
+ },
+ {
+ "start": 284.06,
+ "end": 284.36,
+ "text": "the"
+ },
+ {
+ "start": 284.42,
+ "end": 284.74,
+ "text": "second"
+ },
+ {
+ "start": 284.72,
+ "end": 285.08,
+ "text": "one"
+ },
+ {
+ "start": 285.04,
+ "end": 285.16,
+ "text": "we"
+ },
+ {
+ "start": 285.2,
+ "end": 285.5,
+ "text": "have"
+ },
+ {
+ "start": 286.02,
+ "end": 286.26,
+ "text": "is"
+ },
+ {
+ "start": 286.76,
+ "end": 286.94,
+ "text": "how"
+ },
+ {
+ "start": 286.94,
+ "end": 287.12,
+ "text": "can"
+ },
+ {
+ "start": 287.12,
+ "end": 287.24,
+ "text": "we"
+ },
+ {
+ "start": 287.26,
+ "end": 287.38,
+ "text": "go"
+ },
+ {
+ "start": 287.54,
+ "end": 287.76,
+ "text": "from"
+ },
+ {
+ "start": 287.78,
+ "end": 288.88,
+ "text": "rand"
+ },
+ {
+ "start": 288.88,
+ "end": 289.04,
+ "text": "and"
+ },
+ {
+ "start": 289.04,
+ "end": 289.88,
+ "text": "props"
+ },
+ {
+ "start": 289.86,
+ "end": 290.02,
+ "text": "to"
+ },
+ {
+ "start": 290,
+ "end": 290.34,
+ "text": "real"
+ },
+ {
+ "start": 290.36,
+ "end": 290.76,
+ "text": "products."
+ },
+ {
+ "start": 290.86,
+ "end": 291.04,
+ "text": "How"
+ },
+ {
+ "start": 291.04,
+ "end": 291.22,
+ "text": "can"
+ },
+ {
+ "start": 291.2,
+ "end": 291.34,
+ "text": "I"
+ },
+ {
+ "start": 291.32,
+ "end": 291.5,
+ "text": "make"
+ },
+ {
+ "start": 291.46,
+ "end": 291.54,
+ "text": "a"
+ },
+ {
+ "start": 291.58,
+ "end": 291.9,
+ "text": "real"
+ },
+ {
+ "start": 292.02,
+ "end": 292.34,
+ "text": "thing"
+ },
+ {
+ "start": 292.62,
+ "end": 293.4,
+ "text": "that"
+ },
+ {
+ "start": 293.38,
+ "end": 293.58,
+ "text": "are"
+ },
+ {
+ "start": 293.56,
+ "end": 293.92,
+ "text": "also"
+ },
+ {
+ "start": 293.94,
+ "end": 294.46,
+ "text": "interfaces"
+ },
+ {
+ "start": 295.52,
+ "end": 296.26,
+ "text": "and"
+ },
+ {
+ "start": 296.24,
+ "end": 296.38,
+ "text": "you"
+ },
+ {
+ "start": 296.36,
+ "end": 296.54,
+ "text": "may"
+ },
+ {
+ "start": 296.56,
+ "end": 296.82,
+ "text": "ask"
+ },
+ {
+ "start": 296.8,
+ "end": 297.18,
+ "text": "yourself"
+ },
+ {
+ "start": 297.48,
+ "end": 297.66,
+ "text": "who"
+ },
+ {
+ "start": 297.66,
+ "end": 297.86,
+ "text": "do"
+ },
+ {
+ "start": 297.84,
+ "end": 298.14,
+ "text": "this"
+ },
+ {
+ "start": 298.4,
+ "end": 299.1,
+ "text": "cynical"
+ },
+ {
+ "start": 299.16,
+ "end": 299.42,
+ "text": "valley"
+ },
+ {
+ "start": 299.7,
+ "end": 300.08,
+ "text": "is"
+ },
+ {
+ "start": 300.06,
+ "end": 300.24,
+ "text": "it"
+ },
+ {
+ "start": 300.2,
+ "end": 300.38,
+ "text": "do"
+ },
+ {
+ "start": 300.38,
+ "end": 301.5,
+ "text": "changing."
+ },
+ {
+ "start": 301.48,
+ "end": 301.64,
+ "text": "Now."
+ },
+ {
+ "start": 301.6,
+ "end": 301.74,
+ "text": "The"
+ },
+ {
+ "start": 301.76,
+ "end": 302.12,
+ "text": "challenge"
+ },
+ {
+ "start": 302.08,
+ "end": 302.34,
+ "text": "there"
+ },
+ {
+ "start": 302.78,
+ "end": 303.42,
+ "text": "that"
+ },
+ {
+ "start": 303.38,
+ "end": 303.58,
+ "text": "the"
+ },
+ {
+ "start": 303.56,
+ "end": 303.8,
+ "text": "world"
+ },
+ {
+ "start": 303.78,
+ "end": 303.94,
+ "text": "of"
+ },
+ {
+ "start": 303.92,
+ "end": 304.26,
+ "text": "things"
+ },
+ {
+ "start": 304.22,
+ "end": 304.38,
+ "text": "is"
+ },
+ {
+ "start": 304.38,
+ "end": 304.78,
+ "text": "huge."
+ },
+ {
+ "start": 304.74,
+ "end": 306.16,
+ "text": "Every"
+ },
+ {
+ "start": 306.2,
+ "end": 306.5,
+ "text": "year"
+ },
+ {
+ "start": 306.5,
+ "end": 306.96,
+ "text": "apparel"
+ },
+ {
+ "start": 306.94,
+ "end": 307.42,
+ "text": "industry"
+ },
+ {
+ "start": 307.38,
+ "end": 307.74,
+ "text": "places"
+ },
+ {
+ "start": 307.74,
+ "end": 308.12,
+ "text": "hounded"
+ },
+ {
+ "start": 308.2,
+ "end": 308.56,
+ "text": "fifty"
+ },
+ {
+ "start": 308.64,
+ "end": 309.06,
+ "text": "billion,"
+ },
+ {
+ "start": 309.12,
+ "end": 309.52,
+ "text": "garments"
+ },
+ {
+ "start": 309.7,
+ "end": 309.88,
+ "text": "in"
+ },
+ {
+ "start": 310.7,
+ "end": 311.34,
+ "text": "comparison"
+ },
+ {
+ "start": 311.32,
+ "end": 312.76,
+ "text": "technology"
+ },
+ {
+ "start": 312.74,
+ "end": 313.08,
+ "text": "to"
+ },
+ {
+ "start": 313.06,
+ "end": 313.24,
+ "text": "see"
+ },
+ {
+ "start": 313.22,
+ "end": 313.52,
+ "text": "only"
+ },
+ {
+ "start": 313.54,
+ "end": 313.82,
+ "text": "makes"
+ },
+ {
+ "start": 314.12,
+ "end": 314.38,
+ "text": "one"
+ },
+ {
+ "start": 314.36,
+ "end": 314.62,
+ "text": "point"
+ },
+ {
+ "start": 314.62,
+ "end": 314.82,
+ "text": "four"
+ },
+ {
+ "start": 314.86,
+ "end": 315.2,
+ "text": "billion"
+ },
+ {
+ "start": 315.22,
+ "end": 315.54,
+ "text": "phones."
+ },
+ {
+ "start": 315.96,
+ "end": 316.1,
+ "text": "The"
+ },
+ {
+ "start": 316.1,
+ "end": 316.34,
+ "text": "world"
+ },
+ {
+ "start": 316.34,
+ "end": 316.5,
+ "text": "of"
+ },
+ {
+ "start": 316.46,
+ "end": 316.88,
+ "text": "things"
+ },
+ {
+ "start": 316.88,
+ "end": 317.06,
+ "text": "is"
+ },
+ {
+ "start": 317.12,
+ "end": 317.38,
+ "text": "much"
+ },
+ {
+ "start": 317.5,
+ "end": 317.86,
+ "text": "bigger."
+ },
+ {
+ "start": 318.16,
+ "end": 318.5,
+ "text": "Then"
+ },
+ {
+ "start": 318.46,
+ "end": 318.66,
+ "text": "the"
+ },
+ {
+ "start": 318.62,
+ "end": 318.88,
+ "text": "world"
+ },
+ {
+ "start": 318.86,
+ "end": 319,
+ "text": "of"
+ },
+ {
+ "start": 318.98,
+ "end": 319.48,
+ "text": "technology"
+ },
+ {
+ "start": 319.54,
+ "end": 320.28,
+ "text": "we"
+ },
+ {
+ "start": 320.34,
+ "end": 320.7,
+ "text": "can"
+ },
+ {
+ "start": 320.74,
+ "end": 320.94,
+ "text": "the"
+ },
+ {
+ "start": 320.92,
+ "end": 321.44,
+ "text": "technology"
+ },
+ {
+ "start": 321.48,
+ "end": 321.78,
+ "text": "world"
+ },
+ {
+ "start": 321.78,
+ "end": 322.22,
+ "text": "cannot"
+ },
+ {
+ "start": 322.26,
+ "end": 322.54,
+ "text": "change"
+ },
+ {
+ "start": 322.52,
+ "end": 322.68,
+ "text": "the"
+ },
+ {
+ "start": 322.66,
+ "end": 322.88,
+ "text": "world"
+ },
+ {
+ "start": 322.84,
+ "end": 323,
+ "text": "of"
+ },
+ {
+ "start": 323,
+ "end": 323.28,
+ "text": "things."
+ },
+ {
+ "start": 323.5,
+ "end": 324.12,
+ "text": "Instead"
+ },
+ {
+ "start": 324.12,
+ "end": 324.8,
+ "text": "we"
+ },
+ {
+ "start": 324.86,
+ "end": 325.08,
+ "text": "need"
+ },
+ {
+ "start": 325.04,
+ "end": 325.14,
+ "text": "to"
+ },
+ {
+ "start": 325.12,
+ "end": 325.38,
+ "text": "create"
+ },
+ {
+ "start": 325.34,
+ "end": 325.48,
+ "text": "you"
+ },
+ {
+ "start": 325.46,
+ "end": 325.96,
+ "text": "chanology"
+ },
+ {
+ "start": 326.5,
+ "end": 326.84,
+ "text": "which"
+ },
+ {
+ "start": 326.86,
+ "end": 327.18,
+ "text": "change"
+ },
+ {
+ "start": 327.62,
+ "end": 328.02,
+ "text": "makers"
+ },
+ {
+ "start": 328.02,
+ "end": 328.2,
+ "text": "of"
+ },
+ {
+ "start": 328.4,
+ "end": 328.78,
+ "text": "things."
+ },
+ {
+ "start": 328.84,
+ "end": 329.18,
+ "text": "People"
+ },
+ {
+ "start": 329.14,
+ "end": 329.3,
+ "text": "who"
+ },
+ {
+ "start": 329.28,
+ "end": 329.5,
+ "text": "make"
+ },
+ {
+ "start": 329.46,
+ "end": 329.62,
+ "text": "our"
+ },
+ {
+ "start": 329.6,
+ "end": 329.88,
+ "text": "chairs"
+ },
+ {
+ "start": 329.86,
+ "end": 330.02,
+ "text": "and"
+ },
+ {
+ "start": 329.98,
+ "end": 330.24,
+ "text": "calls"
+ },
+ {
+ "start": 330.22,
+ "end": 330.34,
+ "text": "and"
+ },
+ {
+ "start": 330.3,
+ "end": 330.62,
+ "text": "everything"
+ },
+ {
+ "start": 330.6,
+ "end": 330.8,
+ "text": "else."
+ },
+ {
+ "start": 331.12,
+ "end": 331.74,
+ "text": "It's"
+ },
+ {
+ "start": 331.7,
+ "end": 331.78,
+ "text": "a"
+ },
+ {
+ "start": 331.82,
+ "end": 332.26,
+ "text": "makers"
+ },
+ {
+ "start": 332.28,
+ "end": 332.44,
+ "text": "of"
+ },
+ {
+ "start": 332.56,
+ "end": 332.9,
+ "text": "smart"
+ },
+ {
+ "start": 332.94,
+ "end": 333.26,
+ "text": "things"
+ },
+ {
+ "start": 333.7,
+ "end": 334.32,
+ "text": "enable"
+ },
+ {
+ "start": 334.32,
+ "end": 334.5,
+ "text": "them"
+ },
+ {
+ "start": 334.48,
+ "end": 334.62,
+ "text": "to"
+ },
+ {
+ "start": 334.6,
+ "end": 334.76,
+ "text": "do"
+ },
+ {
+ "start": 334.78,
+ "end": 334.92,
+ "text": "that."
+ },
+ {
+ "start": 335.14,
+ "end": 335.24,
+ "text": "So"
+ },
+ {
+ "start": 337.36,
+ "end": 337.68,
+ "text": "this"
+ },
+ {
+ "start": 337.72,
+ "end": 337.84,
+ "text": "is"
+ },
+ {
+ "start": 337.84,
+ "end": 338.2,
+ "text": "challenge."
+ },
+ {
+ "start": 338.16,
+ "end": 338.28,
+ "text": "So"
+ },
+ {
+ "start": 338.26,
+ "end": 338.4,
+ "text": "we"
+ },
+ {
+ "start": 338.38,
+ "end": 338.54,
+ "text": "come"
+ },
+ {
+ "start": 338.5,
+ "end": 338.64,
+ "text": "up"
+ },
+ {
+ "start": 338.62,
+ "end": 338.8,
+ "text": "with"
+ },
+ {
+ "start": 338.76,
+ "end": 338.96,
+ "text": "very"
+ },
+ {
+ "start": 338.98,
+ "end": 339.32,
+ "text": "simple"
+ },
+ {
+ "start": 339.42,
+ "end": 339.62,
+ "text": "kind"
+ },
+ {
+ "start": 339.62,
+ "end": 339.7,
+ "text": "of"
+ },
+ {
+ "start": 339.9,
+ "end": 340.92,
+ "text": "idea"
+ },
+ {
+ "start": 340.88,
+ "end": 341.26,
+ "text": "and"
+ },
+ {
+ "start": 341.22,
+ "end": 341.64,
+ "text": "challenge"
+ },
+ {
+ "start": 341.62,
+ "end": 342.88,
+ "text": "in"
+ },
+ {
+ "start": 343.36,
+ "end": 343.52,
+ "text": "a"
+ },
+ {
+ "start": 343.54,
+ "end": 343.88,
+ "text": "taylor"
+ },
+ {
+ "start": 344.34,
+ "end": 344.94,
+ "text": "make"
+ },
+ {
+ "start": 344.9,
+ "end": 345.18,
+ "text": "a"
+ },
+ {
+ "start": 345.24,
+ "end": 345.7,
+ "text": "variable."
+ },
+ {
+ "start": 346.6,
+ "end": 346.76,
+ "text": "Now"
+ },
+ {
+ "start": 346.72,
+ "end": 346.86,
+ "text": "we"
+ },
+ {
+ "start": 346.86,
+ "end": 347.1,
+ "text": "don't"
+ },
+ {
+ "start": 347.08,
+ "end": 347.3,
+ "text": "want"
+ },
+ {
+ "start": 347.26,
+ "end": 347.42,
+ "text": "to"
+ },
+ {
+ "start": 347.38,
+ "end": 347.66,
+ "text": "take"
+ },
+ {
+ "start": 347.62,
+ "end": 347.7,
+ "text": "a"
+ },
+ {
+ "start": 347.72,
+ "end": 348.1,
+ "text": "tailor"
+ },
+ {
+ "start": 348.2,
+ "end": 348.38,
+ "text": "and"
+ },
+ {
+ "start": 348.34,
+ "end": 348.64,
+ "text": "turn"
+ },
+ {
+ "start": 348.64,
+ "end": 348.8,
+ "text": "the"
+ },
+ {
+ "start": 348.78,
+ "end": 349.04,
+ "text": "tail"
+ },
+ {
+ "start": 349.04,
+ "end": 349.16,
+ "text": "in"
+ },
+ {
+ "start": 349.16,
+ "end": 349.58,
+ "text": "political"
+ },
+ {
+ "start": 349.54,
+ "end": 349.96,
+ "text": "engineer."
+ },
+ {
+ "start": 350.32,
+ "end": 351.16,
+ "text": "We"
+ },
+ {
+ "start": 351.22,
+ "end": 351.46,
+ "text": "don't."
+ },
+ {
+ "start": 351.42,
+ "end": 351.52,
+ "text": "We"
+ },
+ {
+ "start": 351.62,
+ "end": 351.84,
+ "text": "still"
+ },
+ {
+ "start": 351.84,
+ "end": 352.02,
+ "text": "want"
+ },
+ {
+ "start": 351.98,
+ "end": 352.1,
+ "text": "to"
+ },
+ {
+ "start": 352.06,
+ "end": 352.24,
+ "text": "have"
+ },
+ {
+ "start": 352.2,
+ "end": 352.4,
+ "text": "some"
+ },
+ {
+ "start": 352.38,
+ "end": 352.7,
+ "text": "balls"
+ },
+ {
+ "start": 352.68,
+ "end": 352.94,
+ "text": "around"
+ },
+ {
+ "start": 353.32,
+ "end": 354.3,
+ "text": "but"
+ },
+ {
+ "start": 354.26,
+ "end": 354.44,
+ "text": "we"
+ },
+ {
+ "start": 354.4,
+ "end": 354.7,
+ "text": "would"
+ },
+ {
+ "start": 354.66,
+ "end": 354.9,
+ "text": "like"
+ },
+ {
+ "start": 354.86,
+ "end": 355,
+ "text": "to"
+ },
+ {
+ "start": 354.98,
+ "end": 355.14,
+ "text": "do"
+ },
+ {
+ "start": 355.12,
+ "end": 355.48,
+ "text": "create"
+ },
+ {
+ "start": 355.46,
+ "end": 356.4,
+ "text": "technology"
+ },
+ {
+ "start": 356.38,
+ "end": 356.58,
+ "text": "which"
+ },
+ {
+ "start": 356.66,
+ "end": 356.94,
+ "text": "looks"
+ },
+ {
+ "start": 357.38,
+ "end": 358.1,
+ "text": "feels"
+ },
+ {
+ "start": 358.06,
+ "end": 358.26,
+ "text": "and"
+ },
+ {
+ "start": 358.28,
+ "end": 358.9,
+ "text": "behaves"
+ },
+ {
+ "start": 359.4,
+ "end": 359.58,
+ "text": "like"
+ },
+ {
+ "start": 359.54,
+ "end": 359.68,
+ "text": "a"
+ },
+ {
+ "start": 359.7,
+ "end": 359.94,
+ "text": "raw"
+ },
+ {
+ "start": 359.9,
+ "end": 360.46,
+ "text": "material"
+ },
+ {
+ "start": 360.56,
+ "end": 360.86,
+ "text": "used"
+ },
+ {
+ "start": 360.86,
+ "end": 361,
+ "text": "by"
+ },
+ {
+ "start": 360.98,
+ "end": 361.14,
+ "text": "the"
+ },
+ {
+ "start": 361.1,
+ "end": 361.58,
+ "text": "tailor"
+ },
+ {
+ "start": 361.86,
+ "end": 361.96,
+ "text": "to"
+ },
+ {
+ "start": 362.58,
+ "end": 362.94,
+ "text": "make"
+ },
+ {
+ "start": 362.94,
+ "end": 364.22,
+ "text": "their"
+ },
+ {
+ "start": 364.26,
+ "end": 364.58,
+ "text": "close."
+ },
+ {
+ "start": 365.02,
+ "end": 366.9,
+ "text": "For"
+ },
+ {
+ "start": 366.88,
+ "end": 367.3,
+ "text": "example,"
+ },
+ {
+ "start": 367.28,
+ "end": 367.74,
+ "text": "attach"
+ },
+ {
+ "start": 367.8,
+ "end": 368.14,
+ "text": "panel"
+ },
+ {
+ "start": 368.12,
+ "end": 368.4,
+ "text": "made"
+ },
+ {
+ "start": 368.4,
+ "end": 368.58,
+ "text": "for"
+ },
+ {
+ "start": 368.56,
+ "end": 369.12,
+ "text": "taylor"
+ },
+ {
+ "start": 369.42,
+ "end": 369.64,
+ "text": "with"
+ },
+ {
+ "start": 369.66,
+ "end": 370.16,
+ "text": "luke"
+ },
+ {
+ "start": 370.14,
+ "end": 370.34,
+ "text": "like"
+ },
+ {
+ "start": 370.34,
+ "end": 370.56,
+ "text": "this"
+ },
+ {
+ "start": 370.96,
+ "end": 371.18,
+ "text": "made"
+ },
+ {
+ "start": 371.16,
+ "end": 371.32,
+ "text": "of"
+ },
+ {
+ "start": 371.32,
+ "end": 371.58,
+ "text": "six"
+ },
+ {
+ "start": 371.56,
+ "end": 371.86,
+ "text": "style."
+ },
+ {
+ "start": 371.84,
+ "end": 372.08,
+ "text": "They"
+ },
+ {
+ "start": 372.04,
+ "end": 372.2,
+ "text": "can"
+ },
+ {
+ "start": 372.28,
+ "end": 372.5,
+ "text": "cut"
+ },
+ {
+ "start": 372.48,
+ "end": 372.6,
+ "text": "it"
+ },
+ {
+ "start": 372.64,
+ "end": 372.8,
+ "text": "with"
+ },
+ {
+ "start": 372.78,
+ "end": 373.12,
+ "text": "seasons"
+ },
+ {
+ "start": 373.32,
+ "end": 373.72,
+ "text": "and"
+ },
+ {
+ "start": 373.68,
+ "end": 373.94,
+ "text": "so"
+ },
+ {
+ "start": 373.92,
+ "end": 374.12,
+ "text": "it"
+ },
+ {
+ "start": 374.08,
+ "end": 374.28,
+ "text": "in"
+ },
+ {
+ "start": 375.52,
+ "end": 375.7,
+ "text": "at"
+ },
+ {
+ "start": 375.68,
+ "end": 375.82,
+ "text": "the"
+ },
+ {
+ "start": 375.8,
+ "end": 376.06,
+ "text": "same"
+ },
+ {
+ "start": 376.02,
+ "end": 376.22,
+ "text": "time"
+ },
+ {
+ "start": 376.18,
+ "end": 376.38,
+ "text": "has"
+ },
+ {
+ "start": 376.34,
+ "end": 376.48,
+ "text": "to"
+ },
+ {
+ "start": 376.44,
+ "end": 376.76,
+ "text": "retain"
+ },
+ {
+ "start": 376.74,
+ "end": 376.88,
+ "text": "the"
+ },
+ {
+ "start": 376.84,
+ "end": 377.36,
+ "text": "performance"
+ },
+ {
+ "start": 377.82,
+ "end": 377.96,
+ "text": "the"
+ },
+ {
+ "start": 377.94,
+ "end": 378.1,
+ "text": "way"
+ },
+ {
+ "start": 378.12,
+ "end": 378.26,
+ "text": "to"
+ },
+ {
+ "start": 378.32,
+ "end": 378.6,
+ "text": "make"
+ },
+ {
+ "start": 378.6,
+ "end": 378.76,
+ "text": "this"
+ },
+ {
+ "start": 378.78,
+ "end": 379.26,
+ "text": "text"
+ },
+ {
+ "start": 379.26,
+ "end": 379.56,
+ "text": "panel"
+ },
+ {
+ "start": 379.76,
+ "end": 380.14,
+ "text": "touch"
+ },
+ {
+ "start": 380.12,
+ "end": 380.4,
+ "text": "panel."
+ },
+ {
+ "start": 380.68,
+ "end": 381.04,
+ "text": "Also,"
+ },
+ {
+ "start": 381,
+ "end": 381.16,
+ "text": "the"
+ },
+ {
+ "start": 381.12,
+ "end": 381.34,
+ "text": "core,"
+ },
+ {
+ "start": 381.3,
+ "end": 381.42,
+ "text": "a"
+ },
+ {
+ "start": 381.4,
+ "end": 381.6,
+ "text": "very"
+ },
+ {
+ "start": 381.58,
+ "end": 381.92,
+ "text": "different"
+ },
+ {
+ "start": 381.88,
+ "end": 382.32,
+ "text": "approach"
+ },
+ {
+ "start": 382.3,
+ "end": 382.48,
+ "text": "in"
+ },
+ {
+ "start": 382.48,
+ "end": 382.66,
+ "text": "from"
+ },
+ {
+ "start": 382.66,
+ "end": 382.94,
+ "text": "making"
+ },
+ {
+ "start": 382.9,
+ "end": 383.38,
+ "text": "consumedly"
+ },
+ {
+ "start": 383.36,
+ "end": 383.66,
+ "text": "tronics."
+ },
+ {
+ "start": 383.84,
+ "end": 384.5,
+ "text": "In"
+ },
+ {
+ "start": 384.5,
+ "end": 384.7,
+ "text": "our"
+ },
+ {
+ "start": 384.8,
+ "end": 385.06,
+ "text": "case,"
+ },
+ {
+ "start": 385.1,
+ "end": 385.22,
+ "text": "we"
+ },
+ {
+ "start": 385.24,
+ "end": 385.42,
+ "text": "had"
+ },
+ {
+ "start": 385.4,
+ "end": 385.52,
+ "text": "to"
+ },
+ {
+ "start": 385.54,
+ "end": 385.68,
+ "text": "go"
+ },
+ {
+ "start": 385.66,
+ "end": 385.84,
+ "text": "to"
+ },
+ {
+ "start": 385.9,
+ "end": 386.34,
+ "text": "mountains"
+ },
+ {
+ "start": 386.3,
+ "end": 386.46,
+ "text": "of"
+ },
+ {
+ "start": 386.42,
+ "end": 386.56,
+ "text": "to"
+ },
+ {
+ "start": 387.08,
+ "end": 388.1,
+ "text": "to"
+ },
+ {
+ "start": 388.18,
+ "end": 388.56,
+ "text": "small"
+ },
+ {
+ "start": 388.58,
+ "end": 388.98,
+ "text": "factory"
+ },
+ {
+ "start": 388.98,
+ "end": 389.18,
+ "text": "which"
+ },
+ {
+ "start": 389.14,
+ "end": 389.3,
+ "text": "is"
+ },
+ {
+ "start": 389.32,
+ "end": 389.62,
+ "text": "making"
+ },
+ {
+ "start": 389.58,
+ "end": 389.78,
+ "text": "him"
+ },
+ {
+ "start": 389.8,
+ "end": 390.08,
+ "text": "one"
+ },
+ {
+ "start": 390.08,
+ "end": 390.32,
+ "text": "and"
+ },
+ {
+ "start": 390.3,
+ "end": 390.44,
+ "text": "for"
+ },
+ {
+ "start": 390.42,
+ "end": 390.96,
+ "text": "generations."
+ },
+ {
+ "start": 391.2,
+ "end": 391.3,
+ "text": "We"
+ },
+ {
+ "start": 391.8,
+ "end": 392.24,
+ "text": "worked"
+ },
+ {
+ "start": 392.3,
+ "end": 392.9,
+ "text": "with"
+ },
+ {
+ "start": 392.86,
+ "end": 393,
+ "text": "my"
+ },
+ {
+ "start": 392.98,
+ "end": 393.66,
+ "text": "collaborators,"
+ },
+ {
+ "start": 393.62,
+ "end": 394.38,
+ "text": "who"
+ },
+ {
+ "start": 394.36,
+ "end": 394.64,
+ "text": "were"
+ },
+ {
+ "start": 394.66,
+ "end": 394.88,
+ "text": "not"
+ },
+ {
+ "start": 394.86,
+ "end": 395.5,
+ "text": "engineers."
+ },
+ {
+ "start": 395.84,
+ "end": 396.08,
+ "text": "It"
+ },
+ {
+ "start": 396.86,
+ "end": 397.06,
+ "text": "was"
+ },
+ {
+ "start": 397.04,
+ "end": 397.18,
+ "text": "an"
+ },
+ {
+ "start": 397.16,
+ "end": 397.6,
+ "text": "artist"
+ },
+ {
+ "start": 397.8,
+ "end": 397.96,
+ "text": "who"
+ },
+ {
+ "start": 398.02,
+ "end": 398.3,
+ "text": "knows"
+ },
+ {
+ "start": 398.32,
+ "end": 398.56,
+ "text": "how"
+ },
+ {
+ "start": 398.54,
+ "end": 398.72,
+ "text": "to"
+ },
+ {
+ "start": 398.7,
+ "end": 399.02,
+ "text": "make"
+ },
+ {
+ "start": 398.98,
+ "end": 399.34,
+ "text": "things"
+ },
+ {
+ "start": 399.56,
+ "end": 400.34,
+ "text": "and"
+ },
+ {
+ "start": 400.3,
+ "end": 400.46,
+ "text": "an"
+ },
+ {
+ "start": 400.44,
+ "end": 400.84,
+ "text": "artist."
+ },
+ {
+ "start": 400.82,
+ "end": 401.88,
+ "text": "But"
+ },
+ {
+ "start": 401.86,
+ "end": 402.16,
+ "text": "also"
+ },
+ {
+ "start": 402.24,
+ "end": 402.38,
+ "text": "to"
+ },
+ {
+ "start": 402.38,
+ "end": 402.56,
+ "text": "make"
+ },
+ {
+ "start": 402.52,
+ "end": 402.76,
+ "text": "things"
+ },
+ {
+ "start": 402.76,
+ "end": 403.18,
+ "text": "beautiful"
+ },
+ {
+ "start": 403.52,
+ "end": 404.48,
+ "text": "working"
+ },
+ {
+ "start": 404.44,
+ "end": 404.64,
+ "text": "with"
+ },
+ {
+ "start": 404.6,
+ "end": 404.84,
+ "text": "them."
+ },
+ {
+ "start": 404.88,
+ "end": 405.06,
+ "text": "But"
+ },
+ {
+ "start": 405.04,
+ "end": 405.32,
+ "text": "treat"
+ },
+ {
+ "start": 405.32,
+ "end": 405.5,
+ "text": "is"
+ },
+ {
+ "start": 405.5,
+ "end": 405.66,
+ "text": "one"
+ },
+ {
+ "start": 405.64,
+ "end": 405.76,
+ "text": "of"
+ },
+ {
+ "start": 405.76,
+ "end": 405.92,
+ "text": "the"
+ },
+ {
+ "start": 405.96,
+ "end": 406.18,
+ "text": "best"
+ },
+ {
+ "start": 406.56,
+ "end": 407.54,
+ "text": "young"
+ },
+ {
+ "start": 407.6,
+ "end": 407.74,
+ "text": "in"
+ },
+ {
+ "start": 407.74,
+ "end": 407.88,
+ "text": "the"
+ },
+ {
+ "start": 407.88,
+ "end": 408.2,
+ "text": "world"
+ },
+ {
+ "start": 409.02,
+ "end": 409.24,
+ "text": "which"
+ },
+ {
+ "start": 409.2,
+ "end": 409.36,
+ "text": "is"
+ },
+ {
+ "start": 409.38,
+ "end": 409.88,
+ "text": "consists"
+ },
+ {
+ "start": 409.88,
+ "end": 410.12,
+ "text": "of"
+ },
+ {
+ "start": 410.12,
+ "end": 410.4,
+ "text": "the"
+ },
+ {
+ "start": 410.38,
+ "end": 410.82,
+ "text": "metallic"
+ },
+ {
+ "start": 410.82,
+ "end": 411.62,
+ "text": "alloys"
+ },
+ {
+ "start": 411.6,
+ "end": 411.94,
+ "text": "wrapped"
+ },
+ {
+ "start": 411.9,
+ "end": 412.3,
+ "text": "around"
+ },
+ {
+ "start": 412.28,
+ "end": 412.48,
+ "text": "with"
+ },
+ {
+ "start": 412.48,
+ "end": 412.86,
+ "text": "police,"
+ },
+ {
+ "start": 412.88,
+ "end": 413.24,
+ "text": "fire"
+ },
+ {
+ "start": 413.48,
+ "end": 413.88,
+ "text": "cousin"
+ },
+ {
+ "start": 413.88,
+ "end": 414.22,
+ "text": "fibers"
+ },
+ {
+ "start": 414.48,
+ "end": 414.98,
+ "text": "this"
+ },
+ {
+ "start": 414.98,
+ "end": 415.24,
+ "text": "you"
+ },
+ {
+ "start": 415.46,
+ "end": 415.68,
+ "text": "were"
+ },
+ {
+ "start": 415.66,
+ "end": 415.88,
+ "text": "made"
+ },
+ {
+ "start": 415.84,
+ "end": 416,
+ "text": "in"
+ },
+ {
+ "start": 415.98,
+ "end": 416.12,
+ "text": "the"
+ },
+ {
+ "start": 416.14,
+ "end": 416.42,
+ "text": "same"
+ },
+ {
+ "start": 416.4,
+ "end": 416.94,
+ "text": "machines"
+ },
+ {
+ "start": 417.18,
+ "end": 417.38,
+ "text": "which"
+ },
+ {
+ "start": 417.36,
+ "end": 417.5,
+ "text": "you"
+ },
+ {
+ "start": 417.52,
+ "end": 417.7,
+ "text": "are"
+ },
+ {
+ "start": 417.68,
+ "end": 418.06,
+ "text": "making"
+ },
+ {
+ "start": 418.36,
+ "end": 418.84,
+ "text": "your"
+ },
+ {
+ "start": 418.84,
+ "end": 419.66,
+ "text": "portions"
+ },
+ {
+ "start": 419.64,
+ "end": 419.78,
+ "text": "for"
+ },
+ {
+ "start": 419.76,
+ "end": 420.38,
+ "text": "generations"
+ },
+ {
+ "start": 421.28,
+ "end": 421.6,
+ "text": "within"
+ },
+ {
+ "start": 421.6,
+ "end": 421.74,
+ "text": "to"
+ },
+ {
+ "start": 421.78,
+ "end": 421.94,
+ "text": "this"
+ },
+ {
+ "start": 421.96,
+ "end": 422.32,
+ "text": "yards"
+ },
+ {
+ "start": 422.32,
+ "end": 422.46,
+ "text": "and"
+ },
+ {
+ "start": 422.46,
+ "end": 422.72,
+ "text": "give"
+ },
+ {
+ "start": 422.72,
+ "end": 422.88,
+ "text": "them"
+ },
+ {
+ "start": 422.86,
+ "end": 423.02,
+ "text": "to"
+ },
+ {
+ "start": 423.02,
+ "end": 423.18,
+ "text": "the"
+ },
+ {
+ "start": 423.14,
+ "end": 423.62,
+ "text": "factory"
+ },
+ {
+ "start": 423.58,
+ "end": 423.76,
+ "text": "which"
+ },
+ {
+ "start": 423.74,
+ "end": 423.9,
+ "text": "is"
+ },
+ {
+ "start": 424.3,
+ "end": 424.76,
+ "text": "making"
+ },
+ {
+ "start": 424.74,
+ "end": 425.04,
+ "text": "making"
+ },
+ {
+ "start": 425.02,
+ "end": 425.56,
+ "text": "textiles."
+ },
+ {
+ "start": 425.84,
+ "end": 426,
+ "text": "And"
+ },
+ {
+ "start": 425.98,
+ "end": 426.12,
+ "text": "we"
+ },
+ {
+ "start": 426.16,
+ "end": 426.52,
+ "text": "wore"
+ },
+ {
+ "start": 426.54,
+ "end": 426.88,
+ "text": "our"
+ },
+ {
+ "start": 426.84,
+ "end": 427.12,
+ "text": "smart"
+ },
+ {
+ "start": 427.12,
+ "end": 427.64,
+ "text": "textiles"
+ },
+ {
+ "start": 427.76,
+ "end": 427.9,
+ "text": "in"
+ },
+ {
+ "start": 427.88,
+ "end": 428.22,
+ "text": "regular"
+ },
+ {
+ "start": 428.2,
+ "end": 428.58,
+ "text": "machines"
+ },
+ {
+ "start": 429.02,
+ "end": 429.12,
+ "text": "in"
+ },
+ {
+ "start": 429.42,
+ "end": 429.52,
+ "text": "a"
+ },
+ {
+ "start": 429.5,
+ "end": 429.98,
+ "text": "variety"
+ },
+ {
+ "start": 429.96,
+ "end": 430.1,
+ "text": "of"
+ },
+ {
+ "start": 430.08,
+ "end": 430.52,
+ "text": "colors"
+ },
+ {
+ "start": 430.5,
+ "end": 430.66,
+ "text": "and"
+ },
+ {
+ "start": 430.64,
+ "end": 431.16,
+ "text": "materials"
+ },
+ {
+ "start": 431.18,
+ "end": 431.36,
+ "text": "and"
+ },
+ {
+ "start": 431.34,
+ "end": 431.46,
+ "text": "we"
+ },
+ {
+ "start": 431.5,
+ "end": 431.78,
+ "text": "gave"
+ },
+ {
+ "start": 431.76,
+ "end": 432.1,
+ "text": "those"
+ },
+ {
+ "start": 432.08,
+ "end": 432.48,
+ "text": "sixty"
+ },
+ {
+ "start": 432.88,
+ "end": 432.98,
+ "text": "to"
+ },
+ {
+ "start": 433.5,
+ "end": 434.04,
+ "text": "tailor"
+ },
+ {
+ "start": 434.32,
+ "end": 434.52,
+ "text": "and"
+ },
+ {
+ "start": 434.5,
+ "end": 434.94,
+ "text": "several"
+ },
+ {
+ "start": 435.58,
+ "end": 435.74,
+ "text": "in"
+ },
+ {
+ "start": 435.74,
+ "end": 436.08,
+ "text": "london."
+ },
+ {
+ "start": 436.36,
+ "end": 438.14,
+ "text": "The"
+ },
+ {
+ "start": 438.1,
+ "end": 438.64,
+ "text": "tales"
+ },
+ {
+ "start": 438.62,
+ "end": 438.76,
+ "text": "that"
+ },
+ {
+ "start": 438.74,
+ "end": 439.6,
+ "text": "traditionalists"
+ },
+ {
+ "start": 439.58,
+ "end": 440.04,
+ "text": "particular"
+ },
+ {
+ "start": 440,
+ "end": 440.16,
+ "text": "and"
+ },
+ {
+ "start": 440.12,
+ "end": 440.44,
+ "text": "sell"
+ },
+ {
+ "start": 440.42,
+ "end": 440.96,
+ "text": "raw"
+ },
+ {
+ "start": 440.94,
+ "end": 441.14,
+ "text": "that"
+ },
+ {
+ "start": 441.1,
+ "end": 441.36,
+ "text": "don't"
+ },
+ {
+ "start": 441.32,
+ "end": 441.54,
+ "text": "use"
+ },
+ {
+ "start": 441.52,
+ "end": 441.94,
+ "text": "computers."
+ },
+ {
+ "start": 442.24,
+ "end": 443.26,
+ "text": "They"
+ },
+ {
+ "start": 443.26,
+ "end": 443.56,
+ "text": "don't"
+ },
+ {
+ "start": 443.62,
+ "end": 443.94,
+ "text": "use"
+ },
+ {
+ "start": 444.08,
+ "end": 445.22,
+ "text": "machines,"
+ },
+ {
+ "start": 445.6,
+ "end": 445.92,
+ "text": "they"
+ },
+ {
+ "start": 445.88,
+ "end": 446.1,
+ "text": "use"
+ },
+ {
+ "start": 446.16,
+ "end": 446.52,
+ "text": "hands"
+ },
+ {
+ "start": 446.52,
+ "end": 446.68,
+ "text": "and"
+ },
+ {
+ "start": 446.64,
+ "end": 446.78,
+ "text": "the"
+ },
+ {
+ "start": 446.84,
+ "end": 447.14,
+ "text": "cut"
+ },
+ {
+ "start": 447.56,
+ "end": 447.72,
+ "text": "the"
+ },
+ {
+ "start": 447.78,
+ "end": 448.08,
+ "text": "feed"
+ },
+ {
+ "start": 448.06,
+ "end": 448.26,
+ "text": "their"
+ },
+ {
+ "start": 448.22,
+ "end": 448.6,
+ "text": "products"
+ },
+ {
+ "start": 448.58,
+ "end": 448.74,
+ "text": "on"
+ },
+ {
+ "start": 448.72,
+ "end": 448.86,
+ "text": "the"
+ },
+ {
+ "start": 448.84,
+ "end": 449.18,
+ "text": "human"
+ },
+ {
+ "start": 449.24,
+ "end": 449.62,
+ "text": "body."
+ },
+ {
+ "start": 449.6,
+ "end": 449.92,
+ "text": "Not"
+ },
+ {
+ "start": 449.94,
+ "end": 450.5,
+ "text": "only"
+ },
+ {
+ "start": 450.5,
+ "end": 450.96,
+ "text": "avatars."
+ },
+ {
+ "start": 451.16,
+ "end": 453.62,
+ "text": "Technology"
+ },
+ {
+ "start": 453.6,
+ "end": 453.72,
+ "text": "is"
+ },
+ {
+ "start": 453.78,
+ "end": 453.98,
+ "text": "not"
+ },
+ {
+ "start": 453.94,
+ "end": 454.08,
+ "text": "a"
+ },
+ {
+ "start": 454.08,
+ "end": 454.32,
+ "text": "part"
+ },
+ {
+ "start": 454.3,
+ "end": 454.42,
+ "text": "of"
+ },
+ {
+ "start": 454.4,
+ "end": 454.6,
+ "text": "the"
+ },
+ {
+ "start": 454.58,
+ "end": 455.2,
+ "text": "vocabulary"
+ },
+ {
+ "start": 455.18,
+ "end": 455.4,
+ "text": "but"
+ },
+ {
+ "start": 455.36,
+ "end": 455.66,
+ "text": "they"
+ },
+ {
+ "start": 455.74,
+ "end": 456.06,
+ "text": "are"
+ },
+ {
+ "start": 456.36,
+ "end": 456.6,
+ "text": "more"
+ },
+ {
+ "start": 456.56,
+ "end": 456.72,
+ "text": "than"
+ },
+ {
+ "start": 456.82,
+ "end": 457.12,
+ "text": "people"
+ },
+ {
+ "start": 457.14,
+ "end": 457.32,
+ "text": "they"
+ },
+ {
+ "start": 457.4,
+ "end": 457.64,
+ "text": "know"
+ },
+ {
+ "start": 457.7,
+ "end": 457.88,
+ "text": "how"
+ },
+ {
+ "start": 457.86,
+ "end": 458.02,
+ "text": "to"
+ },
+ {
+ "start": 457.98,
+ "end": 458.18,
+ "text": "use"
+ },
+ {
+ "start": 458.14,
+ "end": 458.7,
+ "text": "technology"
+ },
+ {
+ "start": 459.06,
+ "end": 459.3,
+ "text": "so"
+ },
+ {
+ "start": 459.36,
+ "end": 459.54,
+ "text": "you"
+ },
+ {
+ "start": 459.56,
+ "end": 459.78,
+ "text": "pick"
+ },
+ {
+ "start": 459.84,
+ "end": 460,
+ "text": "no,"
+ },
+ {
+ "start": 460.04,
+ "end": 460.32,
+ "text": "you"
+ },
+ {
+ "start": 460.28,
+ "end": 460.44,
+ "text": "can"
+ },
+ {
+ "start": 460.48,
+ "end": 460.6,
+ "text": "be"
+ },
+ {
+ "start": 460.66,
+ "end": 461.1,
+ "text": "formed"
+ },
+ {
+ "start": 461.1,
+ "end": 461.32,
+ "text": "and"
+ },
+ {
+ "start": 461.32,
+ "end": 461.64,
+ "text": "shaped"
+ },
+ {
+ "start": 461.6,
+ "end": 461.78,
+ "text": "like"
+ },
+ {
+ "start": 461.74,
+ "end": 461.86,
+ "text": "a"
+ },
+ {
+ "start": 461.88,
+ "end": 462.26,
+ "text": "button"
+ },
+ {
+ "start": 462.28,
+ "end": 462.46,
+ "text": "like"
+ },
+ {
+ "start": 462.42,
+ "end": 462.54,
+ "text": "a"
+ },
+ {
+ "start": 462.54,
+ "end": 463.04,
+ "text": "total"
+ },
+ {
+ "start": 463.02,
+ "end": 463.18,
+ "text": "like"
+ },
+ {
+ "start": 463.14,
+ "end": 463.56,
+ "text": "staffing."
+ },
+ {
+ "start": 463.52,
+ "end": 463.68,
+ "text": "They"
+ },
+ {
+ "start": 463.64,
+ "end": 463.82,
+ "text": "can"
+ },
+ {
+ "start": 463.84,
+ "end": 464.04,
+ "text": "use."
+ },
+ {
+ "start": 464.24,
+ "end": 465.16,
+ "text": "They"
+ },
+ {
+ "start": 465.14,
+ "end": 465.9,
+ "text": "absolutely"
+ },
+ {
+ "start": 465.92,
+ "end": 466.14,
+ "text": "can"
+ },
+ {
+ "start": 466.2,
+ "end": 466.44,
+ "text": "make"
+ },
+ {
+ "start": 466.42,
+ "end": 466.5,
+ "text": "a"
+ },
+ {
+ "start": 466.52,
+ "end": 466.92,
+ "text": "wearable"
+ },
+ {
+ "start": 467.24,
+ "end": 467.32,
+ "text": "a"
+ },
+ {
+ "start": 467.68,
+ "end": 468.1,
+ "text": "garment"
+ },
+ {
+ "start": 468.08,
+ "end": 469.36,
+ "text": "which"
+ },
+ {
+ "start": 469.32,
+ "end": 469.48,
+ "text": "can"
+ },
+ {
+ "start": 469.48,
+ "end": 469.74,
+ "text": "place"
+ },
+ {
+ "start": 469.7,
+ "end": 469.78,
+ "text": "a"
+ },
+ {
+ "start": 469.84,
+ "end": 470.08,
+ "text": "phone"
+ },
+ {
+ "start": 470.06,
+ "end": 470.26,
+ "text": "call."
+ },
+ {
+ "start": 470.58,
+ "end": 470.68,
+ "text": "So"
+ },
+ {
+ "start": 473.7,
+ "end": 473.88,
+ "text": "now"
+ },
+ {
+ "start": 473.84,
+ "end": 474.14,
+ "text": "we've"
+ },
+ {
+ "start": 474.1,
+ "end": 474.46,
+ "text": "proven"
+ },
+ {
+ "start": 474.42,
+ "end": 474.6,
+ "text": "that"
+ },
+ {
+ "start": 474.56,
+ "end": 474.74,
+ "text": "you"
+ },
+ {
+ "start": 474.72,
+ "end": 474.88,
+ "text": "can"
+ },
+ {
+ "start": 474.84,
+ "end": 475.16,
+ "text": "actually"
+ },
+ {
+ "start": 475.14,
+ "end": 475.46,
+ "text": "make"
+ },
+ {
+ "start": 475.42,
+ "end": 475.5,
+ "text": "a"
+ },
+ {
+ "start": 475.54,
+ "end": 475.96,
+ "text": "wearable"
+ },
+ {
+ "start": 475.94,
+ "end": 476.86,
+ "text": "by"
+ },
+ {
+ "start": 476.84,
+ "end": 476.96,
+ "text": "the"
+ },
+ {
+ "start": 477.44,
+ "end": 477.68,
+ "text": "by"
+ },
+ {
+ "start": 477.68,
+ "end": 477.8,
+ "text": "the"
+ },
+ {
+ "start": 477.78,
+ "end": 478.1,
+ "text": "tiny"
+ },
+ {
+ "start": 478.06,
+ "end": 478.44,
+ "text": "company."
+ },
+ {
+ "start": 478.48,
+ "end": 478.66,
+ "text": "But"
+ },
+ {
+ "start": 479.04,
+ "end": 479.16,
+ "text": "by"
+ },
+ {
+ "start": 479.6,
+ "end": 479.82,
+ "text": "by"
+ },
+ {
+ "start": 479.8,
+ "end": 479.96,
+ "text": "the"
+ },
+ {
+ "start": 479.92,
+ "end": 480.32,
+ "text": "tailor"
+ },
+ {
+ "start": 480.94,
+ "end": 481.08,
+ "text": "we"
+ },
+ {
+ "start": 481.2,
+ "end": 481.52,
+ "text": "worked"
+ },
+ {
+ "start": 481.7,
+ "end": 482.04,
+ "text": "with"
+ },
+ {
+ "start": 482,
+ "end": 482.14,
+ "text": "the"
+ },
+ {
+ "start": 482.1,
+ "end": 482.84,
+ "text": "integrated"
+ },
+ {
+ "start": 482.8,
+ "end": 482.96,
+ "text": "with"
+ },
+ {
+ "start": 482.92,
+ "end": 483.04,
+ "text": "the"
+ },
+ {
+ "start": 483.02,
+ "end": 483.78,
+ "text": "leaves."
+ },
+ {
+ "start": 483.8,
+ "end": 484,
+ "text": "Our"
+ },
+ {
+ "start": 484.06,
+ "end": 484.28,
+ "text": "part"
+ },
+ {
+ "start": 484.28,
+ "end": 484.42,
+ "text": "is"
+ },
+ {
+ "start": 484.44,
+ "end": 485.4,
+ "text": "in"
+ },
+ {
+ "start": 485.4,
+ "end": 485.64,
+ "text": "our"
+ },
+ {
+ "start": 485.62,
+ "end": 485.9,
+ "text": "neighbors"
+ },
+ {
+ "start": 486.18,
+ "end": 486.28,
+ "text": "to"
+ },
+ {
+ "start": 486.88,
+ "end": 487.1,
+ "text": "make"
+ },
+ {
+ "start": 487.06,
+ "end": 487.14,
+ "text": "a"
+ },
+ {
+ "start": 487.14,
+ "end": 487.48,
+ "text": "real"
+ },
+ {
+ "start": 487.52,
+ "end": 487.88,
+ "text": "product."
+ },
+ {
+ "start": 487.84,
+ "end": 488.6,
+ "text": "And"
+ },
+ {
+ "start": 488.56,
+ "end": 488.74,
+ "text": "this"
+ },
+ {
+ "start": 488.82,
+ "end": 489.18,
+ "text": "product"
+ },
+ {
+ "start": 489.5,
+ "end": 489.64,
+ "text": "is"
+ },
+ {
+ "start": 489.72,
+ "end": 489.9,
+ "text": "this"
+ },
+ {
+ "start": 489.86,
+ "end": 490.3,
+ "text": "jacket"
+ },
+ {
+ "start": 490.26,
+ "end": 490.44,
+ "text": "and"
+ },
+ {
+ "start": 490.4,
+ "end": 490.56,
+ "text": "war"
+ },
+ {
+ "start": 490.7,
+ "end": 490.88,
+ "text": "right"
+ },
+ {
+ "start": 490.86,
+ "end": 491.04,
+ "text": "now"
+ },
+ {
+ "start": 491.48,
+ "end": 492.5,
+ "text": "is"
+ },
+ {
+ "start": 492.46,
+ "end": 492.6,
+ "text": "you"
+ },
+ {
+ "start": 492.56,
+ "end": 492.7,
+ "text": "can"
+ },
+ {
+ "start": 492.72,
+ "end": 492.86,
+ "text": "buy"
+ },
+ {
+ "start": 492.88,
+ "end": 493,
+ "text": "it"
+ },
+ {
+ "start": 492.98,
+ "end": 493.16,
+ "text": "on"
+ },
+ {
+ "start": 493.3,
+ "end": 493.52,
+ "text": "sale."
+ },
+ {
+ "start": 493.82,
+ "end": 494.58,
+ "text": "It"
+ },
+ {
+ "start": 494.56,
+ "end": 494.74,
+ "text": "was"
+ },
+ {
+ "start": 494.76,
+ "end": 494.96,
+ "text": "made"
+ },
+ {
+ "start": 495.04,
+ "end": 495.2,
+ "text": "the"
+ },
+ {
+ "start": 495.2,
+ "end": 495.58,
+ "text": "same"
+ },
+ {
+ "start": 495.64,
+ "end": 496.18,
+ "text": "factories"
+ },
+ {
+ "start": 496.26,
+ "end": 496.94,
+ "text": "which"
+ },
+ {
+ "start": 497,
+ "end": 497.18,
+ "text": "made"
+ },
+ {
+ "start": 497.2,
+ "end": 497.52,
+ "text": "all"
+ },
+ {
+ "start": 497.54,
+ "end": 497.76,
+ "text": "their"
+ },
+ {
+ "start": 497.74,
+ "end": 498.06,
+ "text": "products"
+ },
+ {
+ "start": 498.36,
+ "end": 498.82,
+ "text": "and"
+ },
+ {
+ "start": 498.78,
+ "end": 498.94,
+ "text": "you"
+ },
+ {
+ "start": 498.9,
+ "end": 499.06,
+ "text": "have"
+ },
+ {
+ "start": 499.02,
+ "end": 499.46,
+ "text": "noticed"
+ },
+ {
+ "start": 500.02,
+ "end": 500.16,
+ "text": "is"
+ },
+ {
+ "start": 500.12,
+ "end": 500.28,
+ "text": "it"
+ },
+ {
+ "start": 500.3,
+ "end": 500.48,
+ "text": "been"
+ },
+ {
+ "start": 500.46,
+ "end": 501,
+ "text": "controlling"
+ },
+ {
+ "start": 500.96,
+ "end": 501.66,
+ "text": "my"
+ },
+ {
+ "start": 501.88,
+ "end": 502.36,
+ "text": "presentation"
+ },
+ {
+ "start": 502.38,
+ "end": 502.6,
+ "text": "from"
+ },
+ {
+ "start": 502.56,
+ "end": 502.7,
+ "text": "the"
+ },
+ {
+ "start": 502.68,
+ "end": 502.98,
+ "text": "jacket"
+ },
+ {
+ "start": 502.94,
+ "end": 503.08,
+ "text": "from"
+ },
+ {
+ "start": 503.06,
+ "end": 503.2,
+ "text": "the"
+ },
+ {
+ "start": 503.18,
+ "end": 503.42,
+ "text": "see"
+ },
+ {
+ "start": 503.48,
+ "end": 503.66,
+ "text": "the"
+ },
+ {
+ "start": 503.64,
+ "end": 503.94,
+ "text": "jacket"
+ },
+ {
+ "start": 503.94,
+ "end": 504.12,
+ "text": "and"
+ },
+ {
+ "start": 504.1,
+ "end": 504.26,
+ "text": "do"
+ },
+ {
+ "start": 504.24,
+ "end": 504.4,
+ "text": "like"
+ },
+ {
+ "start": 504.38,
+ "end": 504.52,
+ "text": "this"
+ },
+ {
+ "start": 504.66,
+ "end": 505.08,
+ "text": "go"
+ },
+ {
+ "start": 505.16,
+ "end": 505.56,
+ "text": "forward."
+ },
+ {
+ "start": 505.56,
+ "end": 506.2,
+ "text": "Now"
+ },
+ {
+ "start": 506.16,
+ "end": 506.32,
+ "text": "this"
+ },
+ {
+ "start": 506.52,
+ "end": 506.66,
+ "text": "go"
+ },
+ {
+ "start": 506.7,
+ "end": 507,
+ "text": "backward"
+ },
+ {
+ "start": 508.12,
+ "end": 509.04,
+ "text": "and"
+ },
+ {
+ "start": 509,
+ "end": 509.14,
+ "text": "of"
+ },
+ {
+ "start": 509.12,
+ "end": 509.34,
+ "text": "course"
+ },
+ {
+ "start": 509.3,
+ "end": 509.42,
+ "text": "you"
+ },
+ {
+ "start": 509.38,
+ "end": 509.54,
+ "text": "can"
+ },
+ {
+ "start": 509.5,
+ "end": 509.66,
+ "text": "do"
+ },
+ {
+ "start": 509.62,
+ "end": 509.86,
+ "text": "more"
+ },
+ {
+ "start": 509.84,
+ "end": 510.16,
+ "text": "things."
+ },
+ {
+ "start": 510.12,
+ "end": 510.32,
+ "text": "It's"
+ },
+ {
+ "start": 510.28,
+ "end": 510.44,
+ "text": "not"
+ },
+ {
+ "start": 510.42,
+ "end": 510.6,
+ "text": "just"
+ },
+ {
+ "start": 510.56,
+ "end": 510.64,
+ "text": "a"
+ },
+ {
+ "start": 510.66,
+ "end": 510.98,
+ "text": "control"
+ },
+ {
+ "start": 510.96,
+ "end": 511.58,
+ "text": "presentation."
+ },
+ {
+ "start": 511.58,
+ "end": 511.98,
+ "text": "You"
+ },
+ {
+ "start": 511.96,
+ "end": 512.12,
+ "text": "can."
+ },
+ {
+ "start": 512.1,
+ "end": 512.22,
+ "text": "I"
+ },
+ {
+ "start": 512.2,
+ "end": 512.5,
+ "text": "control"
+ },
+ {
+ "start": 512.5,
+ "end": 512.62,
+ "text": "my"
+ },
+ {
+ "start": 512.6,
+ "end": 513.18,
+ "text": "litigation"
+ },
+ {
+ "start": 513.18,
+ "end": 513.88,
+ "text": "console"
+ },
+ {
+ "start": 513.9,
+ "end": 514.6,
+ "text": "my"
+ },
+ {
+ "start": 515.02,
+ "end": 515.36,
+ "text": "music"
+ },
+ {
+ "start": 515.82,
+ "end": 516,
+ "text": "but"
+ },
+ {
+ "start": 515.98,
+ "end": 516.32,
+ "text": "most"
+ },
+ {
+ "start": 516.3,
+ "end": 516.96,
+ "text": "importantly"
+ },
+ {
+ "start": 516.92,
+ "end": 517.08,
+ "text": "it"
+ },
+ {
+ "start": 517.16,
+ "end": 517.66,
+ "text": "stays"
+ },
+ {
+ "start": 517.64,
+ "end": 517.84,
+ "text": "the"
+ },
+ {
+ "start": 517.84,
+ "end": 518.26,
+ "text": "jacket."
+ },
+ {
+ "start": 518.24,
+ "end": 518.5,
+ "text": "It"
+ },
+ {
+ "start": 518.48,
+ "end": 518.9,
+ "text": "stays"
+ },
+ {
+ "start": 518.94,
+ "end": 519.08,
+ "text": "as"
+ },
+ {
+ "start": 519.1,
+ "end": 519.38,
+ "text": "thing"
+ },
+ {
+ "start": 519.66,
+ "end": 520.02,
+ "text": "which"
+ },
+ {
+ "start": 520,
+ "end": 520.32,
+ "text": "makes"
+ },
+ {
+ "start": 520.28,
+ "end": 520.54,
+ "text": "me"
+ },
+ {
+ "start": 520.52,
+ "end": 520.94,
+ "text": "look"
+ },
+ {
+ "start": 521.3,
+ "end": 522.08,
+ "text": "great."
+ },
+ {
+ "start": 529.06,
+ "end": 529.26,
+ "text": "And"
+ },
+ {
+ "start": 529.24,
+ "end": 529.48,
+ "text": "that's"
+ },
+ {
+ "start": 529.52,
+ "end": 529.66,
+ "text": "the"
+ },
+ {
+ "start": 529.62,
+ "end": 529.8,
+ "text": "most"
+ },
+ {
+ "start": 529.78,
+ "end": 530.14,
+ "text": "important"
+ },
+ {
+ "start": 530.14,
+ "end": 530.34,
+ "text": "thing."
+ },
+ {
+ "start": 530.86,
+ "end": 530.94,
+ "text": "So."
+ },
+ {
+ "start": 534,
+ "end": 535.82,
+ "text": "Okay."
+ },
+ {
+ "start": 535.78,
+ "end": 535.96,
+ "text": "So"
+ },
+ {
+ "start": 535.98,
+ "end": 536.18,
+ "text": "we"
+ },
+ {
+ "start": 536.16,
+ "end": 536.66,
+ "text": "proved"
+ },
+ {
+ "start": 536.64,
+ "end": 536.8,
+ "text": "the"
+ },
+ {
+ "start": 536.76,
+ "end": 537.3,
+ "text": "content"
+ },
+ {
+ "start": 537.26,
+ "end": 537.56,
+ "text": "things"
+ },
+ {
+ "start": 537.54,
+ "end": 537.8,
+ "text": "into"
+ },
+ {
+ "start": 537.78,
+ "end": 538.32,
+ "text": "interfaces."
+ },
+ {
+ "start": 538.3,
+ "end": 538.44,
+ "text": "We"
+ },
+ {
+ "start": 538.5,
+ "end": 538.9,
+ "text": "prove"
+ },
+ {
+ "start": 538.88,
+ "end": 539.06,
+ "text": "that"
+ },
+ {
+ "start": 539.42,
+ "end": 539.66,
+ "text": "these"
+ },
+ {
+ "start": 539.64,
+ "end": 539.9,
+ "text": "things"
+ },
+ {
+ "start": 539.92,
+ "end": 540.1,
+ "text": "can"
+ },
+ {
+ "start": 540.08,
+ "end": 540.24,
+ "text": "be"
+ },
+ {
+ "start": 540.26,
+ "end": 540.54,
+ "text": "made"
+ },
+ {
+ "start": 540.74,
+ "end": 541.02,
+ "text": "by"
+ },
+ {
+ "start": 541,
+ "end": 541.46,
+ "text": "makers"
+ },
+ {
+ "start": 541.46,
+ "end": 541.62,
+ "text": "of"
+ },
+ {
+ "start": 541.6,
+ "end": 542.02,
+ "text": "things"
+ },
+ {
+ "start": 542,
+ "end": 542.44,
+ "text": "in"
+ },
+ {
+ "start": 542.42,
+ "end": 543.2,
+ "text": "technology"
+ },
+ {
+ "start": 543.16,
+ "end": 543.62,
+ "text": "companies."
+ },
+ {
+ "start": 543.82,
+ "end": 543.9,
+ "text": "I"
+ },
+ {
+ "start": 543.86,
+ "end": 544.4,
+ "text": "look."
+ },
+ {
+ "start": 544.36,
+ "end": 544.76,
+ "text": "Awesome."
+ },
+ {
+ "start": 544.74,
+ "end": 545.44,
+ "text": "Are"
+ },
+ {
+ "start": 545.4,
+ "end": 545.52,
+ "text": "we"
+ },
+ {
+ "start": 545.5,
+ "end": 545.88,
+ "text": "done?"
+ },
+ {
+ "start": 545.86,
+ "end": 547.54,
+ "text": "Not"
+ },
+ {
+ "start": 547.54,
+ "end": 547.68,
+ "text": "yet."
+ },
+ {
+ "start": 548.1,
+ "end": 548.5,
+ "text": "The"
+ },
+ {
+ "start": 548.46,
+ "end": 548.94,
+ "text": "third"
+ },
+ {
+ "start": 548.92,
+ "end": 549.3,
+ "text": "challenge,"
+ },
+ {
+ "start": 549.34,
+ "end": 550.32,
+ "text": "how"
+ },
+ {
+ "start": 550.36,
+ "end": 550.6,
+ "text": "can"
+ },
+ {
+ "start": 550.58,
+ "end": 550.7,
+ "text": "we"
+ },
+ {
+ "start": 550.86,
+ "end": 551.2,
+ "text": "scale?"
+ },
+ {
+ "start": 551.48,
+ "end": 552.36,
+ "text": "How"
+ },
+ {
+ "start": 552.34,
+ "end": 552.52,
+ "text": "can"
+ },
+ {
+ "start": 552.5,
+ "end": 552.62,
+ "text": "we"
+ },
+ {
+ "start": 552.68,
+ "end": 552.8,
+ "text": "go"
+ },
+ {
+ "start": 552.82,
+ "end": 553.04,
+ "text": "from"
+ },
+ {
+ "start": 553.02,
+ "end": 553.4,
+ "text": "one"
+ },
+ {
+ "start": 553.42,
+ "end": 553.8,
+ "text": "product"
+ },
+ {
+ "start": 554.16,
+ "end": 554.3,
+ "text": "to"
+ },
+ {
+ "start": 554.36,
+ "end": 554.66,
+ "text": "many"
+ },
+ {
+ "start": 554.68,
+ "end": 555.02,
+ "text": "press"
+ },
+ {
+ "start": 555.22,
+ "end": 555.62,
+ "text": "and"
+ },
+ {
+ "start": 555.58,
+ "end": 555.82,
+ "text": "that's"
+ },
+ {
+ "start": 555.78,
+ "end": 555.94,
+ "text": "what"
+ },
+ {
+ "start": 555.9,
+ "end": 556.14,
+ "text": "we're"
+ },
+ {
+ "start": 556.1,
+ "end": 556.3,
+ "text": "doing"
+ },
+ {
+ "start": 556.28,
+ "end": 556.6,
+ "text": "looking"
+ },
+ {
+ "start": 556.56,
+ "end": 556.76,
+ "text": "right"
+ },
+ {
+ "start": 556.76,
+ "end": 556.98,
+ "text": "now."
+ },
+ {
+ "start": 556.96,
+ "end": 557.5,
+ "text": "Let"
+ },
+ {
+ "start": 557.48,
+ "end": 557.66,
+ "text": "me"
+ },
+ {
+ "start": 557.62,
+ "end": 557.84,
+ "text": "tell"
+ },
+ {
+ "start": 557.8,
+ "end": 557.92,
+ "text": "you"
+ },
+ {
+ "start": 557.9,
+ "end": 558.04,
+ "text": "how"
+ },
+ {
+ "start": 558,
+ "end": 558.22,
+ "text": "we're"
+ },
+ {
+ "start": 558.18,
+ "end": 558.34,
+ "text": "going"
+ },
+ {
+ "start": 558.3,
+ "end": 558.4,
+ "text": "to"
+ },
+ {
+ "start": 558.36,
+ "end": 558.48,
+ "text": "do"
+ },
+ {
+ "start": 558.46,
+ "end": 558.62,
+ "text": "this."
+ },
+ {
+ "start": 558.86,
+ "end": 559.32,
+ "text": "The"
+ },
+ {
+ "start": 559.28,
+ "end": 559.56,
+ "text": "first"
+ },
+ {
+ "start": 559.54,
+ "end": 559.7,
+ "text": "of"
+ },
+ {
+ "start": 559.68,
+ "end": 559.92,
+ "text": "all,"
+ },
+ {
+ "start": 559.94,
+ "end": 560.02,
+ "text": "I"
+ },
+ {
+ "start": 560.02,
+ "end": 560.24,
+ "text": "want"
+ },
+ {
+ "start": 560.2,
+ "end": 560.36,
+ "text": "to"
+ },
+ {
+ "start": 560.32,
+ "end": 560.56,
+ "text": "make"
+ },
+ {
+ "start": 560.52,
+ "end": 560.84,
+ "text": "myself"
+ },
+ {
+ "start": 560.82,
+ "end": 561.28,
+ "text": "clear."
+ },
+ {
+ "start": 561.28,
+ "end": 562,
+ "text": "I'm"
+ },
+ {
+ "start": 562.04,
+ "end": 562.26,
+ "text": "not"
+ },
+ {
+ "start": 562.3,
+ "end": 562.66,
+ "text": "talking"
+ },
+ {
+ "start": 562.62,
+ "end": 562.82,
+ "text": "about"
+ },
+ {
+ "start": 562.8,
+ "end": 563.22,
+ "text": "internet"
+ },
+ {
+ "start": 563.2,
+ "end": 563.34,
+ "text": "of"
+ },
+ {
+ "start": 563.32,
+ "end": 563.62,
+ "text": "things."
+ },
+ {
+ "start": 563.84,
+ "end": 564.6,
+ "text": "I'm"
+ },
+ {
+ "start": 564.58,
+ "end": 564.8,
+ "text": "not"
+ },
+ {
+ "start": 564.76,
+ "end": 565.3,
+ "text": "talking"
+ },
+ {
+ "start": 565.26,
+ "end": 566.14,
+ "text": "about"
+ },
+ {
+ "start": 566.18,
+ "end": 566.64,
+ "text": "creating"
+ },
+ {
+ "start": 566.62,
+ "end": 567.04,
+ "text": "another"
+ },
+ {
+ "start": 567,
+ "end": 567.34,
+ "text": "gadget,"
+ },
+ {
+ "start": 567.66,
+ "end": 567.98,
+ "text": "you"
+ },
+ {
+ "start": 567.96,
+ "end": 568.14,
+ "text": "get"
+ },
+ {
+ "start": 568.18,
+ "end": 568.48,
+ "text": "bored"
+ },
+ {
+ "start": 568.5,
+ "end": 568.7,
+ "text": "with"
+ },
+ {
+ "start": 568.66,
+ "end": 568.84,
+ "text": "and"
+ },
+ {
+ "start": 568.92,
+ "end": 569.18,
+ "text": "throw"
+ },
+ {
+ "start": 569.16,
+ "end": 569.28,
+ "text": "in"
+ },
+ {
+ "start": 569.24,
+ "end": 569.4,
+ "text": "the"
+ },
+ {
+ "start": 569.38,
+ "end": 569.58,
+ "text": "back"
+ },
+ {
+ "start": 569.54,
+ "end": 569.68,
+ "text": "of"
+ },
+ {
+ "start": 569.66,
+ "end": 569.84,
+ "text": "your"
+ },
+ {
+ "start": 570.32,
+ "end": 570.62,
+ "text": "drawer"
+ },
+ {
+ "start": 570.62,
+ "end": 570.78,
+ "text": "and"
+ },
+ {
+ "start": 570.76,
+ "end": 571.06,
+ "text": "forget"
+ },
+ {
+ "start": 571.04,
+ "end": 571.32,
+ "text": "about"
+ },
+ {
+ "start": 571.3,
+ "end": 571.38,
+ "text": "it."
+ },
+ {
+ "start": 571.62,
+ "end": 572.16,
+ "text": "I'm"
+ },
+ {
+ "start": 572.16,
+ "end": 572.56,
+ "text": "talking"
+ },
+ {
+ "start": 572.52,
+ "end": 572.76,
+ "text": "about"
+ },
+ {
+ "start": 572.72,
+ "end": 573.6,
+ "text": "foundational"
+ },
+ {
+ "start": 573.58,
+ "end": 574.3,
+ "text": "important"
+ },
+ {
+ "start": 574.32,
+ "end": 574.82,
+ "text": "principle"
+ },
+ {
+ "start": 574.8,
+ "end": 574.98,
+ "text": "which"
+ },
+ {
+ "start": 574.96,
+ "end": 575.28,
+ "text": "guys"
+ },
+ {
+ "start": 575.32,
+ "end": 575.48,
+ "text": "my"
+ },
+ {
+ "start": 575.54,
+ "end": 575.74,
+ "text": "work"
+ },
+ {
+ "start": 576,
+ "end": 577.42,
+ "text": "technology"
+ },
+ {
+ "start": 577.48,
+ "end": 577.74,
+ "text": "has"
+ },
+ {
+ "start": 577.74,
+ "end": 577.92,
+ "text": "to"
+ },
+ {
+ "start": 577.96,
+ "end": 578.24,
+ "text": "make"
+ },
+ {
+ "start": 578.2,
+ "end": 579.3,
+ "text": "existing"
+ },
+ {
+ "start": 579.26,
+ "end": 579.8,
+ "text": "things"
+ },
+ {
+ "start": 580.18,
+ "end": 580.46,
+ "text": "better."
+ },
+ {
+ "start": 580.74,
+ "end": 581.52,
+ "text": "It's"
+ },
+ {
+ "start": 581.5,
+ "end": 581.76,
+ "text": "made"
+ },
+ {
+ "start": 581.72,
+ "end": 581.92,
+ "text": "them"
+ },
+ {
+ "start": 581.96,
+ "end": 582.28,
+ "text": "better"
+ },
+ {
+ "start": 582.82,
+ "end": 582.98,
+ "text": "by"
+ },
+ {
+ "start": 582.98,
+ "end": 583.54,
+ "text": "connecting"
+ },
+ {
+ "start": 583.52,
+ "end": 583.68,
+ "text": "them"
+ },
+ {
+ "start": 584.02,
+ "end": 584.3,
+ "text": "to"
+ },
+ {
+ "start": 584.34,
+ "end": 584.52,
+ "text": "your"
+ },
+ {
+ "start": 584.52,
+ "end": 585.02,
+ "text": "digital"
+ },
+ {
+ "start": 584.98,
+ "end": 585.34,
+ "text": "life"
+ },
+ {
+ "start": 585.36,
+ "end": 586.24,
+ "text": "and"
+ },
+ {
+ "start": 586.2,
+ "end": 586.54,
+ "text": "add"
+ },
+ {
+ "start": 587.16,
+ "end": 587.34,
+ "text": "new"
+ },
+ {
+ "start": 587.36,
+ "end": 587.96,
+ "text": "usefulness,"
+ },
+ {
+ "start": 588.22,
+ "end": 588.3,
+ "text": "a"
+ },
+ {
+ "start": 588.28,
+ "end": 588.72,
+ "text": "new"
+ },
+ {
+ "start": 588.72,
+ "end": 589.46,
+ "text": "functionality"
+ },
+ {
+ "start": 589.44,
+ "end": 590.32,
+ "text": "when"
+ },
+ {
+ "start": 590.34,
+ "end": 590.86,
+ "text": "remaining"
+ },
+ {
+ "start": 590.82,
+ "end": 591.02,
+ "text": "the"
+ },
+ {
+ "start": 591.04,
+ "end": 591.32,
+ "text": "same"
+ },
+ {
+ "start": 591.28,
+ "end": 591.78,
+ "text": "original"
+ },
+ {
+ "start": 591.84,
+ "end": 592.22,
+ "text": "purpose,"
+ },
+ {
+ "start": 592.44,
+ "end": 592.88,
+ "text": "not"
+ },
+ {
+ "start": 592.92,
+ "end": 593.4,
+ "text": "changing"
+ },
+ {
+ "start": 593.36,
+ "end": 593.46,
+ "text": "it."
+ },
+ {
+ "start": 593.48,
+ "end": 594.96,
+ "text": "This"
+ },
+ {
+ "start": 594.96,
+ "end": 595.4,
+ "text": "jacket"
+ },
+ {
+ "start": 595.38,
+ "end": 595.58,
+ "text": "I'm"
+ },
+ {
+ "start": 595.58,
+ "end": 596.02,
+ "text": "wearing"
+ },
+ {
+ "start": 596.38,
+ "end": 596.74,
+ "text": "can"
+ },
+ {
+ "start": 596.74,
+ "end": 596.92,
+ "text": "can"
+ },
+ {
+ "start": 596.9,
+ "end": 597.16,
+ "text": "to"
+ },
+ {
+ "start": 597.12,
+ "end": 597.26,
+ "text": "my"
+ },
+ {
+ "start": 597.24,
+ "end": 597.62,
+ "text": "mobile"
+ },
+ {
+ "start": 597.68,
+ "end": 598,
+ "text": "phone"
+ },
+ {
+ "start": 597.98,
+ "end": 598.26,
+ "text": "and"
+ },
+ {
+ "start": 598.24,
+ "end": 598.86,
+ "text": "presentation."
+ },
+ {
+ "start": 599.38,
+ "end": 600.16,
+ "text": "It"
+ },
+ {
+ "start": 600.48,
+ "end": 600.7,
+ "text": "means"
+ },
+ {
+ "start": 600.7,
+ "end": 600.78,
+ "text": "a"
+ },
+ {
+ "start": 600.76,
+ "end": 601,
+ "text": "jacket."
+ },
+ {
+ "start": 602.38,
+ "end": 603,
+ "text": "This"
+ },
+ {
+ "start": 603.02,
+ "end": 603.36,
+ "text": "means"
+ },
+ {
+ "start": 603.32,
+ "end": 603.96,
+ "text": "that"
+ },
+ {
+ "start": 603.94,
+ "end": 604.26,
+ "text": "one"
+ },
+ {
+ "start": 604.24,
+ "end": 604.42,
+ "text": "is"
+ },
+ {
+ "start": 604.44,
+ "end": 604.68,
+ "text": "up"
+ },
+ {
+ "start": 604.64,
+ "end": 605,
+ "text": "making"
+ },
+ {
+ "start": 604.98,
+ "end": 605.2,
+ "text": "all"
+ },
+ {
+ "start": 605.18,
+ "end": 605.64,
+ "text": "things"
+ },
+ {
+ "start": 605.74,
+ "end": 606.44,
+ "text": "interactive"
+ },
+ {
+ "start": 606.64,
+ "end": 606.86,
+ "text": "and"
+ },
+ {
+ "start": 606.98,
+ "end": 607.44,
+ "text": "connected."
+ },
+ {
+ "start": 607.58,
+ "end": 608.64,
+ "text": "Everything"
+ },
+ {
+ "start": 608.6,
+ "end": 608.8,
+ "text": "would"
+ },
+ {
+ "start": 608.82,
+ "end": 609.06,
+ "text": "have"
+ },
+ {
+ "start": 609.02,
+ "end": 609.18,
+ "text": "its"
+ },
+ {
+ "start": 609.18,
+ "end": 609.44,
+ "text": "own"
+ },
+ {
+ "start": 609.44,
+ "end": 609.72,
+ "text": "set"
+ },
+ {
+ "start": 609.7,
+ "end": 609.84,
+ "text": "of"
+ },
+ {
+ "start": 609.8,
+ "end": 610.28,
+ "text": "centers,"
+ },
+ {
+ "start": 610.6,
+ "end": 611.28,
+ "text": "displays"
+ },
+ {
+ "start": 611.24,
+ "end": 611.34,
+ "text": "a"
+ },
+ {
+ "start": 611.36,
+ "end": 611.72,
+ "text": "sense"
+ },
+ {
+ "start": 611.7,
+ "end": 611.86,
+ "text": "of"
+ },
+ {
+ "start": 611.82,
+ "end": 612.86,
+ "text": "specific"
+ },
+ {
+ "start": 612.88,
+ "end": 613.06,
+ "text": "for"
+ },
+ {
+ "start": 613.04,
+ "end": 613.34,
+ "text": "those"
+ },
+ {
+ "start": 613.34,
+ "end": 613.66,
+ "text": "things,"
+ },
+ {
+ "start": 613.84,
+ "end": 614.38,
+ "text": "ap"
+ },
+ {
+ "start": 614.56,
+ "end": 614.74,
+ "text": "or"
+ },
+ {
+ "start": 614.72,
+ "end": 614.94,
+ "text": "fun"
+ },
+ {
+ "start": 614.92,
+ "end": 615.2,
+ "text": "issue"
+ },
+ {
+ "start": 615.22,
+ "end": 615.42,
+ "text": "does"
+ },
+ {
+ "start": 615.46,
+ "end": 615.66,
+ "text": "not"
+ },
+ {
+ "start": 615.68,
+ "end": 615.88,
+ "text": "need"
+ },
+ {
+ "start": 615.84,
+ "end": 616.06,
+ "text": "to"
+ },
+ {
+ "start": 616.02,
+ "end": 616.2,
+ "text": "have"
+ },
+ {
+ "start": 616.16,
+ "end": 616.26,
+ "text": "a"
+ },
+ {
+ "start": 616.24,
+ "end": 616.52,
+ "text": "touch"
+ },
+ {
+ "start": 616.5,
+ "end": 616.74,
+ "text": "sense."
+ },
+ {
+ "start": 616.88,
+ "end": 617,
+ "text": "Why"
+ },
+ {
+ "start": 617,
+ "end": 617.2,
+ "text": "would"
+ },
+ {
+ "start": 617.18,
+ "end": 617.3,
+ "text": "he"
+ },
+ {
+ "start": 617.28,
+ "end": 617.44,
+ "text": "have"
+ },
+ {
+ "start": 617.4,
+ "end": 617.52,
+ "text": "a"
+ },
+ {
+ "start": 617.48,
+ "end": 617.96,
+ "text": "texas"
+ },
+ {
+ "start": 617.94,
+ "end": 618.08,
+ "text": "on"
+ },
+ {
+ "start": 618.06,
+ "end": 618.28,
+ "text": "pair"
+ },
+ {
+ "start": 618.26,
+ "end": 618.38,
+ "text": "of"
+ },
+ {
+ "start": 618.36,
+ "end": 618.58,
+ "text": "shoes?"
+ },
+ {
+ "start": 618.84,
+ "end": 619,
+ "text": "You"
+ },
+ {
+ "start": 618.98,
+ "end": 619.24,
+ "text": "have"
+ },
+ {
+ "start": 619.2,
+ "end": 619.32,
+ "text": "a"
+ },
+ {
+ "start": 619.3,
+ "end": 619.7,
+ "text": "sensor."
+ },
+ {
+ "start": 620.04,
+ "end": 620.3,
+ "text": "We"
+ },
+ {
+ "start": 620.3,
+ "end": 620.52,
+ "text": "should"
+ },
+ {
+ "start": 620.56,
+ "end": 620.92,
+ "text": "measure"
+ },
+ {
+ "start": 620.88,
+ "end": 621.08,
+ "text": "your"
+ },
+ {
+ "start": 621.06,
+ "end": 621.88,
+ "text": "running"
+ },
+ {
+ "start": 621.84,
+ "end": 622.4,
+ "text": "performance"
+ },
+ {
+ "start": 622.38,
+ "end": 623.16,
+ "text": "impact"
+ },
+ {
+ "start": 623.36,
+ "end": 623.74,
+ "text": "while"
+ },
+ {
+ "start": 623.7,
+ "end": 624.2,
+ "text": "remaining"
+ },
+ {
+ "start": 624.16,
+ "end": 624.3,
+ "text": "the"
+ },
+ {
+ "start": 624.26,
+ "end": 624.52,
+ "text": "great"
+ },
+ {
+ "start": 624.52,
+ "end": 624.78,
+ "text": "pair"
+ },
+ {
+ "start": 624.74,
+ "end": 624.86,
+ "text": "of"
+ },
+ {
+ "start": 624.84,
+ "end": 625.14,
+ "text": "shoes,"
+ },
+ {
+ "start": 626,
+ "end": 626.76,
+ "text": "makers"
+ },
+ {
+ "start": 626.74,
+ "end": 626.92,
+ "text": "of"
+ },
+ {
+ "start": 626.96,
+ "end": 627.26,
+ "text": "things."
+ },
+ {
+ "start": 627.62,
+ "end": 628.24,
+ "text": "We'll"
+ },
+ {
+ "start": 628.2,
+ "end": 628.48,
+ "text": "have"
+ },
+ {
+ "start": 628.46,
+ "end": 628.6,
+ "text": "to"
+ },
+ {
+ "start": 628.56,
+ "end": 628.94,
+ "text": "start"
+ },
+ {
+ "start": 628.98,
+ "end": 629.36,
+ "text": "thinking"
+ },
+ {
+ "start": 629.34,
+ "end": 629.58,
+ "text": "what"
+ },
+ {
+ "start": 629.62,
+ "end": 629.96,
+ "text": "kind"
+ },
+ {
+ "start": 629.98,
+ "end": 630.1,
+ "text": "of"
+ },
+ {
+ "start": 630.14,
+ "end": 630.56,
+ "text": "digital"
+ },
+ {
+ "start": 630.54,
+ "end": 631.24,
+ "text": "functionality"
+ },
+ {
+ "start": 631.58,
+ "end": 632.04,
+ "text": "they"
+ },
+ {
+ "start": 632.02,
+ "end": 632.34,
+ "text": "have"
+ },
+ {
+ "start": 632.3,
+ "end": 632.44,
+ "text": "to"
+ },
+ {
+ "start": 632.4,
+ "end": 632.88,
+ "text": "offer"
+ },
+ {
+ "start": 632.84,
+ "end": 632.98,
+ "text": "to"
+ },
+ {
+ "start": 632.96,
+ "end": 633.32,
+ "text": "their"
+ },
+ {
+ "start": 633.3,
+ "end": 633.86,
+ "text": "consumers."
+ },
+ {
+ "start": 634.58,
+ "end": 635.18,
+ "text": "They"
+ },
+ {
+ "start": 635.16,
+ "end": 635.38,
+ "text": "will"
+ },
+ {
+ "start": 635.34,
+ "end": 635.56,
+ "text": "have"
+ },
+ {
+ "start": 635.54,
+ "end": 635.68,
+ "text": "to"
+ },
+ {
+ "start": 635.66,
+ "end": 636.04,
+ "text": "become"
+ },
+ {
+ "start": 636.02,
+ "end": 637.06,
+ "text": "service"
+ },
+ {
+ "start": 637.04,
+ "end": 637.5,
+ "text": "providers."
+ },
+ {
+ "start": 637.82,
+ "end": 638.92,
+ "text": "Well"
+ },
+ {
+ "start": 638.92,
+ "end": 639.06,
+ "text": "the"
+ },
+ {
+ "start": 639.04,
+ "end": 639.64,
+ "text": "main"
+ },
+ {
+ "start": 639.66,
+ "end": 639.96,
+ "text": "event"
+ },
+ {
+ "start": 640.82,
+ "end": 641.26,
+ "text": "we"
+ },
+ {
+ "start": 641.24,
+ "end": 641.56,
+ "text": "will"
+ },
+ {
+ "start": 641.52,
+ "end": 641.76,
+ "text": "have"
+ },
+ {
+ "start": 641.72,
+ "end": 641.86,
+ "text": "to"
+ },
+ {
+ "start": 641.84,
+ "end": 642.22,
+ "text": "create"
+ },
+ {
+ "start": 642.18,
+ "end": 642.34,
+ "text": "you"
+ },
+ {
+ "start": 642.32,
+ "end": 642.56,
+ "text": "create"
+ },
+ {
+ "start": 642.54,
+ "end": 642.66,
+ "text": "a"
+ },
+ {
+ "start": 642.62,
+ "end": 643.14,
+ "text": "service"
+ },
+ {
+ "start": 643.12,
+ "end": 643.8,
+ "text": "ecosystem."
+ },
+ {
+ "start": 644.1,
+ "end": 645.02,
+ "text": "Just"
+ },
+ {
+ "start": 645,
+ "end": 645.2,
+ "text": "like"
+ },
+ {
+ "start": 645.16,
+ "end": 645.4,
+ "text": "we've"
+ },
+ {
+ "start": 645.38,
+ "end": 645.62,
+ "text": "done"
+ },
+ {
+ "start": 645.6,
+ "end": 645.78,
+ "text": "for"
+ },
+ {
+ "start": 645.76,
+ "end": 646.12,
+ "text": "mobile"
+ },
+ {
+ "start": 646.18,
+ "end": 646.52,
+ "text": "phones."
+ },
+ {
+ "start": 646.54,
+ "end": 647.06,
+ "text": "What"
+ },
+ {
+ "start": 647.02,
+ "end": 647.18,
+ "text": "you"
+ },
+ {
+ "start": 647.16,
+ "end": 647.32,
+ "text": "have"
+ },
+ {
+ "start": 647.28,
+ "end": 647.4,
+ "text": "an"
+ },
+ {
+ "start": 647.38,
+ "end": 647.64,
+ "text": "apps"
+ },
+ {
+ "start": 647.64,
+ "end": 647.84,
+ "text": "and"
+ },
+ {
+ "start": 647.82,
+ "end": 648.14,
+ "text": "service"
+ },
+ {
+ "start": 648.12,
+ "end": 648.26,
+ "text": "and"
+ },
+ {
+ "start": 648.22,
+ "end": 648.64,
+ "text": "everything"
+ },
+ {
+ "start": 648.6,
+ "end": 648.8,
+ "text": "else"
+ },
+ {
+ "start": 649.26,
+ "end": 649.58,
+ "text": "and"
+ },
+ {
+ "start": 649.56,
+ "end": 649.96,
+ "text": "sometimes"
+ },
+ {
+ "start": 649.92,
+ "end": 650.06,
+ "text": "you"
+ },
+ {
+ "start": 650.02,
+ "end": 650.28,
+ "text": "feel"
+ },
+ {
+ "start": 650.26,
+ "end": 650.56,
+ "text": "making"
+ },
+ {
+ "start": 650.52,
+ "end": 650.82,
+ "text": "phone"
+ },
+ {
+ "start": 650.78,
+ "end": 650.98,
+ "text": "call."
+ },
+ {
+ "start": 652.1,
+ "end": 652.28,
+ "text": "Now"
+ },
+ {
+ "start": 652.28,
+ "end": 652.42,
+ "text": "to"
+ },
+ {
+ "start": 652.42,
+ "end": 652.58,
+ "text": "me"
+ },
+ {
+ "start": 652.54,
+ "end": 652.76,
+ "text": "this,"
+ },
+ {
+ "start": 652.76,
+ "end": 652.88,
+ "text": "I"
+ },
+ {
+ "start": 652.84,
+ "end": 653.02,
+ "text": "guess"
+ },
+ {
+ "start": 653,
+ "end": 653.18,
+ "text": "it's"
+ },
+ {
+ "start": 653.16,
+ "end": 653.74,
+ "text": "impossible."
+ },
+ {
+ "start": 654.08,
+ "end": 654.18,
+ "text": "We"
+ },
+ {
+ "start": 654.34,
+ "end": 654.56,
+ "text": "have"
+ },
+ {
+ "start": 654.52,
+ "end": 654.64,
+ "text": "to"
+ },
+ {
+ "start": 654.6,
+ "end": 654.84,
+ "text": "voice"
+ },
+ {
+ "start": 654.82,
+ "end": 655.52,
+ "text": "fermentation."
+ },
+ {
+ "start": 655.52,
+ "end": 656.44,
+ "text": "We"
+ },
+ {
+ "start": 656.52,
+ "end": 656.74,
+ "text": "have"
+ },
+ {
+ "start": 656.7,
+ "end": 656.84,
+ "text": "to"
+ },
+ {
+ "start": 656.82,
+ "end": 657.1,
+ "text": "avoid"
+ },
+ {
+ "start": 657.62,
+ "end": 658.26,
+ "text": "different"
+ },
+ {
+ "start": 658.22,
+ "end": 658.82,
+ "text": "interfaces"
+ },
+ {
+ "start": 658.82,
+ "end": 658.98,
+ "text": "for"
+ },
+ {
+ "start": 658.96,
+ "end": 659.32,
+ "text": "different"
+ },
+ {
+ "start": 659.28,
+ "end": 659.54,
+ "text": "people"
+ },
+ {
+ "start": 659.52,
+ "end": 659.68,
+ "text": "for"
+ },
+ {
+ "start": 659.66,
+ "end": 660.02,
+ "text": "different"
+ },
+ {
+ "start": 659.98,
+ "end": 660.3,
+ "text": "things."
+ },
+ {
+ "start": 660.28,
+ "end": 660.42,
+ "text": "We"
+ },
+ {
+ "start": 660.42,
+ "end": 660.6,
+ "text": "have"
+ },
+ {
+ "start": 660.56,
+ "end": 660.68,
+ "text": "to"
+ },
+ {
+ "start": 660.64,
+ "end": 660.9,
+ "text": "create"
+ },
+ {
+ "start": 660.86,
+ "end": 661.32,
+ "text": "uniform"
+ },
+ {
+ "start": 661.3,
+ "end": 661.5,
+ "text": "us"
+ },
+ {
+ "start": 661.46,
+ "end": 662.04,
+ "text": "experience."
+ },
+ {
+ "start": 662.18,
+ "end": 662.72,
+ "text": "For"
+ },
+ {
+ "start": 662.68,
+ "end": 662.86,
+ "text": "that"
+ },
+ {
+ "start": 662.84,
+ "end": 663.18,
+ "text": "reason"
+ },
+ {
+ "start": 663.16,
+ "end": 663.26,
+ "text": "we"
+ },
+ {
+ "start": 663.24,
+ "end": 663.42,
+ "text": "have"
+ },
+ {
+ "start": 663.4,
+ "end": 663.52,
+ "text": "to"
+ },
+ {
+ "start": 663.52,
+ "end": 663.94,
+ "text": "create"
+ },
+ {
+ "start": 663.92,
+ "end": 664.3,
+ "text": "a"
+ },
+ {
+ "start": 664.34,
+ "end": 664.84,
+ "text": "single"
+ },
+ {
+ "start": 664.88,
+ "end": 665.48,
+ "text": "computing"
+ },
+ {
+ "start": 665.48,
+ "end": 666,
+ "text": "platform"
+ },
+ {
+ "start": 666.32,
+ "end": 666.98,
+ "text": "which"
+ },
+ {
+ "start": 666.96,
+ "end": 667.4,
+ "text": "powers"
+ },
+ {
+ "start": 667.52,
+ "end": 667.76,
+ "text": "all"
+ },
+ {
+ "start": 667.82,
+ "end": 668.12,
+ "text": "those"
+ },
+ {
+ "start": 668.14,
+ "end": 668.46,
+ "text": "things."
+ },
+ {
+ "start": 668.58,
+ "end": 669.06,
+ "text": "What"
+ },
+ {
+ "start": 669.02,
+ "end": 669.24,
+ "text": "I"
+ },
+ {
+ "start": 669.34,
+ "end": 669.6,
+ "text": "plus"
+ },
+ {
+ "start": 669.6,
+ "end": 669.8,
+ "text": "I'm"
+ },
+ {
+ "start": 669.76,
+ "end": 669.96,
+ "text": "going"
+ },
+ {
+ "start": 669.92,
+ "end": 670.02,
+ "text": "to"
+ },
+ {
+ "start": 670.02,
+ "end": 670.18,
+ "text": "be"
+ },
+ {
+ "start": 670.4,
+ "end": 670.78,
+ "text": "and"
+ },
+ {
+ "start": 670.74,
+ "end": 670.82,
+ "text": "I"
+ },
+ {
+ "start": 670.78,
+ "end": 671,
+ "text": "think"
+ },
+ {
+ "start": 670.96,
+ "end": 671.12,
+ "text": "he"
+ },
+ {
+ "start": 671.1,
+ "end": 671.26,
+ "text": "has"
+ },
+ {
+ "start": 671.3,
+ "end": 671.48,
+ "text": "is"
+ },
+ {
+ "start": 671.46,
+ "end": 671.8,
+ "text": "obvious"
+ },
+ {
+ "start": 672.06,
+ "end": 672.6,
+ "text": "it's"
+ },
+ {
+ "start": 672.56,
+ "end": 672.64,
+ "text": "a"
+ },
+ {
+ "start": 672.62,
+ "end": 672.94,
+ "text": "cloud,"
+ },
+ {
+ "start": 672.96,
+ "end": 673.88,
+ "text": "a"
+ },
+ {
+ "start": 674,
+ "end": 674.3,
+ "text": "cloud"
+ },
+ {
+ "start": 674.34,
+ "end": 674.82,
+ "text": "computing"
+ },
+ {
+ "start": 674.8,
+ "end": 675.44,
+ "text": "now"
+ },
+ {
+ "start": 675.4,
+ "end": 675.56,
+ "text": "you"
+ },
+ {
+ "start": 675.52,
+ "end": 675.78,
+ "text": "cannot"
+ },
+ {
+ "start": 675.76,
+ "end": 676.1,
+ "text": "connect"
+ },
+ {
+ "start": 676.1,
+ "end": 676.34,
+ "text": "things"
+ },
+ {
+ "start": 676.34,
+ "end": 676.76,
+ "text": "directly"
+ },
+ {
+ "start": 676.74,
+ "end": 676.86,
+ "text": "to"
+ },
+ {
+ "start": 676.84,
+ "end": 677.16,
+ "text": "cloud"
+ },
+ {
+ "start": 677.18,
+ "end": 677.6,
+ "text": "obviously."
+ },
+ {
+ "start": 677.9,
+ "end": 678,
+ "text": "So"
+ },
+ {
+ "start": 678.5,
+ "end": 678.74,
+ "text": "do"
+ },
+ {
+ "start": 678.7,
+ "end": 678.86,
+ "text": "you"
+ },
+ {
+ "start": 678.86,
+ "end": 679.1,
+ "text": "have"
+ },
+ {
+ "start": 679.08,
+ "end": 679.2,
+ "text": "to"
+ },
+ {
+ "start": 679.22,
+ "end": 679.36,
+ "text": "do"
+ },
+ {
+ "start": 679.38,
+ "end": 679.52,
+ "text": "you"
+ },
+ {
+ "start": 679.52,
+ "end": 679.7,
+ "text": "have"
+ },
+ {
+ "start": 679.66,
+ "end": 679.8,
+ "text": "to"
+ },
+ {
+ "start": 679.78,
+ "end": 680.2,
+ "text": "develop"
+ },
+ {
+ "start": 680.18,
+ "end": 680.26,
+ "text": "a"
+ },
+ {
+ "start": 680.28,
+ "end": 680.64,
+ "text": "small"
+ },
+ {
+ "start": 680.64,
+ "end": 681.04,
+ "text": "device"
+ },
+ {
+ "start": 681.28,
+ "end": 681.82,
+ "text": "which"
+ },
+ {
+ "start": 681.8,
+ "end": 681.96,
+ "text": "can"
+ },
+ {
+ "start": 681.94,
+ "end": 682.1,
+ "text": "be"
+ },
+ {
+ "start": 682.06,
+ "end": 682.56,
+ "text": "plotted"
+ },
+ {
+ "start": 682.52,
+ "end": 682.72,
+ "text": "and"
+ },
+ {
+ "start": 682.7,
+ "end": 682.94,
+ "text": "told"
+ },
+ {
+ "start": 682.92,
+ "end": 683.04,
+ "text": "the"
+ },
+ {
+ "start": 683.08,
+ "end": 683.42,
+ "text": "things"
+ },
+ {
+ "start": 683.88,
+ "end": 684.06,
+ "text": "and"
+ },
+ {
+ "start": 684.08,
+ "end": 684.3,
+ "text": "make"
+ },
+ {
+ "start": 684.28,
+ "end": 684.44,
+ "text": "them"
+ },
+ {
+ "start": 684.42,
+ "end": 684.76,
+ "text": "connected"
+ },
+ {
+ "start": 684.72,
+ "end": 684.82,
+ "text": "to"
+ },
+ {
+ "start": 684.78,
+ "end": 684.9,
+ "text": "the"
+ },
+ {
+ "start": 684.88,
+ "end": 685.22,
+ "text": "cloud"
+ },
+ {
+ "start": 685.58,
+ "end": 685.74,
+ "text": "to"
+ },
+ {
+ "start": 685.86,
+ "end": 686.08,
+ "text": "look"
+ },
+ {
+ "start": 686.44,
+ "end": 686.64,
+ "text": "their"
+ },
+ {
+ "start": 686.62,
+ "end": 687.1,
+ "text": "potential"
+ },
+ {
+ "start": 687.4,
+ "end": 687.6,
+ "text": "and"
+ },
+ {
+ "start": 687.6,
+ "end": 687.94,
+ "text": "as"
+ },
+ {
+ "start": 687.92,
+ "end": 688.1,
+ "text": "new"
+ },
+ {
+ "start": 688.08,
+ "end": 688.66,
+ "text": "functionality."
+ },
+ {
+ "start": 688.98,
+ "end": 689.08,
+ "text": "So"
+ },
+ {
+ "start": 689.44,
+ "end": 689.64,
+ "text": "let"
+ },
+ {
+ "start": 689.62,
+ "end": 689.8,
+ "text": "me"
+ },
+ {
+ "start": 689.78,
+ "end": 690.02,
+ "text": "show"
+ },
+ {
+ "start": 690.02,
+ "end": 690.22,
+ "text": "for"
+ },
+ {
+ "start": 690.18,
+ "end": 690.32,
+ "text": "the"
+ },
+ {
+ "start": 690.32,
+ "end": 690.56,
+ "text": "first"
+ },
+ {
+ "start": 690.54,
+ "end": 690.86,
+ "text": "time,"
+ },
+ {
+ "start": 690.84,
+ "end": 691.02,
+ "text": "the"
+ },
+ {
+ "start": 690.98,
+ "end": 691.34,
+ "text": "real"
+ },
+ {
+ "start": 691.9,
+ "end": 692.28,
+ "text": "device"
+ },
+ {
+ "start": 692.26,
+ "end": 692.46,
+ "text": "which"
+ },
+ {
+ "start": 692.5,
+ "end": 692.76,
+ "text": "we've"
+ },
+ {
+ "start": 692.74,
+ "end": 693.04,
+ "text": "built,"
+ },
+ {
+ "start": 693.1,
+ "end": 693.36,
+ "text": "we're"
+ },
+ {
+ "start": 693.32,
+ "end": 693.58,
+ "text": "sure"
+ },
+ {
+ "start": 693.54,
+ "end": 693.74,
+ "text": "this"
+ },
+ {
+ "start": 693.7,
+ "end": 693.86,
+ "text": "for"
+ },
+ {
+ "start": 693.82,
+ "end": 693.98,
+ "text": "the"
+ },
+ {
+ "start": 693.96,
+ "end": 694.22,
+ "text": "first"
+ },
+ {
+ "start": 694.24,
+ "end": 694.54,
+ "text": "time,"
+ },
+ {
+ "start": 694.78,
+ "end": 695.86,
+ "text": "that's"
+ },
+ {
+ "start": 695.84,
+ "end": 696,
+ "text": "how"
+ },
+ {
+ "start": 695.96,
+ "end": 696.1,
+ "text": "it"
+ },
+ {
+ "start": 696.08,
+ "end": 696.36,
+ "text": "looks"
+ },
+ {
+ "start": 696.34,
+ "end": 696.56,
+ "text": "like"
+ },
+ {
+ "start": 697.78,
+ "end": 698.32,
+ "text": "and"
+ },
+ {
+ "start": 698.28,
+ "end": 698.36,
+ "text": "a"
+ },
+ {
+ "start": 698.38,
+ "end": 698.8,
+ "text": "small"
+ },
+ {
+ "start": 698.78,
+ "end": 699.18,
+ "text": "device"
+ },
+ {
+ "start": 699.14,
+ "end": 699.34,
+ "text": "which"
+ },
+ {
+ "start": 699.3,
+ "end": 699.42,
+ "text": "you"
+ },
+ {
+ "start": 699.38,
+ "end": 699.56,
+ "text": "would"
+ },
+ {
+ "start": 699.52,
+ "end": 699.64,
+ "text": "be"
+ },
+ {
+ "start": 699.6,
+ "end": 700.04,
+ "text": "connected"
+ },
+ {
+ "start": 700.02,
+ "end": 700.46,
+ "text": "to"
+ },
+ {
+ "start": 700.44,
+ "end": 700.88,
+ "text": "things."
+ },
+ {
+ "start": 701.2,
+ "end": 701.3,
+ "text": "We"
+ },
+ {
+ "start": 701.44,
+ "end": 703.02,
+ "text": "want"
+ },
+ {
+ "start": 702.98,
+ "end": 703.12,
+ "text": "to"
+ },
+ {
+ "start": 703.1,
+ "end": 703.28,
+ "text": "make"
+ },
+ {
+ "start": 703.24,
+ "end": 703.52,
+ "text": "more"
+ },
+ {
+ "start": 703.48,
+ "end": 703.64,
+ "text": "than"
+ },
+ {
+ "start": 703.62,
+ "end": 703.98,
+ "text": "connected"
+ },
+ {
+ "start": 703.94,
+ "end": 704.44,
+ "text": "interactive,"
+ },
+ {
+ "start": 704.62,
+ "end": 705.1,
+ "text": "how"
+ },
+ {
+ "start": 705.08,
+ "end": 705.26,
+ "text": "it's"
+ },
+ {
+ "start": 705.24,
+ "end": 705.44,
+ "text": "going"
+ },
+ {
+ "start": 705.4,
+ "end": 705.5,
+ "text": "to"
+ },
+ {
+ "start": 705.46,
+ "end": 705.7,
+ "text": "work."
+ },
+ {
+ "start": 705.66,
+ "end": 706.18,
+ "text": "So"
+ },
+ {
+ "start": 706.14,
+ "end": 706.32,
+ "text": "on"
+ },
+ {
+ "start": 706.28,
+ "end": 706.48,
+ "text": "the"
+ },
+ {
+ "start": 706.44,
+ "end": 706.66,
+ "text": "back"
+ },
+ {
+ "start": 706.64,
+ "end": 706.8,
+ "text": "you"
+ },
+ {
+ "start": 706.78,
+ "end": 706.96,
+ "text": "have"
+ },
+ {
+ "start": 706.94,
+ "end": 707.02,
+ "text": "a"
+ },
+ {
+ "start": 707,
+ "end": 707.26,
+ "text": "little"
+ },
+ {
+ "start": 707.62,
+ "end": 708.48,
+ "text": "some"
+ },
+ {
+ "start": 708.86,
+ "end": 709.06,
+ "text": "few"
+ },
+ {
+ "start": 709.04,
+ "end": 710.32,
+ "text": "electrodes."
+ },
+ {
+ "start": 710.3,
+ "end": 710.42,
+ "text": "So"
+ },
+ {
+ "start": 710.4,
+ "end": 710.56,
+ "text": "when"
+ },
+ {
+ "start": 710.54,
+ "end": 710.68,
+ "text": "you"
+ },
+ {
+ "start": 710.66,
+ "end": 710.98,
+ "text": "plug"
+ },
+ {
+ "start": 710.94,
+ "end": 711.1,
+ "text": "them"
+ },
+ {
+ "start": 711.08,
+ "end": 711.3,
+ "text": "into"
+ },
+ {
+ "start": 711.28,
+ "end": 711.64,
+ "text": "different"
+ },
+ {
+ "start": 711.64,
+ "end": 711.92,
+ "text": "things"
+ },
+ {
+ "start": 712.32,
+ "end": 713.54,
+ "text": "like"
+ },
+ {
+ "start": 713.52,
+ "end": 713.84,
+ "text": "here,"
+ },
+ {
+ "start": 714.86,
+ "end": 715.18,
+ "text": "the"
+ },
+ {
+ "start": 715.16,
+ "end": 715.44,
+ "text": "device"
+ },
+ {
+ "start": 715.44,
+ "end": 715.56,
+ "text": "is"
+ },
+ {
+ "start": 715.54,
+ "end": 715.66,
+ "text": "the"
+ },
+ {
+ "start": 715.62,
+ "end": 716.18,
+ "text": "recognize"
+ },
+ {
+ "start": 716.32,
+ "end": 716.56,
+ "text": "where"
+ },
+ {
+ "start": 716.58,
+ "end": 716.72,
+ "text": "you"
+ },
+ {
+ "start": 716.74,
+ "end": 716.98,
+ "text": "plug"
+ },
+ {
+ "start": 716.98,
+ "end": 717.1,
+ "text": "in"
+ },
+ {
+ "start": 717.12,
+ "end": 717.26,
+ "text": "them"
+ },
+ {
+ "start": 717.54,
+ "end": 717.86,
+ "text": "and"
+ },
+ {
+ "start": 717.82,
+ "end": 717.98,
+ "text": "then"
+ },
+ {
+ "start": 717.94,
+ "end": 718.68,
+ "text": "re-configure"
+ },
+ {
+ "start": 718.64,
+ "end": 719.14,
+ "text": "itself"
+ },
+ {
+ "start": 719.6,
+ "end": 719.78,
+ "text": "to"
+ },
+ {
+ "start": 720.3,
+ "end": 720.78,
+ "text": "enable"
+ },
+ {
+ "start": 720.76,
+ "end": 721.36,
+ "text": "specific"
+ },
+ {
+ "start": 721.32,
+ "end": 721.86,
+ "text": "functionality"
+ },
+ {
+ "start": 721.84,
+ "end": 722.08,
+ "text": "for"
+ },
+ {
+ "start": 722.08,
+ "end": 722.28,
+ "text": "this"
+ },
+ {
+ "start": 722.32,
+ "end": 722.86,
+ "text": "particular"
+ },
+ {
+ "start": 722.82,
+ "end": 723.06,
+ "text": "thing."
+ },
+ {
+ "start": 723.28,
+ "end": 723.38,
+ "text": "We"
+ },
+ {
+ "start": 724,
+ "end": 724.3,
+ "text": "would"
+ },
+ {
+ "start": 724.26,
+ "end": 724.46,
+ "text": "like"
+ },
+ {
+ "start": 724.44,
+ "end": 724.56,
+ "text": "to"
+ },
+ {
+ "start": 724.54,
+ "end": 724.74,
+ "text": "give"
+ },
+ {
+ "start": 724.72,
+ "end": 724.92,
+ "text": "this"
+ },
+ {
+ "start": 724.88,
+ "end": 725.24,
+ "text": "device"
+ },
+ {
+ "start": 725.22,
+ "end": 725.38,
+ "text": "to"
+ },
+ {
+ "start": 725.36,
+ "end": 725.62,
+ "text": "make"
+ },
+ {
+ "start": 725.58,
+ "end": 725.78,
+ "text": "us"
+ },
+ {
+ "start": 725.76,
+ "end": 725.92,
+ "text": "of"
+ },
+ {
+ "start": 725.92,
+ "end": 726.18,
+ "text": "things."
+ },
+ {
+ "start": 726.44,
+ "end": 726.84,
+ "text": "People"
+ },
+ {
+ "start": 726.8,
+ "end": 726.98,
+ "text": "can"
+ },
+ {
+ "start": 726.94,
+ "end": 727.12,
+ "text": "make"
+ },
+ {
+ "start": 727.08,
+ "end": 727.24,
+ "text": "your"
+ },
+ {
+ "start": 727.22,
+ "end": 727.76,
+ "text": "clothing"
+ },
+ {
+ "start": 727.74,
+ "end": 728.16,
+ "text": "and"
+ },
+ {
+ "start": 728.12,
+ "end": 728.64,
+ "text": "furniture."
+ },
+ {
+ "start": 728.62,
+ "end": 729.04,
+ "text": "So"
+ },
+ {
+ "start": 729.02,
+ "end": 729.22,
+ "text": "so"
+ },
+ {
+ "start": 729.2,
+ "end": 729.38,
+ "text": "they"
+ },
+ {
+ "start": 729.36,
+ "end": 729.52,
+ "text": "can"
+ },
+ {
+ "start": 729.52,
+ "end": 729.74,
+ "text": "use"
+ },
+ {
+ "start": 729.7,
+ "end": 729.86,
+ "text": "it"
+ },
+ {
+ "start": 729.84,
+ "end": 730.06,
+ "text": "just"
+ },
+ {
+ "start": 730.04,
+ "end": 730.2,
+ "text": "like"
+ },
+ {
+ "start": 730.16,
+ "end": 730.38,
+ "text": "they"
+ },
+ {
+ "start": 730.38,
+ "end": 730.6,
+ "text": "use"
+ },
+ {
+ "start": 730.88,
+ "end": 730.96,
+ "text": "a"
+ },
+ {
+ "start": 731.5,
+ "end": 731.86,
+ "text": "button"
+ },
+ {
+ "start": 731.88,
+ "end": 732.2,
+ "text": "was"
+ },
+ {
+ "start": 732.22,
+ "end": 732.6,
+ "text": "zipper"
+ },
+ {
+ "start": 733.2,
+ "end": 733.36,
+ "text": "and"
+ },
+ {
+ "start": 733.32,
+ "end": 733.5,
+ "text": "was"
+ },
+ {
+ "start": 733.5,
+ "end": 733.64,
+ "text": "he"
+ },
+ {
+ "start": 733.66,
+ "end": 733.84,
+ "text": "going"
+ },
+ {
+ "start": 733.8,
+ "end": 733.9,
+ "text": "to"
+ },
+ {
+ "start": 733.88,
+ "end": 734.08,
+ "text": "make"
+ },
+ {
+ "start": 734.04,
+ "end": 734.22,
+ "text": "with"
+ },
+ {
+ "start": 734.2,
+ "end": 734.4,
+ "text": "them"
+ },
+ {
+ "start": 734.38,
+ "end": 734.56,
+ "text": "it's"
+ },
+ {
+ "start": 734.54,
+ "end": 734.7,
+ "text": "up"
+ },
+ {
+ "start": 734.72,
+ "end": 734.88,
+ "text": "to"
+ },
+ {
+ "start": 734.9,
+ "end": 735.14,
+ "text": "them."
+ },
+ {
+ "start": 735.24,
+ "end": 735.38,
+ "text": "We"
+ },
+ {
+ "start": 735.42,
+ "end": 735.66,
+ "text": "don't"
+ },
+ {
+ "start": 735.72,
+ "end": 735.96,
+ "text": "want"
+ },
+ {
+ "start": 735.94,
+ "end": 736.08,
+ "text": "to"
+ },
+ {
+ "start": 736.1,
+ "end": 736.7,
+ "text": "dictate"
+ },
+ {
+ "start": 736.72,
+ "end": 736.86,
+ "text": "the"
+ },
+ {
+ "start": 736.86,
+ "end": 737.14,
+ "text": "use"
+ },
+ {
+ "start": 737.14,
+ "end": 737.54,
+ "text": "cases."
+ },
+ {
+ "start": 737.64,
+ "end": 737.8,
+ "text": "We"
+ },
+ {
+ "start": 737.78,
+ "end": 737.98,
+ "text": "would"
+ },
+ {
+ "start": 738,
+ "end": 738.24,
+ "text": "like"
+ },
+ {
+ "start": 738.24,
+ "end": 738.38,
+ "text": "to"
+ },
+ {
+ "start": 738.4,
+ "end": 738.54,
+ "text": "let"
+ },
+ {
+ "start": 738.96,
+ "end": 739.52,
+ "text": "people"
+ },
+ {
+ "start": 739.48,
+ "end": 739.68,
+ "text": "who"
+ },
+ {
+ "start": 739.66,
+ "end": 739.94,
+ "text": "make"
+ },
+ {
+ "start": 739.9,
+ "end": 740.16,
+ "text": "those"
+ },
+ {
+ "start": 740.12,
+ "end": 740.46,
+ "text": "things"
+ },
+ {
+ "start": 740.42,
+ "end": 741.36,
+ "text": "artists"
+ },
+ {
+ "start": 741.44,
+ "end": 741.62,
+ "text": "and"
+ },
+ {
+ "start": 741.58,
+ "end": 742.1,
+ "text": "designers"
+ },
+ {
+ "start": 742.42,
+ "end": 743.1,
+ "text": "brands"
+ },
+ {
+ "start": 743.08,
+ "end": 743.28,
+ "text": "and"
+ },
+ {
+ "start": 743.26,
+ "end": 743.82,
+ "text": "craftsmen"
+ },
+ {
+ "start": 744.26,
+ "end": 744.4,
+ "text": "to"
+ },
+ {
+ "start": 744.4,
+ "end": 744.9,
+ "text": "imagine"
+ },
+ {
+ "start": 744.88,
+ "end": 745.06,
+ "text": "and"
+ },
+ {
+ "start": 745.02,
+ "end": 745.36,
+ "text": "create"
+ },
+ {
+ "start": 745.32,
+ "end": 745.5,
+ "text": "this"
+ },
+ {
+ "start": 745.56,
+ "end": 745.76,
+ "text": "new"
+ },
+ {
+ "start": 745.72,
+ "end": 746.14,
+ "text": "world"
+ },
+ {
+ "start": 746.5,
+ "end": 747.7,
+ "text": "where"
+ },
+ {
+ "start": 747.68,
+ "end": 748,
+ "text": "things"
+ },
+ {
+ "start": 747.98,
+ "end": 748.16,
+ "text": "are"
+ },
+ {
+ "start": 748.12,
+ "end": 748.6,
+ "text": "connected"
+ },
+ {
+ "start": 748.58,
+ "end": 749.54,
+ "text": "and"
+ },
+ {
+ "start": 749.5,
+ "end": 749.64,
+ "text": "I"
+ },
+ {
+ "start": 749.62,
+ "end": 749.78,
+ "text": "was"
+ },
+ {
+ "start": 749.78,
+ "end": 750.14,
+ "text": "always"
+ },
+ {
+ "start": 750.16,
+ "end": 750.34,
+ "text": "new"
+ },
+ {
+ "start": 750.32,
+ "end": 750.8,
+ "text": "exciting"
+ },
+ {
+ "start": 750.76,
+ "end": 751.12,
+ "text": "dual"
+ },
+ {
+ "start": 751.1,
+ "end": 751.74,
+ "text": "functionality."
+ },
+ {
+ "start": 751.8,
+ "end": 752.18,
+ "text": "We"
+ },
+ {
+ "start": 752.28,
+ "end": 752.6,
+ "text": "don't"
+ },
+ {
+ "start": 752.58,
+ "end": 752.82,
+ "text": "need"
+ },
+ {
+ "start": 752.86,
+ "end": 753.28,
+ "text": "keyboards"
+ },
+ {
+ "start": 753.6,
+ "end": 754.5,
+ "text": "and"
+ },
+ {
+ "start": 754.48,
+ "end": 754.94,
+ "text": "scream"
+ },
+ {
+ "start": 755.28,
+ "end": 755.48,
+ "text": "and"
+ },
+ {
+ "start": 755.46,
+ "end": 755.92,
+ "text": "moses"
+ },
+ {
+ "start": 755.88,
+ "end": 755.98,
+ "text": "to"
+ },
+ {
+ "start": 755.96,
+ "end": 756.3,
+ "text": "interact"
+ },
+ {
+ "start": 756.36,
+ "end": 756.46,
+ "text": "a"
+ },
+ {
+ "start": 756.48,
+ "end": 756.84,
+ "text": "computer."
+ },
+ {
+ "start": 757.08,
+ "end": 757.18,
+ "text": "So"
+ },
+ {
+ "start": 757.96,
+ "end": 758.28,
+ "text": "been"
+ },
+ {
+ "start": 758.26,
+ "end": 758.56,
+ "text": "working"
+ },
+ {
+ "start": 758.52,
+ "end": 758.64,
+ "text": "on"
+ },
+ {
+ "start": 758.6,
+ "end": 758.78,
+ "text": "this"
+ },
+ {
+ "start": 758.78,
+ "end": 759.1,
+ "text": "idea"
+ },
+ {
+ "start": 759.08,
+ "end": 759.26,
+ "text": "for"
+ },
+ {
+ "start": 759.22,
+ "end": 759.62,
+ "text": "twenty"
+ },
+ {
+ "start": 759.6,
+ "end": 759.8,
+ "text": "years"
+ },
+ {
+ "start": 760.14,
+ "end": 760.6,
+ "text": "and"
+ },
+ {
+ "start": 760.58,
+ "end": 760.78,
+ "text": "now"
+ },
+ {
+ "start": 760.76,
+ "end": 761,
+ "text": "it's"
+ },
+ {
+ "start": 761.04,
+ "end": 761.42,
+ "text": "taking"
+ },
+ {
+ "start": 761.44,
+ "end": 761.8,
+ "text": "shape,"
+ },
+ {
+ "start": 762.06,
+ "end": 762.48,
+ "text": "another"
+ },
+ {
+ "start": 762.44,
+ "end": 762.84,
+ "text": "taking"
+ },
+ {
+ "start": 762.82,
+ "end": 763.16,
+ "text": "shape,"
+ },
+ {
+ "start": 763.12,
+ "end": 763.28,
+ "text": "what"
+ },
+ {
+ "start": 763.26,
+ "end": 763.5,
+ "text": "you're"
+ },
+ {
+ "start": 763.46,
+ "end": 764.06,
+ "text": "realizing"
+ },
+ {
+ "start": 764.32,
+ "end": 765.14,
+ "text": "that"
+ },
+ {
+ "start": 765.2,
+ "end": 765.54,
+ "text": "I"
+ },
+ {
+ "start": 765.64,
+ "end": 765.96,
+ "text": "always"
+ },
+ {
+ "start": 765.92,
+ "end": 766.12,
+ "text": "saw"
+ },
+ {
+ "start": 766.1,
+ "end": 766.28,
+ "text": "them"
+ },
+ {
+ "start": 766.3,
+ "end": 766.64,
+ "text": "working"
+ },
+ {
+ "start": 766.62,
+ "end": 767.02,
+ "text": "computer"
+ },
+ {
+ "start": 767.04,
+ "end": 767.16,
+ "text": "to"
+ },
+ {
+ "start": 767.14,
+ "end": 767.26,
+ "text": "the"
+ },
+ {
+ "start": 767.22,
+ "end": 767.52,
+ "text": "faces."
+ },
+ {
+ "start": 767.48,
+ "end": 767.6,
+ "text": "I"
+ },
+ {
+ "start": 767.62,
+ "end": 767.96,
+ "text": "always"
+ },
+ {
+ "start": 767.94,
+ "end": 768.12,
+ "text": "tell"
+ },
+ {
+ "start": 768.14,
+ "end": 768.46,
+ "text": "myself"
+ },
+ {
+ "start": 768.44,
+ "end": 768.6,
+ "text": "as"
+ },
+ {
+ "start": 768.56,
+ "end": 769.02,
+ "text": "interaction"
+ },
+ {
+ "start": 769,
+ "end": 769.42,
+ "text": "designer"
+ },
+ {
+ "start": 769.62,
+ "end": 770.28,
+ "text": "but"
+ },
+ {
+ "start": 770.24,
+ "end": 770.4,
+ "text": "then"
+ },
+ {
+ "start": 770.36,
+ "end": 771.1,
+ "text": "realizing"
+ },
+ {
+ "start": 771.08,
+ "end": 772,
+ "text": "that"
+ },
+ {
+ "start": 771.98,
+ "end": 772.16,
+ "text": "I'm"
+ },
+ {
+ "start": 772.22,
+ "end": 772.46,
+ "text": "not"
+ },
+ {
+ "start": 772.76,
+ "end": 773.02,
+ "text": "but"
+ },
+ {
+ "start": 773.08,
+ "end": 773.64,
+ "text": "interface"
+ },
+ {
+ "start": 773.92,
+ "end": 774.3,
+ "text": "what"
+ },
+ {
+ "start": 774.26,
+ "end": 774.5,
+ "text": "ever"
+ },
+ {
+ "start": 774.46,
+ "end": 774.96,
+ "text": "realize"
+ },
+ {
+ "start": 774.94,
+ "end": 775.1,
+ "text": "at"
+ },
+ {
+ "start": 775.18,
+ "end": 775.34,
+ "text": "me"
+ },
+ {
+ "start": 775.98,
+ "end": 776.18,
+ "text": "and"
+ },
+ {
+ "start": 776.2,
+ "end": 776.44,
+ "text": "my"
+ },
+ {
+ "start": 776.48,
+ "end": 776.78,
+ "text": "team"
+ },
+ {
+ "start": 777.16,
+ "end": 779.1,
+ "text": "will"
+ },
+ {
+ "start": 779.06,
+ "end": 779.2,
+ "text": "be"
+ },
+ {
+ "start": 779.24,
+ "end": 779.46,
+ "text": "the"
+ },
+ {
+ "start": 779.42,
+ "end": 779.62,
+ "text": "new"
+ },
+ {
+ "start": 779.72,
+ "end": 780.06,
+ "text": "kind"
+ },
+ {
+ "start": 780.04,
+ "end": 780.18,
+ "text": "of"
+ },
+ {
+ "start": 780.16,
+ "end": 780.6,
+ "text": "computer"
+ },
+ {
+ "start": 780.92,
+ "end": 781.18,
+ "text": "an"
+ },
+ {
+ "start": 781.26,
+ "end": 781.86,
+ "text": "ambiance"
+ },
+ {
+ "start": 781.84,
+ "end": 782.28,
+ "text": "computer."
+ },
+ {
+ "start": 782.26,
+ "end": 783.1,
+ "text": "Thank"
+ },
+ {
+ "start": 783.08,
+ "end": 783.2,
+ "text": "you."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 7.96,
+ "end": 15.3,
+ "speaker": "TBC 0"
+ },
+ {
+ "id": 1,
+ "start": 15.54,
+ "end": 20.52,
+ "speaker": "TBC 1"
+ },
+ {
+ "id": 2,
+ "start": 20.78,
+ "end": 29.74,
+ "speaker": "TBC 2"
+ },
+ {
+ "id": 3,
+ "start": 30.48,
+ "end": 38.96,
+ "speaker": "TBC 3"
+ },
+ {
+ "id": 4,
+ "start": 39.2,
+ "end": 48.36,
+ "speaker": "TBC 4"
+ },
+ {
+ "id": 5,
+ "start": 48.72,
+ "end": 50.34,
+ "speaker": "TBC 5"
+ },
+ {
+ "id": 6,
+ "start": 50.32,
+ "end": 52.18,
+ "speaker": "TBC 6"
+ },
+ {
+ "id": 7,
+ "start": 52.54,
+ "end": 64.76,
+ "speaker": "TBC 7"
+ },
+ {
+ "id": 8,
+ "start": 64.98,
+ "end": 66.86,
+ "speaker": "TBC 8"
+ },
+ {
+ "id": 9,
+ "start": 66.82,
+ "end": 70,
+ "speaker": "TBC 9"
+ },
+ {
+ "id": 10,
+ "start": 69.96,
+ "end": 72.5,
+ "speaker": "TBC 10"
+ },
+ {
+ "id": 11,
+ "start": 72.7,
+ "end": 74.26,
+ "speaker": "TBC 11"
+ },
+ {
+ "id": 12,
+ "start": 74.28,
+ "end": 76.42,
+ "speaker": "TBC 12"
+ },
+ {
+ "id": 13,
+ "start": 76.7,
+ "end": 78.6,
+ "speaker": "TBC 13"
+ },
+ {
+ "id": 14,
+ "start": 79.38,
+ "end": 80.56,
+ "speaker": "TBC 14"
+ },
+ {
+ "id": 15,
+ "start": 81.14,
+ "end": 83.38,
+ "speaker": "TBC 15"
+ },
+ {
+ "id": 16,
+ "start": 83.4,
+ "end": 84.44,
+ "speaker": "TBC 16"
+ },
+ {
+ "id": 17,
+ "start": 84.66,
+ "end": 86.02,
+ "speaker": "TBC 17"
+ },
+ {
+ "id": 18,
+ "start": 87.36,
+ "end": 88.58,
+ "speaker": "TBC 18"
+ },
+ {
+ "id": 19,
+ "start": 89.12,
+ "end": 95.98,
+ "speaker": "TBC 19"
+ },
+ {
+ "id": 20,
+ "start": 96.32,
+ "end": 98.12,
+ "speaker": "TBC 20"
+ },
+ {
+ "id": 21,
+ "start": 98.12,
+ "end": 100.28,
+ "speaker": "TBC 21"
+ },
+ {
+ "id": 22,
+ "start": 100.56,
+ "end": 106.38,
+ "speaker": "TBC 22"
+ },
+ {
+ "id": 23,
+ "start": 106.68,
+ "end": 115.12,
+ "speaker": "TBC 23"
+ },
+ {
+ "id": 24,
+ "start": 115.32,
+ "end": 117.64,
+ "speaker": "TBC 24"
+ },
+ {
+ "id": 25,
+ "start": 117.84,
+ "end": 129.4,
+ "speaker": "TBC 25"
+ },
+ {
+ "id": 26,
+ "start": 129.36,
+ "end": 136.84,
+ "speaker": "TBC 26"
+ },
+ {
+ "id": 27,
+ "start": 137.08,
+ "end": 138.78,
+ "speaker": "TBC 27"
+ },
+ {
+ "id": 28,
+ "start": 140.08,
+ "end": 143.76,
+ "speaker": "TBC 28"
+ },
+ {
+ "id": 29,
+ "start": 144.04,
+ "end": 150.38,
+ "speaker": "TBC 29"
+ },
+ {
+ "id": 30,
+ "start": 150.66,
+ "end": 153.38,
+ "speaker": "TBC 30"
+ },
+ {
+ "id": 31,
+ "start": 153.46,
+ "end": 166.64,
+ "speaker": "TBC 31"
+ },
+ {
+ "id": 32,
+ "start": 166.62,
+ "end": 176.36,
+ "speaker": "TBC 32"
+ },
+ {
+ "id": 33,
+ "start": 176.58,
+ "end": 185.08,
+ "speaker": "TBC 33"
+ },
+ {
+ "id": 34,
+ "start": 185.34,
+ "end": 192.36,
+ "speaker": "TBC 34"
+ },
+ {
+ "id": 35,
+ "start": 193.1,
+ "end": 196.88,
+ "speaker": "TBC 35"
+ },
+ {
+ "id": 36,
+ "start": 196.86,
+ "end": 200.32,
+ "speaker": "TBC 36"
+ },
+ {
+ "id": 37,
+ "start": 200.52,
+ "end": 201.58,
+ "speaker": "TBC 37"
+ },
+ {
+ "id": 38,
+ "start": 202.78,
+ "end": 210.94,
+ "speaker": "TBC 38"
+ },
+ {
+ "id": 39,
+ "start": 215.36,
+ "end": 224.06,
+ "speaker": "TBC 39"
+ },
+ {
+ "id": 40,
+ "start": 227.38,
+ "end": 231.32,
+ "speaker": "TBC 40"
+ },
+ {
+ "id": 41,
+ "start": 231.3,
+ "end": 245.48,
+ "speaker": "TBC 41"
+ },
+ {
+ "id": 42,
+ "start": 248.3,
+ "end": 250.22,
+ "speaker": "TBC 42"
+ },
+ {
+ "id": 43,
+ "start": 250.18,
+ "end": 261.12,
+ "speaker": "TBC 43"
+ },
+ {
+ "id": 44,
+ "start": 261.42,
+ "end": 266.18,
+ "speaker": "TBC 44"
+ },
+ {
+ "id": 45,
+ "start": 266.46,
+ "end": 274.36,
+ "speaker": "TBC 45"
+ },
+ {
+ "id": 46,
+ "start": 274.34,
+ "end": 280.18,
+ "speaker": "TBC 46"
+ },
+ {
+ "id": 47,
+ "start": 280.16,
+ "end": 283.34,
+ "speaker": "TBC 47"
+ },
+ {
+ "id": 48,
+ "start": 283.8,
+ "end": 290.76,
+ "speaker": "TBC 48"
+ },
+ {
+ "id": 49,
+ "start": 290.86,
+ "end": 301.5,
+ "speaker": "TBC 49"
+ },
+ {
+ "id": 50,
+ "start": 301.48,
+ "end": 301.64,
+ "speaker": "TBC 50"
+ },
+ {
+ "id": 51,
+ "start": 301.6,
+ "end": 304.78,
+ "speaker": "TBC 51"
+ },
+ {
+ "id": 52,
+ "start": 304.74,
+ "end": 315.54,
+ "speaker": "TBC 52"
+ },
+ {
+ "id": 53,
+ "start": 315.96,
+ "end": 317.86,
+ "speaker": "TBC 53"
+ },
+ {
+ "id": 54,
+ "start": 318.16,
+ "end": 323.28,
+ "speaker": "TBC 54"
+ },
+ {
+ "id": 55,
+ "start": 323.5,
+ "end": 328.78,
+ "speaker": "TBC 55"
+ },
+ {
+ "id": 56,
+ "start": 328.84,
+ "end": 330.8,
+ "speaker": "TBC 56"
+ },
+ {
+ "id": 57,
+ "start": 331.12,
+ "end": 334.92,
+ "speaker": "TBC 57"
+ },
+ {
+ "id": 58,
+ "start": 335.14,
+ "end": 338.2,
+ "speaker": "TBC 58"
+ },
+ {
+ "id": 59,
+ "start": 338.16,
+ "end": 345.7,
+ "speaker": "TBC 59"
+ },
+ {
+ "id": 60,
+ "start": 346.6,
+ "end": 349.96,
+ "speaker": "TBC 60"
+ },
+ {
+ "id": 61,
+ "start": 350.32,
+ "end": 351.46,
+ "speaker": "TBC 61"
+ },
+ {
+ "id": 62,
+ "start": 351.42,
+ "end": 364.58,
+ "speaker": "TBC 62"
+ },
+ {
+ "id": 63,
+ "start": 365.02,
+ "end": 371.86,
+ "speaker": "TBC 63"
+ },
+ {
+ "id": 64,
+ "start": 371.84,
+ "end": 380.4,
+ "speaker": "TBC 64"
+ },
+ {
+ "id": 65,
+ "start": 380.68,
+ "end": 383.66,
+ "speaker": "TBC 65"
+ },
+ {
+ "id": 66,
+ "start": 383.84,
+ "end": 390.96,
+ "speaker": "TBC 66"
+ },
+ {
+ "id": 67,
+ "start": 391.2,
+ "end": 395.5,
+ "speaker": "TBC 67"
+ },
+ {
+ "id": 68,
+ "start": 395.84,
+ "end": 400.84,
+ "speaker": "TBC 68"
+ },
+ {
+ "id": 69,
+ "start": 400.82,
+ "end": 404.84,
+ "speaker": "TBC 69"
+ },
+ {
+ "id": 70,
+ "start": 404.88,
+ "end": 425.56,
+ "speaker": "TBC 70"
+ },
+ {
+ "id": 71,
+ "start": 425.84,
+ "end": 436.08,
+ "speaker": "TBC 71"
+ },
+ {
+ "id": 72,
+ "start": 436.36,
+ "end": 441.94,
+ "speaker": "TBC 72"
+ },
+ {
+ "id": 73,
+ "start": 442.24,
+ "end": 449.62,
+ "speaker": "TBC 73"
+ },
+ {
+ "id": 74,
+ "start": 449.6,
+ "end": 450.96,
+ "speaker": "TBC 74"
+ },
+ {
+ "id": 75,
+ "start": 451.16,
+ "end": 463.56,
+ "speaker": "TBC 75"
+ },
+ {
+ "id": 76,
+ "start": 463.52,
+ "end": 464.04,
+ "speaker": "TBC 76"
+ },
+ {
+ "id": 77,
+ "start": 464.24,
+ "end": 470.26,
+ "speaker": "TBC 77"
+ },
+ {
+ "id": 78,
+ "start": 470.58,
+ "end": 478.44,
+ "speaker": "TBC 78"
+ },
+ {
+ "id": 79,
+ "start": 478.48,
+ "end": 483.78,
+ "speaker": "TBC 79"
+ },
+ {
+ "id": 80,
+ "start": 483.8,
+ "end": 487.88,
+ "speaker": "TBC 80"
+ },
+ {
+ "id": 81,
+ "start": 487.84,
+ "end": 493.52,
+ "speaker": "TBC 81"
+ },
+ {
+ "id": 82,
+ "start": 493.82,
+ "end": 505.56,
+ "speaker": "TBC 82"
+ },
+ {
+ "id": 83,
+ "start": 505.56,
+ "end": 510.16,
+ "speaker": "TBC 83"
+ },
+ {
+ "id": 84,
+ "start": 510.12,
+ "end": 511.58,
+ "speaker": "TBC 84"
+ },
+ {
+ "id": 85,
+ "start": 511.58,
+ "end": 512.12,
+ "speaker": "TBC 85"
+ },
+ {
+ "id": 86,
+ "start": 512.1,
+ "end": 518.26,
+ "speaker": "TBC 86"
+ },
+ {
+ "id": 87,
+ "start": 518.24,
+ "end": 522.08,
+ "speaker": "TBC 87"
+ },
+ {
+ "id": 88,
+ "start": 529.06,
+ "end": 530.34,
+ "speaker": "TBC 88"
+ },
+ {
+ "id": 89,
+ "start": 530.86,
+ "end": 530.94,
+ "speaker": "TBC 89"
+ },
+ {
+ "id": 90,
+ "start": 534,
+ "end": 535.82,
+ "speaker": "TBC 90"
+ },
+ {
+ "id": 91,
+ "start": 535.78,
+ "end": 538.32,
+ "speaker": "TBC 91"
+ },
+ {
+ "id": 92,
+ "start": 538.3,
+ "end": 543.62,
+ "speaker": "TBC 92"
+ },
+ {
+ "id": 93,
+ "start": 543.82,
+ "end": 544.4,
+ "speaker": "TBC 93"
+ },
+ {
+ "id": 94,
+ "start": 544.36,
+ "end": 544.76,
+ "speaker": "TBC 94"
+ },
+ {
+ "id": 95,
+ "start": 544.74,
+ "end": 545.88,
+ "speaker": "TBC 95"
+ },
+ {
+ "id": 96,
+ "start": 545.86,
+ "end": 547.68,
+ "speaker": "TBC 96"
+ },
+ {
+ "id": 97,
+ "start": 548.1,
+ "end": 551.2,
+ "speaker": "TBC 97"
+ },
+ {
+ "id": 98,
+ "start": 551.48,
+ "end": 556.98,
+ "speaker": "TBC 98"
+ },
+ {
+ "id": 99,
+ "start": 556.96,
+ "end": 558.62,
+ "speaker": "TBC 99"
+ },
+ {
+ "id": 100,
+ "start": 558.86,
+ "end": 561.28,
+ "speaker": "TBC 100"
+ },
+ {
+ "id": 101,
+ "start": 561.28,
+ "end": 563.62,
+ "speaker": "TBC 101"
+ },
+ {
+ "id": 102,
+ "start": 563.84,
+ "end": 571.38,
+ "speaker": "TBC 102"
+ },
+ {
+ "id": 103,
+ "start": 571.62,
+ "end": 580.46,
+ "speaker": "TBC 103"
+ },
+ {
+ "id": 104,
+ "start": 580.74,
+ "end": 593.46,
+ "speaker": "TBC 104"
+ },
+ {
+ "id": 105,
+ "start": 593.48,
+ "end": 598.86,
+ "speaker": "TBC 105"
+ },
+ {
+ "id": 106,
+ "start": 599.38,
+ "end": 601,
+ "speaker": "TBC 106"
+ },
+ {
+ "id": 107,
+ "start": 602.38,
+ "end": 607.44,
+ "speaker": "TBC 107"
+ },
+ {
+ "id": 108,
+ "start": 607.58,
+ "end": 616.74,
+ "speaker": "TBC 108"
+ },
+ {
+ "id": 109,
+ "start": 616.88,
+ "end": 618.58,
+ "speaker": "TBC 109"
+ },
+ {
+ "id": 110,
+ "start": 618.84,
+ "end": 619.7,
+ "speaker": "TBC 110"
+ },
+ {
+ "id": 111,
+ "start": 620.04,
+ "end": 627.26,
+ "speaker": "TBC 111"
+ },
+ {
+ "id": 112,
+ "start": 627.62,
+ "end": 633.86,
+ "speaker": "TBC 112"
+ },
+ {
+ "id": 113,
+ "start": 634.58,
+ "end": 637.5,
+ "speaker": "TBC 113"
+ },
+ {
+ "id": 114,
+ "start": 637.82,
+ "end": 643.8,
+ "speaker": "TBC 114"
+ },
+ {
+ "id": 115,
+ "start": 644.1,
+ "end": 646.52,
+ "speaker": "TBC 115"
+ },
+ {
+ "id": 116,
+ "start": 646.54,
+ "end": 650.98,
+ "speaker": "TBC 116"
+ },
+ {
+ "id": 117,
+ "start": 652.1,
+ "end": 653.74,
+ "speaker": "TBC 117"
+ },
+ {
+ "id": 118,
+ "start": 654.08,
+ "end": 655.52,
+ "speaker": "TBC 118"
+ },
+ {
+ "id": 119,
+ "start": 655.52,
+ "end": 660.3,
+ "speaker": "TBC 119"
+ },
+ {
+ "id": 120,
+ "start": 660.28,
+ "end": 662.04,
+ "speaker": "TBC 120"
+ },
+ {
+ "id": 121,
+ "start": 662.18,
+ "end": 668.46,
+ "speaker": "TBC 121"
+ },
+ {
+ "id": 122,
+ "start": 668.58,
+ "end": 677.6,
+ "speaker": "TBC 122"
+ },
+ {
+ "id": 123,
+ "start": 677.9,
+ "end": 688.66,
+ "speaker": "TBC 123"
+ },
+ {
+ "id": 124,
+ "start": 688.98,
+ "end": 700.88,
+ "speaker": "TBC 124"
+ },
+ {
+ "id": 125,
+ "start": 701.2,
+ "end": 705.7,
+ "speaker": "TBC 125"
+ },
+ {
+ "id": 126,
+ "start": 705.66,
+ "end": 710.32,
+ "speaker": "TBC 126"
+ },
+ {
+ "id": 127,
+ "start": 710.3,
+ "end": 723.06,
+ "speaker": "TBC 127"
+ },
+ {
+ "id": 128,
+ "start": 723.28,
+ "end": 726.18,
+ "speaker": "TBC 128"
+ },
+ {
+ "id": 129,
+ "start": 726.44,
+ "end": 728.64,
+ "speaker": "TBC 129"
+ },
+ {
+ "id": 130,
+ "start": 728.62,
+ "end": 735.14,
+ "speaker": "TBC 130"
+ },
+ {
+ "id": 131,
+ "start": 735.24,
+ "end": 737.54,
+ "speaker": "TBC 131"
+ },
+ {
+ "id": 132,
+ "start": 737.64,
+ "end": 751.74,
+ "speaker": "TBC 132"
+ },
+ {
+ "id": 133,
+ "start": 751.8,
+ "end": 756.84,
+ "speaker": "TBC 133"
+ },
+ {
+ "id": 134,
+ "start": 757.08,
+ "end": 767.52,
+ "speaker": "TBC 134"
+ },
+ {
+ "id": 135,
+ "start": 767.48,
+ "end": 782.28,
+ "speaker": "TBC 135"
+ },
+ {
+ "id": 136,
+ "start": 782.26,
+ "end": 783.2,
+ "speaker": "TBC 136"
+ }
+ ]
+ },
+ "description": "Ted Talk by Ivan Poupyrev "
+ },
+ {
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "title": "Test Transcript One",
+ "description": "Example of in progress transcript",
+ "url": null,
+ "status": "in-progress",
+ "_id": "f5a8dc8c863243d19528e1eff60d91d9"
+ },
+ {
+ "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
+ "title": "Test Transcript Two",
+ "description": "Example of transcript with an error",
+ "url": null,
+ "status": "error",
+ "errorMessage": "Some meaningfull error message that tells you why the transcript failed, and what to do about it",
+ "_id": "f5a8dc8c863243d19528e1eff60d91d8"
+ },
+ {
+ "_id": "1000cjw29xii80000ird74yb19swa",
+ "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
+ "title": "Soleio Cuervo",
+ "description": "Soleio Cuervo, Former Facebook Product Designer. Interview for PBS Frontline, The Facebook Dilemma",
+ "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Soleio+Cuervo-OIAUfZBd_7w.mp4",
+ "clipName": "The Facebook Dilemma - Soleio Cuervo-OIAUfZBd_7w.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "id": 0,
+ "start": 1.41,
+ "end": 1.63,
+ "text": "So"
+ },
+ {
+ "id": 1,
+ "start": 1.63,
+ "end": 1.94,
+ "text": "tell"
+ },
+ {
+ "id": 2,
+ "start": 2.175,
+ "end": 2.42,
+ "text": "me,"
+ },
+ {
+ "id": 3,
+ "start": 2.72,
+ "end": 2.9,
+ "text": "let’s"
+ },
+ {
+ "id": 4,
+ "start": 2.9,
+ "end": 3.14,
+ "text": "start"
+ },
+ {
+ "id": 5,
+ "start": 3.14,
+ "end": 3.21,
+ "text": "at"
+ },
+ {
+ "id": 6,
+ "start": 3.21,
+ "end": 3.28,
+ "text": "the"
+ },
+ {
+ "id": 7,
+ "start": 3.28,
+ "end": 4.88,
+ "text": "beginning."
+ },
+ {
+ "id": 8,
+ "start": 4.88,
+ "end": 5.11,
+ "text": "How’d"
+ },
+ {
+ "id": 9,
+ "start": 5.11,
+ "end": 5.2,
+ "text": "you"
+ },
+ {
+ "id": 10,
+ "start": 5.2,
+ "end": 5.4,
+ "text": "get"
+ },
+ {
+ "id": 11,
+ "start": 5.4,
+ "end": 5.57,
+ "text": "to"
+ },
+ {
+ "id": 12,
+ "start": 5.57,
+ "end": 6.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 13,
+ "start": 6.04,
+ "end": 6.1,
+ "text": "in"
+ },
+ {
+ "id": 14,
+ "start": 6.1,
+ "end": 6.18,
+ "text": "the"
+ },
+ {
+ "id": 15,
+ "start": 6.18,
+ "end": 7.21,
+ "text": "beginning?"
+ },
+ {
+ "id": 16,
+ "start": 7.21,
+ "end": 7.5,
+ "text": "So"
+ },
+ {
+ "id": 17,
+ "start": 7.5,
+ "end": 7.57,
+ "text": "I"
+ },
+ {
+ "id": 18,
+ "start": 7.57,
+ "end": 7.94,
+ "text": "joined"
+ },
+ {
+ "id": 19,
+ "start": 7.94,
+ "end": 8.01,
+ "text": "the"
+ },
+ {
+ "id": 20,
+ "start": 8.01,
+ "end": 9.01,
+ "text": "company"
+ },
+ {
+ "id": 21,
+ "start": 9.01,
+ "end": 9.16,
+ "text": "in"
+ },
+ {
+ "id": 22,
+ "start": 9.16,
+ "end": 9.25,
+ "text": "the"
+ },
+ {
+ "id": 23,
+ "start": 9.25,
+ "end": 9.49,
+ "text": "late"
+ },
+ {
+ "id": 24,
+ "start": 9.49,
+ "end": 9.73,
+ "text": "summer"
+ },
+ {
+ "id": 25,
+ "start": 9.973333333333334,
+ "end": 10.266666666666667,
+ "text": "of"
+ },
+ {
+ "id": 26,
+ "start": 10.456666666666667,
+ "end": 10.803333333333335,
+ "text": "2005."
+ },
+ {
+ "id": 27,
+ "start": 10.94,
+ "end": 11.34,
+ "text": "At"
+ },
+ {
+ "id": 28,
+ "start": 11.34,
+ "end": 11.43,
+ "text": "the"
+ },
+ {
+ "id": 29,
+ "start": 11.43,
+ "end": 11.7,
+ "text": "time,"
+ },
+ {
+ "id": 30,
+ "start": 11.7,
+ "end": 11.73,
+ "text": "I"
+ },
+ {
+ "id": 31,
+ "start": 11.73,
+ "end": 11.85,
+ "text": "was"
+ },
+ {
+ "id": 32,
+ "start": 11.85,
+ "end": 11.94,
+ "text": "an"
+ },
+ {
+ "id": 33,
+ "start": 11.94,
+ "end": 12.34,
+ "text": "independent"
+ },
+ {
+ "id": 34,
+ "start": 12.34,
+ "end": 12.67,
+ "text": "designer"
+ },
+ {
+ "id": 35,
+ "start": 12.67,
+ "end": 12.76,
+ "text": "and"
+ },
+ {
+ "id": 36,
+ "start": 12.76,
+ "end": 13.29,
+ "text": "developer"
+ },
+ {
+ "id": 37,
+ "start": 13.29,
+ "end": 13.62,
+ "text": "working"
+ },
+ {
+ "id": 38,
+ "start": 13.62,
+ "end": 13.72,
+ "text": "in"
+ },
+ {
+ "id": 39,
+ "start": 13.72,
+ "end": 13.91,
+ "text": "San"
+ },
+ {
+ "id": 40,
+ "start": 14.33,
+ "end": 14.635000000000002,
+ "text": "Francisco."
+ },
+ {
+ "id": 41,
+ "start": 14.94,
+ "end": 15.36,
+ "text": "And"
+ },
+ {
+ "id": 42,
+ "start": 15.36,
+ "end": 15.43,
+ "text": "a"
+ },
+ {
+ "id": 43,
+ "start": 15.43,
+ "end": 15.86,
+ "text": "project"
+ },
+ {
+ "id": 44,
+ "start": 15.86,
+ "end": 15.99,
+ "text": "that"
+ },
+ {
+ "id": 45,
+ "start": 16.0125,
+ "end": 16.1575,
+ "text": "I"
+ },
+ {
+ "id": 46,
+ "start": 16.165,
+ "end": 16.325,
+ "text": "had"
+ },
+ {
+ "id": 47,
+ "start": 16.3175,
+ "end": 16.4925,
+ "text": "shipped"
+ },
+ {
+ "id": 48,
+ "start": 16.47,
+ "end": 16.66,
+ "text": "that"
+ },
+ {
+ "id": 49,
+ "start": 16.66,
+ "end": 18.11,
+ "text": "summer"
+ },
+ {
+ "id": 50,
+ "start": 18.11,
+ "end": 18.35,
+ "text": "caught"
+ },
+ {
+ "id": 51,
+ "start": 18.35,
+ "end": 18.54,
+ "text": "some"
+ },
+ {
+ "id": 52,
+ "start": 18.71,
+ "end": 18.884999999999998,
+ "text": "traction"
+ },
+ {
+ "id": 53,
+ "start": 19.07,
+ "end": 19.23,
+ "text": "in"
+ },
+ {
+ "id": 54,
+ "start": 19.23,
+ "end": 19.31,
+ "text": "the"
+ },
+ {
+ "id": 55,
+ "start": 19.31,
+ "end": 19.62,
+ "text": "design"
+ },
+ {
+ "id": 56,
+ "start": 19.62,
+ "end": 20.13,
+ "text": "community"
+ },
+ {
+ "id": 57,
+ "start": 19.965,
+ "end": 20.354999999999997,
+ "text": "and"
+ },
+ {
+ "id": 58,
+ "start": 20.31,
+ "end": 20.58,
+ "text": "won"
+ },
+ {
+ "id": 59,
+ "start": 20.58,
+ "end": 20.62,
+ "text": "a"
+ },
+ {
+ "id": 60,
+ "start": 20.62,
+ "end": 20.86,
+ "text": "couple"
+ },
+ {
+ "id": 61,
+ "start": 20.86,
+ "end": 20.92,
+ "text": "of"
+ },
+ {
+ "id": 62,
+ "start": 20.92,
+ "end": 22.01,
+ "text": "awards"
+ },
+ {
+ "id": 63,
+ "start": 22.01,
+ "end": 22.17,
+ "text": "and"
+ },
+ {
+ "id": 64,
+ "start": 22.17,
+ "end": 22.54,
+ "text": "somehow"
+ },
+ {
+ "id": 65,
+ "start": 22.54,
+ "end": 22.75,
+ "text": "ended"
+ },
+ {
+ "id": 66,
+ "start": 22.75,
+ "end": 22.89,
+ "text": "up"
+ },
+ {
+ "id": 67,
+ "start": 22.89,
+ "end": 23.03,
+ "text": "on"
+ },
+ {
+ "id": 68,
+ "start": 22.995,
+ "end": 23.270000000000003,
+ "text": "the"
+ },
+ {
+ "id": 69,
+ "start": 23.1,
+ "end": 23.51,
+ "text": "plate"
+ },
+ {
+ "id": 70,
+ "start": 23.51,
+ "end": 23.87,
+ "text": "of"
+ },
+ {
+ "id": 71,
+ "start": 23.87,
+ "end": 23.97,
+ "text": "an"
+ },
+ {
+ "id": 72,
+ "start": 23.97,
+ "end": 24.18,
+ "text": "early"
+ },
+ {
+ "id": 73,
+ "start": 24.18,
+ "end": 24.8,
+ "text": "employee"
+ },
+ {
+ "id": 74,
+ "start": 24.8,
+ "end": 24.91,
+ "text": "at"
+ },
+ {
+ "id": 75,
+ "start": 24.91,
+ "end": 24.99,
+ "text": "the"
+ },
+ {
+ "id": 76,
+ "start": 24.99,
+ "end": 25.43,
+ "text": "company."
+ },
+ {
+ "id": 77,
+ "start": 25.43,
+ "end": 25.57,
+ "text": "And"
+ },
+ {
+ "id": 78,
+ "start": 25.57,
+ "end": 25.68,
+ "text": "so"
+ },
+ {
+ "id": 79,
+ "start": 25.68,
+ "end": 25.76,
+ "text": "they"
+ },
+ {
+ "id": 80,
+ "start": 25.76,
+ "end": 26.05,
+ "text": "reached"
+ },
+ {
+ "id": 81,
+ "start": 26.05,
+ "end": 27.17,
+ "text": "out,"
+ },
+ {
+ "id": 82,
+ "start": 27.17,
+ "end": 27.59,
+ "text": "because"
+ },
+ {
+ "id": 83,
+ "start": 27.59,
+ "end": 27.74,
+ "text": "the"
+ },
+ {
+ "id": 84,
+ "start": 27.74,
+ "end": 27.93,
+ "text": "web"
+ },
+ {
+ "id": 85,
+ "start": 27.93,
+ "end": 28.15,
+ "text": "being"
+ },
+ {
+ "id": 86,
+ "start": 28.15,
+ "end": 28.22,
+ "text": "the"
+ },
+ {
+ "id": 87,
+ "start": 28.22,
+ "end": 28.59,
+ "text": "web"
+ },
+ {
+ "id": 88,
+ "start": 28.59,
+ "end": 28.73,
+ "text": "as"
+ },
+ {
+ "id": 89,
+ "start": 28.73,
+ "end": 28.8,
+ "text": "it"
+ },
+ {
+ "id": 90,
+ "start": 28.8,
+ "end": 28.97,
+ "text": "was"
+ },
+ {
+ "id": 91,
+ "start": 28.97,
+ "end": 29.18,
+ "text": "back"
+ },
+ {
+ "id": 92,
+ "start": 29.18,
+ "end": 29.48,
+ "text": "then,"
+ },
+ {
+ "id": 93,
+ "start": 29.486666666666665,
+ "end": 29.756666666666664,
+ "text": "and"
+ },
+ {
+ "id": 94,
+ "start": 29.793333333333333,
+ "end": 30.03333333333333,
+ "text": "they"
+ },
+ {
+ "id": 95,
+ "start": 30.1,
+ "end": 30.31,
+ "text": "reached"
+ },
+ {
+ "id": 96,
+ "start": 30.25,
+ "end": 30.490000000000002,
+ "text": "out"
+ },
+ {
+ "id": 97,
+ "start": 30.4,
+ "end": 30.67,
+ "text": "and"
+ },
+ {
+ "id": 98,
+ "start": 30.55,
+ "end": 30.85,
+ "text": "they"
+ },
+ {
+ "id": 99,
+ "start": 30.700000000000003,
+ "end": 31.03,
+ "text": "asked,"
+ },
+ {
+ "id": 100,
+ "start": 30.85,
+ "end": 31.21,
+ "text": "“Hey,"
+ },
+ {
+ "id": 101,
+ "start": 31.185000000000002,
+ "end": 31.445,
+ "text": "you"
+ },
+ {
+ "id": 102,
+ "start": 31.52,
+ "end": 31.68,
+ "text": "live"
+ },
+ {
+ "id": 103,
+ "start": 31.68,
+ "end": 31.75,
+ "text": "in"
+ },
+ {
+ "id": 104,
+ "start": 31.75,
+ "end": 31.9,
+ "text": "San"
+ },
+ {
+ "id": 105,
+ "start": 31.9,
+ "end": 32.64,
+ "text": "Francisco."
+ },
+ {
+ "id": 106,
+ "start": 32.64,
+ "end": 32.82,
+ "text": "Would"
+ },
+ {
+ "id": 107,
+ "start": 32.82,
+ "end": 32.89,
+ "text": "you"
+ },
+ {
+ "id": 108,
+ "start": 32.89,
+ "end": 32.98,
+ "text": "be"
+ },
+ {
+ "id": 109,
+ "start": 32.98,
+ "end": 33.26,
+ "text": "interested"
+ },
+ {
+ "id": 110,
+ "start": 33.26,
+ "end": 33.33,
+ "text": "in"
+ },
+ {
+ "id": 111,
+ "start": 33.33,
+ "end": 33.52,
+ "text": "coming"
+ },
+ {
+ "id": 112,
+ "start": 33.52,
+ "end": 33.63,
+ "text": "down"
+ },
+ {
+ "id": 113,
+ "start": 33.63,
+ "end": 33.7,
+ "text": "to"
+ },
+ {
+ "id": 114,
+ "start": 33.803333333333335,
+ "end": 33.92,
+ "text": "Palo"
+ },
+ {
+ "id": 115,
+ "start": 33.97666666666667,
+ "end": 34.14,
+ "text": "Alto"
+ },
+ {
+ "id": 116,
+ "start": 34.15,
+ "end": 34.36,
+ "text": "and"
+ },
+ {
+ "id": 117,
+ "start": 34.36,
+ "end": 34.64,
+ "text": "meeting"
+ },
+ {
+ "id": 118,
+ "start": 34.64,
+ "end": 34.77,
+ "text": "with"
+ },
+ {
+ "id": 119,
+ "start": 34.77,
+ "end": 35.64,
+ "text": "us?”"
+ },
+ {
+ "id": 120,
+ "start": 35.18,
+ "end": 36.36,
+ "text": "And"
+ },
+ {
+ "id": 121,
+ "start": 35.63333333333333,
+ "end": 36.57333333333333,
+ "text": "they"
+ },
+ {
+ "id": 122,
+ "start": 36.086666666666666,
+ "end": 36.78666666666666,
+ "text": "were"
+ },
+ {
+ "id": 123,
+ "start": 36.54,
+ "end": 37,
+ "text": "persistent"
+ },
+ {
+ "id": 124,
+ "start": 37,
+ "end": 37.23,
+ "text": "about"
+ },
+ {
+ "id": 125,
+ "start": 37.23,
+ "end": 37.3,
+ "text": "it."
+ },
+ {
+ "id": 126,
+ "start": 37.36937499999999,
+ "end": 37.443749999999994,
+ "text": "They"
+ },
+ {
+ "id": 127,
+ "start": 37.50874999999999,
+ "end": 37.5875,
+ "text": "were"
+ },
+ {
+ "id": 128,
+ "start": 37.64812499999999,
+ "end": 37.73125,
+ "text": "like,"
+ },
+ {
+ "id": 129,
+ "start": 37.787499999999994,
+ "end": 37.875,
+ "text": "“Hey,"
+ },
+ {
+ "id": 130,
+ "start": 37.926874999999995,
+ "end": 38.01875,
+ "text": "you"
+ },
+ {
+ "id": 131,
+ "start": 38.06625,
+ "end": 38.1625,
+ "text": "should,"
+ },
+ {
+ "id": 132,
+ "start": 38.205625,
+ "end": 38.306250000000006,
+ "text": "you"
+ },
+ {
+ "id": 133,
+ "start": 38.345,
+ "end": 38.45,
+ "text": "know,"
+ },
+ {
+ "id": 134,
+ "start": 38.484375,
+ "end": 38.59375,
+ "text": "hop"
+ },
+ {
+ "id": 135,
+ "start": 38.62375,
+ "end": 38.7375,
+ "text": "on"
+ },
+ {
+ "id": 136,
+ "start": 38.763125,
+ "end": 38.88125,
+ "text": "the"
+ },
+ {
+ "id": 137,
+ "start": 38.9025,
+ "end": 39.025000000000006,
+ "text": "Caltrain"
+ },
+ {
+ "id": 138,
+ "start": 39.041875000000005,
+ "end": 39.16875,
+ "text": "and"
+ },
+ {
+ "id": 139,
+ "start": 39.18125,
+ "end": 39.3125,
+ "text": "come"
+ },
+ {
+ "id": 140,
+ "start": 39.320625,
+ "end": 39.45625,
+ "text": "meet"
+ },
+ {
+ "id": 141,
+ "start": 39.46,
+ "end": 39.6,
+ "text": "with"
+ },
+ {
+ "id": 142,
+ "start": 39.6,
+ "end": 39.73,
+ "text": "us.”"
+ },
+ {
+ "id": 143,
+ "start": 39.73,
+ "end": 39.84,
+ "text": "And"
+ },
+ {
+ "id": 144,
+ "start": 40.11,
+ "end": 40.61,
+ "text": "anso"
+ },
+ {
+ "id": 145,
+ "start": 40.49,
+ "end": 41.38,
+ "text": "one"
+ },
+ {
+ "id": 146,
+ "start": 41.38,
+ "end": 41.77,
+ "text": "fateful"
+ },
+ {
+ "id": 147,
+ "start": 41.77,
+ "end": 41.92,
+ "text": "day"
+ },
+ {
+ "id": 148,
+ "start": 41.92,
+ "end": 42,
+ "text": "in"
+ },
+ {
+ "id": 149,
+ "start": 42,
+ "end": 42.59,
+ "text": "September"
+ },
+ {
+ "id": 150,
+ "start": 42.59,
+ "end": 42.72,
+ "text": "of"
+ },
+ {
+ "id": 151,
+ "start": 42.72,
+ "end": 42.92,
+ "text": "that"
+ },
+ {
+ "id": 152,
+ "start": 42.92,
+ "end": 43.31,
+ "text": "year,"
+ },
+ {
+ "id": 153,
+ "start": 43.31,
+ "end": 43.61,
+ "text": "I"
+ },
+ {
+ "id": 154,
+ "start": 43.61,
+ "end": 43.89,
+ "text": "hopped"
+ },
+ {
+ "id": 155,
+ "start": 43.89,
+ "end": 43.96,
+ "text": "on"
+ },
+ {
+ "id": 156,
+ "start": 43.96,
+ "end": 44.02,
+ "text": "the"
+ },
+ {
+ "id": 157,
+ "start": 44.02,
+ "end": 44.76,
+ "text": "Caltrain,"
+ },
+ {
+ "id": 158,
+ "start": 44.76,
+ "end": 44.98,
+ "text": "went"
+ },
+ {
+ "id": 159,
+ "start": 44.98,
+ "end": 45.13,
+ "text": "down"
+ },
+ {
+ "id": 160,
+ "start": 45.13,
+ "end": 45.22,
+ "text": "to"
+ },
+ {
+ "id": 161,
+ "start": 45.31,
+ "end": 45.39,
+ "text": "Palo"
+ },
+ {
+ "id": 162,
+ "start": 45.49,
+ "end": 45.559999999999995,
+ "text": "Alto"
+ },
+ {
+ "id": 163,
+ "start": 45.67,
+ "end": 45.73,
+ "text": "for"
+ },
+ {
+ "id": 164,
+ "start": 45.73,
+ "end": 45.81,
+ "text": "the"
+ },
+ {
+ "id": 165,
+ "start": 45.81,
+ "end": 46.07,
+ "text": "first"
+ },
+ {
+ "id": 166,
+ "start": 46.07,
+ "end": 47.22,
+ "text": "time,"
+ },
+ {
+ "id": 167,
+ "start": 47.22,
+ "end": 47.44,
+ "text": "came"
+ },
+ {
+ "id": 168,
+ "start": 47.44,
+ "end": 47.54,
+ "text": "to"
+ },
+ {
+ "id": 169,
+ "start": 47.54,
+ "end": 47.72,
+ "text": "this"
+ },
+ {
+ "id": 170,
+ "start": 47.72,
+ "end": 48.14,
+ "text": "office,"
+ },
+ {
+ "id": 171,
+ "start": 48.14,
+ "end": 49.07,
+ "text": "and"
+ },
+ {
+ "id": 172,
+ "start": 49.07,
+ "end": 49.17,
+ "text": "it"
+ },
+ {
+ "id": 173,
+ "start": 49.17,
+ "end": 49.29,
+ "text": "was"
+ },
+ {
+ "id": 174,
+ "start": 49.29,
+ "end": 49.85,
+ "text": "a"
+ },
+ {
+ "id": 175,
+ "start": 49.85,
+ "end": 50.1,
+ "text": "bunch"
+ },
+ {
+ "id": 176,
+ "start": 50.1,
+ "end": 50.17,
+ "text": "of"
+ },
+ {
+ "id": 177,
+ "start": 50.17,
+ "end": 50.49,
+ "text": "folks"
+ },
+ {
+ "id": 178,
+ "start": 50.49,
+ "end": 50.6,
+ "text": "who"
+ },
+ {
+ "id": 179,
+ "start": 50.6,
+ "end": 50.86,
+ "text": "were"
+ },
+ {
+ "id": 180,
+ "start": 50.86,
+ "end": 51.06,
+ "text": "like"
+ },
+ {
+ "id": 181,
+ "start": 51.06,
+ "end": 51.26,
+ "text": "three"
+ },
+ {
+ "id": 182,
+ "start": 51.26,
+ "end": 51.73,
+ "text": "years"
+ },
+ {
+ "id": 183,
+ "start": 51.73,
+ "end": 52.01,
+ "text": "younger"
+ },
+ {
+ "id": 184,
+ "start": 52.01,
+ "end": 52.14,
+ "text": "than"
+ },
+ {
+ "id": 185,
+ "start": 52.14,
+ "end": 52.24,
+ "text": "I"
+ },
+ {
+ "id": 186,
+ "start": 52.24,
+ "end": 52.71,
+ "text": "was."
+ },
+ {
+ "id": 187,
+ "start": 52.71,
+ "end": 53.47,
+ "text": "I"
+ },
+ {
+ "id": 188,
+ "start": 53.47,
+ "end": 53.84,
+ "text": "felt"
+ },
+ {
+ "id": 189,
+ "start": 53.84,
+ "end": 53.97,
+ "text": "like"
+ },
+ {
+ "id": 190,
+ "start": 53.97,
+ "end": 54.16,
+ "text": "half"
+ },
+ {
+ "id": 191,
+ "start": 54.16,
+ "end": 54.23,
+ "text": "of"
+ },
+ {
+ "id": 192,
+ "start": 54.23,
+ "end": 54.34,
+ "text": "them"
+ },
+ {
+ "id": 193,
+ "start": 54.34,
+ "end": 54.52,
+ "text": "were"
+ },
+ {
+ "id": 194,
+ "start": 54.52,
+ "end": 54.89,
+ "text": "college"
+ },
+ {
+ "id": 195,
+ "start": 54.89,
+ "end": 55.4,
+ "text": "dropouts"
+ },
+ {
+ "id": 196,
+ "start": 55.4,
+ "end": 55.5,
+ "text": "and"
+ },
+ {
+ "id": 197,
+ "start": 55.47,
+ "end": 55.64333333333333,
+ "text": "they"
+ },
+ {
+ "id": 198,
+ "start": 55.54,
+ "end": 55.78666666666666,
+ "text": "were"
+ },
+ {
+ "id": 199,
+ "start": 55.61,
+ "end": 55.93,
+ "text": "working"
+ },
+ {
+ "id": 200,
+ "start": 55.93,
+ "end": 56.05,
+ "text": "on"
+ },
+ {
+ "id": 201,
+ "start": 56.05,
+ "end": 56.34,
+ "text": "this"
+ },
+ {
+ "id": 202,
+ "start": 56.34,
+ "end": 56.78,
+ "text": "service"
+ },
+ {
+ "id": 203,
+ "start": 56.78,
+ "end": 57.22,
+ "text": "that"
+ },
+ {
+ "id": 204,
+ "start": 57.22,
+ "end": 57.39,
+ "text": "I"
+ },
+ {
+ "id": 205,
+ "start": 57.39,
+ "end": 57.53,
+ "text": "knew"
+ },
+ {
+ "id": 206,
+ "start": 57.53,
+ "end": 57.81,
+ "text": "very"
+ },
+ {
+ "id": 207,
+ "start": 57.81,
+ "end": 58.03,
+ "text": "little"
+ },
+ {
+ "id": 208,
+ "start": 58.03,
+ "end": 59.01,
+ "text": "about."
+ },
+ {
+ "id": 209,
+ "start": 59.01,
+ "end": 59.05,
+ "text": "I"
+ },
+ {
+ "id": 210,
+ "start": 59.05,
+ "end": 59.42,
+ "text": "understood"
+ },
+ {
+ "id": 211,
+ "start": 59.42,
+ "end": 59.48,
+ "text": "it"
+ },
+ {
+ "id": 212,
+ "start": 59.48,
+ "end": 59.58,
+ "text": "was"
+ },
+ {
+ "id": 213,
+ "start": 59.58,
+ "end": 59.69,
+ "text": "in"
+ },
+ {
+ "id": 214,
+ "start": 59.69,
+ "end": 59.84,
+ "text": "the"
+ },
+ {
+ "id": 215,
+ "start": 59.84,
+ "end": 60.15,
+ "text": "social"
+ },
+ {
+ "id": 216,
+ "start": 60.15,
+ "end": 60.48,
+ "text": "networking"
+ },
+ {
+ "id": 217,
+ "start": 60.48,
+ "end": 62.32,
+ "text": "space."
+ },
+ {
+ "id": 218,
+ "start": 62.32,
+ "end": 62.9,
+ "text": "And"
+ },
+ {
+ "id": 219,
+ "start": 62.9,
+ "end": 63.01,
+ "text": "it"
+ },
+ {
+ "id": 220,
+ "start": 63.01,
+ "end": 63.3,
+ "text": "became"
+ },
+ {
+ "id": 221,
+ "start": 63.3,
+ "end": 63.59,
+ "text": "quickly"
+ },
+ {
+ "id": 222,
+ "start": 63.59,
+ "end": 63.85,
+ "text": "apparent"
+ },
+ {
+ "id": 223,
+ "start": 63.85,
+ "end": 63.91,
+ "text": "to"
+ },
+ {
+ "id": 224,
+ "start": 63.91,
+ "end": 63.99,
+ "text": "me"
+ },
+ {
+ "id": 225,
+ "start": 63.99,
+ "end": 64.17,
+ "text": "that,"
+ },
+ {
+ "id": 226,
+ "start": 64.17,
+ "end": 64.93,
+ "text": "one,"
+ },
+ {
+ "id": 227,
+ "start": 64.93,
+ "end": 65.06,
+ "text": "they"
+ },
+ {
+ "id": 228,
+ "start": 65.06,
+ "end": 65.23,
+ "text": "had"
+ },
+ {
+ "id": 229,
+ "start": 65.23,
+ "end": 65.57,
+ "text": "very"
+ },
+ {
+ "id": 230,
+ "start": 65.57,
+ "end": 66.76,
+ "text": "lofty"
+ },
+ {
+ "id": 231,
+ "start": 66.76,
+ "end": 67.66,
+ "text": "aspirations"
+ },
+ {
+ "id": 232,
+ "start": 67.66,
+ "end": 67.77,
+ "text": "or"
+ },
+ {
+ "id": 233,
+ "start": 67.77,
+ "end": 68.31,
+ "text": "ambitions"
+ },
+ {
+ "id": 234,
+ "start": 68.31,
+ "end": 69.31,
+ "text": "for"
+ },
+ {
+ "id": 235,
+ "start": 69.31,
+ "end": 69.47,
+ "text": "this"
+ },
+ {
+ "id": 236,
+ "start": 69.47,
+ "end": 69.88,
+ "text": "company"
+ },
+ {
+ "id": 237,
+ "start": 69.655,
+ "end": 70.2375,
+ "text": "that"
+ },
+ {
+ "id": 238,
+ "start": 69.84,
+ "end": 70.595,
+ "text": "they"
+ },
+ {
+ "id": 239,
+ "start": 70.02499999999999,
+ "end": 70.9525,
+ "text": "were"
+ },
+ {
+ "id": 240,
+ "start": 70.21,
+ "end": 71.31,
+ "text": "building."
+ },
+ {
+ "id": 241,
+ "start": 71.31,
+ "end": 71.54,
+ "text": "But"
+ },
+ {
+ "id": 242,
+ "start": 71.54,
+ "end": 71.73,
+ "text": "then"
+ },
+ {
+ "id": 243,
+ "start": 71.73,
+ "end": 72.05,
+ "text": "two,"
+ },
+ {
+ "id": 244,
+ "start": 72.05,
+ "end": 72.89,
+ "text": "they"
+ },
+ {
+ "id": 245,
+ "start": 72.89,
+ "end": 73.14,
+ "text": "seemed"
+ },
+ {
+ "id": 246,
+ "start": 73.14,
+ "end": 73.17,
+ "text": "a"
+ },
+ {
+ "id": 247,
+ "start": 73.17,
+ "end": 73.34,
+ "text": "little"
+ },
+ {
+ "id": 248,
+ "start": 73.34,
+ "end": 73.45,
+ "text": "bit"
+ },
+ {
+ "id": 249,
+ "start": 73.45,
+ "end": 73.61,
+ "text": "too"
+ },
+ {
+ "id": 250,
+ "start": 73.61,
+ "end": 73.93,
+ "text": "smart"
+ },
+ {
+ "id": 251,
+ "start": 73.93,
+ "end": 74,
+ "text": "to"
+ },
+ {
+ "id": 252,
+ "start": 74,
+ "end": 74.09,
+ "text": "be"
+ },
+ {
+ "id": 253,
+ "start": 74.09,
+ "end": 74.42,
+ "text": "working"
+ },
+ {
+ "id": 254,
+ "start": 74.42,
+ "end": 74.52,
+ "text": "on"
+ },
+ {
+ "id": 255,
+ "start": 74.52,
+ "end": 74.85,
+ "text": "social"
+ },
+ {
+ "id": 256,
+ "start": 74.85,
+ "end": 76.27,
+ "text": "networking."
+ },
+ {
+ "id": 257,
+ "start": 76.27,
+ "end": 76.51,
+ "text": "I"
+ },
+ {
+ "id": 258,
+ "start": 76.51,
+ "end": 76.75,
+ "text": "kind"
+ },
+ {
+ "id": 259,
+ "start": 76.75,
+ "end": 76.92,
+ "text": "of,"
+ },
+ {
+ "id": 260,
+ "start": 76.92,
+ "end": 77.11,
+ "text": "when"
+ },
+ {
+ "id": 261,
+ "start": 77.11,
+ "end": 77.18,
+ "text": "I"
+ },
+ {
+ "id": 262,
+ "start": 77.18,
+ "end": 77.35,
+ "text": "thought"
+ },
+ {
+ "id": 263,
+ "start": 77.35,
+ "end": 77.43,
+ "text": "of"
+ },
+ {
+ "id": 264,
+ "start": 77.43,
+ "end": 77.72,
+ "text": "social"
+ },
+ {
+ "id": 265,
+ "start": 77.72,
+ "end": 78.23,
+ "text": "networking,"
+ },
+ {
+ "id": 266,
+ "start": 78.23,
+ "end": 78.26,
+ "text": "I"
+ },
+ {
+ "id": 267,
+ "start": 78.26,
+ "end": 78.42,
+ "text": "thought"
+ },
+ {
+ "id": 268,
+ "start": 78.42,
+ "end": 78.68,
+ "text": "about"
+ },
+ {
+ "id": 269,
+ "start": 78.67,
+ "end": 79.02,
+ "text": "the"
+ },
+ {
+ "id": 270,
+ "start": 79.075,
+ "end": 79.3,
+ "text": "incumbent[s]"
+ },
+ {
+ "id": 271,
+ "start": 79.48,
+ "end": 79.58,
+ "text": "at"
+ },
+ {
+ "id": 272,
+ "start": 79.58,
+ "end": 79.65,
+ "text": "the"
+ },
+ {
+ "id": 273,
+ "start": 79.65,
+ "end": 79.91,
+ "text": "time"
+ },
+ {
+ "id": 274,
+ "start": 80.01666666666667,
+ "end": 80.31333333333333,
+ "text": "–"
+ },
+ {
+ "id": 275,
+ "start": 80.38333333333333,
+ "end": 80.71666666666667,
+ "text": "Myspace"
+ },
+ {
+ "id": 276,
+ "start": 80.75,
+ "end": 81.12,
+ "text": "or"
+ },
+ {
+ "id": 277,
+ "start": 81.34,
+ "end": 81.625,
+ "text": "Friendster."
+ },
+ {
+ "id": 278,
+ "start": 81.93,
+ "end": 82.13,
+ "text": "And"
+ },
+ {
+ "id": 279,
+ "start": 82.13,
+ "end": 82.23,
+ "text": "so"
+ },
+ {
+ "id": 280,
+ "start": 82.23,
+ "end": 82.27,
+ "text": "I"
+ },
+ {
+ "id": 281,
+ "start": 82.27,
+ "end": 82.47,
+ "text": "didn’t"
+ },
+ {
+ "id": 282,
+ "start": 82.47,
+ "end": 82.66,
+ "text": "quite"
+ },
+ {
+ "id": 283,
+ "start": 82.66,
+ "end": 83.05,
+ "text": "understand"
+ },
+ {
+ "id": 284,
+ "start": 83.05,
+ "end": 84.54,
+ "text": "how"
+ },
+ {
+ "id": 285,
+ "start": 84.54,
+ "end": 84.66,
+ "text": "they"
+ },
+ {
+ "id": 286,
+ "start": 84.66,
+ "end": 84.78,
+ "text": "had"
+ },
+ {
+ "id": 287,
+ "start": 84.78,
+ "end": 84.92,
+ "text": "kind"
+ },
+ {
+ "id": 288,
+ "start": 84.92,
+ "end": 84.99,
+ "text": "of"
+ },
+ {
+ "id": 289,
+ "start": 85.12,
+ "end": 85.24666666666667,
+ "text": "amassed"
+ },
+ {
+ "id": 290,
+ "start": 85.32,
+ "end": 85.50333333333334,
+ "text": "a"
+ },
+ {
+ "id": 291,
+ "start": 85.52,
+ "end": 85.76,
+ "text": "group"
+ },
+ {
+ "id": 292,
+ "start": 85.76,
+ "end": 85.87,
+ "text": "of,"
+ },
+ {
+ "id": 293,
+ "start": 85.87,
+ "end": 86.2,
+ "text": "like,"
+ },
+ {
+ "id": 294,
+ "start": 86.23666666666668,
+ "end": 86.56333333333335,
+ "text": "bona"
+ },
+ {
+ "id": 295,
+ "start": 86.60333333333334,
+ "end": 86.92666666666668,
+ "text": "fide"
+ },
+ {
+ "id": 296,
+ "start": 86.97,
+ "end": 87.29,
+ "text": "young"
+ },
+ {
+ "id": 297,
+ "start": 87.29,
+ "end": 88.02,
+ "text": "technologists"
+ },
+ {
+ "id": 298,
+ "start": 87.81000000000002,
+ "end": 88.28,
+ "text": "to"
+ },
+ {
+ "id": 299,
+ "start": 88.33,
+ "end": 88.54,
+ "text": "work"
+ },
+ {
+ "id": 300,
+ "start": 88.54,
+ "end": 88.62,
+ "text": "in"
+ },
+ {
+ "id": 301,
+ "start": 88.62,
+ "end": 88.73,
+ "text": "this"
+ },
+ {
+ "id": 302,
+ "start": 88.73,
+ "end": 89.16,
+ "text": "space."
+ },
+ {
+ "id": 303,
+ "start": 89.075,
+ "end": 89.395,
+ "text": "And"
+ },
+ {
+ "id": 304,
+ "start": 89.42,
+ "end": 89.63,
+ "text": "when"
+ },
+ {
+ "id": 305,
+ "start": 89.63,
+ "end": 89.73,
+ "text": "you"
+ },
+ {
+ "id": 306,
+ "start": 89.73,
+ "end": 89.9,
+ "text": "say"
+ },
+ {
+ "id": 307,
+ "start": 89.9,
+ "end": 90.26,
+ "text": "lofty"
+ },
+ {
+ "id": 308,
+ "start": 90.26,
+ "end": 90.78,
+ "text": "ambitions"
+ },
+ {
+ "id": 309,
+ "start": 90.78,
+ "end": 90.99,
+ "text": "what,"
+ },
+ {
+ "id": 310,
+ "start": 90.98,
+ "end": 91.36,
+ "text": "how"
+ },
+ {
+ "id": 311,
+ "start": 91.225,
+ "end": 91.46000000000001,
+ "text": "was"
+ },
+ {
+ "id": 312,
+ "start": 91.47,
+ "end": 91.56,
+ "text": "it"
+ },
+ {
+ "id": 313,
+ "start": 91.56,
+ "end": 92.18,
+ "text": "articulated"
+ },
+ {
+ "id": 314,
+ "start": 92.18,
+ "end": 92.27,
+ "text": "at"
+ },
+ {
+ "id": 315,
+ "start": 92.27,
+ "end": 92.36,
+ "text": "the"
+ },
+ {
+ "id": 316,
+ "start": 92.36,
+ "end": 92.78,
+ "text": "time"
+ },
+ {
+ "id": 317,
+ "start": 92.675,
+ "end": 93.12166666666667,
+ "text": "in"
+ },
+ {
+ "id": 318,
+ "start": 92.99,
+ "end": 93.46333333333334,
+ "text": "terms"
+ },
+ {
+ "id": 319,
+ "start": 93.305,
+ "end": 93.80499999999999,
+ "text": "of"
+ },
+ {
+ "id": 320,
+ "start": 93.62,
+ "end": 94.14666666666666,
+ "text": "ambitions?"
+ },
+ {
+ "id": 321,
+ "start": 93.935,
+ "end": 94.48833333333333,
+ "text": "Yeah."
+ },
+ {
+ "id": 322,
+ "start": 94.25,
+ "end": 94.83,
+ "text": "So"
+ },
+ {
+ "id": 323,
+ "start": 94.83,
+ "end": 95.44,
+ "text": "the"
+ },
+ {
+ "id": 324,
+ "start": 95.44,
+ "end": 96.03,
+ "text": "ambitions"
+ },
+ {
+ "id": 325,
+ "start": 96.03,
+ "end": 96.46,
+ "text": "were"
+ },
+ {
+ "id": 326,
+ "start": 96.46,
+ "end": 96.81,
+ "text": "somewhat"
+ },
+ {
+ "id": 327,
+ "start": 96.81,
+ "end": 97.99,
+ "text": "abstract"
+ },
+ {
+ "id": 328,
+ "start": 97.99,
+ "end": 98.19,
+ "text": "and"
+ },
+ {
+ "id": 329,
+ "start": 98.19,
+ "end": 98.77,
+ "text": "yet"
+ },
+ {
+ "id": 330,
+ "start": 98.77,
+ "end": 98.87,
+ "text": "they"
+ },
+ {
+ "id": 331,
+ "start": 98.87,
+ "end": 99.04,
+ "text": "kind"
+ },
+ {
+ "id": 332,
+ "start": 99.04,
+ "end": 99.18,
+ "text": "of"
+ },
+ {
+ "id": 333,
+ "start": 99.33500000000001,
+ "end": 99.47500000000001,
+ "text": "proved"
+ },
+ {
+ "id": 334,
+ "start": 99.63000000000001,
+ "end": 99.77000000000001,
+ "text": "out"
+ },
+ {
+ "id": 335,
+ "start": 99.92500000000001,
+ "end": 100.06500000000001,
+ "text": "to"
+ },
+ {
+ "id": 336,
+ "start": 100.22000000000001,
+ "end": 100.36000000000001,
+ "text": "be"
+ },
+ {
+ "id": 337,
+ "start": 100.515,
+ "end": 100.655,
+ "text": "true"
+ },
+ {
+ "id": 338,
+ "start": 100.81,
+ "end": 100.95,
+ "text": "over"
+ },
+ {
+ "id": 339,
+ "start": 101.26500000000001,
+ "end": 101.42,
+ "text": "time."
+ },
+ {
+ "id": 340,
+ "start": 101.72,
+ "end": 101.89,
+ "text": "It"
+ },
+ {
+ "id": 341,
+ "start": 101.89,
+ "end": 102,
+ "text": "was"
+ },
+ {
+ "id": 342,
+ "start": 102,
+ "end": 102.19,
+ "text": "this"
+ },
+ {
+ "id": 343,
+ "start": 102.19,
+ "end": 102.58,
+ "text": "idea"
+ },
+ {
+ "id": 344,
+ "start": 102.58,
+ "end": 104.19,
+ "text": "that"
+ },
+ {
+ "id": 345,
+ "start": 104.19,
+ "end": 104.38,
+ "text": "the"
+ },
+ {
+ "id": 346,
+ "start": 104.38,
+ "end": 104.89,
+ "text": "world"
+ },
+ {
+ "id": 347,
+ "start": 104.89,
+ "end": 105.78,
+ "text": "is"
+ },
+ {
+ "id": 348,
+ "start": 105.78,
+ "end": 106.04,
+ "text": "made"
+ },
+ {
+ "id": 349,
+ "start": 106.04,
+ "end": 106.13,
+ "text": "up"
+ },
+ {
+ "id": 350,
+ "start": 106.13,
+ "end": 106.25,
+ "text": "of"
+ },
+ {
+ "id": 351,
+ "start": 106.25,
+ "end": 106.31,
+ "text": "a"
+ },
+ {
+ "id": 352,
+ "start": 106.31,
+ "end": 106.68,
+ "text": "system"
+ },
+ {
+ "id": 353,
+ "start": 106.68,
+ "end": 106.79,
+ "text": "of"
+ },
+ {
+ "id": 354,
+ "start": 106.79,
+ "end": 107.7,
+ "text": "relationships"
+ },
+ {
+ "id": 355,
+ "start": 107.7,
+ "end": 108.07,
+ "text": "across"
+ },
+ {
+ "id": 356,
+ "start": 108.07,
+ "end": 108.6,
+ "text": "people,"
+ },
+ {
+ "id": 357,
+ "start": 108.86999999999995,
+ "end": 109.58999999999995,
+ "text": "organizations,"
+ },
+ {
+ "id": 358,
+ "start": 109.67,
+ "end": 110.58,
+ "text": "entities."
+ },
+ {
+ "id": 359,
+ "start": 110.58,
+ "end": 110.84,
+ "text": "And"
+ },
+ {
+ "id": 360,
+ "start": 110.84,
+ "end": 110.94,
+ "text": "if"
+ },
+ {
+ "id": 361,
+ "start": 110.94,
+ "end": 111.22,
+ "text": "one"
+ },
+ {
+ "id": 362,
+ "start": 111.22,
+ "end": 111.35,
+ "text": "were"
+ },
+ {
+ "id": 363,
+ "start": 111.35,
+ "end": 111.45,
+ "text": "to"
+ },
+ {
+ "id": 364,
+ "start": 111.45,
+ "end": 111.66,
+ "text": "build"
+ },
+ {
+ "id": 365,
+ "start": 111.66,
+ "end": 111.7,
+ "text": "a"
+ },
+ {
+ "id": 366,
+ "start": 111.7,
+ "end": 112.6,
+ "text": "graph"
+ },
+ {
+ "id": 367,
+ "start": 112.6,
+ "end": 113.18,
+ "text": "or"
+ },
+ {
+ "id": 368,
+ "start": 113.18,
+ "end": 113.47,
+ "text": "a"
+ },
+ {
+ "id": 369,
+ "start": 113.47,
+ "end": 113.62,
+ "text": "way"
+ },
+ {
+ "id": 370,
+ "start": 113.62,
+ "end": 113.7,
+ "text": "to"
+ },
+ {
+ "id": 371,
+ "start": 113.7,
+ "end": 114.27,
+ "text": "map"
+ },
+ {
+ "id": 372,
+ "start": 114.27,
+ "end": 114.46,
+ "text": "these"
+ },
+ {
+ "id": 373,
+ "start": 114.46,
+ "end": 115.5,
+ "text": "relationships"
+ },
+ {
+ "id": 374,
+ "start": 115.5,
+ "end": 115.71,
+ "text": "and"
+ },
+ {
+ "id": 375,
+ "start": 115.71,
+ "end": 115.92,
+ "text": "start"
+ },
+ {
+ "id": 376,
+ "start": 115.88999999999999,
+ "end": 116.30333333333333,
+ "text": "to"
+ },
+ {
+ "id": 377,
+ "start": 116.07,
+ "end": 116.68666666666668,
+ "text": "weigh"
+ },
+ {
+ "id": 378,
+ "start": 116.25,
+ "end": 117.07,
+ "text": "them,"
+ },
+ {
+ "id": 379,
+ "start": 117.07,
+ "end": 117.44,
+ "text": "not"
+ },
+ {
+ "id": 380,
+ "start": 117.44,
+ "end": 117.6,
+ "text": "only"
+ },
+ {
+ "id": 381,
+ "start": 117.6,
+ "end": 117.73,
+ "text": "would"
+ },
+ {
+ "id": 382,
+ "start": 117.73,
+ "end": 117.8,
+ "text": "you"
+ },
+ {
+ "id": 383,
+ "start": 117.8,
+ "end": 117.89,
+ "text": "be"
+ },
+ {
+ "id": 384,
+ "start": 117.89,
+ "end": 118.03,
+ "text": "able"
+ },
+ {
+ "id": 385,
+ "start": 118.03,
+ "end": 118.14,
+ "text": "to"
+ },
+ {
+ "id": 386,
+ "start": 118.14,
+ "end": 118.78,
+ "text": "accelerate"
+ },
+ {
+ "id": 387,
+ "start": 118.78,
+ "end": 119.4,
+ "text": "information"
+ },
+ {
+ "id": 388,
+ "start": 119.18199999999999,
+ "end": 119.816,
+ "text": "flow."
+ },
+ {
+ "id": 389,
+ "start": 119.58399999999997,
+ "end": 120.232,
+ "text": "That"
+ },
+ {
+ "id": 390,
+ "start": 119.98599999999999,
+ "end": 120.648,
+ "text": "was"
+ },
+ {
+ "id": 391,
+ "start": 120.388,
+ "end": 121.064,
+ "text": "the"
+ },
+ {
+ "id": 392,
+ "start": 120.79,
+ "end": 121.48,
+ "text": "terminology"
+ },
+ {
+ "id": 393,
+ "start": 121.48,
+ "end": 121.62,
+ "text": "they"
+ },
+ {
+ "id": 394,
+ "start": 121.62,
+ "end": 121.78,
+ "text": "used"
+ },
+ {
+ "id": 395,
+ "start": 121.78,
+ "end": 121.97,
+ "text": "back"
+ },
+ {
+ "id": 396,
+ "start": 122.45000000000002,
+ "end": 122.63500000000002,
+ "text": "then."
+ },
+ {
+ "id": 397,
+ "start": 123.12,
+ "end": 123.3,
+ "text": "But"
+ },
+ {
+ "id": 398,
+ "start": 123.3,
+ "end": 123.45,
+ "text": "their"
+ },
+ {
+ "id": 399,
+ "start": 123.45,
+ "end": 123.68,
+ "text": "view"
+ },
+ {
+ "id": 400,
+ "start": 123.68,
+ "end": 123.84,
+ "text": "was"
+ },
+ {
+ "id": 401,
+ "start": 123.84,
+ "end": 124.09,
+ "text": "that"
+ },
+ {
+ "id": 402,
+ "start": 124.09,
+ "end": 124.26,
+ "text": "they"
+ },
+ {
+ "id": 403,
+ "start": 124.26,
+ "end": 124.48,
+ "text": "could"
+ },
+ {
+ "id": 404,
+ "start": 124.48,
+ "end": 125.05,
+ "text": "potentially"
+ },
+ {
+ "id": 405,
+ "start": 125.05,
+ "end": 125.62,
+ "text": "create"
+ },
+ {
+ "id": 406,
+ "start": 125.62,
+ "end": 126.01,
+ "text": "a"
+ },
+ {
+ "id": 407,
+ "start": 126.01,
+ "end": 126.33,
+ "text": "way"
+ },
+ {
+ "id": 408,
+ "start": 126.33,
+ "end": 126.48,
+ "text": "for"
+ },
+ {
+ "id": 409,
+ "start": 126.48,
+ "end": 126.77,
+ "text": "people"
+ },
+ {
+ "id": 410,
+ "start": 126.77,
+ "end": 126.84,
+ "text": "to"
+ },
+ {
+ "id": 411,
+ "start": 126.84,
+ "end": 126.9,
+ "text": "be"
+ },
+ {
+ "id": 412,
+ "start": 126.9,
+ "end": 127.02,
+ "text": "able"
+ },
+ {
+ "id": 413,
+ "start": 127.02,
+ "end": 127.12,
+ "text": "to"
+ },
+ {
+ "id": 414,
+ "start": 127.12,
+ "end": 128.12,
+ "text": "share"
+ },
+ {
+ "id": 415,
+ "start": 128.12,
+ "end": 130.3,
+ "text": "with"
+ },
+ {
+ "id": 416,
+ "start": 130.3,
+ "end": 130.37,
+ "text": "the"
+ },
+ {
+ "id": 417,
+ "start": 130.37,
+ "end": 130.63,
+ "text": "members"
+ },
+ {
+ "id": 418,
+ "start": 130.63,
+ "end": 130.71,
+ "text": "of"
+ },
+ {
+ "id": 419,
+ "start": 130.715,
+ "end": 131.12,
+ "text": "their"
+ },
+ {
+ "id": 420,
+ "start": 130.8,
+ "end": 131.53,
+ "text": "community,"
+ },
+ {
+ "id": 421,
+ "start": 131.53,
+ "end": 131.66,
+ "text": "with"
+ },
+ {
+ "id": 422,
+ "start": 131.66,
+ "end": 131.78,
+ "text": "their"
+ },
+ {
+ "id": 423,
+ "start": 131.78,
+ "end": 132.13,
+ "text": "family"
+ },
+ {
+ "id": 424,
+ "start": 132.13,
+ "end": 132.27,
+ "text": "and"
+ },
+ {
+ "id": 425,
+ "start": 132.27,
+ "end": 134.28,
+ "text": "friends,"
+ },
+ {
+ "id": 426,
+ "start": 134.28,
+ "end": 134.41,
+ "text": "in"
+ },
+ {
+ "id": 427,
+ "start": 134.41,
+ "end": 134.47,
+ "text": "a"
+ },
+ {
+ "id": 428,
+ "start": 134.47,
+ "end": 134.62,
+ "text": "way"
+ },
+ {
+ "id": 429,
+ "start": 134.62,
+ "end": 134.76,
+ "text": "that"
+ },
+ {
+ "id": 430,
+ "start": 134.76,
+ "end": 135.14,
+ "text": "was"
+ },
+ {
+ "id": 431,
+ "start": 135.14,
+ "end": 135.92,
+ "text": "unprecedented"
+ },
+ {
+ "id": 432,
+ "start": 135.92,
+ "end": 136.03,
+ "text": "on"
+ },
+ {
+ "id": 433,
+ "start": 136.03,
+ "end": 136.13,
+ "text": "the"
+ },
+ {
+ "id": 434,
+ "start": 136.13,
+ "end": 137.4,
+ "text": "internet;"
+ },
+ {
+ "id": 435,
+ "start": 137.4,
+ "end": 137.53,
+ "text": "in"
+ },
+ {
+ "id": 436,
+ "start": 137.53,
+ "end": 137.58,
+ "text": "a"
+ },
+ {
+ "id": 437,
+ "start": 137.58,
+ "end": 137.7,
+ "text": "way"
+ },
+ {
+ "id": 438,
+ "start": 137.7,
+ "end": 137.84,
+ "text": "where"
+ },
+ {
+ "id": 439,
+ "start": 137.84,
+ "end": 137.92,
+ "text": "they"
+ },
+ {
+ "id": 440,
+ "start": 137.92,
+ "end": 138.09,
+ "text": "can"
+ },
+ {
+ "id": 441,
+ "start": 138.09,
+ "end": 138.45,
+ "text": "manage"
+ },
+ {
+ "id": 442,
+ "start": 138.45,
+ "end": 138.57,
+ "text": "the"
+ },
+ {
+ "id": 443,
+ "start": 138.57,
+ "end": 139.78,
+ "text": "audience"
+ },
+ {
+ "id": 444,
+ "start": 139.78,
+ "end": 139.94,
+ "text": "that"
+ },
+ {
+ "id": 445,
+ "start": 139.94,
+ "end": 140.01,
+ "text": "they"
+ },
+ {
+ "id": 446,
+ "start": 140.01,
+ "end": 140.09,
+ "text": "were"
+ },
+ {
+ "id": 447,
+ "start": 140.09,
+ "end": 140.49,
+ "text": "speaking"
+ },
+ {
+ "id": 448,
+ "start": 140.49,
+ "end": 141.39,
+ "text": "to"
+ },
+ {
+ "id": 449,
+ "start": 141.39,
+ "end": 142.39,
+ "text": "and"
+ },
+ {
+ "id": 450,
+ "start": 142.39,
+ "end": 142.67,
+ "text": "that"
+ },
+ {
+ "id": 451,
+ "start": 142.67,
+ "end": 142.8,
+ "text": "would"
+ },
+ {
+ "id": 452,
+ "start": 142.8,
+ "end": 143.06,
+ "text": "allow"
+ },
+ {
+ "id": 453,
+ "start": 143.06,
+ "end": 143.23,
+ "text": "for"
+ },
+ {
+ "id": 454,
+ "start": 143.23,
+ "end": 143.68,
+ "text": "them"
+ },
+ {
+ "id": 455,
+ "start": 143.68,
+ "end": 143.93,
+ "text": "over"
+ },
+ {
+ "id": 456,
+ "start": 143.93,
+ "end": 144.82,
+ "text": "time"
+ },
+ {
+ "id": 457,
+ "start": 144.82,
+ "end": 144.95,
+ "text": "to"
+ },
+ {
+ "id": 458,
+ "start": 144.95,
+ "end": 145.08,
+ "text": "be"
+ },
+ {
+ "id": 459,
+ "start": 145.08,
+ "end": 145.24,
+ "text": "able"
+ },
+ {
+ "id": 460,
+ "start": 145.24,
+ "end": 145.37,
+ "text": "to"
+ },
+ {
+ "id": 461,
+ "start": 145.37,
+ "end": 145.91,
+ "text": "build"
+ },
+ {
+ "id": 462,
+ "start": 145.815,
+ "end": 146.29500000000002,
+ "text": "a"
+ },
+ {
+ "id": 463,
+ "start": 146.26,
+ "end": 146.68,
+ "text": "project"
+ },
+ {
+ "id": 464,
+ "start": 146.68,
+ "end": 146.8,
+ "text": "that"
+ },
+ {
+ "id": 465,
+ "start": 146.8,
+ "end": 146.9,
+ "text": "they"
+ },
+ {
+ "id": 466,
+ "start": 146.9,
+ "end": 147.03,
+ "text": "were"
+ },
+ {
+ "id": 467,
+ "start": 147.03,
+ "end": 147.36,
+ "text": "working"
+ },
+ {
+ "id": 468,
+ "start": 147.36,
+ "end": 147.63,
+ "text": "on"
+ },
+ {
+ "id": 469,
+ "start": 148.18,
+ "end": 148.46000000000004,
+ "text": "called"
+ },
+ {
+ "id": 470,
+ "start": 149,
+ "end": 149.29000000000002,
+ "text": "“Feed.”"
+ },
+ {
+ "id": 471,
+ "start": 149.82,
+ "end": 150.12,
+ "text": "Feed"
+ },
+ {
+ "id": 472,
+ "start": 150.12,
+ "end": 150.3,
+ "text": "was"
+ },
+ {
+ "id": 473,
+ "start": 150.21,
+ "end": 150.41000000000003,
+ "text": "a"
+ },
+ {
+ "id": 474,
+ "start": 150.3,
+ "end": 150.52,
+ "text": "really"
+ },
+ {
+ "id": 475,
+ "start": 150.52,
+ "end": 150.87,
+ "text": "simple"
+ },
+ {
+ "id": 476,
+ "start": 150.87,
+ "end": 151.77,
+ "text": "idea."
+ },
+ {
+ "id": 477,
+ "start": 151.77,
+ "end": 151.9,
+ "text": "You"
+ },
+ {
+ "id": 478,
+ "start": 151.9,
+ "end": 152.12,
+ "text": "take"
+ },
+ {
+ "id": 479,
+ "start": 152.12,
+ "end": 152.47,
+ "text": "all"
+ },
+ {
+ "id": 480,
+ "start": 152.47,
+ "end": 152.93,
+ "text": "these"
+ },
+ {
+ "id": 481,
+ "start": 152.93,
+ "end": 153.45,
+ "text": "structured"
+ },
+ {
+ "id": 482,
+ "start": 153.45,
+ "end": 154.5,
+ "text": "relationships"
+ },
+ {
+ "id": 483,
+ "start": 154.5,
+ "end": 154.72,
+ "text": "around"
+ },
+ {
+ "id": 484,
+ "start": 154.72,
+ "end": 154.8,
+ "text": "the"
+ },
+ {
+ "id": 485,
+ "start": 154.8,
+ "end": 155.72,
+ "text": "world"
+ },
+ {
+ "id": 486,
+ "start": 155.72,
+ "end": 156.12,
+ "text": "and"
+ },
+ {
+ "id": 487,
+ "start": 156.12,
+ "end": 156.21,
+ "text": "you"
+ },
+ {
+ "id": 488,
+ "start": 156.21,
+ "end": 156.42,
+ "text": "show"
+ },
+ {
+ "id": 489,
+ "start": 156.42,
+ "end": 157.21,
+ "text": "people"
+ },
+ {
+ "id": 490,
+ "start": 157.21,
+ "end": 157.38,
+ "text": "the"
+ },
+ {
+ "id": 491,
+ "start": 157.38,
+ "end": 157.62,
+ "text": "world’s"
+ },
+ {
+ "id": 492,
+ "start": 157.62,
+ "end": 158.62,
+ "text": "events"
+ },
+ {
+ "id": 493,
+ "start": 158.62,
+ "end": 158.92,
+ "text": "through"
+ },
+ {
+ "id": 494,
+ "start": 158.92,
+ "end": 159.02,
+ "text": "the"
+ },
+ {
+ "id": 495,
+ "start": 159.02,
+ "end": 159.3,
+ "text": "prism"
+ },
+ {
+ "id": 496,
+ "start": 159.3,
+ "end": 159.42,
+ "text": "of"
+ },
+ {
+ "id": 497,
+ "start": 159.42,
+ "end": 159.54,
+ "text": "their"
+ },
+ {
+ "id": 498,
+ "start": 159.54,
+ "end": 160.67,
+ "text": "friends."
+ },
+ {
+ "id": 499,
+ "start": 160.67,
+ "end": 160.94,
+ "text": "And"
+ },
+ {
+ "id": 500,
+ "start": 160.94,
+ "end": 160.98,
+ "text": "I"
+ },
+ {
+ "id": 501,
+ "start": 160.98,
+ "end": 161.16,
+ "text": "thought"
+ },
+ {
+ "id": 502,
+ "start": 161.16,
+ "end": 161.36,
+ "text": "this"
+ },
+ {
+ "id": 503,
+ "start": 161.36,
+ "end": 161.66,
+ "text": "was"
+ },
+ {
+ "id": 504,
+ "start": 161.66,
+ "end": 161.9,
+ "text": "such"
+ },
+ {
+ "id": 505,
+ "start": 161.9,
+ "end": 162.02,
+ "text": "an"
+ },
+ {
+ "id": 506,
+ "start": 162.02,
+ "end": 162.55,
+ "text": "interesting"
+ },
+ {
+ "id": 507,
+ "start": 162.55,
+ "end": 163,
+ "text": "idea,"
+ },
+ {
+ "id": 508,
+ "start": 163,
+ "end": 163.08,
+ "text": "an"
+ },
+ {
+ "id": 509,
+ "start": 163.08,
+ "end": 163.5,
+ "text": "interesting"
+ },
+ {
+ "id": 510,
+ "start": 163.5,
+ "end": 164.52,
+ "text": "concept."
+ },
+ {
+ "id": 511,
+ "start": 164.52,
+ "end": 164.68,
+ "text": "They"
+ },
+ {
+ "id": 512,
+ "start": 164.68,
+ "end": 164.81,
+ "text": "had"
+ },
+ {
+ "id": 513,
+ "start": 164.81,
+ "end": 164.93,
+ "text": "no"
+ },
+ {
+ "id": 514,
+ "start": 165.09,
+ "end": 165.25500000000002,
+ "text": "mock-ups"
+ },
+ {
+ "id": 515,
+ "start": 165.37,
+ "end": 165.58,
+ "text": "for"
+ },
+ {
+ "id": 516,
+ "start": 165.58,
+ "end": 166.11,
+ "text": "it."
+ },
+ {
+ "id": 517,
+ "start": 166.11,
+ "end": 166.22,
+ "text": "It"
+ },
+ {
+ "id": 518,
+ "start": 166.22,
+ "end": 166.34,
+ "text": "was"
+ },
+ {
+ "id": 519,
+ "start": 166.34,
+ "end": 166.6,
+ "text": "just"
+ },
+ {
+ "id": 520,
+ "start": 166.6,
+ "end": 166.79,
+ "text": "very"
+ },
+ {
+ "id": 521,
+ "start": 166.79,
+ "end": 166.96,
+ "text": "much"
+ },
+ {
+ "id": 522,
+ "start": 166.96,
+ "end": 167.07,
+ "text": "like"
+ },
+ {
+ "id": 523,
+ "start": 167.07,
+ "end": 167.16,
+ "text": "an"
+ },
+ {
+ "id": 524,
+ "start": 167.16,
+ "end": 167.76,
+ "text": "abstract"
+ },
+ {
+ "id": 525,
+ "start": 167.76,
+ "end": 168.73,
+ "text": "notion."
+ },
+ {
+ "id": 526,
+ "start": 168.73,
+ "end": 168.9,
+ "text": "But"
+ },
+ {
+ "id": 527,
+ "start": 168.9,
+ "end": 169.05,
+ "text": "their"
+ },
+ {
+ "id": 528,
+ "start": 169.05,
+ "end": 169.29,
+ "text": "view"
+ },
+ {
+ "id": 529,
+ "start": 169.29,
+ "end": 169.44,
+ "text": "was"
+ },
+ {
+ "id": 530,
+ "start": 169.44,
+ "end": 169.62,
+ "text": "that"
+ },
+ {
+ "id": 531,
+ "start": 169.62,
+ "end": 169.81,
+ "text": "if"
+ },
+ {
+ "id": 532,
+ "start": 169.81,
+ "end": 170.11,
+ "text": "you"
+ },
+ {
+ "id": 533,
+ "start": 170.11,
+ "end": 170.43,
+ "text": "started"
+ },
+ {
+ "id": 534,
+ "start": 170.43,
+ "end": 170.65,
+ "text": "to"
+ },
+ {
+ "id": 535,
+ "start": 170.65,
+ "end": 172.04,
+ "text": "build"
+ },
+ {
+ "id": 536,
+ "start": 171.19,
+ "end": 172.26,
+ "text": "this"
+ },
+ {
+ "id": 537,
+ "start": 171.93,
+ "end": 172.61,
+ "text": "structured"
+ },
+ {
+ "id": 538,
+ "start": 172.67,
+ "end": 172.96,
+ "text": "data"
+ },
+ {
+ "id": 539,
+ "start": 172.96,
+ "end": 173.72,
+ "text": "set"
+ },
+ {
+ "id": 540,
+ "start": 173.72,
+ "end": 174.1,
+ "text": "around"
+ },
+ {
+ "id": 541,
+ "start": 174.1,
+ "end": 174.21,
+ "text": "what"
+ },
+ {
+ "id": 542,
+ "start": 174.21,
+ "end": 174.46,
+ "text": "people"
+ },
+ {
+ "id": 543,
+ "start": 174.46,
+ "end": 174.76,
+ "text": "cared"
+ },
+ {
+ "id": 544,
+ "start": 174.76,
+ "end": 175.44,
+ "text": "about,"
+ },
+ {
+ "id": 545,
+ "start": 175.16,
+ "end": 175.69,
+ "text": "who"
+ },
+ {
+ "id": 546,
+ "start": 175.515,
+ "end": 175.98499999999999,
+ "text": "they’ve"
+ },
+ {
+ "id": 547,
+ "start": 175.87,
+ "end": 176.28,
+ "text": "connected"
+ },
+ {
+ "id": 548,
+ "start": 176.28,
+ "end": 177.12,
+ "text": "with,"
+ },
+ {
+ "id": 549,
+ "start": 177.12,
+ "end": 177.26,
+ "text": "what"
+ },
+ {
+ "id": 550,
+ "start": 177.26,
+ "end": 177.41,
+ "text": "kind"
+ },
+ {
+ "id": 551,
+ "start": 177.41,
+ "end": 177.47,
+ "text": "of"
+ },
+ {
+ "id": 552,
+ "start": 177.47,
+ "end": 177.95,
+ "text": "information"
+ },
+ {
+ "id": 553,
+ "start": 177.95,
+ "end": 178.07,
+ "text": "you’re"
+ },
+ {
+ "id": 554,
+ "start": 178.70499999999998,
+ "end": 178.82999999999998,
+ "text": "sharing,"
+ },
+ {
+ "id": 555,
+ "start": 179.46,
+ "end": 179.59,
+ "text": "they"
+ },
+ {
+ "id": 556,
+ "start": 179.59,
+ "end": 179.72,
+ "text": "could"
+ },
+ {
+ "id": 557,
+ "start": 179.72,
+ "end": 180.09,
+ "text": "eventually"
+ },
+ {
+ "id": 558,
+ "start": 180.09,
+ "end": 180.55,
+ "text": "build"
+ },
+ {
+ "id": 559,
+ "start": 180.55,
+ "end": 180.66,
+ "text": "an"
+ },
+ {
+ "id": 560,
+ "start": 180.66,
+ "end": 181.17,
+ "text": "advertising"
+ },
+ {
+ "id": 561,
+ "start": 181.17,
+ "end": 182.22,
+ "text": "platform"
+ },
+ {
+ "id": 562,
+ "start": 182.22,
+ "end": 182.38,
+ "text": "that"
+ },
+ {
+ "id": 563,
+ "start": 182.38,
+ "end": 182.49,
+ "text": "could"
+ },
+ {
+ "id": 564,
+ "start": 182.49,
+ "end": 182.76,
+ "text": "rival"
+ },
+ {
+ "id": 565,
+ "start": 182.76,
+ "end": 183.83,
+ "text": "Google’s."
+ },
+ {
+ "id": 566,
+ "start": 183.83,
+ "end": 184.47,
+ "text": "And"
+ },
+ {
+ "id": 567,
+ "start": 184.47,
+ "end": 184.93,
+ "text": "Google"
+ },
+ {
+ "id": 568,
+ "start": 184.93,
+ "end": 185.33,
+ "text": "was"
+ },
+ {
+ "id": 569,
+ "start": 185.33,
+ "end": 185.71,
+ "text": "no"
+ },
+ {
+ "id": 570,
+ "start": 185.71,
+ "end": 185.88,
+ "text": "joke"
+ },
+ {
+ "id": 571,
+ "start": 185.88,
+ "end": 185.95,
+ "text": "of"
+ },
+ {
+ "id": 572,
+ "start": 185.95,
+ "end": 186.01,
+ "text": "a"
+ },
+ {
+ "id": 573,
+ "start": 186.01,
+ "end": 186.47,
+ "text": "company"
+ },
+ {
+ "id": 574,
+ "start": 186.47,
+ "end": 186.74,
+ "text": "back"
+ },
+ {
+ "id": 575,
+ "start": 186.74,
+ "end": 186.9,
+ "text": "in"
+ },
+ {
+ "id": 576,
+ "start": 187.77499999999998,
+ "end": 187.92999999999995,
+ "text": "2005."
+ },
+ {
+ "id": 577,
+ "start": 188.81,
+ "end": 188.96,
+ "text": "And"
+ },
+ {
+ "id": 578,
+ "start": 188.96,
+ "end": 189.15,
+ "text": "so"
+ },
+ {
+ "id": 579,
+ "start": 189.15,
+ "end": 189.55,
+ "text": "I"
+ },
+ {
+ "id": 580,
+ "start": 189.55,
+ "end": 189.75,
+ "text": "came"
+ },
+ {
+ "id": 581,
+ "start": 189.75,
+ "end": 189.9,
+ "text": "away"
+ },
+ {
+ "id": 582,
+ "start": 189.9,
+ "end": 190.06,
+ "text": "from"
+ },
+ {
+ "id": 583,
+ "start": 190.06,
+ "end": 190.17,
+ "text": "that"
+ },
+ {
+ "id": 584,
+ "start": 190.17,
+ "end": 190.89,
+ "text": "conversation"
+ },
+ {
+ "id": 585,
+ "start": 190.88,
+ "end": 191.22,
+ "text": "thinking,"
+ },
+ {
+ "id": 586,
+ "start": 191.64499999999998,
+ "end": 191.9,
+ "text": "wow,"
+ },
+ {
+ "id": 587,
+ "start": 192.41,
+ "end": 192.58,
+ "text": "these"
+ },
+ {
+ "id": 588,
+ "start": 192.58,
+ "end": 192.94,
+ "text": "cats"
+ },
+ {
+ "id": 589,
+ "start": 192.94,
+ "end": 193.3,
+ "text": "are"
+ },
+ {
+ "id": 590,
+ "start": 193.3,
+ "end": 193.85,
+ "text": "incredibly"
+ },
+ {
+ "id": 591,
+ "start": 193.85,
+ "end": 195.02,
+ "text": "ambitious."
+ },
+ {
+ "id": 592,
+ "start": 195.02,
+ "end": 195.24,
+ "text": "I"
+ },
+ {
+ "id": 593,
+ "start": 195.24,
+ "end": 195.43,
+ "text": "should"
+ },
+ {
+ "id": 594,
+ "start": 195.41500000000002,
+ "end": 195.575,
+ "text": "check"
+ },
+ {
+ "id": 595,
+ "start": 195.59,
+ "end": 195.72,
+ "text": "out"
+ },
+ {
+ "id": 596,
+ "start": 195.72,
+ "end": 195.8,
+ "text": "the"
+ },
+ {
+ "id": 597,
+ "start": 195.8,
+ "end": 196.16,
+ "text": "service"
+ },
+ {
+ "id": 598,
+ "start": 196.16,
+ "end": 196.3,
+ "text": "and"
+ },
+ {
+ "id": 599,
+ "start": 196.3,
+ "end": 197.22,
+ "text": "see"
+ },
+ {
+ "id": 600,
+ "start": 197.22,
+ "end": 197.44,
+ "text": "how"
+ },
+ {
+ "id": 601,
+ "start": 197.44,
+ "end": 197.52,
+ "text": "it"
+ },
+ {
+ "id": 602,
+ "start": 197.52,
+ "end": 197.82,
+ "text": "maps"
+ },
+ {
+ "id": 603,
+ "start": 197.82,
+ "end": 197.99,
+ "text": "that"
+ },
+ {
+ "id": 604,
+ "start": 197.99,
+ "end": 199.45,
+ "text": "ambition."
+ },
+ {
+ "id": 605,
+ "start": 199.45,
+ "end": 199.61,
+ "text": "So"
+ },
+ {
+ "id": 606,
+ "start": 199.61,
+ "end": 199.64,
+ "text": "I"
+ },
+ {
+ "id": 607,
+ "start": 199.64,
+ "end": 199.77,
+ "text": "asked"
+ },
+ {
+ "id": 608,
+ "start": 199.77,
+ "end": 199.85,
+ "text": "my"
+ },
+ {
+ "id": 609,
+ "start": 199.85,
+ "end": 200.11,
+ "text": "brother"
+ },
+ {
+ "id": 610,
+ "start": 200.11,
+ "end": 200.28,
+ "text": "for"
+ },
+ {
+ "id": 611,
+ "start": 200.28,
+ "end": 200.62,
+ "text": "his"
+ },
+ {
+ "id": 612,
+ "start": 200.79,
+ "end": 201.065,
+ "text": "login."
+ },
+ {
+ "id": 613,
+ "start": 201.3,
+ "end": 201.51,
+ "text": "He"
+ },
+ {
+ "id": 614,
+ "start": 201.51,
+ "end": 201.67,
+ "text": "was"
+ },
+ {
+ "id": 615,
+ "start": 201.58999999999997,
+ "end": 201.73,
+ "text": "—"
+ },
+ {
+ "id": 616,
+ "start": 201.67,
+ "end": 201.79,
+ "text": "at"
+ },
+ {
+ "id": 617,
+ "start": 201.79,
+ "end": 201.88,
+ "text": "the"
+ },
+ {
+ "id": 618,
+ "start": 202.25499999999997,
+ "end": 202.325,
+ "text": "time"
+ },
+ {
+ "id": 619,
+ "start": 202.72,
+ "end": 202.77,
+ "text": "I"
+ },
+ {
+ "id": 620,
+ "start": 202.77,
+ "end": 202.93,
+ "text": "think"
+ },
+ {
+ "id": 621,
+ "start": 202.93,
+ "end": 202.99,
+ "text": "he"
+ },
+ {
+ "id": 622,
+ "start": 202.99,
+ "end": 203.09,
+ "text": "was"
+ },
+ {
+ "id": 623,
+ "start": 203.09,
+ "end": 203.16,
+ "text": "a"
+ },
+ {
+ "id": 624,
+ "start": 203.16,
+ "end": 203.75,
+ "text": "sophomore"
+ },
+ {
+ "id": 625,
+ "start": 203.75,
+ "end": 203.83,
+ "text": "at"
+ },
+ {
+ "id": 626,
+ "start": 203.83,
+ "end": 204.08,
+ "text": "Johns"
+ },
+ {
+ "id": 627,
+ "start": 204.08,
+ "end": 204.62,
+ "text": "Hopkins"
+ },
+ {
+ "id": 628,
+ "start": 204.61,
+ "end": 204.77,
+ "text": "and"
+ },
+ {
+ "id": 629,
+ "start": 204.71666666666667,
+ "end": 204.93,
+ "text": "they"
+ },
+ {
+ "id": 630,
+ "start": 204.82333333333332,
+ "end": 205.09,
+ "text": "had"
+ },
+ {
+ "id": 631,
+ "start": 204.93,
+ "end": 205.25,
+ "text": "just"
+ },
+ {
+ "id": 632,
+ "start": 205.25,
+ "end": 206.01,
+ "text": "released"
+ },
+ {
+ "id": 633,
+ "start": 206.01,
+ "end": 206.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 634,
+ "start": 206.4,
+ "end": 206.48,
+ "text": "at"
+ },
+ {
+ "id": 635,
+ "start": 206.48,
+ "end": 206.71,
+ "text": "Johns"
+ },
+ {
+ "id": 636,
+ "start": 207.04999999999998,
+ "end": 207.30500000000004,
+ "text": "Hopkins."
+ },
+ {
+ "id": 637,
+ "start": 207.62,
+ "end": 207.9,
+ "text": "Note"
+ },
+ {
+ "id": 638,
+ "start": 207.9,
+ "end": 207.96,
+ "text": "in"
+ },
+ {
+ "id": 639,
+ "start": 208.29500000000002,
+ "end": 208.475,
+ "text": "2005,"
+ },
+ {
+ "id": 640,
+ "start": 208.69,
+ "end": 208.99,
+ "text": "Facebook"
+ },
+ {
+ "id": 641,
+ "start": 208.99,
+ "end": 209.11,
+ "text": "was"
+ },
+ {
+ "id": 642,
+ "start": 209.11,
+ "end": 209.16,
+ "text": "a"
+ },
+ {
+ "id": 643,
+ "start": 209.395,
+ "end": 209.555,
+ "text": "college-only"
+ },
+ {
+ "id": 644,
+ "start": 209.68,
+ "end": 209.95,
+ "text": "social"
+ },
+ {
+ "id": 645,
+ "start": 209.95,
+ "end": 210.66,
+ "text": "network."
+ },
+ {
+ "id": 646,
+ "start": 210.66,
+ "end": 210.73,
+ "text": "I"
+ },
+ {
+ "id": 647,
+ "start": 210.73,
+ "end": 210.89,
+ "text": "think"
+ },
+ {
+ "id": 648,
+ "start": 210.81,
+ "end": 210.98,
+ "text": "it"
+ },
+ {
+ "id": 649,
+ "start": 210.89,
+ "end": 211.07,
+ "text": "had"
+ },
+ {
+ "id": 650,
+ "start": 211.07,
+ "end": 211.24,
+ "text": "3"
+ },
+ {
+ "id": 651,
+ "start": 211.24,
+ "end": 211.32,
+ "text": "to"
+ },
+ {
+ "id": 652,
+ "start": 211.32,
+ "end": 211.52,
+ "text": "4"
+ },
+ {
+ "id": 653,
+ "start": 211.52,
+ "end": 211.76,
+ "text": "million"
+ },
+ {
+ "id": 654,
+ "start": 212.05800000000002,
+ "end": 212.46599999999995,
+ "text": "users"
+ },
+ {
+ "id": 655,
+ "start": 212.59600000000003,
+ "end": 213.17199999999997,
+ "text": "at"
+ },
+ {
+ "id": 656,
+ "start": 213.134,
+ "end": 213.878,
+ "text": "the"
+ },
+ {
+ "id": 657,
+ "start": 213.672,
+ "end": 214.58399999999995,
+ "text": "time."
+ },
+ {
+ "id": 658,
+ "start": 214.21,
+ "end": 215.29,
+ "text": "And"
+ },
+ {
+ "id": 659,
+ "start": 215.29,
+ "end": 215.42,
+ "text": "I"
+ },
+ {
+ "id": 660,
+ "start": 215.42,
+ "end": 215.54,
+ "text": "was"
+ },
+ {
+ "id": 661,
+ "start": 215.54,
+ "end": 215.59,
+ "text": "a"
+ },
+ {
+ "id": 662,
+ "start": 215.59,
+ "end": 215.76,
+ "text": "little"
+ },
+ {
+ "id": 663,
+ "start": 215.76,
+ "end": 215.88,
+ "text": "bit"
+ },
+ {
+ "id": 664,
+ "start": 215.93666666666667,
+ "end": 216.38333333333333,
+ "text": "let"
+ },
+ {
+ "id": 665,
+ "start": 216.11333333333334,
+ "end": 216.88666666666666,
+ "text": "down"
+ },
+ {
+ "id": 666,
+ "start": 216.29,
+ "end": 217.39,
+ "text": "because"
+ },
+ {
+ "id": 667,
+ "start": 216.93,
+ "end": 217.58,
+ "text": "this"
+ },
+ {
+ "id": 668,
+ "start": 217.31,
+ "end": 217.66500000000002,
+ "text": "was"
+ },
+ {
+ "id": 669,
+ "start": 217.69,
+ "end": 217.75,
+ "text": "a"
+ },
+ {
+ "id": 670,
+ "start": 217.75,
+ "end": 218.01,
+ "text": "version"
+ },
+ {
+ "id": 671,
+ "start": 218.01,
+ "end": 218.07,
+ "text": "of"
+ },
+ {
+ "id": 672,
+ "start": 218.07,
+ "end": 218.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 673,
+ "start": 218.44,
+ "end": 218.57,
+ "text": "that"
+ },
+ {
+ "id": 674,
+ "start": 218.57,
+ "end": 218.85,
+ "text": "was"
+ },
+ {
+ "id": 675,
+ "start": 219.30666666666667,
+ "end": 219.61666666666667,
+ "text": "pre-photos,"
+ },
+ {
+ "id": 676,
+ "start": 220.04333333333335,
+ "end": 220.38333333333333,
+ "text": "pre-News"
+ },
+ {
+ "id": 677,
+ "start": 220.78,
+ "end": 221.15,
+ "text": "Feed,"
+ },
+ {
+ "id": 678,
+ "start": 221.32999999999996,
+ "end": 221.75499999999997,
+ "text": "pre-Like"
+ },
+ {
+ "id": 679,
+ "start": 221.88,
+ "end": 222.36,
+ "text": "button,"
+ },
+ {
+ "id": 680,
+ "start": 222.56666666666666,
+ "end": 223.24666666666667,
+ "text": "pre-commenting,"
+ },
+ {
+ "id": 681,
+ "start": 223.25333333333333,
+ "end": 224.13333333333344,
+ "text": "pre-everything,"
+ },
+ {
+ "id": 682,
+ "start": 223.94,
+ "end": 225.02,
+ "text": "essentially."
+ },
+ {
+ "id": 683,
+ "start": 225.02,
+ "end": 225.23,
+ "text": "And"
+ },
+ {
+ "id": 684,
+ "start": 225.23,
+ "end": 225.37,
+ "text": "yet,"
+ },
+ {
+ "id": 685,
+ "start": 225.37,
+ "end": 225.43,
+ "text": "it"
+ },
+ {
+ "id": 686,
+ "start": 225.43,
+ "end": 225.54,
+ "text": "was"
+ },
+ {
+ "id": 687,
+ "start": 225.54,
+ "end": 225.72,
+ "text": "really"
+ },
+ {
+ "id": 688,
+ "start": 225.72,
+ "end": 226.12,
+ "text": "clear"
+ },
+ {
+ "id": 689,
+ "start": 226.12,
+ "end": 226.27,
+ "text": "that"
+ },
+ {
+ "id": 690,
+ "start": 226.27,
+ "end": 227.61,
+ "text": "they"
+ },
+ {
+ "id": 691,
+ "start": 227.61,
+ "end": 227.95,
+ "text": "had"
+ },
+ {
+ "id": 692,
+ "start": 227.95,
+ "end": 228.11,
+ "text": "built"
+ },
+ {
+ "id": 693,
+ "start": 228.1,
+ "end": 228.25,
+ "text": "a"
+ },
+ {
+ "id": 694,
+ "start": 228.25,
+ "end": 228.39,
+ "text": "service"
+ },
+ {
+ "id": 695,
+ "start": 228.4,
+ "end": 228.53,
+ "text": "that"
+ },
+ {
+ "id": 696,
+ "start": 228.55,
+ "end": 228.67,
+ "text": "was"
+ },
+ {
+ "id": 697,
+ "start": 228.67,
+ "end": 229.13,
+ "text": "really"
+ },
+ {
+ "id": 698,
+ "start": 229.13,
+ "end": 230.78,
+ "text": "topical,"
+ },
+ {
+ "id": 699,
+ "start": 230.78,
+ "end": 230.96,
+ "text": "that"
+ },
+ {
+ "id": 700,
+ "start": 230.96,
+ "end": 231.35,
+ "text": "had"
+ },
+ {
+ "id": 701,
+ "start": 231.35,
+ "end": 231.45,
+ "text": "a"
+ },
+ {
+ "id": 702,
+ "start": 231.45,
+ "end": 231.83,
+ "text": "tremendous"
+ },
+ {
+ "id": 703,
+ "start": 231.83,
+ "end": 232.01,
+ "text": "amount"
+ },
+ {
+ "id": 704,
+ "start": 232.01,
+ "end": 232.1,
+ "text": "of"
+ },
+ {
+ "id": 705,
+ "start": 232.1,
+ "end": 233.02,
+ "text": "usage,"
+ },
+ {
+ "id": 706,
+ "start": 233.02,
+ "end": 233.88,
+ "text": "and"
+ },
+ {
+ "id": 707,
+ "start": 233.88,
+ "end": 234.02,
+ "text": "that"
+ },
+ {
+ "id": 708,
+ "start": 234.02,
+ "end": 234.21,
+ "text": "had"
+ },
+ {
+ "id": 709,
+ "start": 234.21,
+ "end": 234.46,
+ "text": "all"
+ },
+ {
+ "id": 710,
+ "start": 234.46,
+ "end": 234.59,
+ "text": "the"
+ },
+ {
+ "id": 711,
+ "start": 234.59,
+ "end": 235.12,
+ "text": "component"
+ },
+ {
+ "id": 712,
+ "start": 235.12,
+ "end": 235.44,
+ "text": "parts"
+ },
+ {
+ "id": 713,
+ "start": 235.44,
+ "end": 235.53,
+ "text": "to"
+ },
+ {
+ "id": 714,
+ "start": 235.53,
+ "end": 235.93,
+ "text": "potentially"
+ },
+ {
+ "id": 715,
+ "start": 235.875,
+ "end": 236.14000000000001,
+ "text": "realize"
+ },
+ {
+ "id": 716,
+ "start": 236.22,
+ "end": 236.35,
+ "text": "this"
+ },
+ {
+ "id": 717,
+ "start": 236.35,
+ "end": 237.19,
+ "text": "vision."
+ },
+ {
+ "id": 718,
+ "start": 237.19,
+ "end": 237.32,
+ "text": "And"
+ },
+ {
+ "id": 719,
+ "start": 237.32,
+ "end": 237.43,
+ "text": "so"
+ },
+ {
+ "id": 720,
+ "start": 237.43,
+ "end": 237.54,
+ "text": "they"
+ },
+ {
+ "id": 721,
+ "start": 237.54,
+ "end": 237.74,
+ "text": "asked"
+ },
+ {
+ "id": 722,
+ "start": 237.74,
+ "end": 238.52,
+ "text": "me,"
+ },
+ {
+ "id": 723,
+ "start": 238.52,
+ "end": 238.66,
+ "text": "“Do"
+ },
+ {
+ "id": 724,
+ "start": 238.66,
+ "end": 238.74,
+ "text": "you"
+ },
+ {
+ "id": 725,
+ "start": 238.74,
+ "end": 239.1,
+ "text": "believe"
+ },
+ {
+ "id": 726,
+ "start": 239.1,
+ "end": 239.24,
+ "text": "that"
+ },
+ {
+ "id": 727,
+ "start": 239.24,
+ "end": 239.86,
+ "text": "someday"
+ },
+ {
+ "id": 728,
+ "start": 239.86,
+ "end": 240.05,
+ "text": "this"
+ },
+ {
+ "id": 729,
+ "start": 240.05,
+ "end": 240.39,
+ "text": "system"
+ },
+ {
+ "id": 730,
+ "start": 240.39,
+ "end": 240.49,
+ "text": "that"
+ },
+ {
+ "id": 731,
+ "start": 240.49,
+ "end": 240.58,
+ "text": "we"
+ },
+ {
+ "id": 732,
+ "start": 240.58,
+ "end": 240.74,
+ "text": "just"
+ },
+ {
+ "id": 733,
+ "start": 240.74,
+ "end": 241.1,
+ "text": "described"
+ },
+ {
+ "id": 734,
+ "start": 241.1,
+ "end": 241.19,
+ "text": "will"
+ },
+ {
+ "id": 735,
+ "start": 241.19,
+ "end": 242.41,
+ "text": "exist?”"
+ },
+ {
+ "id": 736,
+ "start": 242.41,
+ "end": 242.59,
+ "text": "And"
+ },
+ {
+ "id": 737,
+ "start": 242.59,
+ "end": 242.66,
+ "text": "I"
+ },
+ {
+ "id": 738,
+ "start": 242.66,
+ "end": 242.88,
+ "text": "said,"
+ },
+ {
+ "id": 739,
+ "start": 242.88,
+ "end": 243.19,
+ "text": "“Yeah,"
+ },
+ {
+ "id": 740,
+ "start": 243.19,
+ "end": 243.5,
+ "text": "this"
+ },
+ {
+ "id": 741,
+ "start": 243.5,
+ "end": 243.73,
+ "text": "just"
+ },
+ {
+ "id": 742,
+ "start": 243.73,
+ "end": 244.14,
+ "text": "seems"
+ },
+ {
+ "id": 743,
+ "start": 244.14,
+ "end": 244.74,
+ "text": "inevitable."
+ },
+ {
+ "id": 744,
+ "start": 244.495,
+ "end": 244.905,
+ "text": "This"
+ },
+ {
+ "id": 745,
+ "start": 244.85,
+ "end": 245.07,
+ "text": "seems"
+ },
+ {
+ "id": 746,
+ "start": 245.07,
+ "end": 245.51,
+ "text": "like"
+ },
+ {
+ "id": 747,
+ "start": 245.51,
+ "end": 246.84,
+ "text": "it’s"
+ },
+ {
+ "id": 748,
+ "start": 246.84,
+ "end": 246.97,
+ "text": "the"
+ },
+ {
+ "id": 749,
+ "start": 246.97,
+ "end": 247.09,
+ "text": "way"
+ },
+ {
+ "id": 750,
+ "start": 247.09,
+ "end": 247.18,
+ "text": "the"
+ },
+ {
+ "id": 751,
+ "start": 247.18,
+ "end": 247.44,
+ "text": "future"
+ },
+ {
+ "id": 752,
+ "start": 247.44,
+ "end": 247.57,
+ "text": "will"
+ },
+ {
+ "id": 753,
+ "start": 247.57,
+ "end": 248.94,
+ "text": "work.”"
+ },
+ {
+ "id": 754,
+ "start": 248.94,
+ "end": 249.12,
+ "text": "And"
+ },
+ {
+ "id": 755,
+ "start": 249.12,
+ "end": 249.21,
+ "text": "they"
+ },
+ {
+ "id": 756,
+ "start": 249.21,
+ "end": 249.5,
+ "text": "asked"
+ },
+ {
+ "id": 757,
+ "start": 249.5,
+ "end": 249.57,
+ "text": "a"
+ },
+ {
+ "id": 758,
+ "start": 249.57,
+ "end": 249.78,
+ "text": "really"
+ },
+ {
+ "id": 759,
+ "start": 249.78,
+ "end": 250.01,
+ "text": "simple"
+ },
+ {
+ "id": 760,
+ "start": 250.01,
+ "end": 250.33,
+ "text": "question."
+ },
+ {
+ "id": 761,
+ "start": 250.33,
+ "end": 250.43,
+ "text": "They"
+ },
+ {
+ "id": 762,
+ "start": 250.43,
+ "end": 250.87,
+ "text": "asked,"
+ },
+ {
+ "id": 763,
+ "start": 251.6350000000001,
+ "end": 251.96499999999992,
+ "text": "“Well,"
+ },
+ {
+ "id": 764,
+ "start": 252.84,
+ "end": 253.06,
+ "text": "who’s"
+ },
+ {
+ "id": 765,
+ "start": 252.96333333333334,
+ "end": 253.17666666666668,
+ "text": "going"
+ },
+ {
+ "id": 766,
+ "start": 253.08666666666667,
+ "end": 253.29333333333335,
+ "text": "to"
+ },
+ {
+ "id": 767,
+ "start": 253.21,
+ "end": 253.41,
+ "text": "build"
+ },
+ {
+ "id": 768,
+ "start": 253.41,
+ "end": 254.3,
+ "text": "it?"
+ },
+ {
+ "id": 769,
+ "start": 254.3,
+ "end": 254.51,
+ "text": "Why"
+ },
+ {
+ "id": 770,
+ "start": 254.51,
+ "end": 254.69,
+ "text": "not"
+ },
+ {
+ "id": 771,
+ "start": 254.69,
+ "end": 255.88,
+ "text": "us?”"
+ },
+ {
+ "id": 772,
+ "start": 255.88,
+ "end": 256.05,
+ "text": "And"
+ },
+ {
+ "id": 773,
+ "start": 256.05,
+ "end": 256.1,
+ "text": "I"
+ },
+ {
+ "id": 774,
+ "start": 256.1,
+ "end": 256.3,
+ "text": "came"
+ },
+ {
+ "id": 775,
+ "start": 256.3,
+ "end": 256.48,
+ "text": "home"
+ },
+ {
+ "id": 776,
+ "start": 256.48,
+ "end": 256.75,
+ "text": "thinking"
+ },
+ {
+ "id": 777,
+ "start": 256.75,
+ "end": 256.9,
+ "text": "about"
+ },
+ {
+ "id": 778,
+ "start": 256.8388888888889,
+ "end": 257.03999999999996,
+ "text": "it"
+ },
+ {
+ "id": 779,
+ "start": 256.9277777777778,
+ "end": 257.18,
+ "text": "and"
+ },
+ {
+ "id": 780,
+ "start": 257.01666666666665,
+ "end": 257.32,
+ "text": "I"
+ },
+ {
+ "id": 781,
+ "start": 257.10555555555555,
+ "end": 257.46000000000004,
+ "text": "was"
+ },
+ {
+ "id": 782,
+ "start": 257.19444444444446,
+ "end": 257.6,
+ "text": "like,"
+ },
+ {
+ "id": 783,
+ "start": 257.2833333333333,
+ "end": 257.74,
+ "text": "yeah,"
+ },
+ {
+ "id": 784,
+ "start": 257.3722222222222,
+ "end": 257.88,
+ "text": "why"
+ },
+ {
+ "id": 785,
+ "start": 257.4611111111111,
+ "end": 258.02000000000004,
+ "text": "not"
+ },
+ {
+ "id": 786,
+ "start": 257.55,
+ "end": 258.16,
+ "text": "them?"
+ },
+ {
+ "id": 787,
+ "start": 258.16,
+ "end": 258.34,
+ "text": "Who"
+ },
+ {
+ "id": 788,
+ "start": 258.34,
+ "end": 258.55,
+ "text": "will"
+ },
+ {
+ "id": 789,
+ "start": 258.55,
+ "end": 258.82,
+ "text": "build"
+ },
+ {
+ "id": 790,
+ "start": 259.2849999999999,
+ "end": 259.48999999999995,
+ "text": "this?"
+ },
+ {
+ "id": 791,
+ "start": 260.02,
+ "end": 260.16,
+ "text": "They"
+ },
+ {
+ "id": 792,
+ "start": 260.15,
+ "end": 260.38,
+ "text": "reached"
+ },
+ {
+ "id": 793,
+ "start": 260.28999999999996,
+ "end": 260.516,
+ "text": "out"
+ },
+ {
+ "id": 794,
+ "start": 260.42999999999995,
+ "end": 260.65200000000004,
+ "text": "and"
+ },
+ {
+ "id": 795,
+ "start": 260.57,
+ "end": 260.788,
+ "text": "they"
+ },
+ {
+ "id": 796,
+ "start": 260.71,
+ "end": 260.92400000000004,
+ "text": "asked,"
+ },
+ {
+ "id": 797,
+ "start": 260.85,
+ "end": 261.06,
+ "text": "“Hey,"
+ },
+ {
+ "id": 798,
+ "start": 261.06,
+ "end": 261.18,
+ "text": "are"
+ },
+ {
+ "id": 799,
+ "start": 261.18,
+ "end": 261.33,
+ "text": "you"
+ },
+ {
+ "id": 800,
+ "start": 261.33,
+ "end": 261.7,
+ "text": "interested"
+ },
+ {
+ "id": 801,
+ "start": 261.7,
+ "end": 261.94,
+ "text": "in"
+ },
+ {
+ "id": 802,
+ "start": 261.94,
+ "end": 262.37,
+ "text": "potentially"
+ },
+ {
+ "id": 803,
+ "start": 262.37,
+ "end": 262.79,
+ "text": "interviewing"
+ },
+ {
+ "id": 804,
+ "start": 262.79,
+ "end": 262.91,
+ "text": "for"
+ },
+ {
+ "id": 805,
+ "start": 262.85,
+ "end": 263.07000000000005,
+ "text": "a"
+ },
+ {
+ "id": 806,
+ "start": 262.91,
+ "end": 263.23,
+ "text": "design"
+ },
+ {
+ "id": 807,
+ "start": 263.23,
+ "end": 263.41,
+ "text": "role"
+ },
+ {
+ "id": 808,
+ "start": 263.41,
+ "end": 264.34,
+ "text": "here?”"
+ },
+ {
+ "id": 809,
+ "start": 264.34,
+ "end": 265.04,
+ "text": "And"
+ },
+ {
+ "id": 810,
+ "start": 265.04,
+ "end": 265.16,
+ "text": "I"
+ },
+ {
+ "id": 811,
+ "start": 265.16,
+ "end": 265.4,
+ "text": "said,"
+ },
+ {
+ "id": 812,
+ "start": 265.4,
+ "end": 265.48,
+ "text": "“You"
+ },
+ {
+ "id": 813,
+ "start": 265.48,
+ "end": 265.62,
+ "text": "know"
+ },
+ {
+ "id": 814,
+ "start": 265.555,
+ "end": 265.685,
+ "text": "what,"
+ },
+ {
+ "id": 815,
+ "start": 265.63,
+ "end": 265.75,
+ "text": "I’ll"
+ },
+ {
+ "id": 816,
+ "start": 265.75,
+ "end": 265.93,
+ "text": "try"
+ },
+ {
+ "id": 817,
+ "start": 265.93,
+ "end": 266.06,
+ "text": "this"
+ },
+ {
+ "id": 818,
+ "start": 266.06,
+ "end": 266.18,
+ "text": "out"
+ },
+ {
+ "id": 819,
+ "start": 266.18,
+ "end": 266.29,
+ "text": "for"
+ },
+ {
+ "id": 820,
+ "start": 266.29,
+ "end": 266.44,
+ "text": "one"
+ },
+ {
+ "id": 821,
+ "start": 266.835,
+ "end": 266.99,
+ "text": "year."
+ },
+ {
+ "id": 822,
+ "start": 267.38,
+ "end": 267.54,
+ "text": "See"
+ },
+ {
+ "id": 823,
+ "start": 267.54,
+ "end": 267.64,
+ "text": "what"
+ },
+ {
+ "id": 824,
+ "start": 267.64,
+ "end": 268.08,
+ "text": "happens.”"
+ },
+ {
+ "id": 825,
+ "start": 268.08,
+ "end": 268.45,
+ "text": "And"
+ },
+ {
+ "id": 826,
+ "start": 268.45,
+ "end": 268.64,
+ "text": "one"
+ },
+ {
+ "id": 827,
+ "start": 268.64,
+ "end": 268.77,
+ "text": "year"
+ },
+ {
+ "id": 828,
+ "start": 268.77,
+ "end": 269.05,
+ "text": "became"
+ },
+ {
+ "id": 829,
+ "start": 269.39,
+ "end": 269.58,
+ "text": "six."
+ },
+ {
+ "id": 830,
+ "start": 270.01,
+ "end": 270.11,
+ "text": "In"
+ },
+ {
+ "id": 831,
+ "start": 270.11,
+ "end": 270.4,
+ "text": "terms"
+ },
+ {
+ "id": 832,
+ "start": 270.4,
+ "end": 270.7,
+ "text": "of"
+ },
+ {
+ "id": 833,
+ "start": 270.7,
+ "end": 270.88,
+ "text": "the"
+ },
+ {
+ "id": 834,
+ "start": 270.88,
+ "end": 271.25,
+ "text": "vision"
+ },
+ {
+ "id": 835,
+ "start": 271.25,
+ "end": 271.34,
+ "text": "at"
+ },
+ {
+ "id": 836,
+ "start": 271.34,
+ "end": 271.44,
+ "text": "the"
+ },
+ {
+ "id": 837,
+ "start": 272.385,
+ "end": 272.54499999999996,
+ "text": "time,"
+ },
+ {
+ "id": 838,
+ "start": 273.43,
+ "end": 273.65,
+ "text": "was"
+ },
+ {
+ "id": 839,
+ "start": 273.65,
+ "end": 273.81,
+ "text": "there"
+ },
+ {
+ "id": 840,
+ "start": 273.81,
+ "end": 273.88,
+ "text": "a"
+ },
+ {
+ "id": 841,
+ "start": 273.88,
+ "end": 274.28,
+ "text": "sense"
+ },
+ {
+ "id": 842,
+ "start": 274.28,
+ "end": 275.35,
+ "text": "that"
+ },
+ {
+ "id": 843,
+ "start": 275.35,
+ "end": 275.56,
+ "text": "they"
+ },
+ {
+ "id": 844,
+ "start": 275.56,
+ "end": 275.87,
+ "text": "wanted"
+ },
+ {
+ "id": 845,
+ "start": 275.87,
+ "end": 275.96,
+ "text": "to"
+ },
+ {
+ "id": 846,
+ "start": 275.96,
+ "end": 276.48,
+ "text": "create"
+ },
+ {
+ "id": 847,
+ "start": 276.48,
+ "end": 276.65,
+ "text": "sort"
+ },
+ {
+ "id": 848,
+ "start": 276.65,
+ "end": 276.72,
+ "text": "of"
+ },
+ {
+ "id": 849,
+ "start": 276.72,
+ "end": 276.77,
+ "text": "a"
+ },
+ {
+ "id": 850,
+ "start": 277.04,
+ "end": 277.275,
+ "text": "21st"
+ },
+ {
+ "id": 851,
+ "start": 277.36,
+ "end": 277.78,
+ "text": "century"
+ },
+ {
+ "id": 852,
+ "start": 277.78,
+ "end": 278.55,
+ "text": "public"
+ },
+ {
+ "id": 853,
+ "start": 278.55,
+ "end": 279.55,
+ "text": "space"
+ },
+ {
+ "id": 854,
+ "start": 279.55,
+ "end": 279.74,
+ "text": "as"
+ },
+ {
+ "id": 855,
+ "start": 279.74,
+ "end": 280.37,
+ "text": "well?"
+ },
+ {
+ "id": 856,
+ "start": 280.37,
+ "end": 280.46,
+ "text": "I"
+ },
+ {
+ "id": 857,
+ "start": 280.46,
+ "end": 280.63,
+ "text": "mean,"
+ },
+ {
+ "id": 858,
+ "start": 280.63,
+ "end": 280.8,
+ "text": "in"
+ },
+ {
+ "id": 859,
+ "start": 280.8,
+ "end": 281.11,
+ "text": "terms"
+ },
+ {
+ "id": 860,
+ "start": 281.11,
+ "end": 281.2,
+ "text": "of"
+ },
+ {
+ "id": 861,
+ "start": 281.21000000000004,
+ "end": 281.4,
+ "text": "a"
+ },
+ {
+ "id": 862,
+ "start": 281.31,
+ "end": 281.6,
+ "text": "place"
+ },
+ {
+ "id": 863,
+ "start": 281.6,
+ "end": 281.72,
+ "text": "where"
+ },
+ {
+ "id": 864,
+ "start": 281.72,
+ "end": 282.02,
+ "text": "people"
+ },
+ {
+ "id": 865,
+ "start": 282.02,
+ "end": 282.4,
+ "text": "connect"
+ },
+ {
+ "id": 866,
+ "start": 282.4,
+ "end": 282.51,
+ "text": "and"
+ },
+ {
+ "id": 867,
+ "start": 282.51,
+ "end": 283.94,
+ "text": "share,"
+ },
+ {
+ "id": 868,
+ "start": 283.94,
+ "end": 284.13,
+ "text": "was"
+ },
+ {
+ "id": 869,
+ "start": 284.13,
+ "end": 284.32,
+ "text": "that"
+ },
+ {
+ "id": 870,
+ "start": 284.32,
+ "end": 284.56,
+ "text": "part"
+ },
+ {
+ "id": 871,
+ "start": 284.56,
+ "end": 284.65,
+ "text": "of"
+ },
+ {
+ "id": 872,
+ "start": 284.65,
+ "end": 284.78,
+ "text": "the"
+ },
+ {
+ "id": 873,
+ "start": 284.78,
+ "end": 285.35,
+ "text": "ambition"
+ },
+ {
+ "id": 874,
+ "start": 285.35,
+ "end": 285.64,
+ "text": "to"
+ },
+ {
+ "id": 875,
+ "start": 285.64,
+ "end": 285.83,
+ "text": "be,"
+ },
+ {
+ "id": 876,
+ "start": 285.83,
+ "end": 286.39,
+ "text": "like,"
+ },
+ {
+ "id": 877,
+ "start": 286.39,
+ "end": 286.54,
+ "text": "the"
+ },
+ {
+ "id": 878,
+ "start": 286.54,
+ "end": 286.95,
+ "text": "one"
+ },
+ {
+ "id": 879,
+ "start": 286.95,
+ "end": 287.61,
+ "text": "place,"
+ },
+ {
+ "id": 880,
+ "start": 287.55,
+ "end": 288.05,
+ "text": "something"
+ },
+ {
+ "id": 881,
+ "start": 287.8825,
+ "end": 288.375,
+ "text": "that"
+ },
+ {
+ "id": 882,
+ "start": 288.215,
+ "end": 288.7,
+ "text": "kind"
+ },
+ {
+ "id": 883,
+ "start": 288.5475,
+ "end": 289.02500000000003,
+ "text": "of"
+ },
+ {
+ "id": 884,
+ "start": 288.88,
+ "end": 289.35,
+ "text": "stands"
+ },
+ {
+ "id": 885,
+ "start": 289.35,
+ "end": 289.48,
+ "text": "on"
+ },
+ {
+ "id": 886,
+ "start": 289.48,
+ "end": 289.63,
+ "text": "its"
+ },
+ {
+ "id": 887,
+ "start": 289.63,
+ "end": 290.82,
+ "text": "own?"
+ },
+ {
+ "id": 888,
+ "start": 290.82,
+ "end": 290.93,
+ "text": "I"
+ },
+ {
+ "id": 889,
+ "start": 290.93,
+ "end": 291.24,
+ "text": "think"
+ },
+ {
+ "id": 890,
+ "start": 291.24,
+ "end": 291.62,
+ "text": "early"
+ },
+ {
+ "id": 891,
+ "start": 291.62,
+ "end": 293.07,
+ "text": "on,"
+ },
+ {
+ "id": 892,
+ "start": 293.07,
+ "end": 293.51,
+ "text": "if"
+ },
+ {
+ "id": 893,
+ "start": 293.51,
+ "end": 294.24,
+ "text": "you"
+ },
+ {
+ "id": 894,
+ "start": 294.24,
+ "end": 294.6,
+ "text": "look"
+ },
+ {
+ "id": 895,
+ "start": 294.6,
+ "end": 294.95,
+ "text": "back"
+ },
+ {
+ "id": 896,
+ "start": 294.95,
+ "end": 295.1,
+ "text": "on"
+ },
+ {
+ "id": 897,
+ "start": 295.1,
+ "end": 295.27,
+ "text": "where"
+ },
+ {
+ "id": 898,
+ "start": 295.27,
+ "end": 295.64,
+ "text": "Facebook"
+ },
+ {
+ "id": 899,
+ "start": 295.64,
+ "end": 295.97,
+ "text": "was"
+ },
+ {
+ "id": 900,
+ "start": 295.97,
+ "end": 296.07,
+ "text": "in"
+ },
+ {
+ "id": 901,
+ "start": 296.07,
+ "end": 296.32,
+ "text": "that"
+ },
+ {
+ "id": 902,
+ "start": 296.32,
+ "end": 298.04,
+ "text": "era,"
+ },
+ {
+ "id": 903,
+ "start": 298.04,
+ "end": 298.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 904,
+ "start": 298.44,
+ "end": 298.56,
+ "text": "was"
+ },
+ {
+ "id": 905,
+ "start": 298.56,
+ "end": 299.23,
+ "text": "sitting"
+ },
+ {
+ "id": 906,
+ "start": 299.23,
+ "end": 300.03,
+ "text": "squarely"
+ },
+ {
+ "id": 907,
+ "start": 300.03,
+ "end": 300.17,
+ "text": "in"
+ },
+ {
+ "id": 908,
+ "start": 300.17,
+ "end": 300.25,
+ "text": "the"
+ },
+ {
+ "id": 909,
+ "start": 300.25,
+ "end": 300.89,
+ "text": "shadows"
+ },
+ {
+ "id": 910,
+ "start": 300.89,
+ "end": 301.04,
+ "text": "of"
+ },
+ {
+ "id": 911,
+ "start": 301.04,
+ "end": 301.12,
+ "text": "an"
+ },
+ {
+ "id": 912,
+ "start": 301.12,
+ "end": 301.6,
+ "text": "incumbent"
+ },
+ {
+ "id": 913,
+ "start": 301.6,
+ "end": 302.2,
+ "text": "company"
+ },
+ {
+ "id": 914,
+ "start": 302.2,
+ "end": 302.46,
+ "text": "called"
+ },
+ {
+ "id": 915,
+ "start": 302.46,
+ "end": 304.09,
+ "text": "Myspace."
+ },
+ {
+ "id": 916,
+ "start": 304.09,
+ "end": 304.31,
+ "text": "And"
+ },
+ {
+ "id": 917,
+ "start": 304.31,
+ "end": 304.45,
+ "text": "our"
+ },
+ {
+ "id": 918,
+ "start": 304.45,
+ "end": 304.83,
+ "text": "ambitions"
+ },
+ {
+ "id": 919,
+ "start": 304.83,
+ "end": 304.92,
+ "text": "at"
+ },
+ {
+ "id": 920,
+ "start": 304.92,
+ "end": 305,
+ "text": "the"
+ },
+ {
+ "id": 921,
+ "start": 305,
+ "end": 305.26,
+ "text": "time"
+ },
+ {
+ "id": 922,
+ "start": 305.26,
+ "end": 305.72,
+ "text": "were:"
+ },
+ {
+ "id": 923,
+ "start": 305.72,
+ "end": 306.09,
+ "text": "Can"
+ },
+ {
+ "id": 924,
+ "start": 306.09,
+ "end": 307.04,
+ "text": "we"
+ },
+ {
+ "id": 925,
+ "start": 307.04,
+ "end": 307.32,
+ "text": "stay"
+ },
+ {
+ "id": 926,
+ "start": 307.32,
+ "end": 307.66,
+ "text": "alive"
+ },
+ {
+ "id": 927,
+ "start": 307.66,
+ "end": 307.76,
+ "text": "as"
+ },
+ {
+ "id": 928,
+ "start": 307.76,
+ "end": 307.82,
+ "text": "a"
+ },
+ {
+ "id": 929,
+ "start": 307.82,
+ "end": 308.59,
+ "text": "company?"
+ },
+ {
+ "id": 930,
+ "start": 308.59,
+ "end": 308.9,
+ "text": "Right?"
+ },
+ {
+ "id": 931,
+ "start": 308.9,
+ "end": 309.2,
+ "text": "Can"
+ },
+ {
+ "id": 932,
+ "start": 309.2,
+ "end": 310.04,
+ "text": "we"
+ },
+ {
+ "id": 933,
+ "start": 310.04,
+ "end": 310.82,
+ "text": "demonstrate"
+ },
+ {
+ "id": 934,
+ "start": 310.82,
+ "end": 311.05,
+ "text": "some"
+ },
+ {
+ "id": 935,
+ "start": 311.05,
+ "end": 311.46,
+ "text": "relevance"
+ },
+ {
+ "id": 936,
+ "start": 311.46,
+ "end": 311.54,
+ "text": "in"
+ },
+ {
+ "id": 937,
+ "start": 311.54,
+ "end": 311.6,
+ "text": "a"
+ },
+ {
+ "id": 938,
+ "start": 311.6,
+ "end": 311.86,
+ "text": "world"
+ },
+ {
+ "id": 939,
+ "start": 311.86,
+ "end": 312.02,
+ "text": "where"
+ },
+ {
+ "id": 940,
+ "start": 312.11,
+ "end": 312.375,
+ "text": "there"
+ },
+ {
+ "id": 941,
+ "start": 312.36,
+ "end": 312.73,
+ "text": "appears"
+ },
+ {
+ "id": 942,
+ "start": 312.73,
+ "end": 312.8,
+ "text": "to"
+ },
+ {
+ "id": 943,
+ "start": 312.8,
+ "end": 313.09,
+ "text": "already"
+ },
+ {
+ "id": 944,
+ "start": 313.09,
+ "end": 313.24,
+ "text": "be"
+ },
+ {
+ "id": 945,
+ "start": 313.24,
+ "end": 313.31,
+ "text": "a"
+ },
+ {
+ "id": 946,
+ "start": 313.31,
+ "end": 314.31,
+ "text": "winner"
+ },
+ {
+ "id": 947,
+ "start": 314.31,
+ "end": 314.47,
+ "text": "in"
+ },
+ {
+ "id": 948,
+ "start": 314.47,
+ "end": 314.65,
+ "text": "this"
+ },
+ {
+ "id": 949,
+ "start": 314.65,
+ "end": 315.19,
+ "text": "category"
+ },
+ {
+ "id": 950,
+ "start": 315.19,
+ "end": 315.27,
+ "text": "of"
+ },
+ {
+ "id": 951,
+ "start": 315.76000000000005,
+ "end": 315.875,
+ "text": "product?"
+ },
+ {
+ "id": 952,
+ "start": 316.33,
+ "end": 316.48,
+ "text": "And"
+ },
+ {
+ "id": 953,
+ "start": 316.48,
+ "end": 316.59,
+ "text": "so"
+ },
+ {
+ "id": 954,
+ "start": 316.59,
+ "end": 316.79,
+ "text": "for"
+ },
+ {
+ "id": 955,
+ "start": 316.79,
+ "end": 317.31,
+ "text": "us"
+ },
+ {
+ "id": 956,
+ "start": 317.34999999999997,
+ "end": 317.66,
+ "text": "there"
+ },
+ {
+ "id": 957,
+ "start": 317.91,
+ "end": 318.01,
+ "text": "was"
+ },
+ {
+ "id": 958,
+ "start": 318.01,
+ "end": 318.06,
+ "text": "a"
+ },
+ {
+ "id": 959,
+ "start": 318.06,
+ "end": 318.41,
+ "text": "tremendous"
+ },
+ {
+ "id": 960,
+ "start": 318.41,
+ "end": 318.58,
+ "text": "amount"
+ },
+ {
+ "id": 961,
+ "start": 318.58,
+ "end": 318.65,
+ "text": "of"
+ },
+ {
+ "id": 962,
+ "start": 318.65,
+ "end": 319.41,
+ "text": "urgency"
+ },
+ {
+ "id": 963,
+ "start": 319.41,
+ "end": 319.96,
+ "text": "in,"
+ },
+ {
+ "id": 964,
+ "start": 319.96,
+ "end": 320.31,
+ "text": "one,"
+ },
+ {
+ "id": 965,
+ "start": 320.31,
+ "end": 321.05,
+ "text": "manifesting"
+ },
+ {
+ "id": 966,
+ "start": 321.05,
+ "end": 321.25,
+ "text": "this"
+ },
+ {
+ "id": 967,
+ "start": 321.25,
+ "end": 321.52,
+ "text": "idea"
+ },
+ {
+ "id": 968,
+ "start": 321.45500000000004,
+ "end": 321.695,
+ "text": "for"
+ },
+ {
+ "id": 969,
+ "start": 321.66,
+ "end": 321.87,
+ "text": "News"
+ },
+ {
+ "id": 970,
+ "start": 322.3533333333333,
+ "end": 322.6333333333333,
+ "text": "Feed"
+ },
+ {
+ "id": 971,
+ "start": 323.04666666666657,
+ "end": 323.39666666666665,
+ "text": "–"
+ },
+ {
+ "id": 972,
+ "start": 323.74,
+ "end": 324.16,
+ "text": "seeing"
+ },
+ {
+ "id": 973,
+ "start": 324.16,
+ "end": 324.31,
+ "text": "whether"
+ },
+ {
+ "id": 974,
+ "start": 324.31,
+ "end": 324.37,
+ "text": "or"
+ },
+ {
+ "id": 975,
+ "start": 324.37,
+ "end": 324.53,
+ "text": "not"
+ },
+ {
+ "id": 976,
+ "start": 324.53,
+ "end": 324.59,
+ "text": "it"
+ },
+ {
+ "id": 977,
+ "start": 324.59,
+ "end": 324.91,
+ "text": "actually"
+ },
+ {
+ "id": 978,
+ "start": 324.91,
+ "end": 325.48,
+ "text": "had"
+ },
+ {
+ "id": 979,
+ "start": 325.48,
+ "end": 325.64,
+ "text": "the"
+ },
+ {
+ "id": 980,
+ "start": 325.64,
+ "end": 325.8,
+ "text": "kind"
+ },
+ {
+ "id": 981,
+ "start": 325.8,
+ "end": 325.86,
+ "text": "of"
+ },
+ {
+ "id": 982,
+ "start": 325.86,
+ "end": 326.36,
+ "text": "traction,"
+ },
+ {
+ "id": 983,
+ "start": 326.115,
+ "end": 326.46000000000004,
+ "text": "the"
+ },
+ {
+ "id": 984,
+ "start": 326.37,
+ "end": 326.56,
+ "text": "kind"
+ },
+ {
+ "id": 985,
+ "start": 326.56,
+ "end": 326.62,
+ "text": "of"
+ },
+ {
+ "id": 986,
+ "start": 326.885,
+ "end": 327.33000000000004,
+ "text": "market-product"
+ },
+ {
+ "id": 987,
+ "start": 327.21,
+ "end": 328.04,
+ "text": "fit"
+ },
+ {
+ "id": 988,
+ "start": 328.04,
+ "end": 328.17,
+ "text": "that"
+ },
+ {
+ "id": 989,
+ "start": 328.17,
+ "end": 328.31,
+ "text": "we"
+ },
+ {
+ "id": 990,
+ "start": 328.31,
+ "end": 328.86,
+ "text": "intuitively"
+ },
+ {
+ "id": 991,
+ "start": 328.86,
+ "end": 329.03,
+ "text": "felt"
+ },
+ {
+ "id": 992,
+ "start": 329.03,
+ "end": 329.16,
+ "text": "like"
+ },
+ {
+ "id": 993,
+ "start": 329.16,
+ "end": 329.27,
+ "text": "it"
+ },
+ {
+ "id": 994,
+ "start": 329.27,
+ "end": 330.42,
+ "text": "would;"
+ },
+ {
+ "id": 995,
+ "start": 330.42,
+ "end": 330.52,
+ "text": "and"
+ },
+ {
+ "id": 996,
+ "start": 330.52,
+ "end": 330.63,
+ "text": "then"
+ },
+ {
+ "id": 997,
+ "start": 330.63,
+ "end": 330.79,
+ "text": "three,"
+ },
+ {
+ "id": 998,
+ "start": 330.79,
+ "end": 330.98,
+ "text": "trying"
+ },
+ {
+ "id": 999,
+ "start": 330.98,
+ "end": 331.04,
+ "text": "to"
+ },
+ {
+ "id": 1000,
+ "start": 331.04,
+ "end": 331.15,
+ "text": "get"
+ },
+ {
+ "id": 1001,
+ "start": 331.15,
+ "end": 331.32,
+ "text": "it"
+ },
+ {
+ "id": 1002,
+ "start": 331.32,
+ "end": 331.44,
+ "text": "to"
+ },
+ {
+ "id": 1003,
+ "start": 331.44,
+ "end": 331.53,
+ "text": "as"
+ },
+ {
+ "id": 1004,
+ "start": 331.53,
+ "end": 331.69,
+ "text": "many"
+ },
+ {
+ "id": 1005,
+ "start": 331.69,
+ "end": 332.12,
+ "text": "people"
+ },
+ {
+ "id": 1006,
+ "start": 332.12,
+ "end": 332.29,
+ "text": "as"
+ },
+ {
+ "id": 1007,
+ "start": 332.29,
+ "end": 332.38,
+ "text": "we"
+ },
+ {
+ "id": 1008,
+ "start": 332.38,
+ "end": 332.73,
+ "text": "possibly"
+ },
+ {
+ "id": 1009,
+ "start": 332.73,
+ "end": 333.05,
+ "text": "could."
+ },
+ {
+ "id": 1010,
+ "start": 333.73,
+ "end": 334.0799999999999,
+ "text": "The"
+ },
+ {
+ "id": 1011,
+ "start": 334.73,
+ "end": 335.1099999999999,
+ "text": "[Silicon]"
+ },
+ {
+ "id": 1012,
+ "start": 335.73,
+ "end": 336.14,
+ "text": "Valley"
+ },
+ {
+ "id": 1013,
+ "start": 336.14,
+ "end": 336.26,
+ "text": "is"
+ },
+ {
+ "id": 1014,
+ "start": 336.26,
+ "end": 336.64,
+ "text": "littered"
+ },
+ {
+ "id": 1015,
+ "start": 336.64,
+ "end": 336.87,
+ "text": "with"
+ },
+ {
+ "id": 1016,
+ "start": 336.87,
+ "end": 336.98,
+ "text": "the"
+ },
+ {
+ "id": 1017,
+ "start": 336.98,
+ "end": 337.34,
+ "text": "bodies"
+ },
+ {
+ "id": 1018,
+ "start": 337.34,
+ "end": 337.4,
+ "text": "of"
+ },
+ {
+ "id": 1019,
+ "start": 337.4,
+ "end": 337.93,
+ "text": "companies"
+ },
+ {
+ "id": 1020,
+ "start": 337.93,
+ "end": 338.37,
+ "text": "that"
+ },
+ {
+ "id": 1021,
+ "start": 338.37,
+ "end": 338.66,
+ "text": "were"
+ },
+ {
+ "id": 1022,
+ "start": 338.66,
+ "end": 338.96,
+ "text": "much"
+ },
+ {
+ "id": 1023,
+ "start": 338.96,
+ "end": 339.33,
+ "text": "further"
+ },
+ {
+ "id": 1024,
+ "start": 339.33,
+ "end": 339.85,
+ "text": "along"
+ },
+ {
+ "id": 1025,
+ "start": 339.85,
+ "end": 339.99,
+ "text": "than"
+ },
+ {
+ "id": 1026,
+ "start": 339.99,
+ "end": 340.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 1027,
+ "start": 340.32,
+ "end": 340.5,
+ "text": "was"
+ },
+ {
+ "id": 1028,
+ "start": 340.5,
+ "end": 340.7,
+ "text": "back"
+ },
+ {
+ "id": 1029,
+ "start": 340.7,
+ "end": 341.6,
+ "text": "then."
+ },
+ {
+ "id": 1030,
+ "start": 341.05,
+ "end": 341.8,
+ "text": "So"
+ },
+ {
+ "id": 1031,
+ "start": 341.425,
+ "end": 341.88,
+ "text": "a"
+ },
+ {
+ "id": 1032,
+ "start": 341.8,
+ "end": 341.96,
+ "text": "big"
+ },
+ {
+ "id": 1033,
+ "start": 341.96,
+ "end": 342.3,
+ "text": "impetus"
+ },
+ {
+ "id": 1034,
+ "start": 342.3,
+ "end": 342.42,
+ "text": "for"
+ },
+ {
+ "id": 1035,
+ "start": 342.42,
+ "end": 342.58,
+ "text": "us"
+ },
+ {
+ "id": 1036,
+ "start": 342.58,
+ "end": 342.84,
+ "text": "was"
+ },
+ {
+ "id": 1037,
+ "start": 342.84,
+ "end": 343.12,
+ "text": "moving"
+ },
+ {
+ "id": 1038,
+ "start": 343.07666666666665,
+ "end": 343.29333333333335,
+ "text": "quickly"
+ },
+ {
+ "id": 1039,
+ "start": 343.31333333333333,
+ "end": 343.4666666666667,
+ "text": "enough"
+ },
+ {
+ "id": 1040,
+ "start": 343.55,
+ "end": 343.64,
+ "text": "to"
+ },
+ {
+ "id": 1041,
+ "start": 343.64,
+ "end": 343.7,
+ "text": "be"
+ },
+ {
+ "id": 1042,
+ "start": 343.965,
+ "end": 344.03999999999996,
+ "text": "able"
+ },
+ {
+ "id": 1043,
+ "start": 344.29,
+ "end": 344.37999999999994,
+ "text": "to"
+ },
+ {
+ "id": 1044,
+ "start": 344.615,
+ "end": 344.71999999999997,
+ "text": "realize"
+ },
+ {
+ "id": 1045,
+ "start": 344.94,
+ "end": 345.06,
+ "text": "that"
+ },
+ {
+ "id": 1046,
+ "start": 345.06,
+ "end": 345.35,
+ "text": "market"
+ },
+ {
+ "id": 1047,
+ "start": 345.35,
+ "end": 347.64,
+ "text": "opportunity."
+ },
+ {
+ "id": 1048,
+ "start": 347.64,
+ "end": 347.78,
+ "text": "At"
+ },
+ {
+ "id": 1049,
+ "start": 347.78,
+ "end": 347.91,
+ "text": "no"
+ },
+ {
+ "id": 1050,
+ "start": 347.91,
+ "end": 348.11,
+ "text": "point"
+ },
+ {
+ "id": 1051,
+ "start": 348.04,
+ "end": 348.19,
+ "text": "did"
+ },
+ {
+ "id": 1052,
+ "start": 348.17,
+ "end": 348.27,
+ "text": "we"
+ },
+ {
+ "id": 1053,
+ "start": 348.27,
+ "end": 348.54,
+ "text": "call"
+ },
+ {
+ "id": 1054,
+ "start": 348.54,
+ "end": 349.14,
+ "text": "it"
+ },
+ {
+ "id": 1055,
+ "start": 349.14,
+ "end": 349.26,
+ "text": "a"
+ },
+ {
+ "id": 1056,
+ "start": 349.26,
+ "end": 349.58,
+ "text": "public"
+ },
+ {
+ "id": 1057,
+ "start": 349.58,
+ "end": 349.87,
+ "text": "space"
+ },
+ {
+ "id": 1058,
+ "start": 349.8075,
+ "end": 350.095,
+ "text": "for"
+ },
+ {
+ "id": 1059,
+ "start": 350.03499999999997,
+ "end": 350.32,
+ "text": "the"
+ },
+ {
+ "id": 1060,
+ "start": 350.2625,
+ "end": 350.54499999999996,
+ "text": "21st"
+ },
+ {
+ "id": 1061,
+ "start": 350.49,
+ "end": 350.77,
+ "text": "century."
+ },
+ {
+ "id": 1062,
+ "start": 350.77,
+ "end": 350.86,
+ "text": "That"
+ },
+ {
+ "id": 1063,
+ "start": 350.86,
+ "end": 351.07,
+ "text": "wasn’t"
+ },
+ {
+ "id": 1064,
+ "start": 351.07,
+ "end": 351.68,
+ "text": "really"
+ },
+ {
+ "id": 1065,
+ "start": 351.68,
+ "end": 351.81,
+ "text": "the"
+ },
+ {
+ "id": 1066,
+ "start": 351.81,
+ "end": 352.09,
+ "text": "language"
+ },
+ {
+ "id": 1067,
+ "start": 352.09,
+ "end": 352.18,
+ "text": "that"
+ },
+ {
+ "id": 1068,
+ "start": 352.18,
+ "end": 352.26,
+ "text": "we"
+ },
+ {
+ "id": 1069,
+ "start": 352.34000000000003,
+ "end": 352.41999999999996,
+ "text": "used"
+ },
+ {
+ "id": 1070,
+ "start": 352.5,
+ "end": 352.58,
+ "text": "at"
+ },
+ {
+ "id": 1071,
+ "start": 352.58,
+ "end": 352.67,
+ "text": "the"
+ },
+ {
+ "id": 1072,
+ "start": 352.67,
+ "end": 352.92,
+ "text": "time."
+ },
+ {
+ "id": 1073,
+ "start": 352.92,
+ "end": 352.96,
+ "text": "I"
+ },
+ {
+ "id": 1074,
+ "start": 352.96,
+ "end": 353.13,
+ "text": "think"
+ },
+ {
+ "id": 1075,
+ "start": 353.07,
+ "end": 353.70000000000005,
+ "text": "it"
+ },
+ {
+ "id": 1076,
+ "start": 353.18,
+ "end": 354.27,
+ "text": "was"
+ },
+ {
+ "id": 1077,
+ "start": 353.29,
+ "end": 354.84,
+ "text": "more"
+ },
+ {
+ "id": 1078,
+ "start": 354.84,
+ "end": 355.67,
+ "text": "foundational."
+ },
+ {
+ "id": 1079,
+ "start": 355.67,
+ "end": 355.84,
+ "text": "It"
+ },
+ {
+ "id": 1080,
+ "start": 355.84,
+ "end": 356.56,
+ "text": "was"
+ },
+ {
+ "id": 1081,
+ "start": 356.56,
+ "end": 356.76,
+ "text": "this"
+ },
+ {
+ "id": 1082,
+ "start": 356.76,
+ "end": 357.08,
+ "text": "idea"
+ },
+ {
+ "id": 1083,
+ "start": 357.08,
+ "end": 357.77,
+ "text": "that"
+ },
+ {
+ "id": 1084,
+ "start": 357.77,
+ "end": 358.08,
+ "text": "today"
+ },
+ {
+ "id": 1085,
+ "start": 358.08,
+ "end": 358.22,
+ "text": "it’s"
+ },
+ {
+ "id": 1086,
+ "start": 358.22,
+ "end": 358.63,
+ "text": "difficult"
+ },
+ {
+ "id": 1087,
+ "start": 358.63,
+ "end": 358.74,
+ "text": "for"
+ },
+ {
+ "id": 1088,
+ "start": 358.74,
+ "end": 359.02,
+ "text": "people"
+ },
+ {
+ "id": 1089,
+ "start": 359.02,
+ "end": 359.18,
+ "text": "to"
+ },
+ {
+ "id": 1090,
+ "start": 359.18,
+ "end": 359.47,
+ "text": "share"
+ },
+ {
+ "id": 1091,
+ "start": 359.47,
+ "end": 360.43,
+ "text": "information"
+ },
+ {
+ "id": 1092,
+ "start": 360.43,
+ "end": 360.72,
+ "text": "with"
+ },
+ {
+ "id": 1093,
+ "start": 360.72,
+ "end": 360.81,
+ "text": "the"
+ },
+ {
+ "id": 1094,
+ "start": 360.81,
+ "end": 361.08,
+ "text": "folks"
+ },
+ {
+ "id": 1095,
+ "start": 361.08,
+ "end": 361.21,
+ "text": "that"
+ },
+ {
+ "id": 1096,
+ "start": 361.145,
+ "end": 361.445,
+ "text": "they’re"
+ },
+ {
+ "id": 1097,
+ "start": 361.21,
+ "end": 361.68,
+ "text": "closest"
+ },
+ {
+ "id": 1098,
+ "start": 361.68,
+ "end": 362.396,
+ "text": "with"
+ },
+ {
+ "id": 1099,
+ "start": 362.396,
+ "end": 362.686,
+ "text": "and"
+ },
+ {
+ "id": 1100,
+ "start": 362.686,
+ "end": 362.766,
+ "text": "to"
+ },
+ {
+ "id": 1101,
+ "start": 362.766,
+ "end": 362.906,
+ "text": "do"
+ },
+ {
+ "id": 1102,
+ "start": 362.906,
+ "end": 363.136,
+ "text": "so"
+ },
+ {
+ "id": 1103,
+ "start": 363.136,
+ "end": 363.256,
+ "text": "with"
+ },
+ {
+ "id": 1104,
+ "start": 363.256,
+ "end": 363.316,
+ "text": "the"
+ },
+ {
+ "id": 1105,
+ "start": 363.316,
+ "end": 363.856,
+ "text": "confidence"
+ },
+ {
+ "id": 1106,
+ "start": 363.856,
+ "end": 364.016,
+ "text": "that"
+ },
+ {
+ "id": 1107,
+ "start": 364.016,
+ "end": 364.216,
+ "text": "that"
+ },
+ {
+ "id": 1108,
+ "start": 364.216,
+ "end": 365.396,
+ "text": "information"
+ },
+ {
+ "id": 1109,
+ "start": 364.946,
+ "end": 365.816,
+ "text": "isn’t"
+ },
+ {
+ "id": 1110,
+ "start": 365.76099999999997,
+ "end": 366.256,
+ "text": "broadcasted"
+ },
+ {
+ "id": 1111,
+ "start": 366.576,
+ "end": 366.696,
+ "text": "to"
+ },
+ {
+ "id": 1112,
+ "start": 366.696,
+ "end": 366.856,
+ "text": "the"
+ },
+ {
+ "id": 1113,
+ "start": 366.856,
+ "end": 367.186,
+ "text": "entire"
+ },
+ {
+ "id": 1114,
+ "start": 367.186,
+ "end": 368.916,
+ "text": "planet."
+ },
+ {
+ "id": 1115,
+ "start": 368.916,
+ "end": 369.106,
+ "text": "So"
+ },
+ {
+ "id": 1116,
+ "start": 369.106,
+ "end": 369.216,
+ "text": "we"
+ },
+ {
+ "id": 1117,
+ "start": 369.216,
+ "end": 369.296,
+ "text": "were"
+ },
+ {
+ "id": 1118,
+ "start": 369.296,
+ "end": 369.506,
+ "text": "really"
+ },
+ {
+ "id": 1119,
+ "start": 369.506,
+ "end": 369.796,
+ "text": "focused"
+ },
+ {
+ "id": 1120,
+ "start": 369.796,
+ "end": 369.886,
+ "text": "on"
+ },
+ {
+ "id": 1121,
+ "start": 369.886,
+ "end": 371.596,
+ "text": "privacy,"
+ },
+ {
+ "id": 1122,
+ "start": 371.596,
+ "end": 371.876,
+ "text": "on"
+ },
+ {
+ "id": 1123,
+ "start": 371.876,
+ "end": 372.186,
+ "text": "these"
+ },
+ {
+ "id": 1124,
+ "start": 372.186,
+ "end": 372.656,
+ "text": "fixed,"
+ },
+ {
+ "id": 1125,
+ "start": 372.656,
+ "end": 373.036,
+ "text": "finite"
+ },
+ {
+ "id": 1126,
+ "start": 373.036,
+ "end": 374.126,
+ "text": "audiences,"
+ },
+ {
+ "id": 1127,
+ "start": 374.126,
+ "end": 374.316,
+ "text": "and"
+ },
+ {
+ "id": 1128,
+ "start": 374.316,
+ "end": 374.536,
+ "text": "making"
+ },
+ {
+ "id": 1129,
+ "start": 374.536,
+ "end": 374.736,
+ "text": "sure"
+ },
+ {
+ "id": 1130,
+ "start": 374.791,
+ "end": 375.0285,
+ "text": "the"
+ },
+ {
+ "id": 1131,
+ "start": 375.046,
+ "end": 375.32099999999997,
+ "text": "people"
+ },
+ {
+ "id": 1132,
+ "start": 375.301,
+ "end": 375.6135,
+ "text": "–"
+ },
+ {
+ "id": 1133,
+ "start": 375.556,
+ "end": 375.906,
+ "text": "anyone"
+ },
+ {
+ "id": 1134,
+ "start": 375.906,
+ "end": 376.006,
+ "text": "who"
+ },
+ {
+ "id": 1135,
+ "start": 376.031,
+ "end": 376.1235,
+ "text": "signed"
+ },
+ {
+ "id": 1136,
+ "start": 376.156,
+ "end": 376.241,
+ "text": "up"
+ },
+ {
+ "id": 1137,
+ "start": 376.281,
+ "end": 376.3585,
+ "text": "to"
+ },
+ {
+ "id": 1138,
+ "start": 376.406,
+ "end": 376.476,
+ "text": "the"
+ },
+ {
+ "id": 1139,
+ "start": 376.476,
+ "end": 377.036,
+ "text": "service"
+ },
+ {
+ "id": 1140,
+ "start": 376.921,
+ "end": 377.276,
+ "text": "–"
+ },
+ {
+ "id": 1141,
+ "start": 377.366,
+ "end": 377.516,
+ "text": "were"
+ },
+ {
+ "id": 1142,
+ "start": 377.516,
+ "end": 377.766,
+ "text": "able"
+ },
+ {
+ "id": 1143,
+ "start": 377.766,
+ "end": 377.886,
+ "text": "to"
+ },
+ {
+ "id": 1144,
+ "start": 377.886,
+ "end": 378.716,
+ "text": "find"
+ },
+ {
+ "id": 1145,
+ "start": 378.716,
+ "end": 378.826,
+ "text": "the"
+ },
+ {
+ "id": 1146,
+ "start": 378.826,
+ "end": 379.056,
+ "text": "folks"
+ },
+ {
+ "id": 1147,
+ "start": 379.056,
+ "end": 379.146,
+ "text": "that"
+ },
+ {
+ "id": 1148,
+ "start": 379.146,
+ "end": 379.216,
+ "text": "they"
+ },
+ {
+ "id": 1149,
+ "start": 379.216,
+ "end": 379.326,
+ "text": "were"
+ },
+ {
+ "id": 1150,
+ "start": 379.326,
+ "end": 379.746,
+ "text": "connected"
+ },
+ {
+ "id": 1151,
+ "start": 379.746,
+ "end": 379.956,
+ "text": "with"
+ },
+ {
+ "id": 1152,
+ "start": 379.956,
+ "end": 380.046,
+ "text": "in"
+ },
+ {
+ "id": 1153,
+ "start": 380.046,
+ "end": 380.226,
+ "text": "real"
+ },
+ {
+ "id": 1154,
+ "start": 380.226,
+ "end": 380.776,
+ "text": "life"
+ },
+ {
+ "id": 1155,
+ "start": 380.776,
+ "end": 380.976,
+ "text": "on"
+ },
+ {
+ "id": 1156,
+ "start": 380.976,
+ "end": 381.056,
+ "text": "the"
+ },
+ {
+ "id": 1157,
+ "start": 381.056,
+ "end": 381.546,
+ "text": "platform."
+ },
+ {
+ "id": 1158,
+ "start": 381.481,
+ "end": 382.0009999999999,
+ "text": "…"
+ },
+ {
+ "id": 1159,
+ "start": 381.906,
+ "end": 382.456,
+ "text": "What"
+ },
+ {
+ "id": 1160,
+ "start": 382.456,
+ "end": 382.596,
+ "text": "was"
+ },
+ {
+ "id": 1161,
+ "start": 382.596,
+ "end": 382.686,
+ "text": "the"
+ },
+ {
+ "id": 1162,
+ "start": 382.686,
+ "end": 383.176,
+ "text": "competitive"
+ },
+ {
+ "id": 1163,
+ "start": 383.176,
+ "end": 383.546,
+ "text": "spirit"
+ },
+ {
+ "id": 1164,
+ "start": 383.546,
+ "end": 383.876,
+ "text": "inside"
+ },
+ {
+ "id": 1165,
+ "start": 383.876,
+ "end": 383.946,
+ "text": "of"
+ },
+ {
+ "id": 1166,
+ "start": 383.946,
+ "end": 384.396,
+ "text": "Facebook"
+ },
+ {
+ "id": 1167,
+ "start": 384.396,
+ "end": 384.476,
+ "text": "at"
+ },
+ {
+ "id": 1168,
+ "start": 384.476,
+ "end": 384.666,
+ "text": "that"
+ },
+ {
+ "id": 1169,
+ "start": 384.666,
+ "end": 385.206,
+ "text": "point?"
+ },
+ {
+ "id": 1170,
+ "start": 385.206,
+ "end": 385.646,
+ "text": "I"
+ },
+ {
+ "id": 1171,
+ "start": 385.646,
+ "end": 385.816,
+ "text": "mean,"
+ },
+ {
+ "id": 1172,
+ "start": 385.816,
+ "end": 385.956,
+ "text": "we"
+ },
+ {
+ "id": 1173,
+ "start": 385.956,
+ "end": 386.566,
+ "text": "were"
+ },
+ {
+ "id": 1174,
+ "start": 386.566,
+ "end": 386.816,
+ "text": "an"
+ },
+ {
+ "id": 1175,
+ "start": 386.816,
+ "end": 387.256,
+ "text": "ambitious"
+ },
+ {
+ "id": 1176,
+ "start": 387.256,
+ "end": 388.076,
+ "text": "company."
+ },
+ {
+ "id": 1177,
+ "start": 388.076,
+ "end": 388.176,
+ "text": "I"
+ },
+ {
+ "id": 1178,
+ "start": 388.176,
+ "end": 388.396,
+ "text": "think"
+ },
+ {
+ "id": 1179,
+ "start": 388.396,
+ "end": 388.666,
+ "text": "that"
+ },
+ {
+ "id": 1180,
+ "start": 388.666,
+ "end": 389.136,
+ "text": "Facebook"
+ },
+ {
+ "id": 1181,
+ "start": 389.136,
+ "end": 389.246,
+ "text": "as"
+ },
+ {
+ "id": 1182,
+ "start": 389.246,
+ "end": 389.306,
+ "text": "a"
+ },
+ {
+ "id": 1183,
+ "start": 389.306,
+ "end": 389.726,
+ "text": "culture"
+ },
+ {
+ "id": 1184,
+ "start": 389.726,
+ "end": 390.186,
+ "text": "naturally"
+ },
+ {
+ "id": 1185,
+ "start": 390.186,
+ "end": 390.666,
+ "text": "attracted"
+ },
+ {
+ "id": 1186,
+ "start": 390.666,
+ "end": 391.006,
+ "text": "people"
+ },
+ {
+ "id": 1187,
+ "start": 391.006,
+ "end": 392.196,
+ "text": "who"
+ },
+ {
+ "id": 1188,
+ "start": 392.196,
+ "end": 392.586,
+ "text": "had"
+ },
+ {
+ "id": 1189,
+ "start": 392.586,
+ "end": 392.776,
+ "text": "this"
+ },
+ {
+ "id": 1190,
+ "start": 392.776,
+ "end": 393.066,
+ "text": "mix"
+ },
+ {
+ "id": 1191,
+ "start": 393.066,
+ "end": 393.186,
+ "text": "of"
+ },
+ {
+ "id": 1192,
+ "start": 393.186,
+ "end": 394.076,
+ "text": "competition,"
+ },
+ {
+ "id": 1193,
+ "start": 394.076,
+ "end": 395.236,
+ "text": "ambition,"
+ },
+ {
+ "id": 1194,
+ "start": 395.236,
+ "end": 396.276,
+ "text": "speed,"
+ },
+ {
+ "id": 1195,
+ "start": 395.916,
+ "end": 396.416,
+ "text": "a"
+ },
+ {
+ "id": 1196,
+ "start": 396.32099999999997,
+ "end": 396.85600000000005,
+ "text": "real"
+ },
+ {
+ "id": 1197,
+ "start": 396.726,
+ "end": 397.296,
+ "text": "desire"
+ },
+ {
+ "id": 1198,
+ "start": 398.19100000000003,
+ "end": 398.55099999999993,
+ "text": "to"
+ },
+ {
+ "id": 1199,
+ "start": 399.656,
+ "end": 399.806,
+ "text": "kind"
+ },
+ {
+ "id": 1200,
+ "start": 399.806,
+ "end": 399.876,
+ "text": "of"
+ },
+ {
+ "id": 1201,
+ "start": 399.876,
+ "end": 400.236,
+ "text": "show"
+ },
+ {
+ "id": 1202,
+ "start": 400.236,
+ "end": 400.326,
+ "text": "the"
+ },
+ {
+ "id": 1203,
+ "start": 400.326,
+ "end": 400.586,
+ "text": "world"
+ },
+ {
+ "id": 1204,
+ "start": 400.586,
+ "end": 400.676,
+ "text": "an"
+ },
+ {
+ "id": 1205,
+ "start": 400.676,
+ "end": 401.626,
+ "text": "alternative"
+ },
+ {
+ "id": 1206,
+ "start": 401.356,
+ "end": 401.766,
+ "text": "to"
+ },
+ {
+ "id": 1207,
+ "start": 402.27600000000007,
+ "end": 402.67100000000005,
+ "text": "Myspace."
+ },
+ {
+ "id": 1208,
+ "start": 403.196,
+ "end": 403.576,
+ "text": "And"
+ },
+ {
+ "id": 1209,
+ "start": 403.576,
+ "end": 403.766,
+ "text": "more"
+ },
+ {
+ "id": 1210,
+ "start": 403.766,
+ "end": 405.796,
+ "text": "importantly,"
+ },
+ {
+ "id": 1211,
+ "start": 405.796,
+ "end": 405.906,
+ "text": "it"
+ },
+ {
+ "id": 1212,
+ "start": 405.906,
+ "end": 406.296,
+ "text": "was"
+ },
+ {
+ "id": 1213,
+ "start": 406.296,
+ "end": 406.346,
+ "text": "a"
+ },
+ {
+ "id": 1214,
+ "start": 406.346,
+ "end": 406.536,
+ "text": "group"
+ },
+ {
+ "id": 1215,
+ "start": 406.536,
+ "end": 406.616,
+ "text": "of"
+ },
+ {
+ "id": 1216,
+ "start": 406.616,
+ "end": 406.866,
+ "text": "people"
+ },
+ {
+ "id": 1217,
+ "start": 406.866,
+ "end": 406.946,
+ "text": "who"
+ },
+ {
+ "id": 1218,
+ "start": 406.941,
+ "end": 407.181,
+ "text": "were"
+ },
+ {
+ "id": 1219,
+ "start": 407.016,
+ "end": 407.416,
+ "text": "really"
+ },
+ {
+ "id": 1220,
+ "start": 407.73600000000005,
+ "end": 408.136,
+ "text": "mission-driven."
+ },
+ {
+ "id": 1221,
+ "start": 408.456,
+ "end": 408.856,
+ "text": "They"
+ },
+ {
+ "id": 1222,
+ "start": 408.856,
+ "end": 409.476,
+ "text": "genuinely"
+ },
+ {
+ "id": 1223,
+ "start": 409.476,
+ "end": 409.896,
+ "text": "believe"
+ },
+ {
+ "id": 1224,
+ "start": 409.896,
+ "end": 411.096,
+ "text": "that"
+ },
+ {
+ "id": 1225,
+ "start": 411.096,
+ "end": 411.446,
+ "text": "this"
+ },
+ {
+ "id": 1226,
+ "start": 411.446,
+ "end": 411.946,
+ "text": "mechanism"
+ },
+ {
+ "id": 1227,
+ "start": 411.946,
+ "end": 412.206,
+ "text": "didn’t"
+ },
+ {
+ "id": 1228,
+ "start": 412.206,
+ "end": 412.536,
+ "text": "exist"
+ },
+ {
+ "id": 1229,
+ "start": 412.536,
+ "end": 412.616,
+ "text": "in"
+ },
+ {
+ "id": 1230,
+ "start": 412.616,
+ "end": 412.686,
+ "text": "the"
+ },
+ {
+ "id": 1231,
+ "start": 413.0559999999999,
+ "end": 413.21099999999996,
+ "text": "world."
+ },
+ {
+ "id": 1232,
+ "start": 413.496,
+ "end": 413.736,
+ "text": "And"
+ },
+ {
+ "id": 1233,
+ "start": 413.736,
+ "end": 413.866,
+ "text": "it"
+ },
+ {
+ "id": 1234,
+ "start": 413.866,
+ "end": 414.196,
+ "text": "needed"
+ },
+ {
+ "id": 1235,
+ "start": 414.196,
+ "end": 414.476,
+ "text": "to."
+ },
+ {
+ "id": 1236,
+ "start": 414.476,
+ "end": 415.346,
+ "text": "And"
+ },
+ {
+ "id": 1237,
+ "start": 415.346,
+ "end": 415.546,
+ "text": "our"
+ },
+ {
+ "id": 1238,
+ "start": 415.546,
+ "end": 416.086,
+ "text": "intuition"
+ },
+ {
+ "id": 1239,
+ "start": 416.086,
+ "end": 416.746,
+ "text": "said"
+ },
+ {
+ "id": 1240,
+ "start": 416.746,
+ "end": 416.926,
+ "text": "this"
+ },
+ {
+ "id": 1241,
+ "start": 416.926,
+ "end": 417.206,
+ "text": "wasn’t,"
+ },
+ {
+ "id": 1242,
+ "start": 417.206,
+ "end": 417.756,
+ "text": "like,"
+ },
+ {
+ "id": 1243,
+ "start": 417.576,
+ "end": 418.256,
+ "text": "relevant"
+ },
+ {
+ "id": 1244,
+ "start": 417.916,
+ "end": 418.316,
+ "text": "[only]"
+ },
+ {
+ "id": 1245,
+ "start": 418.256,
+ "end": 418.376,
+ "text": "to"
+ },
+ {
+ "id": 1246,
+ "start": 418.376,
+ "end": 418.876,
+ "text": "college"
+ },
+ {
+ "id": 1247,
+ "start": 418.876,
+ "end": 420.296,
+ "text": "students."
+ },
+ {
+ "id": 1248,
+ "start": 420.296,
+ "end": 420.456,
+ "text": "This"
+ },
+ {
+ "id": 1249,
+ "start": 420.456,
+ "end": 420.576,
+ "text": "felt"
+ },
+ {
+ "id": 1250,
+ "start": 420.576,
+ "end": 420.716,
+ "text": "like"
+ },
+ {
+ "id": 1251,
+ "start": 420.716,
+ "end": 420.786,
+ "text": "it"
+ },
+ {
+ "id": 1252,
+ "start": 420.786,
+ "end": 420.886,
+ "text": "could"
+ },
+ {
+ "id": 1253,
+ "start": 420.886,
+ "end": 420.996,
+ "text": "be"
+ },
+ {
+ "id": 1254,
+ "start": 420.996,
+ "end": 421.346,
+ "text": "relevant"
+ },
+ {
+ "id": 1255,
+ "start": 421.346,
+ "end": 421.446,
+ "text": "to"
+ },
+ {
+ "id": 1256,
+ "start": 421.446,
+ "end": 421.716,
+ "text": "any"
+ },
+ {
+ "id": 1257,
+ "start": 421.716,
+ "end": 422.086,
+ "text": "person"
+ },
+ {
+ "id": 1258,
+ "start": 422.086,
+ "end": 422.196,
+ "text": "on"
+ },
+ {
+ "id": 1259,
+ "start": 422.196,
+ "end": 422.276,
+ "text": "the"
+ },
+ {
+ "id": 1260,
+ "start": 422.8660000000001,
+ "end": 422.96600000000007,
+ "text": "planet."
+ },
+ {
+ "id": 1261,
+ "start": 423.53600000000006,
+ "end": 423.6560000000001,
+ "text": "And"
+ },
+ {
+ "id": 1262,
+ "start": 424.206,
+ "end": 424.346,
+ "text": "that"
+ },
+ {
+ "id": 1263,
+ "start": 424.346,
+ "end": 424.476,
+ "text": "sort"
+ },
+ {
+ "id": 1264,
+ "start": 424.476,
+ "end": 424.556,
+ "text": "of"
+ },
+ {
+ "id": 1265,
+ "start": 424.791,
+ "end": 425.11100000000005,
+ "text": "realization"
+ },
+ {
+ "id": 1266,
+ "start": 425.106,
+ "end": 425.666,
+ "text": "is"
+ },
+ {
+ "id": 1267,
+ "start": 425.656,
+ "end": 425.936,
+ "text": "somewhat"
+ },
+ {
+ "id": 1268,
+ "start": 425.936,
+ "end": 426.3593333333334,
+ "text": "profound"
+ },
+ {
+ "id": 1269,
+ "start": 426.216,
+ "end": 426.7826666666668,
+ "text": "and"
+ },
+ {
+ "id": 1270,
+ "start": 426.496,
+ "end": 427.206,
+ "text": "really"
+ },
+ {
+ "id": 1271,
+ "start": 427.206,
+ "end": 427.496,
+ "text": "guided"
+ },
+ {
+ "id": 1272,
+ "start": 427.496,
+ "end": 427.556,
+ "text": "a"
+ },
+ {
+ "id": 1273,
+ "start": 427.556,
+ "end": 427.726,
+ "text": "lot"
+ },
+ {
+ "id": 1274,
+ "start": 427.726,
+ "end": 427.796,
+ "text": "of"
+ },
+ {
+ "id": 1275,
+ "start": 427.796,
+ "end": 427.876,
+ "text": "the"
+ },
+ {
+ "id": 1276,
+ "start": 427.876,
+ "end": 428.136,
+ "text": "early"
+ },
+ {
+ "id": 1277,
+ "start": 428.136,
+ "end": 428.496,
+ "text": "design"
+ },
+ {
+ "id": 1278,
+ "start": 428.496,
+ "end": 429.016,
+ "text": "principles"
+ },
+ {
+ "id": 1279,
+ "start": 429.016,
+ "end": 429.416,
+ "text": "around"
+ },
+ {
+ "id": 1280,
+ "start": 429.416,
+ "end": 430.206,
+ "text": "building"
+ },
+ {
+ "id": 1281,
+ "start": 430.206,
+ "end": 430.326,
+ "text": "a"
+ },
+ {
+ "id": 1282,
+ "start": 430.326,
+ "end": 430.656,
+ "text": "product"
+ },
+ {
+ "id": 1283,
+ "start": 430.656,
+ "end": 430.746,
+ "text": "that"
+ },
+ {
+ "id": 1284,
+ "start": 430.746,
+ "end": 430.836,
+ "text": "was"
+ },
+ {
+ "id": 1285,
+ "start": 430.836,
+ "end": 431.986,
+ "text": "inherently"
+ },
+ {
+ "id": 1286,
+ "start": 431.986,
+ "end": 432.876,
+ "text": "universal."
+ },
+ {
+ "id": 1287,
+ "start": 432.876,
+ "end": 433.116,
+ "text": "And"
+ },
+ {
+ "id": 1288,
+ "start": 433.116,
+ "end": 433.286,
+ "text": "so"
+ },
+ {
+ "id": 1289,
+ "start": 433.286,
+ "end": 433.416,
+ "text": "what"
+ },
+ {
+ "id": 1290,
+ "start": 433.416,
+ "end": 433.536,
+ "text": "does"
+ },
+ {
+ "id": 1291,
+ "start": 433.536,
+ "end": 433.736,
+ "text": "that"
+ },
+ {
+ "id": 1292,
+ "start": 433.736,
+ "end": 434.046,
+ "text": "mean"
+ },
+ {
+ "id": 1293,
+ "start": 434.031,
+ "end": 434.341,
+ "text": "–"
+ },
+ {
+ "id": 1294,
+ "start": 434.326,
+ "end": 434.636,
+ "text": "building"
+ },
+ {
+ "id": 1295,
+ "start": 434.526,
+ "end": 434.886,
+ "text": "a"
+ },
+ {
+ "id": 1296,
+ "start": 434.726,
+ "end": 435.136,
+ "text": "product"
+ },
+ {
+ "id": 1297,
+ "start": 435.136,
+ "end": 435.336,
+ "text": "that’s"
+ },
+ {
+ "id": 1298,
+ "start": 435.336,
+ "end": 435.776,
+ "text": "inherently"
+ },
+ {
+ "id": 1299,
+ "start": 435.80099999999993,
+ "end": 436.046,
+ "text": "universal?"
+ },
+ {
+ "id": 1300,
+ "start": 436.266,
+ "end": 436.316,
+ "text": "I"
+ },
+ {
+ "id": 1301,
+ "start": 436.316,
+ "end": 436.436,
+ "text": "mean,"
+ },
+ {
+ "id": 1302,
+ "start": 436.436,
+ "end": 436.616,
+ "text": "get"
+ },
+ {
+ "id": 1303,
+ "start": 436.616,
+ "end": 436.876,
+ "text": "into"
+ },
+ {
+ "id": 1304,
+ "start": 436.876,
+ "end": 436.996,
+ "text": "the"
+ },
+ {
+ "id": 1305,
+ "start": 437.106,
+ "end": 437.211,
+ "text": "story"
+ },
+ {
+ "id": 1306,
+ "start": 437.336,
+ "end": 437.426,
+ "text": "of"
+ },
+ {
+ "id": 1307,
+ "start": 437.426,
+ "end": 437.706,
+ "text": "what"
+ },
+ {
+ "id": 1308,
+ "start": 437.56600000000003,
+ "end": 437.781,
+ "text": "[were]"
+ },
+ {
+ "id": 1309,
+ "start": 437.706,
+ "end": 437.856,
+ "text": "some"
+ },
+ {
+ "id": 1310,
+ "start": 437.856,
+ "end": 437.936,
+ "text": "of"
+ },
+ {
+ "id": 1311,
+ "start": 437.936,
+ "end": 438.076,
+ "text": "the"
+ },
+ {
+ "id": 1312,
+ "start": 438.26599999999996,
+ "end": 438.4626666666667,
+ "text": "contributions"
+ },
+ {
+ "id": 1313,
+ "start": 438.59599999999995,
+ "end": 438.84933333333333,
+ "text": "you"
+ },
+ {
+ "id": 1314,
+ "start": 438.926,
+ "end": 439.236,
+ "text": "made."
+ },
+ {
+ "id": 1315,
+ "start": 439.236,
+ "end": 439.376,
+ "text": "But"
+ },
+ {
+ "id": 1316,
+ "start": 439.376,
+ "end": 439.506,
+ "text": "what"
+ },
+ {
+ "id": 1317,
+ "start": 439.506,
+ "end": 439.646,
+ "text": "does"
+ },
+ {
+ "id": 1318,
+ "start": 439.646,
+ "end": 439.826,
+ "text": "that"
+ },
+ {
+ "id": 1319,
+ "start": 439.826,
+ "end": 440.166,
+ "text": "mean?"
+ },
+ {
+ "id": 1320,
+ "start": 440.26099999999997,
+ "end": 440.57599999999996,
+ "text": "Yeah."
+ },
+ {
+ "id": 1321,
+ "start": 440.696,
+ "end": 440.986,
+ "text": "So"
+ },
+ {
+ "id": 1322,
+ "start": 440.986,
+ "end": 441.106,
+ "text": "a"
+ },
+ {
+ "id": 1323,
+ "start": 441.106,
+ "end": 441.466,
+ "text": "product"
+ },
+ {
+ "id": 1324,
+ "start": 441.466,
+ "end": 441.606,
+ "text": "that’s"
+ },
+ {
+ "id": 1325,
+ "start": 441.606,
+ "end": 442.076,
+ "text": "inherently"
+ },
+ {
+ "id": 1326,
+ "start": 442.076,
+ "end": 442.626,
+ "text": "universal"
+ },
+ {
+ "id": 1327,
+ "start": 442.626,
+ "end": 442.736,
+ "text": "is,"
+ },
+ {
+ "id": 1328,
+ "start": 442.736,
+ "end": 443.706,
+ "text": "one,"
+ },
+ {
+ "id": 1329,
+ "start": 443.706,
+ "end": 443.826,
+ "text": "a"
+ },
+ {
+ "id": 1330,
+ "start": 443.826,
+ "end": 444.176,
+ "text": "product"
+ },
+ {
+ "id": 1331,
+ "start": 444.176,
+ "end": 444.366,
+ "text": "that’s"
+ },
+ {
+ "id": 1332,
+ "start": 444.366,
+ "end": 445.726,
+ "text": "accessible,"
+ },
+ {
+ "id": 1333,
+ "start": 445.726,
+ "end": 445.946,
+ "text": "that’s"
+ },
+ {
+ "id": 1334,
+ "start": 445.946,
+ "end": 446.406,
+ "text": "simple,"
+ },
+ {
+ "id": 1335,
+ "start": 446.406,
+ "end": 446.586,
+ "text": "that’s"
+ },
+ {
+ "id": 1336,
+ "start": 447.251,
+ "end": 447.471,
+ "text": "intuitive,"
+ },
+ {
+ "id": 1337,
+ "start": 448.096,
+ "end": 448.356,
+ "text": "that’s"
+ },
+ {
+ "id": 1338,
+ "start": 448.356,
+ "end": 449.196,
+ "text": "relevant"
+ },
+ {
+ "id": 1339,
+ "start": 449.196,
+ "end": 449.386,
+ "text": "to"
+ },
+ {
+ "id": 1340,
+ "start": 449.386,
+ "end": 449.566,
+ "text": "a"
+ },
+ {
+ "id": 1341,
+ "start": 449.566,
+ "end": 450.016,
+ "text": "really,"
+ },
+ {
+ "id": 1342,
+ "start": 450.016,
+ "end": 450.266,
+ "text": "really"
+ },
+ {
+ "id": 1343,
+ "start": 450.266,
+ "end": 450.676,
+ "text": "broad"
+ },
+ {
+ "id": 1344,
+ "start": 450.676,
+ "end": 450.886,
+ "text": "set"
+ },
+ {
+ "id": 1345,
+ "start": 450.886,
+ "end": 450.956,
+ "text": "of"
+ },
+ {
+ "id": 1346,
+ "start": 450.956,
+ "end": 451.036,
+ "text": "the"
+ },
+ {
+ "id": 1347,
+ "start": 451.036,
+ "end": 452.396,
+ "text": "population."
+ },
+ {
+ "id": 1348,
+ "start": 452.396,
+ "end": 452.626,
+ "text": "And"
+ },
+ {
+ "id": 1349,
+ "start": 452.626,
+ "end": 453.696,
+ "text": "since"
+ },
+ {
+ "id": 1350,
+ "start": 453.696,
+ "end": 454.096,
+ "text": "Facebook"
+ },
+ {
+ "id": 1351,
+ "start": 454.096,
+ "end": 454.416,
+ "text": "wasn’t"
+ },
+ {
+ "id": 1352,
+ "start": 454.416,
+ "end": 454.896,
+ "text": "creating"
+ },
+ {
+ "id": 1353,
+ "start": 454.896,
+ "end": 455.356,
+ "text": "games,"
+ },
+ {
+ "id": 1354,
+ "start": 455.356,
+ "end": 455.416,
+ "text": "it"
+ },
+ {
+ "id": 1355,
+ "start": 455.416,
+ "end": 455.646,
+ "text": "wasn’t"
+ },
+ {
+ "id": 1356,
+ "start": 455.646,
+ "end": 456.876,
+ "text": "creating"
+ },
+ {
+ "id": 1357,
+ "start": 456.876,
+ "end": 457.536,
+ "text": "knickknacks"
+ },
+ {
+ "id": 1358,
+ "start": 457.536,
+ "end": 457.886,
+ "text": "for"
+ },
+ {
+ "id": 1359,
+ "start": 457.876,
+ "end": 458.146,
+ "text": "folks"
+ },
+ {
+ "id": 1360,
+ "start": 458.086,
+ "end": 458.34933333333333,
+ "text": "to"
+ },
+ {
+ "id": 1361,
+ "start": 458.296,
+ "end": 458.55266666666665,
+ "text": "interact"
+ },
+ {
+ "id": 1362,
+ "start": 458.506,
+ "end": 458.756,
+ "text": "with,"
+ },
+ {
+ "id": 1363,
+ "start": 458.69266666666664,
+ "end": 458.9126666666666,
+ "text": "it"
+ },
+ {
+ "id": 1364,
+ "start": 458.8793333333333,
+ "end": 459.0693333333333,
+ "text": "was"
+ },
+ {
+ "id": 1365,
+ "start": 459.066,
+ "end": 459.226,
+ "text": "really"
+ },
+ {
+ "id": 1366,
+ "start": 459.226,
+ "end": 459.406,
+ "text": "trying"
+ },
+ {
+ "id": 1367,
+ "start": 459.406,
+ "end": 459.466,
+ "text": "to"
+ },
+ {
+ "id": 1368,
+ "start": 459.466,
+ "end": 459.646,
+ "text": "create"
+ },
+ {
+ "id": 1369,
+ "start": 459.646,
+ "end": 459.686,
+ "text": "a"
+ },
+ {
+ "id": 1370,
+ "start": 459.686,
+ "end": 460.176,
+ "text": "conduit,"
+ },
+ {
+ "id": 1371,
+ "start": 460.176,
+ "end": 460.216,
+ "text": "a"
+ },
+ {
+ "id": 1372,
+ "start": 460.216,
+ "end": 460.536,
+ "text": "vessel"
+ },
+ {
+ "id": 1373,
+ "start": 460.536,
+ "end": 460.726,
+ "text": "for"
+ },
+ {
+ "id": 1374,
+ "start": 460.726,
+ "end": 460.976,
+ "text": "people"
+ },
+ {
+ "id": 1375,
+ "start": 460.976,
+ "end": 461.106,
+ "text": "to"
+ },
+ {
+ "id": 1376,
+ "start": 461.106,
+ "end": 462.006,
+ "text": "find"
+ },
+ {
+ "id": 1377,
+ "start": 462.006,
+ "end": 462.116,
+ "text": "the"
+ },
+ {
+ "id": 1378,
+ "start": 462.116,
+ "end": 462.456,
+ "text": "folks"
+ },
+ {
+ "id": 1379,
+ "start": 462.456,
+ "end": 462.666,
+ "text": "that"
+ },
+ {
+ "id": 1380,
+ "start": 462.666,
+ "end": 462.746,
+ "text": "they"
+ },
+ {
+ "id": 1381,
+ "start": 462.746,
+ "end": 462.846,
+ "text": "were"
+ },
+ {
+ "id": 1382,
+ "start": 462.846,
+ "end": 463.296,
+ "text": "connected"
+ },
+ {
+ "id": 1383,
+ "start": 463.296,
+ "end": 463.506,
+ "text": "with"
+ },
+ {
+ "id": 1384,
+ "start": 463.506,
+ "end": 463.596,
+ "text": "in"
+ },
+ {
+ "id": 1385,
+ "start": 463.596,
+ "end": 463.746,
+ "text": "real"
+ },
+ {
+ "id": 1386,
+ "start": 463.746,
+ "end": 464.546,
+ "text": "life,"
+ },
+ {
+ "id": 1387,
+ "start": 464.546,
+ "end": 464.716,
+ "text": "and"
+ },
+ {
+ "id": 1388,
+ "start": 464.716,
+ "end": 464.956,
+ "text": "having"
+ },
+ {
+ "id": 1389,
+ "start": 464.956,
+ "end": 465.046,
+ "text": "the"
+ },
+ {
+ "id": 1390,
+ "start": 465.046,
+ "end": 466.086,
+ "text": "tools"
+ },
+ {
+ "id": 1391,
+ "start": 466.086,
+ "end": 466.186,
+ "text": "and"
+ },
+ {
+ "id": 1392,
+ "start": 466.186,
+ "end": 466.266,
+ "text": "the"
+ },
+ {
+ "id": 1393,
+ "start": 466.266,
+ "end": 466.546,
+ "text": "power"
+ },
+ {
+ "id": 1394,
+ "start": 466.546,
+ "end": 466.606,
+ "text": "to"
+ },
+ {
+ "id": 1395,
+ "start": 466.606,
+ "end": 466.666,
+ "text": "be"
+ },
+ {
+ "id": 1396,
+ "start": 466.666,
+ "end": 466.786,
+ "text": "able"
+ },
+ {
+ "id": 1397,
+ "start": 466.786,
+ "end": 466.896,
+ "text": "to"
+ },
+ {
+ "id": 1398,
+ "start": 466.896,
+ "end": 467.336,
+ "text": "share"
+ },
+ {
+ "id": 1399,
+ "start": 467.336,
+ "end": 467.436,
+ "text": "the"
+ },
+ {
+ "id": 1400,
+ "start": 467.436,
+ "end": 467.896,
+ "text": "information"
+ },
+ {
+ "id": 1401,
+ "start": 467.6293333333333,
+ "end": 468.00600000000003,
+ "text": "that’s"
+ },
+ {
+ "id": 1402,
+ "start": 467.8226666666667,
+ "end": 468.11600000000004,
+ "text": "the"
+ },
+ {
+ "id": 1403,
+ "start": 468.016,
+ "end": 468.226,
+ "text": "most"
+ },
+ {
+ "id": 1404,
+ "start": 468.226,
+ "end": 468.576,
+ "text": "meaningful"
+ },
+ {
+ "id": 1405,
+ "start": 468.576,
+ "end": 468.686,
+ "text": "to"
+ },
+ {
+ "id": 1406,
+ "start": 468.686,
+ "end": 469.586,
+ "text": "them."
+ },
+ {
+ "id": 1407,
+ "start": 469.586,
+ "end": 469.766,
+ "text": "We"
+ },
+ {
+ "id": 1408,
+ "start": 469.766,
+ "end": 469.946,
+ "text": "felt"
+ },
+ {
+ "id": 1409,
+ "start": 469.946,
+ "end": 470.396,
+ "text": "like"
+ },
+ {
+ "id": 1410,
+ "start": 470.396,
+ "end": 470.536,
+ "text": "in"
+ },
+ {
+ "id": 1411,
+ "start": 470.536,
+ "end": 470.726,
+ "text": "order"
+ },
+ {
+ "id": 1412,
+ "start": 470.726,
+ "end": 470.866,
+ "text": "to"
+ },
+ {
+ "id": 1413,
+ "start": 470.866,
+ "end": 471.276,
+ "text": "build"
+ },
+ {
+ "id": 1414,
+ "start": 471.276,
+ "end": 471.316,
+ "text": "a"
+ },
+ {
+ "id": 1415,
+ "start": 471.316,
+ "end": 471.796,
+ "text": "universal"
+ },
+ {
+ "id": 1416,
+ "start": 471.796,
+ "end": 472.696,
+ "text": "product,"
+ },
+ {
+ "id": 1417,
+ "start": 472.306,
+ "end": 472.846,
+ "text": "we"
+ },
+ {
+ "id": 1418,
+ "start": 472.51314285714284,
+ "end": 472.9974285714286,
+ "text": "needed"
+ },
+ {
+ "id": 1419,
+ "start": 472.7202857142857,
+ "end": 473.1488571428572,
+ "text": "to"
+ },
+ {
+ "id": 1420,
+ "start": 472.92742857142855,
+ "end": 473.30028571428574,
+ "text": "adhere"
+ },
+ {
+ "id": 1421,
+ "start": 473.1345714285714,
+ "end": 473.45171428571433,
+ "text": "to"
+ },
+ {
+ "id": 1422,
+ "start": 473.34171428571426,
+ "end": 473.60314285714287,
+ "text": "a"
+ },
+ {
+ "id": 1423,
+ "start": 473.5488571428571,
+ "end": 473.75457142857147,
+ "text": "certain"
+ },
+ {
+ "id": 1424,
+ "start": 473.756,
+ "end": 473.906,
+ "text": "set"
+ },
+ {
+ "id": 1425,
+ "start": 473.906,
+ "end": 473.976,
+ "text": "of"
+ },
+ {
+ "id": 1426,
+ "start": 473.976,
+ "end": 474.396,
+ "text": "principles"
+ },
+ {
+ "id": 1427,
+ "start": 474.396,
+ "end": 474.676,
+ "text": "around"
+ },
+ {
+ "id": 1428,
+ "start": 474.676,
+ "end": 475.086,
+ "text": "like"
+ },
+ {
+ "id": 1429,
+ "start": 475.086,
+ "end": 476.616,
+ "text": "consistency,"
+ },
+ {
+ "id": 1430,
+ "start": 476.616,
+ "end": 477.696,
+ "text": "simplicity,"
+ },
+ {
+ "id": 1431,
+ "start": 477.696,
+ "end": 477.826,
+ "text": "a"
+ },
+ {
+ "id": 1432,
+ "start": 477.826,
+ "end": 478.006,
+ "text": "really"
+ },
+ {
+ "id": 1433,
+ "start": 478.006,
+ "end": 478.466,
+ "text": "spartan"
+ },
+ {
+ "id": 1434,
+ "start": 478.466,
+ "end": 479.226,
+ "text": "design;"
+ },
+ {
+ "id": 1435,
+ "start": 479.226,
+ "end": 479.536,
+ "text": "something"
+ },
+ {
+ "id": 1436,
+ "start": 479.536,
+ "end": 479.666,
+ "text": "that"
+ },
+ {
+ "id": 1437,
+ "start": 479.666,
+ "end": 479.826,
+ "text": "would"
+ },
+ {
+ "id": 1438,
+ "start": 479.826,
+ "end": 480.016,
+ "text": "not"
+ },
+ {
+ "id": 1439,
+ "start": 480.016,
+ "end": 480.176,
+ "text": "only"
+ },
+ {
+ "id": 1440,
+ "start": 480.176,
+ "end": 480.776,
+ "text": "differentiate"
+ },
+ {
+ "id": 1441,
+ "start": 480.776,
+ "end": 480.886,
+ "text": "us"
+ },
+ {
+ "id": 1442,
+ "start": 480.886,
+ "end": 481.066,
+ "text": "from"
+ },
+ {
+ "id": 1443,
+ "start": 481.066,
+ "end": 481.156,
+ "text": "what"
+ },
+ {
+ "id": 1444,
+ "start": 481.156,
+ "end": 481.276,
+ "text": "was"
+ },
+ {
+ "id": 1445,
+ "start": 481.276,
+ "end": 481.436,
+ "text": "out"
+ },
+ {
+ "id": 1446,
+ "start": 481.436,
+ "end": 481.496,
+ "text": "in"
+ },
+ {
+ "id": 1447,
+ "start": 481.496,
+ "end": 481.556,
+ "text": "the"
+ },
+ {
+ "id": 1448,
+ "start": 481.556,
+ "end": 481.826,
+ "text": "market"
+ },
+ {
+ "id": 1449,
+ "start": 481.92,
+ "end": 482.22800000000007,
+ "text": "today,"
+ },
+ {
+ "id": 1450,
+ "start": 482.28399999999993,
+ "end": 482.63,
+ "text": "these"
+ },
+ {
+ "id": 1451,
+ "start": 482.64799999999997,
+ "end": 483.03200000000004,
+ "text": "like"
+ },
+ {
+ "id": 1452,
+ "start": 483.012,
+ "end": 483.43399999999997,
+ "text": "self-designed"
+ },
+ {
+ "id": 1453,
+ "start": 483.376,
+ "end": 483.836,
+ "text": "Myspace"
+ },
+ {
+ "id": 1454,
+ "start": 483.836,
+ "end": 484.816,
+ "text": "pages,"
+ },
+ {
+ "id": 1455,
+ "start": 484.426,
+ "end": 484.996,
+ "text": "but"
+ },
+ {
+ "id": 1456,
+ "start": 484.71599999999995,
+ "end": 485.096,
+ "text": "then"
+ },
+ {
+ "id": 1457,
+ "start": 485.006,
+ "end": 485.196,
+ "text": "more"
+ },
+ {
+ "id": 1458,
+ "start": 485.196,
+ "end": 486.776,
+ "text": "importantly,"
+ },
+ {
+ "id": 1459,
+ "start": 486.776,
+ "end": 486.986,
+ "text": "it"
+ },
+ {
+ "id": 1460,
+ "start": 486.986,
+ "end": 487.146,
+ "text": "had"
+ },
+ {
+ "id": 1461,
+ "start": 487.146,
+ "end": 487.236,
+ "text": "to"
+ },
+ {
+ "id": 1462,
+ "start": 487.381,
+ "end": 487.511,
+ "text": "work"
+ },
+ {
+ "id": 1463,
+ "start": 487.616,
+ "end": 487.786,
+ "text": "from"
+ },
+ {
+ "id": 1464,
+ "start": 487.786,
+ "end": 487.846,
+ "text": "a"
+ },
+ {
+ "id": 1465,
+ "start": 487.846,
+ "end": 488.286,
+ "text": "technical"
+ },
+ {
+ "id": 1466,
+ "start": 488.31100000000004,
+ "end": 488.576,
+ "text": "standpoint."
+ },
+ {
+ "id": 1467,
+ "start": 488.776,
+ "end": 488.866,
+ "text": "It"
+ },
+ {
+ "id": 1468,
+ "start": 488.866,
+ "end": 489.066,
+ "text": "had"
+ },
+ {
+ "id": 1469,
+ "start": 489.066,
+ "end": 489.136,
+ "text": "to"
+ },
+ {
+ "id": 1470,
+ "start": 489.136,
+ "end": 489.286,
+ "text": "be"
+ },
+ {
+ "id": 1471,
+ "start": 489.286,
+ "end": 489.526,
+ "text": "really"
+ },
+ {
+ "id": 1472,
+ "start": 489.526,
+ "end": 490.156,
+ "text": "good"
+ },
+ {
+ "id": 1473,
+ "start": 490.156,
+ "end": 490.416,
+ "text": "at"
+ },
+ {
+ "id": 1474,
+ "start": 490.416,
+ "end": 491.356,
+ "text": "identifying"
+ },
+ {
+ "id": 1475,
+ "start": 491.356,
+ "end": 491.456,
+ "text": "the"
+ },
+ {
+ "id": 1476,
+ "start": 491.456,
+ "end": 491.716,
+ "text": "people"
+ },
+ {
+ "id": 1477,
+ "start": 491.716,
+ "end": 491.806,
+ "text": "who"
+ },
+ {
+ "id": 1478,
+ "start": 491.806,
+ "end": 492.226,
+ "text": "were"
+ },
+ {
+ "id": 1479,
+ "start": 492.226,
+ "end": 492.716,
+ "text": "potentially"
+ },
+ {
+ "id": 1480,
+ "start": 492.716,
+ "end": 492.866,
+ "text": "your"
+ },
+ {
+ "id": 1481,
+ "start": 492.866,
+ "end": 493.626,
+ "text": "friends"
+ },
+ {
+ "id": 1482,
+ "start": 493.626,
+ "end": 493.836,
+ "text": "and"
+ },
+ {
+ "id": 1483,
+ "start": 493.836,
+ "end": 494.076,
+ "text": "making"
+ },
+ {
+ "id": 1484,
+ "start": 494.076,
+ "end": 494.366,
+ "text": "sure"
+ },
+ {
+ "id": 1485,
+ "start": 494.366,
+ "end": 494.536,
+ "text": "that"
+ },
+ {
+ "id": 1486,
+ "start": 494.536,
+ "end": 494.636,
+ "text": "we"
+ },
+ {
+ "id": 1487,
+ "start": 494.636,
+ "end": 494.726,
+ "text": "were"
+ },
+ {
+ "id": 1488,
+ "start": 494.726,
+ "end": 495.006,
+ "text": "setting"
+ },
+ {
+ "id": 1489,
+ "start": 495.006,
+ "end": 495.146,
+ "text": "up"
+ },
+ {
+ "id": 1490,
+ "start": 495.2493333333333,
+ "end": 495.686,
+ "text": "an"
+ },
+ {
+ "id": 1491,
+ "start": 495.49266666666665,
+ "end": 496.22600000000006,
+ "text": "onboarding"
+ },
+ {
+ "id": 1492,
+ "start": 495.736,
+ "end": 496.766,
+ "text": "experience"
+ },
+ {
+ "id": 1493,
+ "start": 496.766,
+ "end": 497.526,
+ "text": "that"
+ },
+ {
+ "id": 1494,
+ "start": 497.526,
+ "end": 497.686,
+ "text": "would"
+ },
+ {
+ "id": 1495,
+ "start": 497.686,
+ "end": 497.996,
+ "text": "enable"
+ },
+ {
+ "id": 1496,
+ "start": 497.996,
+ "end": 498.176,
+ "text": "you"
+ },
+ {
+ "id": 1497,
+ "start": 498.176,
+ "end": 498.286,
+ "text": "to"
+ },
+ {
+ "id": 1498,
+ "start": 498.286,
+ "end": 498.376,
+ "text": "be"
+ },
+ {
+ "id": 1499,
+ "start": 498.376,
+ "end": 498.506,
+ "text": "able"
+ },
+ {
+ "id": 1500,
+ "start": 498.506,
+ "end": 498.586,
+ "text": "to"
+ },
+ {
+ "id": 1501,
+ "start": 498.586,
+ "end": 498.906,
+ "text": "actually"
+ },
+ {
+ "id": 1502,
+ "start": 498.906,
+ "end": 499.286,
+ "text": "connect"
+ },
+ {
+ "id": 1503,
+ "start": 499.286,
+ "end": 499.396,
+ "text": "and"
+ },
+ {
+ "id": 1504,
+ "start": 499.396,
+ "end": 499.596,
+ "text": "share"
+ },
+ {
+ "id": 1505,
+ "start": 499.596,
+ "end": 499.746,
+ "text": "with"
+ },
+ {
+ "id": 1506,
+ "start": 499.746,
+ "end": 500.716,
+ "text": "them."
+ },
+ {
+ "id": 1507,
+ "start": 500.716,
+ "end": 501.446,
+ "text": "Engagement"
+ },
+ {
+ "id": 1508,
+ "start": 501.446,
+ "end": 501.556,
+ "text": "is"
+ },
+ {
+ "id": 1509,
+ "start": 501.556,
+ "end": 501.626,
+ "text": "a"
+ },
+ {
+ "id": 1510,
+ "start": 501.626,
+ "end": 501.906,
+ "text": "word"
+ },
+ {
+ "id": 1511,
+ "start": 501.906,
+ "end": 502.066,
+ "text": "we’ve"
+ },
+ {
+ "id": 1512,
+ "start": 502.066,
+ "end": 502.226,
+ "text": "heard"
+ },
+ {
+ "id": 1513,
+ "start": 502.226,
+ "end": 502.276,
+ "text": "a"
+ },
+ {
+ "id": 1514,
+ "start": 502.276,
+ "end": 502.486,
+ "text": "lot"
+ },
+ {
+ "id": 1515,
+ "start": 502.486,
+ "end": 503.896,
+ "text": "about,"
+ },
+ {
+ "id": 1516,
+ "start": 503.896,
+ "end": 504.386,
+ "text": "especially"
+ },
+ {
+ "id": 1517,
+ "start": 504.386,
+ "end": 504.546,
+ "text": "the"
+ },
+ {
+ "id": 1518,
+ "start": 504.546,
+ "end": 504.826,
+ "text": "early"
+ },
+ {
+ "id": 1519,
+ "start": 504.826,
+ "end": 505.176,
+ "text": "years"
+ },
+ {
+ "id": 1520,
+ "start": 505.176,
+ "end": 505.666,
+ "text": "and"
+ },
+ {
+ "id": 1521,
+ "start": 505.666,
+ "end": 506.726,
+ "text": "developing"
+ },
+ {
+ "id": 1522,
+ "start": 506.726,
+ "end": 506.926,
+ "text": "these"
+ },
+ {
+ "id": 1523,
+ "start": 506.926,
+ "end": 507.336,
+ "text": "tools"
+ },
+ {
+ "id": 1524,
+ "start": 507.336,
+ "end": 507.436,
+ "text": "and"
+ },
+ {
+ "id": 1525,
+ "start": 507.436,
+ "end": 507.756,
+ "text": "making"
+ },
+ {
+ "id": 1526,
+ "start": 507.756,
+ "end": 507.946,
+ "text": "this"
+ },
+ {
+ "id": 1527,
+ "start": 507.946,
+ "end": 508.086,
+ "text": "as"
+ },
+ {
+ "id": 1528,
+ "start": 508.086,
+ "end": 508.606,
+ "text": "engaging"
+ },
+ {
+ "id": 1529,
+ "start": 508.606,
+ "end": 508.846,
+ "text": "a"
+ },
+ {
+ "id": 1530,
+ "start": 508.846,
+ "end": 509.316,
+ "text": "site"
+ },
+ {
+ "id": 1531,
+ "start": 509.316,
+ "end": 509.406,
+ "text": "and"
+ },
+ {
+ "id": 1532,
+ "start": 509.406,
+ "end": 509.836,
+ "text": "essentially"
+ },
+ {
+ "id": 1533,
+ "start": 509.836,
+ "end": 510.126,
+ "text": "getting"
+ },
+ {
+ "id": 1534,
+ "start": 510.126,
+ "end": 510.406,
+ "text": "people"
+ },
+ {
+ "id": 1535,
+ "start": 510.406,
+ "end": 510.476,
+ "text": "to"
+ },
+ {
+ "id": 1536,
+ "start": 510.476,
+ "end": 510.806,
+ "text": "spend"
+ },
+ {
+ "id": 1537,
+ "start": 510.806,
+ "end": 510.976,
+ "text": "more"
+ },
+ {
+ "id": 1538,
+ "start": 510.976,
+ "end": 511.356,
+ "text": "time"
+ },
+ {
+ "id": 1539,
+ "start": 511.356,
+ "end": 511.766,
+ "text": "there"
+ },
+ {
+ "id": 1540,
+ "start": 511.686,
+ "end": 512.136,
+ "text": "on"
+ },
+ {
+ "id": 1541,
+ "start": 512.5059999999999,
+ "end": 512.961,
+ "text": "Facebook,"
+ },
+ {
+ "id": 1542,
+ "start": 513.326,
+ "end": 513.786,
+ "text": "what"
+ },
+ {
+ "id": 1543,
+ "start": 513.786,
+ "end": 513.906,
+ "text": "did"
+ },
+ {
+ "id": 1544,
+ "start": 513.906,
+ "end": 514.666,
+ "text": "that"
+ },
+ {
+ "id": 1545,
+ "start": 514.666,
+ "end": 514.886,
+ "text": "really"
+ },
+ {
+ "id": 1546,
+ "start": 514.886,
+ "end": 515.556,
+ "text": "mean"
+ },
+ {
+ "id": 1547,
+ "start": 515.556,
+ "end": 515.696,
+ "text": "to"
+ },
+ {
+ "id": 1548,
+ "start": 515.696,
+ "end": 516.026,
+ "text": "you"
+ },
+ {
+ "id": 1549,
+ "start": 516.026,
+ "end": 516.156,
+ "text": "and"
+ },
+ {
+ "id": 1550,
+ "start": 516.156,
+ "end": 516.306,
+ "text": "what"
+ },
+ {
+ "id": 1551,
+ "start": 516.306,
+ "end": 516.416,
+ "text": "you"
+ },
+ {
+ "id": 1552,
+ "start": 516.416,
+ "end": 516.536,
+ "text": "were"
+ },
+ {
+ "id": 1553,
+ "start": 516.536,
+ "end": 517.176,
+ "text": "designing?"
+ },
+ {
+ "id": 1554,
+ "start": 517.1659999999999,
+ "end": 517.566,
+ "text": "Yeah."
+ },
+ {
+ "id": 1555,
+ "start": 517.796,
+ "end": 517.956,
+ "text": "So"
+ },
+ {
+ "id": 1556,
+ "start": 517.956,
+ "end": 518.116,
+ "text": "from"
+ },
+ {
+ "id": 1557,
+ "start": 518.116,
+ "end": 518.216,
+ "text": "an"
+ },
+ {
+ "id": 1558,
+ "start": 518.216,
+ "end": 518.696,
+ "text": "engagement"
+ },
+ {
+ "id": 1559,
+ "start": 518.696,
+ "end": 519.916,
+ "text": "standpoint,"
+ },
+ {
+ "id": 1560,
+ "start": 519.916,
+ "end": 520.406,
+ "text": "it"
+ },
+ {
+ "id": 1561,
+ "start": 520.406,
+ "end": 520.546,
+ "text": "sort"
+ },
+ {
+ "id": 1562,
+ "start": 520.546,
+ "end": 520.606,
+ "text": "of"
+ },
+ {
+ "id": 1563,
+ "start": 520.606,
+ "end": 520.856,
+ "text": "starts"
+ },
+ {
+ "id": 1564,
+ "start": 520.856,
+ "end": 520.996,
+ "text": "from"
+ },
+ {
+ "id": 1565,
+ "start": 520.996,
+ "end": 521.086,
+ "text": "the"
+ },
+ {
+ "id": 1566,
+ "start": 521.086,
+ "end": 521.806,
+ "text": "philosophy"
+ },
+ {
+ "id": 1567,
+ "start": 521.806,
+ "end": 522.716,
+ "text": "that"
+ },
+ {
+ "id": 1568,
+ "start": 522.716,
+ "end": 523.076,
+ "text": "people"
+ },
+ {
+ "id": 1569,
+ "start": 523.076,
+ "end": 523.266,
+ "text": "have"
+ },
+ {
+ "id": 1570,
+ "start": 523.266,
+ "end": 523.526,
+ "text": "things"
+ },
+ {
+ "id": 1571,
+ "start": 523.526,
+ "end": 523.606,
+ "text": "they"
+ },
+ {
+ "id": 1572,
+ "start": 523.606,
+ "end": 523.766,
+ "text": "want"
+ },
+ {
+ "id": 1573,
+ "start": 523.766,
+ "end": 523.826,
+ "text": "to"
+ },
+ {
+ "id": 1574,
+ "start": 523.826,
+ "end": 524.716,
+ "text": "share."
+ },
+ {
+ "id": 1575,
+ "start": 524.716,
+ "end": 524.846,
+ "text": "They"
+ },
+ {
+ "id": 1576,
+ "start": 524.846,
+ "end": 525.086,
+ "text": "often"
+ },
+ {
+ "id": 1577,
+ "start": 525.086,
+ "end": 525.206,
+ "text": "want"
+ },
+ {
+ "id": 1578,
+ "start": 525.206,
+ "end": 525.266,
+ "text": "to"
+ },
+ {
+ "id": 1579,
+ "start": 525.266,
+ "end": 525.446,
+ "text": "share"
+ },
+ {
+ "id": 1580,
+ "start": 525.446,
+ "end": 525.706,
+ "text": "things"
+ },
+ {
+ "id": 1581,
+ "start": 525.706,
+ "end": 526.716,
+ "text": "daily."
+ },
+ {
+ "id": 1582,
+ "start": 526.716,
+ "end": 527.656,
+ "text": "The"
+ },
+ {
+ "id": 1583,
+ "start": 527.656,
+ "end": 528.176,
+ "text": "meaningful"
+ },
+ {
+ "id": 1584,
+ "start": 528.176,
+ "end": 528.746,
+ "text": "relationships"
+ },
+ {
+ "id": 1585,
+ "start": 528.746,
+ "end": 528.836,
+ "text": "in"
+ },
+ {
+ "id": 1586,
+ "start": 528.836,
+ "end": 529.0609999999999,
+ "text": "their"
+ },
+ {
+ "id": 1587,
+ "start": 528.926,
+ "end": 529.286,
+ "text": "lives"
+ },
+ {
+ "id": 1588,
+ "start": 529.286,
+ "end": 529.846,
+ "text": "aren’t"
+ },
+ {
+ "id": 1589,
+ "start": 529.846,
+ "end": 530.516,
+ "text": "relationships"
+ },
+ {
+ "id": 1590,
+ "start": 530.516,
+ "end": 530.676,
+ "text": "that"
+ },
+ {
+ "id": 1591,
+ "start": 530.676,
+ "end": 531.516,
+ "text": "they"
+ },
+ {
+ "id": 1592,
+ "start": 531.066,
+ "end": 532.156,
+ "text": "periodically"
+ },
+ {
+ "id": 1593,
+ "start": 531.7660000000001,
+ "end": 532.451,
+ "text": "check"
+ },
+ {
+ "id": 1594,
+ "start": 532.466,
+ "end": 532.746,
+ "text": "in"
+ },
+ {
+ "id": 1595,
+ "start": 532.746,
+ "end": 533.106,
+ "text": "on,"
+ },
+ {
+ "id": 1596,
+ "start": 533.106,
+ "end": 533.226,
+ "text": "you"
+ },
+ {
+ "id": 1597,
+ "start": 533.226,
+ "end": 533.336,
+ "text": "know,"
+ },
+ {
+ "id": 1598,
+ "start": 533.336,
+ "end": 533.576,
+ "text": "once"
+ },
+ {
+ "id": 1599,
+ "start": 533.576,
+ "end": 533.626,
+ "text": "a"
+ },
+ {
+ "id": 1600,
+ "start": 533.626,
+ "end": 533.996,
+ "text": "month"
+ },
+ {
+ "id": 1601,
+ "start": 533.996,
+ "end": 534.336,
+ "text": "or,"
+ },
+ {
+ "id": 1602,
+ "start": 534.336,
+ "end": 534.426,
+ "text": "you"
+ },
+ {
+ "id": 1603,
+ "start": 534.426,
+ "end": 534.776,
+ "text": "know,"
+ },
+ {
+ "id": 1604,
+ "start": 534.776,
+ "end": 535.086,
+ "text": "once"
+ },
+ {
+ "id": 1605,
+ "start": 535.086,
+ "end": 535.146,
+ "text": "a"
+ },
+ {
+ "id": 1606,
+ "start": 535.5110000000001,
+ "end": 535.606,
+ "text": "year."
+ },
+ {
+ "id": 1607,
+ "start": 535.936,
+ "end": 536.066,
+ "text": "It’s"
+ },
+ {
+ "id": 1608,
+ "start": 536.066,
+ "end": 536.266,
+ "text": "something"
+ },
+ {
+ "id": 1609,
+ "start": 536.266,
+ "end": 536.376,
+ "text": "that"
+ },
+ {
+ "id": 1610,
+ "start": 536.376,
+ "end": 536.526,
+ "text": "has"
+ },
+ {
+ "id": 1611,
+ "start": 536.526,
+ "end": 536.576,
+ "text": "a"
+ },
+ {
+ "id": 1612,
+ "start": 536.576,
+ "end": 537.036,
+ "text": "cadence"
+ },
+ {
+ "id": 1613,
+ "start": 537.171,
+ "end": 537.966,
+ "text": "that’s"
+ },
+ {
+ "id": 1614,
+ "start": 537.766,
+ "end": 538.896,
+ "text": "ongoing."
+ },
+ {
+ "id": 1615,
+ "start": 538.896,
+ "end": 539.096,
+ "text": "And"
+ },
+ {
+ "id": 1616,
+ "start": 539.096,
+ "end": 539.876,
+ "text": "so"
+ },
+ {
+ "id": 1617,
+ "start": 539.876,
+ "end": 540.046,
+ "text": "for"
+ },
+ {
+ "id": 1618,
+ "start": 540.046,
+ "end": 540.196,
+ "text": "us,"
+ },
+ {
+ "id": 1619,
+ "start": 540.196,
+ "end": 540.286,
+ "text": "we"
+ },
+ {
+ "id": 1620,
+ "start": 540.286,
+ "end": 540.466,
+ "text": "wanted"
+ },
+ {
+ "id": 1621,
+ "start": 540.466,
+ "end": 540.526,
+ "text": "to"
+ },
+ {
+ "id": 1622,
+ "start": 540.526,
+ "end": 540.646,
+ "text": "make"
+ },
+ {
+ "id": 1623,
+ "start": 540.646,
+ "end": 540.946,
+ "text": "sure"
+ },
+ {
+ "id": 1624,
+ "start": 540.946,
+ "end": 541.806,
+ "text": "that"
+ },
+ {
+ "id": 1625,
+ "start": 541.806,
+ "end": 542.346,
+ "text": "engagement"
+ },
+ {
+ "id": 1626,
+ "start": 542.346,
+ "end": 542.446,
+ "text": "on"
+ },
+ {
+ "id": 1627,
+ "start": 542.446,
+ "end": 542.536,
+ "text": "the"
+ },
+ {
+ "id": 1628,
+ "start": 542.536,
+ "end": 543.376,
+ "text": "platform"
+ },
+ {
+ "id": 1629,
+ "start": 543.376,
+ "end": 543.716,
+ "text": "served"
+ },
+ {
+ "id": 1630,
+ "start": 543.716,
+ "end": 543.846,
+ "text": "two"
+ },
+ {
+ "id": 1631,
+ "start": 543.846,
+ "end": 544.916,
+ "text": "purposes."
+ },
+ {
+ "id": 1632,
+ "start": 544.916,
+ "end": 545.206,
+ "text": "One,"
+ },
+ {
+ "id": 1633,
+ "start": 545.206,
+ "end": 545.316,
+ "text": "it"
+ },
+ {
+ "id": 1634,
+ "start": 545.316,
+ "end": 545.716,
+ "text": "matched"
+ },
+ {
+ "id": 1635,
+ "start": 545.716,
+ "end": 545.876,
+ "text": "that"
+ },
+ {
+ "id": 1636,
+ "start": 545.876,
+ "end": 546.416,
+ "text": "cadence"
+ },
+ {
+ "id": 1637,
+ "start": 546.416,
+ "end": 546.606,
+ "text": "of"
+ },
+ {
+ "id": 1638,
+ "start": 546.596,
+ "end": 547.206,
+ "text": "natural"
+ },
+ {
+ "id": 1639,
+ "start": 547.296,
+ "end": 547.821,
+ "text": "communication,"
+ },
+ {
+ "id": 1640,
+ "start": 547.996,
+ "end": 548.436,
+ "text": "talking"
+ },
+ {
+ "id": 1641,
+ "start": 548.436,
+ "end": 548.606,
+ "text": "about"
+ },
+ {
+ "id": 1642,
+ "start": 548.606,
+ "end": 548.806,
+ "text": "things"
+ },
+ {
+ "id": 1643,
+ "start": 548.7126666666667,
+ "end": 548.9826666666668,
+ "text": "that"
+ },
+ {
+ "id": 1644,
+ "start": 548.8193333333334,
+ "end": 549.1593333333334,
+ "text": "are"
+ },
+ {
+ "id": 1645,
+ "start": 548.926,
+ "end": 549.336,
+ "text": "happening"
+ },
+ {
+ "id": 1646,
+ "start": 549.336,
+ "end": 550.606,
+ "text": "today,"
+ },
+ {
+ "id": 1647,
+ "start": 550.606,
+ "end": 550.996,
+ "text": "giving"
+ },
+ {
+ "id": 1648,
+ "start": 550.996,
+ "end": 551.236,
+ "text": "people"
+ },
+ {
+ "id": 1649,
+ "start": 551.236,
+ "end": 551.326,
+ "text": "the"
+ },
+ {
+ "id": 1650,
+ "start": 551.326,
+ "end": 551.716,
+ "text": "ability"
+ },
+ {
+ "id": 1651,
+ "start": 551.741,
+ "end": 552.221,
+ "text": "to"
+ },
+ {
+ "id": 1652,
+ "start": 552.156,
+ "end": 552.726,
+ "text": "compulsively"
+ },
+ {
+ "id": 1653,
+ "start": 552.626,
+ "end": 553.126,
+ "text": "share"
+ },
+ {
+ "id": 1654,
+ "start": 553.096,
+ "end": 553.5260000000001,
+ "text": "a"
+ },
+ {
+ "id": 1655,
+ "start": 553.566,
+ "end": 553.926,
+ "text": "funny"
+ },
+ {
+ "id": 1656,
+ "start": 553.926,
+ "end": 554.686,
+ "text": "photo."
+ },
+ {
+ "id": 1657,
+ "start": 554.3960000000001,
+ "end": 554.946,
+ "text": "Oh,"
+ },
+ {
+ "id": 1658,
+ "start": 554.866,
+ "end": 555.206,
+ "text": "look,"
+ },
+ {
+ "id": 1659,
+ "start": 555.206,
+ "end": 555.356,
+ "text": "there’s"
+ },
+ {
+ "id": 1660,
+ "start": 555.356,
+ "end": 555.526,
+ "text": "some"
+ },
+ {
+ "id": 1661,
+ "start": 555.526,
+ "end": 556.046,
+ "text": "ducks"
+ },
+ {
+ "id": 1662,
+ "start": 556.046,
+ "end": 556.366,
+ "text": "outside"
+ },
+ {
+ "id": 1663,
+ "start": 556.366,
+ "end": 556.466,
+ "text": "my"
+ },
+ {
+ "id": 1664,
+ "start": 556.466,
+ "end": 556.776,
+ "text": "house."
+ },
+ {
+ "id": 1665,
+ "start": 556.776,
+ "end": 556.836,
+ "text": "I"
+ },
+ {
+ "id": 1666,
+ "start": 556.836,
+ "end": 557.406,
+ "text": "should"
+ },
+ {
+ "id": 1667,
+ "start": 557.046,
+ "end": 557.606,
+ "text": "post"
+ },
+ {
+ "id": 1668,
+ "start": 557.366,
+ "end": 557.8209999999999,
+ "text": "a"
+ },
+ {
+ "id": 1669,
+ "start": 557.686,
+ "end": 558.036,
+ "text": "video"
+ },
+ {
+ "id": 1670,
+ "start": 557.8626666666667,
+ "end": 558.1993333333332,
+ "text": "of"
+ },
+ {
+ "id": 1671,
+ "start": 558.0393333333334,
+ "end": 558.3626666666667,
+ "text": "these"
+ },
+ {
+ "id": 1672,
+ "start": 558.216,
+ "end": 558.526,
+ "text": "ducks"
+ },
+ {
+ "id": 1673,
+ "start": 558.526,
+ "end": 558.706,
+ "text": "because"
+ },
+ {
+ "id": 1674,
+ "start": 558.706,
+ "end": 558.796,
+ "text": "they’re"
+ },
+ {
+ "id": 1675,
+ "start": 558.796,
+ "end": 558.986,
+ "text": "doing"
+ },
+ {
+ "id": 1676,
+ "start": 558.986,
+ "end": 559.276,
+ "text": "something"
+ },
+ {
+ "id": 1677,
+ "start": 559.276,
+ "end": 559.596,
+ "text": "funny"
+ },
+ {
+ "id": 1678,
+ "start": 559.586,
+ "end": 559.706,
+ "text": "and"
+ },
+ {
+ "id": 1679,
+ "start": 560.281,
+ "end": 560.4409999999999,
+ "text": "unique."
+ },
+ {
+ "id": 1680,
+ "start": 560.976,
+ "end": 561.176,
+ "text": "Being"
+ },
+ {
+ "id": 1681,
+ "start": 561.176,
+ "end": 561.316,
+ "text": "able"
+ },
+ {
+ "id": 1682,
+ "start": 561.316,
+ "end": 561.446,
+ "text": "to"
+ },
+ {
+ "id": 1683,
+ "start": 561.446,
+ "end": 561.756,
+ "text": "find"
+ },
+ {
+ "id": 1684,
+ "start": 561.756,
+ "end": 561.836,
+ "text": "the"
+ },
+ {
+ "id": 1685,
+ "start": 561.836,
+ "end": 562.156,
+ "text": "folks"
+ },
+ {
+ "id": 1686,
+ "start": 562.156,
+ "end": 562.266,
+ "text": "you"
+ },
+ {
+ "id": 1687,
+ "start": 562.266,
+ "end": 562.446,
+ "text": "really"
+ },
+ {
+ "id": 1688,
+ "start": 562.446,
+ "end": 562.686,
+ "text": "care"
+ },
+ {
+ "id": 1689,
+ "start": 562.686,
+ "end": 563.016,
+ "text": "about"
+ },
+ {
+ "id": 1690,
+ "start": 563.016,
+ "end": 563.816,
+ "text": "and"
+ },
+ {
+ "id": 1691,
+ "start": 563.816,
+ "end": 564.056,
+ "text": "catch"
+ },
+ {
+ "id": 1692,
+ "start": 564.056,
+ "end": 564.166,
+ "text": "up"
+ },
+ {
+ "id": 1693,
+ "start": 564.166,
+ "end": 564.246,
+ "text": "on"
+ },
+ {
+ "id": 1694,
+ "start": 564.246,
+ "end": 564.396,
+ "text": "what’s"
+ },
+ {
+ "id": 1695,
+ "start": 564.396,
+ "end": 564.606,
+ "text": "going"
+ },
+ {
+ "id": 1696,
+ "start": 564.606,
+ "end": 564.736,
+ "text": "on"
+ },
+ {
+ "id": 1697,
+ "start": 564.736,
+ "end": 564.816,
+ "text": "in"
+ },
+ {
+ "id": 1698,
+ "start": 564.816,
+ "end": 564.886,
+ "text": "the"
+ },
+ {
+ "id": 1699,
+ "start": 564.886,
+ "end": 565.736,
+ "text": "world."
+ },
+ {
+ "id": 1700,
+ "start": 565.736,
+ "end": 565.956,
+ "text": "But"
+ },
+ {
+ "id": 1701,
+ "start": 565.956,
+ "end": 566.096,
+ "text": "then"
+ },
+ {
+ "id": 1702,
+ "start": 566.346,
+ "end": 566.481,
+ "text": "two,"
+ },
+ {
+ "id": 1703,
+ "start": 566.736,
+ "end": 566.866,
+ "text": "you"
+ },
+ {
+ "id": 1704,
+ "start": 566.866,
+ "end": 567.076,
+ "text": "know,"
+ },
+ {
+ "id": 1705,
+ "start": 567.066,
+ "end": 567.416,
+ "text": "in"
+ },
+ {
+ "id": 1706,
+ "start": 567.461,
+ "end": 567.7560000000001,
+ "text": "practice"
+ },
+ {
+ "id": 1707,
+ "start": 567.856,
+ "end": 568.096,
+ "text": "we"
+ },
+ {
+ "id": 1708,
+ "start": 568.096,
+ "end": 568.426,
+ "text": "understood"
+ },
+ {
+ "id": 1709,
+ "start": 568.426,
+ "end": 568.566,
+ "text": "that"
+ },
+ {
+ "id": 1710,
+ "start": 568.566,
+ "end": 569.076,
+ "text": "engagement"
+ },
+ {
+ "id": 1711,
+ "start": 569.076,
+ "end": 569.486,
+ "text": "was"
+ },
+ {
+ "id": 1712,
+ "start": 569.486,
+ "end": 569.796,
+ "text": "one"
+ },
+ {
+ "id": 1713,
+ "start": 569.796,
+ "end": 569.876,
+ "text": "of"
+ },
+ {
+ "id": 1714,
+ "start": 569.876,
+ "end": 570.496,
+ "text": "the"
+ },
+ {
+ "id": 1715,
+ "start": 570.496,
+ "end": 570.856,
+ "text": "driving"
+ },
+ {
+ "id": 1716,
+ "start": 570.856,
+ "end": 571.596,
+ "text": "functions,"
+ },
+ {
+ "id": 1717,
+ "start": 571.596,
+ "end": 571.766,
+ "text": "one"
+ },
+ {
+ "id": 1718,
+ "start": 571.766,
+ "end": 571.866,
+ "text": "of"
+ },
+ {
+ "id": 1719,
+ "start": 571.866,
+ "end": 572.786,
+ "text": "the"
+ },
+ {
+ "id": 1720,
+ "start": 572.786,
+ "end": 573.076,
+ "text": "health"
+ },
+ {
+ "id": 1721,
+ "start": 573.076,
+ "end": 573.416,
+ "text": "metrics"
+ },
+ {
+ "id": 1722,
+ "start": 573.416,
+ "end": 573.516,
+ "text": "of"
+ },
+ {
+ "id": 1723,
+ "start": 573.516,
+ "end": 573.606,
+ "text": "the"
+ },
+ {
+ "id": 1724,
+ "start": 573.606,
+ "end": 574.546,
+ "text": "business."
+ },
+ {
+ "id": 1725,
+ "start": 574.546,
+ "end": 574.666,
+ "text": "We"
+ },
+ {
+ "id": 1726,
+ "start": 574.666,
+ "end": 574.906,
+ "text": "needed"
+ },
+ {
+ "id": 1727,
+ "start": 574.906,
+ "end": 574.986,
+ "text": "to"
+ },
+ {
+ "id": 1728,
+ "start": 574.986,
+ "end": 575.146,
+ "text": "make"
+ },
+ {
+ "id": 1729,
+ "start": 575.146,
+ "end": 575.396,
+ "text": "sure"
+ },
+ {
+ "id": 1730,
+ "start": 575.396,
+ "end": 575.496,
+ "text": "that"
+ },
+ {
+ "id": 1731,
+ "start": 575.496,
+ "end": 575.576,
+ "text": "the"
+ },
+ {
+ "id": 1732,
+ "start": 575.576,
+ "end": 575.946,
+ "text": "product"
+ },
+ {
+ "id": 1733,
+ "start": 575.946,
+ "end": 576.306,
+ "text": "was"
+ },
+ {
+ "id": 1734,
+ "start": 576.306,
+ "end": 576.946,
+ "text": "relevant."
+ },
+ {
+ "id": 1735,
+ "start": 576.946,
+ "end": 577.086,
+ "text": "And"
+ },
+ {
+ "id": 1736,
+ "start": 577.086,
+ "end": 577.476,
+ "text": "so"
+ },
+ {
+ "id": 1737,
+ "start": 577.621,
+ "end": 577.901,
+ "text": "if"
+ },
+ {
+ "id": 1738,
+ "start": 578.156,
+ "end": 578.326,
+ "text": "the"
+ },
+ {
+ "id": 1739,
+ "start": 578.326,
+ "end": 578.656,
+ "text": "product’s"
+ },
+ {
+ "id": 1740,
+ "start": 578.656,
+ "end": 579.176,
+ "text": "not"
+ },
+ {
+ "id": 1741,
+ "start": 579.176,
+ "end": 579.736,
+ "text": "engaging"
+ },
+ {
+ "id": 1742,
+ "start": 579.736,
+ "end": 580.356,
+ "text": "people"
+ },
+ {
+ "id": 1743,
+ "start": 580.356,
+ "end": 580.536,
+ "text": "on"
+ },
+ {
+ "id": 1744,
+ "start": 580.536,
+ "end": 580.586,
+ "text": "a"
+ },
+ {
+ "id": 1745,
+ "start": 580.586,
+ "end": 581.086,
+ "text": "periodic"
+ },
+ {
+ "id": 1746,
+ "start": 581.086,
+ "end": 581.626,
+ "text": "basis,"
+ },
+ {
+ "id": 1747,
+ "start": 581.626,
+ "end": 581.756,
+ "text": "on"
+ },
+ {
+ "id": 1748,
+ "start": 581.756,
+ "end": 581.806,
+ "text": "a"
+ },
+ {
+ "id": 1749,
+ "start": 581.806,
+ "end": 582.116,
+ "text": "daily"
+ },
+ {
+ "id": 1750,
+ "start": 582.5110000000002,
+ "end": 582.7959999999998,
+ "text": "basis,"
+ },
+ {
+ "id": 1751,
+ "start": 583.216,
+ "end": 583.476,
+ "text": "it’s"
+ },
+ {
+ "id": 1752,
+ "start": 583.476,
+ "end": 583.656,
+ "text": "not"
+ },
+ {
+ "id": 1753,
+ "start": 583.656,
+ "end": 584.066,
+ "text": "likely"
+ },
+ {
+ "id": 1754,
+ "start": 584.066,
+ "end": 584.206,
+ "text": "to"
+ },
+ {
+ "id": 1755,
+ "start": 584.206,
+ "end": 584.376,
+ "text": "be"
+ },
+ {
+ "id": 1756,
+ "start": 584.376,
+ "end": 585.786,
+ "text": "relevant"
+ },
+ {
+ "id": 1757,
+ "start": 585.786,
+ "end": 585.896,
+ "text": "and"
+ },
+ {
+ "id": 1758,
+ "start": 585.896,
+ "end": 585.986,
+ "text": "it’s"
+ },
+ {
+ "id": 1759,
+ "start": 585.986,
+ "end": 586.126,
+ "text": "not"
+ },
+ {
+ "id": 1760,
+ "start": 586.126,
+ "end": 586.386,
+ "text": "likely"
+ },
+ {
+ "id": 1761,
+ "start": 586.386,
+ "end": 586.516,
+ "text": "to"
+ },
+ {
+ "id": 1762,
+ "start": 586.516,
+ "end": 586.736,
+ "text": "be"
+ },
+ {
+ "id": 1763,
+ "start": 586.736,
+ "end": 586.796,
+ "text": "a"
+ },
+ {
+ "id": 1764,
+ "start": 586.796,
+ "end": 587.196,
+ "text": "thriving"
+ },
+ {
+ "id": 1765,
+ "start": 587.196,
+ "end": 588.076,
+ "text": "business."
+ },
+ {
+ "id": 1766,
+ "start": 588.076,
+ "end": 588.266,
+ "text": "It’s"
+ },
+ {
+ "id": 1767,
+ "start": 588.266,
+ "end": 588.426,
+ "text": "been"
+ },
+ {
+ "id": 1768,
+ "start": 588.426,
+ "end": 588.946,
+ "text": "reported"
+ },
+ {
+ "id": 1769,
+ "start": 588.946,
+ "end": 589.386,
+ "text": "that"
+ },
+ {
+ "id": 1770,
+ "start": 589.386,
+ "end": 589.566,
+ "text": "in"
+ },
+ {
+ "id": 1771,
+ "start": 589.566,
+ "end": 590.006,
+ "text": "Friday"
+ },
+ {
+ "id": 1772,
+ "start": 590.006,
+ "end": 591.426,
+ "text": "meetings"
+ },
+ {
+ "id": 1773,
+ "start": 591.426,
+ "end": 591.876,
+ "text": "early"
+ },
+ {
+ "id": 1774,
+ "start": 591.876,
+ "end": 592.486,
+ "text": "on"
+ },
+ {
+ "id": 1775,
+ "start": 592.266,
+ "end": 592.926,
+ "text": "that"
+ },
+ {
+ "id": 1776,
+ "start": 592.43,
+ "end": 593.0340000000001,
+ "text": "[Facebook"
+ },
+ {
+ "id": 1777,
+ "start": 592.594,
+ "end": 593.142,
+ "text": "founder"
+ },
+ {
+ "id": 1778,
+ "start": 592.758,
+ "end": 593.25,
+ "text": "and"
+ },
+ {
+ "id": 1779,
+ "start": 592.922,
+ "end": 593.3580000000001,
+ "text": "CEO]"
+ },
+ {
+ "id": 1780,
+ "start": 593.086,
+ "end": 593.466,
+ "text": "Mark"
+ },
+ {
+ "id": 1781,
+ "start": 593.2760000000001,
+ "end": 593.566,
+ "text": "[Zuckerberg]"
+ },
+ {
+ "id": 1782,
+ "start": 593.466,
+ "end": 593.666,
+ "text": "used"
+ },
+ {
+ "id": 1783,
+ "start": 593.666,
+ "end": 593.746,
+ "text": "to"
+ },
+ {
+ "id": 1784,
+ "start": 593.746,
+ "end": 593.986,
+ "text": "end"
+ },
+ {
+ "id": 1785,
+ "start": 593.986,
+ "end": 594.046,
+ "text": "the"
+ },
+ {
+ "id": 1786,
+ "start": 594.046,
+ "end": 594.426,
+ "text": "meetings"
+ },
+ {
+ "id": 1787,
+ "start": 594.426,
+ "end": 594.546,
+ "text": "by"
+ },
+ {
+ "id": 1788,
+ "start": 594.546,
+ "end": 594.896,
+ "text": "saying"
+ },
+ {
+ "id": 1789,
+ "start": 594.896,
+ "end": 596.046,
+ "text": "“domination.”"
+ },
+ {
+ "id": 1790,
+ "start": 596.046,
+ "end": 596.206,
+ "text": "Is"
+ },
+ {
+ "id": 1791,
+ "start": 596.206,
+ "end": 596.336,
+ "text": "that"
+ },
+ {
+ "id": 1792,
+ "start": 596.336,
+ "end": 596.956,
+ "text": "true?"
+ },
+ {
+ "id": 1793,
+ "start": 596.956,
+ "end": 597.116,
+ "text": "That"
+ },
+ {
+ "id": 1794,
+ "start": 597.116,
+ "end": 597.256,
+ "text": "is"
+ },
+ {
+ "id": 1795,
+ "start": 597.256,
+ "end": 597.446,
+ "text": "true."
+ },
+ {
+ "id": 1796,
+ "start": 597.446,
+ "end": 597.596,
+ "text": "So"
+ },
+ {
+ "id": 1797,
+ "start": 597.596,
+ "end": 597.796,
+ "text": "tell"
+ },
+ {
+ "id": 1798,
+ "start": 597.796,
+ "end": 597.916,
+ "text": "me"
+ },
+ {
+ "id": 1799,
+ "start": 597.916,
+ "end": 598.166,
+ "text": "about"
+ },
+ {
+ "id": 1800,
+ "start": 598.166,
+ "end": 598.386,
+ "text": "that."
+ },
+ {
+ "id": 1801,
+ "start": 598.386,
+ "end": 598.776,
+ "text": "What"
+ },
+ {
+ "id": 1802,
+ "start": 598.776,
+ "end": 598.896,
+ "text": "were"
+ },
+ {
+ "id": 1803,
+ "start": 598.896,
+ "end": 599.076,
+ "text": "those"
+ },
+ {
+ "id": 1804,
+ "start": 599.076,
+ "end": 599.366,
+ "text": "Friday"
+ },
+ {
+ "id": 1805,
+ "start": 599.366,
+ "end": 599.736,
+ "text": "meetings"
+ },
+ {
+ "id": 1806,
+ "start": 599.736,
+ "end": 599.936,
+ "text": "and"
+ },
+ {
+ "id": 1807,
+ "start": 599.936,
+ "end": 600.286,
+ "text": "what"
+ },
+ {
+ "id": 1808,
+ "start": 600.286,
+ "end": 600.386,
+ "text": "did"
+ },
+ {
+ "id": 1809,
+ "start": 600.386,
+ "end": 600.586,
+ "text": "that"
+ },
+ {
+ "id": 1810,
+ "start": 600.586,
+ "end": 601.206,
+ "text": "mean?"
+ },
+ {
+ "id": 1811,
+ "start": 601.206,
+ "end": 603.476,
+ "text": "Domination?"
+ },
+ {
+ "id": 1812,
+ "start": 603.476,
+ "end": 603.626,
+ "text": "I"
+ },
+ {
+ "id": 1813,
+ "start": 603.626,
+ "end": 603.786,
+ "text": "mean,"
+ },
+ {
+ "id": 1814,
+ "start": 603.786,
+ "end": 603.876,
+ "text": "I"
+ },
+ {
+ "id": 1815,
+ "start": 603.876,
+ "end": 604.006,
+ "text": "can"
+ },
+ {
+ "id": 1816,
+ "start": 604.006,
+ "end": 604.156,
+ "text": "only"
+ },
+ {
+ "id": 1817,
+ "start": 604.156,
+ "end": 604.416,
+ "text": "speak"
+ },
+ {
+ "id": 1818,
+ "start": 604.416,
+ "end": 604.606,
+ "text": "to"
+ },
+ {
+ "id": 1819,
+ "start": 604.606,
+ "end": 605.796,
+ "text": "my"
+ },
+ {
+ "id": 1820,
+ "start": 605.796,
+ "end": 610.236,
+ "text": "experience."
+ },
+ {
+ "id": 1821,
+ "start": 610.236,
+ "end": 610.486,
+ "text": "Part"
+ },
+ {
+ "id": 1822,
+ "start": 610.486,
+ "end": 610.586,
+ "text": "of"
+ },
+ {
+ "id": 1823,
+ "start": 610.586,
+ "end": 610.706,
+ "text": "it"
+ },
+ {
+ "id": 1824,
+ "start": 610.706,
+ "end": 611.146,
+ "text": "was"
+ },
+ {
+ "id": 1825,
+ "start": 611.146,
+ "end": 611.286,
+ "text": "the"
+ },
+ {
+ "id": 1826,
+ "start": 611.286,
+ "end": 611.646,
+ "text": "rallying"
+ },
+ {
+ "id": 1827,
+ "start": 611.646,
+ "end": 611.736,
+ "text": "of"
+ },
+ {
+ "id": 1828,
+ "start": 611.736,
+ "end": 611.846,
+ "text": "the"
+ },
+ {
+ "id": 1829,
+ "start": 611.846,
+ "end": 612.396,
+ "text": "troops"
+ },
+ {
+ "id": 1830,
+ "start": 612.396,
+ "end": 612.846,
+ "text": "against"
+ },
+ {
+ "id": 1831,
+ "start": 612.846,
+ "end": 613.986,
+ "text": "what"
+ },
+ {
+ "id": 1832,
+ "start": 613.986,
+ "end": 615.306,
+ "text": "most"
+ },
+ {
+ "id": 1833,
+ "start": 615.306,
+ "end": 615.716,
+ "text": "people"
+ },
+ {
+ "id": 1834,
+ "start": 615.716,
+ "end": 615.886,
+ "text": "in"
+ },
+ {
+ "id": 1835,
+ "start": 615.886,
+ "end": 616.036,
+ "text": "the"
+ },
+ {
+ "id": 1836,
+ "start": 616.036,
+ "end": 616.386,
+ "text": "industry"
+ },
+ {
+ "id": 1837,
+ "start": 616.386,
+ "end": 616.616,
+ "text": "might"
+ },
+ {
+ "id": 1838,
+ "start": 616.616,
+ "end": 618.726,
+ "text": "perceive"
+ },
+ {
+ "id": 1839,
+ "start": 618.726,
+ "end": 618.846,
+ "text": "as"
+ },
+ {
+ "id": 1840,
+ "start": 618.846,
+ "end": 618.926,
+ "text": "a"
+ },
+ {
+ "id": 1841,
+ "start": 618.926,
+ "end": 619.306,
+ "text": "product"
+ },
+ {
+ "id": 1842,
+ "start": 619.1535000000001,
+ "end": 619.4784999999999,
+ "text": "or"
+ },
+ {
+ "id": 1843,
+ "start": 619.3810000000001,
+ "end": 619.651,
+ "text": "company"
+ },
+ {
+ "id": 1844,
+ "start": 619.6085,
+ "end": 619.8235,
+ "text": "that"
+ },
+ {
+ "id": 1845,
+ "start": 619.836,
+ "end": 619.996,
+ "text": "might"
+ },
+ {
+ "id": 1846,
+ "start": 619.996,
+ "end": 620.086,
+ "text": "be"
+ },
+ {
+ "id": 1847,
+ "start": 620.086,
+ "end": 620.276,
+ "text": "dead"
+ },
+ {
+ "id": 1848,
+ "start": 620.276,
+ "end": 620.376,
+ "text": "on"
+ },
+ {
+ "id": 1849,
+ "start": 621.0993333333334,
+ "end": 621.306,
+ "text": "arrival."
+ },
+ {
+ "id": 1850,
+ "start": 621.9226666666667,
+ "end": 622.2360000000001,
+ "text": "Again,"
+ },
+ {
+ "id": 1851,
+ "start": 622.746,
+ "end": 623.166,
+ "text": "you"
+ },
+ {
+ "id": 1852,
+ "start": 623.166,
+ "end": 623.326,
+ "text": "sort"
+ },
+ {
+ "id": 1853,
+ "start": 623.326,
+ "end": 623.396,
+ "text": "of"
+ },
+ {
+ "id": 1854,
+ "start": 623.396,
+ "end": 623.606,
+ "text": "look"
+ },
+ {
+ "id": 1855,
+ "start": 623.606,
+ "end": 623.986,
+ "text": "back"
+ },
+ {
+ "id": 1856,
+ "start": 623.986,
+ "end": 624.106,
+ "text": "and"
+ },
+ {
+ "id": 1857,
+ "start": 624.106,
+ "end": 624.526,
+ "text": "consider"
+ },
+ {
+ "id": 1858,
+ "start": 624.526,
+ "end": 625.636,
+ "text": "Facebook"
+ },
+ {
+ "id": 1859,
+ "start": 625.636,
+ "end": 626.836,
+ "text": "and"
+ },
+ {
+ "id": 1860,
+ "start": 626.836,
+ "end": 627.136,
+ "text": "where"
+ },
+ {
+ "id": 1861,
+ "start": 627.136,
+ "end": 627.216,
+ "text": "it"
+ },
+ {
+ "id": 1862,
+ "start": 627.216,
+ "end": 627.436,
+ "text": "was"
+ },
+ {
+ "id": 1863,
+ "start": 627.436,
+ "end": 627.806,
+ "text": "relative"
+ },
+ {
+ "id": 1864,
+ "start": 627.806,
+ "end": 627.906,
+ "text": "to"
+ },
+ {
+ "id": 1865,
+ "start": 628.281,
+ "end": 628.421,
+ "text": "Myspace,"
+ },
+ {
+ "id": 1866,
+ "start": 628.756,
+ "end": 628.936,
+ "text": "which"
+ },
+ {
+ "id": 1867,
+ "start": 628.936,
+ "end": 628.976,
+ "text": "I"
+ },
+ {
+ "id": 1868,
+ "start": 628.976,
+ "end": 629.246,
+ "text": "think"
+ },
+ {
+ "id": 1869,
+ "start": 629.246,
+ "end": 629.536,
+ "text": "was"
+ },
+ {
+ "id": 1870,
+ "start": 629.536,
+ "end": 629.666,
+ "text": "on"
+ },
+ {
+ "id": 1871,
+ "start": 629.666,
+ "end": 629.736,
+ "text": "the"
+ },
+ {
+ "id": 1872,
+ "start": 629.736,
+ "end": 629.926,
+ "text": "order"
+ },
+ {
+ "id": 1873,
+ "start": 629.831,
+ "end": 630.001,
+ "text": "of"
+ },
+ {
+ "id": 1874,
+ "start": 629.926,
+ "end": 630.076,
+ "text": "like"
+ },
+ {
+ "id": 1875,
+ "start": 630.076,
+ "end": 630.416,
+ "text": "60"
+ },
+ {
+ "id": 1876,
+ "start": 630.416,
+ "end": 630.696,
+ "text": "times"
+ },
+ {
+ "id": 1877,
+ "start": 630.696,
+ "end": 631.546,
+ "text": "larger"
+ },
+ {
+ "id": 1878,
+ "start": 631.546,
+ "end": 631.716,
+ "text": "than"
+ },
+ {
+ "id": 1879,
+ "start": 631.716,
+ "end": 632.246,
+ "text": "Facebook"
+ },
+ {
+ "id": 1880,
+ "start": 632.246,
+ "end": 632.436,
+ "text": "from"
+ },
+ {
+ "id": 1881,
+ "start": 632.436,
+ "end": 632.496,
+ "text": "a"
+ },
+ {
+ "id": 1882,
+ "start": 632.496,
+ "end": 632.796,
+ "text": "user"
+ },
+ {
+ "id": 1883,
+ "start": 633.7660000000001,
+ "end": 634.0310000000002,
+ "text": "standpoint."
+ },
+ {
+ "id": 1884,
+ "start": 635.036,
+ "end": 635.266,
+ "text": "We"
+ },
+ {
+ "id": 1885,
+ "start": 635.266,
+ "end": 635.376,
+ "text": "were"
+ },
+ {
+ "id": 1886,
+ "start": 635.376,
+ "end": 635.516,
+ "text": "the"
+ },
+ {
+ "id": 1887,
+ "start": 635.516,
+ "end": 636.436,
+ "text": "insurgents."
+ },
+ {
+ "id": 1888,
+ "start": 636.436,
+ "end": 636.686,
+ "text": "We"
+ },
+ {
+ "id": 1889,
+ "start": 636.686,
+ "end": 637.356,
+ "text": "were"
+ },
+ {
+ "id": 1890,
+ "start": 637.356,
+ "end": 637.476,
+ "text": "the"
+ },
+ {
+ "id": 1891,
+ "start": 637.476,
+ "end": 637.706,
+ "text": "ones"
+ },
+ {
+ "id": 1892,
+ "start": 637.706,
+ "end": 637.836,
+ "text": "that"
+ },
+ {
+ "id": 1893,
+ "start": 637.836,
+ "end": 638.066,
+ "text": "had"
+ },
+ {
+ "id": 1894,
+ "start": 638.066,
+ "end": 638.386,
+ "text": "everything"
+ },
+ {
+ "id": 1895,
+ "start": 638.386,
+ "end": 638.526,
+ "text": "to"
+ },
+ {
+ "id": 1896,
+ "start": 638.526,
+ "end": 639.456,
+ "text": "lose."
+ },
+ {
+ "id": 1897,
+ "start": 639.456,
+ "end": 640.156,
+ "text": "And"
+ },
+ {
+ "id": 1898,
+ "start": 640.156,
+ "end": 640.246,
+ "text": "I"
+ },
+ {
+ "id": 1899,
+ "start": 640.246,
+ "end": 640.486,
+ "text": "think"
+ },
+ {
+ "id": 1900,
+ "start": 640.486,
+ "end": 641.406,
+ "text": "that"
+ },
+ {
+ "id": 1901,
+ "start": 641.406,
+ "end": 641.526,
+ "text": "the"
+ },
+ {
+ "id": 1902,
+ "start": 641.526,
+ "end": 641.816,
+ "text": "notion"
+ },
+ {
+ "id": 1903,
+ "start": 641.816,
+ "end": 641.886,
+ "text": "of"
+ },
+ {
+ "id": 1904,
+ "start": 641.886,
+ "end": 642.476,
+ "text": "domination"
+ },
+ {
+ "id": 1905,
+ "start": 642.476,
+ "end": 643.216,
+ "text": "was"
+ },
+ {
+ "id": 1906,
+ "start": 643.016,
+ "end": 643.456,
+ "text": "guided"
+ },
+ {
+ "id": 1907,
+ "start": 643.556,
+ "end": 643.696,
+ "text": "by"
+ },
+ {
+ "id": 1908,
+ "start": 643.696,
+ "end": 643.876,
+ "text": "this"
+ },
+ {
+ "id": 1909,
+ "start": 643.876,
+ "end": 644.296,
+ "text": "idea"
+ },
+ {
+ "id": 1910,
+ "start": 644.296,
+ "end": 644.956,
+ "text": "of"
+ },
+ {
+ "id": 1911,
+ "start": 644.956,
+ "end": 645.376,
+ "text": "rallying"
+ },
+ {
+ "id": 1912,
+ "start": 645.376,
+ "end": 645.456,
+ "text": "the"
+ },
+ {
+ "id": 1913,
+ "start": 645.456,
+ "end": 645.876,
+ "text": "troops"
+ },
+ {
+ "id": 1914,
+ "start": 645.876,
+ "end": 646.726,
+ "text": "towards"
+ },
+ {
+ "id": 1915,
+ "start": 646.726,
+ "end": 647.046,
+ "text": "making"
+ },
+ {
+ "id": 1916,
+ "start": 647.046,
+ "end": 647.626,
+ "text": "steady,"
+ },
+ {
+ "id": 1917,
+ "start": 647.626,
+ "end": 648.236,
+ "text": "continuous"
+ },
+ {
+ "id": 1918,
+ "start": 648.236,
+ "end": 649.136,
+ "text": "progress"
+ },
+ {
+ "id": 1919,
+ "start": 649.136,
+ "end": 649.376,
+ "text": "towards"
+ },
+ {
+ "id": 1920,
+ "start": 649.376,
+ "end": 649.436,
+ "text": "a"
+ },
+ {
+ "id": 1921,
+ "start": 649.436,
+ "end": 649.946,
+ "text": "strategy"
+ },
+ {
+ "id": 1922,
+ "start": 649.946,
+ "end": 650.046,
+ "text": "that"
+ },
+ {
+ "id": 1923,
+ "start": 650.046,
+ "end": 650.156,
+ "text": "we"
+ },
+ {
+ "id": 1924,
+ "start": 650.156,
+ "end": 650.386,
+ "text": "felt"
+ },
+ {
+ "id": 1925,
+ "start": 650.386,
+ "end": 650.786,
+ "text": "like"
+ },
+ {
+ "id": 1926,
+ "start": 650.786,
+ "end": 651.076,
+ "text": "could"
+ },
+ {
+ "id": 1927,
+ "start": 651.076,
+ "end": 651.576,
+ "text": "potentially"
+ },
+ {
+ "id": 1928,
+ "start": 651.576,
+ "end": 652.316,
+ "text": "win,"
+ },
+ {
+ "id": 1929,
+ "start": 652.316,
+ "end": 652.516,
+ "text": "and"
+ },
+ {
+ "id": 1930,
+ "start": 652.516,
+ "end": 652.676,
+ "text": "that"
+ },
+ {
+ "id": 1931,
+ "start": 652.676,
+ "end": 652.896,
+ "text": "wouldn’t"
+ },
+ {
+ "id": 1932,
+ "start": 652.896,
+ "end": 653.006,
+ "text": "be"
+ },
+ {
+ "id": 1933,
+ "start": 653.006,
+ "end": 653.316,
+ "text": "fully"
+ },
+ {
+ "id": 1934,
+ "start": 653.3693333333333,
+ "end": 653.596,
+ "text": "realized"
+ },
+ {
+ "id": 1935,
+ "start": 653.7326666666667,
+ "end": 653.876,
+ "text": "in"
+ },
+ {
+ "id": 1936,
+ "start": 654.096,
+ "end": 654.156,
+ "text": "a"
+ },
+ {
+ "id": 1937,
+ "start": 654.156,
+ "end": 654.476,
+ "text": "single"
+ },
+ {
+ "id": 1938,
+ "start": 654.476,
+ "end": 655.376,
+ "text": "quarter"
+ },
+ {
+ "id": 1939,
+ "start": 655.376,
+ "end": 655.466,
+ "text": "or"
+ },
+ {
+ "id": 1940,
+ "start": 655.466,
+ "end": 655.636,
+ "text": "even"
+ },
+ {
+ "id": 1941,
+ "start": 655.636,
+ "end": 655.766,
+ "text": "in"
+ },
+ {
+ "id": 1942,
+ "start": 655.766,
+ "end": 655.826,
+ "text": "a"
+ },
+ {
+ "id": 1943,
+ "start": 655.826,
+ "end": 656.126,
+ "text": "single"
+ },
+ {
+ "id": 1944,
+ "start": 655.9793333333333,
+ "end": 656.2393333333333,
+ "text": "year."
+ },
+ {
+ "id": 1945,
+ "start": 656.1326666666666,
+ "end": 656.3526666666667,
+ "text": "It"
+ },
+ {
+ "id": 1946,
+ "start": 656.2860000000001,
+ "end": 656.466,
+ "text": "was"
+ },
+ {
+ "id": 1947,
+ "start": 656.4393333333333,
+ "end": 656.5793333333334,
+ "text": "going"
+ },
+ {
+ "id": 1948,
+ "start": 656.5926666666667,
+ "end": 656.6926666666667,
+ "text": "to"
+ },
+ {
+ "id": 1949,
+ "start": 656.746,
+ "end": 656.806,
+ "text": "be"
+ },
+ {
+ "id": 1950,
+ "start": 656.806,
+ "end": 656.846,
+ "text": "a"
+ },
+ {
+ "id": 1951,
+ "start": 656.846,
+ "end": 657.416,
+ "text": "multiyear"
+ },
+ {
+ "id": 1952,
+ "start": 657.416,
+ "end": 658.236,
+ "text": "effort."
+ },
+ {
+ "id": 1953,
+ "start": 658.236,
+ "end": 658.786,
+ "text": "But"
+ },
+ {
+ "id": 1954,
+ "start": 658.786,
+ "end": 659.006,
+ "text": "if"
+ },
+ {
+ "id": 1955,
+ "start": 659.006,
+ "end": 659.146,
+ "text": "we"
+ },
+ {
+ "id": 1956,
+ "start": 659.146,
+ "end": 659.296,
+ "text": "were"
+ },
+ {
+ "id": 1957,
+ "start": 659.296,
+ "end": 659.666,
+ "text": "able"
+ },
+ {
+ "id": 1958,
+ "start": 659.666,
+ "end": 659.836,
+ "text": "to"
+ },
+ {
+ "id": 1959,
+ "start": 660.071,
+ "end": 660.196,
+ "text": "capitalize"
+ },
+ {
+ "id": 1960,
+ "start": 660.476,
+ "end": 660.556,
+ "text": "on"
+ },
+ {
+ "id": 1961,
+ "start": 660.556,
+ "end": 660.716,
+ "text": "that"
+ },
+ {
+ "id": 1962,
+ "start": 660.716,
+ "end": 661.306,
+ "text": "opportunity,"
+ },
+ {
+ "id": 1963,
+ "start": 661.306,
+ "end": 661.446,
+ "text": "we"
+ },
+ {
+ "id": 1964,
+ "start": 661.446,
+ "end": 661.656,
+ "text": "felt"
+ },
+ {
+ "id": 1965,
+ "start": 661.656,
+ "end": 661.806,
+ "text": "like"
+ },
+ {
+ "id": 1966,
+ "start": 661.806,
+ "end": 661.896,
+ "text": "we"
+ },
+ {
+ "id": 1967,
+ "start": 661.896,
+ "end": 662.076,
+ "text": "might"
+ },
+ {
+ "id": 1968,
+ "start": 662.076,
+ "end": 662.186,
+ "text": "be"
+ },
+ {
+ "id": 1969,
+ "start": 662.186,
+ "end": 662.326,
+ "text": "able"
+ },
+ {
+ "id": 1970,
+ "start": 662.326,
+ "end": 662.556,
+ "text": "to"
+ },
+ {
+ "id": 1971,
+ "start": 662.506,
+ "end": 662.746,
+ "text": "build"
+ },
+ {
+ "id": 1972,
+ "start": 662.6659999999999,
+ "end": 662.966,
+ "text": "a"
+ },
+ {
+ "id": 1973,
+ "start": 662.826,
+ "end": 663.186,
+ "text": "product"
+ },
+ {
+ "id": 1974,
+ "start": 663.186,
+ "end": 663.276,
+ "text": "that"
+ },
+ {
+ "id": 1975,
+ "start": 663.276,
+ "end": 663.376,
+ "text": "would"
+ },
+ {
+ "id": 1976,
+ "start": 663.376,
+ "end": 664.536,
+ "text": "have"
+ },
+ {
+ "id": 1977,
+ "start": 664.536,
+ "end": 665.126,
+ "text": "meaningful"
+ },
+ {
+ "id": 1978,
+ "start": 665.126,
+ "end": 665.976,
+ "text": "influence"
+ },
+ {
+ "id": 1979,
+ "start": 665.976,
+ "end": 666.166,
+ "text": "on"
+ },
+ {
+ "id": 1980,
+ "start": 666.166,
+ "end": 666.396,
+ "text": "how"
+ },
+ {
+ "id": 1981,
+ "start": 666.396,
+ "end": 666.676,
+ "text": "people"
+ },
+ {
+ "id": 1982,
+ "start": 666.676,
+ "end": 667.616,
+ "text": "lived."
+ },
+ {
+ "id": 1983,
+ "start": 667.616,
+ "end": 669.086,
+ "text": "And"
+ },
+ {
+ "id": 1984,
+ "start": 669.086,
+ "end": 669.296,
+ "text": "I"
+ },
+ {
+ "id": 1985,
+ "start": 669.296,
+ "end": 669.566,
+ "text": "certainly"
+ },
+ {
+ "id": 1986,
+ "start": 669.566,
+ "end": 669.836,
+ "text": "wasn’t"
+ },
+ {
+ "id": 1987,
+ "start": 669.836,
+ "end": 670.166,
+ "text": "thinking"
+ },
+ {
+ "id": 1988,
+ "start": 670.166,
+ "end": 670.336,
+ "text": "that"
+ },
+ {
+ "id": 1989,
+ "start": 670.336,
+ "end": 670.416,
+ "text": "it"
+ },
+ {
+ "id": 1990,
+ "start": 670.416,
+ "end": 670.646,
+ "text": "would"
+ },
+ {
+ "id": 1991,
+ "start": 670.646,
+ "end": 670.736,
+ "text": "be"
+ },
+ {
+ "id": 1992,
+ "start": 670.736,
+ "end": 670.826,
+ "text": "on"
+ },
+ {
+ "id": 1993,
+ "start": 670.826,
+ "end": 670.896,
+ "text": "the"
+ },
+ {
+ "id": 1994,
+ "start": 670.896,
+ "end": 671.136,
+ "text": "order"
+ },
+ {
+ "id": 1995,
+ "start": 671.136,
+ "end": 671.216,
+ "text": "of"
+ },
+ {
+ "id": 1996,
+ "start": 671.216,
+ "end": 671.526,
+ "text": "billions"
+ },
+ {
+ "id": 1997,
+ "start": 671.526,
+ "end": 671.596,
+ "text": "of"
+ },
+ {
+ "id": 1998,
+ "start": 671.596,
+ "end": 673.256,
+ "text": "people."
+ },
+ {
+ "id": 1999,
+ "start": 673.256,
+ "end": 673.366,
+ "text": "The"
+ },
+ {
+ "id": 2000,
+ "start": 673.366,
+ "end": 673.866,
+ "text": "smartphone"
+ },
+ {
+ "id": 2001,
+ "start": 673.866,
+ "end": 673.976,
+ "text": "had"
+ },
+ {
+ "id": 2002,
+ "start": 673.976,
+ "end": 674.136,
+ "text": "not"
+ },
+ {
+ "id": 2003,
+ "start": 674.136,
+ "end": 674.286,
+ "text": "yet"
+ },
+ {
+ "id": 2004,
+ "start": 674.286,
+ "end": 674.526,
+ "text": "been"
+ },
+ {
+ "id": 2005,
+ "start": 674.526,
+ "end": 675.626,
+ "text": "invented"
+ },
+ {
+ "id": 2006,
+ "start": 675.626,
+ "end": 675.816,
+ "text": "by"
+ },
+ {
+ "id": 2007,
+ "start": 675.816,
+ "end": 676.026,
+ "text": "that"
+ },
+ {
+ "id": 2008,
+ "start": 676.026,
+ "end": 676.366,
+ "text": "stage."
+ },
+ {
+ "id": 2009,
+ "start": 676.366,
+ "end": 677.336,
+ "text": "But"
+ },
+ {
+ "id": 2010,
+ "start": 677.336,
+ "end": 677.376,
+ "text": "I"
+ },
+ {
+ "id": 2011,
+ "start": 677.376,
+ "end": 677.866,
+ "text": "think,"
+ },
+ {
+ "id": 2012,
+ "start": 677.866,
+ "end": 678.006,
+ "text": "you"
+ },
+ {
+ "id": 2013,
+ "start": 678.006,
+ "end": 678.666,
+ "text": "know,"
+ },
+ {
+ "id": 2014,
+ "start": 678.666,
+ "end": 678.796,
+ "text": "the"
+ },
+ {
+ "id": 2015,
+ "start": 678.796,
+ "end": 679.046,
+ "text": "spirit"
+ },
+ {
+ "id": 2016,
+ "start": 679.046,
+ "end": 679.106,
+ "text": "of"
+ },
+ {
+ "id": 2017,
+ "start": 679.106,
+ "end": 679.606,
+ "text": "domination"
+ },
+ {
+ "id": 2018,
+ "start": 679.606,
+ "end": 679.716,
+ "text": "was"
+ },
+ {
+ "id": 2019,
+ "start": 679.716,
+ "end": 679.876,
+ "text": "really"
+ },
+ {
+ "id": 2020,
+ "start": 679.876,
+ "end": 680.086,
+ "text": "around"
+ },
+ {
+ "id": 2021,
+ "start": 680.086,
+ "end": 680.236,
+ "text": "this"
+ },
+ {
+ "id": 2022,
+ "start": 680.236,
+ "end": 680.746,
+ "text": "idea"
+ },
+ {
+ "id": 2023,
+ "start": 680.746,
+ "end": 680.836,
+ "text": "of"
+ },
+ {
+ "id": 2024,
+ "start": 680.836,
+ "end": 681.076,
+ "text": "like"
+ },
+ {
+ "id": 2025,
+ "start": 681.076,
+ "end": 681.466,
+ "text": "rallying"
+ },
+ {
+ "id": 2026,
+ "start": 681.466,
+ "end": 681.526,
+ "text": "a"
+ },
+ {
+ "id": 2027,
+ "start": 681.526,
+ "end": 681.996,
+ "text": "competitive"
+ },
+ {
+ "id": 2028,
+ "start": 681.996,
+ "end": 682.766,
+ "text": "spirit"
+ },
+ {
+ "id": 2029,
+ "start": 682.766,
+ "end": 683.716,
+ "text": "against"
+ },
+ {
+ "id": 2030,
+ "start": 683.716,
+ "end": 683.906,
+ "text": "what"
+ },
+ {
+ "id": 2031,
+ "start": 683.906,
+ "end": 684.496,
+ "text": "was,"
+ },
+ {
+ "id": 2032,
+ "start": 684.496,
+ "end": 684.696,
+ "text": "on"
+ },
+ {
+ "id": 2033,
+ "start": 684.696,
+ "end": 685.186,
+ "text": "paper,"
+ },
+ {
+ "id": 2034,
+ "start": 685.186,
+ "end": 685.386,
+ "text": "a"
+ },
+ {
+ "id": 2035,
+ "start": 685.386,
+ "end": 685.906,
+ "text": "clearly"
+ },
+ {
+ "id": 2036,
+ "start": 685.906,
+ "end": 686.336,
+ "text": "grim"
+ },
+ {
+ "id": 2037,
+ "start": 686.336,
+ "end": 687.796,
+ "text": "situation."
+ },
+ {
+ "id": 2038,
+ "start": 687.796,
+ "end": 687.936,
+ "text": "I"
+ },
+ {
+ "id": 2039,
+ "start": 687.936,
+ "end": 688.116,
+ "text": "know"
+ },
+ {
+ "id": 2040,
+ "start": 688.1926666666667,
+ "end": 688.386,
+ "text": "we’re"
+ },
+ {
+ "id": 2041,
+ "start": 688.4493333333334,
+ "end": 688.6560000000001,
+ "text": "limited,"
+ },
+ {
+ "id": 2042,
+ "start": 688.706,
+ "end": 688.926,
+ "text": "so"
+ },
+ {
+ "id": 2043,
+ "start": 688.926,
+ "end": 689.256,
+ "text": "the"
+ },
+ {
+ "id": 2044,
+ "start": 689.256,
+ "end": 689.506,
+ "text": "Like"
+ },
+ {
+ "id": 2045,
+ "start": 689.511,
+ "end": 689.6659999999999,
+ "text": "button."
+ },
+ {
+ "id": 2046,
+ "start": 689.766,
+ "end": 689.826,
+ "text": "I"
+ },
+ {
+ "id": 2047,
+ "start": 689.826,
+ "end": 690.056,
+ "text": "just"
+ },
+ {
+ "id": 2048,
+ "start": 690.056,
+ "end": 690.196,
+ "text": "need"
+ },
+ {
+ "id": 2049,
+ "start": 690.196,
+ "end": 691.126,
+ "text": "to"
+ },
+ {
+ "id": 2050,
+ "start": 691.126,
+ "end": 691.396,
+ "text": "hear"
+ },
+ {
+ "id": 2051,
+ "start": 691.396,
+ "end": 691.646,
+ "text": "about"
+ },
+ {
+ "id": 2052,
+ "start": 691.646,
+ "end": 691.746,
+ "text": "the"
+ },
+ {
+ "id": 2053,
+ "start": 691.746,
+ "end": 692.266,
+ "text": "genesis"
+ },
+ {
+ "id": 2054,
+ "start": 692.266,
+ "end": 692.396,
+ "text": "of"
+ },
+ {
+ "id": 2055,
+ "start": 692.396,
+ "end": 692.686,
+ "text": "that"
+ },
+ {
+ "id": 2056,
+ "start": 692.686,
+ "end": 693.096,
+ "text": "and"
+ },
+ {
+ "id": 2057,
+ "start": 693.096,
+ "end": 693.296,
+ "text": "ask"
+ },
+ {
+ "id": 2058,
+ "start": 693.296,
+ "end": 693.356,
+ "text": "you"
+ },
+ {
+ "id": 2059,
+ "start": 693.356,
+ "end": 693.396,
+ "text": "a"
+ },
+ {
+ "id": 2060,
+ "start": 693.396,
+ "end": 693.636,
+ "text": "couple"
+ },
+ {
+ "id": 2061,
+ "start": 693.636,
+ "end": 693.696,
+ "text": "of"
+ },
+ {
+ "id": 2062,
+ "start": 693.696,
+ "end": 694.076,
+ "text": "questions"
+ },
+ {
+ "id": 2063,
+ "start": 694.076,
+ "end": 694.276,
+ "text": "about"
+ },
+ {
+ "id": 2064,
+ "start": 694.276,
+ "end": 694.536,
+ "text": "that."
+ },
+ {
+ "id": 2065,
+ "start": 694.536,
+ "end": 694.816,
+ "text": "So"
+ },
+ {
+ "id": 2066,
+ "start": 694.816,
+ "end": 695.106,
+ "text": "how"
+ },
+ {
+ "id": 2067,
+ "start": 695.106,
+ "end": 695.256,
+ "text": "did"
+ },
+ {
+ "id": 2068,
+ "start": 695.256,
+ "end": 695.446,
+ "text": "that"
+ },
+ {
+ "id": 2069,
+ "start": 695.446,
+ "end": 695.606,
+ "text": "come"
+ },
+ {
+ "id": 2070,
+ "start": 695.606,
+ "end": 696.346,
+ "text": "about?"
+ },
+ {
+ "id": 2071,
+ "start": 696.346,
+ "end": 696.526,
+ "text": "So"
+ },
+ {
+ "id": 2072,
+ "start": 696.526,
+ "end": 696.616,
+ "text": "the"
+ },
+ {
+ "id": 2073,
+ "start": 696.616,
+ "end": 696.836,
+ "text": "Like"
+ },
+ {
+ "id": 2074,
+ "start": 696.836,
+ "end": 697.086,
+ "text": "button"
+ },
+ {
+ "id": 2075,
+ "start": 697.086,
+ "end": 697.206,
+ "text": "was"
+ },
+ {
+ "id": 2076,
+ "start": 697.206,
+ "end": 697.296,
+ "text": "a"
+ },
+ {
+ "id": 2077,
+ "start": 697.296,
+ "end": 697.666,
+ "text": "feature"
+ },
+ {
+ "id": 2078,
+ "start": 697.666,
+ "end": 697.776,
+ "text": "that"
+ },
+ {
+ "id": 2079,
+ "start": 697.776,
+ "end": 697.906,
+ "text": "we"
+ },
+ {
+ "id": 2080,
+ "start": 697.906,
+ "end": 698.476,
+ "text": "had"
+ },
+ {
+ "id": 2081,
+ "start": 698.476,
+ "end": 698.936,
+ "text": "in"
+ },
+ {
+ "id": 2082,
+ "start": 698.936,
+ "end": 699.106,
+ "text": "what"
+ },
+ {
+ "id": 2083,
+ "start": 699.106,
+ "end": 699.166,
+ "text": "I"
+ },
+ {
+ "id": 2084,
+ "start": 699.166,
+ "end": 699.316,
+ "text": "like"
+ },
+ {
+ "id": 2085,
+ "start": 699.316,
+ "end": 699.386,
+ "text": "to"
+ },
+ {
+ "id": 2086,
+ "start": 699.386,
+ "end": 699.616,
+ "text": "call"
+ },
+ {
+ "id": 2087,
+ "start": 699.616,
+ "end": 699.966,
+ "text": "product"
+ },
+ {
+ "id": 2088,
+ "start": 699.966,
+ "end": 700.976,
+ "text": "purgatory"
+ },
+ {
+ "id": 2089,
+ "start": 700.976,
+ "end": 701.556,
+ "text": "for,"
+ },
+ {
+ "id": 2090,
+ "start": 701.556,
+ "end": 701.596,
+ "text": "I"
+ },
+ {
+ "id": 2091,
+ "start": 701.596,
+ "end": 701.836,
+ "text": "think,"
+ },
+ {
+ "id": 2092,
+ "start": 701.836,
+ "end": 702.206,
+ "text": "multiple"
+ },
+ {
+ "id": 2093,
+ "start": 702.261,
+ "end": 702.541,
+ "text": "years."
+ },
+ {
+ "id": 2094,
+ "start": 702.686,
+ "end": 702.876,
+ "text": "We"
+ },
+ {
+ "id": 2095,
+ "start": 702.876,
+ "end": 703.016,
+ "text": "had"
+ },
+ {
+ "id": 2096,
+ "start": 703.016,
+ "end": 703.346,
+ "text": "started"
+ },
+ {
+ "id": 2097,
+ "start": 703.346,
+ "end": 703.706,
+ "text": "working"
+ },
+ {
+ "id": 2098,
+ "start": 703.706,
+ "end": 703.826,
+ "text": "on"
+ },
+ {
+ "id": 2099,
+ "start": 703.856,
+ "end": 704.056,
+ "text": "it"
+ },
+ {
+ "id": 2100,
+ "start": 704.006,
+ "end": 704.286,
+ "text": "in"
+ },
+ {
+ "id": 2101,
+ "start": 704.286,
+ "end": 704.356,
+ "text": "the"
+ },
+ {
+ "id": 2102,
+ "start": 704.356,
+ "end": 704.596,
+ "text": "summer"
+ },
+ {
+ "id": 2103,
+ "start": 704.596,
+ "end": 704.666,
+ "text": "of"
+ },
+ {
+ "id": 2104,
+ "start": 705.116,
+ "end": 705.1910000000001,
+ "text": "2007."
+ },
+ {
+ "id": 2105,
+ "start": 705.636,
+ "end": 705.716,
+ "text": "A"
+ },
+ {
+ "id": 2106,
+ "start": 705.716,
+ "end": 706.096,
+ "text": "team"
+ },
+ {
+ "id": 2107,
+ "start": 706.096,
+ "end": 706.216,
+ "text": "had"
+ },
+ {
+ "id": 2108,
+ "start": 706.216,
+ "end": 706.436,
+ "text": "gotten"
+ },
+ {
+ "id": 2109,
+ "start": 706.436,
+ "end": 706.736,
+ "text": "together"
+ },
+ {
+ "id": 2110,
+ "start": 706.736,
+ "end": 706.866,
+ "text": "for"
+ },
+ {
+ "id": 2111,
+ "start": 706.826,
+ "end": 707.346,
+ "text": "Hackathon,"
+ },
+ {
+ "id": 2112,
+ "start": 707.196,
+ "end": 707.496,
+ "text": "built"
+ },
+ {
+ "id": 2113,
+ "start": 707.566,
+ "end": 707.646,
+ "text": "an"
+ },
+ {
+ "id": 2114,
+ "start": 707.646,
+ "end": 707.956,
+ "text": "initial"
+ },
+ {
+ "id": 2115,
+ "start": 708.3410000000001,
+ "end": 708.9659999999999,
+ "text": "prototype."
+ },
+ {
+ "id": 2116,
+ "start": 709.036,
+ "end": 709.976,
+ "text": "But"
+ },
+ {
+ "id": 2117,
+ "start": 709.976,
+ "end": 710.166,
+ "text": "it"
+ },
+ {
+ "id": 2118,
+ "start": 710.166,
+ "end": 710.446,
+ "text": "always"
+ },
+ {
+ "id": 2119,
+ "start": 710.446,
+ "end": 710.666,
+ "text": "somehow"
+ },
+ {
+ "id": 2120,
+ "start": 710.666,
+ "end": 711.146,
+ "text": "never"
+ },
+ {
+ "id": 2121,
+ "start": 711.146,
+ "end": 711.356,
+ "text": "ended"
+ },
+ {
+ "id": 2122,
+ "start": 711.356,
+ "end": 711.436,
+ "text": "up"
+ },
+ {
+ "id": 2123,
+ "start": 711.436,
+ "end": 711.676,
+ "text": "going"
+ },
+ {
+ "id": 2124,
+ "start": 711.676,
+ "end": 711.756,
+ "text": "to"
+ },
+ {
+ "id": 2125,
+ "start": 711.756,
+ "end": 712.176,
+ "text": "production"
+ },
+ {
+ "id": 2126,
+ "start": 712.176,
+ "end": 712.556,
+ "text": "because"
+ },
+ {
+ "id": 2127,
+ "start": 712.556,
+ "end": 712.636,
+ "text": "the"
+ },
+ {
+ "id": 2128,
+ "start": 712.636,
+ "end": 713.146,
+ "text": "design"
+ },
+ {
+ "id": 2129,
+ "start": 713.146,
+ "end": 713.426,
+ "text": "wasn’t"
+ },
+ {
+ "id": 2130,
+ "start": 713.426,
+ "end": 713.786,
+ "text": "quite"
+ },
+ {
+ "id": 2131,
+ "start": 713.786,
+ "end": 715.836,
+ "text": "there."
+ },
+ {
+ "id": 2132,
+ "start": 715.836,
+ "end": 716.116,
+ "text": "It"
+ },
+ {
+ "id": 2133,
+ "start": 716.116,
+ "end": 716.516,
+ "text": "often"
+ },
+ {
+ "id": 2134,
+ "start": 716.516,
+ "end": 717.026,
+ "text": "flunked"
+ },
+ {
+ "id": 2135,
+ "start": 716.8226666666667,
+ "end": 717.3059999999999,
+ "text": "the"
+ },
+ {
+ "id": 2136,
+ "start": 717.1293333333334,
+ "end": 717.5859999999999,
+ "text": "Zuck"
+ },
+ {
+ "id": 2137,
+ "start": 717.436,
+ "end": 717.866,
+ "text": "review"
+ },
+ {
+ "id": 2138,
+ "start": 717.856,
+ "end": 718.186,
+ "text": "before"
+ },
+ {
+ "id": 2139,
+ "start": 718.126,
+ "end": 718.5576666666667,
+ "text": "it"
+ },
+ {
+ "id": 2140,
+ "start": 718.396,
+ "end": 718.9293333333334,
+ "text": "went"
+ },
+ {
+ "id": 2141,
+ "start": 718.6659999999999,
+ "end": 719.301,
+ "text": "out"
+ },
+ {
+ "id": 2142,
+ "start": 718.936,
+ "end": 719.6726666666667,
+ "text": "to"
+ },
+ {
+ "id": 2143,
+ "start": 719.206,
+ "end": 720.0443333333334,
+ "text": "market."
+ },
+ {
+ "id": 2144,
+ "start": 719.476,
+ "end": 720.416,
+ "text": "And"
+ },
+ {
+ "id": 2145,
+ "start": 720.416,
+ "end": 720.586,
+ "text": "we"
+ },
+ {
+ "id": 2146,
+ "start": 720.586,
+ "end": 720.756,
+ "text": "weren’t"
+ },
+ {
+ "id": 2147,
+ "start": 720.756,
+ "end": 720.916,
+ "text": "able"
+ },
+ {
+ "id": 2148,
+ "start": 720.916,
+ "end": 721.006,
+ "text": "to"
+ },
+ {
+ "id": 2149,
+ "start": 721.006,
+ "end": 721.156,
+ "text": "kind"
+ },
+ {
+ "id": 2150,
+ "start": 721.156,
+ "end": 721.536,
+ "text": "of"
+ },
+ {
+ "id": 2151,
+ "start": 721.536,
+ "end": 721.986,
+ "text": "reach"
+ },
+ {
+ "id": 2152,
+ "start": 721.986,
+ "end": 722.176,
+ "text": "a"
+ },
+ {
+ "id": 2153,
+ "start": 722.176,
+ "end": 722.466,
+ "text": "final"
+ },
+ {
+ "id": 2154,
+ "start": 722.466,
+ "end": 722.796,
+ "text": "design"
+ },
+ {
+ "id": 2155,
+ "start": 722.796,
+ "end": 722.896,
+ "text": "that"
+ },
+ {
+ "id": 2156,
+ "start": 722.896,
+ "end": 723.026,
+ "text": "we"
+ },
+ {
+ "id": 2157,
+ "start": 723.026,
+ "end": 723.266,
+ "text": "felt"
+ },
+ {
+ "id": 2158,
+ "start": 723.266,
+ "end": 724.516,
+ "text": "like"
+ },
+ {
+ "id": 2159,
+ "start": 724.516,
+ "end": 724.746,
+ "text": "was"
+ },
+ {
+ "id": 2160,
+ "start": 724.746,
+ "end": 725.186,
+ "text": "cohesive"
+ },
+ {
+ "id": 2161,
+ "start": 725.186,
+ "end": 725.276,
+ "text": "with"
+ },
+ {
+ "id": 2162,
+ "start": 725.276,
+ "end": 725.346,
+ "text": "the"
+ },
+ {
+ "id": 2163,
+ "start": 725.346,
+ "end": 725.596,
+ "text": "broader"
+ },
+ {
+ "id": 2164,
+ "start": 725.596,
+ "end": 726.166,
+ "text": "product."
+ },
+ {
+ "id": 2165,
+ "start": 727.1010000000001,
+ "end": 727.531,
+ "text": "In"
+ },
+ {
+ "id": 2166,
+ "start": 728.606,
+ "end": 728.896,
+ "text": "late"
+ },
+ {
+ "id": 2167,
+ "start": 729.221,
+ "end": 729.4459999999999,
+ "text": "2008,"
+ },
+ {
+ "id": 2168,
+ "start": 729.836,
+ "end": 729.996,
+ "text": "I"
+ },
+ {
+ "id": 2169,
+ "start": 729.996,
+ "end": 730.236,
+ "text": "started"
+ },
+ {
+ "id": 2170,
+ "start": 730.236,
+ "end": 730.626,
+ "text": "working"
+ },
+ {
+ "id": 2171,
+ "start": 730.626,
+ "end": 731.246,
+ "text": "on"
+ },
+ {
+ "id": 2172,
+ "start": 731.246,
+ "end": 731.796,
+ "text": "what"
+ },
+ {
+ "id": 2173,
+ "start": 731.796,
+ "end": 731.966,
+ "text": "ended"
+ },
+ {
+ "id": 2174,
+ "start": 731.966,
+ "end": 732.036,
+ "text": "up"
+ },
+ {
+ "id": 2175,
+ "start": 732.036,
+ "end": 732.226,
+ "text": "being"
+ },
+ {
+ "id": 2176,
+ "start": 732.226,
+ "end": 732.266,
+ "text": "a"
+ },
+ {
+ "id": 2177,
+ "start": 732.266,
+ "end": 732.556,
+ "text": "major"
+ },
+ {
+ "id": 2178,
+ "start": 732.556,
+ "end": 732.916,
+ "text": "redesign"
+ },
+ {
+ "id": 2179,
+ "start": 732.916,
+ "end": 732.996,
+ "text": "of"
+ },
+ {
+ "id": 2180,
+ "start": 732.996,
+ "end": 733.206,
+ "text": "News"
+ },
+ {
+ "id": 2181,
+ "start": 733.206,
+ "end": 733.896,
+ "text": "Feed"
+ },
+ {
+ "id": 2182,
+ "start": 733.896,
+ "end": 734.096,
+ "text": "that"
+ },
+ {
+ "id": 2183,
+ "start": 734.096,
+ "end": 734.706,
+ "text": "introduced"
+ },
+ {
+ "id": 2184,
+ "start": 734.6859999999999,
+ "end": 735.1226666666666,
+ "text": "in-line"
+ },
+ {
+ "id": 2185,
+ "start": 735.2760000000001,
+ "end": 735.5393333333334,
+ "text": "commenting."
+ },
+ {
+ "id": 2186,
+ "start": 735.866,
+ "end": 735.956,
+ "text": "I"
+ },
+ {
+ "id": 2187,
+ "start": 735.956,
+ "end": 736.106,
+ "text": "think"
+ },
+ {
+ "id": 2188,
+ "start": 736.106,
+ "end": 736.306,
+ "text": "most"
+ },
+ {
+ "id": 2189,
+ "start": 736.306,
+ "end": 736.506,
+ "text": "people"
+ },
+ {
+ "id": 2190,
+ "start": 736.506,
+ "end": 736.846,
+ "text": "forget"
+ },
+ {
+ "id": 2191,
+ "start": 736.846,
+ "end": 737.456,
+ "text": "that"
+ },
+ {
+ "id": 2192,
+ "start": 737.126,
+ "end": 737.886,
+ "text": "commenting"
+ },
+ {
+ "id": 2193,
+ "start": 737.5260000000001,
+ "end": 738.001,
+ "text": "in"
+ },
+ {
+ "id": 2194,
+ "start": 737.926,
+ "end": 738.116,
+ "text": "News"
+ },
+ {
+ "id": 2195,
+ "start": 738.116,
+ "end": 738.286,
+ "text": "Feed"
+ },
+ {
+ "id": 2196,
+ "start": 738.286,
+ "end": 738.386,
+ "text": "was"
+ },
+ {
+ "id": 2197,
+ "start": 738.386,
+ "end": 738.546,
+ "text": "not"
+ },
+ {
+ "id": 2198,
+ "start": 738.546,
+ "end": 738.586,
+ "text": "a"
+ },
+ {
+ "id": 2199,
+ "start": 738.586,
+ "end": 738.836,
+ "text": "thing"
+ },
+ {
+ "id": 2200,
+ "start": 738.836,
+ "end": 739.146,
+ "text": "for"
+ },
+ {
+ "id": 2201,
+ "start": 739.146,
+ "end": 739.506,
+ "text": "several"
+ },
+ {
+ "id": 2202,
+ "start": 739.506,
+ "end": 740.246,
+ "text": "years"
+ },
+ {
+ "id": 2203,
+ "start": 740.246,
+ "end": 740.406,
+ "text": "of"
+ },
+ {
+ "id": 2204,
+ "start": 740.406,
+ "end": 740.626,
+ "text": "News"
+ },
+ {
+ "id": 2205,
+ "start": 740.626,
+ "end": 740.886,
+ "text": "Feed’s"
+ },
+ {
+ "id": 2206,
+ "start": 740.886,
+ "end": 741.916,
+ "text": "history."
+ },
+ {
+ "id": 2207,
+ "start": 741.916,
+ "end": 742.116,
+ "text": "But"
+ },
+ {
+ "id": 2208,
+ "start": 742.116,
+ "end": 742.216,
+ "text": "we"
+ },
+ {
+ "id": 2209,
+ "start": 742.216,
+ "end": 742.426,
+ "text": "wanted"
+ },
+ {
+ "id": 2210,
+ "start": 742.426,
+ "end": 742.506,
+ "text": "to"
+ },
+ {
+ "id": 2211,
+ "start": 742.506,
+ "end": 742.756,
+ "text": "make"
+ },
+ {
+ "id": 2212,
+ "start": 742.756,
+ "end": 743.026,
+ "text": "News"
+ },
+ {
+ "id": 2213,
+ "start": 743.026,
+ "end": 743.226,
+ "text": "Feed"
+ },
+ {
+ "id": 2214,
+ "start": 743.226,
+ "end": 743.316,
+ "text": "the"
+ },
+ {
+ "id": 2215,
+ "start": 743.316,
+ "end": 743.536,
+ "text": "actual"
+ },
+ {
+ "id": 2216,
+ "start": 743.536,
+ "end": 744.046,
+ "text": "conduit"
+ },
+ {
+ "id": 2217,
+ "start": 744.046,
+ "end": 744.306,
+ "text": "for"
+ },
+ {
+ "id": 2218,
+ "start": 744.306,
+ "end": 744.836,
+ "text": "interactions"
+ },
+ {
+ "id": 2219,
+ "start": 744.836,
+ "end": 744.956,
+ "text": "on"
+ },
+ {
+ "id": 2220,
+ "start": 744.956,
+ "end": 746.006,
+ "text": "Facebook"
+ },
+ {
+ "id": 2221,
+ "start": 746.006,
+ "end": 746.326,
+ "text": "where"
+ },
+ {
+ "id": 2222,
+ "start": 746.326,
+ "end": 746.426,
+ "text": "you"
+ },
+ {
+ "id": 2223,
+ "start": 746.426,
+ "end": 746.526,
+ "text": "can"
+ },
+ {
+ "id": 2224,
+ "start": 746.526,
+ "end": 746.786,
+ "text": "spend"
+ },
+ {
+ "id": 2225,
+ "start": 746.786,
+ "end": 746.906,
+ "text": "your"
+ },
+ {
+ "id": 2226,
+ "start": 746.906,
+ "end": 747.196,
+ "text": "whole"
+ },
+ {
+ "id": 2227,
+ "start": 747.196,
+ "end": 747.646,
+ "text": "time,"
+ },
+ {
+ "id": 2228,
+ "start": 747.646,
+ "end": 747.736,
+ "text": "your"
+ },
+ {
+ "id": 2229,
+ "start": 747.736,
+ "end": 747.876,
+ "text": "whole"
+ },
+ {
+ "id": 2230,
+ "start": 747.876,
+ "end": 748.216,
+ "text": "session,"
+ },
+ {
+ "id": 2231,
+ "start": 748.216,
+ "end": 748.316,
+ "text": "on"
+ },
+ {
+ "id": 2232,
+ "start": 748.316,
+ "end": 748.516,
+ "text": "News"
+ },
+ {
+ "id": 2233,
+ "start": 748.516,
+ "end": 748.956,
+ "text": "Feed"
+ },
+ {
+ "id": 2234,
+ "start": 748.956,
+ "end": 749.136,
+ "text": "and"
+ },
+ {
+ "id": 2235,
+ "start": 749.136,
+ "end": 749.236,
+ "text": "get"
+ },
+ {
+ "id": 2236,
+ "start": 749.236,
+ "end": 749.276,
+ "text": "a"
+ },
+ {
+ "id": 2237,
+ "start": 749.276,
+ "end": 749.646,
+ "text": "tremendous"
+ },
+ {
+ "id": 2238,
+ "start": 749.646,
+ "end": 749.846,
+ "text": "amount"
+ },
+ {
+ "id": 2239,
+ "start": 749.846,
+ "end": 749.906,
+ "text": "of"
+ },
+ {
+ "id": 2240,
+ "start": 749.906,
+ "end": 750.166,
+ "text": "value"
+ },
+ {
+ "id": 2241,
+ "start": 750.166,
+ "end": 750.296,
+ "text": "out"
+ },
+ {
+ "id": 2242,
+ "start": 750.296,
+ "end": 750.376,
+ "text": "of"
+ },
+ {
+ "id": 2243,
+ "start": 750.376,
+ "end": 750.506,
+ "text": "it"
+ },
+ {
+ "id": 2244,
+ "start": 750.491,
+ "end": 750.6610000000001,
+ "text": "and"
+ },
+ {
+ "id": 2245,
+ "start": 750.606,
+ "end": 750.816,
+ "text": "also"
+ },
+ {
+ "id": 2246,
+ "start": 750.816,
+ "end": 750.876,
+ "text": "be"
+ },
+ {
+ "id": 2247,
+ "start": 750.876,
+ "end": 750.996,
+ "text": "able"
+ },
+ {
+ "id": 2248,
+ "start": 750.996,
+ "end": 751.066,
+ "text": "to"
+ },
+ {
+ "id": 2249,
+ "start": 751.066,
+ "end": 751.466,
+ "text": "converse"
+ },
+ {
+ "id": 2250,
+ "start": 751.466,
+ "end": 751.596,
+ "text": "with"
+ },
+ {
+ "id": 2251,
+ "start": 751.5360000000001,
+ "end": 751.721,
+ "text": "the"
+ },
+ {
+ "id": 2252,
+ "start": 751.606,
+ "end": 751.846,
+ "text": "people"
+ },
+ {
+ "id": 2253,
+ "start": 751.846,
+ "end": 752.096,
+ "text": "around"
+ },
+ {
+ "id": 2254,
+ "start": 752.096,
+ "end": 754.356,
+ "text": "you."
+ },
+ {
+ "id": 2255,
+ "start": 754.356,
+ "end": 754.696,
+ "text": "And"
+ },
+ {
+ "id": 2256,
+ "start": 754.696,
+ "end": 754.836,
+ "text": "as"
+ },
+ {
+ "id": 2257,
+ "start": 754.836,
+ "end": 755.116,
+ "text": "part"
+ },
+ {
+ "id": 2258,
+ "start": 755.116,
+ "end": 755.236,
+ "text": "of"
+ },
+ {
+ "id": 2259,
+ "start": 755.236,
+ "end": 755.576,
+ "text": "that"
+ },
+ {
+ "id": 2260,
+ "start": 755.7410000000001,
+ "end": 756.011,
+ "text": "program,"
+ },
+ {
+ "id": 2261,
+ "start": 756.246,
+ "end": 756.446,
+ "text": "which"
+ },
+ {
+ "id": 2262,
+ "start": 756.446,
+ "end": 756.526,
+ "text": "we"
+ },
+ {
+ "id": 2263,
+ "start": 756.526,
+ "end": 756.746,
+ "text": "call"
+ },
+ {
+ "id": 2264,
+ "start": 756.746,
+ "end": 756.836,
+ "text": "the"
+ },
+ {
+ "id": 2265,
+ "start": 756.836,
+ "end": 757.286,
+ "text": "Universal"
+ },
+ {
+ "id": 2266,
+ "start": 757.286,
+ "end": 757.746,
+ "text": "Feedback"
+ },
+ {
+ "id": 2267,
+ "start": 758.3610000000003,
+ "end": 758.7260000000001,
+ "text": "Interface,"
+ },
+ {
+ "id": 2268,
+ "start": 759.436,
+ "end": 759.706,
+ "text": "we"
+ },
+ {
+ "id": 2269,
+ "start": 759.706,
+ "end": 759.826,
+ "text": "had"
+ },
+ {
+ "id": 2270,
+ "start": 759.826,
+ "end": 759.966,
+ "text": "sort"
+ },
+ {
+ "id": 2271,
+ "start": 759.966,
+ "end": 760.026,
+ "text": "of"
+ },
+ {
+ "id": 2272,
+ "start": 760.026,
+ "end": 760.166,
+ "text": "set"
+ },
+ {
+ "id": 2273,
+ "start": 760.166,
+ "end": 760.246,
+ "text": "the"
+ },
+ {
+ "id": 2274,
+ "start": 760.246,
+ "end": 760.616,
+ "text": "stage"
+ },
+ {
+ "id": 2275,
+ "start": 760.616,
+ "end": 761.556,
+ "text": "for"
+ },
+ {
+ "id": 2276,
+ "start": 761.556,
+ "end": 761.956,
+ "text": "finally"
+ },
+ {
+ "id": 2277,
+ "start": 761.956,
+ "end": 762.726,
+ "text": "releasing"
+ },
+ {
+ "id": 2278,
+ "start": 762.726,
+ "end": 762.836,
+ "text": "the"
+ },
+ {
+ "id": 2279,
+ "start": 762.836,
+ "end": 763.026,
+ "text": "Like"
+ },
+ {
+ "id": 2280,
+ "start": 763.026,
+ "end": 764.056,
+ "text": "button."
+ },
+ {
+ "id": 2281,
+ "start": 764.056,
+ "end": 764.206,
+ "text": "At"
+ },
+ {
+ "id": 2282,
+ "start": 764.206,
+ "end": 764.286,
+ "text": "the"
+ },
+ {
+ "id": 2283,
+ "start": 764.286,
+ "end": 764.566,
+ "text": "time,"
+ },
+ {
+ "id": 2284,
+ "start": 764.566,
+ "end": 764.706,
+ "text": "we"
+ },
+ {
+ "id": 2285,
+ "start": 764.706,
+ "end": 765.496,
+ "text": "were"
+ },
+ {
+ "id": 2286,
+ "start": 765.496,
+ "end": 765.636,
+ "text": "a"
+ },
+ {
+ "id": 2287,
+ "start": 765.636,
+ "end": 765.856,
+ "text": "little"
+ },
+ {
+ "id": 2288,
+ "start": 765.856,
+ "end": 765.996,
+ "text": "bit"
+ },
+ {
+ "id": 2289,
+ "start": 766.226,
+ "end": 766.5109999999999,
+ "text": "skeptical"
+ },
+ {
+ "id": 2290,
+ "start": 766.596,
+ "end": 767.026,
+ "text": "about"
+ },
+ {
+ "id": 2291,
+ "start": 766.8135,
+ "end": 767.1935,
+ "text": "the"
+ },
+ {
+ "id": 2292,
+ "start": 767.031,
+ "end": 767.361,
+ "text": "Like"
+ },
+ {
+ "id": 2293,
+ "start": 767.2484999999999,
+ "end": 767.5285,
+ "text": "button."
+ },
+ {
+ "id": 2294,
+ "start": 767.466,
+ "end": 767.696,
+ "text": "We"
+ },
+ {
+ "id": 2295,
+ "start": 767.696,
+ "end": 767.796,
+ "text": "were"
+ },
+ {
+ "id": 2296,
+ "start": 767.796,
+ "end": 770.106,
+ "text": "concerned"
+ },
+ {
+ "id": 2297,
+ "start": 770.106,
+ "end": 770.376,
+ "text": "that"
+ },
+ {
+ "id": 2298,
+ "start": 770.376,
+ "end": 770.496,
+ "text": "the"
+ },
+ {
+ "id": 2299,
+ "start": 770.496,
+ "end": 770.696,
+ "text": "Like"
+ },
+ {
+ "id": 2300,
+ "start": 770.696,
+ "end": 770.996,
+ "text": "button"
+ },
+ {
+ "id": 2301,
+ "start": 770.996,
+ "end": 771.156,
+ "text": "would"
+ },
+ {
+ "id": 2302,
+ "start": 771.8009999999999,
+ "end": 772.431,
+ "text": "cannibalize"
+ },
+ {
+ "id": 2303,
+ "start": 772.606,
+ "end": 773.706,
+ "text": "commenting,"
+ },
+ {
+ "id": 2304,
+ "start": 773.706,
+ "end": 773.886,
+ "text": "that"
+ },
+ {
+ "id": 2305,
+ "start": 773.886,
+ "end": 773.966,
+ "text": "it"
+ },
+ {
+ "id": 2306,
+ "start": 773.966,
+ "end": 774.096,
+ "text": "would"
+ },
+ {
+ "id": 2307,
+ "start": 774.096,
+ "end": 774.296,
+ "text": "start"
+ },
+ {
+ "id": 2308,
+ "start": 774.296,
+ "end": 774.396,
+ "text": "to"
+ },
+ {
+ "id": 2309,
+ "start": 774.581,
+ "end": 774.8909999999998,
+ "text": "erode"
+ },
+ {
+ "id": 2310,
+ "start": 774.866,
+ "end": 775.386,
+ "text": "engagement"
+ },
+ {
+ "id": 2311,
+ "start": 775.386,
+ "end": 775.606,
+ "text": "because"
+ },
+ {
+ "id": 2312,
+ "start": 775.606,
+ "end": 775.836,
+ "text": "people"
+ },
+ {
+ "id": 2313,
+ "start": 775.7693333333334,
+ "end": 776.0659999999999,
+ "text": "would"
+ },
+ {
+ "id": 2314,
+ "start": 775.9326666666666,
+ "end": 776.2959999999999,
+ "text": "just"
+ },
+ {
+ "id": 2315,
+ "start": 776.096,
+ "end": 776.526,
+ "text": "resort"
+ },
+ {
+ "id": 2316,
+ "start": 776.396,
+ "end": 776.801,
+ "text": "to"
+ },
+ {
+ "id": 2317,
+ "start": 776.696,
+ "end": 777.076,
+ "text": "clicking"
+ },
+ {
+ "id": 2318,
+ "start": 776.886,
+ "end": 777.1809999999999,
+ "text": "a"
+ },
+ {
+ "id": 2319,
+ "start": 777.076,
+ "end": 777.286,
+ "text": "Like"
+ },
+ {
+ "id": 2320,
+ "start": 777.286,
+ "end": 777.816,
+ "text": "button,"
+ },
+ {
+ "id": 2321,
+ "start": 777.816,
+ "end": 778.136,
+ "text": "not"
+ },
+ {
+ "id": 2322,
+ "start": 778.136,
+ "end": 778.536,
+ "text": "talking"
+ },
+ {
+ "id": 2323,
+ "start": 778.536,
+ "end": 778.836,
+ "text": "to"
+ },
+ {
+ "id": 2324,
+ "start": 778.9409999999999,
+ "end": 779.241,
+ "text": "the"
+ },
+ {
+ "id": 2325,
+ "start": 779.346,
+ "end": 779.646,
+ "text": "people"
+ },
+ {
+ "id": 2326,
+ "start": 779.646,
+ "end": 779.706,
+ "text": "in"
+ },
+ {
+ "id": 2327,
+ "start": 779.706,
+ "end": 779.826,
+ "text": "their"
+ },
+ {
+ "id": 2328,
+ "start": 779.826,
+ "end": 781.616,
+ "text": "community."
+ },
+ {
+ "id": 2329,
+ "start": 781.616,
+ "end": 781.776,
+ "text": "And"
+ },
+ {
+ "id": 2330,
+ "start": 781.776,
+ "end": 781.886,
+ "text": "as"
+ },
+ {
+ "id": 2331,
+ "start": 781.886,
+ "end": 781.956,
+ "text": "it"
+ },
+ {
+ "id": 2332,
+ "start": 781.956,
+ "end": 782.136,
+ "text": "turned"
+ },
+ {
+ "id": 2333,
+ "start": 782.136,
+ "end": 782.266,
+ "text": "out,"
+ },
+ {
+ "id": 2334,
+ "start": 782.266,
+ "end": 782.426,
+ "text": "our"
+ },
+ {
+ "id": 2335,
+ "start": 782.426,
+ "end": 782.786,
+ "text": "intuition"
+ },
+ {
+ "id": 2336,
+ "start": 782.786,
+ "end": 782.936,
+ "text": "was"
+ },
+ {
+ "id": 2337,
+ "start": 782.936,
+ "end": 783.116,
+ "text": "just"
+ },
+ {
+ "id": 2338,
+ "start": 783.116,
+ "end": 783.256,
+ "text": "dead"
+ },
+ {
+ "id": 2339,
+ "start": 783.256,
+ "end": 784.056,
+ "text": "wrong."
+ },
+ {
+ "id": 2340,
+ "start": 784.056,
+ "end": 784.286,
+ "text": "We"
+ },
+ {
+ "id": 2341,
+ "start": 784.286,
+ "end": 784.636,
+ "text": "ran"
+ },
+ {
+ "id": 2342,
+ "start": 784.636,
+ "end": 784.976,
+ "text": "these"
+ },
+ {
+ "id": 2343,
+ "start": 784.976,
+ "end": 785.696,
+ "text": "experiments."
+ },
+ {
+ "id": 2344,
+ "start": 785.696,
+ "end": 785.786,
+ "text": "We"
+ },
+ {
+ "id": 2345,
+ "start": 785.786,
+ "end": 785.976,
+ "text": "kind"
+ },
+ {
+ "id": 2346,
+ "start": 785.976,
+ "end": 786.516,
+ "text": "of"
+ },
+ {
+ "id": 2347,
+ "start": 786.516,
+ "end": 786.936,
+ "text": "launched"
+ },
+ {
+ "id": 2348,
+ "start": 786.936,
+ "end": 786.996,
+ "text": "the"
+ },
+ {
+ "id": 2349,
+ "start": 786.996,
+ "end": 787.206,
+ "text": "Like"
+ },
+ {
+ "id": 2350,
+ "start": 787.206,
+ "end": 787.516,
+ "text": "button"
+ },
+ {
+ "id": 2351,
+ "start": 787.516,
+ "end": 787.656,
+ "text": "in"
+ },
+ {
+ "id": 2352,
+ "start": 787.656,
+ "end": 787.826,
+ "text": "these"
+ },
+ {
+ "id": 2353,
+ "start": 787.826,
+ "end": 788.526,
+ "text": "controlled,"
+ },
+ {
+ "id": 2354,
+ "start": 788.5809999999999,
+ "end": 789.1159999999999,
+ "text": "self-contained"
+ },
+ {
+ "id": 2355,
+ "start": 789.336,
+ "end": 789.706,
+ "text": "networks"
+ },
+ {
+ "id": 2356,
+ "start": 789.706,
+ "end": 789.796,
+ "text": "to"
+ },
+ {
+ "id": 2357,
+ "start": 789.796,
+ "end": 790.046,
+ "text": "see"
+ },
+ {
+ "id": 2358,
+ "start": 790.046,
+ "end": 790.196,
+ "text": "what"
+ },
+ {
+ "id": 2359,
+ "start": 790.196,
+ "end": 790.296,
+ "text": "the"
+ },
+ {
+ "id": 2360,
+ "start": 790.296,
+ "end": 790.626,
+ "text": "usage"
+ },
+ {
+ "id": 2361,
+ "start": 790.5060000000001,
+ "end": 790.751,
+ "text": "would"
+ },
+ {
+ "id": 2362,
+ "start": 790.716,
+ "end": 790.876,
+ "text": "look"
+ },
+ {
+ "id": 2363,
+ "start": 790.876,
+ "end": 791.276,
+ "text": "like"
+ },
+ {
+ "id": 2364,
+ "start": 791.276,
+ "end": 791.706,
+ "text": "relative"
+ },
+ {
+ "id": 2365,
+ "start": 791.706,
+ "end": 791.796,
+ "text": "to"
+ },
+ {
+ "id": 2366,
+ "start": 791.796,
+ "end": 791.876,
+ "text": "the"
+ },
+ {
+ "id": 2367,
+ "start": 791.876,
+ "end": 792.136,
+ "text": "broader"
+ },
+ {
+ "id": 2368,
+ "start": 792.136,
+ "end": 792.396,
+ "text": "user"
+ },
+ {
+ "id": 2369,
+ "start": 792.396,
+ "end": 793.256,
+ "text": "base."
+ },
+ {
+ "id": 2370,
+ "start": 793.256,
+ "end": 793.436,
+ "text": "And"
+ },
+ {
+ "id": 2371,
+ "start": 793.436,
+ "end": 793.526,
+ "text": "what"
+ },
+ {
+ "id": 2372,
+ "start": 793.526,
+ "end": 793.646,
+ "text": "we"
+ },
+ {
+ "id": 2373,
+ "start": 793.646,
+ "end": 793.946,
+ "text": "found"
+ },
+ {
+ "id": 2374,
+ "start": 793.8309999999999,
+ "end": 794.0310000000001,
+ "text": "was"
+ },
+ {
+ "id": 2375,
+ "start": 794.016,
+ "end": 794.116,
+ "text": "that"
+ },
+ {
+ "id": 2376,
+ "start": 794.116,
+ "end": 794.206,
+ "text": "the"
+ },
+ {
+ "id": 2377,
+ "start": 794.206,
+ "end": 794.386,
+ "text": "Like"
+ },
+ {
+ "id": 2378,
+ "start": 794.386,
+ "end": 794.626,
+ "text": "button"
+ },
+ {
+ "id": 2379,
+ "start": 794.626,
+ "end": 794.936,
+ "text": "acted"
+ },
+ {
+ "id": 2380,
+ "start": 794.936,
+ "end": 795.066,
+ "text": "as"
+ },
+ {
+ "id": 2381,
+ "start": 795.066,
+ "end": 795.126,
+ "text": "a"
+ },
+ {
+ "id": 2382,
+ "start": 795.126,
+ "end": 795.466,
+ "text": "social"
+ },
+ {
+ "id": 2383,
+ "start": 795.466,
+ "end": 796.356,
+ "text": "lubricant."
+ },
+ {
+ "id": 2384,
+ "start": 796.356,
+ "end": 796.566,
+ "text": "It"
+ },
+ {
+ "id": 2385,
+ "start": 796.566,
+ "end": 797.046,
+ "text": "actually"
+ },
+ {
+ "id": 2386,
+ "start": 797.046,
+ "end": 797.506,
+ "text": "increased"
+ },
+ {
+ "id": 2387,
+ "start": 797.506,
+ "end": 797.566,
+ "text": "the"
+ },
+ {
+ "id": 2388,
+ "start": 797.566,
+ "end": 797.966,
+ "text": "likelihood"
+ },
+ {
+ "id": 2389,
+ "start": 797.966,
+ "end": 798.046,
+ "text": "of"
+ },
+ {
+ "id": 2390,
+ "start": 798.046,
+ "end": 798.106,
+ "text": "a"
+ },
+ {
+ "id": 2391,
+ "start": 798.106,
+ "end": 798.926,
+ "text": "comment"
+ },
+ {
+ "id": 2392,
+ "start": 798.926,
+ "end": 799.106,
+ "text": "if"
+ },
+ {
+ "id": 2393,
+ "start": 799.106,
+ "end": 799.216,
+ "text": "there"
+ },
+ {
+ "id": 2394,
+ "start": 799.216,
+ "end": 799.326,
+ "text": "were"
+ },
+ {
+ "id": 2395,
+ "start": 799.326,
+ "end": 799.596,
+ "text": "Likes"
+ },
+ {
+ "id": 2396,
+ "start": 799.596,
+ "end": 799.686,
+ "text": "on"
+ },
+ {
+ "id": 2397,
+ "start": 799.686,
+ "end": 799.766,
+ "text": "a"
+ },
+ {
+ "id": 2398,
+ "start": 799.766,
+ "end": 800.116,
+ "text": "particular"
+ },
+ {
+ "id": 2399,
+ "start": 800.381,
+ "end": 800.646,
+ "text": "post."
+ },
+ {
+ "id": 2400,
+ "start": 800.996,
+ "end": 801.176,
+ "text": "And"
+ },
+ {
+ "id": 2401,
+ "start": 801.176,
+ "end": 801.276,
+ "text": "of"
+ },
+ {
+ "id": 2402,
+ "start": 801.276,
+ "end": 801.546,
+ "text": "course,"
+ },
+ {
+ "id": 2403,
+ "start": 801.546,
+ "end": 801.606,
+ "text": "it"
+ },
+ {
+ "id": 2404,
+ "start": 801.606,
+ "end": 801.736,
+ "text": "was"
+ },
+ {
+ "id": 2405,
+ "start": 801.736,
+ "end": 802.096,
+ "text": "also"
+ },
+ {
+ "id": 2406,
+ "start": 802.096,
+ "end": 802.546,
+ "text": "driving"
+ },
+ {
+ "id": 2407,
+ "start": 802.546,
+ "end": 802.746,
+ "text": "this"
+ },
+ {
+ "id": 2408,
+ "start": 802.746,
+ "end": 803.656,
+ "text": "flywheel"
+ },
+ {
+ "id": 2409,
+ "start": 803.656,
+ "end": 803.796,
+ "text": "of"
+ },
+ {
+ "id": 2410,
+ "start": 803.796,
+ "end": 804.596,
+ "text": "engagement"
+ },
+ {
+ "id": 2411,
+ "start": 804.596,
+ "end": 804.756,
+ "text": "that"
+ },
+ {
+ "id": 2412,
+ "start": 804.756,
+ "end": 805.016,
+ "text": "people"
+ },
+ {
+ "id": 2413,
+ "start": 805.016,
+ "end": 805.246,
+ "text": "felt"
+ },
+ {
+ "id": 2414,
+ "start": 805.246,
+ "end": 805.376,
+ "text": "like"
+ },
+ {
+ "id": 2415,
+ "start": 805.376,
+ "end": 805.446,
+ "text": "they"
+ },
+ {
+ "id": 2416,
+ "start": 805.446,
+ "end": 805.556,
+ "text": "were"
+ },
+ {
+ "id": 2417,
+ "start": 805.556,
+ "end": 805.896,
+ "text": "heard"
+ },
+ {
+ "id": 2418,
+ "start": 805.896,
+ "end": 806.016,
+ "text": "on"
+ },
+ {
+ "id": 2419,
+ "start": 806.016,
+ "end": 806.096,
+ "text": "the"
+ },
+ {
+ "id": 2420,
+ "start": 806.096,
+ "end": 806.806,
+ "text": "platform"
+ },
+ {
+ "id": 2421,
+ "start": 806.806,
+ "end": 807.216,
+ "text": "whenever"
+ },
+ {
+ "id": 2422,
+ "start": 807.216,
+ "end": 807.346,
+ "text": "they"
+ },
+ {
+ "id": 2423,
+ "start": 807.346,
+ "end": 807.656,
+ "text": "shared"
+ },
+ {
+ "id": 2424,
+ "start": 807.656,
+ "end": 808.506,
+ "text": "something."
+ },
+ {
+ "id": 2425,
+ "start": 808.506,
+ "end": 808.706,
+ "text": "And"
+ },
+ {
+ "id": 2426,
+ "start": 808.706,
+ "end": 808.866,
+ "text": "so"
+ },
+ {
+ "id": 2427,
+ "start": 808.866,
+ "end": 808.986,
+ "text": "what"
+ },
+ {
+ "id": 2428,
+ "start": 808.986,
+ "end": 809.116,
+ "text": "we"
+ },
+ {
+ "id": 2429,
+ "start": 809.116,
+ "end": 809.386,
+ "text": "found"
+ },
+ {
+ "id": 2430,
+ "start": 809.386,
+ "end": 809.496,
+ "text": "was"
+ },
+ {
+ "id": 2431,
+ "start": 809.496,
+ "end": 809.696,
+ "text": "that"
+ },
+ {
+ "id": 2432,
+ "start": 809.696,
+ "end": 809.836,
+ "text": "we"
+ },
+ {
+ "id": 2433,
+ "start": 809.836,
+ "end": 810.086,
+ "text": "struck"
+ },
+ {
+ "id": 2434,
+ "start": 810.086,
+ "end": 810.146,
+ "text": "a"
+ },
+ {
+ "id": 2435,
+ "start": 810.281,
+ "end": 810.356,
+ "text": "chord"
+ },
+ {
+ "id": 2436,
+ "start": 810.476,
+ "end": 810.566,
+ "text": "of"
+ },
+ {
+ "id": 2437,
+ "start": 810.566,
+ "end": 810.996,
+ "text": "meaning"
+ },
+ {
+ "id": 2438,
+ "start": 810.996,
+ "end": 811.956,
+ "text": "that"
+ },
+ {
+ "id": 2439,
+ "start": 811.956,
+ "end": 812.076,
+ "text": "I"
+ },
+ {
+ "id": 2440,
+ "start": 812.076,
+ "end": 812.206,
+ "text": "don’t"
+ },
+ {
+ "id": 2441,
+ "start": 812.206,
+ "end": 812.336,
+ "text": "think"
+ },
+ {
+ "id": 2442,
+ "start": 812.336,
+ "end": 812.456,
+ "text": "any"
+ },
+ {
+ "id": 2443,
+ "start": 812.456,
+ "end": 812.526,
+ "text": "of"
+ },
+ {
+ "id": 2444,
+ "start": 812.526,
+ "end": 812.686,
+ "text": "us"
+ },
+ {
+ "id": 2445,
+ "start": 812.686,
+ "end": 812.916,
+ "text": "really"
+ },
+ {
+ "id": 2446,
+ "start": 812.916,
+ "end": 813.096,
+ "text": "had"
+ },
+ {
+ "id": 2447,
+ "start": 813.096,
+ "end": 813.456,
+ "text": "fully"
+ },
+ {
+ "id": 2448,
+ "start": 813.701,
+ "end": 814.006,
+ "text": "internalized"
+ },
+ {
+ "id": 2449,
+ "start": 814.306,
+ "end": 814.556,
+ "text": "would"
+ },
+ {
+ "id": 2450,
+ "start": 814.556,
+ "end": 814.686,
+ "text": "be"
+ },
+ {
+ "id": 2451,
+ "start": 814.686,
+ "end": 814.776,
+ "text": "the"
+ },
+ {
+ "id": 2452,
+ "start": 814.776,
+ "end": 815.726,
+ "text": "case."
+ },
+ {
+ "id": 2453,
+ "start": 815.726,
+ "end": 815.776,
+ "text": "I"
+ },
+ {
+ "id": 2454,
+ "start": 815.776,
+ "end": 815.896,
+ "text": "mean,"
+ },
+ {
+ "id": 2455,
+ "start": 815.896,
+ "end": 815.976,
+ "text": "the"
+ },
+ {
+ "id": 2456,
+ "start": 815.976,
+ "end": 816.136,
+ "text": "Like"
+ },
+ {
+ "id": 2457,
+ "start": 816.136,
+ "end": 816.326,
+ "text": "button"
+ },
+ {
+ "id": 2458,
+ "start": 816.326,
+ "end": 816.446,
+ "text": "was"
+ },
+ {
+ "id": 2459,
+ "start": 816.446,
+ "end": 816.636,
+ "text": "one"
+ },
+ {
+ "id": 2460,
+ "start": 816.636,
+ "end": 816.706,
+ "text": "of"
+ },
+ {
+ "id": 2461,
+ "start": 816.706,
+ "end": 816.766,
+ "text": "a"
+ },
+ {
+ "id": 2462,
+ "start": 816.766,
+ "end": 817.196,
+ "text": "thousand"
+ },
+ {
+ "id": 2463,
+ "start": 817.196,
+ "end": 817.436,
+ "text": "things"
+ },
+ {
+ "id": 2464,
+ "start": 817.436,
+ "end": 817.536,
+ "text": "that"
+ },
+ {
+ "id": 2465,
+ "start": 817.536,
+ "end": 817.576,
+ "text": "I"
+ },
+ {
+ "id": 2466,
+ "start": 817.576,
+ "end": 817.806,
+ "text": "worked"
+ },
+ {
+ "id": 2467,
+ "start": 817.806,
+ "end": 818.026,
+ "text": "on"
+ },
+ {
+ "id": 2468,
+ "start": 818.1393333333334,
+ "end": 818.3526666666667,
+ "text": "at"
+ },
+ {
+ "id": 2469,
+ "start": 818.4726666666668,
+ "end": 818.6793333333334,
+ "text": "Facebook."
+ },
+ {
+ "id": 2470,
+ "start": 818.806,
+ "end": 819.006,
+ "text": "But"
+ },
+ {
+ "id": 2471,
+ "start": 819.006,
+ "end": 819.066,
+ "text": "it"
+ },
+ {
+ "id": 2472,
+ "start": 819.066,
+ "end": 819.386,
+ "text": "somehow"
+ },
+ {
+ "id": 2473,
+ "start": 819.386,
+ "end": 819.616,
+ "text": "ended"
+ },
+ {
+ "id": 2474,
+ "start": 819.616,
+ "end": 819.726,
+ "text": "up"
+ },
+ {
+ "id": 2475,
+ "start": 819.726,
+ "end": 820.046,
+ "text": "being"
+ },
+ {
+ "id": 2476,
+ "start": 820.046,
+ "end": 820.266,
+ "text": "this"
+ },
+ {
+ "id": 2477,
+ "start": 820.266,
+ "end": 820.766,
+ "text": "cultural"
+ },
+ {
+ "id": 2478,
+ "start": 820.766,
+ "end": 821.576,
+ "text": "staple"
+ },
+ {
+ "id": 2479,
+ "start": 821.576,
+ "end": 821.966,
+ "text": "and"
+ },
+ {
+ "id": 2480,
+ "start": 821.966,
+ "end": 822.086,
+ "text": "it"
+ },
+ {
+ "id": 2481,
+ "start": 822.086,
+ "end": 822.426,
+ "text": "became"
+ },
+ {
+ "id": 2482,
+ "start": 822.426,
+ "end": 822.576,
+ "text": "like"
+ },
+ {
+ "id": 2483,
+ "start": 822.576,
+ "end": 823.116,
+ "text": "a"
+ },
+ {
+ "id": 2484,
+ "start": 823.116,
+ "end": 823.676,
+ "text": "driving"
+ },
+ {
+ "id": 2485,
+ "start": 823.676,
+ "end": 824.116,
+ "text": "force"
+ },
+ {
+ "id": 2486,
+ "start": 824.116,
+ "end": 824.496,
+ "text": "for"
+ },
+ {
+ "id": 2487,
+ "start": 824.496,
+ "end": 824.606,
+ "text": "the"
+ },
+ {
+ "id": 2488,
+ "start": 824.606,
+ "end": 825.426,
+ "text": "product."
+ },
+ {
+ "id": 2489,
+ "start": 825.426,
+ "end": 825.866,
+ "text": "Was"
+ },
+ {
+ "id": 2490,
+ "start": 825.866,
+ "end": 825.996,
+ "text": "it"
+ },
+ {
+ "id": 2491,
+ "start": 825.996,
+ "end": 826.366,
+ "text": "something"
+ },
+ {
+ "id": 2492,
+ "start": 826.366,
+ "end": 826.516,
+ "text": "that"
+ },
+ {
+ "id": 2493,
+ "start": 826.516,
+ "end": 826.716,
+ "text": "you"
+ },
+ {
+ "id": 2494,
+ "start": 826.716,
+ "end": 826.886,
+ "text": "all"
+ },
+ {
+ "id": 2495,
+ "start": 826.886,
+ "end": 827.436,
+ "text": "considered"
+ },
+ {
+ "id": 2496,
+ "start": 827.436,
+ "end": 827.536,
+ "text": "at"
+ },
+ {
+ "id": 2497,
+ "start": 827.536,
+ "end": 827.626,
+ "text": "the"
+ },
+ {
+ "id": 2498,
+ "start": 827.626,
+ "end": 828.166,
+ "text": "time"
+ },
+ {
+ "id": 2499,
+ "start": 828.3910000000001,
+ "end": 828.821,
+ "text": "–"
+ },
+ {
+ "id": 2500,
+ "start": 829.156,
+ "end": 829.476,
+ "text": "there’s"
+ },
+ {
+ "id": 2501,
+ "start": 829.476,
+ "end": 829.636,
+ "text": "been"
+ },
+ {
+ "id": 2502,
+ "start": 829.636,
+ "end": 829.856,
+ "text": "much"
+ },
+ {
+ "id": 2503,
+ "start": 829.856,
+ "end": 830.036,
+ "text": "more"
+ },
+ {
+ "id": 2504,
+ "start": 830.036,
+ "end": 830.396,
+ "text": "recent"
+ },
+ {
+ "id": 2505,
+ "start": 830.396,
+ "end": 831.156,
+ "text": "criticism"
+ },
+ {
+ "id": 2506,
+ "start": 831.156,
+ "end": 831.606,
+ "text": "of"
+ },
+ {
+ "id": 2507,
+ "start": 831.606,
+ "end": 832.066,
+ "text": "things"
+ },
+ {
+ "id": 2508,
+ "start": 832.066,
+ "end": 832.256,
+ "text": "like"
+ },
+ {
+ "id": 2509,
+ "start": 832.256,
+ "end": 832.426,
+ "text": "the"
+ },
+ {
+ "id": 2510,
+ "start": 832.426,
+ "end": 832.726,
+ "text": "Like"
+ },
+ {
+ "id": 2511,
+ "start": 832.726,
+ "end": 833.096,
+ "text": "button"
+ },
+ {
+ "id": 2512,
+ "start": 833.096,
+ "end": 833.546,
+ "text": "and"
+ },
+ {
+ "id": 2513,
+ "start": 833.546,
+ "end": 833.666,
+ "text": "the"
+ },
+ {
+ "id": 2514,
+ "start": 833.666,
+ "end": 833.836,
+ "text": "sort"
+ },
+ {
+ "id": 2515,
+ "start": 833.836,
+ "end": 833.926,
+ "text": "of"
+ },
+ {
+ "id": 2516,
+ "start": 833.926,
+ "end": 834.476,
+ "text": "addictive"
+ },
+ {
+ "id": 2517,
+ "start": 834.476,
+ "end": 835.246,
+ "text": "nature"
+ },
+ {
+ "id": 2518,
+ "start": 835.246,
+ "end": 836.296,
+ "text": "of"
+ },
+ {
+ "id": 2519,
+ "start": 836.296,
+ "end": 836.716,
+ "text": "social"
+ },
+ {
+ "id": 2520,
+ "start": 836.716,
+ "end": 837.126,
+ "text": "media"
+ },
+ {
+ "id": 2521,
+ "start": 837.126,
+ "end": 837.516,
+ "text": "and"
+ },
+ {
+ "id": 2522,
+ "start": 837.516,
+ "end": 838.066,
+ "text": "Facebook"
+ },
+ {
+ "id": 2523,
+ "start": 838.066,
+ "end": 838.156,
+ "text": "in"
+ },
+ {
+ "id": 2524,
+ "start": 838.156,
+ "end": 838.726,
+ "text": "particular,"
+ },
+ {
+ "id": 2525,
+ "start": 838.441,
+ "end": 838.851,
+ "text": "and"
+ },
+ {
+ "id": 2526,
+ "start": 838.726,
+ "end": 838.976,
+ "text": "that"
+ },
+ {
+ "id": 2527,
+ "start": 838.976,
+ "end": 839.436,
+ "text": "the"
+ },
+ {
+ "id": 2528,
+ "start": 839.436,
+ "end": 839.836,
+ "text": "Like"
+ },
+ {
+ "id": 2529,
+ "start": 839.836,
+ "end": 840.176,
+ "text": "button"
+ },
+ {
+ "id": 2530,
+ "start": 840.176,
+ "end": 841.376,
+ "text": "is"
+ },
+ {
+ "id": 2531,
+ "start": 841.376,
+ "end": 841.436,
+ "text": "a"
+ },
+ {
+ "id": 2532,
+ "start": 841.436,
+ "end": 842.396,
+ "text": "dopamine"
+ },
+ {
+ "id": 2533,
+ "start": 842.396,
+ "end": 843.166,
+ "text": "release"
+ },
+ {
+ "id": 2534,
+ "start": 843.166,
+ "end": 843.606,
+ "text": "every"
+ },
+ {
+ "id": 2535,
+ "start": 843.606,
+ "end": 843.916,
+ "text": "time"
+ },
+ {
+ "id": 2536,
+ "start": 843.916,
+ "end": 844.016,
+ "text": "you"
+ },
+ {
+ "id": 2537,
+ "start": 844.016,
+ "end": 844.276,
+ "text": "click"
+ },
+ {
+ "id": 2538,
+ "start": 844.276,
+ "end": 844.426,
+ "text": "on"
+ },
+ {
+ "id": 2539,
+ "start": 844.426,
+ "end": 844.796,
+ "text": "something"
+ },
+ {
+ "id": 2540,
+ "start": 844.796,
+ "end": 844.916,
+ "text": "or"
+ },
+ {
+ "id": 2541,
+ "start": 844.916,
+ "end": 845.106,
+ "text": "every"
+ },
+ {
+ "id": 2542,
+ "start": 845.106,
+ "end": 845.346,
+ "text": "time"
+ },
+ {
+ "id": 2543,
+ "start": 845.346,
+ "end": 845.436,
+ "text": "you"
+ },
+ {
+ "id": 2544,
+ "start": 845.436,
+ "end": 845.576,
+ "text": "get"
+ },
+ {
+ "id": 2545,
+ "start": 845.576,
+ "end": 845.636,
+ "text": "a"
+ },
+ {
+ "id": 2546,
+ "start": 845.8645,
+ "end": 846.0895,
+ "text": "Like."
+ },
+ {
+ "id": 2547,
+ "start": 846.153,
+ "end": 846.543,
+ "text": "Were"
+ },
+ {
+ "id": 2548,
+ "start": 846.543,
+ "end": 846.663,
+ "text": "you"
+ },
+ {
+ "id": 2549,
+ "start": 846.663,
+ "end": 846.963,
+ "text": "guys"
+ },
+ {
+ "id": 2550,
+ "start": 846.963,
+ "end": 847.303,
+ "text": "thinking"
+ },
+ {
+ "id": 2551,
+ "start": 847.303,
+ "end": 847.393,
+ "text": "at"
+ },
+ {
+ "id": 2552,
+ "start": 847.393,
+ "end": 847.483,
+ "text": "the"
+ },
+ {
+ "id": 2553,
+ "start": 847.483,
+ "end": 847.853,
+ "text": "time"
+ },
+ {
+ "id": 2554,
+ "start": 847.853,
+ "end": 848.143,
+ "text": "about"
+ },
+ {
+ "id": 2555,
+ "start": 848.143,
+ "end": 848.323,
+ "text": "how"
+ },
+ {
+ "id": 2556,
+ "start": 848.323,
+ "end": 848.433,
+ "text": "do"
+ },
+ {
+ "id": 2557,
+ "start": 848.433,
+ "end": 848.793,
+ "text": "we"
+ },
+ {
+ "id": 2558,
+ "start": 848.793,
+ "end": 848.993,
+ "text": "kind"
+ },
+ {
+ "id": 2559,
+ "start": 848.993,
+ "end": 849.073,
+ "text": "of"
+ },
+ {
+ "id": 2560,
+ "start": 849.073,
+ "end": 849.453,
+ "text": "addict"
+ },
+ {
+ "id": 2561,
+ "start": 849.443,
+ "end": 849.923,
+ "text": "people?"
+ },
+ {
+ "id": 2562,
+ "start": 850.5379999999998,
+ "end": 850.8330000000003,
+ "text": "No."
+ },
+ {
+ "id": 2563,
+ "start": 851.633,
+ "end": 851.743,
+ "text": "There"
+ },
+ {
+ "id": 2564,
+ "start": 851.743,
+ "end": 851.873,
+ "text": "was"
+ },
+ {
+ "id": 2565,
+ "start": 851.873,
+ "end": 852.263,
+ "text": "no"
+ },
+ {
+ "id": 2566,
+ "start": 852.263,
+ "end": 852.983,
+ "text": "addiction"
+ },
+ {
+ "id": 2567,
+ "start": 852.983,
+ "end": 853.413,
+ "text": "metric"
+ },
+ {
+ "id": 2568,
+ "start": 853.413,
+ "end": 853.493,
+ "text": "or"
+ },
+ {
+ "id": 2569,
+ "start": 853.493,
+ "end": 853.913,
+ "text": "anything"
+ },
+ {
+ "id": 2570,
+ "start": 853.913,
+ "end": 854.043,
+ "text": "to"
+ },
+ {
+ "id": 2571,
+ "start": 854.043,
+ "end": 854.203,
+ "text": "that"
+ },
+ {
+ "id": 2572,
+ "start": 854.433,
+ "end": 854.593,
+ "text": "extent."
+ },
+ {
+ "id": 2573,
+ "start": 854.823,
+ "end": 854.983,
+ "text": "But"
+ },
+ {
+ "id": 2574,
+ "start": 854.983,
+ "end": 855.143,
+ "text": "was"
+ },
+ {
+ "id": 2575,
+ "start": 855.143,
+ "end": 855.823,
+ "text": "engagement"
+ },
+ {
+ "id": 2576,
+ "start": 855.823,
+ "end": 856.273,
+ "text": "addiction"
+ },
+ {
+ "id": 2577,
+ "start": 856.273,
+ "end": 856.373,
+ "text": "to"
+ },
+ {
+ "id": 2578,
+ "start": 856.373,
+ "end": 856.573,
+ "text": "some"
+ },
+ {
+ "id": 2579,
+ "start": 856.8196666666668,
+ "end": 856.9663333333333,
+ "text": "degree?"
+ },
+ {
+ "id": 2580,
+ "start": 857.2663333333333,
+ "end": 857.3596666666666,
+ "text": "No."
+ },
+ {
+ "id": 2581,
+ "start": 857.713,
+ "end": 857.753,
+ "text": "I"
+ },
+ {
+ "id": 2582,
+ "start": 857.753,
+ "end": 858.033,
+ "text": "mean,"
+ },
+ {
+ "id": 2583,
+ "start": 858.1930000000001,
+ "end": 858.388,
+ "text": "again,"
+ },
+ {
+ "id": 2584,
+ "start": 858.633,
+ "end": 858.743,
+ "text": "it"
+ },
+ {
+ "id": 2585,
+ "start": 858.743,
+ "end": 859.143,
+ "text": "presumes"
+ },
+ {
+ "id": 2586,
+ "start": 859.143,
+ "end": 859.263,
+ "text": "that"
+ },
+ {
+ "id": 2587,
+ "start": 859.263,
+ "end": 859.553,
+ "text": "people"
+ },
+ {
+ "id": 2588,
+ "start": 859.553,
+ "end": 859.723,
+ "text": "are"
+ },
+ {
+ "id": 2589,
+ "start": 859.723,
+ "end": 860.393,
+ "text": "finding"
+ },
+ {
+ "id": 2590,
+ "start": 860.393,
+ "end": 860.553,
+ "text": "that"
+ },
+ {
+ "id": 2591,
+ "start": 860.553,
+ "end": 860.643,
+ "text": "the"
+ },
+ {
+ "id": 2592,
+ "start": 860.643,
+ "end": 860.963,
+ "text": "product"
+ },
+ {
+ "id": 2593,
+ "start": 860.963,
+ "end": 861.103,
+ "text": "is"
+ },
+ {
+ "id": 2594,
+ "start": 861.103,
+ "end": 861.503,
+ "text": "relevant"
+ },
+ {
+ "id": 2595,
+ "start": 861.503,
+ "end": 861.603,
+ "text": "to"
+ },
+ {
+ "id": 2596,
+ "start": 861.603,
+ "end": 862.353,
+ "text": "them."
+ },
+ {
+ "id": 2597,
+ "start": 862.353,
+ "end": 863.613,
+ "text": "And"
+ },
+ {
+ "id": 2598,
+ "start": 863.613,
+ "end": 863.763,
+ "text": "what"
+ },
+ {
+ "id": 2599,
+ "start": 863.763,
+ "end": 863.923,
+ "text": "we"
+ },
+ {
+ "id": 2600,
+ "start": 863.923,
+ "end": 864.083,
+ "text": "were"
+ },
+ {
+ "id": 2601,
+ "start": 864.083,
+ "end": 864.513,
+ "text": "focused"
+ },
+ {
+ "id": 2602,
+ "start": 864.513,
+ "end": 865.183,
+ "text": "on"
+ },
+ {
+ "id": 2603,
+ "start": 865.183,
+ "end": 865.333,
+ "text": "was:"
+ },
+ {
+ "id": 2604,
+ "start": 865.333,
+ "end": 865.453,
+ "text": "How"
+ },
+ {
+ "id": 2605,
+ "start": 865.453,
+ "end": 865.543,
+ "text": "do"
+ },
+ {
+ "id": 2606,
+ "start": 865.543,
+ "end": 865.643,
+ "text": "we"
+ },
+ {
+ "id": 2607,
+ "start": 865.643,
+ "end": 865.853,
+ "text": "make"
+ },
+ {
+ "id": 2608,
+ "start": 865.853,
+ "end": 865.923,
+ "text": "a"
+ },
+ {
+ "id": 2609,
+ "start": 865.923,
+ "end": 866.493,
+ "text": "product"
+ },
+ {
+ "id": 2610,
+ "start": 866.493,
+ "end": 866.823,
+ "text": "globally"
+ },
+ {
+ "id": 2611,
+ "start": 866.823,
+ "end": 867.683,
+ "text": "relevant?"
+ },
+ {
+ "id": 2612,
+ "start": 867.683,
+ "end": 868.113,
+ "text": "Again,"
+ },
+ {
+ "id": 2613,
+ "start": 868.113,
+ "end": 868.303,
+ "text": "this"
+ },
+ {
+ "id": 2614,
+ "start": 868.303,
+ "end": 868.923,
+ "text": "is"
+ },
+ {
+ "id": 2615,
+ "start": 868.703,
+ "end": 869.143,
+ "text": "an"
+ },
+ {
+ "id": 2616,
+ "start": 869.053,
+ "end": 869.328,
+ "text": "era"
+ },
+ {
+ "id": 2617,
+ "start": 869.403,
+ "end": 869.513,
+ "text": "in"
+ },
+ {
+ "id": 2618,
+ "start": 869.513,
+ "end": 869.973,
+ "text": "which"
+ },
+ {
+ "id": 2619,
+ "start": 870.4230000000002,
+ "end": 870.9230000000002,
+ "text": "the"
+ },
+ {
+ "id": 2620,
+ "start": 871.333,
+ "end": 871.873,
+ "text": "smartphone"
+ },
+ {
+ "id": 2621,
+ "start": 871.603,
+ "end": 871.913,
+ "text": "–"
+ },
+ {
+ "id": 2622,
+ "start": 871.873,
+ "end": 871.953,
+ "text": "it"
+ },
+ {
+ "id": 2623,
+ "start": 871.953,
+ "end": 872.053,
+ "text": "was"
+ },
+ {
+ "id": 2624,
+ "start": 872.053,
+ "end": 872.193,
+ "text": "not"
+ },
+ {
+ "id": 2625,
+ "start": 872.193,
+ "end": 872.433,
+ "text": "clear"
+ },
+ {
+ "id": 2626,
+ "start": 872.433,
+ "end": 872.663,
+ "text": "yet,"
+ },
+ {
+ "id": 2627,
+ "start": 872.663,
+ "end": 872.843,
+ "text": "like,"
+ },
+ {
+ "id": 2628,
+ "start": 872.843,
+ "end": 873.143,
+ "text": "how"
+ },
+ {
+ "id": 2629,
+ "start": 873.143,
+ "end": 873.653,
+ "text": "much"
+ },
+ {
+ "id": 2630,
+ "start": 873.653,
+ "end": 874.113,
+ "text": "larger"
+ },
+ {
+ "id": 2631,
+ "start": 874.113,
+ "end": 874.233,
+ "text": "the"
+ },
+ {
+ "id": 2632,
+ "start": 874.233,
+ "end": 874.533,
+ "text": "total"
+ },
+ {
+ "id": 2633,
+ "start": 874.533,
+ "end": 874.963,
+ "text": "addressable"
+ },
+ {
+ "id": 2634,
+ "start": 874.963,
+ "end": 875.313,
+ "text": "market"
+ },
+ {
+ "id": 2635,
+ "start": 875.313,
+ "end": 875.433,
+ "text": "would"
+ },
+ {
+ "id": 2636,
+ "start": 875.433,
+ "end": 876.173,
+ "text": "grow"
+ },
+ {
+ "id": 2637,
+ "start": 876.173,
+ "end": 876.323,
+ "text": "as"
+ },
+ {
+ "id": 2638,
+ "start": 876.323,
+ "end": 876.373,
+ "text": "a"
+ },
+ {
+ "id": 2639,
+ "start": 876.373,
+ "end": 876.723,
+ "text": "result"
+ },
+ {
+ "id": 2640,
+ "start": 876.723,
+ "end": 876.823,
+ "text": "of"
+ },
+ {
+ "id": 2641,
+ "start": 876.823,
+ "end": 877.093,
+ "text": "the"
+ },
+ {
+ "id": 2642,
+ "start": 877.093,
+ "end": 879.413,
+ "text": "smartphone."
+ },
+ {
+ "id": 2643,
+ "start": 879.413,
+ "end": 879.513,
+ "text": "It"
+ },
+ {
+ "id": 2644,
+ "start": 879.513,
+ "end": 879.613,
+ "text": "was"
+ },
+ {
+ "id": 2645,
+ "start": 879.613,
+ "end": 879.743,
+ "text": "not"
+ },
+ {
+ "id": 2646,
+ "start": 879.743,
+ "end": 880.063,
+ "text": "clear"
+ },
+ {
+ "id": 2647,
+ "start": 880.063,
+ "end": 880.223,
+ "text": "like"
+ },
+ {
+ "id": 2648,
+ "start": 880.223,
+ "end": 880.523,
+ "text": "how"
+ },
+ {
+ "id": 2649,
+ "start": 880.523,
+ "end": 880.893,
+ "text": "Facebook"
+ },
+ {
+ "id": 2650,
+ "start": 880.893,
+ "end": 880.993,
+ "text": "would"
+ },
+ {
+ "id": 2651,
+ "start": 880.993,
+ "end": 881.533,
+ "text": "survive"
+ },
+ {
+ "id": 2652,
+ "start": 881.533,
+ "end": 882.093,
+ "text": "inevitable"
+ },
+ {
+ "id": 2653,
+ "start": 882.093,
+ "end": 882.723,
+ "text": "competition"
+ },
+ {
+ "id": 2654,
+ "start": 882.723,
+ "end": 883.243,
+ "text": "from"
+ },
+ {
+ "id": 2655,
+ "start": 883.243,
+ "end": 884.213,
+ "text": "Google"
+ },
+ {
+ "id": 2656,
+ "start": 884.213,
+ "end": 884.633,
+ "text": "and"
+ },
+ {
+ "id": 2657,
+ "start": 884.633,
+ "end": 884.913,
+ "text": "all"
+ },
+ {
+ "id": 2658,
+ "start": 884.913,
+ "end": 886.373,
+ "text": "the"
+ },
+ {
+ "id": 2659,
+ "start": 886.373,
+ "end": 886.723,
+ "text": "whispers"
+ },
+ {
+ "id": 2660,
+ "start": 886.723,
+ "end": 886.903,
+ "text": "we"
+ },
+ {
+ "id": 2661,
+ "start": 886.903,
+ "end": 887.513,
+ "text": "heard"
+ },
+ {
+ "id": 2662,
+ "start": 887.513,
+ "end": 887.793,
+ "text": "about"
+ },
+ {
+ "id": 2663,
+ "start": 887.793,
+ "end": 887.953,
+ "text": "them"
+ },
+ {
+ "id": 2664,
+ "start": 887.953,
+ "end": 888.433,
+ "text": "launching"
+ },
+ {
+ "id": 2665,
+ "start": 888.433,
+ "end": 888.533,
+ "text": "a"
+ },
+ {
+ "id": 2666,
+ "start": 888.533,
+ "end": 888.923,
+ "text": "competing"
+ },
+ {
+ "id": 2667,
+ "start": 888.923,
+ "end": 889.633,
+ "text": "product"
+ },
+ {
+ "id": 2668,
+ "start": 889.633,
+ "end": 889.803,
+ "text": "and"
+ },
+ {
+ "id": 2669,
+ "start": 889.803,
+ "end": 889.873,
+ "text": "the"
+ },
+ {
+ "id": 2670,
+ "start": 889.873,
+ "end": 890.203,
+ "text": "sheer"
+ },
+ {
+ "id": 2671,
+ "start": 890.203,
+ "end": 890.403,
+ "text": "amount"
+ },
+ {
+ "id": 2672,
+ "start": 890.403,
+ "end": 890.473,
+ "text": "of"
+ },
+ {
+ "id": 2673,
+ "start": 890.473,
+ "end": 891.013,
+ "text": "distribution"
+ },
+ {
+ "id": 2674,
+ "start": 891.013,
+ "end": 891.133,
+ "text": "that"
+ },
+ {
+ "id": 2675,
+ "start": 891.133,
+ "end": 891.253,
+ "text": "they"
+ },
+ {
+ "id": 2676,
+ "start": 891.963,
+ "end": 892.1380000000004,
+ "text": "enjoyed."
+ },
+ {
+ "id": 2677,
+ "start": 892.793,
+ "end": 893.023,
+ "text": "For"
+ },
+ {
+ "id": 2678,
+ "start": 893.023,
+ "end": 893.793,
+ "text": "us,"
+ },
+ {
+ "id": 2679,
+ "start": 893.793,
+ "end": 893.893,
+ "text": "the"
+ },
+ {
+ "id": 2680,
+ "start": 893.893,
+ "end": 894.103,
+ "text": "key"
+ },
+ {
+ "id": 2681,
+ "start": 894.103,
+ "end": 894.523,
+ "text": "focus"
+ },
+ {
+ "id": 2682,
+ "start": 894.523,
+ "end": 895.413,
+ "text": "was"
+ },
+ {
+ "id": 2683,
+ "start": 895.413,
+ "end": 895.693,
+ "text": "building"
+ },
+ {
+ "id": 2684,
+ "start": 895.693,
+ "end": 895.743,
+ "text": "a"
+ },
+ {
+ "id": 2685,
+ "start": 895.743,
+ "end": 896.063,
+ "text": "company"
+ },
+ {
+ "id": 2686,
+ "start": 895.855,
+ "end": 896.133,
+ "text": "that"
+ },
+ {
+ "id": 2687,
+ "start": 895.9670000000001,
+ "end": 896.203,
+ "text": "was"
+ },
+ {
+ "id": 2688,
+ "start": 896.079,
+ "end": 896.273,
+ "text": "going"
+ },
+ {
+ "id": 2689,
+ "start": 896.191,
+ "end": 896.343,
+ "text": "to"
+ },
+ {
+ "id": 2690,
+ "start": 896.303,
+ "end": 896.413,
+ "text": "be"
+ },
+ {
+ "id": 2691,
+ "start": 896.7580000000002,
+ "end": 896.9080000000001,
+ "text": "relevant"
+ },
+ {
+ "id": 2692,
+ "start": 897.213,
+ "end": 897.403,
+ "text": "and"
+ },
+ {
+ "id": 2693,
+ "start": 897.403,
+ "end": 897.603,
+ "text": "that"
+ },
+ {
+ "id": 2694,
+ "start": 897.603,
+ "end": 897.803,
+ "text": "was"
+ },
+ {
+ "id": 2695,
+ "start": 897.803,
+ "end": 898.613,
+ "text": "not"
+ },
+ {
+ "id": 2696,
+ "start": 898.613,
+ "end": 898.763,
+ "text": "a"
+ },
+ {
+ "id": 2697,
+ "start": 898.763,
+ "end": 899.203,
+ "text": "foregone"
+ },
+ {
+ "id": 2698,
+ "start": 899.508,
+ "end": 899.8979999999999,
+ "text": "conclusion,"
+ },
+ {
+ "id": 2699,
+ "start": 900.253,
+ "end": 900.593,
+ "text": "certainly"
+ },
+ {
+ "id": 2700,
+ "start": 900.593,
+ "end": 900.773,
+ "text": "not"
+ },
+ {
+ "id": 2701,
+ "start": 900.773,
+ "end": 900.833,
+ "text": "in"
+ },
+ {
+ "id": 2702,
+ "start": 900.833,
+ "end": 900.903,
+ "text": "the"
+ },
+ {
+ "id": 2703,
+ "start": 900.903,
+ "end": 901.123,
+ "text": "time"
+ },
+ {
+ "id": 2704,
+ "start": 901.123,
+ "end": 901.213,
+ "text": "that"
+ },
+ {
+ "id": 2705,
+ "start": 901.168,
+ "end": 901.268,
+ "text": "we"
+ },
+ {
+ "id": 2706,
+ "start": 901.213,
+ "end": 901.323,
+ "text": "were"
+ },
+ {
+ "id": 2707,
+ "start": 901.323,
+ "end": 901.763,
+ "text": "developing"
+ },
+ {
+ "id": 2708,
+ "start": 901.763,
+ "end": 901.923,
+ "text": "those"
+ },
+ {
+ "id": 2709,
+ "start": 902.0796666666666,
+ "end": 902.223,
+ "text": "products."
+ },
+ {
+ "id": 2710,
+ "start": 902.3963333333334,
+ "end": 902.523,
+ "text": "…"
+ },
+ {
+ "id": 2711,
+ "start": 902.713,
+ "end": 902.823,
+ "text": "Do"
+ },
+ {
+ "id": 2712,
+ "start": 902.823,
+ "end": 902.903,
+ "text": "you"
+ },
+ {
+ "id": 2713,
+ "start": 902.903,
+ "end": 903.113,
+ "text": "look"
+ },
+ {
+ "id": 2714,
+ "start": 903.113,
+ "end": 903.403,
+ "text": "back"
+ },
+ {
+ "id": 2715,
+ "start": 903.403,
+ "end": 903.513,
+ "text": "and"
+ },
+ {
+ "id": 2716,
+ "start": 903.513,
+ "end": 903.653,
+ "text": "it’s"
+ },
+ {
+ "id": 2717,
+ "start": 903.653,
+ "end": 903.853,
+ "text": "sort"
+ },
+ {
+ "id": 2718,
+ "start": 903.853,
+ "end": 903.943,
+ "text": "of"
+ },
+ {
+ "id": 2719,
+ "start": 903.943,
+ "end": 904.153,
+ "text": "like,"
+ },
+ {
+ "id": 2720,
+ "start": 904.153,
+ "end": 904.363,
+ "text": "wow,"
+ },
+ {
+ "id": 2721,
+ "start": 904.363,
+ "end": 904.483,
+ "text": "be"
+ },
+ {
+ "id": 2722,
+ "start": 904.483,
+ "end": 904.883,
+ "text": "careful"
+ },
+ {
+ "id": 2723,
+ "start": 904.883,
+ "end": 905.053,
+ "text": "what"
+ },
+ {
+ "id": 2724,
+ "start": 905.053,
+ "end": 905.143,
+ "text": "you"
+ },
+ {
+ "id": 2725,
+ "start": 905.143,
+ "end": 905.393,
+ "text": "wish"
+ },
+ {
+ "id": 2726,
+ "start": 905.393,
+ "end": 905.733,
+ "text": "for"
+ },
+ {
+ "id": 2727,
+ "start": 905.733,
+ "end": 906.093,
+ "text": "here"
+ },
+ {
+ "id": 2728,
+ "start": 906.093,
+ "end": 906.223,
+ "text": "in"
+ },
+ {
+ "id": 2729,
+ "start": 906.223,
+ "end": 906.543,
+ "text": "terms"
+ },
+ {
+ "id": 2730,
+ "start": 906.543,
+ "end": 906.643,
+ "text": "of"
+ },
+ {
+ "id": 2731,
+ "start": 906.643,
+ "end": 906.973,
+ "text": "wanting"
+ },
+ {
+ "id": 2732,
+ "start": 907.133,
+ "end": 907.4679999999998,
+ "text": "to"
+ },
+ {
+ "id": 2733,
+ "start": 907.623,
+ "end": 907.963,
+ "text": "be"
+ },
+ {
+ "id": 2734,
+ "start": 907.963,
+ "end": 908.323,
+ "text": "the"
+ },
+ {
+ "id": 2735,
+ "start": 908.323,
+ "end": 908.763,
+ "text": "social"
+ },
+ {
+ "id": 2736,
+ "start": 908.763,
+ "end": 909.673,
+ "text": "network"
+ },
+ {
+ "id": 2737,
+ "start": 909.673,
+ "end": 910.063,
+ "text": "that"
+ },
+ {
+ "id": 2738,
+ "start": 910.063,
+ "end": 910.493,
+ "text": "connects"
+ },
+ {
+ "id": 2739,
+ "start": 910.493,
+ "end": 911.033,
+ "text": "everybody?"
+ },
+ {
+ "id": 2740,
+ "start": 911.033,
+ "end": 911.673,
+ "text": "That"
+ },
+ {
+ "id": 2741,
+ "start": 911.673,
+ "end": 911.863,
+ "text": "you"
+ },
+ {
+ "id": 2742,
+ "start": 911.863,
+ "end": 912.163,
+ "text": "didn’t"
+ },
+ {
+ "id": 2743,
+ "start": 912.163,
+ "end": 912.763,
+ "text": "necessarily"
+ },
+ {
+ "id": 2744,
+ "start": 912.763,
+ "end": 912.993,
+ "text": "think"
+ },
+ {
+ "id": 2745,
+ "start": 912.993,
+ "end": 913.263,
+ "text": "about"
+ },
+ {
+ "id": 2746,
+ "start": 913.263,
+ "end": 913.353,
+ "text": "the"
+ },
+ {
+ "id": 2747,
+ "start": 913.353,
+ "end": 913.833,
+ "text": "attendant"
+ },
+ {
+ "id": 2748,
+ "start": 913.833,
+ "end": 914.173,
+ "text": "risks"
+ },
+ {
+ "id": 2749,
+ "start": 914.173,
+ "end": 914.253,
+ "text": "of"
+ },
+ {
+ "id": 2750,
+ "start": 914.253,
+ "end": 914.423,
+ "text": "what"
+ },
+ {
+ "id": 2751,
+ "start": 914.423,
+ "end": 914.503,
+ "text": "it"
+ },
+ {
+ "id": 2752,
+ "start": 914.503,
+ "end": 914.763,
+ "text": "means"
+ },
+ {
+ "id": 2753,
+ "start": 914.763,
+ "end": 914.873,
+ "text": "to"
+ },
+ {
+ "id": 2754,
+ "start": 914.873,
+ "end": 915.533,
+ "text": "connect"
+ },
+ {
+ "id": 2755,
+ "start": 915.533,
+ "end": 916.243,
+ "text": "2.2"
+ },
+ {
+ "id": 2756,
+ "start": 915.903,
+ "end": 916.523,
+ "text": "billion"
+ },
+ {
+ "id": 2757,
+ "start": 916.4929999999999,
+ "end": 916.9196666666666,
+ "text": "people?"
+ },
+ {
+ "id": 2758,
+ "start": 917.0830000000001,
+ "end": 917.3163333333333,
+ "text": "Yeah."
+ },
+ {
+ "id": 2759,
+ "start": 917.673,
+ "end": 917.713,
+ "text": "I"
+ },
+ {
+ "id": 2760,
+ "start": 917.713,
+ "end": 919.653,
+ "text": "mean,"
+ },
+ {
+ "id": 2761,
+ "start": 919.653,
+ "end": 919.953,
+ "text": "there’s"
+ },
+ {
+ "id": 2762,
+ "start": 919.953,
+ "end": 920.033,
+ "text": "a"
+ },
+ {
+ "id": 2763,
+ "start": 920.033,
+ "end": 920.203,
+ "text": "lot"
+ },
+ {
+ "id": 2764,
+ "start": 920.203,
+ "end": 920.263,
+ "text": "of"
+ },
+ {
+ "id": 2765,
+ "start": 920.263,
+ "end": 920.703,
+ "text": "mistakes"
+ },
+ {
+ "id": 2766,
+ "start": 920.703,
+ "end": 920.803,
+ "text": "that"
+ },
+ {
+ "id": 2767,
+ "start": 920.803,
+ "end": 920.913,
+ "text": "were"
+ },
+ {
+ "id": 2768,
+ "start": 920.913,
+ "end": 921.083,
+ "text": "made"
+ },
+ {
+ "id": 2769,
+ "start": 921.083,
+ "end": 921.353,
+ "text": "along"
+ },
+ {
+ "id": 2770,
+ "start": 921.353,
+ "end": 921.433,
+ "text": "the"
+ },
+ {
+ "id": 2771,
+ "start": 921.433,
+ "end": 922.553,
+ "text": "way"
+ },
+ {
+ "id": 2772,
+ "start": 922.553,
+ "end": 923.413,
+ "text": "that"
+ },
+ {
+ "id": 2773,
+ "start": 923.413,
+ "end": 923.603,
+ "text": "can"
+ },
+ {
+ "id": 2774,
+ "start": 923.603,
+ "end": 924.243,
+ "text": "be,"
+ },
+ {
+ "id": 2775,
+ "start": 924.243,
+ "end": 924.353,
+ "text": "you"
+ },
+ {
+ "id": 2776,
+ "start": 924.353,
+ "end": 924.673,
+ "text": "know,"
+ },
+ {
+ "id": 2777,
+ "start": 924.673,
+ "end": 924.863,
+ "text": "that"
+ },
+ {
+ "id": 2778,
+ "start": 924.863,
+ "end": 924.953,
+ "text": "are"
+ },
+ {
+ "id": 2779,
+ "start": 924.953,
+ "end": 925.223,
+ "text": "clearly"
+ },
+ {
+ "id": 2780,
+ "start": 925.673,
+ "end": 925.8530000000001,
+ "text": "regrettable."
+ },
+ {
+ "id": 2781,
+ "start": 926.393,
+ "end": 926.483,
+ "text": "A"
+ },
+ {
+ "id": 2782,
+ "start": 926.483,
+ "end": 926.633,
+ "text": "lot"
+ },
+ {
+ "id": 2783,
+ "start": 926.633,
+ "end": 926.703,
+ "text": "of"
+ },
+ {
+ "id": 2784,
+ "start": 926.703,
+ "end": 926.903,
+ "text": "edge"
+ },
+ {
+ "id": 2785,
+ "start": 926.903,
+ "end": 927.303,
+ "text": "cases"
+ },
+ {
+ "id": 2786,
+ "start": 927.148,
+ "end": 927.613,
+ "text": "and"
+ },
+ {
+ "id": 2787,
+ "start": 927.393,
+ "end": 927.923,
+ "text": "scenarios"
+ },
+ {
+ "id": 2788,
+ "start": 927.923,
+ "end": 928.103,
+ "text": "that"
+ },
+ {
+ "id": 2789,
+ "start": 928.103,
+ "end": 928.233,
+ "text": "we"
+ },
+ {
+ "id": 2790,
+ "start": 928.233,
+ "end": 928.513,
+ "text": "certainly"
+ },
+ {
+ "id": 2791,
+ "start": 928.433,
+ "end": 928.8679999999999,
+ "text": "didn’t"
+ },
+ {
+ "id": 2792,
+ "start": 928.633,
+ "end": 929.223,
+ "text": "anticipate."
+ },
+ {
+ "id": 2793,
+ "start": 929.5596666666668,
+ "end": 930.1096666666667,
+ "text": "We"
+ },
+ {
+ "id": 2794,
+ "start": 930.4863333333335,
+ "end": 930.9963333333335,
+ "text": "didn’t"
+ },
+ {
+ "id": 2795,
+ "start": 931.413,
+ "end": 931.883,
+ "text": "anticipate"
+ },
+ {
+ "id": 2796,
+ "start": 931.883,
+ "end": 932.013,
+ "text": "that"
+ },
+ {
+ "id": 2797,
+ "start": 932.013,
+ "end": 932.233,
+ "text": "foreign"
+ },
+ {
+ "id": 2798,
+ "start": 932.233,
+ "end": 932.533,
+ "text": "actors"
+ },
+ {
+ "id": 2799,
+ "start": 932.533,
+ "end": 932.643,
+ "text": "would"
+ },
+ {
+ "id": 2800,
+ "start": 932.643,
+ "end": 933.853,
+ "text": "use"
+ },
+ {
+ "id": 2801,
+ "start": 933.853,
+ "end": 934.673,
+ "text": "Facebook"
+ },
+ {
+ "id": 2802,
+ "start": 934.673,
+ "end": 934.833,
+ "text": "to"
+ },
+ {
+ "id": 2803,
+ "start": 934.833,
+ "end": 935.533,
+ "text": "coordinate"
+ },
+ {
+ "id": 2804,
+ "start": 935.533,
+ "end": 935.813,
+ "text": "a"
+ },
+ {
+ "id": 2805,
+ "start": 935.813,
+ "end": 937.163,
+ "text": "campaign"
+ },
+ {
+ "id": 2806,
+ "start": 937.163,
+ "end": 937.353,
+ "text": "to"
+ },
+ {
+ "id": 2807,
+ "start": 937.353,
+ "end": 937.733,
+ "text": "influence"
+ },
+ {
+ "id": 2808,
+ "start": 937.733,
+ "end": 937.803,
+ "text": "an"
+ },
+ {
+ "id": 2809,
+ "start": 937.803,
+ "end": 939.263,
+ "text": "election."
+ },
+ {
+ "id": 2810,
+ "start": 939.263,
+ "end": 939.423,
+ "text": "But"
+ },
+ {
+ "id": 2811,
+ "start": 939.423,
+ "end": 939.533,
+ "text": "then"
+ },
+ {
+ "id": 2812,
+ "start": 939.533,
+ "end": 939.903,
+ "text": "again,"
+ },
+ {
+ "id": 2813,
+ "start": 939.903,
+ "end": 940.193,
+ "text": "neither"
+ },
+ {
+ "id": 2814,
+ "start": 940.193,
+ "end": 940.373,
+ "text": "did"
+ },
+ {
+ "id": 2815,
+ "start": 940.373,
+ "end": 940.993,
+ "text": "people"
+ },
+ {
+ "id": 2816,
+ "start": 940.993,
+ "end": 941.673,
+ "text": "in"
+ },
+ {
+ "id": 2817,
+ "start": 941.483,
+ "end": 941.793,
+ "text": "the"
+ },
+ {
+ "id": 2818,
+ "start": 941.733,
+ "end": 942.353,
+ "text": "U.S."
+ },
+ {
+ "id": 2819,
+ "start": 941.983,
+ "end": 942.913,
+ "text": "government"
+ },
+ {
+ "id": 2820,
+ "start": 942.913,
+ "end": 943.233,
+ "text": "or"
+ },
+ {
+ "id": 2821,
+ "start": 943.233,
+ "end": 943.513,
+ "text": "folks"
+ },
+ {
+ "id": 2822,
+ "start": 943.513,
+ "end": 943.883,
+ "text": "who"
+ },
+ {
+ "id": 2823,
+ "start": 943.883,
+ "end": 944.273,
+ "text": "similarly"
+ },
+ {
+ "id": 2824,
+ "start": 944.273,
+ "end": 945.323,
+ "text": "had"
+ },
+ {
+ "id": 2825,
+ "start": 945.323,
+ "end": 945.433,
+ "text": "the"
+ },
+ {
+ "id": 2826,
+ "start": 945.433,
+ "end": 945.783,
+ "text": "potential"
+ },
+ {
+ "id": 2827,
+ "start": 945.783,
+ "end": 945.883,
+ "text": "to"
+ },
+ {
+ "id": 2828,
+ "start": 945.883,
+ "end": 946.183,
+ "text": "stop"
+ },
+ {
+ "id": 2829,
+ "start": 946.183,
+ "end": 947.273,
+ "text": "it."
+ },
+ {
+ "id": 2830,
+ "start": 947.273,
+ "end": 947.503,
+ "text": "That,"
+ },
+ {
+ "id": 2831,
+ "start": 947.503,
+ "end": 947.793,
+ "text": "again,"
+ },
+ {
+ "id": 2832,
+ "start": 947.793,
+ "end": 948.123,
+ "text": "wasn’t"
+ },
+ {
+ "id": 2833,
+ "start": 948.123,
+ "end": 948.303,
+ "text": "like"
+ },
+ {
+ "id": 2834,
+ "start": 948.303,
+ "end": 948.363,
+ "text": "a"
+ },
+ {
+ "id": 2835,
+ "start": 948.518,
+ "end": 948.7230000000001,
+ "text": "high-level"
+ },
+ {
+ "id": 2836,
+ "start": 948.733,
+ "end": 949.083,
+ "text": "priority"
+ },
+ {
+ "id": 2837,
+ "start": 949.083,
+ "end": 949.213,
+ "text": "for"
+ },
+ {
+ "id": 2838,
+ "start": 949.213,
+ "end": 949.343,
+ "text": "us."
+ },
+ {
+ "id": 2839,
+ "start": 949.343,
+ "end": 949.403,
+ "text": "It"
+ },
+ {
+ "id": 2840,
+ "start": 949.403,
+ "end": 949.593,
+ "text": "wasn’t"
+ },
+ {
+ "id": 2841,
+ "start": 949.593,
+ "end": 949.623,
+ "text": "a"
+ },
+ {
+ "id": 2842,
+ "start": 949.623,
+ "end": 950.063,
+ "text": "scenario"
+ },
+ {
+ "id": 2843,
+ "start": 950.063,
+ "end": 950.913,
+ "text": "that"
+ },
+ {
+ "id": 2844,
+ "start": 950.913,
+ "end": 951.053,
+ "text": "we"
+ },
+ {
+ "id": 2845,
+ "start": 951.053,
+ "end": 951.173,
+ "text": "had"
+ },
+ {
+ "id": 2846,
+ "start": 951.173,
+ "end": 951.363,
+ "text": "really"
+ },
+ {
+ "id": 2847,
+ "start": 951.483,
+ "end": 951.6496666666667,
+ "text": "considered."
+ },
+ {
+ "id": 2848,
+ "start": 951.793,
+ "end": 951.9363333333333,
+ "text": "Instead,"
+ },
+ {
+ "id": 2849,
+ "start": 952.103,
+ "end": 952.223,
+ "text": "we"
+ },
+ {
+ "id": 2850,
+ "start": 952.223,
+ "end": 952.343,
+ "text": "were"
+ },
+ {
+ "id": 2851,
+ "start": 952.343,
+ "end": 952.563,
+ "text": "much"
+ },
+ {
+ "id": 2852,
+ "start": 952.563,
+ "end": 952.703,
+ "text": "more"
+ },
+ {
+ "id": 2853,
+ "start": 952.703,
+ "end": 953.103,
+ "text": "focused"
+ },
+ {
+ "id": 2854,
+ "start": 953.2579999999998,
+ "end": 953.5180000000001,
+ "text": "on:"
+ },
+ {
+ "id": 2855,
+ "start": 953.813,
+ "end": 953.933,
+ "text": "How"
+ },
+ {
+ "id": 2856,
+ "start": 953.933,
+ "end": 954.023,
+ "text": "do"
+ },
+ {
+ "id": 2857,
+ "start": 954.018,
+ "end": 954.168,
+ "text": "we"
+ },
+ {
+ "id": 2858,
+ "start": 954.103,
+ "end": 954.313,
+ "text": "make"
+ },
+ {
+ "id": 2859,
+ "start": 954.313,
+ "end": 954.533,
+ "text": "this"
+ },
+ {
+ "id": 2860,
+ "start": 954.533,
+ "end": 955.043,
+ "text": "product"
+ },
+ {
+ "id": 2861,
+ "start": 955.2930000000001,
+ "end": 956.1780000000003,
+ "text": "universally"
+ },
+ {
+ "id": 2862,
+ "start": 956.053,
+ "end": 957.313,
+ "text": "available,"
+ },
+ {
+ "id": 2863,
+ "start": 957.313,
+ "end": 957.633,
+ "text": "because"
+ },
+ {
+ "id": 2864,
+ "start": 957.633,
+ "end": 957.773,
+ "text": "we"
+ },
+ {
+ "id": 2865,
+ "start": 957.773,
+ "end": 957.993,
+ "text": "felt"
+ },
+ {
+ "id": 2866,
+ "start": 957.993,
+ "end": 958.153,
+ "text": "that"
+ },
+ {
+ "id": 2867,
+ "start": 958.153,
+ "end": 958.273,
+ "text": "the"
+ },
+ {
+ "id": 2868,
+ "start": 958.273,
+ "end": 959.163,
+ "text": "value,"
+ },
+ {
+ "id": 2869,
+ "start": 959.163,
+ "end": 959.333,
+ "text": "the"
+ },
+ {
+ "id": 2870,
+ "start": 959.333,
+ "end": 959.623,
+ "text": "good"
+ },
+ {
+ "id": 2871,
+ "start": 959.623,
+ "end": 959.733,
+ "text": "that"
+ },
+ {
+ "id": 2872,
+ "start": 959.723,
+ "end": 959.893,
+ "text": "it"
+ },
+ {
+ "id": 2873,
+ "start": 959.823,
+ "end": 960.053,
+ "text": "brought"
+ },
+ {
+ "id": 2874,
+ "start": 960.053,
+ "end": 960.233,
+ "text": "into"
+ },
+ {
+ "id": 2875,
+ "start": 960.233,
+ "end": 960.353,
+ "text": "the"
+ },
+ {
+ "id": 2876,
+ "start": 960.353,
+ "end": 961.063,
+ "text": "world,"
+ },
+ {
+ "id": 2877,
+ "start": 961.063,
+ "end": 961.203,
+ "text": "would"
+ },
+ {
+ "id": 2878,
+ "start": 961.203,
+ "end": 961.493,
+ "text": "far"
+ },
+ {
+ "id": 2879,
+ "start": 961.493,
+ "end": 962.023,
+ "text": "exceed"
+ },
+ {
+ "id": 2880,
+ "start": 962.023,
+ "end": 962.213,
+ "text": "these"
+ },
+ {
+ "id": 2881,
+ "start": 962.213,
+ "end": 962.433,
+ "text": "edge"
+ },
+ {
+ "id": 2882,
+ "start": 962.433,
+ "end": 963.053,
+ "text": "cases"
+ },
+ {
+ "id": 2883,
+ "start": 963.053,
+ "end": 963.923,
+ "text": "or"
+ },
+ {
+ "id": 2884,
+ "start": 963.923,
+ "end": 964.393,
+ "text": "methods"
+ },
+ {
+ "id": 2885,
+ "start": 964.393,
+ "end": 964.553,
+ "text": "through"
+ },
+ {
+ "id": 2886,
+ "start": 964.553,
+ "end": 964.813,
+ "text": "which"
+ },
+ {
+ "id": 2887,
+ "start": 964.813,
+ "end": 965.143,
+ "text": "people"
+ },
+ {
+ "id": 2888,
+ "start": 965.143,
+ "end": 965.893,
+ "text": "can"
+ },
+ {
+ "id": 2889,
+ "start": 965.893,
+ "end": 966.093,
+ "text": "use"
+ },
+ {
+ "id": 2890,
+ "start": 966.093,
+ "end": 966.173,
+ "text": "it"
+ },
+ {
+ "id": 2891,
+ "start": 966.173,
+ "end": 966.273,
+ "text": "for"
+ },
+ {
+ "id": 2892,
+ "start": 966.273,
+ "end": 967.408,
+ "text": "evil."
+ },
+ {
+ "id": 2893,
+ "start": 967.408,
+ "end": 967.898,
+ "text": "So"
+ },
+ {
+ "id": 2894,
+ "start": 967.898,
+ "end": 968.268,
+ "text": "was"
+ },
+ {
+ "id": 2895,
+ "start": 968.268,
+ "end": 968.538,
+ "text": "there"
+ },
+ {
+ "id": 2896,
+ "start": 968.403,
+ "end": 968.818,
+ "text": "a"
+ },
+ {
+ "id": 2897,
+ "start": 968.538,
+ "end": 969.098,
+ "text": "concern"
+ },
+ {
+ "id": 2898,
+ "start": 969.098,
+ "end": 969.198,
+ "text": "at"
+ },
+ {
+ "id": 2899,
+ "start": 969.198,
+ "end": 969.288,
+ "text": "the"
+ },
+ {
+ "id": 2900,
+ "start": 969.288,
+ "end": 969.728,
+ "text": "time"
+ },
+ {
+ "id": 2901,
+ "start": 969.728,
+ "end": 969.988,
+ "text": "because"
+ },
+ {
+ "id": 2902,
+ "start": 970.2020000000001,
+ "end": 970.5440000000001,
+ "text": "[in]"
+ },
+ {
+ "id": 2903,
+ "start": 970.676,
+ "end": 971.1000000000001,
+ "text": "2011,"
+ },
+ {
+ "id": 2904,
+ "start": 971.15,
+ "end": 971.6560000000002,
+ "text": "“The"
+ },
+ {
+ "id": 2905,
+ "start": 971.6240000000001,
+ "end": 972.212,
+ "text": "Filter"
+ },
+ {
+ "id": 2906,
+ "start": 972.098,
+ "end": 972.768,
+ "text": "Bubble,”"
+ },
+ {
+ "id": 2907,
+ "start": 972.608,
+ "end": 973.238,
+ "text": "Eli"
+ },
+ {
+ "id": 2908,
+ "start": 973.1879999999999,
+ "end": 973.6030000000001,
+ "text": "Pariser’s"
+ },
+ {
+ "id": 2909,
+ "start": 973.768,
+ "end": 973.968,
+ "text": "book,"
+ },
+ {
+ "id": 2910,
+ "start": 973.968,
+ "end": 974.268,
+ "text": "comes"
+ },
+ {
+ "id": 2911,
+ "start": 974.268,
+ "end": 974.778,
+ "text": "out,"
+ },
+ {
+ "id": 2912,
+ "start": 974.778,
+ "end": 975.828,
+ "text": "right?"
+ },
+ {
+ "id": 2913,
+ "start": 975.828,
+ "end": 976.078,
+ "text": "It’s"
+ },
+ {
+ "id": 2914,
+ "start": 976.078,
+ "end": 976.288,
+ "text": "not"
+ },
+ {
+ "id": 2915,
+ "start": 976.288,
+ "end": 976.408,
+ "text": "as"
+ },
+ {
+ "id": 2916,
+ "start": 976.408,
+ "end": 976.578,
+ "text": "if"
+ },
+ {
+ "id": 2917,
+ "start": 976.578,
+ "end": 976.708,
+ "text": "there"
+ },
+ {
+ "id": 2918,
+ "start": 976.708,
+ "end": 976.988,
+ "text": "weren’t"
+ },
+ {
+ "id": 2919,
+ "start": 976.988,
+ "end": 977.338,
+ "text": "people"
+ },
+ {
+ "id": 2920,
+ "start": 977.338,
+ "end": 977.628,
+ "text": "already"
+ },
+ {
+ "id": 2921,
+ "start": 977.628,
+ "end": 978.168,
+ "text": "talking"
+ },
+ {
+ "id": 2922,
+ "start": 978.168,
+ "end": 978.598,
+ "text": "about"
+ },
+ {
+ "id": 2923,
+ "start": 978.598,
+ "end": 978.778,
+ "text": "the"
+ },
+ {
+ "id": 2924,
+ "start": 978.778,
+ "end": 979.178,
+ "text": "idea"
+ },
+ {
+ "id": 2925,
+ "start": 979.178,
+ "end": 979.478,
+ "text": "that"
+ },
+ {
+ "id": 2926,
+ "start": 980.0430000000001,
+ "end": 980.9280000000008,
+ "text": "engagement-driven"
+ },
+ {
+ "id": 2927,
+ "start": 980.908,
+ "end": 982.378,
+ "text": "algorithms"
+ },
+ {
+ "id": 2928,
+ "start": 982.378,
+ "end": 982.768,
+ "text": "could"
+ },
+ {
+ "id": 2929,
+ "start": 982.768,
+ "end": 983.368,
+ "text": "have"
+ },
+ {
+ "id": 2930,
+ "start": 983.368,
+ "end": 983.748,
+ "text": "major"
+ },
+ {
+ "id": 2931,
+ "start": 983.748,
+ "end": 984.238,
+ "text": "effects"
+ },
+ {
+ "id": 2932,
+ "start": 984.238,
+ "end": 984.398,
+ "text": "on"
+ },
+ {
+ "id": 2933,
+ "start": 984.398,
+ "end": 984.658,
+ "text": "what"
+ },
+ {
+ "id": 2934,
+ "start": 984.658,
+ "end": 985.218,
+ "text": "information"
+ },
+ {
+ "id": 2935,
+ "start": 985.218,
+ "end": 985.498,
+ "text": "people"
+ },
+ {
+ "id": 2936,
+ "start": 985.398,
+ "end": 985.798,
+ "text": "are"
+ },
+ {
+ "id": 2937,
+ "start": 985.578,
+ "end": 986.098,
+ "text": "exposed"
+ },
+ {
+ "id": 2938,
+ "start": 986.123,
+ "end": 986.4929999999999,
+ "text": "to;"
+ },
+ {
+ "id": 2939,
+ "start": 986.668,
+ "end": 986.888,
+ "text": "how"
+ },
+ {
+ "id": 2940,
+ "start": 986.888,
+ "end": 987.728,
+ "text": "people"
+ },
+ {
+ "id": 2941,
+ "start": 987.728,
+ "end": 988.038,
+ "text": "saw"
+ },
+ {
+ "id": 2942,
+ "start": 988.038,
+ "end": 988.188,
+ "text": "the"
+ },
+ {
+ "id": 2943,
+ "start": 988.188,
+ "end": 988.768,
+ "text": "world"
+ },
+ {
+ "id": 2944,
+ "start": 988.768,
+ "end": 989.328,
+ "text": "and"
+ },
+ {
+ "id": 2945,
+ "start": 989.328,
+ "end": 989.598,
+ "text": "echo"
+ },
+ {
+ "id": 2946,
+ "start": 989.598,
+ "end": 990.138,
+ "text": "chambers"
+ },
+ {
+ "id": 2947,
+ "start": 990.138,
+ "end": 990.248,
+ "text": "and"
+ },
+ {
+ "id": 2948,
+ "start": 990.248,
+ "end": 990.348,
+ "text": "all"
+ },
+ {
+ "id": 2949,
+ "start": 990.348,
+ "end": 990.608,
+ "text": "sorts"
+ },
+ {
+ "id": 2950,
+ "start": 990.608,
+ "end": 990.688,
+ "text": "of"
+ },
+ {
+ "id": 2951,
+ "start": 990.688,
+ "end": 991.128,
+ "text": "concerns"
+ },
+ {
+ "id": 2952,
+ "start": 991.128,
+ "end": 991.288,
+ "text": "like"
+ },
+ {
+ "id": 2953,
+ "start": 992.248,
+ "end": 992.4279999999999,
+ "text": "that."
+ },
+ {
+ "id": 2954,
+ "start": 993.368,
+ "end": 993.568,
+ "text": "Was"
+ },
+ {
+ "id": 2955,
+ "start": 993.568,
+ "end": 993.728,
+ "text": "that"
+ },
+ {
+ "id": 2956,
+ "start": 993.728,
+ "end": 994.428,
+ "text": "criticism"
+ },
+ {
+ "id": 2957,
+ "start": 994.428,
+ "end": 994.558,
+ "text": "or"
+ },
+ {
+ "id": 2958,
+ "start": 994.558,
+ "end": 994.818,
+ "text": "those"
+ },
+ {
+ "id": 2959,
+ "start": 994.818,
+ "end": 995.328,
+ "text": "concerns"
+ },
+ {
+ "id": 2960,
+ "start": 995.328,
+ "end": 996.398,
+ "text": "permeating"
+ },
+ {
+ "id": 2961,
+ "start": 996.398,
+ "end": 996.518,
+ "text": "the"
+ },
+ {
+ "id": 2962,
+ "start": 996.518,
+ "end": 996.788,
+ "text": "walls"
+ },
+ {
+ "id": 2963,
+ "start": 996.788,
+ "end": 996.868,
+ "text": "of"
+ },
+ {
+ "id": 2964,
+ "start": 996.868,
+ "end": 998.168,
+ "text": "Facebook?"
+ },
+ {
+ "id": 2965,
+ "start": 998.168,
+ "end": 998.288,
+ "text": "I"
+ },
+ {
+ "id": 2966,
+ "start": 998.288,
+ "end": 998.548,
+ "text": "think"
+ },
+ {
+ "id": 2967,
+ "start": 998.548,
+ "end": 999.248,
+ "text": "to"
+ },
+ {
+ "id": 2968,
+ "start": 999.248,
+ "end": 999.368,
+ "text": "an"
+ },
+ {
+ "id": 2969,
+ "start": 999.368,
+ "end": 999.968,
+ "text": "extent,"
+ },
+ {
+ "id": 2970,
+ "start": 999.968,
+ "end": 1000.188,
+ "text": "you"
+ },
+ {
+ "id": 2971,
+ "start": 1000.188,
+ "end": 1000.458,
+ "text": "know,"
+ },
+ {
+ "id": 2972,
+ "start": 1000.458,
+ "end": 1000.748,
+ "text": "they’re"
+ },
+ {
+ "id": 2973,
+ "start": 1000.748,
+ "end": 1000.968,
+ "text": "being"
+ },
+ {
+ "id": 2974,
+ "start": 1000.968,
+ "end": 1002.568,
+ "text": "heard."
+ },
+ {
+ "id": 2975,
+ "start": 1002.568,
+ "end": 1003.518,
+ "text": "But"
+ },
+ {
+ "id": 2976,
+ "start": 1003.518,
+ "end": 1003.818,
+ "text": "again,"
+ },
+ {
+ "id": 2977,
+ "start": 1003.818,
+ "end": 1004.228,
+ "text": "at"
+ },
+ {
+ "id": 2978,
+ "start": 1004.228,
+ "end": 1004.388,
+ "text": "the"
+ },
+ {
+ "id": 2979,
+ "start": 1004.388,
+ "end": 1004.648,
+ "text": "time"
+ },
+ {
+ "id": 2980,
+ "start": 1004.648,
+ "end": 1004.738,
+ "text": "the"
+ },
+ {
+ "id": 2981,
+ "start": 1004.738,
+ "end": 1006.168,
+ "text": "company"
+ },
+ {
+ "id": 2982,
+ "start": 1006.168,
+ "end": 1006.328,
+ "text": "was"
+ },
+ {
+ "id": 2983,
+ "start": 1006.328,
+ "end": 1006.548,
+ "text": "trying"
+ },
+ {
+ "id": 2984,
+ "start": 1006.548,
+ "end": 1006.628,
+ "text": "to"
+ },
+ {
+ "id": 2985,
+ "start": 1006.628,
+ "end": 1007.328,
+ "text": "solve"
+ },
+ {
+ "id": 2986,
+ "start": 1007.328,
+ "end": 1008.398,
+ "text": "for"
+ },
+ {
+ "id": 2987,
+ "start": 1008.018,
+ "end": 1008.678,
+ "text": "mobile"
+ },
+ {
+ "id": 2988,
+ "start": 1008.6279999999999,
+ "end": 1009.1079999999998,
+ "text": "advertising."
+ },
+ {
+ "id": 2989,
+ "start": 1009.238,
+ "end": 1009.5379999999999,
+ "text": "…"
+ },
+ {
+ "id": 2990,
+ "start": 1009.848,
+ "end": 1009.968,
+ "text": "It"
+ },
+ {
+ "id": 2991,
+ "start": 1009.968,
+ "end": 1010.068,
+ "text": "was"
+ },
+ {
+ "id": 2992,
+ "start": 1010.068,
+ "end": 1010.428,
+ "text": "solving"
+ },
+ {
+ "id": 2993,
+ "start": 1010.428,
+ "end": 1011.038,
+ "text": "for"
+ },
+ {
+ "id": 2994,
+ "start": 1011.038,
+ "end": 1011.258,
+ "text": "its"
+ },
+ {
+ "id": 2995,
+ "start": 1011.258,
+ "end": 1011.388,
+ "text": "own"
+ },
+ {
+ "id": 2996,
+ "start": 1011.388,
+ "end": 1011.918,
+ "text": "existence"
+ },
+ {
+ "id": 2997,
+ "start": 1011.918,
+ "end": 1012.008,
+ "text": "and"
+ },
+ {
+ "id": 2998,
+ "start": 1012.008,
+ "end": 1012.218,
+ "text": "making"
+ },
+ {
+ "id": 2999,
+ "start": 1012.218,
+ "end": 1012.478,
+ "text": "sure"
+ },
+ {
+ "id": 3000,
+ "start": 1012.478,
+ "end": 1012.598,
+ "text": "that"
+ },
+ {
+ "id": 3001,
+ "start": 1012.598,
+ "end": 1012.678,
+ "text": "the"
+ },
+ {
+ "id": 3002,
+ "start": 1012.678,
+ "end": 1012.958,
+ "text": "product"
+ },
+ {
+ "id": 3003,
+ "start": 1012.958,
+ "end": 1013.068,
+ "text": "was"
+ },
+ {
+ "id": 3004,
+ "start": 1013.068,
+ "end": 1014.328,
+ "text": "relevant."
+ },
+ {
+ "id": 3005,
+ "start": 1014.328,
+ "end": 1014.428,
+ "text": "It"
+ },
+ {
+ "id": 3006,
+ "start": 1014.428,
+ "end": 1014.528,
+ "text": "was"
+ },
+ {
+ "id": 3007,
+ "start": 1014.648,
+ "end": 1014.933,
+ "text": "solvent"
+ },
+ {
+ "id": 3008,
+ "start": 1014.868,
+ "end": 1015.338,
+ "text": "for"
+ },
+ {
+ "id": 3009,
+ "start": 1015.338,
+ "end": 1015.878,
+ "text": "problems"
+ },
+ {
+ "id": 3010,
+ "start": 1015.878,
+ "end": 1016.038,
+ "text": "that"
+ },
+ {
+ "id": 3011,
+ "start": 1016.038,
+ "end": 1016.698,
+ "text": "were"
+ },
+ {
+ "id": 3012,
+ "start": 1016.698,
+ "end": 1016.948,
+ "text": "much"
+ },
+ {
+ "id": 3013,
+ "start": 1016.948,
+ "end": 1017.108,
+ "text": "more"
+ },
+ {
+ "id": 3014,
+ "start": 1017.108,
+ "end": 1017.588,
+ "text": "foundational."
+ },
+ {
+ "id": 3015,
+ "start": 1017.588,
+ "end": 1017.938,
+ "text": "And"
+ },
+ {
+ "id": 3016,
+ "start": 1017.938,
+ "end": 1017.998,
+ "text": "it"
+ },
+ {
+ "id": 3017,
+ "start": 1017.998,
+ "end": 1018.138,
+ "text": "would"
+ },
+ {
+ "id": 3018,
+ "start": 1018.138,
+ "end": 1018.258,
+ "text": "be"
+ },
+ {
+ "id": 3019,
+ "start": 1018.258,
+ "end": 1018.828,
+ "text": "presumptuous"
+ },
+ {
+ "id": 3020,
+ "start": 1018.828,
+ "end": 1018.928,
+ "text": "to"
+ },
+ {
+ "id": 3021,
+ "start": 1018.928,
+ "end": 1019.098,
+ "text": "think"
+ },
+ {
+ "id": 3022,
+ "start": 1019.098,
+ "end": 1019.228,
+ "text": "that"
+ },
+ {
+ "id": 3023,
+ "start": 1019.228,
+ "end": 1019.408,
+ "text": "like,"
+ },
+ {
+ "id": 3024,
+ "start": 1019.408,
+ "end": 1020.138,
+ "text": "oh,"
+ },
+ {
+ "id": 3025,
+ "start": 1020.138,
+ "end": 1020.308,
+ "text": "this"
+ },
+ {
+ "id": 3026,
+ "start": 1020.308,
+ "end": 1020.448,
+ "text": "was"
+ },
+ {
+ "id": 3027,
+ "start": 1020.448,
+ "end": 1020.698,
+ "text": "already"
+ },
+ {
+ "id": 3028,
+ "start": 1021.1096666666666,
+ "end": 1021.3663333333333,
+ "text": "a"
+ },
+ {
+ "id": 3029,
+ "start": 1021.7713333333332,
+ "end": 1022.0346666666666,
+ "text": "fully-realized,"
+ },
+ {
+ "id": 3030,
+ "start": 1022.4329999999999,
+ "end": 1022.7030000000001,
+ "text": "fully-optimized"
+ },
+ {
+ "id": 3031,
+ "start": 1023.0946666666665,
+ "end": 1023.3713333333334,
+ "text": "interface."
+ },
+ {
+ "id": 3032,
+ "start": 1023.7563333333331,
+ "end": 1024.0396666666666,
+ "text": "It"
+ },
+ {
+ "id": 3033,
+ "start": 1024.418,
+ "end": 1024.708,
+ "text": "certainly"
+ },
+ {
+ "id": 3034,
+ "start": 1024.923,
+ "end": 1025.1879999999999,
+ "text": "wasn’t."
+ },
+ {
+ "id": 3035,
+ "start": 1025.428,
+ "end": 1025.668,
+ "text": "People"
+ },
+ {
+ "id": 3036,
+ "start": 1025.668,
+ "end": 1025.758,
+ "text": "were"
+ },
+ {
+ "id": 3037,
+ "start": 1025.758,
+ "end": 1025.878,
+ "text": "not"
+ },
+ {
+ "id": 3038,
+ "start": 1025.878,
+ "end": 1026.388,
+ "text": "necessarily"
+ },
+ {
+ "id": 3039,
+ "start": 1026.388,
+ "end": 1027.238,
+ "text": "finding"
+ },
+ {
+ "id": 3040,
+ "start": 1027.238,
+ "end": 1027.408,
+ "text": "their"
+ },
+ {
+ "id": 3041,
+ "start": 1027.408,
+ "end": 1027.668,
+ "text": "friends"
+ },
+ {
+ "id": 3042,
+ "start": 1027.668,
+ "end": 1027.778,
+ "text": "on"
+ },
+ {
+ "id": 3043,
+ "start": 1027.778,
+ "end": 1028.368,
+ "text": "Facebook."
+ },
+ {
+ "id": 3044,
+ "start": 1028.368,
+ "end": 1028.608,
+ "text": "People"
+ },
+ {
+ "id": 3045,
+ "start": 1028.608,
+ "end": 1028.678,
+ "text": "were"
+ },
+ {
+ "id": 3046,
+ "start": 1028.678,
+ "end": 1028.808,
+ "text": "not"
+ },
+ {
+ "id": 3047,
+ "start": 1028.953,
+ "end": 1029.148,
+ "text": "necessarily"
+ },
+ {
+ "id": 3048,
+ "start": 1029.228,
+ "end": 1029.488,
+ "text": "finding"
+ },
+ {
+ "id": 3049,
+ "start": 1029.488,
+ "end": 1029.908,
+ "text": "information"
+ },
+ {
+ "id": 3050,
+ "start": 1029.6746666666668,
+ "end": 1030.0046666666667,
+ "text": "that"
+ },
+ {
+ "id": 3051,
+ "start": 1029.8613333333333,
+ "end": 1030.1013333333333,
+ "text": "they"
+ },
+ {
+ "id": 3052,
+ "start": 1030.048,
+ "end": 1030.198,
+ "text": "really"
+ },
+ {
+ "id": 3053,
+ "start": 1030.198,
+ "end": 1030.418,
+ "text": "cared"
+ },
+ {
+ "id": 3054,
+ "start": 1030.418,
+ "end": 1030.678,
+ "text": "about"
+ },
+ {
+ "id": 3055,
+ "start": 1030.7379999999998,
+ "end": 1030.968,
+ "text": "or"
+ },
+ {
+ "id": 3056,
+ "start": 1031.058,
+ "end": 1031.258,
+ "text": "found"
+ },
+ {
+ "id": 3057,
+ "start": 1031.258,
+ "end": 1031.678,
+ "text": "engaging"
+ },
+ {
+ "id": 3058,
+ "start": 1031.678,
+ "end": 1033.668,
+ "text": "whatsoever."
+ },
+ {
+ "id": 3059,
+ "start": 1033.668,
+ "end": 1033.838,
+ "text": "But"
+ },
+ {
+ "id": 3060,
+ "start": 1033.838,
+ "end": 1033.868,
+ "text": "I"
+ },
+ {
+ "id": 3061,
+ "start": 1033.868,
+ "end": 1034.048,
+ "text": "think"
+ },
+ {
+ "id": 3062,
+ "start": 1034.048,
+ "end": 1034.238,
+ "text": "that"
+ },
+ {
+ "id": 3063,
+ "start": 1034.238,
+ "end": 1034.538,
+ "text": "it’s"
+ },
+ {
+ "id": 3064,
+ "start": 1034.538,
+ "end": 1034.798,
+ "text": "now"
+ },
+ {
+ "id": 3065,
+ "start": 1034.798,
+ "end": 1035.138,
+ "text": "clear"
+ },
+ {
+ "id": 3066,
+ "start": 1035.138,
+ "end": 1035.238,
+ "text": "in"
+ },
+ {
+ "id": 3067,
+ "start": 1035.238,
+ "end": 1035.728,
+ "text": "hindsight"
+ },
+ {
+ "id": 3068,
+ "start": 1035.728,
+ "end": 1035.868,
+ "text": "that"
+ },
+ {
+ "id": 3069,
+ "start": 1035.868,
+ "end": 1036.028,
+ "text": "there"
+ },
+ {
+ "id": 3070,
+ "start": 1036.028,
+ "end": 1036.308,
+ "text": "were"
+ },
+ {
+ "id": 3071,
+ "start": 1036.308,
+ "end": 1036.498,
+ "text": "these"
+ },
+ {
+ "id": 3072,
+ "start": 1036.748,
+ "end": 1036.893,
+ "text": "anti-patterns"
+ },
+ {
+ "id": 3073,
+ "start": 1037.188,
+ "end": 1037.288,
+ "text": "that"
+ },
+ {
+ "id": 3074,
+ "start": 1037.288,
+ "end": 1037.538,
+ "text": "started"
+ },
+ {
+ "id": 3075,
+ "start": 1037.538,
+ "end": 1037.658,
+ "text": "to"
+ },
+ {
+ "id": 3076,
+ "start": 1037.658,
+ "end": 1038.388,
+ "text": "emerge"
+ },
+ {
+ "id": 3077,
+ "start": 1038.388,
+ "end": 1039.148,
+ "text": "when"
+ },
+ {
+ "id": 3078,
+ "start": 1039.148,
+ "end": 1039.308,
+ "text": "the"
+ },
+ {
+ "id": 3079,
+ "start": 1039.308,
+ "end": 1039.528,
+ "text": "bulk"
+ },
+ {
+ "id": 3080,
+ "start": 1039.528,
+ "end": 1039.608,
+ "text": "of"
+ },
+ {
+ "id": 3081,
+ "start": 1039.608,
+ "end": 1039.668,
+ "text": "a"
+ },
+ {
+ "id": 3082,
+ "start": 1039.668,
+ "end": 1040.018,
+ "text": "person’s"
+ },
+ {
+ "id": 3083,
+ "start": 1040.018,
+ "end": 1041.628,
+ "text": "community"
+ },
+ {
+ "id": 3084,
+ "start": 1041.628,
+ "end": 1042.558,
+ "text": "reflected"
+ },
+ {
+ "id": 3085,
+ "start": 1042.558,
+ "end": 1042.828,
+ "text": "either"
+ },
+ {
+ "id": 3086,
+ "start": 1042.828,
+ "end": 1043.448,
+ "text": "an"
+ },
+ {
+ "id": 3087,
+ "start": 1043.448,
+ "end": 1044.408,
+ "text": "ideology"
+ },
+ {
+ "id": 3088,
+ "start": 1044.408,
+ "end": 1045.778,
+ "text": "or"
+ },
+ {
+ "id": 3089,
+ "start": 1045.778,
+ "end": 1046.088,
+ "text": "a"
+ },
+ {
+ "id": 3090,
+ "start": 1046.088,
+ "end": 1046.338,
+ "text": "set"
+ },
+ {
+ "id": 3091,
+ "start": 1046.338,
+ "end": 1047.278,
+ "text": "of"
+ },
+ {
+ "id": 3092,
+ "start": 1047.278,
+ "end": 1048.138,
+ "text": "inputs"
+ },
+ {
+ "id": 3093,
+ "start": 1048.138,
+ "end": 1048.408,
+ "text": "that"
+ },
+ {
+ "id": 3094,
+ "start": 1048.408,
+ "end": 1048.518,
+ "text": "are"
+ },
+ {
+ "id": 3095,
+ "start": 1048.518,
+ "end": 1049.438,
+ "text": "specific"
+ },
+ {
+ "id": 3096,
+ "start": 1049.438,
+ "end": 1049.638,
+ "text": "to"
+ },
+ {
+ "id": 3097,
+ "start": 1049.638,
+ "end": 1049.808,
+ "text": "that"
+ },
+ {
+ "id": 3098,
+ "start": 1050.098,
+ "end": 1050.3329999999999,
+ "text": "community,"
+ },
+ {
+ "id": 3099,
+ "start": 1050.558,
+ "end": 1050.858,
+ "text": "and"
+ },
+ {
+ "id": 3100,
+ "start": 1050.858,
+ "end": 1051.388,
+ "text": "that"
+ },
+ {
+ "id": 3101,
+ "start": 1051.388,
+ "end": 1051.618,
+ "text": "kind"
+ },
+ {
+ "id": 3102,
+ "start": 1051.618,
+ "end": 1051.678,
+ "text": "of"
+ },
+ {
+ "id": 3103,
+ "start": 1051.678,
+ "end": 1052.238,
+ "text": "squeezed"
+ },
+ {
+ "id": 3104,
+ "start": 1052.238,
+ "end": 1052.398,
+ "text": "out"
+ },
+ {
+ "id": 3105,
+ "start": 1052.333,
+ "end": 1052.5279999999998,
+ "text": "or"
+ },
+ {
+ "id": 3106,
+ "start": 1052.428,
+ "end": 1052.658,
+ "text": "left"
+ },
+ {
+ "id": 3107,
+ "start": 1052.658,
+ "end": 1052.948,
+ "text": "little"
+ },
+ {
+ "id": 3108,
+ "start": 1052.948,
+ "end": 1053.298,
+ "text": "room"
+ },
+ {
+ "id": 3109,
+ "start": 1053.298,
+ "end": 1053.708,
+ "text": "for"
+ },
+ {
+ "id": 3110,
+ "start": 1053.708,
+ "end": 1054.258,
+ "text": "information"
+ },
+ {
+ "id": 3111,
+ "start": 1054.258,
+ "end": 1054.598,
+ "text": "outside"
+ },
+ {
+ "id": 3112,
+ "start": 1054.598,
+ "end": 1054.678,
+ "text": "of"
+ },
+ {
+ "id": 3113,
+ "start": 1054.678,
+ "end": 1054.818,
+ "text": "what"
+ },
+ {
+ "id": 3114,
+ "start": 1054.783,
+ "end": 1055.108,
+ "text": "that"
+ },
+ {
+ "id": 3115,
+ "start": 1054.888,
+ "end": 1055.398,
+ "text": "community"
+ },
+ {
+ "id": 3116,
+ "start": 1055.6580000000004,
+ "end": 1056.073,
+ "text": "sees"
+ },
+ {
+ "id": 3117,
+ "start": 1056.4280000000003,
+ "end": 1056.7479999999998,
+ "text": "and"
+ },
+ {
+ "id": 3118,
+ "start": 1057.1980000000003,
+ "end": 1057.423,
+ "text": "believes."
+ },
+ {
+ "id": 3119,
+ "start": 1057.968,
+ "end": 1058.098,
+ "text": "But"
+ },
+ {
+ "id": 3120,
+ "start": 1058.098,
+ "end": 1058.278,
+ "text": "again,"
+ },
+ {
+ "id": 3121,
+ "start": 1058.278,
+ "end": 1058.328,
+ "text": "I"
+ },
+ {
+ "id": 3122,
+ "start": 1058.328,
+ "end": 1058.698,
+ "text": "think"
+ },
+ {
+ "id": 3123,
+ "start": 1058.698,
+ "end": 1058.938,
+ "text": "it’s"
+ },
+ {
+ "id": 3124,
+ "start": 1058.938,
+ "end": 1059.378,
+ "text": "important"
+ },
+ {
+ "id": 3125,
+ "start": 1059.378,
+ "end": 1059.478,
+ "text": "to"
+ },
+ {
+ "id": 3126,
+ "start": 1059.478,
+ "end": 1059.668,
+ "text": "look"
+ },
+ {
+ "id": 3127,
+ "start": 1059.668,
+ "end": 1060.388,
+ "text": "back"
+ },
+ {
+ "id": 3128,
+ "start": 1060.388,
+ "end": 1060.538,
+ "text": "and"
+ },
+ {
+ "id": 3129,
+ "start": 1060.538,
+ "end": 1060.968,
+ "text": "consider"
+ },
+ {
+ "id": 3130,
+ "start": 1060.968,
+ "end": 1061.548,
+ "text": "that"
+ },
+ {
+ "id": 3131,
+ "start": 1061.548,
+ "end": 1061.668,
+ "text": "the"
+ },
+ {
+ "id": 3132,
+ "start": 1061.668,
+ "end": 1062.128,
+ "text": "genesis"
+ },
+ {
+ "id": 3133,
+ "start": 1062.128,
+ "end": 1062.218,
+ "text": "of"
+ },
+ {
+ "id": 3134,
+ "start": 1062.308,
+ "end": 1062.768,
+ "text": "News"
+ },
+ {
+ "id": 3135,
+ "start": 1062.488,
+ "end": 1063.318,
+ "text": "Feed"
+ },
+ {
+ "id": 3136,
+ "start": 1063.318,
+ "end": 1064.158,
+ "text": "was"
+ },
+ {
+ "id": 3137,
+ "start": 1064.158,
+ "end": 1064.388,
+ "text": "this"
+ },
+ {
+ "id": 3138,
+ "start": 1064.388,
+ "end": 1064.798,
+ "text": "idea"
+ },
+ {
+ "id": 3139,
+ "start": 1064.798,
+ "end": 1065.368,
+ "text": "that"
+ },
+ {
+ "id": 3140,
+ "start": 1065.368,
+ "end": 1065.688,
+ "text": "people"
+ },
+ {
+ "id": 3141,
+ "start": 1065.688,
+ "end": 1065.888,
+ "text": "don’t"
+ },
+ {
+ "id": 3142,
+ "start": 1065.888,
+ "end": 1066.508,
+ "text": "have"
+ },
+ {
+ "id": 3143,
+ "start": 1066.508,
+ "end": 1067.068,
+ "text": "access"
+ },
+ {
+ "id": 3144,
+ "start": 1067.068,
+ "end": 1067.968,
+ "text": "to"
+ },
+ {
+ "id": 3145,
+ "start": 1067.968,
+ "end": 1068.158,
+ "text": "the"
+ },
+ {
+ "id": 3146,
+ "start": 1068.158,
+ "end": 1068.748,
+ "text": "information"
+ },
+ {
+ "id": 3147,
+ "start": 1068.748,
+ "end": 1068.908,
+ "text": "that’s"
+ },
+ {
+ "id": 3148,
+ "start": 1069.3029999999999,
+ "end": 1069.463,
+ "text": "personal,"
+ },
+ {
+ "id": 3149,
+ "start": 1069.858,
+ "end": 1070.018,
+ "text": "that"
+ },
+ {
+ "id": 3150,
+ "start": 1070.018,
+ "end": 1070.248,
+ "text": "comes"
+ },
+ {
+ "id": 3151,
+ "start": 1070.248,
+ "end": 1070.388,
+ "text": "from"
+ },
+ {
+ "id": 3152,
+ "start": 1070.388,
+ "end": 1070.498,
+ "text": "their"
+ },
+ {
+ "id": 3153,
+ "start": 1070.498,
+ "end": 1070.838,
+ "text": "friends"
+ },
+ {
+ "id": 3154,
+ "start": 1070.838,
+ "end": 1070.928,
+ "text": "and"
+ },
+ {
+ "id": 3155,
+ "start": 1071.1779999999999,
+ "end": 1071.3346666666666,
+ "text": "their"
+ },
+ {
+ "id": 3156,
+ "start": 1071.518,
+ "end": 1071.7413333333334,
+ "text": "family."
+ },
+ {
+ "id": 3157,
+ "start": 1071.858,
+ "end": 1072.148,
+ "text": "And"
+ },
+ {
+ "id": 3158,
+ "start": 1072.148,
+ "end": 1072.798,
+ "text": "that,"
+ },
+ {
+ "id": 3159,
+ "start": 1072.798,
+ "end": 1072.928,
+ "text": "in"
+ },
+ {
+ "id": 3160,
+ "start": 1072.928,
+ "end": 1073.038,
+ "text": "and"
+ },
+ {
+ "id": 3161,
+ "start": 1073.038,
+ "end": 1073.118,
+ "text": "of"
+ },
+ {
+ "id": 3162,
+ "start": 1073.118,
+ "end": 1073.378,
+ "text": "itself,"
+ },
+ {
+ "id": 3163,
+ "start": 1073.378,
+ "end": 1073.488,
+ "text": "we"
+ },
+ {
+ "id": 3164,
+ "start": 1073.488,
+ "end": 1073.988,
+ "text": "thought"
+ },
+ {
+ "id": 3165,
+ "start": 1073.988,
+ "end": 1074.188,
+ "text": "would"
+ },
+ {
+ "id": 3166,
+ "start": 1074.188,
+ "end": 1074.398,
+ "text": "have"
+ },
+ {
+ "id": 3167,
+ "start": 1074.398,
+ "end": 1074.878,
+ "text": "universal"
+ },
+ {
+ "id": 3168,
+ "start": 1074.878,
+ "end": 1075.628,
+ "text": "appeal"
+ },
+ {
+ "id": 3169,
+ "start": 1075.628,
+ "end": 1076.308,
+ "text": "and"
+ },
+ {
+ "id": 3170,
+ "start": 1076.308,
+ "end": 1076.748,
+ "text": "would"
+ },
+ {
+ "id": 3171,
+ "start": 1076.748,
+ "end": 1077.088,
+ "text": "create"
+ },
+ {
+ "id": 3172,
+ "start": 1077.088,
+ "end": 1077.138,
+ "text": "a"
+ },
+ {
+ "id": 3173,
+ "start": 1077.138,
+ "end": 1077.298,
+ "text": "lot"
+ },
+ {
+ "id": 3174,
+ "start": 1077.298,
+ "end": 1077.568,
+ "text": "of"
+ },
+ {
+ "id": 3175,
+ "start": 1077.568,
+ "end": 1077.878,
+ "text": "social"
+ },
+ {
+ "id": 3176,
+ "start": 1077.878,
+ "end": 1078.078,
+ "text": "good"
+ },
+ {
+ "id": 3177,
+ "start": 1078.078,
+ "end": 1078.218,
+ "text": "and"
+ },
+ {
+ "id": 3178,
+ "start": 1078.218,
+ "end": 1078.498,
+ "text": "social"
+ },
+ {
+ "id": 3179,
+ "start": 1078.498,
+ "end": 1078.868,
+ "text": "value"
+ },
+ {
+ "id": 3180,
+ "start": 1078.868,
+ "end": 1078.988,
+ "text": "to"
+ },
+ {
+ "id": 3181,
+ "start": 1078.988,
+ "end": 1079.568,
+ "text": "people"
+ },
+ {
+ "id": 3182,
+ "start": 1079.568,
+ "end": 1079.788,
+ "text": "all"
+ },
+ {
+ "id": 3183,
+ "start": 1079.788,
+ "end": 1079.918,
+ "text": "over"
+ },
+ {
+ "id": 3184,
+ "start": 1079.918,
+ "end": 1079.988,
+ "text": "the"
+ },
+ {
+ "id": 3185,
+ "start": 1079.988,
+ "end": 1080.278,
+ "text": "world."
+ },
+ {
+ "id": 3186,
+ "start": 1080.698,
+ "end": 1080.8980000000001,
+ "text": "…"
+ },
+ {
+ "id": 3187,
+ "start": 1081.408,
+ "end": 1081.518,
+ "text": "I"
+ },
+ {
+ "id": 3188,
+ "start": 1081.518,
+ "end": 1081.728,
+ "text": "think"
+ },
+ {
+ "id": 3189,
+ "start": 1081.728,
+ "end": 1081.898,
+ "text": "it’s"
+ },
+ {
+ "id": 3190,
+ "start": 1081.898,
+ "end": 1082.228,
+ "text": "easy"
+ },
+ {
+ "id": 3191,
+ "start": 1082.228,
+ "end": 1082.878,
+ "text": "to"
+ },
+ {
+ "id": 3192,
+ "start": 1082.878,
+ "end": 1084.468,
+ "text": "overlook"
+ },
+ {
+ "id": 3193,
+ "start": 1084.468,
+ "end": 1084.758,
+ "text": "how"
+ },
+ {
+ "id": 3194,
+ "start": 1084.758,
+ "end": 1085.748,
+ "text": "quickly"
+ },
+ {
+ "id": 3195,
+ "start": 1085.568,
+ "end": 1086.268,
+ "text": "Facebook"
+ },
+ {
+ "id": 3196,
+ "start": 1086.2846666666667,
+ "end": 1086.828,
+ "text": "reacts"
+ },
+ {
+ "id": 3197,
+ "start": 1087.0013333333334,
+ "end": 1087.388,
+ "text": "or"
+ },
+ {
+ "id": 3198,
+ "start": 1087.718,
+ "end": 1087.948,
+ "text": "has"
+ },
+ {
+ "id": 3199,
+ "start": 1087.948,
+ "end": 1088.428,
+ "text": "historically"
+ },
+ {
+ "id": 3200,
+ "start": 1088.428,
+ "end": 1089.218,
+ "text": "reacted"
+ },
+ {
+ "id": 3201,
+ "start": 1089.088,
+ "end": 1089.808,
+ "text": "to"
+ },
+ {
+ "id": 3202,
+ "start": 1089.723,
+ "end": 1090.143,
+ "text": "pushback"
+ },
+ {
+ "id": 3203,
+ "start": 1090.358,
+ "end": 1090.478,
+ "text": "from"
+ },
+ {
+ "id": 3204,
+ "start": 1090.478,
+ "end": 1090.558,
+ "text": "the"
+ },
+ {
+ "id": 3205,
+ "start": 1090.558,
+ "end": 1091.268,
+ "text": "community"
+ },
+ {
+ "id": 3206,
+ "start": 1091.268,
+ "end": 1091.568,
+ "text": "when"
+ },
+ {
+ "id": 3207,
+ "start": 1091.568,
+ "end": 1091.648,
+ "text": "it"
+ },
+ {
+ "id": 3208,
+ "start": 1091.648,
+ "end": 1092.058,
+ "text": "launches"
+ },
+ {
+ "id": 3209,
+ "start": 1092.058,
+ "end": 1092.538,
+ "text": "features"
+ },
+ {
+ "id": 3210,
+ "start": 1092.538,
+ "end": 1093.288,
+ "text": "that"
+ },
+ {
+ "id": 3211,
+ "start": 1093.288,
+ "end": 1093.468,
+ "text": "were"
+ },
+ {
+ "id": 3212,
+ "start": 1093.468,
+ "end": 1093.838,
+ "text": "either"
+ },
+ {
+ "id": 3213,
+ "start": 1093.838,
+ "end": 1094.078,
+ "text": "not"
+ },
+ {
+ "id": 3214,
+ "start": 1094.393,
+ "end": 1094.8379999999997,
+ "text": "well-considered"
+ },
+ {
+ "id": 3215,
+ "start": 1094.948,
+ "end": 1095.598,
+ "text": "or"
+ },
+ {
+ "id": 3216,
+ "start": 1095.598,
+ "end": 1096.308,
+ "text": "that"
+ },
+ {
+ "id": 3217,
+ "start": 1096.308,
+ "end": 1096.538,
+ "text": "didn’t"
+ },
+ {
+ "id": 3218,
+ "start": 1096.538,
+ "end": 1096.758,
+ "text": "map"
+ },
+ {
+ "id": 3219,
+ "start": 1096.758,
+ "end": 1096.868,
+ "text": "to"
+ },
+ {
+ "id": 3220,
+ "start": 1096.868,
+ "end": 1096.998,
+ "text": "what"
+ },
+ {
+ "id": 3221,
+ "start": 1096.998,
+ "end": 1097.218,
+ "text": "people"
+ },
+ {
+ "id": 3222,
+ "start": 1097.218,
+ "end": 1097.488,
+ "text": "actually"
+ },
+ {
+ "id": 3223,
+ "start": 1097.488,
+ "end": 1098.098,
+ "text": "wanted."
+ },
+ {
+ "id": 3224,
+ "start": 1098.098,
+ "end": 1098.908,
+ "text": "And"
+ },
+ {
+ "id": 3225,
+ "start": 1098.908,
+ "end": 1099.088,
+ "text": "you"
+ },
+ {
+ "id": 3226,
+ "start": 1099.088,
+ "end": 1099.558,
+ "text": "know,"
+ },
+ {
+ "id": 3227,
+ "start": 1099.558,
+ "end": 1099.678,
+ "text": "the"
+ },
+ {
+ "id": 3228,
+ "start": 1099.678,
+ "end": 1099.918,
+ "text": "one"
+ },
+ {
+ "id": 3229,
+ "start": 1099.918,
+ "end": 1100.078,
+ "text": "that"
+ },
+ {
+ "id": 3230,
+ "start": 1100.078,
+ "end": 1100.228,
+ "text": "kind"
+ },
+ {
+ "id": 3231,
+ "start": 1100.228,
+ "end": 1100.288,
+ "text": "of"
+ },
+ {
+ "id": 3232,
+ "start": 1100.288,
+ "end": 1100.428,
+ "text": "like"
+ },
+ {
+ "id": 3233,
+ "start": 1100.428,
+ "end": 1102.338,
+ "text": "sits"
+ },
+ {
+ "id": 3234,
+ "start": 1102.338,
+ "end": 1102.518,
+ "text": "in"
+ },
+ {
+ "id": 3235,
+ "start": 1102.518,
+ "end": 1102.618,
+ "text": "the"
+ },
+ {
+ "id": 3236,
+ "start": 1102.618,
+ "end": 1102.808,
+ "text": "lore"
+ },
+ {
+ "id": 3237,
+ "start": 1102.808,
+ "end": 1102.868,
+ "text": "of"
+ },
+ {
+ "id": 3238,
+ "start": 1102.868,
+ "end": 1102.938,
+ "text": "the"
+ },
+ {
+ "id": 3239,
+ "start": 1102.938,
+ "end": 1103.318,
+ "text": "company"
+ },
+ {
+ "id": 3240,
+ "start": 1103.318,
+ "end": 1103.478,
+ "text": "is"
+ },
+ {
+ "id": 3241,
+ "start": 1103.478,
+ "end": 1103.648,
+ "text": "when"
+ },
+ {
+ "id": 3242,
+ "start": 1103.648,
+ "end": 1103.758,
+ "text": "we"
+ },
+ {
+ "id": 3243,
+ "start": 1103.758,
+ "end": 1104.048,
+ "text": "first"
+ },
+ {
+ "id": 3244,
+ "start": 1104.048,
+ "end": 1104.278,
+ "text": "launched"
+ },
+ {
+ "id": 3245,
+ "start": 1104.278,
+ "end": 1104.468,
+ "text": "News"
+ },
+ {
+ "id": 3246,
+ "start": 1104.468,
+ "end": 1105.028,
+ "text": "Feed;"
+ },
+ {
+ "id": 3247,
+ "start": 1105.028,
+ "end": 1105.198,
+ "text": "and"
+ },
+ {
+ "id": 3248,
+ "start": 1105.198,
+ "end": 1105.378,
+ "text": "just"
+ },
+ {
+ "id": 3249,
+ "start": 1105.378,
+ "end": 1105.448,
+ "text": "the"
+ },
+ {
+ "id": 3250,
+ "start": 1105.673,
+ "end": 1105.8580000000002,
+ "text": "shear"
+ },
+ {
+ "id": 3251,
+ "start": 1105.968,
+ "end": 1106.268,
+ "text": "amount"
+ },
+ {
+ "id": 3252,
+ "start": 1106.268,
+ "end": 1106.368,
+ "text": "of"
+ },
+ {
+ "id": 3253,
+ "start": 1106.368,
+ "end": 1106.908,
+ "text": "blowback"
+ },
+ {
+ "id": 3254,
+ "start": 1106.908,
+ "end": 1106.998,
+ "text": "that"
+ },
+ {
+ "id": 3255,
+ "start": 1106.998,
+ "end": 1107.098,
+ "text": "was"
+ },
+ {
+ "id": 3256,
+ "start": 1107.098,
+ "end": 1107.238,
+ "text": "kind"
+ },
+ {
+ "id": 3257,
+ "start": 1107.238,
+ "end": 1107.308,
+ "text": "of"
+ },
+ {
+ "id": 3258,
+ "start": 1107.693,
+ "end": 1107.788,
+ "text": "self-perpetuated"
+ },
+ {
+ "id": 3259,
+ "start": 1108.148,
+ "end": 1108.268,
+ "text": "by"
+ },
+ {
+ "id": 3260,
+ "start": 1108.268,
+ "end": 1108.528,
+ "text": "News"
+ },
+ {
+ "id": 3261,
+ "start": 1108.528,
+ "end": 1109.198,
+ "text": "Feed"
+ },
+ {
+ "id": 3262,
+ "start": 1109.198,
+ "end": 1110.418,
+ "text": "from"
+ },
+ {
+ "id": 3263,
+ "start": 1110.418,
+ "end": 1110.608,
+ "text": "the"
+ },
+ {
+ "id": 3264,
+ "start": 1110.608,
+ "end": 1110.848,
+ "text": "user"
+ },
+ {
+ "id": 3265,
+ "start": 1110.8229999999999,
+ "end": 1110.993,
+ "text": "base"
+ },
+ {
+ "id": 3266,
+ "start": 1111.038,
+ "end": 1111.138,
+ "text": "at"
+ },
+ {
+ "id": 3267,
+ "start": 1111.138,
+ "end": 1111.268,
+ "text": "that"
+ },
+ {
+ "id": 3268,
+ "start": 1111.268,
+ "end": 1112.158,
+ "text": "time"
+ },
+ {
+ "id": 3269,
+ "start": 1112.158,
+ "end": 1112.318,
+ "text": "where"
+ },
+ {
+ "id": 3270,
+ "start": 1112.318,
+ "end": 1112.538,
+ "text": "people"
+ },
+ {
+ "id": 3271,
+ "start": 1112.538,
+ "end": 1112.758,
+ "text": "didn’t"
+ },
+ {
+ "id": 3272,
+ "start": 1112.758,
+ "end": 1113.888,
+ "text": "understand"
+ },
+ {
+ "id": 3273,
+ "start": 1113.888,
+ "end": 1114.138,
+ "text": "why"
+ },
+ {
+ "id": 3274,
+ "start": 1114.138,
+ "end": 1114.298,
+ "text": "this"
+ },
+ {
+ "id": 3275,
+ "start": 1114.298,
+ "end": 1114.568,
+ "text": "feature"
+ },
+ {
+ "id": 3276,
+ "start": 1114.568,
+ "end": 1114.778,
+ "text": "was"
+ },
+ {
+ "id": 3277,
+ "start": 1114.778,
+ "end": 1115.868,
+ "text": "released,"
+ },
+ {
+ "id": 3278,
+ "start": 1115.868,
+ "end": 1116.458,
+ "text": "who"
+ },
+ {
+ "id": 3279,
+ "start": 1116.458,
+ "end": 1116.608,
+ "text": "can"
+ },
+ {
+ "id": 3280,
+ "start": 1116.608,
+ "end": 1116.878,
+ "text": "see"
+ },
+ {
+ "id": 3281,
+ "start": 1117.143,
+ "end": 1117.328,
+ "text": "what."
+ },
+ {
+ "id": 3282,
+ "start": 1117.678,
+ "end": 1117.778,
+ "text": "There"
+ },
+ {
+ "id": 3283,
+ "start": 1117.778,
+ "end": 1117.868,
+ "text": "was"
+ },
+ {
+ "id": 3284,
+ "start": 1117.868,
+ "end": 1118.008,
+ "text": "no"
+ },
+ {
+ "id": 3285,
+ "start": 1118.203,
+ "end": 1118.523,
+ "text": "onboarding"
+ },
+ {
+ "id": 3286,
+ "start": 1118.538,
+ "end": 1119.038,
+ "text": "experience"
+ },
+ {
+ "id": 3287,
+ "start": 1119.038,
+ "end": 1119.128,
+ "text": "that"
+ },
+ {
+ "id": 3288,
+ "start": 1119.128,
+ "end": 1119.218,
+ "text": "we"
+ },
+ {
+ "id": 3289,
+ "start": 1119.218,
+ "end": 1119.358,
+ "text": "had"
+ },
+ {
+ "id": 3290,
+ "start": 1119.358,
+ "end": 1119.678,
+ "text": "built"
+ },
+ {
+ "id": 3291,
+ "start": 1119.678,
+ "end": 1119.798,
+ "text": "when"
+ },
+ {
+ "id": 3292,
+ "start": 1119.798,
+ "end": 1119.908,
+ "text": "we"
+ },
+ {
+ "id": 3293,
+ "start": 1119.908,
+ "end": 1120.198,
+ "text": "released"
+ },
+ {
+ "id": 3294,
+ "start": 1120.198,
+ "end": 1120.268,
+ "text": "it."
+ },
+ {
+ "id": 3295,
+ "start": 1120.268,
+ "end": 1120.358,
+ "text": "We"
+ },
+ {
+ "id": 3296,
+ "start": 1120.358,
+ "end": 1120.578,
+ "text": "just"
+ },
+ {
+ "id": 3297,
+ "start": 1120.8213333333333,
+ "end": 1121.431333333333,
+ "text": "pressed"
+ },
+ {
+ "id": 3298,
+ "start": 1121.2846666666667,
+ "end": 1122.2846666666665,
+ "text": "go."
+ },
+ {
+ "id": 3299,
+ "start": 1121.748,
+ "end": 1123.138,
+ "text": "And"
+ },
+ {
+ "id": 3300,
+ "start": 1123.138,
+ "end": 1123.388,
+ "text": "more"
+ },
+ {
+ "id": 3301,
+ "start": 1123.388,
+ "end": 1123.808,
+ "text": "importantly,"
+ },
+ {
+ "id": 3302,
+ "start": 1123.808,
+ "end": 1123.938,
+ "text": "there"
+ },
+ {
+ "id": 3303,
+ "start": 1123.938,
+ "end": 1124.088,
+ "text": "was"
+ },
+ {
+ "id": 3304,
+ "start": 1124.088,
+ "end": 1124.278,
+ "text": "real"
+ },
+ {
+ "id": 3305,
+ "start": 1124.278,
+ "end": 1124.738,
+ "text": "concerns"
+ },
+ {
+ "id": 3306,
+ "start": 1124.738,
+ "end": 1125.608,
+ "text": "around"
+ },
+ {
+ "id": 3307,
+ "start": 1125.608,
+ "end": 1125.728,
+ "text": "I"
+ },
+ {
+ "id": 3308,
+ "start": 1125.728,
+ "end": 1125.928,
+ "text": "feel"
+ },
+ {
+ "id": 3309,
+ "start": 1125.928,
+ "end": 1126.128,
+ "text": "like"
+ },
+ {
+ "id": 3310,
+ "start": 1126.118,
+ "end": 1126.328,
+ "text": "my"
+ },
+ {
+ "id": 3311,
+ "start": 1126.4979999999998,
+ "end": 1126.693,
+ "text": "privacy’s"
+ },
+ {
+ "id": 3312,
+ "start": 1126.878,
+ "end": 1127.058,
+ "text": "being"
+ },
+ {
+ "id": 3313,
+ "start": 1127.058,
+ "end": 1127.468,
+ "text": "invaded."
+ },
+ {
+ "id": 3314,
+ "start": 1127.468,
+ "end": 1127.518,
+ "text": "I"
+ },
+ {
+ "id": 3315,
+ "start": 1127.518,
+ "end": 1127.758,
+ "text": "can’t"
+ },
+ {
+ "id": 3316,
+ "start": 1127.758,
+ "end": 1128.278,
+ "text": "articulate"
+ },
+ {
+ "id": 3317,
+ "start": 1128.278,
+ "end": 1129.548,
+ "text": "why,"
+ },
+ {
+ "id": 3318,
+ "start": 1129.548,
+ "end": 1129.718,
+ "text": "but"
+ },
+ {
+ "id": 3319,
+ "start": 1129.718,
+ "end": 1130.188,
+ "text": "I"
+ },
+ {
+ "id": 3320,
+ "start": 1130.188,
+ "end": 1130.518,
+ "text": "feel"
+ },
+ {
+ "id": 3321,
+ "start": 1130.518,
+ "end": 1130.628,
+ "text": "as"
+ },
+ {
+ "id": 3322,
+ "start": 1130.628,
+ "end": 1131.188,
+ "text": "though"
+ },
+ {
+ "id": 3323,
+ "start": 1131.188,
+ "end": 1131.568,
+ "text": "there’s"
+ },
+ {
+ "id": 3324,
+ "start": 1131.568,
+ "end": 1131.628,
+ "text": "a"
+ },
+ {
+ "id": 3325,
+ "start": 1131.628,
+ "end": 1132.028,
+ "text": "betrayal"
+ },
+ {
+ "id": 3326,
+ "start": 1132.028,
+ "end": 1132.098,
+ "text": "of"
+ },
+ {
+ "id": 3327,
+ "start": 1132.098,
+ "end": 1134.388,
+ "text": "trust."
+ },
+ {
+ "id": 3328,
+ "start": 1134.388,
+ "end": 1134.628,
+ "text": "We"
+ },
+ {
+ "id": 3329,
+ "start": 1134.628,
+ "end": 1134.838,
+ "text": "didn’t"
+ },
+ {
+ "id": 3330,
+ "start": 1134.838,
+ "end": 1135.008,
+ "text": "sit"
+ },
+ {
+ "id": 3331,
+ "start": 1135.008,
+ "end": 1135.128,
+ "text": "on"
+ },
+ {
+ "id": 3332,
+ "start": 1135.128,
+ "end": 1135.188,
+ "text": "our"
+ },
+ {
+ "id": 3333,
+ "start": 1135.188,
+ "end": 1135.708,
+ "text": "hands"
+ },
+ {
+ "id": 3334,
+ "start": 1135.708,
+ "end": 1135.918,
+ "text": "back"
+ },
+ {
+ "id": 3335,
+ "start": 1135.918,
+ "end": 1136.278,
+ "text": "then."
+ },
+ {
+ "id": 3336,
+ "start": 1136.278,
+ "end": 1136.438,
+ "text": "We"
+ },
+ {
+ "id": 3337,
+ "start": 1136.438,
+ "end": 1136.708,
+ "text": "spun"
+ },
+ {
+ "id": 3338,
+ "start": 1136.708,
+ "end": 1136.808,
+ "text": "up"
+ },
+ {
+ "id": 3339,
+ "start": 1136.808,
+ "end": 1136.858,
+ "text": "a"
+ },
+ {
+ "id": 3340,
+ "start": 1136.858,
+ "end": 1137.278,
+ "text": "task"
+ },
+ {
+ "id": 3341,
+ "start": 1137.278,
+ "end": 1137.988,
+ "text": "force"
+ },
+ {
+ "id": 3342,
+ "start": 1137.988,
+ "end": 1138.108,
+ "text": "to"
+ },
+ {
+ "id": 3343,
+ "start": 1138.108,
+ "end": 1138.298,
+ "text": "try"
+ },
+ {
+ "id": 3344,
+ "start": 1138.298,
+ "end": 1138.378,
+ "text": "to"
+ },
+ {
+ "id": 3345,
+ "start": 1138.378,
+ "end": 1138.908,
+ "text": "identify"
+ },
+ {
+ "id": 3346,
+ "start": 1138.908,
+ "end": 1139.178,
+ "text": "what"
+ },
+ {
+ "id": 3347,
+ "start": 1139.0430000000001,
+ "end": 1139.223,
+ "text": "are"
+ },
+ {
+ "id": 3348,
+ "start": 1139.178,
+ "end": 1139.268,
+ "text": "the"
+ },
+ {
+ "id": 3349,
+ "start": 1139.268,
+ "end": 1139.788,
+ "text": "specific"
+ },
+ {
+ "id": 3350,
+ "start": 1139.788,
+ "end": 1141.028,
+ "text": "concerns"
+ },
+ {
+ "id": 3351,
+ "start": 1141.028,
+ "end": 1141.288,
+ "text": "people"
+ },
+ {
+ "id": 3352,
+ "start": 1141.288,
+ "end": 1141.348,
+ "text": "are"
+ },
+ {
+ "id": 3353,
+ "start": 1141.938,
+ "end": 1142.0879999999997,
+ "text": "expressing."
+ },
+ {
+ "id": 3354,
+ "start": 1142.588,
+ "end": 1142.828,
+ "text": "What"
+ },
+ {
+ "id": 3355,
+ "start": 1142.828,
+ "end": 1142.888,
+ "text": "are"
+ },
+ {
+ "id": 3356,
+ "start": 1142.888,
+ "end": 1143.008,
+ "text": "the"
+ },
+ {
+ "id": 3357,
+ "start": 1143.008,
+ "end": 1143.548,
+ "text": "features"
+ },
+ {
+ "id": 3358,
+ "start": 1143.548,
+ "end": 1143.768,
+ "text": "and"
+ },
+ {
+ "id": 3359,
+ "start": 1143.978,
+ "end": 1144.1380000000001,
+ "text": "controls"
+ },
+ {
+ "id": 3360,
+ "start": 1144.408,
+ "end": 1144.508,
+ "text": "that"
+ },
+ {
+ "id": 3361,
+ "start": 1144.508,
+ "end": 1144.598,
+ "text": "we"
+ },
+ {
+ "id": 3362,
+ "start": 1144.598,
+ "end": 1144.748,
+ "text": "need"
+ },
+ {
+ "id": 3363,
+ "start": 1144.748,
+ "end": 1144.838,
+ "text": "to"
+ },
+ {
+ "id": 3364,
+ "start": 1144.838,
+ "end": 1145.208,
+ "text": "give"
+ },
+ {
+ "id": 3365,
+ "start": 1145.208,
+ "end": 1145.328,
+ "text": "to"
+ },
+ {
+ "id": 3366,
+ "start": 1145.328,
+ "end": 1146.138,
+ "text": "people"
+ },
+ {
+ "id": 3367,
+ "start": 1146.138,
+ "end": 1146.328,
+ "text": "so"
+ },
+ {
+ "id": 3368,
+ "start": 1146.328,
+ "end": 1146.478,
+ "text": "that"
+ },
+ {
+ "id": 3369,
+ "start": 1146.478,
+ "end": 1146.618,
+ "text": "they"
+ },
+ {
+ "id": 3370,
+ "start": 1146.618,
+ "end": 1146.798,
+ "text": "feel"
+ },
+ {
+ "id": 3371,
+ "start": 1146.798,
+ "end": 1146.908,
+ "text": "like"
+ },
+ {
+ "id": 3372,
+ "start": 1146.908,
+ "end": 1146.998,
+ "text": "they"
+ },
+ {
+ "id": 3373,
+ "start": 1146.998,
+ "end": 1147.188,
+ "text": "have"
+ },
+ {
+ "id": 3374,
+ "start": 1147.188,
+ "end": 1147.388,
+ "text": "some"
+ },
+ {
+ "id": 3375,
+ "start": 1147.388,
+ "end": 1148.308,
+ "text": "agency"
+ },
+ {
+ "id": 3376,
+ "start": 1148.308,
+ "end": 1148.528,
+ "text": "over"
+ },
+ {
+ "id": 3377,
+ "start": 1148.528,
+ "end": 1148.628,
+ "text": "the"
+ },
+ {
+ "id": 3378,
+ "start": 1148.628,
+ "end": 1149.068,
+ "text": "information"
+ },
+ {
+ "id": 3379,
+ "start": 1149.068,
+ "end": 1149.198,
+ "text": "that’s"
+ },
+ {
+ "id": 3380,
+ "start": 1149.198,
+ "end": 1149.348,
+ "text": "being"
+ },
+ {
+ "id": 3381,
+ "start": 1149.348,
+ "end": 1149.618,
+ "text": "shared"
+ },
+ {
+ "id": 3382,
+ "start": 1149.618,
+ "end": 1149.778,
+ "text": "over"
+ },
+ {
+ "id": 3383,
+ "start": 1150.028,
+ "end": 1150.1813333333334,
+ "text": "News"
+ },
+ {
+ "id": 3384,
+ "start": 1150.4379999999999,
+ "end": 1150.5846666666666,
+ "text": "Feed?"
+ },
+ {
+ "id": 3385,
+ "start": 1150.848,
+ "end": 1150.988,
+ "text": "And"
+ },
+ {
+ "id": 3386,
+ "start": 1150.988,
+ "end": 1151.078,
+ "text": "then"
+ },
+ {
+ "id": 3387,
+ "start": 1151.078,
+ "end": 1151.188,
+ "text": "we"
+ },
+ {
+ "id": 3388,
+ "start": 1151.188,
+ "end": 1151.538,
+ "text": "launched"
+ },
+ {
+ "id": 3389,
+ "start": 1151.538,
+ "end": 1151.598,
+ "text": "a"
+ },
+ {
+ "id": 3390,
+ "start": 1151.598,
+ "end": 1151.968,
+ "text": "whole"
+ },
+ {
+ "id": 3391,
+ "start": 1151.968,
+ "end": 1152.128,
+ "text": "new"
+ },
+ {
+ "id": 3392,
+ "start": 1152.128,
+ "end": 1152.348,
+ "text": "set"
+ },
+ {
+ "id": 3393,
+ "start": 1152.348,
+ "end": 1152.448,
+ "text": "of"
+ },
+ {
+ "id": 3394,
+ "start": 1152.448,
+ "end": 1152.858,
+ "text": "controls"
+ },
+ {
+ "id": 3395,
+ "start": 1152.858,
+ "end": 1153.108,
+ "text": "within,"
+ },
+ {
+ "id": 3396,
+ "start": 1153.108,
+ "end": 1153.288,
+ "text": "like,"
+ },
+ {
+ "id": 3397,
+ "start": 1153.288,
+ "end": 1153.568,
+ "text": "five"
+ },
+ {
+ "id": 3398,
+ "start": 1153.568,
+ "end": 1153.868,
+ "text": "business"
+ },
+ {
+ "id": 3399,
+ "start": 1153.868,
+ "end": 1154.098,
+ "text": "days"
+ },
+ {
+ "id": 3400,
+ "start": 1154.038,
+ "end": 1154.193,
+ "text": "of"
+ },
+ {
+ "id": 3401,
+ "start": 1154.208,
+ "end": 1154.288,
+ "text": "the"
+ },
+ {
+ "id": 3402,
+ "start": 1154.288,
+ "end": 1154.478,
+ "text": "News"
+ },
+ {
+ "id": 3403,
+ "start": 1154.478,
+ "end": 1154.658,
+ "text": "Feed"
+ },
+ {
+ "id": 3404,
+ "start": 1154.658,
+ "end": 1156.488,
+ "text": "launch."
+ },
+ {
+ "id": 3405,
+ "start": 1156.488,
+ "end": 1156.608,
+ "text": "There"
+ },
+ {
+ "id": 3406,
+ "start": 1156.608,
+ "end": 1156.678,
+ "text": "were"
+ },
+ {
+ "id": 3407,
+ "start": 1156.678,
+ "end": 1157.068,
+ "text": "engineers"
+ },
+ {
+ "id": 3408,
+ "start": 1157.068,
+ "end": 1157.328,
+ "text": "working"
+ },
+ {
+ "id": 3409,
+ "start": 1157.328,
+ "end": 1157.508,
+ "text": "around"
+ },
+ {
+ "id": 3410,
+ "start": 1157.508,
+ "end": 1157.568,
+ "text": "the"
+ },
+ {
+ "id": 3411,
+ "start": 1157.568,
+ "end": 1157.988,
+ "text": "clock"
+ },
+ {
+ "id": 3412,
+ "start": 1157.8846666666666,
+ "end": 1158.1946666666668,
+ "text": "to"
+ },
+ {
+ "id": 3413,
+ "start": 1158.2013333333332,
+ "end": 1158.4013333333332,
+ "text": "solve"
+ },
+ {
+ "id": 3414,
+ "start": 1158.518,
+ "end": 1158.608,
+ "text": "for"
+ },
+ {
+ "id": 3415,
+ "start": 1158.608,
+ "end": 1159.388,
+ "text": "this"
+ },
+ {
+ "id": 3416,
+ "start": 1159.388,
+ "end": 1159.668,
+ "text": "because"
+ },
+ {
+ "id": 3417,
+ "start": 1159.668,
+ "end": 1159.798,
+ "text": "we"
+ },
+ {
+ "id": 3418,
+ "start": 1159.798,
+ "end": 1160.018,
+ "text": "felt"
+ },
+ {
+ "id": 3419,
+ "start": 1160.018,
+ "end": 1160.988,
+ "text": "like"
+ },
+ {
+ "id": 3420,
+ "start": 1160.988,
+ "end": 1161.338,
+ "text": "beyond"
+ },
+ {
+ "id": 3421,
+ "start": 1161.338,
+ "end": 1161.418,
+ "text": "it"
+ },
+ {
+ "id": 3422,
+ "start": 1161.418,
+ "end": 1161.718,
+ "text": "being"
+ },
+ {
+ "id": 3423,
+ "start": 1161.718,
+ "end": 1161.818,
+ "text": "a"
+ },
+ {
+ "id": 3424,
+ "start": 1161.818,
+ "end": 1162.288,
+ "text": "potential"
+ },
+ {
+ "id": 3425,
+ "start": 1162.288,
+ "end": 1162.868,
+ "text": "existential"
+ },
+ {
+ "id": 3426,
+ "start": 1162.868,
+ "end": 1163.368,
+ "text": "crisis"
+ },
+ {
+ "id": 3427,
+ "start": 1163.368,
+ "end": 1163.728,
+ "text": "for"
+ },
+ {
+ "id": 3428,
+ "start": 1163.718,
+ "end": 1163.878,
+ "text": "the"
+ },
+ {
+ "id": 3429,
+ "start": 1164.4530000000002,
+ "end": 1164.6879999999999,
+ "text": "product,"
+ },
+ {
+ "id": 3430,
+ "start": 1165.188,
+ "end": 1165.498,
+ "text": "there"
+ },
+ {
+ "id": 3431,
+ "start": 1165.498,
+ "end": 1165.628,
+ "text": "was"
+ },
+ {
+ "id": 3432,
+ "start": 1165.628,
+ "end": 1165.728,
+ "text": "a"
+ },
+ {
+ "id": 3433,
+ "start": 1165.9979999999998,
+ "end": 1166.193,
+ "text": "real"
+ },
+ {
+ "id": 3434,
+ "start": 1166.368,
+ "end": 1166.658,
+ "text": "sense"
+ },
+ {
+ "id": 3435,
+ "start": 1166.658,
+ "end": 1166.778,
+ "text": "of"
+ },
+ {
+ "id": 3436,
+ "start": 1166.778,
+ "end": 1167.108,
+ "text": "duty"
+ },
+ {
+ "id": 3437,
+ "start": 1167.108,
+ "end": 1167.548,
+ "text": "to"
+ },
+ {
+ "id": 3438,
+ "start": 1167.548,
+ "end": 1167.658,
+ "text": "the"
+ },
+ {
+ "id": 3439,
+ "start": 1167.658,
+ "end": 1167.928,
+ "text": "user"
+ },
+ {
+ "id": 3440,
+ "start": 1167.928,
+ "end": 1168.348,
+ "text": "base"
+ },
+ {
+ "id": 3441,
+ "start": 1168.348,
+ "end": 1168.488,
+ "text": "and"
+ },
+ {
+ "id": 3442,
+ "start": 1168.488,
+ "end": 1168.528,
+ "text": "a"
+ },
+ {
+ "id": 3443,
+ "start": 1168.528,
+ "end": 1168.728,
+ "text": "sense"
+ },
+ {
+ "id": 3444,
+ "start": 1168.728,
+ "end": 1168.798,
+ "text": "of"
+ },
+ {
+ "id": 3445,
+ "start": 1168.798,
+ "end": 1169.538,
+ "text": "responsibility"
+ },
+ {
+ "id": 3446,
+ "start": 1169.538,
+ "end": 1169.838,
+ "text": "for"
+ },
+ {
+ "id": 3447,
+ "start": 1169.838,
+ "end": 1170.888,
+ "text": "launching"
+ },
+ {
+ "id": 3448,
+ "start": 1170.888,
+ "end": 1171.078,
+ "text": "that"
+ },
+ {
+ "id": 3449,
+ "start": 1171.078,
+ "end": 1171.398,
+ "text": "feature"
+ },
+ {
+ "id": 3450,
+ "start": 1171.2930000000001,
+ "end": 1171.578,
+ "text": "and"
+ },
+ {
+ "id": 3451,
+ "start": 1171.508,
+ "end": 1171.758,
+ "text": "getting"
+ },
+ {
+ "id": 3452,
+ "start": 1171.758,
+ "end": 1171.908,
+ "text": "that"
+ },
+ {
+ "id": 3453,
+ "start": 1171.908,
+ "end": 1172.058,
+ "text": "kind"
+ },
+ {
+ "id": 3454,
+ "start": 1172.058,
+ "end": 1172.128,
+ "text": "of"
+ },
+ {
+ "id": 3455,
+ "start": 1172.128,
+ "end": 1174.388,
+ "text": "response."
+ },
+ {
+ "id": 3456,
+ "start": 1174.388,
+ "end": 1174.728,
+ "text": "That’s"
+ },
+ {
+ "id": 3457,
+ "start": 1174.728,
+ "end": 1174.888,
+ "text": "been"
+ },
+ {
+ "id": 3458,
+ "start": 1174.888,
+ "end": 1174.968,
+ "text": "a"
+ },
+ {
+ "id": 3459,
+ "start": 1174.968,
+ "end": 1175.268,
+ "text": "really"
+ },
+ {
+ "id": 3460,
+ "start": 1175.268,
+ "end": 1175.868,
+ "text": "consistent"
+ },
+ {
+ "id": 3461,
+ "start": 1175.868,
+ "end": 1176.398,
+ "text": "thread"
+ },
+ {
+ "id": 3462,
+ "start": 1176.398,
+ "end": 1176.598,
+ "text": "with"
+ },
+ {
+ "id": 3463,
+ "start": 1176.598,
+ "end": 1176.738,
+ "text": "this"
+ },
+ {
+ "id": 3464,
+ "start": 1176.738,
+ "end": 1177.318,
+ "text": "company"
+ },
+ {
+ "id": 3465,
+ "start": 1177.318,
+ "end": 1177.448,
+ "text": "for"
+ },
+ {
+ "id": 3466,
+ "start": 1177.448,
+ "end": 1177.558,
+ "text": "as"
+ },
+ {
+ "id": 3467,
+ "start": 1177.558,
+ "end": 1177.768,
+ "text": "long"
+ },
+ {
+ "id": 3468,
+ "start": 1177.768,
+ "end": 1177.898,
+ "text": "as"
+ },
+ {
+ "id": 3469,
+ "start": 1177.898,
+ "end": 1178.048,
+ "text": "I’ve"
+ },
+ {
+ "id": 3470,
+ "start": 1178.048,
+ "end": 1178.248,
+ "text": "known"
+ },
+ {
+ "id": 3471,
+ "start": 1178.248,
+ "end": 1178.348,
+ "text": "it."
+ },
+ {
+ "id": 3472,
+ "start": 1178.618,
+ "end": 1178.733,
+ "text": "…"
+ },
+ {
+ "id": 3473,
+ "start": 1178.988,
+ "end": 1179.118,
+ "text": "I"
+ },
+ {
+ "id": 3474,
+ "start": 1179.118,
+ "end": 1179.278,
+ "text": "mean,"
+ },
+ {
+ "id": 3475,
+ "start": 1179.278,
+ "end": 1179.398,
+ "text": "you"
+ },
+ {
+ "id": 3476,
+ "start": 1179.398,
+ "end": 1179.578,
+ "text": "were"
+ },
+ {
+ "id": 3477,
+ "start": 1179.578,
+ "end": 1179.648,
+ "text": "a"
+ },
+ {
+ "id": 3478,
+ "start": 1179.648,
+ "end": 1179.948,
+ "text": "much"
+ },
+ {
+ "id": 3479,
+ "start": 1179.948,
+ "end": 1180.278,
+ "text": "smaller"
+ },
+ {
+ "id": 3480,
+ "start": 1180.278,
+ "end": 1180.718,
+ "text": "company"
+ },
+ {
+ "id": 3481,
+ "start": 1180.718,
+ "end": 1181.008,
+ "text": "back"
+ },
+ {
+ "id": 3482,
+ "start": 1181.113,
+ "end": 1181.383,
+ "text": "then."
+ },
+ {
+ "id": 3483,
+ "start": 1181.508,
+ "end": 1181.758,
+ "text": "And"
+ },
+ {
+ "id": 3484,
+ "start": 1181.758,
+ "end": 1181.898,
+ "text": "when"
+ },
+ {
+ "id": 3485,
+ "start": 1181.898,
+ "end": 1182.008,
+ "text": "you"
+ },
+ {
+ "id": 3486,
+ "start": 1182.008,
+ "end": 1182.238,
+ "text": "grow"
+ },
+ {
+ "id": 3487,
+ "start": 1182.238,
+ "end": 1182.358,
+ "text": "to"
+ },
+ {
+ "id": 3488,
+ "start": 1182.358,
+ "end": 1182.438,
+ "text": "a"
+ },
+ {
+ "id": 3489,
+ "start": 1182.438,
+ "end": 1182.838,
+ "text": "scale"
+ },
+ {
+ "id": 3490,
+ "start": 1182.838,
+ "end": 1183.658,
+ "text": "of"
+ },
+ {
+ "id": 3491,
+ "start": 1183.658,
+ "end": 1183.838,
+ "text": "2.2"
+ },
+ {
+ "id": 3492,
+ "start": 1183.838,
+ "end": 1184.598,
+ "text": "billion"
+ },
+ {
+ "id": 3493,
+ "start": 1184.598,
+ "end": 1184.928,
+ "text": "and"
+ },
+ {
+ "id": 3494,
+ "start": 1184.928,
+ "end": 1185.128,
+ "text": "you’ve"
+ },
+ {
+ "id": 3495,
+ "start": 1185.128,
+ "end": 1185.478,
+ "text": "got"
+ },
+ {
+ "id": 3496,
+ "start": 1185.478,
+ "end": 1185.998,
+ "text": "major"
+ },
+ {
+ "id": 3497,
+ "start": 1185.998,
+ "end": 1186.698,
+ "text": "problems"
+ },
+ {
+ "id": 3498,
+ "start": 1186.698,
+ "end": 1186.878,
+ "text": "that"
+ },
+ {
+ "id": 3499,
+ "start": 1187.343,
+ "end": 1187.6030000000003,
+ "text": "develop"
+ },
+ {
+ "id": 3500,
+ "start": 1187.988,
+ "end": 1188.328,
+ "text": "all"
+ },
+ {
+ "id": 3501,
+ "start": 1188.328,
+ "end": 1188.548,
+ "text": "over"
+ },
+ {
+ "id": 3502,
+ "start": 1188.548,
+ "end": 1188.658,
+ "text": "the"
+ },
+ {
+ "id": 3503,
+ "start": 1188.658,
+ "end": 1189.208,
+ "text": "world"
+ },
+ {
+ "id": 3504,
+ "start": 1189.208,
+ "end": 1189.848,
+ "text": "in"
+ },
+ {
+ "id": 3505,
+ "start": 1189.848,
+ "end": 1190.138,
+ "text": "all"
+ },
+ {
+ "id": 3506,
+ "start": 1190.138,
+ "end": 1190.428,
+ "text": "sorts"
+ },
+ {
+ "id": 3507,
+ "start": 1190.428,
+ "end": 1190.518,
+ "text": "of"
+ },
+ {
+ "id": 3508,
+ "start": 1190.518,
+ "end": 1191.378,
+ "text": "languages,"
+ },
+ {
+ "id": 3509,
+ "start": 1191.378,
+ "end": 1191.508,
+ "text": "do"
+ },
+ {
+ "id": 3510,
+ "start": 1191.508,
+ "end": 1191.578,
+ "text": "you"
+ },
+ {
+ "id": 3511,
+ "start": 1191.578,
+ "end": 1191.868,
+ "text": "think"
+ },
+ {
+ "id": 3512,
+ "start": 1191.868,
+ "end": 1191.938,
+ "text": "the"
+ },
+ {
+ "id": 3513,
+ "start": 1191.938,
+ "end": 1192.458,
+ "text": "company’s"
+ },
+ {
+ "id": 3514,
+ "start": 1192.458,
+ "end": 1192.808,
+ "text": "been"
+ },
+ {
+ "id": 3515,
+ "start": 1192.808,
+ "end": 1194.078,
+ "text": "responsive,"
+ },
+ {
+ "id": 3516,
+ "start": 1194.078,
+ "end": 1194.318,
+ "text": "and"
+ },
+ {
+ "id": 3517,
+ "start": 1194.318,
+ "end": 1194.578,
+ "text": "can"
+ },
+ {
+ "id": 3518,
+ "start": 1194.578,
+ "end": 1194.828,
+ "text": "be"
+ },
+ {
+ "id": 3519,
+ "start": 1194.828,
+ "end": 1195.458,
+ "text": "responsive"
+ },
+ {
+ "id": 3520,
+ "start": 1195.458,
+ "end": 1195.568,
+ "text": "at"
+ },
+ {
+ "id": 3521,
+ "start": 1195.568,
+ "end": 1195.768,
+ "text": "that"
+ },
+ {
+ "id": 3522,
+ "start": 1195.768,
+ "end": 1195.978,
+ "text": "type"
+ },
+ {
+ "id": 3523,
+ "start": 1195.978,
+ "end": 1196.038,
+ "text": "of"
+ },
+ {
+ "id": 3524,
+ "start": 1196.038,
+ "end": 1196.838,
+ "text": "scale?"
+ },
+ {
+ "id": 3525,
+ "start": 1196.838,
+ "end": 1196.988,
+ "text": "I"
+ },
+ {
+ "id": 3526,
+ "start": 1196.988,
+ "end": 1197.218,
+ "text": "think"
+ },
+ {
+ "id": 3527,
+ "start": 1197.218,
+ "end": 1197.468,
+ "text": "that"
+ },
+ {
+ "id": 3528,
+ "start": 1197.468,
+ "end": 1197.918,
+ "text": "it’s"
+ },
+ {
+ "id": 3529,
+ "start": 1197.918,
+ "end": 1198.158,
+ "text": "starting"
+ },
+ {
+ "id": 3530,
+ "start": 1198.158,
+ "end": 1198.268,
+ "text": "to"
+ },
+ {
+ "id": 3531,
+ "start": 1198.268,
+ "end": 1198.638,
+ "text": "show"
+ },
+ {
+ "id": 3532,
+ "start": 1198.638,
+ "end": 1198.848,
+ "text": "that"
+ },
+ {
+ "id": 3533,
+ "start": 1198.848,
+ "end": 1198.998,
+ "text": "at"
+ },
+ {
+ "id": 3534,
+ "start": 1198.998,
+ "end": 1199.158,
+ "text": "this"
+ },
+ {
+ "id": 3535,
+ "start": 1199.158,
+ "end": 1199.498,
+ "text": "scale,"
+ },
+ {
+ "id": 3536,
+ "start": 1199.498,
+ "end": 1199.608,
+ "text": "it"
+ },
+ {
+ "id": 3537,
+ "start": 1199.608,
+ "end": 1199.768,
+ "text": "is"
+ },
+ {
+ "id": 3538,
+ "start": 1199.768,
+ "end": 1200.318,
+ "text": "challenging"
+ },
+ {
+ "id": 3539,
+ "start": 1200.318,
+ "end": 1200.528,
+ "text": "to"
+ },
+ {
+ "id": 3540,
+ "start": 1200.528,
+ "end": 1200.688,
+ "text": "be"
+ },
+ {
+ "id": 3541,
+ "start": 1200.688,
+ "end": 1201.238,
+ "text": "speedy"
+ },
+ {
+ "id": 3542,
+ "start": 1201.238,
+ "end": 1201.348,
+ "text": "and"
+ },
+ {
+ "id": 3543,
+ "start": 1201.348,
+ "end": 1202.448,
+ "text": "hasty"
+ },
+ {
+ "id": 3544,
+ "start": 1202.448,
+ "end": 1202.758,
+ "text": "with"
+ },
+ {
+ "id": 3545,
+ "start": 1202.758,
+ "end": 1203.848,
+ "text": "responding"
+ },
+ {
+ "id": 3546,
+ "start": 1203.848,
+ "end": 1204.328,
+ "text": "to"
+ },
+ {
+ "id": 3547,
+ "start": 1204.328,
+ "end": 1204.448,
+ "text": "the"
+ },
+ {
+ "id": 3548,
+ "start": 1204.448,
+ "end": 1204.688,
+ "text": "kinds"
+ },
+ {
+ "id": 3549,
+ "start": 1204.688,
+ "end": 1204.778,
+ "text": "of"
+ },
+ {
+ "id": 3550,
+ "start": 1204.778,
+ "end": 1205.148,
+ "text": "problems"
+ },
+ {
+ "id": 3551,
+ "start": 1205.148,
+ "end": 1205.308,
+ "text": "that"
+ },
+ {
+ "id": 3552,
+ "start": 1205.308,
+ "end": 1205.438,
+ "text": "may"
+ },
+ {
+ "id": 3553,
+ "start": 1205.438,
+ "end": 1206.228,
+ "text": "emerge"
+ },
+ {
+ "id": 3554,
+ "start": 1206.228,
+ "end": 1206.848,
+ "text": "supporting"
+ },
+ {
+ "id": 3555,
+ "start": 1206.848,
+ "end": 1206.898,
+ "text": "a"
+ },
+ {
+ "id": 3556,
+ "start": 1206.898,
+ "end": 1207.168,
+ "text": "user"
+ },
+ {
+ "id": 3557,
+ "start": 1207.168,
+ "end": 1207.418,
+ "text": "base"
+ },
+ {
+ "id": 3558,
+ "start": 1207.418,
+ "end": 1207.518,
+ "text": "of"
+ },
+ {
+ "id": 3559,
+ "start": 1207.518,
+ "end": 1207.768,
+ "text": "that"
+ },
+ {
+ "id": 3560,
+ "start": 1207.768,
+ "end": 1209.558,
+ "text": "scope."
+ },
+ {
+ "id": 3561,
+ "start": 1209.558,
+ "end": 1209.718,
+ "text": "But"
+ },
+ {
+ "id": 3562,
+ "start": 1209.718,
+ "end": 1209.868,
+ "text": "it’s"
+ },
+ {
+ "id": 3563,
+ "start": 1209.868,
+ "end": 1210.198,
+ "text": "not"
+ },
+ {
+ "id": 3564,
+ "start": 1210.198,
+ "end": 1210.848,
+ "text": "for"
+ },
+ {
+ "id": 3565,
+ "start": 1210.848,
+ "end": 1211.228,
+ "text": "lack"
+ },
+ {
+ "id": 3566,
+ "start": 1211.228,
+ "end": 1211.378,
+ "text": "of"
+ },
+ {
+ "id": 3567,
+ "start": 1211.378,
+ "end": 1212.248,
+ "text": "desire"
+ },
+ {
+ "id": 3568,
+ "start": 1211.823,
+ "end": 1212.4180000000001,
+ "text": "or"
+ },
+ {
+ "id": 3569,
+ "start": 1212.268,
+ "end": 1212.588,
+ "text": "lack"
+ },
+ {
+ "id": 3570,
+ "start": 1212.588,
+ "end": 1212.668,
+ "text": "of"
+ },
+ {
+ "id": 3571,
+ "start": 1212.668,
+ "end": 1213.278,
+ "text": "integrity"
+ },
+ {
+ "id": 3572,
+ "start": 1213.278,
+ "end": 1214.088,
+ "text": "or"
+ },
+ {
+ "id": 3573,
+ "start": 1214.088,
+ "end": 1215.018,
+ "text": "because"
+ },
+ {
+ "id": 3574,
+ "start": 1214.758,
+ "end": 1215.428,
+ "text": "some"
+ },
+ {
+ "id": 3575,
+ "start": 1215.4329999999998,
+ "end": 1215.938,
+ "text": "profit-seeking"
+ },
+ {
+ "id": 3576,
+ "start": 1216.108,
+ "end": 1216.448,
+ "text": "motive"
+ },
+ {
+ "id": 3577,
+ "start": 1216.448,
+ "end": 1216.838,
+ "text": "is"
+ },
+ {
+ "id": 3578,
+ "start": 1216.838,
+ "end": 1216.968,
+ "text": "in"
+ },
+ {
+ "id": 3579,
+ "start": 1216.968,
+ "end": 1217.068,
+ "text": "the"
+ },
+ {
+ "id": 3580,
+ "start": 1217.068,
+ "end": 1217.438,
+ "text": "way."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 1.41,
+ "end": 4.88,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 1,
+ "start": 4.88,
+ "end": 7.21,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 2,
+ "start": 7.21,
+ "end": 10.803333333333335,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 3,
+ "start": 10.94,
+ "end": 14.635000000000002,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 4,
+ "start": 14.94,
+ "end": 25.43,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 5,
+ "start": 25.43,
+ "end": 32.64,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 6,
+ "start": 32.64,
+ "end": 35.64,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 7,
+ "start": 35.18,
+ "end": 37.3,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 8,
+ "start": 37.36937499999999,
+ "end": 39.73,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 9,
+ "start": 39.73,
+ "end": 52.71,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 10,
+ "start": 52.71,
+ "end": 59.01,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 11,
+ "start": 59.01,
+ "end": 62.32,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 12,
+ "start": 62.32,
+ "end": 71.31,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 13,
+ "start": 71.31,
+ "end": 76.27,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 14,
+ "start": 76.27,
+ "end": 81.625,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 15,
+ "start": 81.93,
+ "end": 89.16,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 16,
+ "start": 89.075,
+ "end": 94.14666666666666,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 17,
+ "start": 93.935,
+ "end": 101.42,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 18,
+ "start": 101.72,
+ "end": 110.58,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 19,
+ "start": 110.58,
+ "end": 119.816,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 20,
+ "start": 119.58399999999997,
+ "end": 122.63500000000002,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 21,
+ "start": 123.12,
+ "end": 149.29000000000002,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 22,
+ "start": 149.82,
+ "end": 151.77,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 23,
+ "start": 151.77,
+ "end": 160.67,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 24,
+ "start": 160.67,
+ "end": 164.52,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 25,
+ "start": 164.52,
+ "end": 166.11,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 26,
+ "start": 166.11,
+ "end": 168.73,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 27,
+ "start": 168.73,
+ "end": 183.83,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 28,
+ "start": 183.83,
+ "end": 187.92999999999995,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 29,
+ "start": 188.81,
+ "end": 195.02,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 30,
+ "start": 195.02,
+ "end": 199.45,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 31,
+ "start": 199.45,
+ "end": 201.065,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 32,
+ "start": 201.3,
+ "end": 207.30500000000004,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 33,
+ "start": 207.62,
+ "end": 210.66,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 34,
+ "start": 210.66,
+ "end": 214.58399999999995,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 35,
+ "start": 214.21,
+ "end": 225.02,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 36,
+ "start": 225.02,
+ "end": 237.19,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 37,
+ "start": 237.19,
+ "end": 242.41,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 38,
+ "start": 242.41,
+ "end": 244.74,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 39,
+ "start": 244.495,
+ "end": 248.94,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 40,
+ "start": 248.94,
+ "end": 250.33,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 41,
+ "start": 250.33,
+ "end": 254.3,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 42,
+ "start": 254.3,
+ "end": 255.88,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 43,
+ "start": 255.88,
+ "end": 258.16,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 44,
+ "start": 258.16,
+ "end": 259.48999999999995,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 45,
+ "start": 260.02,
+ "end": 264.34,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 46,
+ "start": 264.34,
+ "end": 266.99,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 47,
+ "start": 267.38,
+ "end": 268.08,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 48,
+ "start": 268.08,
+ "end": 269.58,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 49,
+ "start": 270.01,
+ "end": 280.37,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 50,
+ "start": 280.37,
+ "end": 290.82,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 51,
+ "start": 290.82,
+ "end": 304.09,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 52,
+ "start": 304.09,
+ "end": 308.59,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 53,
+ "start": 308.59,
+ "end": 315.875,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 54,
+ "start": 316.33,
+ "end": 333.05,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 55,
+ "start": 333.73,
+ "end": 341.6,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 56,
+ "start": 341.05,
+ "end": 347.64,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 57,
+ "start": 347.64,
+ "end": 350.77,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 58,
+ "start": 350.77,
+ "end": 352.92,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 59,
+ "start": 352.92,
+ "end": 355.67,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 60,
+ "start": 355.67,
+ "end": 368.916,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 61,
+ "start": 368.916,
+ "end": 381.546,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 62,
+ "start": 381.481,
+ "end": 385.206,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 63,
+ "start": 385.206,
+ "end": 388.076,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 64,
+ "start": 388.076,
+ "end": 402.67100000000005,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 65,
+ "start": 403.196,
+ "end": 408.136,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 66,
+ "start": 408.456,
+ "end": 413.21099999999996,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 67,
+ "start": 413.496,
+ "end": 414.476,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 68,
+ "start": 414.476,
+ "end": 420.296,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 69,
+ "start": 420.296,
+ "end": 422.96600000000007,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 70,
+ "start": 423.53600000000006,
+ "end": 432.876,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 71,
+ "start": 432.876,
+ "end": 436.046,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 72,
+ "start": 436.266,
+ "end": 439.236,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 73,
+ "start": 439.236,
+ "end": 440.166,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 74,
+ "start": 440.26099999999997,
+ "end": 440.57599999999996,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 75,
+ "start": 440.696,
+ "end": 452.396,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 76,
+ "start": 452.396,
+ "end": 469.586,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 77,
+ "start": 469.586,
+ "end": 488.576,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 78,
+ "start": 488.776,
+ "end": 500.716,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 79,
+ "start": 500.716,
+ "end": 517.176,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 80,
+ "start": 517.1659999999999,
+ "end": 517.566,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 81,
+ "start": 517.796,
+ "end": 524.716,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 82,
+ "start": 524.716,
+ "end": 526.716,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 83,
+ "start": 526.716,
+ "end": 535.606,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 84,
+ "start": 535.936,
+ "end": 538.896,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 85,
+ "start": 538.896,
+ "end": 544.916,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 86,
+ "start": 544.916,
+ "end": 554.686,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 87,
+ "start": 554.3960000000001,
+ "end": 556.776,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 88,
+ "start": 556.776,
+ "end": 560.4409999999999,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 89,
+ "start": 560.976,
+ "end": 565.736,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 90,
+ "start": 565.736,
+ "end": 574.546,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 91,
+ "start": 574.546,
+ "end": 576.946,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 92,
+ "start": 576.946,
+ "end": 588.076,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 93,
+ "start": 588.076,
+ "end": 596.046,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 94,
+ "start": 596.046,
+ "end": 596.956,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 95,
+ "start": 596.956,
+ "end": 597.446,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 96,
+ "start": 597.446,
+ "end": 598.386,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 97,
+ "start": 598.386,
+ "end": 603.476,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 98,
+ "start": 603.476,
+ "end": 610.236,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 99,
+ "start": 610.236,
+ "end": 621.306,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 100,
+ "start": 621.9226666666667,
+ "end": 634.0310000000002,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 101,
+ "start": 635.036,
+ "end": 636.436,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 102,
+ "start": 636.436,
+ "end": 639.456,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 103,
+ "start": 639.456,
+ "end": 656.2393333333333,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 104,
+ "start": 656.1326666666666,
+ "end": 658.236,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 105,
+ "start": 658.236,
+ "end": 667.616,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 106,
+ "start": 667.616,
+ "end": 673.256,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 107,
+ "start": 673.256,
+ "end": 676.366,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 108,
+ "start": 676.366,
+ "end": 687.796,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 109,
+ "start": 687.796,
+ "end": 689.6659999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 110,
+ "start": 689.766,
+ "end": 694.536,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 111,
+ "start": 694.536,
+ "end": 696.346,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 112,
+ "start": 696.346,
+ "end": 702.541,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 113,
+ "start": 702.686,
+ "end": 705.1910000000001,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 114,
+ "start": 705.636,
+ "end": 708.9659999999999,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 115,
+ "start": 709.036,
+ "end": 715.836,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 116,
+ "start": 715.836,
+ "end": 720.0443333333334,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 117,
+ "start": 719.476,
+ "end": 726.166,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 118,
+ "start": 727.1010000000001,
+ "end": 735.5393333333334,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 119,
+ "start": 735.866,
+ "end": 741.916,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 120,
+ "start": 741.916,
+ "end": 754.356,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 121,
+ "start": 754.356,
+ "end": 764.056,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 122,
+ "start": 764.056,
+ "end": 767.5285,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 123,
+ "start": 767.466,
+ "end": 781.616,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 124,
+ "start": 781.616,
+ "end": 784.056,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 125,
+ "start": 784.056,
+ "end": 785.696,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 126,
+ "start": 785.696,
+ "end": 793.256,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 127,
+ "start": 793.256,
+ "end": 796.356,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 128,
+ "start": 796.356,
+ "end": 800.646,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 129,
+ "start": 800.996,
+ "end": 808.506,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 130,
+ "start": 808.506,
+ "end": 815.726,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 131,
+ "start": 815.726,
+ "end": 818.6793333333334,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 132,
+ "start": 818.806,
+ "end": 825.426,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 133,
+ "start": 825.426,
+ "end": 846.0895,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 134,
+ "start": 846.153,
+ "end": 849.923,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 135,
+ "start": 850.5379999999998,
+ "end": 850.8330000000003,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 136,
+ "start": 851.633,
+ "end": 854.593,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 137,
+ "start": 854.823,
+ "end": 856.9663333333333,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 138,
+ "start": 857.2663333333333,
+ "end": 857.3596666666666,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 139,
+ "start": 857.713,
+ "end": 862.353,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 140,
+ "start": 862.353,
+ "end": 867.683,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 141,
+ "start": 867.683,
+ "end": 879.413,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 142,
+ "start": 879.413,
+ "end": 892.1380000000004,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 143,
+ "start": 892.793,
+ "end": 902.223,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 144,
+ "start": 902.3963333333334,
+ "end": 911.033,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 145,
+ "start": 911.033,
+ "end": 916.9196666666666,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 146,
+ "start": 917.0830000000001,
+ "end": 917.3163333333333,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 147,
+ "start": 917.673,
+ "end": 925.8530000000001,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 148,
+ "start": 926.393,
+ "end": 929.223,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 149,
+ "start": 929.5596666666668,
+ "end": 939.263,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 150,
+ "start": 939.263,
+ "end": 947.273,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 151,
+ "start": 947.273,
+ "end": 949.343,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 152,
+ "start": 949.343,
+ "end": 951.6496666666667,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 153,
+ "start": 951.793,
+ "end": 967.408,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 154,
+ "start": 967.408,
+ "end": 975.828,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 155,
+ "start": 975.828,
+ "end": 992.4279999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 156,
+ "start": 993.368,
+ "end": 998.168,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 157,
+ "start": 998.168,
+ "end": 1002.568,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 158,
+ "start": 1002.568,
+ "end": 1009.1079999999998,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 159,
+ "start": 1009.238,
+ "end": 1014.328,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 160,
+ "start": 1014.328,
+ "end": 1017.588,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 161,
+ "start": 1017.588,
+ "end": 1023.3713333333334,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 162,
+ "start": 1023.7563333333331,
+ "end": 1025.1879999999999,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 163,
+ "start": 1025.428,
+ "end": 1028.368,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 164,
+ "start": 1028.368,
+ "end": 1033.668,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 165,
+ "start": 1033.668,
+ "end": 1057.423,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 166,
+ "start": 1057.968,
+ "end": 1071.7413333333334,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 167,
+ "start": 1071.858,
+ "end": 1080.278,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 168,
+ "start": 1080.698,
+ "end": 1098.098,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 169,
+ "start": 1098.098,
+ "end": 1117.328,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 170,
+ "start": 1117.678,
+ "end": 1120.268,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 171,
+ "start": 1120.268,
+ "end": 1122.2846666666665,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 172,
+ "start": 1121.748,
+ "end": 1127.468,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 173,
+ "start": 1127.468,
+ "end": 1134.388,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 174,
+ "start": 1134.388,
+ "end": 1136.278,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 175,
+ "start": 1136.278,
+ "end": 1142.0879999999997,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 176,
+ "start": 1142.588,
+ "end": 1150.5846666666666,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 177,
+ "start": 1150.848,
+ "end": 1156.488,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 178,
+ "start": 1156.488,
+ "end": 1174.388,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 179,
+ "start": 1174.388,
+ "end": 1178.348,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 180,
+ "start": 1178.618,
+ "end": 1181.383,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 181,
+ "start": 1181.508,
+ "end": 1196.838,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 182,
+ "start": 1196.838,
+ "end": 1209.558,
+ "speaker": "Soleio Cuervo"
+ },
+ {
+ "id": 183,
+ "start": 1209.558,
+ "end": 1217.438,
+ "speaker": "Soleio Cuervo"
+ }
+ ]
+ }
+ },
+ {
+ "_id": "1001cjw29xii80000ird74yb19swa",
+ "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
+ "title": "Nathaniel Gleicher",
+ "description": "Nathaniel Gleicher, Facebook Head of Cybersecurity Policy. Interview for PBS Frontline, The Facebook Dilemma",
+ "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Nathaniel+Gleicher-F0ykdaOck_M.mp4",
+ "clipName": "The Facebook Dilemma - Nathaniel Gleicher-F0ykdaOck_M.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "id": 0,
+ "start": 1.58,
+ "end": 1.68,
+ "text": "Is"
+ },
+ {
+ "id": 1,
+ "start": 1.68,
+ "end": 1.78,
+ "text": "it"
+ },
+ {
+ "id": 2,
+ "start": 1.78,
+ "end": 2.28,
+ "text": "basically"
+ },
+ {
+ "id": 3,
+ "start": 2.28,
+ "end": 2.47,
+ "text": "your"
+ },
+ {
+ "id": 4,
+ "start": 2.47,
+ "end": 2.94,
+ "text": "job"
+ },
+ {
+ "id": 5,
+ "start": 3.405,
+ "end": 4.039999999999999,
+ "text": "to"
+ },
+ {
+ "id": 6,
+ "start": 4.34,
+ "end": 5.14,
+ "text": "protect"
+ },
+ {
+ "id": 7,
+ "start": 5.14,
+ "end": 5.35,
+ "text": "these"
+ },
+ {
+ "id": 8,
+ "start": 5.35,
+ "end": 5.99,
+ "text": "elections"
+ },
+ {
+ "id": 9,
+ "start": 5.99,
+ "end": 6.29,
+ "text": "coming"
+ },
+ {
+ "id": 10,
+ "start": 6.29,
+ "end": 6.8,
+ "text": "up"
+ },
+ {
+ "id": 11,
+ "start": 6.8,
+ "end": 7.38,
+ "text": "from"
+ },
+ {
+ "id": 12,
+ "start": 7.38,
+ "end": 7.73,
+ "text": "foreign"
+ },
+ {
+ "id": 13,
+ "start": 7.73,
+ "end": 8.11,
+ "text": "actors"
+ },
+ {
+ "id": 14,
+ "start": 8.11,
+ "end": 8.61,
+ "text": "interfering"
+ },
+ {
+ "id": 15,
+ "start": 8.61,
+ "end": 8.73,
+ "text": "with"
+ },
+ {
+ "id": 16,
+ "start": 9.375,
+ "end": 9.59,
+ "text": "Facebook?"
+ },
+ {
+ "id": 17,
+ "start": 10.14,
+ "end": 10.45,
+ "text": "It’s"
+ },
+ {
+ "id": 18,
+ "start": 10.45,
+ "end": 10.52,
+ "text": "a"
+ },
+ {
+ "id": 19,
+ "start": 10.52,
+ "end": 10.81,
+ "text": "big"
+ },
+ {
+ "id": 20,
+ "start": 10.81,
+ "end": 11.36,
+ "text": "team,"
+ },
+ {
+ "id": 21,
+ "start": 11.36,
+ "end": 11.71,
+ "text": "but"
+ },
+ {
+ "id": 22,
+ "start": 11.71,
+ "end": 12.26,
+ "text": "I"
+ },
+ {
+ "id": 23,
+ "start": 12.26,
+ "end": 12.43,
+ "text": "think"
+ },
+ {
+ "id": 24,
+ "start": 12.43,
+ "end": 12.52,
+ "text": "what"
+ },
+ {
+ "id": 25,
+ "start": 12.52,
+ "end": 12.64,
+ "text": "we’re"
+ },
+ {
+ "id": 26,
+ "start": 12.64,
+ "end": 13.02,
+ "text": "focused"
+ },
+ {
+ "id": 27,
+ "start": 13.02,
+ "end": 13.28,
+ "text": "on"
+ },
+ {
+ "id": 28,
+ "start": 13.28,
+ "end": 14.16,
+ "text": "is"
+ },
+ {
+ "id": 29,
+ "start": 14.16,
+ "end": 14.41,
+ "text": "not"
+ },
+ {
+ "id": 30,
+ "start": 14.41,
+ "end": 14.58,
+ "text": "just"
+ },
+ {
+ "id": 31,
+ "start": 14.58,
+ "end": 14.8,
+ "text": "around"
+ },
+ {
+ "id": 32,
+ "start": 15.180000000000001,
+ "end": 15.379999999999999,
+ "text": "elections,"
+ },
+ {
+ "id": 33,
+ "start": 15.78,
+ "end": 15.96,
+ "text": "but"
+ },
+ {
+ "id": 34,
+ "start": 15.96,
+ "end": 16.15,
+ "text": "any"
+ },
+ {
+ "id": 35,
+ "start": 16.15,
+ "end": 16.34,
+ "text": "time"
+ },
+ {
+ "id": 36,
+ "start": 16.34,
+ "end": 16.41,
+ "text": "you"
+ },
+ {
+ "id": 37,
+ "start": 16.41,
+ "end": 16.53,
+ "text": "have"
+ },
+ {
+ "id": 38,
+ "start": 16.53,
+ "end": 16.74,
+ "text": "open"
+ },
+ {
+ "id": 39,
+ "start": 16.74,
+ "end": 16.98,
+ "text": "public"
+ },
+ {
+ "id": 40,
+ "start": 16.98,
+ "end": 17.25,
+ "text": "debate"
+ },
+ {
+ "id": 41,
+ "start": 17.25,
+ "end": 17.41,
+ "text": "like"
+ },
+ {
+ "id": 42,
+ "start": 17.4,
+ "end": 17.63,
+ "text": "this,"
+ },
+ {
+ "id": 43,
+ "start": 17.502,
+ "end": 17.706,
+ "text": "there"
+ },
+ {
+ "id": 44,
+ "start": 17.604,
+ "end": 17.782,
+ "text": "are"
+ },
+ {
+ "id": 45,
+ "start": 17.706,
+ "end": 17.858,
+ "text": "going"
+ },
+ {
+ "id": 46,
+ "start": 17.808,
+ "end": 17.934,
+ "text": "to"
+ },
+ {
+ "id": 47,
+ "start": 17.91,
+ "end": 18.01,
+ "text": "be"
+ },
+ {
+ "id": 48,
+ "start": 18.01,
+ "end": 18.39,
+ "text": "actors"
+ },
+ {
+ "id": 49,
+ "start": 18.39,
+ "end": 18.49,
+ "text": "that"
+ },
+ {
+ "id": 50,
+ "start": 18.49,
+ "end": 18.55,
+ "text": "are"
+ },
+ {
+ "id": 51,
+ "start": 18.55,
+ "end": 18.67,
+ "text": "going"
+ },
+ {
+ "id": 52,
+ "start": 18.67,
+ "end": 18.73,
+ "text": "to"
+ },
+ {
+ "id": 53,
+ "start": 18.73,
+ "end": 18.84,
+ "text": "try"
+ },
+ {
+ "id": 54,
+ "start": 18.84,
+ "end": 18.91,
+ "text": "to"
+ },
+ {
+ "id": 55,
+ "start": 18.91,
+ "end": 19.63,
+ "text": "manipulate"
+ },
+ {
+ "id": 56,
+ "start": 19.63,
+ "end": 19.83,
+ "text": "that"
+ },
+ {
+ "id": 57,
+ "start": 19.83,
+ "end": 20.1,
+ "text": "public"
+ },
+ {
+ "id": 58,
+ "start": 20.1,
+ "end": 20.43,
+ "text": "debate."
+ },
+ {
+ "id": 59,
+ "start": 20.43,
+ "end": 20.68,
+ "text": "How"
+ },
+ {
+ "id": 60,
+ "start": 20.68,
+ "end": 20.76,
+ "text": "do"
+ },
+ {
+ "id": 61,
+ "start": 20.76,
+ "end": 20.86,
+ "text": "we"
+ },
+ {
+ "id": 62,
+ "start": 20.86,
+ "end": 21.16,
+ "text": "figure"
+ },
+ {
+ "id": 63,
+ "start": 21.16,
+ "end": 22.04,
+ "text": "out"
+ },
+ {
+ "id": 64,
+ "start": 22.04,
+ "end": 22.29,
+ "text": "what"
+ },
+ {
+ "id": 65,
+ "start": 22.29,
+ "end": 22.35,
+ "text": "are"
+ },
+ {
+ "id": 66,
+ "start": 22.35,
+ "end": 22.42,
+ "text": "the"
+ },
+ {
+ "id": 67,
+ "start": 22.42,
+ "end": 22.79,
+ "text": "techniques"
+ },
+ {
+ "id": 68,
+ "start": 22.79,
+ "end": 22.9,
+ "text": "they’re"
+ },
+ {
+ "id": 69,
+ "start": 22.9,
+ "end": 23.71,
+ "text": "using,"
+ },
+ {
+ "id": 70,
+ "start": 23.71,
+ "end": 23.85,
+ "text": "and"
+ },
+ {
+ "id": 71,
+ "start": 23.85,
+ "end": 23.93,
+ "text": "how"
+ },
+ {
+ "id": 72,
+ "start": 23.93,
+ "end": 24,
+ "text": "do"
+ },
+ {
+ "id": 73,
+ "start": 24,
+ "end": 24.07,
+ "text": "we"
+ },
+ {
+ "id": 74,
+ "start": 24.07,
+ "end": 24.22,
+ "text": "make"
+ },
+ {
+ "id": 75,
+ "start": 24.22,
+ "end": 24.29,
+ "text": "it"
+ },
+ {
+ "id": 76,
+ "start": 24.29,
+ "end": 24.48,
+ "text": "much"
+ },
+ {
+ "id": 77,
+ "start": 24.48,
+ "end": 25.4,
+ "text": "harder?"
+ },
+ {
+ "id": 78,
+ "start": 25.4,
+ "end": 26.31,
+ "text": "And"
+ },
+ {
+ "id": 79,
+ "start": 26.31,
+ "end": 26.58,
+ "text": "how"
+ },
+ {
+ "id": 80,
+ "start": 26.58,
+ "end": 26.91,
+ "text": "actually"
+ },
+ {
+ "id": 81,
+ "start": 26.91,
+ "end": 26.99,
+ "text": "do"
+ },
+ {
+ "id": 82,
+ "start": 26.99,
+ "end": 27.05,
+ "text": "you"
+ },
+ {
+ "id": 83,
+ "start": 27.05,
+ "end": 27.22,
+ "text": "do"
+ },
+ {
+ "id": 84,
+ "start": 27.22,
+ "end": 29.8,
+ "text": "that?"
+ },
+ {
+ "id": 85,
+ "start": 28.32,
+ "end": 30.46,
+ "text": "So"
+ },
+ {
+ "id": 86,
+ "start": 29.635000000000005,
+ "end": 31.004999999999995,
+ "text": "two"
+ },
+ {
+ "id": 87,
+ "start": 30.95,
+ "end": 31.55,
+ "text": "pieces,"
+ },
+ {
+ "id": 88,
+ "start": 31.55,
+ "end": 31.81,
+ "text": "right?"
+ },
+ {
+ "id": 89,
+ "start": 31.81,
+ "end": 31.9,
+ "text": "The"
+ },
+ {
+ "id": 90,
+ "start": 31.9,
+ "end": 32.45,
+ "text": "first"
+ },
+ {
+ "id": 91,
+ "start": 32.45,
+ "end": 33.09,
+ "text": "is"
+ },
+ {
+ "id": 92,
+ "start": 33.09,
+ "end": 33.39,
+ "text": "we"
+ },
+ {
+ "id": 93,
+ "start": 33.39,
+ "end": 33.77,
+ "text": "have"
+ },
+ {
+ "id": 94,
+ "start": 33.77,
+ "end": 33.82,
+ "text": "a"
+ },
+ {
+ "id": 95,
+ "start": 33.82,
+ "end": 34.25,
+ "text": "manual"
+ },
+ {
+ "id": 96,
+ "start": 34.25,
+ "end": 34.43,
+ "text": "team"
+ },
+ {
+ "id": 97,
+ "start": 34.43,
+ "end": 34.53,
+ "text": "of"
+ },
+ {
+ "id": 98,
+ "start": 34.53,
+ "end": 35.6,
+ "text": "investigators"
+ },
+ {
+ "id": 99,
+ "start": 35.6,
+ "end": 35.71,
+ "text": "and"
+ },
+ {
+ "id": 100,
+ "start": 35.71,
+ "end": 35.74,
+ "text": "a"
+ },
+ {
+ "id": 101,
+ "start": 35.74,
+ "end": 36.01,
+ "text": "manual"
+ },
+ {
+ "id": 102,
+ "start": 36.01,
+ "end": 36.16,
+ "text": "team"
+ },
+ {
+ "id": 103,
+ "start": 36.16,
+ "end": 36.25,
+ "text": "of"
+ },
+ {
+ "id": 104,
+ "start": 36.25,
+ "end": 36.8,
+ "text": "investigators"
+ },
+ {
+ "id": 105,
+ "start": 36.8,
+ "end": 36.92,
+ "text": "that"
+ },
+ {
+ "id": 106,
+ "start": 36.864999999999995,
+ "end": 37,
+ "text": "is"
+ },
+ {
+ "id": 107,
+ "start": 36.93,
+ "end": 37.08,
+ "text": "sort"
+ },
+ {
+ "id": 108,
+ "start": 37.08,
+ "end": 37.15,
+ "text": "of"
+ },
+ {
+ "id": 109,
+ "start": 37.15,
+ "end": 37.77,
+ "text": "searching"
+ },
+ {
+ "id": 110,
+ "start": 37.77,
+ "end": 38.47,
+ "text": "for"
+ },
+ {
+ "id": 111,
+ "start": 38.47,
+ "end": 38.57,
+ "text": "the"
+ },
+ {
+ "id": 112,
+ "start": 38.57,
+ "end": 38.76,
+ "text": "bad"
+ },
+ {
+ "id": 113,
+ "start": 39.055,
+ "end": 39.24,
+ "text": "behavior."
+ },
+ {
+ "id": 114,
+ "start": 39.54,
+ "end": 39.72,
+ "text": "We"
+ },
+ {
+ "id": 115,
+ "start": 39.72,
+ "end": 39.89,
+ "text": "think"
+ },
+ {
+ "id": 116,
+ "start": 39.89,
+ "end": 39.97,
+ "text": "of"
+ },
+ {
+ "id": 117,
+ "start": 39.97,
+ "end": 40.09,
+ "text": "this"
+ },
+ {
+ "id": 118,
+ "start": 40.09,
+ "end": 40.25,
+ "text": "kind"
+ },
+ {
+ "id": 119,
+ "start": 40.25,
+ "end": 40.31,
+ "text": "of"
+ },
+ {
+ "id": 120,
+ "start": 40.31,
+ "end": 40.47,
+ "text": "like"
+ },
+ {
+ "id": 121,
+ "start": 40.47,
+ "end": 40.68,
+ "text": "looking"
+ },
+ {
+ "id": 122,
+ "start": 40.68,
+ "end": 40.79,
+ "text": "for"
+ },
+ {
+ "id": 123,
+ "start": 40.79,
+ "end": 41.07,
+ "text": "needles"
+ },
+ {
+ "id": 124,
+ "start": 41.07,
+ "end": 41.14,
+ "text": "in"
+ },
+ {
+ "id": 125,
+ "start": 41.14,
+ "end": 41.18,
+ "text": "a"
+ },
+ {
+ "id": 126,
+ "start": 41.18,
+ "end": 42.03,
+ "text": "haystack,"
+ },
+ {
+ "id": 127,
+ "start": 42.03,
+ "end": 42.3,
+ "text": "because"
+ },
+ {
+ "id": 128,
+ "start": 42.3,
+ "end": 42.36,
+ "text": "it"
+ },
+ {
+ "id": 129,
+ "start": 42.379999999999995,
+ "end": 42.51,
+ "text": "can"
+ },
+ {
+ "id": 130,
+ "start": 42.46,
+ "end": 42.66,
+ "text": "take"
+ },
+ {
+ "id": 131,
+ "start": 42.66,
+ "end": 42.72,
+ "text": "a"
+ },
+ {
+ "id": 132,
+ "start": 42.72,
+ "end": 43.12,
+ "text": "long"
+ },
+ {
+ "id": 133,
+ "start": 43.12,
+ "end": 43.52,
+ "text": "time."
+ },
+ {
+ "id": 134,
+ "start": 43.52,
+ "end": 43.59,
+ "text": "It"
+ },
+ {
+ "id": 135,
+ "start": 43.6,
+ "end": 43.68000000000001,
+ "text": "can"
+ },
+ {
+ "id": 136,
+ "start": 43.68,
+ "end": 43.77,
+ "text": "be"
+ },
+ {
+ "id": 137,
+ "start": 43.77,
+ "end": 43.97,
+ "text": "really"
+ },
+ {
+ "id": 138,
+ "start": 43.97,
+ "end": 44.4,
+ "text": "burdensome"
+ },
+ {
+ "id": 139,
+ "start": 44.4,
+ "end": 44.5,
+ "text": "to"
+ },
+ {
+ "id": 140,
+ "start": 44.58,
+ "end": 44.71,
+ "text": "run"
+ },
+ {
+ "id": 141,
+ "start": 44.76,
+ "end": 44.92,
+ "text": "these"
+ },
+ {
+ "id": 142,
+ "start": 45.04,
+ "end": 45.18000000000001,
+ "text": "investigations."
+ },
+ {
+ "id": 143,
+ "start": 45.32,
+ "end": 45.440000000000005,
+ "text": "It"
+ },
+ {
+ "id": 144,
+ "start": 45.6,
+ "end": 45.7,
+ "text": "can"
+ },
+ {
+ "id": 145,
+ "start": 45.7,
+ "end": 45.86,
+ "text": "take"
+ },
+ {
+ "id": 146,
+ "start": 45.86750000000001,
+ "end": 46.03,
+ "text": "weeks;"
+ },
+ {
+ "id": 147,
+ "start": 46.035000000000004,
+ "end": 46.199999999999996,
+ "text": "it"
+ },
+ {
+ "id": 148,
+ "start": 46.2025,
+ "end": 46.37,
+ "text": "can"
+ },
+ {
+ "id": 149,
+ "start": 46.37,
+ "end": 46.54,
+ "text": "take"
+ },
+ {
+ "id": 150,
+ "start": 46.54,
+ "end": 47.05,
+ "text": "months."
+ },
+ {
+ "id": 151,
+ "start": 47.05,
+ "end": 47.24,
+ "text": "But"
+ },
+ {
+ "id": 152,
+ "start": 47.24,
+ "end": 47.4,
+ "text": "this"
+ },
+ {
+ "id": 153,
+ "start": 47.4,
+ "end": 47.51,
+ "text": "is"
+ },
+ {
+ "id": 154,
+ "start": 47.51,
+ "end": 47.58,
+ "text": "the"
+ },
+ {
+ "id": 155,
+ "start": 47.58,
+ "end": 47.77,
+ "text": "most"
+ },
+ {
+ "id": 156,
+ "start": 47.77,
+ "end": 48.24,
+ "text": "effective"
+ },
+ {
+ "id": 157,
+ "start": 48.24,
+ "end": 48.43,
+ "text": "way"
+ },
+ {
+ "id": 158,
+ "start": 48.43,
+ "end": 48.54,
+ "text": "to"
+ },
+ {
+ "id": 159,
+ "start": 48.54,
+ "end": 49.09,
+ "text": "find"
+ },
+ {
+ "id": 160,
+ "start": 49.09,
+ "end": 49.17,
+ "text": "the"
+ },
+ {
+ "id": 161,
+ "start": 49.24,
+ "end": 49.595,
+ "text": "really"
+ },
+ {
+ "id": 162,
+ "start": 49.39,
+ "end": 50.02,
+ "text": "sophisticated"
+ },
+ {
+ "id": 163,
+ "start": 50.02,
+ "end": 50.2,
+ "text": "bad"
+ },
+ {
+ "id": 164,
+ "start": 50.2,
+ "end": 51.04,
+ "text": "actors."
+ },
+ {
+ "id": 165,
+ "start": 50.65,
+ "end": 51.22,
+ "text": "You"
+ },
+ {
+ "id": 166,
+ "start": 51.25499999999999,
+ "end": 51.69500000000001,
+ "text": "complement"
+ },
+ {
+ "id": 167,
+ "start": 51.86,
+ "end": 52.17,
+ "text": "that"
+ },
+ {
+ "id": 168,
+ "start": 52.17,
+ "end": 52.41,
+ "text": "with"
+ },
+ {
+ "id": 169,
+ "start": 52.41,
+ "end": 52.58,
+ "text": "much"
+ },
+ {
+ "id": 170,
+ "start": 52.58,
+ "end": 52.71,
+ "text": "more"
+ },
+ {
+ "id": 171,
+ "start": 52.71,
+ "end": 53.26,
+ "text": "scaled"
+ },
+ {
+ "id": 172,
+ "start": 53.305,
+ "end": 53.755,
+ "text": "work."
+ },
+ {
+ "id": 173,
+ "start": 53.9,
+ "end": 54.25,
+ "text": "With"
+ },
+ {
+ "id": 174,
+ "start": 54.25,
+ "end": 54.34,
+ "text": "the"
+ },
+ {
+ "id": 175,
+ "start": 54.34,
+ "end": 54.64,
+ "text": "ability"
+ },
+ {
+ "id": 176,
+ "start": 54.64,
+ "end": 54.72,
+ "text": "to"
+ },
+ {
+ "id": 177,
+ "start": 55.05499999999999,
+ "end": 55.144999999999996,
+ "text": "work—so"
+ },
+ {
+ "id": 178,
+ "start": 55.47,
+ "end": 55.57,
+ "text": "a"
+ },
+ {
+ "id": 179,
+ "start": 55.57,
+ "end": 55.72,
+ "text": "good"
+ },
+ {
+ "id": 180,
+ "start": 55.72,
+ "end": 56.19,
+ "text": "example"
+ },
+ {
+ "id": 181,
+ "start": 56.19,
+ "end": 56.29,
+ "text": "of"
+ },
+ {
+ "id": 182,
+ "start": 56.29,
+ "end": 56.56,
+ "text": "this"
+ },
+ {
+ "id": 183,
+ "start": 56.56,
+ "end": 57.15,
+ "text": "is,"
+ },
+ {
+ "id": 184,
+ "start": 57.15,
+ "end": 57.51,
+ "text": "we’ve"
+ },
+ {
+ "id": 185,
+ "start": 57.51,
+ "end": 58.1,
+ "text": "seen"
+ },
+ {
+ "id": 186,
+ "start": 58.1,
+ "end": 58.2,
+ "text": "a"
+ },
+ {
+ "id": 187,
+ "start": 58.2,
+ "end": 58.49,
+ "text": "lot"
+ },
+ {
+ "id": 188,
+ "start": 58.49,
+ "end": 58.58,
+ "text": "of"
+ },
+ {
+ "id": 189,
+ "start": 58.58,
+ "end": 58.84,
+ "text": "bad"
+ },
+ {
+ "id": 190,
+ "start": 58.84,
+ "end": 59.55,
+ "text": "actors"
+ },
+ {
+ "id": 191,
+ "start": 59.55,
+ "end": 59.88,
+ "text": "rely"
+ },
+ {
+ "id": 192,
+ "start": 59.88,
+ "end": 60.02,
+ "text": "on"
+ },
+ {
+ "id": 193,
+ "start": 60.02,
+ "end": 60.2,
+ "text": "fake"
+ },
+ {
+ "id": 194,
+ "start": 60.2,
+ "end": 61.2,
+ "text": "accounts"
+ },
+ {
+ "id": 195,
+ "start": 61.2,
+ "end": 61.33,
+ "text": "that"
+ },
+ {
+ "id": 196,
+ "start": 61.33,
+ "end": 61.41,
+ "text": "they"
+ },
+ {
+ "id": 197,
+ "start": 61.41,
+ "end": 61.54,
+ "text": "will"
+ },
+ {
+ "id": 198,
+ "start": 61.54,
+ "end": 61.76,
+ "text": "use"
+ },
+ {
+ "id": 199,
+ "start": 61.76,
+ "end": 61.84,
+ "text": "to"
+ },
+ {
+ "id": 200,
+ "start": 61.84,
+ "end": 62.16,
+ "text": "conceal"
+ },
+ {
+ "id": 201,
+ "start": 62.16,
+ "end": 62.27,
+ "text": "their"
+ },
+ {
+ "id": 202,
+ "start": 62.27,
+ "end": 62.8,
+ "text": "identity"
+ },
+ {
+ "id": 203,
+ "start": 62.8,
+ "end": 62.9,
+ "text": "and"
+ },
+ {
+ "id": 204,
+ "start": 62.9,
+ "end": 62.97,
+ "text": "to"
+ },
+ {
+ "id": 205,
+ "start": 62.97,
+ "end": 63.31,
+ "text": "drive"
+ },
+ {
+ "id": 206,
+ "start": 63.31,
+ "end": 63.43,
+ "text": "their"
+ },
+ {
+ "id": 207,
+ "start": 63.43,
+ "end": 63.66,
+ "text": "false"
+ },
+ {
+ "id": 208,
+ "start": 63.66,
+ "end": 64.88,
+ "text": "narratives."
+ },
+ {
+ "id": 209,
+ "start": 64.88,
+ "end": 65.18,
+ "text": "Even"
+ },
+ {
+ "id": 210,
+ "start": 65.18,
+ "end": 65.51,
+ "text": "though"
+ },
+ {
+ "id": 211,
+ "start": 65.51,
+ "end": 65.62,
+ "text": "there"
+ },
+ {
+ "id": 212,
+ "start": 65.62,
+ "end": 65.69,
+ "text": "are"
+ },
+ {
+ "id": 213,
+ "start": 65.69,
+ "end": 66.03,
+ "text": "plenty"
+ },
+ {
+ "id": 214,
+ "start": 66.03,
+ "end": 66.19,
+ "text": "of"
+ },
+ {
+ "id": 215,
+ "start": 66.19,
+ "end": 66.43,
+ "text": "less"
+ },
+ {
+ "id": 216,
+ "start": 66.43,
+ "end": 67.15,
+ "text": "sophisticated"
+ },
+ {
+ "id": 217,
+ "start": 67.15,
+ "end": 67.36,
+ "text": "bad"
+ },
+ {
+ "id": 218,
+ "start": 67.36,
+ "end": 67.66,
+ "text": "actors"
+ },
+ {
+ "id": 219,
+ "start": 67.66,
+ "end": 67.76,
+ "text": "that"
+ },
+ {
+ "id": 220,
+ "start": 67.76,
+ "end": 67.92,
+ "text": "use"
+ },
+ {
+ "id": 221,
+ "start": 67.92,
+ "end": 68.09,
+ "text": "fake"
+ },
+ {
+ "id": 222,
+ "start": 68.09,
+ "end": 68.71,
+ "text": "accounts,"
+ },
+ {
+ "id": 223,
+ "start": 68.71,
+ "end": 68.89,
+ "text": "by"
+ },
+ {
+ "id": 224,
+ "start": 68.89,
+ "end": 69.34,
+ "text": "scaling"
+ },
+ {
+ "id": 225,
+ "start": 69.34,
+ "end": 69.46,
+ "text": "up"
+ },
+ {
+ "id": 226,
+ "start": 69.46,
+ "end": 69.63,
+ "text": "our"
+ },
+ {
+ "id": 227,
+ "start": 69.63,
+ "end": 69.89,
+ "text": "ability"
+ },
+ {
+ "id": 228,
+ "start": 69.89,
+ "end": 70.01,
+ "text": "and"
+ },
+ {
+ "id": 229,
+ "start": 70.01,
+ "end": 70.35,
+ "text": "taking"
+ },
+ {
+ "id": 230,
+ "start": 70.35,
+ "end": 70.55,
+ "text": "those"
+ },
+ {
+ "id": 231,
+ "start": 70.55,
+ "end": 70.9,
+ "text": "down,"
+ },
+ {
+ "id": 232,
+ "start": 70.9,
+ "end": 70.99,
+ "text": "we"
+ },
+ {
+ "id": 233,
+ "start": 70.99,
+ "end": 71.14,
+ "text": "make"
+ },
+ {
+ "id": 234,
+ "start": 71.14,
+ "end": 71.23,
+ "text": "it"
+ },
+ {
+ "id": 235,
+ "start": 71.23,
+ "end": 71.37,
+ "text": "much"
+ },
+ {
+ "id": 236,
+ "start": 71.37,
+ "end": 71.82,
+ "text": "harder"
+ },
+ {
+ "id": 237,
+ "start": 71.82,
+ "end": 71.93,
+ "text": "for"
+ },
+ {
+ "id": 238,
+ "start": 71.93,
+ "end": 72.05,
+ "text": "them"
+ },
+ {
+ "id": 239,
+ "start": 72.05,
+ "end": 72.17,
+ "text": "to"
+ },
+ {
+ "id": 240,
+ "start": 72.17,
+ "end": 72.45,
+ "text": "use"
+ },
+ {
+ "id": 241,
+ "start": 72.45,
+ "end": 72.65,
+ "text": "that"
+ },
+ {
+ "id": 242,
+ "start": 72.65,
+ "end": 73.73,
+ "text": "tool."
+ },
+ {
+ "id": 243,
+ "start": 73.73,
+ "end": 73.91,
+ "text": "So"
+ },
+ {
+ "id": 244,
+ "start": 73.91,
+ "end": 73.99,
+ "text": "the"
+ },
+ {
+ "id": 245,
+ "start": 73.99,
+ "end": 74.3,
+ "text": "first"
+ },
+ {
+ "id": 246,
+ "start": 74.3,
+ "end": 74.52,
+ "text": "half"
+ },
+ {
+ "id": 247,
+ "start": 74.52,
+ "end": 74.65,
+ "text": "is"
+ },
+ {
+ "id": 248,
+ "start": 74.65,
+ "end": 74.88,
+ "text": "like"
+ },
+ {
+ "id": 249,
+ "start": 74.88,
+ "end": 75.17,
+ "text": "looking"
+ },
+ {
+ "id": 250,
+ "start": 75.17,
+ "end": 75.28,
+ "text": "for"
+ },
+ {
+ "id": 251,
+ "start": 75.28,
+ "end": 75.32,
+ "text": "a"
+ },
+ {
+ "id": 252,
+ "start": 75.32,
+ "end": 75.54,
+ "text": "needle"
+ },
+ {
+ "id": 253,
+ "start": 75.54,
+ "end": 75.61,
+ "text": "in"
+ },
+ {
+ "id": 254,
+ "start": 75.61,
+ "end": 75.66,
+ "text": "a"
+ },
+ {
+ "id": 255,
+ "start": 75.66,
+ "end": 76.33,
+ "text": "haystack."
+ },
+ {
+ "id": 256,
+ "start": 76.33,
+ "end": 76.43,
+ "text": "The"
+ },
+ {
+ "id": 257,
+ "start": 76.43,
+ "end": 76.77,
+ "text": "second"
+ },
+ {
+ "id": 258,
+ "start": 76.77,
+ "end": 77.36,
+ "text": "piece"
+ },
+ {
+ "id": 259,
+ "start": 77.36,
+ "end": 77.49,
+ "text": "is"
+ },
+ {
+ "id": 260,
+ "start": 77.49,
+ "end": 77.61,
+ "text": "sort"
+ },
+ {
+ "id": 261,
+ "start": 77.61,
+ "end": 77.67,
+ "text": "of"
+ },
+ {
+ "id": 262,
+ "start": 77.67,
+ "end": 78.13,
+ "text": "shrinking"
+ },
+ {
+ "id": 263,
+ "start": 77.95333333333333,
+ "end": 78.28999999999999,
+ "text": "the"
+ },
+ {
+ "id": 264,
+ "start": 78.23666666666666,
+ "end": 78.44999999999999,
+ "text": "haystack"
+ },
+ {
+ "id": 265,
+ "start": 78.52,
+ "end": 78.61,
+ "text": "and"
+ },
+ {
+ "id": 266,
+ "start": 78.61,
+ "end": 78.86,
+ "text": "making"
+ },
+ {
+ "id": 267,
+ "start": 78.86,
+ "end": 79,
+ "text": "that"
+ },
+ {
+ "id": 268,
+ "start": 79,
+ "end": 79.84,
+ "text": "investigation"
+ },
+ {
+ "id": 269,
+ "start": 79.74000000000001,
+ "end": 80.21000000000001,
+ "text": "easier,"
+ },
+ {
+ "id": 270,
+ "start": 80.48,
+ "end": 80.58,
+ "text": "and"
+ },
+ {
+ "id": 271,
+ "start": 80.58,
+ "end": 80.65,
+ "text": "you"
+ },
+ {
+ "id": 272,
+ "start": 80.65,
+ "end": 80.84,
+ "text": "have"
+ },
+ {
+ "id": 273,
+ "start": 80.84,
+ "end": 80.92,
+ "text": "to"
+ },
+ {
+ "id": 274,
+ "start": 80.92,
+ "end": 81.1,
+ "text": "have"
+ },
+ {
+ "id": 275,
+ "start": 81.1,
+ "end": 82.6,
+ "text": "both."
+ },
+ {
+ "id": 276,
+ "start": 81.45,
+ "end": 83.32,
+ "text": "Going"
+ },
+ {
+ "id": 277,
+ "start": 82.59499999999997,
+ "end": 83.625,
+ "text": "backward"
+ },
+ {
+ "id": 278,
+ "start": 83.74,
+ "end": 83.93,
+ "text": "for"
+ },
+ {
+ "id": 279,
+ "start": 83.93,
+ "end": 84.11,
+ "text": "one"
+ },
+ {
+ "id": 280,
+ "start": 84.44,
+ "end": 84.62499999999999,
+ "text": "second,"
+ },
+ {
+ "id": 281,
+ "start": 84.95,
+ "end": 85.14,
+ "text": "tell"
+ },
+ {
+ "id": 282,
+ "start": 85.14,
+ "end": 85.55,
+ "text": "me"
+ },
+ {
+ "id": 283,
+ "start": 85.55,
+ "end": 85.68,
+ "text": "the"
+ },
+ {
+ "id": 284,
+ "start": 85.68,
+ "end": 86.43,
+ "text": "circumstances"
+ },
+ {
+ "id": 285,
+ "start": 86.43,
+ "end": 86.56,
+ "text": "of"
+ },
+ {
+ "id": 286,
+ "start": 86.72000000000001,
+ "end": 87.07500000000002,
+ "text": "you"
+ },
+ {
+ "id": 287,
+ "start": 87.01,
+ "end": 87.59,
+ "text": "arriving"
+ },
+ {
+ "id": 288,
+ "start": 87.6675,
+ "end": 88.16499999999999,
+ "text": "here"
+ },
+ {
+ "id": 289,
+ "start": 88.325,
+ "end": 88.73999999999998,
+ "text": "at"
+ },
+ {
+ "id": 290,
+ "start": 88.9825,
+ "end": 89.315,
+ "text": "Facebook."
+ },
+ {
+ "id": 291,
+ "start": 89.64,
+ "end": 89.89,
+ "text": "What"
+ },
+ {
+ "id": 292,
+ "start": 89.89,
+ "end": 90.13,
+ "text": "were"
+ },
+ {
+ "id": 293,
+ "start": 90.13,
+ "end": 90.89,
+ "text": "they?"
+ },
+ {
+ "id": 294,
+ "start": 90.89,
+ "end": 91.14,
+ "text": "Bring"
+ },
+ {
+ "id": 295,
+ "start": 91.14,
+ "end": 91.25,
+ "text": "me"
+ },
+ {
+ "id": 296,
+ "start": 91.25,
+ "end": 91.52,
+ "text": "through"
+ },
+ {
+ "id": 297,
+ "start": 91.52,
+ "end": 91.85,
+ "text": "the"
+ },
+ {
+ "id": 298,
+ "start": 91.85,
+ "end": 92.3,
+ "text": "beginning"
+ },
+ {
+ "id": 299,
+ "start": 92.3,
+ "end": 92.41,
+ "text": "of"
+ },
+ {
+ "id": 300,
+ "start": 92.41,
+ "end": 92.58,
+ "text": "how"
+ },
+ {
+ "id": 301,
+ "start": 92.58,
+ "end": 92.74,
+ "text": "you"
+ },
+ {
+ "id": 302,
+ "start": 92.74,
+ "end": 93.18,
+ "text": "arrived"
+ },
+ {
+ "id": 303,
+ "start": 93.18,
+ "end": 93.4,
+ "text": "here"
+ },
+ {
+ "id": 304,
+ "start": 93.4,
+ "end": 93.89,
+ "text": "and"
+ },
+ {
+ "id": 305,
+ "start": 93.89,
+ "end": 94.13,
+ "text": "why"
+ },
+ {
+ "id": 306,
+ "start": 94.13,
+ "end": 94.29,
+ "text": "you"
+ },
+ {
+ "id": 307,
+ "start": 94.29,
+ "end": 94.41,
+ "text": "were"
+ },
+ {
+ "id": 308,
+ "start": 94.41,
+ "end": 94.67,
+ "text": "brought"
+ },
+ {
+ "id": 309,
+ "start": 94.67,
+ "end": 94.78,
+ "text": "in"
+ },
+ {
+ "id": 310,
+ "start": 94.78,
+ "end": 94.91,
+ "text": "for"
+ },
+ {
+ "id": 311,
+ "start": 94.91,
+ "end": 95.07,
+ "text": "this"
+ },
+ {
+ "id": 312,
+ "start": 95.07,
+ "end": 99.44,
+ "text": "job."
+ },
+ {
+ "id": 313,
+ "start": 99.44,
+ "end": 99.61,
+ "text": "My"
+ },
+ {
+ "id": 314,
+ "start": 99.61,
+ "end": 100.12,
+ "text": "career"
+ },
+ {
+ "id": 315,
+ "start": 100.12,
+ "end": 100.25,
+ "text": "has"
+ },
+ {
+ "id": 316,
+ "start": 100.25,
+ "end": 100.37,
+ "text": "been"
+ },
+ {
+ "id": 317,
+ "start": 100.37,
+ "end": 100.84,
+ "text": "focused"
+ },
+ {
+ "id": 318,
+ "start": 100.84,
+ "end": 101.4,
+ "text": "on"
+ },
+ {
+ "id": 319,
+ "start": 101.4,
+ "end": 101.85,
+ "text": "how"
+ },
+ {
+ "id": 320,
+ "start": 101.85,
+ "end": 102.41,
+ "text": "technology"
+ },
+ {
+ "id": 321,
+ "start": 102.41,
+ "end": 102.51,
+ "text": "and"
+ },
+ {
+ "id": 322,
+ "start": 102.51,
+ "end": 103.54,
+ "text": "society"
+ },
+ {
+ "id": 323,
+ "start": 103.54,
+ "end": 104.84,
+ "text": "interact."
+ },
+ {
+ "id": 324,
+ "start": 104.84,
+ "end": 105.44,
+ "text": "Technology"
+ },
+ {
+ "id": 325,
+ "start": 105.44,
+ "end": 105.62,
+ "text": "has"
+ },
+ {
+ "id": 326,
+ "start": 105.60499999999999,
+ "end": 105.895,
+ "text": "this"
+ },
+ {
+ "id": 327,
+ "start": 105.77,
+ "end": 106.17,
+ "text": "incredible"
+ },
+ {
+ "id": 328,
+ "start": 106.17,
+ "end": 106.8,
+ "text": "potential"
+ },
+ {
+ "id": 329,
+ "start": 106.8,
+ "end": 106.94,
+ "text": "to"
+ },
+ {
+ "id": 330,
+ "start": 106.94,
+ "end": 107.2,
+ "text": "make"
+ },
+ {
+ "id": 331,
+ "start": 107.2,
+ "end": 107.58,
+ "text": "things"
+ },
+ {
+ "id": 332,
+ "start": 107.58,
+ "end": 108.05,
+ "text": "better,"
+ },
+ {
+ "id": 333,
+ "start": 108.05,
+ "end": 108.82,
+ "text": "to"
+ },
+ {
+ "id": 334,
+ "start": 108.82,
+ "end": 109.21,
+ "text": "encourage"
+ },
+ {
+ "id": 335,
+ "start": 109.21,
+ "end": 110.1,
+ "text": "communication,"
+ },
+ {
+ "id": 336,
+ "start": 109.79,
+ "end": 110.48999999999998,
+ "text": "to"
+ },
+ {
+ "id": 337,
+ "start": 110.37,
+ "end": 110.88,
+ "text": "build"
+ },
+ {
+ "id": 338,
+ "start": 110.88,
+ "end": 111.14,
+ "text": "out"
+ },
+ {
+ "id": 339,
+ "start": 111.14,
+ "end": 111.36,
+ "text": "all"
+ },
+ {
+ "id": 340,
+ "start": 111.36,
+ "end": 111.44,
+ "text": "the"
+ },
+ {
+ "id": 341,
+ "start": 111.44,
+ "end": 111.72,
+ "text": "ways"
+ },
+ {
+ "id": 342,
+ "start": 111.72,
+ "end": 111.83,
+ "text": "we"
+ },
+ {
+ "id": 343,
+ "start": 111.83,
+ "end": 112.15,
+ "text": "talk"
+ },
+ {
+ "id": 344,
+ "start": 112.15,
+ "end": 112.23,
+ "text": "to"
+ },
+ {
+ "id": 345,
+ "start": 112.23,
+ "end": 112.35,
+ "text": "each"
+ },
+ {
+ "id": 346,
+ "start": 112.35,
+ "end": 112.46,
+ "text": "other"
+ },
+ {
+ "id": 347,
+ "start": 112.46,
+ "end": 112.55,
+ "text": "and"
+ },
+ {
+ "id": 348,
+ "start": 112.55,
+ "end": 112.97,
+ "text": "understand"
+ },
+ {
+ "id": 349,
+ "start": 112.97,
+ "end": 113.1,
+ "text": "each"
+ },
+ {
+ "id": 350,
+ "start": 113.1,
+ "end": 113.57,
+ "text": "other."
+ },
+ {
+ "id": 351,
+ "start": 113.57,
+ "end": 113.96,
+ "text": "But"
+ },
+ {
+ "id": 352,
+ "start": 113.96,
+ "end": 114.13,
+ "text": "one"
+ },
+ {
+ "id": 353,
+ "start": 114.13,
+ "end": 114.19,
+ "text": "of"
+ },
+ {
+ "id": 354,
+ "start": 114.19,
+ "end": 114.25,
+ "text": "the"
+ },
+ {
+ "id": 355,
+ "start": 114.25,
+ "end": 114.55,
+ "text": "side"
+ },
+ {
+ "id": 356,
+ "start": 114.55,
+ "end": 114.85,
+ "text": "effects"
+ },
+ {
+ "id": 357,
+ "start": 114.85,
+ "end": 114.94,
+ "text": "of"
+ },
+ {
+ "id": 358,
+ "start": 114.94,
+ "end": 115.05,
+ "text": "new"
+ },
+ {
+ "id": 359,
+ "start": 115.05,
+ "end": 115.6,
+ "text": "communications"
+ },
+ {
+ "id": 360,
+ "start": 115.59500000000001,
+ "end": 115.955,
+ "text": "media"
+ },
+ {
+ "id": 361,
+ "start": 116.14,
+ "end": 116.31,
+ "text": "is"
+ },
+ {
+ "id": 362,
+ "start": 116.31,
+ "end": 116.45,
+ "text": "that"
+ },
+ {
+ "id": 363,
+ "start": 116.45,
+ "end": 116.7,
+ "text": "people"
+ },
+ {
+ "id": 364,
+ "start": 116.7,
+ "end": 116.76,
+ "text": "are"
+ },
+ {
+ "id": 365,
+ "start": 116.76,
+ "end": 116.88,
+ "text": "going"
+ },
+ {
+ "id": 366,
+ "start": 116.88,
+ "end": 116.94,
+ "text": "to"
+ },
+ {
+ "id": 367,
+ "start": 116.94,
+ "end": 117.05,
+ "text": "try"
+ },
+ {
+ "id": 368,
+ "start": 117.05,
+ "end": 117.13,
+ "text": "to"
+ },
+ {
+ "id": 369,
+ "start": 117.13,
+ "end": 117.3,
+ "text": "take"
+ },
+ {
+ "id": 370,
+ "start": 117.3,
+ "end": 117.64,
+ "text": "advantage"
+ },
+ {
+ "id": 371,
+ "start": 117.64,
+ "end": 117.75,
+ "text": "of"
+ },
+ {
+ "id": 372,
+ "start": 118.33575000000002,
+ "end": 118.44075000000004,
+ "text": "them."
+ },
+ {
+ "id": 373,
+ "start": 119.0315,
+ "end": 119.13150000000002,
+ "text": "That"
+ },
+ {
+ "id": 374,
+ "start": 119.72725000000003,
+ "end": 119.82225,
+ "text": "tension—how"
+ },
+ {
+ "id": 375,
+ "start": 120.423,
+ "end": 120.513,
+ "text": "do"
+ },
+ {
+ "id": 376,
+ "start": 120.513,
+ "end": 120.653,
+ "text": "you"
+ },
+ {
+ "id": 377,
+ "start": 120.653,
+ "end": 121.663,
+ "text": "ensure"
+ },
+ {
+ "id": 378,
+ "start": 121.663,
+ "end": 121.883,
+ "text": "that"
+ },
+ {
+ "id": 379,
+ "start": 121.883,
+ "end": 122.003,
+ "text": "the"
+ },
+ {
+ "id": 380,
+ "start": 122.003,
+ "end": 122.753,
+ "text": "positive"
+ },
+ {
+ "id": 381,
+ "start": 122.753,
+ "end": 123.193,
+ "text": "benefits"
+ },
+ {
+ "id": 382,
+ "start": 123.193,
+ "end": 123.253,
+ "text": "of"
+ },
+ {
+ "id": 383,
+ "start": 123.253,
+ "end": 123.643,
+ "text": "technology"
+ },
+ {
+ "id": 384,
+ "start": 123.643,
+ "end": 123.783,
+ "text": "can"
+ },
+ {
+ "id": 385,
+ "start": 123.783,
+ "end": 123.963,
+ "text": "be"
+ },
+ {
+ "id": 386,
+ "start": 124.36800000000001,
+ "end": 124.548,
+ "text": "realized?—is"
+ },
+ {
+ "id": 387,
+ "start": 124.953,
+ "end": 125.133,
+ "text": "what"
+ },
+ {
+ "id": 388,
+ "start": 125.133,
+ "end": 125.203,
+ "text": "I"
+ },
+ {
+ "id": 389,
+ "start": 125.203,
+ "end": 125.583,
+ "text": "focused"
+ },
+ {
+ "id": 390,
+ "start": 125.583,
+ "end": 125.693,
+ "text": "on"
+ },
+ {
+ "id": 391,
+ "start": 125.693,
+ "end": 125.773,
+ "text": "in"
+ },
+ {
+ "id": 392,
+ "start": 125.773,
+ "end": 126.443,
+ "text": "government,"
+ },
+ {
+ "id": 393,
+ "start": 126.443,
+ "end": 126.923,
+ "text": "whether"
+ },
+ {
+ "id": 394,
+ "start": 126.923,
+ "end": 127.063,
+ "text": "I"
+ },
+ {
+ "id": 395,
+ "start": 127.063,
+ "end": 127.833,
+ "text": "was"
+ },
+ {
+ "id": 396,
+ "start": 127.593,
+ "end": 128.383,
+ "text": "investigating"
+ },
+ {
+ "id": 397,
+ "start": 128.253,
+ "end": 128.978,
+ "text": "cybercrime"
+ },
+ {
+ "id": 398,
+ "start": 128.913,
+ "end": 129.573,
+ "text": "cases"
+ },
+ {
+ "id": 399,
+ "start": 129.573,
+ "end": 130.173,
+ "text": "or"
+ },
+ {
+ "id": 400,
+ "start": 130.173,
+ "end": 130.233,
+ "text": "I"
+ },
+ {
+ "id": 401,
+ "start": 130.233,
+ "end": 130.373,
+ "text": "was"
+ },
+ {
+ "id": 402,
+ "start": 130.373,
+ "end": 130.713,
+ "text": "working"
+ },
+ {
+ "id": 403,
+ "start": 130.713,
+ "end": 130.793,
+ "text": "at"
+ },
+ {
+ "id": 404,
+ "start": 130.793,
+ "end": 130.893,
+ "text": "the"
+ },
+ {
+ "id": 405,
+ "start": 130.893,
+ "end": 131.463,
+ "text": "NSC,"
+ },
+ {
+ "id": 406,
+ "start": 131.463,
+ "end": 131.553,
+ "text": "the"
+ },
+ {
+ "id": 407,
+ "start": 131.553,
+ "end": 131.823,
+ "text": "National"
+ },
+ {
+ "id": 408,
+ "start": 131.823,
+ "end": 132.163,
+ "text": "Security"
+ },
+ {
+ "id": 409,
+ "start": 132.163,
+ "end": 132.803,
+ "text": "Council,"
+ },
+ {
+ "id": 410,
+ "start": 132.803,
+ "end": 133.123,
+ "text": "thinking"
+ },
+ {
+ "id": 411,
+ "start": 133.123,
+ "end": 133.313,
+ "text": "about"
+ },
+ {
+ "id": 412,
+ "start": 133.63899999999998,
+ "end": 134.103,
+ "text": "cybersecurity"
+ },
+ {
+ "id": 413,
+ "start": 134.155,
+ "end": 134.89300000000003,
+ "text": "policy."
+ },
+ {
+ "id": 414,
+ "start": 134.671,
+ "end": 135.683,
+ "text": "Here"
+ },
+ {
+ "id": 415,
+ "start": 135.18699999999998,
+ "end": 136.473,
+ "text": "at"
+ },
+ {
+ "id": 416,
+ "start": 135.703,
+ "end": 137.263,
+ "text": "Facebook"
+ },
+ {
+ "id": 417,
+ "start": 137.263,
+ "end": 137.363,
+ "text": "I’m"
+ },
+ {
+ "id": 418,
+ "start": 137.363,
+ "end": 137.503,
+ "text": "able"
+ },
+ {
+ "id": 419,
+ "start": 137.503,
+ "end": 137.563,
+ "text": "to"
+ },
+ {
+ "id": 420,
+ "start": 137.563,
+ "end": 137.813,
+ "text": "work"
+ },
+ {
+ "id": 421,
+ "start": 137.813,
+ "end": 138.133,
+ "text": "on"
+ },
+ {
+ "id": 422,
+ "start": 138.133,
+ "end": 138.213,
+ "text": "a"
+ },
+ {
+ "id": 423,
+ "start": 138.213,
+ "end": 138.573,
+ "text": "very"
+ },
+ {
+ "id": 424,
+ "start": 138.573,
+ "end": 138.913,
+ "text": "similar"
+ },
+ {
+ "id": 425,
+ "start": 138.913,
+ "end": 139.443,
+ "text": "problem,"
+ },
+ {
+ "id": 426,
+ "start": 139.443,
+ "end": 139.683,
+ "text": "right,"
+ },
+ {
+ "id": 427,
+ "start": 139.683,
+ "end": 139.833,
+ "text": "which"
+ },
+ {
+ "id": 428,
+ "start": 139.833,
+ "end": 139.953,
+ "text": "is"
+ },
+ {
+ "id": 429,
+ "start": 139.953,
+ "end": 140.333,
+ "text": "social"
+ },
+ {
+ "id": 430,
+ "start": 140.333,
+ "end": 141.143,
+ "text": "media"
+ },
+ {
+ "id": 431,
+ "start": 141.143,
+ "end": 141.523,
+ "text": "as"
+ },
+ {
+ "id": 432,
+ "start": 141.523,
+ "end": 141.923,
+ "text": "the"
+ },
+ {
+ "id": 433,
+ "start": 141.923,
+ "end": 142.303,
+ "text": "public"
+ },
+ {
+ "id": 434,
+ "start": 142.303,
+ "end": 143.093,
+ "text": "square"
+ },
+ {
+ "id": 435,
+ "start": 143.093,
+ "end": 143.753,
+ "text": "for"
+ },
+ {
+ "id": 436,
+ "start": 143.753,
+ "end": 144.153,
+ "text": "political"
+ },
+ {
+ "id": 437,
+ "start": 144.153,
+ "end": 144.903,
+ "text": "communications"
+ },
+ {
+ "id": 438,
+ "start": 144.903,
+ "end": 145.063,
+ "text": "and"
+ },
+ {
+ "id": 439,
+ "start": 145.063,
+ "end": 145.373,
+ "text": "public"
+ },
+ {
+ "id": 440,
+ "start": 145.373,
+ "end": 146.003,
+ "text": "debate."
+ },
+ {
+ "id": 441,
+ "start": 146.003,
+ "end": 146.213,
+ "text": "How"
+ },
+ {
+ "id": 442,
+ "start": 146.213,
+ "end": 146.283,
+ "text": "do"
+ },
+ {
+ "id": 443,
+ "start": 146.283,
+ "end": 146.403,
+ "text": "we"
+ },
+ {
+ "id": 444,
+ "start": 146.403,
+ "end": 147.353,
+ "text": "ensure"
+ },
+ {
+ "id": 445,
+ "start": 147.353,
+ "end": 147.453,
+ "text": "that"
+ },
+ {
+ "id": 446,
+ "start": 147.453,
+ "end": 147.643,
+ "text": "that"
+ },
+ {
+ "id": 447,
+ "start": 147.643,
+ "end": 148.093,
+ "text": "public"
+ },
+ {
+ "id": 448,
+ "start": 148.093,
+ "end": 148.833,
+ "text": "debate"
+ },
+ {
+ "id": 449,
+ "start": 148.833,
+ "end": 148.993,
+ "text": "can"
+ },
+ {
+ "id": 450,
+ "start": 148.993,
+ "end": 149.163,
+ "text": "be"
+ },
+ {
+ "id": 451,
+ "start": 149.163,
+ "end": 149.753,
+ "text": "open,"
+ },
+ {
+ "id": 452,
+ "start": 149.753,
+ "end": 149.913,
+ "text": "can"
+ },
+ {
+ "id": 453,
+ "start": 149.913,
+ "end": 150.073,
+ "text": "be"
+ },
+ {
+ "id": 454,
+ "start": 150.073,
+ "end": 150.483,
+ "text": "free"
+ },
+ {
+ "id": 455,
+ "start": 150.483,
+ "end": 150.623,
+ "text": "and"
+ },
+ {
+ "id": 456,
+ "start": 150.623,
+ "end": 151.983,
+ "text": "fair?"
+ },
+ {
+ "id": 457,
+ "start": 151.983,
+ "end": 152.733,
+ "text": "Without"
+ },
+ {
+ "id": 458,
+ "start": 152.733,
+ "end": 153.043,
+ "text": "being"
+ },
+ {
+ "id": 459,
+ "start": 153.043,
+ "end": 153.543,
+ "text": "interfered"
+ },
+ {
+ "id": 460,
+ "start": 153.543,
+ "end": 153.783,
+ "text": "with"
+ },
+ {
+ "id": 461,
+ "start": 153.783,
+ "end": 153.963,
+ "text": "by"
+ },
+ {
+ "id": 462,
+ "start": 153.963,
+ "end": 154.283,
+ "text": "people"
+ },
+ {
+ "id": 463,
+ "start": 154.283,
+ "end": 154.443,
+ "text": "that"
+ },
+ {
+ "id": 464,
+ "start": 154.54966666666667,
+ "end": 154.75633333333334,
+ "text": "want"
+ },
+ {
+ "id": 465,
+ "start": 154.81633333333332,
+ "end": 155.06966666666668,
+ "text": "to"
+ },
+ {
+ "id": 466,
+ "start": 155.083,
+ "end": 155.383,
+ "text": "mess"
+ },
+ {
+ "id": 467,
+ "start": 155.383,
+ "end": 155.523,
+ "text": "with"
+ },
+ {
+ "id": 468,
+ "start": 155.68300000000002,
+ "end": 155.8455,
+ "text": "things."
+ },
+ {
+ "id": 469,
+ "start": 155.98300000000003,
+ "end": 156.16799999999998,
+ "text": "Right."
+ },
+ {
+ "id": 470,
+ "start": 156.28300000000002,
+ "end": 156.4905,
+ "text": "…"
+ },
+ {
+ "id": 471,
+ "start": 156.583,
+ "end": 156.813,
+ "text": "What"
+ },
+ {
+ "id": 472,
+ "start": 156.813,
+ "end": 156.963,
+ "text": "was"
+ },
+ {
+ "id": 473,
+ "start": 156.963,
+ "end": 157.083,
+ "text": "your"
+ },
+ {
+ "id": 474,
+ "start": 157.083,
+ "end": 157.613,
+ "text": "thinking"
+ },
+ {
+ "id": 475,
+ "start": 157.613,
+ "end": 157.993,
+ "text": "coming"
+ },
+ {
+ "id": 476,
+ "start": 157.993,
+ "end": 158.153,
+ "text": "in"
+ },
+ {
+ "id": 477,
+ "start": 158.153,
+ "end": 159.303,
+ "text": "here,"
+ },
+ {
+ "id": 478,
+ "start": 159.303,
+ "end": 159.433,
+ "text": "if"
+ },
+ {
+ "id": 479,
+ "start": 159.433,
+ "end": 159.533,
+ "text": "you"
+ },
+ {
+ "id": 480,
+ "start": 159.533,
+ "end": 159.673,
+ "text": "can"
+ },
+ {
+ "id": 481,
+ "start": 159.673,
+ "end": 159.873,
+ "text": "kind"
+ },
+ {
+ "id": 482,
+ "start": 159.873,
+ "end": 159.943,
+ "text": "of"
+ },
+ {
+ "id": 483,
+ "start": 159.943,
+ "end": 160.143,
+ "text": "bring"
+ },
+ {
+ "id": 484,
+ "start": 160.143,
+ "end": 160.303,
+ "text": "me"
+ },
+ {
+ "id": 485,
+ "start": 160.303,
+ "end": 161.003,
+ "text": "into"
+ },
+ {
+ "id": 486,
+ "start": 161.003,
+ "end": 161.223,
+ "text": "if"
+ },
+ {
+ "id": 487,
+ "start": 161.223,
+ "end": 161.403,
+ "text": "there"
+ },
+ {
+ "id": 488,
+ "start": 161.403,
+ "end": 161.703,
+ "text": "has"
+ },
+ {
+ "id": 489,
+ "start": 161.703,
+ "end": 161.863,
+ "text": "been"
+ },
+ {
+ "id": 490,
+ "start": 161.863,
+ "end": 161.973,
+ "text": "an"
+ },
+ {
+ "id": 491,
+ "start": 162.308,
+ "end": 162.613,
+ "text": "evolution."
+ },
+ {
+ "id": 492,
+ "start": 162.753,
+ "end": 163.253,
+ "text": "Here"
+ },
+ {
+ "id": 493,
+ "start": 163.253,
+ "end": 163.443,
+ "text": "you"
+ },
+ {
+ "id": 494,
+ "start": 163.433,
+ "end": 163.618,
+ "text": "are:"
+ },
+ {
+ "id": 495,
+ "start": 163.613,
+ "end": 163.793,
+ "text": "You’re"
+ },
+ {
+ "id": 496,
+ "start": 163.793,
+ "end": 163.903,
+ "text": "at"
+ },
+ {
+ "id": 497,
+ "start": 164.21300000000002,
+ "end": 164.49300000000002,
+ "text": "Facebook;"
+ },
+ {
+ "id": 498,
+ "start": 164.633,
+ "end": 165.083,
+ "text": "it’s"
+ },
+ {
+ "id": 499,
+ "start": 165.083,
+ "end": 165.203,
+ "text": "in"
+ },
+ {
+ "id": 500,
+ "start": 165.203,
+ "end": 165.273,
+ "text": "the"
+ },
+ {
+ "id": 501,
+ "start": 165.273,
+ "end": 165.683,
+ "text": "midst"
+ },
+ {
+ "id": 502,
+ "start": 166.118,
+ "end": 166.38800000000003,
+ "text": "of—what"
+ },
+ {
+ "id": 503,
+ "start": 166.963,
+ "end": 167.093,
+ "text": "did"
+ },
+ {
+ "id": 504,
+ "start": 167.093,
+ "end": 167.213,
+ "text": "you"
+ },
+ {
+ "id": 505,
+ "start": 167.213,
+ "end": 167.543,
+ "text": "walk"
+ },
+ {
+ "id": 506,
+ "start": 167.543,
+ "end": 167.943,
+ "text": "into"
+ },
+ {
+ "id": 507,
+ "start": 167.943,
+ "end": 169.883,
+ "text": "exactly,"
+ },
+ {
+ "id": 508,
+ "start": 169.883,
+ "end": 170.003,
+ "text": "and"
+ },
+ {
+ "id": 509,
+ "start": 170.003,
+ "end": 170.133,
+ "text": "what"
+ },
+ {
+ "id": 510,
+ "start": 170.133,
+ "end": 170.233,
+ "text": "were"
+ },
+ {
+ "id": 511,
+ "start": 170.233,
+ "end": 170.313,
+ "text": "you"
+ },
+ {
+ "id": 512,
+ "start": 170.313,
+ "end": 170.693,
+ "text": "thinking"
+ },
+ {
+ "id": 513,
+ "start": 170.693,
+ "end": 170.973,
+ "text": "about"
+ },
+ {
+ "id": 514,
+ "start": 170.973,
+ "end": 171.573,
+ "text": "it?"
+ },
+ {
+ "id": 515,
+ "start": 171.573,
+ "end": 171.723,
+ "text": "There"
+ },
+ {
+ "id": 516,
+ "start": 171.723,
+ "end": 171.843,
+ "text": "are"
+ },
+ {
+ "id": 517,
+ "start": 171.843,
+ "end": 171.953,
+ "text": "a"
+ },
+ {
+ "id": 518,
+ "start": 171.953,
+ "end": 172.243,
+ "text": "number"
+ },
+ {
+ "id": 519,
+ "start": 172.243,
+ "end": 172.303,
+ "text": "of"
+ },
+ {
+ "id": 520,
+ "start": 172.303,
+ "end": 172.553,
+ "text": "different"
+ },
+ {
+ "id": 521,
+ "start": 172.553,
+ "end": 172.813,
+ "text": "teams"
+ },
+ {
+ "id": 522,
+ "start": 172.813,
+ "end": 172.923,
+ "text": "that"
+ },
+ {
+ "id": 523,
+ "start": 172.923,
+ "end": 173.173,
+ "text": "work"
+ },
+ {
+ "id": 524,
+ "start": 173.173,
+ "end": 173.303,
+ "text": "on"
+ },
+ {
+ "id": 525,
+ "start": 173.303,
+ "end": 173.763,
+ "text": "information"
+ },
+ {
+ "id": 526,
+ "start": 173.763,
+ "end": 174.483,
+ "text": "operations"
+ },
+ {
+ "id": 527,
+ "start": 174.483,
+ "end": 175.173,
+ "text": "or"
+ },
+ {
+ "id": 528,
+ "start": 175.173,
+ "end": 175.993,
+ "text": "manipulation"
+ },
+ {
+ "id": 529,
+ "start": 175.993,
+ "end": 176.193,
+ "text": "within"
+ },
+ {
+ "id": 530,
+ "start": 176.193,
+ "end": 176.273,
+ "text": "the"
+ },
+ {
+ "id": 531,
+ "start": 176.273,
+ "end": 177.063,
+ "text": "company."
+ },
+ {
+ "id": 532,
+ "start": 177.063,
+ "end": 177.383,
+ "text": "Part"
+ },
+ {
+ "id": 533,
+ "start": 177.383,
+ "end": 177.463,
+ "text": "of"
+ },
+ {
+ "id": 534,
+ "start": 177.463,
+ "end": 177.633,
+ "text": "what"
+ },
+ {
+ "id": 535,
+ "start": 177.633,
+ "end": 177.683,
+ "text": "I"
+ },
+ {
+ "id": 536,
+ "start": 177.683,
+ "end": 177.883,
+ "text": "think"
+ },
+ {
+ "id": 537,
+ "start": 177.883,
+ "end": 178.013,
+ "text": "we"
+ },
+ {
+ "id": 538,
+ "start": 178.013,
+ "end": 178.413,
+ "text": "wanted"
+ },
+ {
+ "id": 539,
+ "start": 178.413,
+ "end": 178.523,
+ "text": "to"
+ },
+ {
+ "id": 540,
+ "start": 178.523,
+ "end": 179.303,
+ "text": "do"
+ },
+ {
+ "id": 541,
+ "start": 179.303,
+ "end": 179.493,
+ "text": "with"
+ },
+ {
+ "id": 542,
+ "start": 179.493,
+ "end": 179.753,
+ "text": "me"
+ },
+ {
+ "id": 543,
+ "start": 179.753,
+ "end": 180.343,
+ "text": "joining"
+ },
+ {
+ "id": 544,
+ "start": 180.343,
+ "end": 180.583,
+ "text": "was"
+ },
+ {
+ "id": 545,
+ "start": 180.583,
+ "end": 180.693,
+ "text": "how"
+ },
+ {
+ "id": 546,
+ "start": 180.693,
+ "end": 180.753,
+ "text": "do"
+ },
+ {
+ "id": 547,
+ "start": 180.753,
+ "end": 180.843,
+ "text": "we"
+ },
+ {
+ "id": 548,
+ "start": 180.843,
+ "end": 181.473,
+ "text": "connect"
+ },
+ {
+ "id": 549,
+ "start": 181.473,
+ "end": 181.673,
+ "text": "all"
+ },
+ {
+ "id": 550,
+ "start": 181.673,
+ "end": 181.873,
+ "text": "those"
+ },
+ {
+ "id": 551,
+ "start": 181.873,
+ "end": 182.373,
+ "text": "efforts,"
+ },
+ {
+ "id": 552,
+ "start": 182.218,
+ "end": 182.523,
+ "text": "and"
+ },
+ {
+ "id": 553,
+ "start": 182.563,
+ "end": 182.673,
+ "text": "how"
+ },
+ {
+ "id": 554,
+ "start": 182.673,
+ "end": 182.743,
+ "text": "do"
+ },
+ {
+ "id": 555,
+ "start": 182.743,
+ "end": 182.833,
+ "text": "we"
+ },
+ {
+ "id": 556,
+ "start": 182.833,
+ "end": 183.023,
+ "text": "think"
+ },
+ {
+ "id": 557,
+ "start": 183.023,
+ "end": 183.183,
+ "text": "about"
+ },
+ {
+ "id": 558,
+ "start": 183.183,
+ "end": 183.213,
+ "text": "a"
+ },
+ {
+ "id": 559,
+ "start": 183.213,
+ "end": 183.803,
+ "text": "strategic"
+ },
+ {
+ "id": 560,
+ "start": 183.893,
+ "end": 184.27800000000002,
+ "text": "layer"
+ },
+ {
+ "id": 561,
+ "start": 184.573,
+ "end": 184.753,
+ "text": "that"
+ },
+ {
+ "id": 562,
+ "start": 184.753,
+ "end": 185.463,
+ "text": "connects"
+ },
+ {
+ "id": 563,
+ "start": 185.463,
+ "end": 185.593,
+ "text": "the"
+ },
+ {
+ "id": 564,
+ "start": 185.593,
+ "end": 185.843,
+ "text": "Threat"
+ },
+ {
+ "id": 565,
+ "start": 185.843,
+ "end": 186.973,
+ "text": "investigators,"
+ },
+ {
+ "id": 566,
+ "start": 186.973,
+ "end": 187.333,
+ "text": "the"
+ },
+ {
+ "id": 567,
+ "start": 187.333,
+ "end": 187.713,
+ "text": "legal"
+ },
+ {
+ "id": 568,
+ "start": 187.713,
+ "end": 188.523,
+ "text": "teams,"
+ },
+ {
+ "id": 569,
+ "start": 188.523,
+ "end": 188.653,
+ "text": "the"
+ },
+ {
+ "id": 570,
+ "start": 188.653,
+ "end": 189.133,
+ "text": "product"
+ },
+ {
+ "id": 571,
+ "start": 189.133,
+ "end": 189.573,
+ "text": "teams,"
+ },
+ {
+ "id": 572,
+ "start": 189.573,
+ "end": 189.803,
+ "text": "all"
+ },
+ {
+ "id": 573,
+ "start": 189.803,
+ "end": 189.873,
+ "text": "the"
+ },
+ {
+ "id": 574,
+ "start": 189.873,
+ "end": 190.133,
+ "text": "different"
+ },
+ {
+ "id": 575,
+ "start": 190.133,
+ "end": 190.783,
+ "text": "efforts"
+ },
+ {
+ "id": 576,
+ "start": 190.783,
+ "end": 190.923,
+ "text": "that"
+ },
+ {
+ "id": 577,
+ "start": 190.923,
+ "end": 190.983,
+ "text": "are"
+ },
+ {
+ "id": 578,
+ "start": 190.983,
+ "end": 191.363,
+ "text": "trying"
+ },
+ {
+ "id": 579,
+ "start": 191.363,
+ "end": 191.433,
+ "text": "to"
+ },
+ {
+ "id": 580,
+ "start": 191.433,
+ "end": 191.733,
+ "text": "combat"
+ },
+ {
+ "id": 581,
+ "start": 191.733,
+ "end": 191.943,
+ "text": "different"
+ },
+ {
+ "id": 582,
+ "start": 191.943,
+ "end": 192.183,
+ "text": "parts"
+ },
+ {
+ "id": 583,
+ "start": 192.183,
+ "end": 192.243,
+ "text": "of"
+ },
+ {
+ "id": 584,
+ "start": 192.243,
+ "end": 192.353,
+ "text": "this"
+ },
+ {
+ "id": 585,
+ "start": 192.603,
+ "end": 192.71800000000002,
+ "text": "problem?"
+ },
+ {
+ "id": 586,
+ "start": 192.963,
+ "end": 193.083,
+ "text": "When"
+ },
+ {
+ "id": 587,
+ "start": 193.083,
+ "end": 193.183,
+ "text": "I"
+ },
+ {
+ "id": 588,
+ "start": 193.183,
+ "end": 193.703,
+ "text": "joined,"
+ },
+ {
+ "id": 589,
+ "start": 193.703,
+ "end": 193.763,
+ "text": "it"
+ },
+ {
+ "id": 590,
+ "start": 193.763,
+ "end": 193.893,
+ "text": "was"
+ },
+ {
+ "id": 591,
+ "start": 193.893,
+ "end": 194.103,
+ "text": "really"
+ },
+ {
+ "id": 592,
+ "start": 194.103,
+ "end": 194.523,
+ "text": "about"
+ },
+ {
+ "id": 593,
+ "start": 194.523,
+ "end": 194.713,
+ "text": "how"
+ },
+ {
+ "id": 594,
+ "start": 194.713,
+ "end": 194.773,
+ "text": "do"
+ },
+ {
+ "id": 595,
+ "start": 194.773,
+ "end": 194.863,
+ "text": "we"
+ },
+ {
+ "id": 596,
+ "start": 194.863,
+ "end": 195.193,
+ "text": "pull"
+ },
+ {
+ "id": 597,
+ "start": 195.193,
+ "end": 195.363,
+ "text": "these"
+ },
+ {
+ "id": 598,
+ "start": 195.363,
+ "end": 195.733,
+ "text": "pieces"
+ },
+ {
+ "id": 599,
+ "start": 195.733,
+ "end": 198.363,
+ "text": "together?"
+ },
+ {
+ "id": 600,
+ "start": 198.363,
+ "end": 198.593,
+ "text": "If"
+ },
+ {
+ "id": 601,
+ "start": 198.593,
+ "end": 198.703,
+ "text": "you"
+ },
+ {
+ "id": 602,
+ "start": 198.703,
+ "end": 198.873,
+ "text": "had"
+ },
+ {
+ "id": 603,
+ "start": 198.873,
+ "end": 198.953,
+ "text": "to"
+ },
+ {
+ "id": 604,
+ "start": 198.953,
+ "end": 199.143,
+ "text": "give"
+ },
+ {
+ "id": 605,
+ "start": 199.143,
+ "end": 199.223,
+ "text": "an"
+ },
+ {
+ "id": 606,
+ "start": 199.223,
+ "end": 199.863,
+ "text": "assessment"
+ },
+ {
+ "id": 607,
+ "start": 199.863,
+ "end": 200.043,
+ "text": "as"
+ },
+ {
+ "id": 608,
+ "start": 200.043,
+ "end": 200.193,
+ "text": "to"
+ },
+ {
+ "id": 609,
+ "start": 200.193,
+ "end": 201.183,
+ "text": "what"
+ },
+ {
+ "id": 610,
+ "start": 201.183,
+ "end": 201.573,
+ "text": "the"
+ },
+ {
+ "id": 611,
+ "start": 201.573,
+ "end": 202.423,
+ "text": "priorities"
+ },
+ {
+ "id": 612,
+ "start": 202.423,
+ "end": 202.663,
+ "text": "were"
+ },
+ {
+ "id": 613,
+ "start": 202.663,
+ "end": 202.773,
+ "text": "at"
+ },
+ {
+ "id": 614,
+ "start": 202.773,
+ "end": 203.003,
+ "text": "that"
+ },
+ {
+ "id": 615,
+ "start": 203.003,
+ "end": 203.593,
+ "text": "time"
+ },
+ {
+ "id": 616,
+ "start": 203.593,
+ "end": 203.793,
+ "text": "when"
+ },
+ {
+ "id": 617,
+ "start": 203.793,
+ "end": 204.253,
+ "text": "you"
+ },
+ {
+ "id": 618,
+ "start": 204.253,
+ "end": 204.563,
+ "text": "came"
+ },
+ {
+ "id": 619,
+ "start": 204.563,
+ "end": 205.453,
+ "text": "in,"
+ },
+ {
+ "id": 620,
+ "start": 205.453,
+ "end": 205.743,
+ "text": "set"
+ },
+ {
+ "id": 621,
+ "start": 205.743,
+ "end": 205.833,
+ "text": "the"
+ },
+ {
+ "id": 622,
+ "start": 205.833,
+ "end": 206.303,
+ "text": "scene."
+ },
+ {
+ "id": 623,
+ "start": 206.303,
+ "end": 206.723,
+ "text": "Where"
+ },
+ {
+ "id": 624,
+ "start": 206.723,
+ "end": 206.933,
+ "text": "are"
+ },
+ {
+ "id": 625,
+ "start": 206.933,
+ "end": 207.103,
+ "text": "we"
+ },
+ {
+ "id": 626,
+ "start": 207.103,
+ "end": 207.223,
+ "text": "in"
+ },
+ {
+ "id": 627,
+ "start": 207.223,
+ "end": 207.633,
+ "text": "time?"
+ },
+ {
+ "id": 628,
+ "start": 207.633,
+ "end": 207.723,
+ "text": "It"
+ },
+ {
+ "id": 629,
+ "start": 207.723,
+ "end": 207.843,
+ "text": "was"
+ },
+ {
+ "id": 630,
+ "start": 207.843,
+ "end": 208.133,
+ "text": "seven"
+ },
+ {
+ "id": 631,
+ "start": 208.133,
+ "end": 208.413,
+ "text": "months"
+ },
+ {
+ "id": 632,
+ "start": 208.413,
+ "end": 209.253,
+ "text": "ago."
+ },
+ {
+ "id": 633,
+ "start": 209.253,
+ "end": 209.723,
+ "text": "What"
+ },
+ {
+ "id": 634,
+ "start": 209.723,
+ "end": 209.873,
+ "text": "was"
+ },
+ {
+ "id": 635,
+ "start": 209.873,
+ "end": 210.223,
+ "text": "going"
+ },
+ {
+ "id": 636,
+ "start": 210.223,
+ "end": 210.793,
+ "text": "on?"
+ },
+ {
+ "id": 637,
+ "start": 210.793,
+ "end": 212.383,
+ "text": "What"
+ },
+ {
+ "id": 638,
+ "start": 212.383,
+ "end": 212.943,
+ "text": "the"
+ },
+ {
+ "id": 639,
+ "start": 212.943,
+ "end": 213.523,
+ "text": "atmosphere"
+ },
+ {
+ "id": 640,
+ "start": 213.523,
+ "end": 213.763,
+ "text": "here"
+ },
+ {
+ "id": 641,
+ "start": 213.763,
+ "end": 214.233,
+ "text": "like?"
+ },
+ {
+ "id": 642,
+ "start": 214.223,
+ "end": 214.583,
+ "text": "Because"
+ },
+ {
+ "id": 643,
+ "start": 214.55800000000002,
+ "end": 214.82299999999998,
+ "text": "you’d"
+ },
+ {
+ "id": 644,
+ "start": 214.893,
+ "end": 215.063,
+ "text": "been"
+ },
+ {
+ "id": 645,
+ "start": 215.063,
+ "end": 215.433,
+ "text": "outside"
+ },
+ {
+ "id": 646,
+ "start": 215.433,
+ "end": 215.493,
+ "text": "of"
+ },
+ {
+ "id": 647,
+ "start": 215.493,
+ "end": 215.643,
+ "text": "this"
+ },
+ {
+ "id": 648,
+ "start": 215.643,
+ "end": 216.043,
+ "text": "company;"
+ },
+ {
+ "id": 649,
+ "start": 216.043,
+ "end": 216.193,
+ "text": "you’d"
+ },
+ {
+ "id": 650,
+ "start": 216.193,
+ "end": 216.343,
+ "text": "been"
+ },
+ {
+ "id": 651,
+ "start": 216.343,
+ "end": 216.453,
+ "text": "in"
+ },
+ {
+ "id": 652,
+ "start": 216.74299999999997,
+ "end": 216.92800000000003,
+ "text": "government."
+ },
+ {
+ "id": 653,
+ "start": 217.143,
+ "end": 217.403,
+ "text": "And"
+ },
+ {
+ "id": 654,
+ "start": 217.403,
+ "end": 217.813,
+ "text": "I’m"
+ },
+ {
+ "id": 655,
+ "start": 217.473,
+ "end": 218.293,
+ "text": "curious,"
+ },
+ {
+ "id": 656,
+ "start": 218.24966666666666,
+ "end": 218.82966666666664,
+ "text": "I"
+ },
+ {
+ "id": 657,
+ "start": 219.0263333333333,
+ "end": 219.36633333333327,
+ "text": "mean,"
+ },
+ {
+ "id": 658,
+ "start": 219.803,
+ "end": 219.903,
+ "text": "I"
+ },
+ {
+ "id": 659,
+ "start": 219.903,
+ "end": 220.033,
+ "text": "don’t"
+ },
+ {
+ "id": 660,
+ "start": 220.033,
+ "end": 220.183,
+ "text": "work"
+ },
+ {
+ "id": 661,
+ "start": 220.183,
+ "end": 220.243,
+ "text": "at"
+ },
+ {
+ "id": 662,
+ "start": 220.523,
+ "end": 220.65300000000002,
+ "text": "Facebook:"
+ },
+ {
+ "id": 663,
+ "start": 220.863,
+ "end": 221.063,
+ "text": "What’s"
+ },
+ {
+ "id": 664,
+ "start": 221.063,
+ "end": 221.173,
+ "text": "it"
+ },
+ {
+ "id": 665,
+ "start": 221.173,
+ "end": 221.463,
+ "text": "like"
+ },
+ {
+ "id": 666,
+ "start": 221.463,
+ "end": 221.853,
+ "text": "walking"
+ },
+ {
+ "id": 667,
+ "start": 221.853,
+ "end": 222.013,
+ "text": "in"
+ },
+ {
+ "id": 668,
+ "start": 222.013,
+ "end": 222.233,
+ "text": "from"
+ },
+ {
+ "id": 669,
+ "start": 222.233,
+ "end": 222.853,
+ "text": "having"
+ },
+ {
+ "id": 670,
+ "start": 222.853,
+ "end": 223.133,
+ "text": "had"
+ },
+ {
+ "id": 671,
+ "start": 223.133,
+ "end": 223.213,
+ "text": "the"
+ },
+ {
+ "id": 672,
+ "start": 223.213,
+ "end": 223.803,
+ "text": "experiences"
+ },
+ {
+ "id": 673,
+ "start": 223.803,
+ "end": 223.953,
+ "text": "that"
+ },
+ {
+ "id": 674,
+ "start": 223.953,
+ "end": 224.083,
+ "text": "you"
+ },
+ {
+ "id": 675,
+ "start": 224.083,
+ "end": 224.343,
+ "text": "had"
+ },
+ {
+ "id": 676,
+ "start": 224.213,
+ "end": 224.44299999999998,
+ "text": "—"
+ },
+ {
+ "id": 677,
+ "start": 224.343,
+ "end": 224.543,
+ "text": "what’s"
+ },
+ {
+ "id": 678,
+ "start": 224.543,
+ "end": 224.643,
+ "text": "it"
+ },
+ {
+ "id": 679,
+ "start": 224.643,
+ "end": 224.823,
+ "text": "like"
+ },
+ {
+ "id": 680,
+ "start": 225.19050000000001,
+ "end": 225.37800000000001,
+ "text": "walking"
+ },
+ {
+ "id": 681,
+ "start": 225.73800000000003,
+ "end": 225.93300000000002,
+ "text": "in"
+ },
+ {
+ "id": 682,
+ "start": 226.28550000000004,
+ "end": 226.48800000000003,
+ "text": "here?"
+ },
+ {
+ "id": 683,
+ "start": 226.833,
+ "end": 227.043,
+ "text": "When"
+ },
+ {
+ "id": 684,
+ "start": 227.043,
+ "end": 227.173,
+ "text": "I"
+ },
+ {
+ "id": 685,
+ "start": 227.173,
+ "end": 227.463,
+ "text": "joined"
+ },
+ {
+ "id": 686,
+ "start": 227.463,
+ "end": 227.773,
+ "text": "seven"
+ },
+ {
+ "id": 687,
+ "start": 227.773,
+ "end": 228.043,
+ "text": "months"
+ },
+ {
+ "id": 688,
+ "start": 228.043,
+ "end": 228.533,
+ "text": "ago,"
+ },
+ {
+ "id": 689,
+ "start": 228.403,
+ "end": 228.753,
+ "text": "we"
+ },
+ {
+ "id": 690,
+ "start": 228.57799999999997,
+ "end": 229.04299999999998,
+ "text": "had"
+ },
+ {
+ "id": 691,
+ "start": 228.753,
+ "end": 229.333,
+ "text": "done"
+ },
+ {
+ "id": 692,
+ "start": 229.333,
+ "end": 229.643,
+ "text": "some"
+ },
+ {
+ "id": 693,
+ "start": 229.833,
+ "end": 230.30299999999997,
+ "text": "high-profile"
+ },
+ {
+ "id": 694,
+ "start": 230.333,
+ "end": 230.963,
+ "text": "takedowns"
+ },
+ {
+ "id": 695,
+ "start": 230.963,
+ "end": 231.083,
+ "text": "of"
+ },
+ {
+ "id": 696,
+ "start": 231.083,
+ "end": 231.253,
+ "text": "the"
+ },
+ {
+ "id": 697,
+ "start": 231.253,
+ "end": 231.773,
+ "text": "IRA"
+ },
+ {
+ "id": 698,
+ "start": 231.453,
+ "end": 231.898,
+ "text": "[Internet"
+ },
+ {
+ "id": 699,
+ "start": 231.65300000000002,
+ "end": 232.023,
+ "text": "Research"
+ },
+ {
+ "id": 700,
+ "start": 231.853,
+ "end": 232.148,
+ "text": "Agency],"
+ },
+ {
+ "id": 701,
+ "start": 232.053,
+ "end": 232.273,
+ "text": "of"
+ },
+ {
+ "id": 702,
+ "start": 232.273,
+ "end": 232.713,
+ "text": "assets"
+ },
+ {
+ "id": 703,
+ "start": 232.713,
+ "end": 232.813,
+ "text": "that"
+ },
+ {
+ "id": 704,
+ "start": 232.813,
+ "end": 232.913,
+ "text": "they"
+ },
+ {
+ "id": 705,
+ "start": 232.913,
+ "end": 233.053,
+ "text": "were"
+ },
+ {
+ "id": 706,
+ "start": 233.268,
+ "end": 233.538,
+ "text": "running,"
+ },
+ {
+ "id": 707,
+ "start": 233.623,
+ "end": 234.023,
+ "text": "and"
+ },
+ {
+ "id": 708,
+ "start": 234.023,
+ "end": 234.113,
+ "text": "I"
+ },
+ {
+ "id": 709,
+ "start": 234.113,
+ "end": 234.323,
+ "text": "think"
+ },
+ {
+ "id": 710,
+ "start": 234.323,
+ "end": 234.393,
+ "text": "the"
+ },
+ {
+ "id": 711,
+ "start": 234.393,
+ "end": 234.943,
+ "text": "question"
+ },
+ {
+ "id": 712,
+ "start": 234.943,
+ "end": 235.453,
+ "text": "was"
+ },
+ {
+ "id": 713,
+ "start": 235.453,
+ "end": 235.703,
+ "text": "how"
+ },
+ {
+ "id": 714,
+ "start": 235.703,
+ "end": 235.803,
+ "text": "do"
+ },
+ {
+ "id": 715,
+ "start": 235.803,
+ "end": 235.913,
+ "text": "we"
+ },
+ {
+ "id": 716,
+ "start": 235.913,
+ "end": 236.893,
+ "text": "scale"
+ },
+ {
+ "id": 717,
+ "start": 236.893,
+ "end": 237.053,
+ "text": "that"
+ },
+ {
+ "id": 718,
+ "start": 237.053,
+ "end": 237.823,
+ "text": "ability"
+ },
+ {
+ "id": 719,
+ "start": 237.823,
+ "end": 238.033,
+ "text": "to"
+ },
+ {
+ "id": 720,
+ "start": 238.033,
+ "end": 238.403,
+ "text": "look"
+ },
+ {
+ "id": 721,
+ "start": 238.403,
+ "end": 238.853,
+ "text": "for"
+ },
+ {
+ "id": 722,
+ "start": 238.853,
+ "end": 239.003,
+ "text": "and"
+ },
+ {
+ "id": 723,
+ "start": 239.003,
+ "end": 239.783,
+ "text": "disrupt"
+ },
+ {
+ "id": 724,
+ "start": 239.783,
+ "end": 240.173,
+ "text": "foreign"
+ },
+ {
+ "id": 725,
+ "start": 240.173,
+ "end": 240.573,
+ "text": "actors"
+ },
+ {
+ "id": 726,
+ "start": 240.573,
+ "end": 240.683,
+ "text": "and"
+ },
+ {
+ "id": 727,
+ "start": 240.683,
+ "end": 240.913,
+ "text": "any"
+ },
+ {
+ "id": 728,
+ "start": 240.913,
+ "end": 241.153,
+ "text": "kind"
+ },
+ {
+ "id": 729,
+ "start": 241.153,
+ "end": 241.263,
+ "text": "of"
+ },
+ {
+ "id": 730,
+ "start": 241.263,
+ "end": 241.613,
+ "text": "malicious"
+ },
+ {
+ "id": 731,
+ "start": 241.613,
+ "end": 242.353,
+ "text": "actors"
+ },
+ {
+ "id": 732,
+ "start": 242.353,
+ "end": 242.573,
+ "text": "so"
+ },
+ {
+ "id": 733,
+ "start": 242.573,
+ "end": 242.663,
+ "text": "that"
+ },
+ {
+ "id": 734,
+ "start": 242.663,
+ "end": 242.733,
+ "text": "we"
+ },
+ {
+ "id": 735,
+ "start": 242.733,
+ "end": 242.843,
+ "text": "can"
+ },
+ {
+ "id": 736,
+ "start": 242.843,
+ "end": 243.033,
+ "text": "deal"
+ },
+ {
+ "id": 737,
+ "start": 243.033,
+ "end": 243.133,
+ "text": "with"
+ },
+ {
+ "id": 738,
+ "start": 243.133,
+ "end": 243.353,
+ "text": "all"
+ },
+ {
+ "id": 739,
+ "start": 243.353,
+ "end": 243.433,
+ "text": "the"
+ },
+ {
+ "id": 740,
+ "start": 243.433,
+ "end": 243.653,
+ "text": "types"
+ },
+ {
+ "id": 741,
+ "start": 243.653,
+ "end": 243.743,
+ "text": "of"
+ },
+ {
+ "id": 742,
+ "start": 243.743,
+ "end": 244.293,
+ "text": "threats"
+ },
+ {
+ "id": 743,
+ "start": 244.293,
+ "end": 244.493,
+ "text": "that"
+ },
+ {
+ "id": 744,
+ "start": 244.493,
+ "end": 244.663,
+ "text": "are"
+ },
+ {
+ "id": 745,
+ "start": 244.663,
+ "end": 245.243,
+ "text": "manifesting"
+ },
+ {
+ "id": 746,
+ "start": 245.243,
+ "end": 245.343,
+ "text": "on"
+ },
+ {
+ "id": 747,
+ "start": 245.343,
+ "end": 245.413,
+ "text": "the"
+ },
+ {
+ "id": 748,
+ "start": 245.413,
+ "end": 246.213,
+ "text": "platform?"
+ },
+ {
+ "id": 749,
+ "start": 246.213,
+ "end": 246.473,
+ "text": "How"
+ },
+ {
+ "id": 750,
+ "start": 246.473,
+ "end": 246.573,
+ "text": "do"
+ },
+ {
+ "id": 751,
+ "start": 246.573,
+ "end": 247.133,
+ "text": "we"
+ },
+ {
+ "id": 752,
+ "start": 247.133,
+ "end": 247.603,
+ "text": "build"
+ },
+ {
+ "id": 753,
+ "start": 247.603,
+ "end": 247.763,
+ "text": "out"
+ },
+ {
+ "id": 754,
+ "start": 247.763,
+ "end": 247.853,
+ "text": "our"
+ },
+ {
+ "id": 755,
+ "start": 247.853,
+ "end": 248.353,
+ "text": "capacity,"
+ },
+ {
+ "id": 756,
+ "start": 248.353,
+ "end": 248.453,
+ "text": "how"
+ },
+ {
+ "id": 757,
+ "start": 248.453,
+ "end": 248.523,
+ "text": "do"
+ },
+ {
+ "id": 758,
+ "start": 248.523,
+ "end": 248.603,
+ "text": "we"
+ },
+ {
+ "id": 759,
+ "start": 248.603,
+ "end": 249.103,
+ "text": "expand"
+ },
+ {
+ "id": 760,
+ "start": 249.103,
+ "end": 249.193,
+ "text": "our"
+ },
+ {
+ "id": 761,
+ "start": 249.193,
+ "end": 250.043,
+ "text": "teams,"
+ },
+ {
+ "id": 762,
+ "start": 250.043,
+ "end": 250.303,
+ "text": "and"
+ },
+ {
+ "id": 763,
+ "start": 250.303,
+ "end": 250.613,
+ "text": "how"
+ },
+ {
+ "id": 764,
+ "start": 250.613,
+ "end": 250.743,
+ "text": "do"
+ },
+ {
+ "id": 765,
+ "start": 250.743,
+ "end": 251.153,
+ "text": "we"
+ },
+ {
+ "id": 766,
+ "start": 251.153,
+ "end": 251.693,
+ "text": "connect"
+ },
+ {
+ "id": 767,
+ "start": 251.693,
+ "end": 252.083,
+ "text": "everyone"
+ },
+ {
+ "id": 768,
+ "start": 252.083,
+ "end": 252.403,
+ "text": "inside"
+ },
+ {
+ "id": 769,
+ "start": 252.403,
+ "end": 252.483,
+ "text": "the"
+ },
+ {
+ "id": 770,
+ "start": 252.483,
+ "end": 253.163,
+ "text": "company"
+ },
+ {
+ "id": 771,
+ "start": 253.163,
+ "end": 253.633,
+ "text": "so"
+ },
+ {
+ "id": 772,
+ "start": 253.633,
+ "end": 253.883,
+ "text": "that"
+ },
+ {
+ "id": 773,
+ "start": 253.883,
+ "end": 254.023,
+ "text": "we"
+ },
+ {
+ "id": 774,
+ "start": 254.023,
+ "end": 254.233,
+ "text": "can"
+ },
+ {
+ "id": 775,
+ "start": 254.233,
+ "end": 254.403,
+ "text": "run"
+ },
+ {
+ "id": 776,
+ "start": 254.403,
+ "end": 254.573,
+ "text": "this"
+ },
+ {
+ "id": 777,
+ "start": 254.573,
+ "end": 254.743,
+ "text": "more"
+ },
+ {
+ "id": 778,
+ "start": 254.743,
+ "end": 255.403,
+ "text": "quickly,"
+ },
+ {
+ "id": 779,
+ "start": 255.403,
+ "end": 255.623,
+ "text": "more"
+ },
+ {
+ "id": 780,
+ "start": 255.623,
+ "end": 256.243,
+ "text": "effectively"
+ },
+ {
+ "id": 781,
+ "start": 256.243,
+ "end": 256.393,
+ "text": "and"
+ },
+ {
+ "id": 782,
+ "start": 256.393,
+ "end": 257.503,
+ "text": "repeatedly?"
+ },
+ {
+ "id": 783,
+ "start": 257.113,
+ "end": 257.683,
+ "text": "You"
+ },
+ {
+ "id": 784,
+ "start": 257.563,
+ "end": 257.923,
+ "text": "mention"
+ },
+ {
+ "id": 785,
+ "start": 258.013,
+ "end": 258.163,
+ "text": "the"
+ },
+ {
+ "id": 786,
+ "start": 258.163,
+ "end": 259.163,
+ "text": "IRA."
+ },
+ {
+ "id": 787,
+ "start": 259.163,
+ "end": 259.513,
+ "text": "Are"
+ },
+ {
+ "id": 788,
+ "start": 259.513,
+ "end": 259.693,
+ "text": "there"
+ },
+ {
+ "id": 789,
+ "start": 259.693,
+ "end": 260.123,
+ "text": "people"
+ },
+ {
+ "id": 790,
+ "start": 260.123,
+ "end": 260.553,
+ "text": "working"
+ },
+ {
+ "id": 791,
+ "start": 260.553,
+ "end": 260.823,
+ "text": "here"
+ },
+ {
+ "id": 792,
+ "start": 260.823,
+ "end": 261.093,
+ "text": "every"
+ },
+ {
+ "id": 793,
+ "start": 261.093,
+ "end": 261.503,
+ "text": "day"
+ },
+ {
+ "id": 794,
+ "start": 261.503,
+ "end": 262.173,
+ "text": "on"
+ },
+ {
+ "id": 795,
+ "start": 262.173,
+ "end": 262.723,
+ "text": "figuring"
+ },
+ {
+ "id": 796,
+ "start": 262.723,
+ "end": 263.603,
+ "text": "out"
+ },
+ {
+ "id": 797,
+ "start": 263.603,
+ "end": 263.893,
+ "text": "what"
+ },
+ {
+ "id": 798,
+ "start": 263.893,
+ "end": 264.063,
+ "text": "the"
+ },
+ {
+ "id": 799,
+ "start": 264.063,
+ "end": 264.483,
+ "text": "IRA"
+ },
+ {
+ "id": 800,
+ "start": 264.483,
+ "end": 264.643,
+ "text": "is"
+ },
+ {
+ "id": 801,
+ "start": 264.643,
+ "end": 265.103,
+ "text": "doing,"
+ },
+ {
+ "id": 802,
+ "start": 265.103,
+ "end": 265.273,
+ "text": "what"
+ },
+ {
+ "id": 803,
+ "start": 265.273,
+ "end": 265.443,
+ "text": "their"
+ },
+ {
+ "id": 804,
+ "start": 265.443,
+ "end": 266.003,
+ "text": "playbook"
+ },
+ {
+ "id": 805,
+ "start": 266.003,
+ "end": 266.843,
+ "text": "is?"
+ },
+ {
+ "id": 806,
+ "start": 266.843,
+ "end": 267.053,
+ "text": "Give"
+ },
+ {
+ "id": 807,
+ "start": 267.053,
+ "end": 267.153,
+ "text": "me"
+ },
+ {
+ "id": 808,
+ "start": 267.153,
+ "end": 267.203,
+ "text": "a"
+ },
+ {
+ "id": 809,
+ "start": 267.203,
+ "end": 267.613,
+ "text": "sense"
+ },
+ {
+ "id": 810,
+ "start": 267.703,
+ "end": 268.07300000000004,
+ "text": "as"
+ },
+ {
+ "id": 811,
+ "start": 268.203,
+ "end": 268.533,
+ "text": "to"
+ },
+ {
+ "id": 812,
+ "start": 268.703,
+ "end": 268.993,
+ "text": "who’s"
+ },
+ {
+ "id": 813,
+ "start": 268.993,
+ "end": 269.373,
+ "text": "working"
+ },
+ {
+ "id": 814,
+ "start": 269.373,
+ "end": 269.583,
+ "text": "on"
+ },
+ {
+ "id": 815,
+ "start": 269.583,
+ "end": 269.943,
+ "text": "what"
+ },
+ {
+ "id": 816,
+ "start": 269.943,
+ "end": 270.133,
+ "text": "in"
+ },
+ {
+ "id": 817,
+ "start": 270.133,
+ "end": 270.433,
+ "text": "terms"
+ },
+ {
+ "id": 818,
+ "start": 270.433,
+ "end": 270.773,
+ "text": "of"
+ },
+ {
+ "id": 819,
+ "start": 270.773,
+ "end": 271.563,
+ "text": "these,"
+ },
+ {
+ "id": 820,
+ "start": 271.563,
+ "end": 271.913,
+ "text": "people"
+ },
+ {
+ "id": 821,
+ "start": 271.913,
+ "end": 272.043,
+ "text": "that"
+ },
+ {
+ "id": 822,
+ "start": 272.043,
+ "end": 272.153,
+ "text": "had"
+ },
+ {
+ "id": 823,
+ "start": 272.153,
+ "end": 272.493,
+ "text": "meddled"
+ },
+ {
+ "id": 824,
+ "start": 272.493,
+ "end": 272.633,
+ "text": "in"
+ },
+ {
+ "id": 825,
+ "start": 273.128,
+ "end": 273.483,
+ "text": "2016"
+ },
+ {
+ "id": 826,
+ "start": 273.763,
+ "end": 274.333,
+ "text": "and"
+ },
+ {
+ "id": 827,
+ "start": 274.333,
+ "end": 274.663,
+ "text": "what"
+ },
+ {
+ "id": 828,
+ "start": 274.663,
+ "end": 274.793,
+ "text": "they"
+ },
+ {
+ "id": 829,
+ "start": 274.793,
+ "end": 275.083,
+ "text": "did"
+ },
+ {
+ "id": 830,
+ "start": 275.083,
+ "end": 275.653,
+ "text": "there"
+ },
+ {
+ "id": 831,
+ "start": 275.653,
+ "end": 275.993,
+ "text": "and"
+ },
+ {
+ "id": 832,
+ "start": 275.993,
+ "end": 276.143,
+ "text": "what"
+ },
+ {
+ "id": 833,
+ "start": 276.143,
+ "end": 276.253,
+ "text": "they’re"
+ },
+ {
+ "id": 834,
+ "start": 276.253,
+ "end": 276.523,
+ "text": "doing"
+ },
+ {
+ "id": 835,
+ "start": 276.823,
+ "end": 277.028,
+ "text": "now."
+ },
+ {
+ "id": 836,
+ "start": 277.393,
+ "end": 277.533,
+ "text": "We"
+ },
+ {
+ "id": 837,
+ "start": 277.533,
+ "end": 277.633,
+ "text": "have"
+ },
+ {
+ "id": 838,
+ "start": 277.633,
+ "end": 277.693,
+ "text": "a"
+ },
+ {
+ "id": 839,
+ "start": 277.693,
+ "end": 277.943,
+ "text": "core"
+ },
+ {
+ "id": 840,
+ "start": 277.943,
+ "end": 278.153,
+ "text": "team"
+ },
+ {
+ "id": 841,
+ "start": 278.153,
+ "end": 278.253,
+ "text": "of"
+ },
+ {
+ "id": 842,
+ "start": 278.253,
+ "end": 279.253,
+ "text": "investigators"
+ },
+ {
+ "id": 843,
+ "start": 279.253,
+ "end": 279.423,
+ "text": "that"
+ },
+ {
+ "id": 844,
+ "start": 279.423,
+ "end": 279.533,
+ "text": "are"
+ },
+ {
+ "id": 845,
+ "start": 279.533,
+ "end": 279.963,
+ "text": "focused"
+ },
+ {
+ "id": 846,
+ "start": 279.963,
+ "end": 280.143,
+ "text": "on"
+ },
+ {
+ "id": 847,
+ "start": 280.143,
+ "end": 280.473,
+ "text": "threats"
+ },
+ {
+ "id": 848,
+ "start": 280.473,
+ "end": 280.633,
+ "text": "from"
+ },
+ {
+ "id": 849,
+ "start": 280.633,
+ "end": 280.853,
+ "text": "all"
+ },
+ {
+ "id": 850,
+ "start": 280.853,
+ "end": 281.153,
+ "text": "sorts"
+ },
+ {
+ "id": 851,
+ "start": 281.153,
+ "end": 281.223,
+ "text": "of"
+ },
+ {
+ "id": 852,
+ "start": 281.223,
+ "end": 281.393,
+ "text": "bad"
+ },
+ {
+ "id": 853,
+ "start": 281.393,
+ "end": 282.563,
+ "text": "actors."
+ },
+ {
+ "id": 854,
+ "start": 282.563,
+ "end": 283.103,
+ "text": "Yes,"
+ },
+ {
+ "id": 855,
+ "start": 283.103,
+ "end": 283.213,
+ "text": "we"
+ },
+ {
+ "id": 856,
+ "start": 283.213,
+ "end": 283.773,
+ "text": "have"
+ },
+ {
+ "id": 857,
+ "start": 283.773,
+ "end": 284.443,
+ "text": "investigators"
+ },
+ {
+ "id": 858,
+ "start": 284.443,
+ "end": 284.673,
+ "text": "that"
+ },
+ {
+ "id": 859,
+ "start": 284.673,
+ "end": 284.873,
+ "text": "are"
+ },
+ {
+ "id": 860,
+ "start": 284.873,
+ "end": 285.323,
+ "text": "focused"
+ },
+ {
+ "id": 861,
+ "start": 285.313,
+ "end": 285.883,
+ "text": "on"
+ },
+ {
+ "id": 862,
+ "start": 286.188,
+ "end": 286.68300000000005,
+ "text": "IRA-style"
+ },
+ {
+ "id": 863,
+ "start": 287.063,
+ "end": 287.483,
+ "text": "malicious"
+ },
+ {
+ "id": 864,
+ "start": 287.483,
+ "end": 288.133,
+ "text": "actors."
+ },
+ {
+ "id": 865,
+ "start": 288.133,
+ "end": 288.363,
+ "text": "We"
+ },
+ {
+ "id": 866,
+ "start": 288.363,
+ "end": 288.453,
+ "text": "have"
+ },
+ {
+ "id": 867,
+ "start": 288.453,
+ "end": 288.963,
+ "text": "investigators"
+ },
+ {
+ "id": 868,
+ "start": 288.963,
+ "end": 289.053,
+ "text": "that"
+ },
+ {
+ "id": 869,
+ "start": 289.053,
+ "end": 289.113,
+ "text": "are"
+ },
+ {
+ "id": 870,
+ "start": 289.113,
+ "end": 289.553,
+ "text": "focused"
+ },
+ {
+ "id": 871,
+ "start": 289.543,
+ "end": 290.003,
+ "text": "on"
+ },
+ {
+ "id": 872,
+ "start": 290.103,
+ "end": 290.758,
+ "text": "non-state"
+ },
+ {
+ "id": 873,
+ "start": 290.663,
+ "end": 291.513,
+ "text": "actors."
+ },
+ {
+ "id": 874,
+ "start": 291.513,
+ "end": 291.673,
+ "text": "They’re"
+ },
+ {
+ "id": 875,
+ "start": 291.673,
+ "end": 292.263,
+ "text": "constantly"
+ },
+ {
+ "id": 876,
+ "start": 292.263,
+ "end": 292.543,
+ "text": "thinking"
+ },
+ {
+ "id": 877,
+ "start": 292.543,
+ "end": 292.843,
+ "text": "about"
+ },
+ {
+ "id": 878,
+ "start": 292.843,
+ "end": 293.313,
+ "text": "what"
+ },
+ {
+ "id": 879,
+ "start": 293.313,
+ "end": 293.583,
+ "text": "are"
+ },
+ {
+ "id": 880,
+ "start": 293.583,
+ "end": 293.793,
+ "text": "these"
+ },
+ {
+ "id": 881,
+ "start": 293.793,
+ "end": 294.173,
+ "text": "actors"
+ },
+ {
+ "id": 882,
+ "start": 294.173,
+ "end": 294.503,
+ "text": "trying"
+ },
+ {
+ "id": 883,
+ "start": 294.503,
+ "end": 294.603,
+ "text": "to"
+ },
+ {
+ "id": 884,
+ "start": 294.603,
+ "end": 295.203,
+ "text": "do,"
+ },
+ {
+ "id": 885,
+ "start": 295.203,
+ "end": 295.823,
+ "text": "what"
+ },
+ {
+ "id": 886,
+ "start": 295.823,
+ "end": 296.003,
+ "text": "and"
+ },
+ {
+ "id": 887,
+ "start": 296.003,
+ "end": 296.353,
+ "text": "how"
+ },
+ {
+ "id": 888,
+ "start": 296.353,
+ "end": 296.563,
+ "text": "can"
+ },
+ {
+ "id": 889,
+ "start": 296.563,
+ "end": 297.303,
+ "text": "we"
+ },
+ {
+ "id": 890,
+ "start": 297.303,
+ "end": 297.653,
+ "text": "stop"
+ },
+ {
+ "id": 891,
+ "start": 297.653,
+ "end": 297.893,
+ "text": "them,"
+ },
+ {
+ "id": 892,
+ "start": 297.893,
+ "end": 298.003,
+ "text": "and"
+ },
+ {
+ "id": 893,
+ "start": 298.003,
+ "end": 298.193,
+ "text": "how"
+ },
+ {
+ "id": 894,
+ "start": 298.10299999999995,
+ "end": 298.243,
+ "text": "can"
+ },
+ {
+ "id": 895,
+ "start": 298.203,
+ "end": 298.293,
+ "text": "we"
+ },
+ {
+ "id": 896,
+ "start": 298.293,
+ "end": 298.443,
+ "text": "make"
+ },
+ {
+ "id": 897,
+ "start": 298.443,
+ "end": 298.513,
+ "text": "it"
+ },
+ {
+ "id": 898,
+ "start": 298.513,
+ "end": 299.473,
+ "text": "harder."
+ },
+ {
+ "id": 899,
+ "start": 299.473,
+ "end": 299.853,
+ "text": "So"
+ },
+ {
+ "id": 900,
+ "start": 299.853,
+ "end": 300.063,
+ "text": "would"
+ },
+ {
+ "id": 901,
+ "start": 300.063,
+ "end": 300.163,
+ "text": "you"
+ },
+ {
+ "id": 902,
+ "start": 300.163,
+ "end": 300.273,
+ "text": "have"
+ },
+ {
+ "id": 903,
+ "start": 300.273,
+ "end": 300.763,
+ "text": "considered"
+ },
+ {
+ "id": 904,
+ "start": 300.763,
+ "end": 301.003,
+ "text": "what"
+ },
+ {
+ "id": 905,
+ "start": 301.003,
+ "end": 301.583,
+ "text": "the"
+ },
+ {
+ "id": 906,
+ "start": 301.583,
+ "end": 301.973,
+ "text": "Internet"
+ },
+ {
+ "id": 907,
+ "start": 301.973,
+ "end": 302.363,
+ "text": "Research"
+ },
+ {
+ "id": 908,
+ "start": 302.363,
+ "end": 302.843,
+ "text": "Agency"
+ },
+ {
+ "id": 909,
+ "start": 302.843,
+ "end": 302.963,
+ "text": "and"
+ },
+ {
+ "id": 910,
+ "start": 302.903,
+ "end": 303.003,
+ "text": "what"
+ },
+ {
+ "id": 911,
+ "start": 302.963,
+ "end": 303.043,
+ "text": "the"
+ },
+ {
+ "id": 912,
+ "start": 303.043,
+ "end": 303.443,
+ "text": "Russians"
+ },
+ {
+ "id": 913,
+ "start": 303.443,
+ "end": 303.653,
+ "text": "did"
+ },
+ {
+ "id": 914,
+ "start": 303.653,
+ "end": 303.863,
+ "text": "in"
+ },
+ {
+ "id": 915,
+ "start": 304.403,
+ "end": 304.788,
+ "text": "2016"
+ },
+ {
+ "id": 916,
+ "start": 305.153,
+ "end": 305.713,
+ "text": "campaign,"
+ },
+ {
+ "id": 917,
+ "start": 305.713,
+ "end": 305.893,
+ "text": "did"
+ },
+ {
+ "id": 918,
+ "start": 305.893,
+ "end": 306.023,
+ "text": "you"
+ },
+ {
+ "id": 919,
+ "start": 306.023,
+ "end": 306.313,
+ "text": "come"
+ },
+ {
+ "id": 920,
+ "start": 306.313,
+ "end": 306.943,
+ "text": "in"
+ },
+ {
+ "id": 921,
+ "start": 306.943,
+ "end": 307.363,
+ "text": "thinking"
+ },
+ {
+ "id": 922,
+ "start": 307.363,
+ "end": 307.743,
+ "text": "that"
+ },
+ {
+ "id": 923,
+ "start": 307.533,
+ "end": 307.983,
+ "text": "was"
+ },
+ {
+ "id": 924,
+ "start": 307.953,
+ "end": 308.633,
+ "text": "a"
+ },
+ {
+ "id": 925,
+ "start": 308.373,
+ "end": 309.283,
+ "text": "sophisticated"
+ },
+ {
+ "id": 926,
+ "start": 309.283,
+ "end": 309.833,
+ "text": "campaign"
+ },
+ {
+ "id": 927,
+ "start": 309.833,
+ "end": 309.983,
+ "text": "on"
+ },
+ {
+ "id": 928,
+ "start": 309.983,
+ "end": 311.003,
+ "text": "Facebook,"
+ },
+ {
+ "id": 929,
+ "start": 311.003,
+ "end": 311.173,
+ "text": "what"
+ },
+ {
+ "id": 930,
+ "start": 311.173,
+ "end": 311.333,
+ "text": "they"
+ },
+ {
+ "id": 931,
+ "start": 311.333,
+ "end": 312.073,
+ "text": "ran?"
+ },
+ {
+ "id": 932,
+ "start": 312.073,
+ "end": 312.333,
+ "text": "What"
+ },
+ {
+ "id": 933,
+ "start": 312.333,
+ "end": 312.393,
+ "text": "do"
+ },
+ {
+ "id": 934,
+ "start": 312.393,
+ "end": 312.473,
+ "text": "you"
+ },
+ {
+ "id": 935,
+ "start": 312.473,
+ "end": 312.923,
+ "text": "mean"
+ },
+ {
+ "id": 936,
+ "start": 312.923,
+ "end": 313.063,
+ "text": "by"
+ },
+ {
+ "id": 937,
+ "start": 313.063,
+ "end": 313.603,
+ "text": "that?"
+ },
+ {
+ "id": 938,
+ "start": 313.603,
+ "end": 313.843,
+ "text": "What"
+ },
+ {
+ "id": 939,
+ "start": 313.843,
+ "end": 313.893,
+ "text": "I"
+ },
+ {
+ "id": 940,
+ "start": 313.893,
+ "end": 314.153,
+ "text": "mean"
+ },
+ {
+ "id": 941,
+ "start": 314.153,
+ "end": 314.303,
+ "text": "by"
+ },
+ {
+ "id": 942,
+ "start": 314.303,
+ "end": 314.513,
+ "text": "that"
+ },
+ {
+ "id": 943,
+ "start": 314.513,
+ "end": 314.683,
+ "text": "is"
+ },
+ {
+ "id": 944,
+ "start": 314.683,
+ "end": 314.853,
+ "text": "were"
+ },
+ {
+ "id": 945,
+ "start": 314.853,
+ "end": 315.013,
+ "text": "they"
+ },
+ {
+ "id": 946,
+ "start": 315.013,
+ "end": 315.243,
+ "text": "really"
+ },
+ {
+ "id": 947,
+ "start": 315.243,
+ "end": 315.713,
+ "text": "clever"
+ },
+ {
+ "id": 948,
+ "start": 315.858,
+ "end": 316.158,
+ "text": "in"
+ },
+ {
+ "id": 949,
+ "start": 316.473,
+ "end": 316.603,
+ "text": "how"
+ },
+ {
+ "id": 950,
+ "start": 316.603,
+ "end": 317.043,
+ "text": "they"
+ },
+ {
+ "id": 951,
+ "start": 317.043,
+ "end": 317.993,
+ "text": "operated"
+ },
+ {
+ "id": 952,
+ "start": 317.993,
+ "end": 318.143,
+ "text": "and"
+ },
+ {
+ "id": 953,
+ "start": 318.143,
+ "end": 318.253,
+ "text": "how"
+ },
+ {
+ "id": 954,
+ "start": 318.253,
+ "end": 318.373,
+ "text": "they"
+ },
+ {
+ "id": 955,
+ "start": 318.373,
+ "end": 318.713,
+ "text": "gamed"
+ },
+ {
+ "id": 956,
+ "start": 319.018,
+ "end": 319.268,
+ "text": "it?"
+ },
+ {
+ "id": 957,
+ "start": 319.663,
+ "end": 319.823,
+ "text": "They"
+ },
+ {
+ "id": 958,
+ "start": 319.823,
+ "end": 320.003,
+ "text": "were"
+ },
+ {
+ "id": 959,
+ "start": 320.003,
+ "end": 320.443,
+ "text": "using"
+ },
+ {
+ "id": 960,
+ "start": 320.443,
+ "end": 320.483,
+ "text": "a"
+ },
+ {
+ "id": 961,
+ "start": 320.483,
+ "end": 320.693,
+ "text": "new"
+ },
+ {
+ "id": 962,
+ "start": 320.693,
+ "end": 321.353,
+ "text": "medium"
+ },
+ {
+ "id": 963,
+ "start": 321.353,
+ "end": 321.493,
+ "text": "in"
+ },
+ {
+ "id": 964,
+ "start": 321.493,
+ "end": 321.563,
+ "text": "a"
+ },
+ {
+ "id": 965,
+ "start": 321.563,
+ "end": 321.743,
+ "text": "way"
+ },
+ {
+ "id": 966,
+ "start": 321.743,
+ "end": 321.913,
+ "text": "that"
+ },
+ {
+ "id": 967,
+ "start": 321.913,
+ "end": 322.183,
+ "text": "no"
+ },
+ {
+ "id": 968,
+ "start": 322.183,
+ "end": 322.283,
+ "text": "one"
+ },
+ {
+ "id": 969,
+ "start": 322.283,
+ "end": 322.383,
+ "text": "had"
+ },
+ {
+ "id": 970,
+ "start": 322.383,
+ "end": 322.633,
+ "text": "seen"
+ },
+ {
+ "id": 971,
+ "start": 322.633,
+ "end": 323.063,
+ "text": "before,"
+ },
+ {
+ "id": 972,
+ "start": 323.063,
+ "end": 323.873,
+ "text": "right?"
+ },
+ {
+ "id": 973,
+ "start": 323.873,
+ "end": 323.983,
+ "text": "I"
+ },
+ {
+ "id": 974,
+ "start": 323.983,
+ "end": 324.743,
+ "text": "think"
+ },
+ {
+ "id": 975,
+ "start": 324.743,
+ "end": 324.993,
+ "text": "we"
+ },
+ {
+ "id": 976,
+ "start": 324.993,
+ "end": 325.283,
+ "text": "have"
+ },
+ {
+ "id": 977,
+ "start": 325.283,
+ "end": 325.753,
+ "text": "learned"
+ },
+ {
+ "id": 978,
+ "start": 325.753,
+ "end": 326.153,
+ "text": "since"
+ },
+ {
+ "id": 979,
+ "start": 326.153,
+ "end": 326.813,
+ "text": "then"
+ },
+ {
+ "id": 980,
+ "start": 326.813,
+ "end": 327.013,
+ "text": "all"
+ },
+ {
+ "id": 981,
+ "start": 327.013,
+ "end": 327.283,
+ "text": "sorts"
+ },
+ {
+ "id": 982,
+ "start": 327.283,
+ "end": 327.363,
+ "text": "of"
+ },
+ {
+ "id": 983,
+ "start": 327.363,
+ "end": 327.693,
+ "text": "ways"
+ },
+ {
+ "id": 984,
+ "start": 327.693,
+ "end": 327.853,
+ "text": "in"
+ },
+ {
+ "id": 985,
+ "start": 327.853,
+ "end": 328.343,
+ "text": "which"
+ },
+ {
+ "id": 986,
+ "start": 328.343,
+ "end": 329.023,
+ "text": "they"
+ },
+ {
+ "id": 987,
+ "start": 329.023,
+ "end": 329.553,
+ "text": "didn’t"
+ },
+ {
+ "id": 988,
+ "start": 329.553,
+ "end": 330.063,
+ "text": "conceal"
+ },
+ {
+ "id": 989,
+ "start": 330.063,
+ "end": 330.213,
+ "text": "their"
+ },
+ {
+ "id": 990,
+ "start": 330.213,
+ "end": 330.703,
+ "text": "identity"
+ },
+ {
+ "id": 991,
+ "start": 330.703,
+ "end": 330.833,
+ "text": "as"
+ },
+ {
+ "id": 992,
+ "start": 330.833,
+ "end": 331.013,
+ "text": "much"
+ },
+ {
+ "id": 993,
+ "start": 331.013,
+ "end": 331.113,
+ "text": "as"
+ },
+ {
+ "id": 994,
+ "start": 331.113,
+ "end": 331.213,
+ "text": "they"
+ },
+ {
+ "id": 995,
+ "start": 331.213,
+ "end": 331.473,
+ "text": "might"
+ },
+ {
+ "id": 996,
+ "start": 331.473,
+ "end": 331.623,
+ "text": "have"
+ },
+ {
+ "id": 997,
+ "start": 331.623,
+ "end": 331.773,
+ "text": "which"
+ },
+ {
+ "id": 998,
+ "start": 331.773,
+ "end": 331.873,
+ "text": "has"
+ },
+ {
+ "id": 999,
+ "start": 331.873,
+ "end": 332.413,
+ "text": "enabled"
+ },
+ {
+ "id": 1000,
+ "start": 332.413,
+ "end": 332.543,
+ "text": "us"
+ },
+ {
+ "id": 1001,
+ "start": 332.543,
+ "end": 332.663,
+ "text": "to"
+ },
+ {
+ "id": 1002,
+ "start": 332.663,
+ "end": 332.853,
+ "text": "really"
+ },
+ {
+ "id": 1003,
+ "start": 332.853,
+ "end": 333.183,
+ "text": "map"
+ },
+ {
+ "id": 1004,
+ "start": 333.183,
+ "end": 333.323,
+ "text": "out"
+ },
+ {
+ "id": 1005,
+ "start": 333.323,
+ "end": 333.473,
+ "text": "what"
+ },
+ {
+ "id": 1006,
+ "start": 333.473,
+ "end": 333.563,
+ "text": "they"
+ },
+ {
+ "id": 1007,
+ "start": 333.563,
+ "end": 333.693,
+ "text": "were"
+ },
+ {
+ "id": 1008,
+ "start": 333.693,
+ "end": 334.303,
+ "text": "doing."
+ },
+ {
+ "id": 1009,
+ "start": 334.303,
+ "end": 334.523,
+ "text": "But"
+ },
+ {
+ "id": 1010,
+ "start": 334.523,
+ "end": 334.623,
+ "text": "the"
+ },
+ {
+ "id": 1011,
+ "start": 334.623,
+ "end": 334.913,
+ "text": "way"
+ },
+ {
+ "id": 1012,
+ "start": 334.913,
+ "end": 335.043,
+ "text": "that"
+ },
+ {
+ "id": 1013,
+ "start": 335.043,
+ "end": 335.183,
+ "text": "they"
+ },
+ {
+ "id": 1014,
+ "start": 335.183,
+ "end": 335.453,
+ "text": "used"
+ },
+ {
+ "id": 1015,
+ "start": 335.453,
+ "end": 335.593,
+ "text": "this"
+ },
+ {
+ "id": 1016,
+ "start": 335.593,
+ "end": 335.713,
+ "text": "new"
+ },
+ {
+ "id": 1017,
+ "start": 335.713,
+ "end": 336.423,
+ "text": "medium,"
+ },
+ {
+ "id": 1018,
+ "start": 336.423,
+ "end": 336.673,
+ "text": "we’ve"
+ },
+ {
+ "id": 1019,
+ "start": 336.673,
+ "end": 337.993,
+ "text": "said"
+ },
+ {
+ "id": 1020,
+ "start": 337.993,
+ "end": 338.333,
+ "text": "it"
+ },
+ {
+ "id": 1021,
+ "start": 338.333,
+ "end": 338.443,
+ "text": "was"
+ },
+ {
+ "id": 1022,
+ "start": 338.443,
+ "end": 338.503,
+ "text": "a"
+ },
+ {
+ "id": 1023,
+ "start": 338.503,
+ "end": 338.943,
+ "text": "surprise"
+ },
+ {
+ "id": 1024,
+ "start": 338.943,
+ "end": 339.023,
+ "text": "to"
+ },
+ {
+ "id": 1025,
+ "start": 339.023,
+ "end": 339.243,
+ "text": "us."
+ },
+ {
+ "id": 1026,
+ "start": 339.243,
+ "end": 339.393,
+ "text": "We’ve"
+ },
+ {
+ "id": 1027,
+ "start": 339.393,
+ "end": 339.753,
+ "text": "said"
+ },
+ {
+ "id": 1028,
+ "start": 339.753,
+ "end": 339.873,
+ "text": "we"
+ },
+ {
+ "id": 1029,
+ "start": 339.873,
+ "end": 340.083,
+ "text": "didn’t"
+ },
+ {
+ "id": 1030,
+ "start": 340.083,
+ "end": 340.203,
+ "text": "see"
+ },
+ {
+ "id": 1031,
+ "start": 340.203,
+ "end": 340.293,
+ "text": "it"
+ },
+ {
+ "id": 1032,
+ "start": 340.293,
+ "end": 340.583,
+ "text": "fast"
+ },
+ {
+ "id": 1033,
+ "start": 340.728,
+ "end": 341.07800000000003,
+ "text": "enough;"
+ },
+ {
+ "id": 1034,
+ "start": 341.163,
+ "end": 341.573,
+ "text": "government"
+ },
+ {
+ "id": 1035,
+ "start": 341.573,
+ "end": 341.813,
+ "text": "didn’t"
+ },
+ {
+ "id": 1036,
+ "start": 341.813,
+ "end": 341.943,
+ "text": "see"
+ },
+ {
+ "id": 1037,
+ "start": 341.943,
+ "end": 342.043,
+ "text": "it"
+ },
+ {
+ "id": 1038,
+ "start": 342.043,
+ "end": 342.363,
+ "text": "fast"
+ },
+ {
+ "id": 1039,
+ "start": 342.363,
+ "end": 342.853,
+ "text": "enough."
+ },
+ {
+ "id": 1040,
+ "start": 342.853,
+ "end": 343.043,
+ "text": "I"
+ },
+ {
+ "id": 1041,
+ "start": 343.043,
+ "end": 343.263,
+ "text": "think"
+ },
+ {
+ "id": 1042,
+ "start": 343.263,
+ "end": 343.363,
+ "text": "what"
+ },
+ {
+ "id": 1043,
+ "start": 343.363,
+ "end": 343.483,
+ "text": "we’ve"
+ },
+ {
+ "id": 1044,
+ "start": 343.483,
+ "end": 343.643,
+ "text": "all"
+ },
+ {
+ "id": 1045,
+ "start": 343.643,
+ "end": 343.773,
+ "text": "been"
+ },
+ {
+ "id": 1046,
+ "start": 343.773,
+ "end": 344.233,
+ "text": "focused"
+ },
+ {
+ "id": 1047,
+ "start": 344.233,
+ "end": 344.453,
+ "text": "on"
+ },
+ {
+ "id": 1048,
+ "start": 344.453,
+ "end": 345.213,
+ "text": "is"
+ },
+ {
+ "id": 1049,
+ "start": 345.213,
+ "end": 345.393,
+ "text": "as"
+ },
+ {
+ "id": 1050,
+ "start": 345.393,
+ "end": 345.523,
+ "text": "we"
+ },
+ {
+ "id": 1051,
+ "start": 345.523,
+ "end": 345.943,
+ "text": "see"
+ },
+ {
+ "id": 1052,
+ "start": 345.943,
+ "end": 346.083,
+ "text": "the"
+ },
+ {
+ "id": 1053,
+ "start": 346.083,
+ "end": 346.633,
+ "text": "ways"
+ },
+ {
+ "id": 1054,
+ "start": 346.553,
+ "end": 346.983,
+ "text": "these"
+ },
+ {
+ "id": 1055,
+ "start": 347.023,
+ "end": 347.333,
+ "text": "bad"
+ },
+ {
+ "id": 1056,
+ "start": 347.333,
+ "end": 347.643,
+ "text": "actors"
+ },
+ {
+ "id": 1057,
+ "start": 347.643,
+ "end": 347.713,
+ "text": "are"
+ },
+ {
+ "id": 1058,
+ "start": 347.713,
+ "end": 348.153,
+ "text": "trying"
+ },
+ {
+ "id": 1059,
+ "start": 348.153,
+ "end": 348.243,
+ "text": "to"
+ },
+ {
+ "id": 1060,
+ "start": 348.243,
+ "end": 348.423,
+ "text": "use"
+ },
+ {
+ "id": 1061,
+ "start": 348.423,
+ "end": 348.513,
+ "text": "the"
+ },
+ {
+ "id": 1062,
+ "start": 349.0830000000001,
+ "end": 349.2730000000001,
+ "text": "platform,"
+ },
+ {
+ "id": 1063,
+ "start": 349.743,
+ "end": 350.033,
+ "text": "how"
+ },
+ {
+ "id": 1064,
+ "start": 350.033,
+ "end": 350.263,
+ "text": "can"
+ },
+ {
+ "id": 1065,
+ "start": 350.263,
+ "end": 350.493,
+ "text": "we"
+ },
+ {
+ "id": 1066,
+ "start": 350.493,
+ "end": 350.643,
+ "text": "get"
+ },
+ {
+ "id": 1067,
+ "start": 350.643,
+ "end": 350.923,
+ "text": "ahead"
+ },
+ {
+ "id": 1068,
+ "start": 350.923,
+ "end": 351.033,
+ "text": "of"
+ },
+ {
+ "id": 1069,
+ "start": 351.023,
+ "end": 351.313,
+ "text": "that?"
+ },
+ {
+ "id": 1070,
+ "start": 351.413,
+ "end": 351.738,
+ "text": "And"
+ },
+ {
+ "id": 1071,
+ "start": 351.803,
+ "end": 352.163,
+ "text": "having"
+ },
+ {
+ "id": 1072,
+ "start": 352.163,
+ "end": 352.473,
+ "text": "come"
+ },
+ {
+ "id": 1073,
+ "start": 352.473,
+ "end": 352.633,
+ "text": "out"
+ },
+ {
+ "id": 1074,
+ "start": 352.633,
+ "end": 352.743,
+ "text": "of"
+ },
+ {
+ "id": 1075,
+ "start": 352.743,
+ "end": 355.193,
+ "text": "government,"
+ },
+ {
+ "id": 1076,
+ "start": 355.193,
+ "end": 355.543,
+ "text": "what"
+ },
+ {
+ "id": 1077,
+ "start": 355.543,
+ "end": 355.773,
+ "text": "years"
+ },
+ {
+ "id": 1078,
+ "start": 355.773,
+ "end": 355.923,
+ "text": "were"
+ },
+ {
+ "id": 1079,
+ "start": 355.923,
+ "end": 356.033,
+ "text": "you"
+ },
+ {
+ "id": 1080,
+ "start": 356.033,
+ "end": 356.103,
+ "text": "in"
+ },
+ {
+ "id": 1081,
+ "start": 356.103,
+ "end": 356.213,
+ "text": "the"
+ },
+ {
+ "id": 1082,
+ "start": 356.538,
+ "end": 356.713,
+ "text": "Obama—what"
+ },
+ {
+ "id": 1083,
+ "start": 356.973,
+ "end": 357.213,
+ "text": "years"
+ },
+ {
+ "id": 1084,
+ "start": 357.213,
+ "end": 357.343,
+ "text": "were"
+ },
+ {
+ "id": 1085,
+ "start": 357.343,
+ "end": 357.413,
+ "text": "you"
+ },
+ {
+ "id": 1086,
+ "start": 357.413,
+ "end": 357.483,
+ "text": "at"
+ },
+ {
+ "id": 1087,
+ "start": 357.483,
+ "end": 357.573,
+ "text": "the"
+ },
+ {
+ "id": 1088,
+ "start": 357.573,
+ "end": 358.303,
+ "text": "NSC?"
+ },
+ {
+ "id": 1089,
+ "start": 358.303,
+ "end": 358.473,
+ "text": "At"
+ },
+ {
+ "id": 1090,
+ "start": 358.473,
+ "end": 358.593,
+ "text": "the"
+ },
+ {
+ "id": 1091,
+ "start": 358.593,
+ "end": 359.113,
+ "text": "NSC"
+ },
+ {
+ "id": 1092,
+ "start": 359.113,
+ "end": 359.713,
+ "text": "from"
+ },
+ {
+ "id": 1093,
+ "start": 359.65299999999996,
+ "end": 360.17075,
+ "text": "2013"
+ },
+ {
+ "id": 1094,
+ "start": 360.1929999999999,
+ "end": 360.62850000000003,
+ "text": "to"
+ },
+ {
+ "id": 1095,
+ "start": 360.733,
+ "end": 361.08625,
+ "text": "2015."
+ },
+ {
+ "id": 1096,
+ "start": 361.273,
+ "end": 361.544,
+ "text": "So"
+ },
+ {
+ "id": 1097,
+ "start": 361.544,
+ "end": 361.944,
+ "text": "during"
+ },
+ {
+ "id": 1098,
+ "start": 361.944,
+ "end": 362.134,
+ "text": "that"
+ },
+ {
+ "id": 1099,
+ "start": 362.134,
+ "end": 362.434,
+ "text": "period"
+ },
+ {
+ "id": 1100,
+ "start": 362.434,
+ "end": 362.534,
+ "text": "of"
+ },
+ {
+ "id": 1101,
+ "start": 362.534,
+ "end": 363.264,
+ "text": "time,"
+ },
+ {
+ "id": 1102,
+ "start": 363.264,
+ "end": 363.714,
+ "text": "the"
+ },
+ {
+ "id": 1103,
+ "start": 363.714,
+ "end": 364.544,
+ "text": "Russians"
+ },
+ {
+ "id": 1104,
+ "start": 364.544,
+ "end": 364.824,
+ "text": "and"
+ },
+ {
+ "id": 1105,
+ "start": 364.824,
+ "end": 364.894,
+ "text": "the"
+ },
+ {
+ "id": 1106,
+ "start": 364.894,
+ "end": 365.204,
+ "text": "Internet"
+ },
+ {
+ "id": 1107,
+ "start": 365.204,
+ "end": 365.594,
+ "text": "Research"
+ },
+ {
+ "id": 1108,
+ "start": 365.594,
+ "end": 366.494,
+ "text": "Agency,"
+ },
+ {
+ "id": 1109,
+ "start": 366.494,
+ "end": 366.674,
+ "text": "they"
+ },
+ {
+ "id": 1110,
+ "start": 366.674,
+ "end": 366.844,
+ "text": "were"
+ },
+ {
+ "id": 1111,
+ "start": 366.844,
+ "end": 367.674,
+ "text": "waging"
+ },
+ {
+ "id": 1112,
+ "start": 367.674,
+ "end": 368.444,
+ "text": "disinformation"
+ },
+ {
+ "id": 1113,
+ "start": 368.444,
+ "end": 369.024,
+ "text": "campaigns"
+ },
+ {
+ "id": 1114,
+ "start": 369.024,
+ "end": 369.124,
+ "text": "in"
+ },
+ {
+ "id": 1115,
+ "start": 369.124,
+ "end": 369.524,
+ "text": "Ukraine,"
+ },
+ {
+ "id": 1116,
+ "start": 369.524,
+ "end": 369.694,
+ "text": "for"
+ },
+ {
+ "id": 1117,
+ "start": 369.694,
+ "end": 370.894,
+ "text": "instance,"
+ },
+ {
+ "id": 1118,
+ "start": 370.894,
+ "end": 371.214,
+ "text": "on"
+ },
+ {
+ "id": 1119,
+ "start": 371.214,
+ "end": 371.554,
+ "text": "social"
+ },
+ {
+ "id": 1120,
+ "start": 371.554,
+ "end": 371.904,
+ "text": "media"
+ },
+ {
+ "id": 1121,
+ "start": 371.729,
+ "end": 371.964,
+ "text": "and"
+ },
+ {
+ "id": 1122,
+ "start": 371.904,
+ "end": 372.024,
+ "text": "in"
+ },
+ {
+ "id": 1123,
+ "start": 372.024,
+ "end": 372.264,
+ "text": "part"
+ },
+ {
+ "id": 1124,
+ "start": 372.264,
+ "end": 372.374,
+ "text": "on"
+ },
+ {
+ "id": 1125,
+ "start": 372.72400000000005,
+ "end": 372.899,
+ "text": "Facebook."
+ },
+ {
+ "id": 1126,
+ "start": 373.184,
+ "end": 373.424,
+ "text": "Was"
+ },
+ {
+ "id": 1127,
+ "start": 373.424,
+ "end": 373.604,
+ "text": "that"
+ },
+ {
+ "id": 1128,
+ "start": 373.604,
+ "end": 373.894,
+ "text": "something"
+ },
+ {
+ "id": 1129,
+ "start": 373.894,
+ "end": 374.004,
+ "text": "that"
+ },
+ {
+ "id": 1130,
+ "start": 374.004,
+ "end": 374.154,
+ "text": "was"
+ },
+ {
+ "id": 1131,
+ "start": 374.154,
+ "end": 374.374,
+ "text": "on"
+ },
+ {
+ "id": 1132,
+ "start": 374.374,
+ "end": 374.464,
+ "text": "the"
+ },
+ {
+ "id": 1133,
+ "start": 374.464,
+ "end": 374.804,
+ "text": "radar"
+ },
+ {
+ "id": 1134,
+ "start": 374.804,
+ "end": 375.414,
+ "text": "screen"
+ },
+ {
+ "id": 1135,
+ "start": 375.414,
+ "end": 375.634,
+ "text": "of"
+ },
+ {
+ "id": 1136,
+ "start": 375.634,
+ "end": 376.164,
+ "text": "government"
+ },
+ {
+ "id": 1137,
+ "start": 376.164,
+ "end": 376.254,
+ "text": "at"
+ },
+ {
+ "id": 1138,
+ "start": 376.254,
+ "end": 376.434,
+ "text": "that"
+ },
+ {
+ "id": 1139,
+ "start": 376.434,
+ "end": 377.784,
+ "text": "point?"
+ },
+ {
+ "id": 1140,
+ "start": 377.784,
+ "end": 377.824,
+ "text": "I"
+ },
+ {
+ "id": 1141,
+ "start": 377.824,
+ "end": 378.014,
+ "text": "mean,"
+ },
+ {
+ "id": 1142,
+ "start": 378.014,
+ "end": 378.144,
+ "text": "we’ve"
+ },
+ {
+ "id": 1143,
+ "start": 378.144,
+ "end": 378.254,
+ "text": "had"
+ },
+ {
+ "id": 1144,
+ "start": 378.254,
+ "end": 378.324,
+ "text": "a"
+ },
+ {
+ "id": 1145,
+ "start": 378.324,
+ "end": 378.574,
+ "text": "heavy"
+ },
+ {
+ "id": 1146,
+ "start": 378.574,
+ "end": 379.054,
+ "text": "focus"
+ },
+ {
+ "id": 1147,
+ "start": 379.054,
+ "end": 379.504,
+ "text": "on"
+ },
+ {
+ "id": 1148,
+ "start": 379.504,
+ "end": 379.624,
+ "text": "the"
+ },
+ {
+ "id": 1149,
+ "start": 379.624,
+ "end": 380.094,
+ "text": "activity"
+ },
+ {
+ "id": 1150,
+ "start": 380.094,
+ "end": 380.364,
+ "text": "of"
+ },
+ {
+ "id": 1151,
+ "start": 380.364,
+ "end": 380.664,
+ "text": "threat"
+ },
+ {
+ "id": 1152,
+ "start": 380.664,
+ "end": 381.114,
+ "text": "actors"
+ },
+ {
+ "id": 1153,
+ "start": 381.114,
+ "end": 381.414,
+ "text": "like"
+ },
+ {
+ "id": 1154,
+ "start": 381.414,
+ "end": 383.884,
+ "text": "Russia."
+ },
+ {
+ "id": 1155,
+ "start": 383.884,
+ "end": 384.374,
+ "text": "Often"
+ },
+ {
+ "id": 1156,
+ "start": 384.374,
+ "end": 384.524,
+ "text": "it’s"
+ },
+ {
+ "id": 1157,
+ "start": 384.524,
+ "end": 384.674,
+ "text": "been"
+ },
+ {
+ "id": 1158,
+ "start": 384.674,
+ "end": 385.074,
+ "text": "more"
+ },
+ {
+ "id": 1159,
+ "start": 385.074,
+ "end": 385.494,
+ "text": "focused"
+ },
+ {
+ "id": 1160,
+ "start": 385.494,
+ "end": 385.754,
+ "text": "on"
+ },
+ {
+ "id": 1161,
+ "start": 385.754,
+ "end": 386.154,
+ "text": "traditional"
+ },
+ {
+ "id": 1162,
+ "start": 386.21399999999994,
+ "end": 386.55400000000003,
+ "text": "cybersecurity"
+ },
+ {
+ "id": 1163,
+ "start": 386.674,
+ "end": 386.954,
+ "text": "threats,"
+ },
+ {
+ "id": 1164,
+ "start": 386.954,
+ "end": 387.094,
+ "text": "right,"
+ },
+ {
+ "id": 1165,
+ "start": 387.489,
+ "end": 388.33899999999994,
+ "text": "espionage-related"
+ },
+ {
+ "id": 1166,
+ "start": 388.024,
+ "end": 389.584,
+ "text": "activity."
+ },
+ {
+ "id": 1167,
+ "start": 389.584,
+ "end": 390.464,
+ "text": "So"
+ },
+ {
+ "id": 1168,
+ "start": 390.464,
+ "end": 390.614,
+ "text": "is"
+ },
+ {
+ "id": 1169,
+ "start": 390.614,
+ "end": 390.834,
+ "text": "that"
+ },
+ {
+ "id": 1170,
+ "start": 390.834,
+ "end": 390.904,
+ "text": "a"
+ },
+ {
+ "id": 1171,
+ "start": 390.904,
+ "end": 392.284,
+ "text": "yes?"
+ },
+ {
+ "id": 1172,
+ "start": 391.454,
+ "end": 392.534,
+ "text": "Was"
+ },
+ {
+ "id": 1173,
+ "start": 392.59400000000005,
+ "end": 393.3506666666666,
+ "text": "that"
+ },
+ {
+ "id": 1174,
+ "start": 393.7339999999999,
+ "end": 394.1673333333333,
+ "text": "something—was"
+ },
+ {
+ "id": 1175,
+ "start": 394.874,
+ "end": 394.984,
+ "text": "the"
+ },
+ {
+ "id": 1176,
+ "start": 394.984,
+ "end": 395.534,
+ "text": "activity"
+ },
+ {
+ "id": 1177,
+ "start": 395.534,
+ "end": 395.644,
+ "text": "of"
+ },
+ {
+ "id": 1178,
+ "start": 395.644,
+ "end": 395.734,
+ "text": "the"
+ },
+ {
+ "id": 1179,
+ "start": 395.734,
+ "end": 396.094,
+ "text": "Internet"
+ },
+ {
+ "id": 1180,
+ "start": 396.094,
+ "end": 396.484,
+ "text": "Research"
+ },
+ {
+ "id": 1181,
+ "start": 396.484,
+ "end": 397.054,
+ "text": "Agency,"
+ },
+ {
+ "id": 1182,
+ "start": 397.054,
+ "end": 397.644,
+ "text": "was"
+ },
+ {
+ "id": 1183,
+ "start": 397.644,
+ "end": 398.014,
+ "text": "fake"
+ },
+ {
+ "id": 1184,
+ "start": 398.014,
+ "end": 398.634,
+ "text": "accounts,"
+ },
+ {
+ "id": 1185,
+ "start": 398.634,
+ "end": 400.304,
+ "text": "was"
+ },
+ {
+ "id": 1186,
+ "start": 400.304,
+ "end": 400.974,
+ "text": "the"
+ },
+ {
+ "id": 1187,
+ "start": 400.974,
+ "end": 401.524,
+ "text": "tactics"
+ },
+ {
+ "id": 1188,
+ "start": 401.524,
+ "end": 401.624,
+ "text": "of"
+ },
+ {
+ "id": 1189,
+ "start": 401.624,
+ "end": 402.024,
+ "text": "spreading"
+ },
+ {
+ "id": 1190,
+ "start": 402.024,
+ "end": 402.804,
+ "text": "misinformation"
+ },
+ {
+ "id": 1191,
+ "start": 402.804,
+ "end": 402.894,
+ "text": "and"
+ },
+ {
+ "id": 1192,
+ "start": 403.179,
+ "end": 403.284,
+ "text": "disinformation,"
+ },
+ {
+ "id": 1193,
+ "start": 403.554,
+ "end": 403.674,
+ "text": "was"
+ },
+ {
+ "id": 1194,
+ "start": 403.674,
+ "end": 403.874,
+ "text": "that"
+ },
+ {
+ "id": 1195,
+ "start": 403.874,
+ "end": 405.084,
+ "text": "something"
+ },
+ {
+ "id": 1196,
+ "start": 405.084,
+ "end": 405.254,
+ "text": "in"
+ },
+ {
+ "id": 1197,
+ "start": 405.254,
+ "end": 405.794,
+ "text": "government,"
+ },
+ {
+ "id": 1198,
+ "start": 405.794,
+ "end": 405.924,
+ "text": "was"
+ },
+ {
+ "id": 1199,
+ "start": 405.924,
+ "end": 406.094,
+ "text": "that"
+ },
+ {
+ "id": 1200,
+ "start": 406.094,
+ "end": 406.424,
+ "text": "something"
+ },
+ {
+ "id": 1201,
+ "start": 406.424,
+ "end": 407.574,
+ "text": "that"
+ },
+ {
+ "id": 1202,
+ "start": 407.574,
+ "end": 407.754,
+ "text": "was"
+ },
+ {
+ "id": 1203,
+ "start": 407.754,
+ "end": 407.834,
+ "text": "a"
+ },
+ {
+ "id": 1204,
+ "start": 407.834,
+ "end": 408.384,
+ "text": "priority"
+ },
+ {
+ "id": 1205,
+ "start": 408.384,
+ "end": 408.464,
+ "text": "or"
+ },
+ {
+ "id": 1206,
+ "start": 408.464,
+ "end": 408.634,
+ "text": "was"
+ },
+ {
+ "id": 1207,
+ "start": 408.634,
+ "end": 408.804,
+ "text": "being"
+ },
+ {
+ "id": 1208,
+ "start": 408.804,
+ "end": 409.884,
+ "text": "studied?"
+ },
+ {
+ "id": 1209,
+ "start": 409.884,
+ "end": 410.204,
+ "text": "That"
+ },
+ {
+ "id": 1210,
+ "start": 410.204,
+ "end": 410.434,
+ "text": "wasn’t"
+ },
+ {
+ "id": 1211,
+ "start": 410.434,
+ "end": 410.474,
+ "text": "a"
+ },
+ {
+ "id": 1212,
+ "start": 410.474,
+ "end": 410.864,
+ "text": "focus"
+ },
+ {
+ "id": 1213,
+ "start": 410.864,
+ "end": 411.124,
+ "text": "of"
+ },
+ {
+ "id": 1214,
+ "start": 411.124,
+ "end": 411.364,
+ "text": "my"
+ },
+ {
+ "id": 1215,
+ "start": 411.364,
+ "end": 411.584,
+ "text": "work"
+ },
+ {
+ "id": 1216,
+ "start": 411.584,
+ "end": 411.664,
+ "text": "in"
+ },
+ {
+ "id": 1217,
+ "start": 411.664,
+ "end": 413.864,
+ "text": "government."
+ },
+ {
+ "id": 1218,
+ "start": 413.864,
+ "end": 414.034,
+ "text": "In"
+ },
+ {
+ "id": 1219,
+ "start": 414.034,
+ "end": 414.344,
+ "text": "terms"
+ },
+ {
+ "id": 1220,
+ "start": 414.344,
+ "end": 414.834,
+ "text": "of"
+ },
+ {
+ "id": 1221,
+ "start": 414.834,
+ "end": 415.474,
+ "text": "what"
+ },
+ {
+ "id": 1222,
+ "start": 415.474,
+ "end": 415.694,
+ "text": "kind"
+ },
+ {
+ "id": 1223,
+ "start": 415.694,
+ "end": 415.804,
+ "text": "of"
+ },
+ {
+ "id": 1224,
+ "start": 415.804,
+ "end": 416.574,
+ "text": "relationship"
+ },
+ {
+ "id": 1225,
+ "start": 416.574,
+ "end": 416.734,
+ "text": "there"
+ },
+ {
+ "id": 1226,
+ "start": 416.734,
+ "end": 417.104,
+ "text": "was"
+ },
+ {
+ "id": 1227,
+ "start": 417.104,
+ "end": 418.174,
+ "text": "between"
+ },
+ {
+ "id": 1228,
+ "start": 418.174,
+ "end": 418.654,
+ "text": "the"
+ },
+ {
+ "id": 1229,
+ "start": 418.654,
+ "end": 419.464,
+ "text": "government"
+ },
+ {
+ "id": 1230,
+ "start": 419.454,
+ "end": 420.004,
+ "text": "and"
+ },
+ {
+ "id": 1231,
+ "start": 420.01400000000007,
+ "end": 420.414,
+ "text": "tech"
+ },
+ {
+ "id": 1232,
+ "start": 420.574,
+ "end": 420.82399999999996,
+ "text": "companies"
+ },
+ {
+ "id": 1233,
+ "start": 421.134,
+ "end": 421.234,
+ "text": "at"
+ },
+ {
+ "id": 1234,
+ "start": 421.234,
+ "end": 421.444,
+ "text": "that"
+ },
+ {
+ "id": 1235,
+ "start": 421.444,
+ "end": 421.674,
+ "text": "point"
+ },
+ {
+ "id": 1236,
+ "start": 421.674,
+ "end": 421.744,
+ "text": "in"
+ },
+ {
+ "id": 1237,
+ "start": 421.744,
+ "end": 422.694,
+ "text": "time,"
+ },
+ {
+ "id": 1238,
+ "start": 422.694,
+ "end": 422.884,
+ "text": "was"
+ },
+ {
+ "id": 1239,
+ "start": 422.884,
+ "end": 423.094,
+ "text": "there"
+ },
+ {
+ "id": 1240,
+ "start": 423.094,
+ "end": 423.354,
+ "text": "good"
+ },
+ {
+ "id": 1241,
+ "start": 423.354,
+ "end": 424.014,
+ "text": "information"
+ },
+ {
+ "id": 1242,
+ "start": 424.014,
+ "end": 424.474,
+ "text": "sharing"
+ },
+ {
+ "id": 1243,
+ "start": 424.474,
+ "end": 424.804,
+ "text": "going"
+ },
+ {
+ "id": 1244,
+ "start": 424.804,
+ "end": 425.054,
+ "text": "on"
+ },
+ {
+ "id": 1245,
+ "start": 425.054,
+ "end": 425.674,
+ "text": "between,"
+ },
+ {
+ "id": 1246,
+ "start": 425.674,
+ "end": 425.814,
+ "text": "for"
+ },
+ {
+ "id": 1247,
+ "start": 425.814,
+ "end": 426.204,
+ "text": "instance,"
+ },
+ {
+ "id": 1248,
+ "start": 426.204,
+ "end": 426.304,
+ "text": "the"
+ },
+ {
+ "id": 1249,
+ "start": 426.304,
+ "end": 426.514,
+ "text": "White"
+ },
+ {
+ "id": 1250,
+ "start": 426.514,
+ "end": 426.844,
+ "text": "House"
+ },
+ {
+ "id": 1251,
+ "start": 426.844,
+ "end": 426.934,
+ "text": "and"
+ },
+ {
+ "id": 1252,
+ "start": 426.934,
+ "end": 427.004,
+ "text": "the"
+ },
+ {
+ "id": 1253,
+ "start": 427.004,
+ "end": 427.224,
+ "text": "tech"
+ },
+ {
+ "id": 1254,
+ "start": 427.224,
+ "end": 427.624,
+ "text": "community"
+ },
+ {
+ "id": 1255,
+ "start": 427.624,
+ "end": 428.284,
+ "text": "about"
+ },
+ {
+ "id": 1256,
+ "start": 428.284,
+ "end": 428.784,
+ "text": "potential"
+ },
+ {
+ "id": 1257,
+ "start": 428.784,
+ "end": 430.114,
+ "text": "threats?"
+ },
+ {
+ "id": 1258,
+ "start": 430.114,
+ "end": 430.674,
+ "text": "Information"
+ },
+ {
+ "id": 1259,
+ "start": 430.674,
+ "end": 431.114,
+ "text": "sharing"
+ },
+ {
+ "id": 1260,
+ "start": 431.114,
+ "end": 431.244,
+ "text": "is"
+ },
+ {
+ "id": 1261,
+ "start": 431.244,
+ "end": 431.574,
+ "text": "always"
+ },
+ {
+ "id": 1262,
+ "start": 431.574,
+ "end": 431.624,
+ "text": "a"
+ },
+ {
+ "id": 1263,
+ "start": 431.624,
+ "end": 431.824,
+ "text": "little"
+ },
+ {
+ "id": 1264,
+ "start": 431.824,
+ "end": 432.274,
+ "text": "challenging"
+ },
+ {
+ "id": 1265,
+ "start": 432.274,
+ "end": 432.374,
+ "text": "when"
+ },
+ {
+ "id": 1266,
+ "start": 432.374,
+ "end": 432.454,
+ "text": "you"
+ },
+ {
+ "id": 1267,
+ "start": 432.454,
+ "end": 432.674,
+ "text": "think"
+ },
+ {
+ "id": 1268,
+ "start": 432.674,
+ "end": 432.844,
+ "text": "about"
+ },
+ {
+ "id": 1269,
+ "start": 432.844,
+ "end": 432.984,
+ "text": "how"
+ },
+ {
+ "id": 1270,
+ "start": 432.984,
+ "end": 433.414,
+ "text": "government"
+ },
+ {
+ "id": 1271,
+ "start": 433.414,
+ "end": 433.504,
+ "text": "and"
+ },
+ {
+ "id": 1272,
+ "start": 433.504,
+ "end": 433.574,
+ "text": "the"
+ },
+ {
+ "id": 1273,
+ "start": 433.574,
+ "end": 433.854,
+ "text": "private"
+ },
+ {
+ "id": 1274,
+ "start": 433.854,
+ "end": 434.064,
+ "text": "sector"
+ },
+ {
+ "id": 1275,
+ "start": 434.064,
+ "end": 434.224,
+ "text": "should"
+ },
+ {
+ "id": 1276,
+ "start": 434.224,
+ "end": 434.414,
+ "text": "work"
+ },
+ {
+ "id": 1277,
+ "start": 434.414,
+ "end": 434.984,
+ "text": "together,"
+ },
+ {
+ "id": 1278,
+ "start": 434.984,
+ "end": 435.684,
+ "text": "because"
+ },
+ {
+ "id": 1279,
+ "start": 435.684,
+ "end": 435.914,
+ "text": "the"
+ },
+ {
+ "id": 1280,
+ "start": 435.914,
+ "end": 436.334,
+ "text": "two"
+ },
+ {
+ "id": 1281,
+ "start": 436.334,
+ "end": 437.354,
+ "text": "communities"
+ },
+ {
+ "id": 1282,
+ "start": 437.354,
+ "end": 437.634,
+ "text": "have"
+ },
+ {
+ "id": 1283,
+ "start": 437.634,
+ "end": 438.314,
+ "text": "different"
+ },
+ {
+ "id": 1284,
+ "start": 438.314,
+ "end": 439.234,
+ "text": "capabilities"
+ },
+ {
+ "id": 1285,
+ "start": 439.234,
+ "end": 439.484,
+ "text": "and"
+ },
+ {
+ "id": 1286,
+ "start": 439.484,
+ "end": 439.664,
+ "text": "need"
+ },
+ {
+ "id": 1287,
+ "start": 439.664,
+ "end": 439.934,
+ "text": "different"
+ },
+ {
+ "id": 1288,
+ "start": 439.934,
+ "end": 440.134,
+ "text": "kinds"
+ },
+ {
+ "id": 1289,
+ "start": 440.134,
+ "end": 440.204,
+ "text": "of"
+ },
+ {
+ "id": 1290,
+ "start": 440.529,
+ "end": 440.609,
+ "text": "information."
+ },
+ {
+ "id": 1291,
+ "start": 440.92400000000004,
+ "end": 441.01400000000007,
+ "text": "And"
+ },
+ {
+ "id": 1292,
+ "start": 441.319,
+ "end": 441.41900000000004,
+ "text": "figuring"
+ },
+ {
+ "id": 1293,
+ "start": 441.714,
+ "end": 441.824,
+ "text": "out"
+ },
+ {
+ "id": 1294,
+ "start": 441.824,
+ "end": 441.914,
+ "text": "the"
+ },
+ {
+ "id": 1295,
+ "start": 441.914,
+ "end": 442.154,
+ "text": "right"
+ },
+ {
+ "id": 1296,
+ "start": 442.154,
+ "end": 442.274,
+ "text": "way"
+ },
+ {
+ "id": 1297,
+ "start": 442.274,
+ "end": 442.354,
+ "text": "to"
+ },
+ {
+ "id": 1298,
+ "start": 442.354,
+ "end": 442.574,
+ "text": "do"
+ },
+ {
+ "id": 1299,
+ "start": 442.574,
+ "end": 443.434,
+ "text": "that"
+ },
+ {
+ "id": 1300,
+ "start": 443.434,
+ "end": 443.814,
+ "text": "is"
+ },
+ {
+ "id": 1301,
+ "start": 443.814,
+ "end": 443.984,
+ "text": "sort"
+ },
+ {
+ "id": 1302,
+ "start": 443.984,
+ "end": 444.044,
+ "text": "of"
+ },
+ {
+ "id": 1303,
+ "start": 444.044,
+ "end": 444.104,
+ "text": "an"
+ },
+ {
+ "id": 1304,
+ "start": 444.104,
+ "end": 444.444,
+ "text": "ongoing"
+ },
+ {
+ "id": 1305,
+ "start": 444.3606666666667,
+ "end": 444.644,
+ "text": "challenge."
+ },
+ {
+ "id": 1306,
+ "start": 444.61733333333336,
+ "end": 444.844,
+ "text": "It’s"
+ },
+ {
+ "id": 1307,
+ "start": 444.874,
+ "end": 445.044,
+ "text": "one"
+ },
+ {
+ "id": 1308,
+ "start": 445.044,
+ "end": 445.104,
+ "text": "of"
+ },
+ {
+ "id": 1309,
+ "start": 445.104,
+ "end": 445.194,
+ "text": "the"
+ },
+ {
+ "id": 1310,
+ "start": 445.194,
+ "end": 446.044,
+ "text": "things"
+ },
+ {
+ "id": 1311,
+ "start": 446.044,
+ "end": 446.204,
+ "text": "that"
+ },
+ {
+ "id": 1312,
+ "start": 446.204,
+ "end": 446.324,
+ "text": "we"
+ },
+ {
+ "id": 1313,
+ "start": 446.324,
+ "end": 446.454,
+ "text": "were"
+ },
+ {
+ "id": 1314,
+ "start": 446.454,
+ "end": 446.784,
+ "text": "focused"
+ },
+ {
+ "id": 1315,
+ "start": 446.784,
+ "end": 446.904,
+ "text": "on"
+ },
+ {
+ "id": 1316,
+ "start": 446.904,
+ "end": 446.994,
+ "text": "when"
+ },
+ {
+ "id": 1317,
+ "start": 446.994,
+ "end": 447.064,
+ "text": "I"
+ },
+ {
+ "id": 1318,
+ "start": 447.064,
+ "end": 447.184,
+ "text": "was"
+ },
+ {
+ "id": 1319,
+ "start": 447.184,
+ "end": 447.264,
+ "text": "in"
+ },
+ {
+ "id": 1320,
+ "start": 447.67400000000004,
+ "end": 447.80899999999997,
+ "text": "government—how"
+ },
+ {
+ "id": 1321,
+ "start": 448.164,
+ "end": 448.354,
+ "text": "can"
+ },
+ {
+ "id": 1322,
+ "start": 448.354,
+ "end": 448.764,
+ "text": "government"
+ },
+ {
+ "id": 1323,
+ "start": 448.764,
+ "end": 449.114,
+ "text": "better"
+ },
+ {
+ "id": 1324,
+ "start": 449.114,
+ "end": 449.524,
+ "text": "share"
+ },
+ {
+ "id": 1325,
+ "start": 449.524,
+ "end": 450.024,
+ "text": "information"
+ },
+ {
+ "id": 1326,
+ "start": 450.024,
+ "end": 450.144,
+ "text": "with"
+ },
+ {
+ "id": 1327,
+ "start": 450.144,
+ "end": 450.224,
+ "text": "the"
+ },
+ {
+ "id": 1328,
+ "start": 450.224,
+ "end": 450.504,
+ "text": "private"
+ },
+ {
+ "id": 1329,
+ "start": 450.77399999999994,
+ "end": 450.96400000000006,
+ "text": "sector?—and"
+ },
+ {
+ "id": 1330,
+ "start": 451.324,
+ "end": 451.424,
+ "text": "it’s"
+ },
+ {
+ "id": 1331,
+ "start": 451.424,
+ "end": 451.564,
+ "text": "one"
+ },
+ {
+ "id": 1332,
+ "start": 451.564,
+ "end": 451.624,
+ "text": "of"
+ },
+ {
+ "id": 1333,
+ "start": 451.624,
+ "end": 451.694,
+ "text": "the"
+ },
+ {
+ "id": 1334,
+ "start": 451.694,
+ "end": 451.904,
+ "text": "things"
+ },
+ {
+ "id": 1335,
+ "start": 451.904,
+ "end": 452.084,
+ "text": "we’re"
+ },
+ {
+ "id": 1336,
+ "start": 452.084,
+ "end": 452.474,
+ "text": "focused"
+ },
+ {
+ "id": 1337,
+ "start": 452.474,
+ "end": 452.604,
+ "text": "on"
+ },
+ {
+ "id": 1338,
+ "start": 452.60066666666665,
+ "end": 452.804,
+ "text": "here"
+ },
+ {
+ "id": 1339,
+ "start": 452.7273333333333,
+ "end": 453.004,
+ "text": "at"
+ },
+ {
+ "id": 1340,
+ "start": 452.854,
+ "end": 453.204,
+ "text": "Facebook"
+ },
+ {
+ "id": 1341,
+ "start": 453.30400000000003,
+ "end": 453.62399999999997,
+ "text": "now."
+ },
+ {
+ "id": 1342,
+ "start": 453.754,
+ "end": 454.044,
+ "text": "How"
+ },
+ {
+ "id": 1343,
+ "start": 454.044,
+ "end": 454.264,
+ "text": "can"
+ },
+ {
+ "id": 1344,
+ "start": 454.264,
+ "end": 454.434,
+ "text": "we"
+ },
+ {
+ "id": 1345,
+ "start": 454.434,
+ "end": 454.674,
+ "text": "work"
+ },
+ {
+ "id": 1346,
+ "start": 454.674,
+ "end": 454.794,
+ "text": "with"
+ },
+ {
+ "id": 1347,
+ "start": 454.794,
+ "end": 455.154,
+ "text": "government"
+ },
+ {
+ "id": 1348,
+ "start": 455.154,
+ "end": 455.264,
+ "text": "and"
+ },
+ {
+ "id": 1349,
+ "start": 455.264,
+ "end": 455.394,
+ "text": "get"
+ },
+ {
+ "id": 1350,
+ "start": 455.394,
+ "end": 455.894,
+ "text": "information"
+ },
+ {
+ "id": 1351,
+ "start": 455.894,
+ "end": 456.084,
+ "text": "from"
+ },
+ {
+ "id": 1352,
+ "start": 456.084,
+ "end": 456.334,
+ "text": "them"
+ },
+ {
+ "id": 1353,
+ "start": 456.334,
+ "end": 456.474,
+ "text": "and"
+ },
+ {
+ "id": 1354,
+ "start": 456.474,
+ "end": 456.694,
+ "text": "share"
+ },
+ {
+ "id": 1355,
+ "start": 456.694,
+ "end": 457.174,
+ "text": "information"
+ },
+ {
+ "id": 1356,
+ "start": 457.174,
+ "end": 457.374,
+ "text": "with"
+ },
+ {
+ "id": 1357,
+ "start": 457.374,
+ "end": 457.604,
+ "text": "them"
+ },
+ {
+ "id": 1358,
+ "start": 457.604,
+ "end": 457.704,
+ "text": "to"
+ },
+ {
+ "id": 1359,
+ "start": 457.704,
+ "end": 457.814,
+ "text": "be"
+ },
+ {
+ "id": 1360,
+ "start": 457.814,
+ "end": 457.894,
+ "text": "as"
+ },
+ {
+ "id": 1361,
+ "start": 457.894,
+ "end": 458.224,
+ "text": "effective"
+ },
+ {
+ "id": 1362,
+ "start": 458.224,
+ "end": 458.314,
+ "text": "as"
+ },
+ {
+ "id": 1363,
+ "start": 458.314,
+ "end": 459.664,
+ "text": "possible?"
+ },
+ {
+ "id": 1364,
+ "start": 459.664,
+ "end": 460.104,
+ "text": "I’m"
+ },
+ {
+ "id": 1365,
+ "start": 460.104,
+ "end": 460.584,
+ "text": "curious"
+ },
+ {
+ "id": 1366,
+ "start": 460.584,
+ "end": 460.834,
+ "text": "just"
+ },
+ {
+ "id": 1367,
+ "start": 460.834,
+ "end": 461.554,
+ "text": "historically,"
+ },
+ {
+ "id": 1368,
+ "start": 461.554,
+ "end": 461.924,
+ "text": "because"
+ },
+ {
+ "id": 1369,
+ "start": 461.924,
+ "end": 462.864,
+ "text": "it’s"
+ },
+ {
+ "id": 1370,
+ "start": 462.864,
+ "end": 463.034,
+ "text": "sort"
+ },
+ {
+ "id": 1371,
+ "start": 463.034,
+ "end": 463.124,
+ "text": "of"
+ },
+ {
+ "id": 1372,
+ "start": 463.124,
+ "end": 463.214,
+ "text": "a"
+ },
+ {
+ "id": 1373,
+ "start": 463.214,
+ "end": 463.554,
+ "text": "black"
+ },
+ {
+ "id": 1374,
+ "start": 463.554,
+ "end": 464.604,
+ "text": "hole"
+ },
+ {
+ "id": 1375,
+ "start": 464.604,
+ "end": 464.814,
+ "text": "in"
+ },
+ {
+ "id": 1376,
+ "start": 464.814,
+ "end": 465.094,
+ "text": "terms"
+ },
+ {
+ "id": 1377,
+ "start": 465.094,
+ "end": 465.214,
+ "text": "of"
+ },
+ {
+ "id": 1378,
+ "start": 465.214,
+ "end": 465.324,
+ "text": "the"
+ },
+ {
+ "id": 1379,
+ "start": 465.324,
+ "end": 466.384,
+ "text": "record"
+ },
+ {
+ "id": 1380,
+ "start": 466.384,
+ "end": 466.544,
+ "text": "There"
+ },
+ {
+ "id": 1381,
+ "start": 466.544,
+ "end": 466.674,
+ "text": "were"
+ },
+ {
+ "id": 1382,
+ "start": 466.674,
+ "end": 467.204,
+ "text": "articles"
+ },
+ {
+ "id": 1383,
+ "start": 467.204,
+ "end": 467.424,
+ "text": "written"
+ },
+ {
+ "id": 1384,
+ "start": 467.424,
+ "end": 467.724,
+ "text": "about"
+ },
+ {
+ "id": 1385,
+ "start": 467.724,
+ "end": 467.824,
+ "text": "the"
+ },
+ {
+ "id": 1386,
+ "start": 467.824,
+ "end": 468.164,
+ "text": "Internet"
+ },
+ {
+ "id": 1387,
+ "start": 468.164,
+ "end": 468.584,
+ "text": "Research"
+ },
+ {
+ "id": 1388,
+ "start": 468.584,
+ "end": 469.354,
+ "text": "Agency"
+ },
+ {
+ "id": 1389,
+ "start": 469.25066666666675,
+ "end": 469.8206666666667,
+ "text": "in"
+ },
+ {
+ "id": 1390,
+ "start": 469.9173333333334,
+ "end": 470.2873333333334,
+ "text": "2015;"
+ },
+ {
+ "id": 1391,
+ "start": 470.584,
+ "end": 470.754,
+ "text": "there"
+ },
+ {
+ "id": 1392,
+ "start": 470.754,
+ "end": 471.064,
+ "text": "was"
+ },
+ {
+ "id": 1393,
+ "start": 471.064,
+ "end": 471.374,
+ "text": "already"
+ },
+ {
+ "id": 1394,
+ "start": 471.374,
+ "end": 471.874,
+ "text": "reports"
+ },
+ {
+ "id": 1395,
+ "start": 471.874,
+ "end": 472.074,
+ "text": "even"
+ },
+ {
+ "id": 1396,
+ "start": 472.074,
+ "end": 472.204,
+ "text": "as"
+ },
+ {
+ "id": 1397,
+ "start": 472.204,
+ "end": 472.414,
+ "text": "early"
+ },
+ {
+ "id": 1398,
+ "start": 472.414,
+ "end": 472.494,
+ "text": "as"
+ },
+ {
+ "id": 1399,
+ "start": 472.82900000000006,
+ "end": 473.21400000000006,
+ "text": "2014"
+ },
+ {
+ "id": 1400,
+ "start": 473.244,
+ "end": 473.934,
+ "text": "about"
+ },
+ {
+ "id": 1401,
+ "start": 473.934,
+ "end": 474.514,
+ "text": "the"
+ },
+ {
+ "id": 1402,
+ "start": 474.514,
+ "end": 475.314,
+ "text": "disinformation"
+ },
+ {
+ "id": 1403,
+ "start": 475.314,
+ "end": 475.974,
+ "text": "campaigns"
+ },
+ {
+ "id": 1404,
+ "start": 475.974,
+ "end": 476.284,
+ "text": "coming"
+ },
+ {
+ "id": 1405,
+ "start": 476.284,
+ "end": 476.374,
+ "text": "out"
+ },
+ {
+ "id": 1406,
+ "start": 476.374,
+ "end": 476.434,
+ "text": "of"
+ },
+ {
+ "id": 1407,
+ "start": 476.80066666666664,
+ "end": 477.26066666666657,
+ "text": "St."
+ },
+ {
+ "id": 1408,
+ "start": 477.2273333333334,
+ "end": 478.08733333333316,
+ "text": "Petersburg,"
+ },
+ {
+ "id": 1409,
+ "start": 477.654,
+ "end": 478.914,
+ "text": "and"
+ },
+ {
+ "id": 1410,
+ "start": 478.394,
+ "end": 479.454,
+ "text": "DARPA"
+ },
+ {
+ "id": 1411,
+ "start": 478.5706666666667,
+ "end": 479.48400000000004,
+ "text": "[Defense"
+ },
+ {
+ "id": 1412,
+ "start": 478.74733333333336,
+ "end": 479.514,
+ "text": "Advanced"
+ },
+ {
+ "id": 1413,
+ "start": 478.924,
+ "end": 479.544,
+ "text": "Research"
+ },
+ {
+ "id": 1414,
+ "start": 479.1006666666667,
+ "end": 479.574,
+ "text": "Projects"
+ },
+ {
+ "id": 1415,
+ "start": 479.27733333333333,
+ "end": 479.60400000000004,
+ "text": "Agency]"
+ },
+ {
+ "id": 1416,
+ "start": 479.454,
+ "end": 479.634,
+ "text": "had"
+ },
+ {
+ "id": 1417,
+ "start": 479.634,
+ "end": 479.694,
+ "text": "a"
+ },
+ {
+ "id": 1418,
+ "start": 479.894,
+ "end": 479.994,
+ "text": "program"
+ },
+ {
+ "id": 1419,
+ "start": 480.154,
+ "end": 480.294,
+ "text": "that"
+ },
+ {
+ "id": 1420,
+ "start": 480.294,
+ "end": 480.404,
+ "text": "was"
+ },
+ {
+ "id": 1421,
+ "start": 480.404,
+ "end": 481.304,
+ "text": "studying"
+ },
+ {
+ "id": 1422,
+ "start": 481.304,
+ "end": 482.104,
+ "text": "how"
+ },
+ {
+ "id": 1423,
+ "start": 482.104,
+ "end": 482.504,
+ "text": "social"
+ },
+ {
+ "id": 1424,
+ "start": 482.504,
+ "end": 482.834,
+ "text": "media"
+ },
+ {
+ "id": 1425,
+ "start": 482.834,
+ "end": 483.004,
+ "text": "could"
+ },
+ {
+ "id": 1426,
+ "start": 483.004,
+ "end": 483.114,
+ "text": "be"
+ },
+ {
+ "id": 1427,
+ "start": 483.649,
+ "end": 483.7490000000001,
+ "text": "weaponized."
+ },
+ {
+ "id": 1428,
+ "start": 484.294,
+ "end": 484.384,
+ "text": "I’m"
+ },
+ {
+ "id": 1429,
+ "start": 484.384,
+ "end": 484.614,
+ "text": "just"
+ },
+ {
+ "id": 1430,
+ "start": 484.614,
+ "end": 484.744,
+ "text": "kind"
+ },
+ {
+ "id": 1431,
+ "start": 484.744,
+ "end": 484.834,
+ "text": "of"
+ },
+ {
+ "id": 1432,
+ "start": 484.834,
+ "end": 485.324,
+ "text": "curious"
+ },
+ {
+ "id": 1433,
+ "start": 485.324,
+ "end": 486.094,
+ "text": "about"
+ },
+ {
+ "id": 1434,
+ "start": 486.094,
+ "end": 487.094,
+ "text": "was"
+ },
+ {
+ "id": 1435,
+ "start": 487.094,
+ "end": 487.344,
+ "text": "this"
+ },
+ {
+ "id": 1436,
+ "start": 487.284,
+ "end": 487.564,
+ "text": "something"
+ },
+ {
+ "id": 1437,
+ "start": 487.474,
+ "end": 487.78400000000005,
+ "text": "that"
+ },
+ {
+ "id": 1438,
+ "start": 487.664,
+ "end": 488.004,
+ "text": "was"
+ },
+ {
+ "id": 1439,
+ "start": 489.04399999999987,
+ "end": 489.4073333333333,
+ "text": "on—I"
+ },
+ {
+ "id": 1440,
+ "start": 490.424,
+ "end": 490.81066666666675,
+ "text": "mean,"
+ },
+ {
+ "id": 1441,
+ "start": 491.804,
+ "end": 492.214,
+ "text": "how"
+ },
+ {
+ "id": 1442,
+ "start": 492.214,
+ "end": 492.384,
+ "text": "was"
+ },
+ {
+ "id": 1443,
+ "start": 492.384,
+ "end": 492.504,
+ "text": "it"
+ },
+ {
+ "id": 1444,
+ "start": 492.504,
+ "end": 492.824,
+ "text": "not"
+ },
+ {
+ "id": 1445,
+ "start": 492.824,
+ "end": 493.024,
+ "text": "on"
+ },
+ {
+ "id": 1446,
+ "start": 493.024,
+ "end": 493.114,
+ "text": "the"
+ },
+ {
+ "id": 1447,
+ "start": 493.114,
+ "end": 493.434,
+ "text": "radar"
+ },
+ {
+ "id": 1448,
+ "start": 493.434,
+ "end": 495.504,
+ "text": "screen?"
+ },
+ {
+ "id": 1449,
+ "start": 495.504,
+ "end": 495.824,
+ "text": "It’s"
+ },
+ {
+ "id": 1450,
+ "start": 495.824,
+ "end": 496.354,
+ "text": "using"
+ },
+ {
+ "id": 1451,
+ "start": 496.354,
+ "end": 496.454,
+ "text": "a"
+ },
+ {
+ "id": 1452,
+ "start": 496.454,
+ "end": 496.774,
+ "text": "new"
+ },
+ {
+ "id": 1453,
+ "start": 496.774,
+ "end": 497.734,
+ "text": "medium"
+ },
+ {
+ "id": 1454,
+ "start": 497.734,
+ "end": 497.904,
+ "text": "in"
+ },
+ {
+ "id": 1455,
+ "start": 497.904,
+ "end": 497.964,
+ "text": "a"
+ },
+ {
+ "id": 1456,
+ "start": 497.964,
+ "end": 498.374,
+ "text": "different"
+ },
+ {
+ "id": 1457,
+ "start": 498.374,
+ "end": 499.184,
+ "text": "way,"
+ },
+ {
+ "id": 1458,
+ "start": 499.184,
+ "end": 499.354,
+ "text": "and"
+ },
+ {
+ "id": 1459,
+ "start": 499.354,
+ "end": 499.404,
+ "text": "I"
+ },
+ {
+ "id": 1460,
+ "start": 499.404,
+ "end": 500.064,
+ "text": "think"
+ },
+ {
+ "id": 1461,
+ "start": 500.064,
+ "end": 500.424,
+ "text": "we’ve"
+ },
+ {
+ "id": 1462,
+ "start": 500.424,
+ "end": 500.594,
+ "text": "been"
+ },
+ {
+ "id": 1463,
+ "start": 500.894,
+ "end": 501.04900000000004,
+ "text": "focused,we"
+ },
+ {
+ "id": 1464,
+ "start": 501.364,
+ "end": 501.504,
+ "text": "were"
+ },
+ {
+ "id": 1465,
+ "start": 501.504,
+ "end": 501.824,
+ "text": "certainly"
+ },
+ {
+ "id": 1466,
+ "start": 501.914,
+ "end": 502.334,
+ "text": "focused"
+ },
+ {
+ "id": 1467,
+ "start": 502.324,
+ "end": 502.844,
+ "text": "on"
+ },
+ {
+ "id": 1468,
+ "start": 502.844,
+ "end": 502.954,
+ "text": "the"
+ },
+ {
+ "id": 1469,
+ "start": 502.954,
+ "end": 503.084,
+ "text": "more"
+ },
+ {
+ "id": 1470,
+ "start": 503.084,
+ "end": 503.454,
+ "text": "traditional"
+ },
+ {
+ "id": 1471,
+ "start": 503.454,
+ "end": 503.944,
+ "text": "cybersecurity"
+ },
+ {
+ "id": 1472,
+ "start": 503.944,
+ "end": 504.644,
+ "text": "threats."
+ },
+ {
+ "id": 1473,
+ "start": 504.644,
+ "end": 504.744,
+ "text": "I"
+ },
+ {
+ "id": 1474,
+ "start": 504.744,
+ "end": 504.914,
+ "text": "think"
+ },
+ {
+ "id": 1475,
+ "start": 504.914,
+ "end": 505.214,
+ "text": "government"
+ },
+ {
+ "id": 1476,
+ "start": 505.214,
+ "end": 505.324,
+ "text": "was"
+ },
+ {
+ "id": 1477,
+ "start": 505.454,
+ "end": 505.564,
+ "text": "focused"
+ },
+ {
+ "id": 1478,
+ "start": 505.694,
+ "end": 505.804,
+ "text": "on"
+ },
+ {
+ "id": 1479,
+ "start": 505.804,
+ "end": 505.864,
+ "text": "the"
+ },
+ {
+ "id": 1480,
+ "start": 505.864,
+ "end": 505.984,
+ "text": "more"
+ },
+ {
+ "id": 1481,
+ "start": 505.984,
+ "end": 506.314,
+ "text": "traditional"
+ },
+ {
+ "id": 1482,
+ "start": 506.40399999999994,
+ "end": 506.959,
+ "text": "cybersecurity"
+ },
+ {
+ "id": 1483,
+ "start": 506.824,
+ "end": 507.604,
+ "text": "threats."
+ },
+ {
+ "id": 1484,
+ "start": 507.604,
+ "end": 508.174,
+ "text": "So"
+ },
+ {
+ "id": 1485,
+ "start": 508.174,
+ "end": 508.404,
+ "text": "when"
+ },
+ {
+ "id": 1486,
+ "start": 508.404,
+ "end": 508.514,
+ "text": "you"
+ },
+ {
+ "id": 1487,
+ "start": 508.514,
+ "end": 508.824,
+ "text": "come"
+ },
+ {
+ "id": 1488,
+ "start": 508.824,
+ "end": 508.934,
+ "text": "in"
+ },
+ {
+ "id": 1489,
+ "start": 508.934,
+ "end": 509.334,
+ "text": "here,"
+ },
+ {
+ "id": 1490,
+ "start": 509.334,
+ "end": 509.794,
+ "text": "then,"
+ },
+ {
+ "id": 1491,
+ "start": 509.794,
+ "end": 510.094,
+ "text": "with"
+ },
+ {
+ "id": 1492,
+ "start": 510.094,
+ "end": 510.244,
+ "text": "the"
+ },
+ {
+ "id": 1493,
+ "start": 510.244,
+ "end": 510.734,
+ "text": "purview"
+ },
+ {
+ "id": 1494,
+ "start": 510.734,
+ "end": 511.904,
+ "text": "of"
+ },
+ {
+ "id": 1495,
+ "start": 511.904,
+ "end": 513.704,
+ "text": "understanding"
+ },
+ {
+ "id": 1496,
+ "start": 513.704,
+ "end": 513.974,
+ "text": "things"
+ },
+ {
+ "id": 1497,
+ "start": 513.974,
+ "end": 514.114,
+ "text": "from"
+ },
+ {
+ "id": 1498,
+ "start": 514.114,
+ "end": 514.234,
+ "text": "the"
+ },
+ {
+ "id": 1499,
+ "start": 514.234,
+ "end": 516.304,
+ "text": "outside,"
+ },
+ {
+ "id": 1500,
+ "start": 514.814,
+ "end": 516.934,
+ "text": "how"
+ },
+ {
+ "id": 1501,
+ "start": 515.8739999999998,
+ "end": 517.3906666666666,
+ "text": "organized"
+ },
+ {
+ "id": 1502,
+ "start": 516.9339999999997,
+ "end": 517.8473333333333,
+ "text": "were"
+ },
+ {
+ "id": 1503,
+ "start": 517.994,
+ "end": 518.304,
+ "text": "things"
+ },
+ {
+ "id": 1504,
+ "start": 518.304,
+ "end": 518.404,
+ "text": "in"
+ },
+ {
+ "id": 1505,
+ "start": 518.404,
+ "end": 518.674,
+ "text": "here"
+ },
+ {
+ "id": 1506,
+ "start": 518.674,
+ "end": 519.014,
+ "text": "actually"
+ },
+ {
+ "id": 1507,
+ "start": 519.014,
+ "end": 519.104,
+ "text": "to"
+ },
+ {
+ "id": 1508,
+ "start": 519.104,
+ "end": 519.324,
+ "text": "deal"
+ },
+ {
+ "id": 1509,
+ "start": 519.324,
+ "end": 519.464,
+ "text": "with"
+ },
+ {
+ "id": 1510,
+ "start": 519.464,
+ "end": 519.534,
+ "text": "the"
+ },
+ {
+ "id": 1511,
+ "start": 519.534,
+ "end": 519.694,
+ "text": "new"
+ },
+ {
+ "id": 1512,
+ "start": 519.694,
+ "end": 520.124,
+ "text": "threats"
+ },
+ {
+ "id": 1513,
+ "start": 520.124,
+ "end": 520.244,
+ "text": "that"
+ },
+ {
+ "id": 1514,
+ "start": 520.244,
+ "end": 520.344,
+ "text": "were"
+ },
+ {
+ "id": 1515,
+ "start": 520.344,
+ "end": 520.634,
+ "text": "coming"
+ },
+ {
+ "id": 1516,
+ "start": 520.634,
+ "end": 521.304,
+ "text": "up?"
+ },
+ {
+ "id": 1517,
+ "start": 521.304,
+ "end": 521.554,
+ "text": "When"
+ },
+ {
+ "id": 1518,
+ "start": 521.554,
+ "end": 521.634,
+ "text": "I"
+ },
+ {
+ "id": 1519,
+ "start": 521.634,
+ "end": 521.874,
+ "text": "joined"
+ },
+ {
+ "id": 1520,
+ "start": 522.032,
+ "end": 522.2800000000001,
+ "text": "Facebook,"
+ },
+ {
+ "id": 1521,
+ "start": 522.4300000000001,
+ "end": 522.686,
+ "text": "you"
+ },
+ {
+ "id": 1522,
+ "start": 522.828,
+ "end": 523.0920000000001,
+ "text": "mean?"
+ },
+ {
+ "id": 1523,
+ "start": 523.226,
+ "end": 523.498,
+ "text": "Yes."
+ },
+ {
+ "id": 1524,
+ "start": 523.624,
+ "end": 523.904,
+ "text": "We"
+ },
+ {
+ "id": 1525,
+ "start": 523.904,
+ "end": 524.904,
+ "text": "have"
+ },
+ {
+ "id": 1526,
+ "start": 524.904,
+ "end": 525.364,
+ "text": "several"
+ },
+ {
+ "id": 1527,
+ "start": 525.364,
+ "end": 525.634,
+ "text": "different"
+ },
+ {
+ "id": 1528,
+ "start": 525.634,
+ "end": 525.964,
+ "text": "teams"
+ },
+ {
+ "id": 1529,
+ "start": 525.964,
+ "end": 526.074,
+ "text": "that"
+ },
+ {
+ "id": 1530,
+ "start": 526.074,
+ "end": 526.224,
+ "text": "work"
+ },
+ {
+ "id": 1531,
+ "start": 526.224,
+ "end": 526.324,
+ "text": "on"
+ },
+ {
+ "id": 1532,
+ "start": 526.324,
+ "end": 526.724,
+ "text": "aspects"
+ },
+ {
+ "id": 1533,
+ "start": 526.724,
+ "end": 526.784,
+ "text": "of"
+ },
+ {
+ "id": 1534,
+ "start": 526.784,
+ "end": 526.914,
+ "text": "this"
+ },
+ {
+ "id": 1535,
+ "start": 527.019,
+ "end": 527.134,
+ "text": "problem,"
+ },
+ {
+ "id": 1536,
+ "start": 527.254,
+ "end": 527.354,
+ "text": "and"
+ },
+ {
+ "id": 1537,
+ "start": 527.354,
+ "end": 527.414,
+ "text": "they"
+ },
+ {
+ "id": 1538,
+ "start": 527.414,
+ "end": 527.534,
+ "text": "were"
+ },
+ {
+ "id": 1539,
+ "start": 527.534,
+ "end": 527.794,
+ "text": "all"
+ },
+ {
+ "id": 1540,
+ "start": 527.794,
+ "end": 528.174,
+ "text": "working"
+ },
+ {
+ "id": 1541,
+ "start": 528.174,
+ "end": 528.934,
+ "text": "together."
+ },
+ {
+ "id": 1542,
+ "start": 528.934,
+ "end": 529.044,
+ "text": "I"
+ },
+ {
+ "id": 1543,
+ "start": 529.044,
+ "end": 529.234,
+ "text": "think"
+ },
+ {
+ "id": 1544,
+ "start": 529.234,
+ "end": 529.354,
+ "text": "what"
+ },
+ {
+ "id": 1545,
+ "start": 529.354,
+ "end": 529.474,
+ "text": "we"
+ },
+ {
+ "id": 1546,
+ "start": 529.474,
+ "end": 529.914,
+ "text": "wanted"
+ },
+ {
+ "id": 1547,
+ "start": 529.914,
+ "end": 530.014,
+ "text": "to"
+ },
+ {
+ "id": 1548,
+ "start": 530.014,
+ "end": 530.424,
+ "text": "do"
+ },
+ {
+ "id": 1549,
+ "start": 530.8839999999999,
+ "end": 531.3789999999999,
+ "text": "was"
+ },
+ {
+ "id": 1550,
+ "start": 531.754,
+ "end": 532.334,
+ "text": "build"
+ },
+ {
+ "id": 1551,
+ "start": 532.334,
+ "end": 532.594,
+ "text": "up"
+ },
+ {
+ "id": 1552,
+ "start": 532.594,
+ "end": 532.764,
+ "text": "that"
+ },
+ {
+ "id": 1553,
+ "start": 532.764,
+ "end": 533.384,
+ "text": "capability,"
+ },
+ {
+ "id": 1554,
+ "start": 533.384,
+ "end": 533.604,
+ "text": "right?"
+ },
+ {
+ "id": 1555,
+ "start": 533.604,
+ "end": 533.754,
+ "text": "We"
+ },
+ {
+ "id": 1556,
+ "start": 533.6790000000001,
+ "end": 533.894,
+ "text": "had"
+ },
+ {
+ "id": 1557,
+ "start": 533.754,
+ "end": 534.034,
+ "text": "already"
+ },
+ {
+ "id": 1558,
+ "start": 534.034,
+ "end": 534.804,
+ "text": "done"
+ },
+ {
+ "id": 1559,
+ "start": 534.804,
+ "end": 534.994,
+ "text": "this"
+ },
+ {
+ "id": 1560,
+ "start": 534.994,
+ "end": 535.644,
+ "text": "disruption,"
+ },
+ {
+ "id": 1561,
+ "start": 535.644,
+ "end": 535.734,
+ "text": "the"
+ },
+ {
+ "id": 1562,
+ "start": 535.734,
+ "end": 536.004,
+ "text": "major"
+ },
+ {
+ "id": 1563,
+ "start": 536.004,
+ "end": 536.404,
+ "text": "disruption"
+ },
+ {
+ "id": 1564,
+ "start": 536.404,
+ "end": 536.544,
+ "text": "from"
+ },
+ {
+ "id": 1565,
+ "start": 536.544,
+ "end": 536.864,
+ "text": "last"
+ },
+ {
+ "id": 1566,
+ "start": 536.864,
+ "end": 537.414,
+ "text": "fall."
+ },
+ {
+ "id": 1567,
+ "start": 537.399,
+ "end": 537.889,
+ "text": "We’d"
+ },
+ {
+ "id": 1568,
+ "start": 537.934,
+ "end": 538.364,
+ "text": "already"
+ },
+ {
+ "id": 1569,
+ "start": 538.364,
+ "end": 538.854,
+ "text": "started"
+ },
+ {
+ "id": 1570,
+ "start": 538.854,
+ "end": 538.954,
+ "text": "to"
+ },
+ {
+ "id": 1571,
+ "start": 538.954,
+ "end": 539.464,
+ "text": "scale"
+ },
+ {
+ "id": 1572,
+ "start": 539.464,
+ "end": 539.654,
+ "text": "up"
+ },
+ {
+ "id": 1573,
+ "start": 539.654,
+ "end": 540.334,
+ "text": "substantially"
+ },
+ {
+ "id": 1574,
+ "start": 540.334,
+ "end": 540.484,
+ "text": "our"
+ },
+ {
+ "id": 1575,
+ "start": 540.484,
+ "end": 540.854,
+ "text": "ability"
+ },
+ {
+ "id": 1576,
+ "start": 540.854,
+ "end": 540.944,
+ "text": "to"
+ },
+ {
+ "id": 1577,
+ "start": 540.944,
+ "end": 541.394,
+ "text": "find"
+ },
+ {
+ "id": 1578,
+ "start": 541.394,
+ "end": 541.504,
+ "text": "and"
+ },
+ {
+ "id": 1579,
+ "start": 541.504,
+ "end": 541.664,
+ "text": "take"
+ },
+ {
+ "id": 1580,
+ "start": 541.664,
+ "end": 541.864,
+ "text": "down"
+ },
+ {
+ "id": 1581,
+ "start": 541.864,
+ "end": 542.014,
+ "text": "these"
+ },
+ {
+ "id": 1582,
+ "start": 542.339,
+ "end": 542.524,
+ "text": "actors,"
+ },
+ {
+ "id": 1583,
+ "start": 542.814,
+ "end": 543.034,
+ "text": "and"
+ },
+ {
+ "id": 1584,
+ "start": 543.034,
+ "end": 543.134,
+ "text": "the"
+ },
+ {
+ "id": 1585,
+ "start": 543.134,
+ "end": 543.464,
+ "text": "goal"
+ },
+ {
+ "id": 1586,
+ "start": 543.464,
+ "end": 543.874,
+ "text": "was"
+ },
+ {
+ "id": 1587,
+ "start": 543.874,
+ "end": 544.194,
+ "text": "how"
+ },
+ {
+ "id": 1588,
+ "start": 544.194,
+ "end": 544.284,
+ "text": "do"
+ },
+ {
+ "id": 1589,
+ "start": 544.284,
+ "end": 544.404,
+ "text": "we"
+ },
+ {
+ "id": 1590,
+ "start": 544.404,
+ "end": 544.984,
+ "text": "accelerate"
+ },
+ {
+ "id": 1591,
+ "start": 544.974,
+ "end": 545.274,
+ "text": "that,"
+ },
+ {
+ "id": 1592,
+ "start": 545.129,
+ "end": 545.404,
+ "text": "and"
+ },
+ {
+ "id": 1593,
+ "start": 545.284,
+ "end": 545.534,
+ "text": "how"
+ },
+ {
+ "id": 1594,
+ "start": 545.534,
+ "end": 545.594,
+ "text": "do"
+ },
+ {
+ "id": 1595,
+ "start": 545.594,
+ "end": 545.674,
+ "text": "we"
+ },
+ {
+ "id": 1596,
+ "start": 545.674,
+ "end": 545.824,
+ "text": "make"
+ },
+ {
+ "id": 1597,
+ "start": 545.824,
+ "end": 545.884,
+ "text": "it"
+ },
+ {
+ "id": 1598,
+ "start": 545.884,
+ "end": 545.964,
+ "text": "so"
+ },
+ {
+ "id": 1599,
+ "start": 545.964,
+ "end": 546.024,
+ "text": "we"
+ },
+ {
+ "id": 1600,
+ "start": 546.109,
+ "end": 546.2015,
+ "text": "can"
+ },
+ {
+ "id": 1601,
+ "start": 546.254,
+ "end": 546.379,
+ "text": "do"
+ },
+ {
+ "id": 1602,
+ "start": 546.399,
+ "end": 546.5565,
+ "text": "it"
+ },
+ {
+ "id": 1603,
+ "start": 546.544,
+ "end": 546.734,
+ "text": "not"
+ },
+ {
+ "id": 1604,
+ "start": 546.734,
+ "end": 546.894,
+ "text": "just"
+ },
+ {
+ "id": 1605,
+ "start": 546.894,
+ "end": 547.024,
+ "text": "more"
+ },
+ {
+ "id": 1606,
+ "start": 547.024,
+ "end": 547.524,
+ "text": "quickly,"
+ },
+ {
+ "id": 1607,
+ "start": 547.524,
+ "end": 547.734,
+ "text": "but"
+ },
+ {
+ "id": 1608,
+ "start": 547.734,
+ "end": 547.924,
+ "text": "more"
+ },
+ {
+ "id": 1609,
+ "start": 548.169,
+ "end": 548.384,
+ "text": "effectively?"
+ },
+ {
+ "id": 1610,
+ "start": 548.604,
+ "end": 548.844,
+ "text": "And"
+ },
+ {
+ "id": 1611,
+ "start": 548.844,
+ "end": 549.144,
+ "text": "how"
+ },
+ {
+ "id": 1612,
+ "start": 549.144,
+ "end": 549.294,
+ "text": "is"
+ },
+ {
+ "id": 1613,
+ "start": 549.294,
+ "end": 549.474,
+ "text": "that"
+ },
+ {
+ "id": 1614,
+ "start": 549.474,
+ "end": 550.594,
+ "text": "done?"
+ },
+ {
+ "id": 1615,
+ "start": 550.594,
+ "end": 550.754,
+ "text": "What"
+ },
+ {
+ "id": 1616,
+ "start": 550.754,
+ "end": 550.874,
+ "text": "does"
+ },
+ {
+ "id": 1617,
+ "start": 550.874,
+ "end": 551.064,
+ "text": "that"
+ },
+ {
+ "id": 1618,
+ "start": 551.064,
+ "end": 551.444,
+ "text": "mean"
+ },
+ {
+ "id": 1619,
+ "start": 551.444,
+ "end": 551.724,
+ "text": "for"
+ },
+ {
+ "id": 1620,
+ "start": 551.724,
+ "end": 551.814,
+ "text": "a"
+ },
+ {
+ "id": 1621,
+ "start": 552.9389999999999,
+ "end": 553.1789999999996,
+ "text": "layperson?"
+ },
+ {
+ "id": 1622,
+ "start": 554.154,
+ "end": 554.544,
+ "text": "What"
+ },
+ {
+ "id": 1623,
+ "start": 554.544,
+ "end": 554.674,
+ "text": "does"
+ },
+ {
+ "id": 1624,
+ "start": 554.674,
+ "end": 554.834,
+ "text": "that"
+ },
+ {
+ "id": 1625,
+ "start": 554.834,
+ "end": 555.204,
+ "text": "actually"
+ },
+ {
+ "id": 1626,
+ "start": 555.204,
+ "end": 555.664,
+ "text": "mean"
+ },
+ {
+ "id": 1627,
+ "start": 555.664,
+ "end": 555.794,
+ "text": "to"
+ },
+ {
+ "id": 1628,
+ "start": 555.794,
+ "end": 556.274,
+ "text": "scale"
+ },
+ {
+ "id": 1629,
+ "start": 556.274,
+ "end": 556.544,
+ "text": "up,"
+ },
+ {
+ "id": 1630,
+ "start": 556.544,
+ "end": 556.984,
+ "text": "and"
+ },
+ {
+ "id": 1631,
+ "start": 556.984,
+ "end": 557.354,
+ "text": "what"
+ },
+ {
+ "id": 1632,
+ "start": 557.354,
+ "end": 557.534,
+ "text": "kind"
+ },
+ {
+ "id": 1633,
+ "start": 557.534,
+ "end": 557.604,
+ "text": "of"
+ },
+ {
+ "id": 1634,
+ "start": 558.349,
+ "end": 558.4940000000001,
+ "text": "challenge—inject"
+ },
+ {
+ "id": 1635,
+ "start": 559.164,
+ "end": 559.384,
+ "text": "me"
+ },
+ {
+ "id": 1636,
+ "start": 559.384,
+ "end": 559.754,
+ "text": "into"
+ },
+ {
+ "id": 1637,
+ "start": 559.754,
+ "end": 560.054,
+ "text": "what"
+ },
+ {
+ "id": 1638,
+ "start": 560.054,
+ "end": 560.244,
+ "text": "you"
+ },
+ {
+ "id": 1639,
+ "start": 560.244,
+ "end": 560.384,
+ "text": "have"
+ },
+ {
+ "id": 1640,
+ "start": 560.384,
+ "end": 560.494,
+ "text": "to"
+ },
+ {
+ "id": 1641,
+ "start": 560.494,
+ "end": 560.824,
+ "text": "face"
+ },
+ {
+ "id": 1642,
+ "start": 560.824,
+ "end": 561.074,
+ "text": "every"
+ },
+ {
+ "id": 1643,
+ "start": 561.074,
+ "end": 564.824,
+ "text": "day."
+ },
+ {
+ "id": 1644,
+ "start": 564.824,
+ "end": 564.974,
+ "text": "There’s"
+ },
+ {
+ "id": 1645,
+ "start": 564.974,
+ "end": 565.044,
+ "text": "a"
+ },
+ {
+ "id": 1646,
+ "start": 565.044,
+ "end": 565.324,
+ "text": "core"
+ },
+ {
+ "id": 1647,
+ "start": 565.324,
+ "end": 565.544,
+ "text": "team"
+ },
+ {
+ "id": 1648,
+ "start": 565.544,
+ "end": 565.654,
+ "text": "of"
+ },
+ {
+ "id": 1649,
+ "start": 565.654,
+ "end": 566.574,
+ "text": "investigators"
+ },
+ {
+ "id": 1650,
+ "start": 566.574,
+ "end": 566.714,
+ "text": "that"
+ },
+ {
+ "id": 1651,
+ "start": 566.714,
+ "end": 566.794,
+ "text": "are"
+ },
+ {
+ "id": 1652,
+ "start": 566.794,
+ "end": 567.154,
+ "text": "looking"
+ },
+ {
+ "id": 1653,
+ "start": 567.154,
+ "end": 567.244,
+ "text": "for"
+ },
+ {
+ "id": 1654,
+ "start": 567.244,
+ "end": 567.364,
+ "text": "this"
+ },
+ {
+ "id": 1655,
+ "start": 567.364,
+ "end": 567.584,
+ "text": "bad"
+ },
+ {
+ "id": 1656,
+ "start": 567.6690000000001,
+ "end": 567.8589999999999,
+ "text": "behavior,"
+ },
+ {
+ "id": 1657,
+ "start": 567.974,
+ "end": 568.134,
+ "text": "right,"
+ },
+ {
+ "id": 1658,
+ "start": 568.134,
+ "end": 568.254,
+ "text": "and"
+ },
+ {
+ "id": 1659,
+ "start": 568.254,
+ "end": 568.404,
+ "text": "they"
+ },
+ {
+ "id": 1660,
+ "start": 568.404,
+ "end": 569.124,
+ "text": "run"
+ },
+ {
+ "id": 1661,
+ "start": 569.124,
+ "end": 569.594,
+ "text": "constant"
+ },
+ {
+ "id": 1662,
+ "start": 569.594,
+ "end": 570.364,
+ "text": "analysis."
+ },
+ {
+ "id": 1663,
+ "start": 570.364,
+ "end": 570.724,
+ "text": "What"
+ },
+ {
+ "id": 1664,
+ "start": 570.724,
+ "end": 570.804,
+ "text": "do"
+ },
+ {
+ "id": 1665,
+ "start": 570.804,
+ "end": 570.924,
+ "text": "they"
+ },
+ {
+ "id": 1666,
+ "start": 570.924,
+ "end": 571.164,
+ "text": "see"
+ },
+ {
+ "id": 1667,
+ "start": 571.164,
+ "end": 571.254,
+ "text": "on"
+ },
+ {
+ "id": 1668,
+ "start": 571.254,
+ "end": 571.334,
+ "text": "the"
+ },
+ {
+ "id": 1669,
+ "start": 571.334,
+ "end": 572.104,
+ "text": "platform?"
+ },
+ {
+ "id": 1670,
+ "start": 572.104,
+ "end": 572.414,
+ "text": "What"
+ },
+ {
+ "id": 1671,
+ "start": 572.414,
+ "end": 572.704,
+ "text": "sorts"
+ },
+ {
+ "id": 1672,
+ "start": 572.704,
+ "end": 572.774,
+ "text": "of"
+ },
+ {
+ "id": 1673,
+ "start": 572.774,
+ "end": 573.254,
+ "text": "suspicious"
+ },
+ {
+ "id": 1674,
+ "start": 573.219,
+ "end": 573.524,
+ "text": "behavior"
+ },
+ {
+ "id": 1675,
+ "start": 573.664,
+ "end": 573.794,
+ "text": "are"
+ },
+ {
+ "id": 1676,
+ "start": 573.794,
+ "end": 573.914,
+ "text": "they"
+ },
+ {
+ "id": 1677,
+ "start": 573.914,
+ "end": 574.484,
+ "text": "seeing?"
+ },
+ {
+ "id": 1678,
+ "start": 574.484,
+ "end": 574.954,
+ "text": "Particularly"
+ },
+ {
+ "id": 1679,
+ "start": 574.954,
+ "end": 575.364,
+ "text": "focused"
+ },
+ {
+ "id": 1680,
+ "start": 575.364,
+ "end": 575.924,
+ "text": "on"
+ },
+ {
+ "id": 1681,
+ "start": 575.924,
+ "end": 576.374,
+ "text": "tactics"
+ },
+ {
+ "id": 1682,
+ "start": 576.374,
+ "end": 576.514,
+ "text": "and"
+ },
+ {
+ "id": 1683,
+ "start": 576.514,
+ "end": 577.354,
+ "text": "techniques"
+ },
+ {
+ "id": 1684,
+ "start": 577.354,
+ "end": 577.474,
+ "text": "that"
+ },
+ {
+ "id": 1685,
+ "start": 577.474,
+ "end": 577.594,
+ "text": "we’ve"
+ },
+ {
+ "id": 1686,
+ "start": 577.594,
+ "end": 577.774,
+ "text": "seen"
+ },
+ {
+ "id": 1687,
+ "start": 577.774,
+ "end": 577.844,
+ "text": "in"
+ },
+ {
+ "id": 1688,
+ "start": 577.844,
+ "end": 577.914,
+ "text": "the"
+ },
+ {
+ "id": 1689,
+ "start": 577.914,
+ "end": 578.604,
+ "text": "past"
+ },
+ {
+ "id": 1690,
+ "start": 578.604,
+ "end": 579.044,
+ "text": "or"
+ },
+ {
+ "id": 1691,
+ "start": 579.044,
+ "end": 579.144,
+ "text": "that"
+ },
+ {
+ "id": 1692,
+ "start": 579.144,
+ "end": 579.274,
+ "text": "are"
+ },
+ {
+ "id": 1693,
+ "start": 579.274,
+ "end": 579.604,
+ "text": "rooted"
+ },
+ {
+ "id": 1694,
+ "start": 579.604,
+ "end": 579.724,
+ "text": "in"
+ },
+ {
+ "id": 1695,
+ "start": 579.724,
+ "end": 580.104,
+ "text": "maybe"
+ },
+ {
+ "id": 1696,
+ "start": 580.104,
+ "end": 580.184,
+ "text": "a"
+ },
+ {
+ "id": 1697,
+ "start": 580.184,
+ "end": 580.424,
+ "text": "tip"
+ },
+ {
+ "id": 1698,
+ "start": 580.424,
+ "end": 580.494,
+ "text": "we"
+ },
+ {
+ "id": 1699,
+ "start": 580.494,
+ "end": 580.654,
+ "text": "might"
+ },
+ {
+ "id": 1700,
+ "start": 580.654,
+ "end": 580.824,
+ "text": "get"
+ },
+ {
+ "id": 1701,
+ "start": 580.824,
+ "end": 581.014,
+ "text": "from"
+ },
+ {
+ "id": 1702,
+ "start": 581.014,
+ "end": 581.154,
+ "text": "law"
+ },
+ {
+ "id": 1703,
+ "start": 581.154,
+ "end": 581.904,
+ "text": "enforcement"
+ },
+ {
+ "id": 1704,
+ "start": 581.904,
+ "end": 582.444,
+ "text": "or"
+ },
+ {
+ "id": 1705,
+ "start": 582.444,
+ "end": 582.544,
+ "text": "an"
+ },
+ {
+ "id": 1706,
+ "start": 582.544,
+ "end": 582.944,
+ "text": "indication"
+ },
+ {
+ "id": 1707,
+ "start": 582.944,
+ "end": 583.014,
+ "text": "we"
+ },
+ {
+ "id": 1708,
+ "start": 583.014,
+ "end": 583.214,
+ "text": "might"
+ },
+ {
+ "id": 1709,
+ "start": 583.214,
+ "end": 583.504,
+ "text": "get"
+ },
+ {
+ "id": 1710,
+ "start": 583.504,
+ "end": 583.844,
+ "text": "from"
+ },
+ {
+ "id": 1711,
+ "start": 583.844,
+ "end": 583.924,
+ "text": "an"
+ },
+ {
+ "id": 1712,
+ "start": 583.924,
+ "end": 584.334,
+ "text": "outside"
+ },
+ {
+ "id": 1713,
+ "start": 584.334,
+ "end": 584.794,
+ "text": "partner"
+ },
+ {
+ "id": 1714,
+ "start": 584.794,
+ "end": 585.214,
+ "text": "like"
+ },
+ {
+ "id": 1715,
+ "start": 585.5289999999999,
+ "end": 585.879,
+ "text": "FireEye"
+ },
+ {
+ "id": 1716,
+ "start": 586.264,
+ "end": 586.544,
+ "text": "or"
+ },
+ {
+ "id": 1717,
+ "start": 586.544,
+ "end": 586.654,
+ "text": "the"
+ },
+ {
+ "id": 1718,
+ "start": 586.654,
+ "end": 586.964,
+ "text": "Atlantic"
+ },
+ {
+ "id": 1719,
+ "start": 586.964,
+ "end": 587.844,
+ "text": "Council."
+ },
+ {
+ "id": 1720,
+ "start": 587.844,
+ "end": 587.954,
+ "text": "They"
+ },
+ {
+ "id": 1721,
+ "start": 587.954,
+ "end": 588.304,
+ "text": "take"
+ },
+ {
+ "id": 1722,
+ "start": 588.304,
+ "end": 588.444,
+ "text": "that"
+ },
+ {
+ "id": 1723,
+ "start": 588.444,
+ "end": 589.304,
+ "text": "information,"
+ },
+ {
+ "id": 1724,
+ "start": 589.304,
+ "end": 589.394,
+ "text": "and"
+ },
+ {
+ "id": 1725,
+ "start": 589.394,
+ "end": 589.484,
+ "text": "they"
+ },
+ {
+ "id": 1726,
+ "start": 589.484,
+ "end": 589.844,
+ "text": "build"
+ },
+ {
+ "id": 1727,
+ "start": 589.844,
+ "end": 590.024,
+ "text": "that"
+ },
+ {
+ "id": 1728,
+ "start": 590.024,
+ "end": 590.514,
+ "text": "out"
+ },
+ {
+ "id": 1729,
+ "start": 590.514,
+ "end": 590.724,
+ "text": "into"
+ },
+ {
+ "id": 1730,
+ "start": 590.724,
+ "end": 590.794,
+ "text": "a"
+ },
+ {
+ "id": 1731,
+ "start": 590.794,
+ "end": 591.054,
+ "text": "full"
+ },
+ {
+ "id": 1732,
+ "start": 591.054,
+ "end": 591.454,
+ "text": "picture"
+ },
+ {
+ "id": 1733,
+ "start": 591.454,
+ "end": 591.554,
+ "text": "of"
+ },
+ {
+ "id": 1734,
+ "start": 591.554,
+ "end": 591.764,
+ "text": "what’s"
+ },
+ {
+ "id": 1735,
+ "start": 591.764,
+ "end": 592.224,
+ "text": "happening,"
+ },
+ {
+ "id": 1736,
+ "start": 592.124,
+ "end": 592.404,
+ "text": "right,"
+ },
+ {
+ "id": 1737,
+ "start": 592.484,
+ "end": 592.584,
+ "text": "and"
+ },
+ {
+ "id": 1738,
+ "start": 592.584,
+ "end": 592.684,
+ "text": "we"
+ },
+ {
+ "id": 1739,
+ "start": 592.684,
+ "end": 592.944,
+ "text": "work"
+ },
+ {
+ "id": 1740,
+ "start": 592.944,
+ "end": 593.024,
+ "text": "to"
+ },
+ {
+ "id": 1741,
+ "start": 593.024,
+ "end": 593.234,
+ "text": "try"
+ },
+ {
+ "id": 1742,
+ "start": 593.234,
+ "end": 593.374,
+ "text": "get"
+ },
+ {
+ "id": 1743,
+ "start": 593.374,
+ "end": 593.474,
+ "text": "an"
+ },
+ {
+ "id": 1744,
+ "start": 593.474,
+ "end": 594.794,
+ "text": "understanding"
+ },
+ {
+ "id": 1745,
+ "start": 594.794,
+ "end": 595.214,
+ "text": "of"
+ },
+ {
+ "id": 1746,
+ "start": 595.214,
+ "end": 595.354,
+ "text": "the"
+ },
+ {
+ "id": 1747,
+ "start": 596.024,
+ "end": 596.2240000000002,
+ "text": "operation."
+ },
+ {
+ "id": 1748,
+ "start": 596.834,
+ "end": 597.094,
+ "text": "Then"
+ },
+ {
+ "id": 1749,
+ "start": 597.094,
+ "end": 597.264,
+ "text": "as"
+ },
+ {
+ "id": 1750,
+ "start": 597.264,
+ "end": 597.394,
+ "text": "we"
+ },
+ {
+ "id": 1751,
+ "start": 597.394,
+ "end": 597.634,
+ "text": "do"
+ },
+ {
+ "id": 1752,
+ "start": 597.634,
+ "end": 597.844,
+ "text": "that,"
+ },
+ {
+ "id": 1753,
+ "start": 597.844,
+ "end": 597.954,
+ "text": "we"
+ },
+ {
+ "id": 1754,
+ "start": 597.954,
+ "end": 598.134,
+ "text": "reach"
+ },
+ {
+ "id": 1755,
+ "start": 598.134,
+ "end": 598.174,
+ "text": "a"
+ },
+ {
+ "id": 1756,
+ "start": 598.2006666666666,
+ "end": 598.2706666666667,
+ "text": "point"
+ },
+ {
+ "id": 1757,
+ "start": 598.2673333333333,
+ "end": 598.3673333333334,
+ "text": "where"
+ },
+ {
+ "id": 1758,
+ "start": 598.334,
+ "end": 598.464,
+ "text": "we"
+ },
+ {
+ "id": 1759,
+ "start": 598.464,
+ "end": 598.744,
+ "text": "know"
+ },
+ {
+ "id": 1760,
+ "start": 598.744,
+ "end": 598.964,
+ "text": "enough"
+ },
+ {
+ "id": 1761,
+ "start": 598.964,
+ "end": 599.264,
+ "text": "about"
+ },
+ {
+ "id": 1762,
+ "start": 599.264,
+ "end": 599.694,
+ "text": "it"
+ },
+ {
+ "id": 1763,
+ "start": 599.694,
+ "end": 599.974,
+ "text": "that"
+ },
+ {
+ "id": 1764,
+ "start": 599.974,
+ "end": 600.344,
+ "text": "we"
+ },
+ {
+ "id": 1765,
+ "start": 600.344,
+ "end": 600.554,
+ "text": "can"
+ },
+ {
+ "id": 1766,
+ "start": 600.554,
+ "end": 600.814,
+ "text": "take"
+ },
+ {
+ "id": 1767,
+ "start": 600.814,
+ "end": 601.224,
+ "text": "action,"
+ },
+ {
+ "id": 1768,
+ "start": 601.224,
+ "end": 601.314,
+ "text": "and"
+ },
+ {
+ "id": 1769,
+ "start": 601.314,
+ "end": 601.384,
+ "text": "we"
+ },
+ {
+ "id": 1770,
+ "start": 601.384,
+ "end": 601.484,
+ "text": "can"
+ },
+ {
+ "id": 1771,
+ "start": 601.484,
+ "end": 601.604,
+ "text": "try"
+ },
+ {
+ "id": 1772,
+ "start": 601.604,
+ "end": 601.694,
+ "text": "to"
+ },
+ {
+ "id": 1773,
+ "start": 601.694,
+ "end": 601.984,
+ "text": "take"
+ },
+ {
+ "id": 1774,
+ "start": 601.984,
+ "end": 602.104,
+ "text": "all"
+ },
+ {
+ "id": 1775,
+ "start": 602.104,
+ "end": 602.364,
+ "text": "that"
+ },
+ {
+ "id": 1776,
+ "start": 602.428,
+ "end": 602.783,
+ "text": "infrastructure"
+ },
+ {
+ "id": 1777,
+ "start": 602.752,
+ "end": 603.202,
+ "text": "down;"
+ },
+ {
+ "id": 1778,
+ "start": 602.9053333333334,
+ "end": 603.2653333333334,
+ "text": "we"
+ },
+ {
+ "id": 1779,
+ "start": 603.0586666666667,
+ "end": 603.3286666666667,
+ "text": "can"
+ },
+ {
+ "id": 1780,
+ "start": 603.212,
+ "end": 603.392,
+ "text": "try"
+ },
+ {
+ "id": 1781,
+ "start": 603.392,
+ "end": 603.462,
+ "text": "to"
+ },
+ {
+ "id": 1782,
+ "start": 603.462,
+ "end": 604.042,
+ "text": "eliminate"
+ },
+ {
+ "id": 1783,
+ "start": 604.042,
+ "end": 604.132,
+ "text": "the"
+ },
+ {
+ "id": 1784,
+ "start": 604.132,
+ "end": 604.352,
+ "text": "bad"
+ },
+ {
+ "id": 1785,
+ "start": 604.9720000000001,
+ "end": 605.2320000000001,
+ "text": "behavior."
+ },
+ {
+ "id": 1786,
+ "start": 605.812,
+ "end": 606.112,
+ "text": "And"
+ },
+ {
+ "id": 1787,
+ "start": 606.112,
+ "end": 606.292,
+ "text": "what"
+ },
+ {
+ "id": 1788,
+ "start": 606.292,
+ "end": 606.612,
+ "text": "sorts"
+ },
+ {
+ "id": 1789,
+ "start": 606.612,
+ "end": 606.712,
+ "text": "of"
+ },
+ {
+ "id": 1790,
+ "start": 606.712,
+ "end": 606.962,
+ "text": "bad"
+ },
+ {
+ "id": 1791,
+ "start": 607.062,
+ "end": 607.242,
+ "text": "behavior"
+ },
+ {
+ "id": 1792,
+ "start": 607.412,
+ "end": 607.522,
+ "text": "have"
+ },
+ {
+ "id": 1793,
+ "start": 607.522,
+ "end": 607.632,
+ "text": "you"
+ },
+ {
+ "id": 1794,
+ "start": 607.632,
+ "end": 607.782,
+ "text": "been"
+ },
+ {
+ "id": 1795,
+ "start": 607.782,
+ "end": 609.712,
+ "text": "detecting"
+ },
+ {
+ "id": 1796,
+ "start": 609.712,
+ "end": 609.822,
+ "text": "in"
+ },
+ {
+ "id": 1797,
+ "start": 609.822,
+ "end": 609.912,
+ "text": "the"
+ },
+ {
+ "id": 1798,
+ "start": 609.912,
+ "end": 610.182,
+ "text": "past"
+ },
+ {
+ "id": 1799,
+ "start": 610.182,
+ "end": 610.432,
+ "text": "seven"
+ },
+ {
+ "id": 1800,
+ "start": 610.432,
+ "end": 610.822,
+ "text": "months?"
+ },
+ {
+ "id": 1801,
+ "start": 610.9886666666667,
+ "end": 611.4853333333332,
+ "text": "We"
+ },
+ {
+ "id": 1802,
+ "start": 611.5453333333334,
+ "end": 612.1486666666666,
+ "text": "focus"
+ },
+ {
+ "id": 1803,
+ "start": 612.102,
+ "end": 612.812,
+ "text": "particularly"
+ },
+ {
+ "id": 1804,
+ "start": 612.812,
+ "end": 613.152,
+ "text": "on"
+ },
+ {
+ "id": 1805,
+ "start": 613.152,
+ "end": 613.252,
+ "text": "what"
+ },
+ {
+ "id": 1806,
+ "start": 613.252,
+ "end": 613.332,
+ "text": "we"
+ },
+ {
+ "id": 1807,
+ "start": 613.332,
+ "end": 613.422,
+ "text": "would"
+ },
+ {
+ "id": 1808,
+ "start": 613.422,
+ "end": 613.582,
+ "text": "call"
+ },
+ {
+ "id": 1809,
+ "start": 613.582,
+ "end": 614.292,
+ "text": "coordinated"
+ },
+ {
+ "id": 1810,
+ "start": 614.292,
+ "end": 614.852,
+ "text": "inauthentic"
+ },
+ {
+ "id": 1811,
+ "start": 615.0370000000001,
+ "end": 615.377,
+ "text": "behavior."
+ },
+ {
+ "id": 1812,
+ "start": 615.782,
+ "end": 615.902,
+ "text": "What"
+ },
+ {
+ "id": 1813,
+ "start": 615.902,
+ "end": 615.952,
+ "text": "I"
+ },
+ {
+ "id": 1814,
+ "start": 615.952,
+ "end": 616.142,
+ "text": "mean"
+ },
+ {
+ "id": 1815,
+ "start": 616.142,
+ "end": 616.282,
+ "text": "by"
+ },
+ {
+ "id": 1816,
+ "start": 616.282,
+ "end": 616.582,
+ "text": "that"
+ },
+ {
+ "id": 1817,
+ "start": 616.582,
+ "end": 616.842,
+ "text": "is"
+ },
+ {
+ "id": 1818,
+ "start": 616.842,
+ "end": 617.552,
+ "text": "essentially"
+ },
+ {
+ "id": 1819,
+ "start": 617.552,
+ "end": 617.682,
+ "text": "a"
+ },
+ {
+ "id": 1820,
+ "start": 617.682,
+ "end": 618.002,
+ "text": "group"
+ },
+ {
+ "id": 1821,
+ "start": 618.002,
+ "end": 618.092,
+ "text": "of"
+ },
+ {
+ "id": 1822,
+ "start": 618.092,
+ "end": 618.692,
+ "text": "accounts,"
+ },
+ {
+ "id": 1823,
+ "start": 618.692,
+ "end": 618.782,
+ "text": "a"
+ },
+ {
+ "id": 1824,
+ "start": 618.782,
+ "end": 618.942,
+ "text": "group"
+ },
+ {
+ "id": 1825,
+ "start": 618.942,
+ "end": 619.032,
+ "text": "of"
+ },
+ {
+ "id": 1826,
+ "start": 619.032,
+ "end": 620.132,
+ "text": "individuals"
+ },
+ {
+ "id": 1827,
+ "start": 620.132,
+ "end": 620.392,
+ "text": "that"
+ },
+ {
+ "id": 1828,
+ "start": 620.392,
+ "end": 620.602,
+ "text": "are"
+ },
+ {
+ "id": 1829,
+ "start": 620.602,
+ "end": 621.702,
+ "text": "misrepresenting"
+ },
+ {
+ "id": 1830,
+ "start": 621.702,
+ "end": 621.962,
+ "text": "who"
+ },
+ {
+ "id": 1831,
+ "start": 621.962,
+ "end": 622.132,
+ "text": "they"
+ },
+ {
+ "id": 1832,
+ "start": 622.132,
+ "end": 622.322,
+ "text": "are"
+ },
+ {
+ "id": 1833,
+ "start": 622.322,
+ "end": 622.402,
+ "text": "on"
+ },
+ {
+ "id": 1834,
+ "start": 622.402,
+ "end": 622.482,
+ "text": "the"
+ },
+ {
+ "id": 1835,
+ "start": 622.482,
+ "end": 623.272,
+ "text": "platform."
+ },
+ {
+ "id": 1836,
+ "start": 623.272,
+ "end": 623.402,
+ "text": "They"
+ },
+ {
+ "id": 1837,
+ "start": 623.402,
+ "end": 623.802,
+ "text": "appear"
+ },
+ {
+ "id": 1838,
+ "start": 623.802,
+ "end": 623.922,
+ "text": "to"
+ },
+ {
+ "id": 1839,
+ "start": 623.922,
+ "end": 624.282,
+ "text": "be,"
+ },
+ {
+ "id": 1840,
+ "start": 624.282,
+ "end": 624.462,
+ "text": "for"
+ },
+ {
+ "id": 1841,
+ "start": 624.462,
+ "end": 625.152,
+ "text": "instance,"
+ },
+ {
+ "id": 1842,
+ "start": 625.152,
+ "end": 626.122,
+ "text": "independent,"
+ },
+ {
+ "id": 1843,
+ "start": 625.952,
+ "end": 626.322,
+ "text": "but"
+ },
+ {
+ "id": 1844,
+ "start": 626.1320000000001,
+ "end": 626.4153333333334,
+ "text": "they"
+ },
+ {
+ "id": 1845,
+ "start": 626.312,
+ "end": 626.5086666666666,
+ "text": "are"
+ },
+ {
+ "id": 1846,
+ "start": 626.492,
+ "end": 626.602,
+ "text": "in"
+ },
+ {
+ "id": 1847,
+ "start": 626.602,
+ "end": 627.202,
+ "text": "fact"
+ },
+ {
+ "id": 1848,
+ "start": 627.202,
+ "end": 628.052,
+ "text": "coordinated"
+ },
+ {
+ "id": 1849,
+ "start": 628.052,
+ "end": 628.882,
+ "text": "surreptitiously"
+ },
+ {
+ "id": 1850,
+ "start": 628.882,
+ "end": 629.052,
+ "text": "by"
+ },
+ {
+ "id": 1851,
+ "start": 629.052,
+ "end": 629.332,
+ "text": "one"
+ },
+ {
+ "id": 1852,
+ "start": 629.332,
+ "end": 629.792,
+ "text": "particular"
+ },
+ {
+ "id": 1853,
+ "start": 629.792,
+ "end": 630.072,
+ "text": "actor"
+ },
+ {
+ "id": 1854,
+ "start": 630.072,
+ "end": 630.132,
+ "text": "in"
+ },
+ {
+ "id": 1855,
+ "start": 630.132,
+ "end": 630.202,
+ "text": "the"
+ },
+ {
+ "id": 1856,
+ "start": 630.202,
+ "end": 631.012,
+ "text": "background."
+ },
+ {
+ "id": 1857,
+ "start": 631.012,
+ "end": 631.192,
+ "text": "And"
+ },
+ {
+ "id": 1858,
+ "start": 631.192,
+ "end": 631.342,
+ "text": "who"
+ },
+ {
+ "id": 1859,
+ "start": 631.342,
+ "end": 631.452,
+ "text": "are"
+ },
+ {
+ "id": 1860,
+ "start": 631.452,
+ "end": 631.612,
+ "text": "the"
+ },
+ {
+ "id": 1861,
+ "start": 631.612,
+ "end": 631.992,
+ "text": "actors"
+ },
+ {
+ "id": 1862,
+ "start": 631.992,
+ "end": 633.572,
+ "text": "that"
+ },
+ {
+ "id": 1863,
+ "start": 633.572,
+ "end": 633.672,
+ "text": "you’re"
+ },
+ {
+ "id": 1864,
+ "start": 633.672,
+ "end": 634.232,
+ "text": "discovering"
+ },
+ {
+ "id": 1865,
+ "start": 634.232,
+ "end": 634.422,
+ "text": "these"
+ },
+ {
+ "id": 1866,
+ "start": 634.422,
+ "end": 635.212,
+ "text": "days?"
+ },
+ {
+ "id": 1867,
+ "start": 635.212,
+ "end": 635.472,
+ "text": "We"
+ },
+ {
+ "id": 1868,
+ "start": 635.472,
+ "end": 635.622,
+ "text": "see"
+ },
+ {
+ "id": 1869,
+ "start": 635.852,
+ "end": 636.0269999999999,
+ "text": "states."
+ },
+ {
+ "id": 1870,
+ "start": 636.232,
+ "end": 636.432,
+ "text": "We’ve"
+ },
+ {
+ "id": 1871,
+ "start": 636.432,
+ "end": 636.782,
+ "text": "talked"
+ },
+ {
+ "id": 1872,
+ "start": 636.782,
+ "end": 637.272,
+ "text": "about"
+ },
+ {
+ "id": 1873,
+ "start": 637.272,
+ "end": 637.922,
+ "text": "content"
+ },
+ {
+ "id": 1874,
+ "start": 637.922,
+ "end": 638.232,
+ "text": "and"
+ },
+ {
+ "id": 1875,
+ "start": 638.232,
+ "end": 638.712,
+ "text": "activity"
+ },
+ {
+ "id": 1876,
+ "start": 638.712,
+ "end": 638.862,
+ "text": "that"
+ },
+ {
+ "id": 1877,
+ "start": 638.862,
+ "end": 639.212,
+ "text": "emanates"
+ },
+ {
+ "id": 1878,
+ "start": 639.212,
+ "end": 639.412,
+ "text": "from"
+ },
+ {
+ "id": 1879,
+ "start": 639.412,
+ "end": 639.932,
+ "text": "Russia,"
+ },
+ {
+ "id": 1880,
+ "start": 639.932,
+ "end": 640.092,
+ "text": "that"
+ },
+ {
+ "id": 1881,
+ "start": 640.092,
+ "end": 640.412,
+ "text": "emanates"
+ },
+ {
+ "id": 1882,
+ "start": 640.412,
+ "end": 640.552,
+ "text": "from"
+ },
+ {
+ "id": 1883,
+ "start": 640.552,
+ "end": 641.072,
+ "text": "Iran"
+ },
+ {
+ "id": 1884,
+ "start": 641.072,
+ "end": 641.192,
+ "text": "with"
+ },
+ {
+ "id": 1885,
+ "start": 641.192,
+ "end": 641.422,
+ "text": "links"
+ },
+ {
+ "id": 1886,
+ "start": 641.422,
+ "end": 641.532,
+ "text": "to"
+ },
+ {
+ "id": 1887,
+ "start": 641.532,
+ "end": 641.892,
+ "text": "Iranian"
+ },
+ {
+ "id": 1888,
+ "start": 641.892,
+ "end": 642.142,
+ "text": "state"
+ },
+ {
+ "id": 1889,
+ "start": 642.142,
+ "end": 642.642,
+ "text": "media."
+ },
+ {
+ "id": 1890,
+ "start": 642.5245000000001,
+ "end": 643.067,
+ "text": "There"
+ },
+ {
+ "id": 1891,
+ "start": 642.9070000000002,
+ "end": 643.4920000000001,
+ "text": "are"
+ },
+ {
+ "id": 1892,
+ "start": 643.2895000000001,
+ "end": 643.917,
+ "text": "non-state"
+ },
+ {
+ "id": 1893,
+ "start": 643.672,
+ "end": 644.342,
+ "text": "entities."
+ },
+ {
+ "id": 1894,
+ "start": 644.342,
+ "end": 644.702,
+ "text": "We’ve"
+ },
+ {
+ "id": 1895,
+ "start": 644.702,
+ "end": 645.272,
+ "text": "done"
+ },
+ {
+ "id": 1896,
+ "start": 645.272,
+ "end": 646.022,
+ "text": "takedowns,"
+ },
+ {
+ "id": 1897,
+ "start": 646.022,
+ "end": 646.112,
+ "text": "for"
+ },
+ {
+ "id": 1898,
+ "start": 646.112,
+ "end": 646.372,
+ "text": "instance,"
+ },
+ {
+ "id": 1899,
+ "start": 646.372,
+ "end": 646.522,
+ "text": "in"
+ },
+ {
+ "id": 1900,
+ "start": 646.522,
+ "end": 647.442,
+ "text": "Brazil"
+ },
+ {
+ "id": 1901,
+ "start": 647.442,
+ "end": 647.582,
+ "text": "that"
+ },
+ {
+ "id": 1902,
+ "start": 647.582,
+ "end": 647.722,
+ "text": "was"
+ },
+ {
+ "id": 1903,
+ "start": 647.722,
+ "end": 647.992,
+ "text": "linked"
+ },
+ {
+ "id": 1904,
+ "start": 647.992,
+ "end": 648.512,
+ "text": "entirely"
+ },
+ {
+ "id": 1905,
+ "start": 648.512,
+ "end": 648.612,
+ "text": "to"
+ },
+ {
+ "id": 1906,
+ "start": 648.612,
+ "end": 649.042,
+ "text": "domestic"
+ },
+ {
+ "id": 1907,
+ "start": 649.067,
+ "end": 649.3420000000001,
+ "text": "behavior,"
+ },
+ {
+ "id": 1908,
+ "start": 649.522,
+ "end": 649.642,
+ "text": "a"
+ },
+ {
+ "id": 1909,
+ "start": 649.642,
+ "end": 650.292,
+ "text": "network"
+ },
+ {
+ "id": 1910,
+ "start": 650.292,
+ "end": 651.262,
+ "text": "of"
+ },
+ {
+ "id": 1911,
+ "start": 651.262,
+ "end": 652.002,
+ "text": "apparently"
+ },
+ {
+ "id": 1912,
+ "start": 652.002,
+ "end": 652.712,
+ "text": "independent"
+ },
+ {
+ "id": 1913,
+ "start": 652.712,
+ "end": 653.012,
+ "text": "news"
+ },
+ {
+ "id": 1914,
+ "start": 653.3619999999999,
+ "end": 653.577,
+ "text": "organizations"
+ },
+ {
+ "id": 1915,
+ "start": 654.012,
+ "end": 654.142,
+ "text": "that"
+ },
+ {
+ "id": 1916,
+ "start": 654.142,
+ "end": 654.232,
+ "text": "were"
+ },
+ {
+ "id": 1917,
+ "start": 654.232,
+ "end": 654.942,
+ "text": "coordinated"
+ },
+ {
+ "id": 1918,
+ "start": 654.942,
+ "end": 655.012,
+ "text": "in"
+ },
+ {
+ "id": 1919,
+ "start": 655.012,
+ "end": 655.072,
+ "text": "the"
+ },
+ {
+ "id": 1920,
+ "start": 655.072,
+ "end": 655.472,
+ "text": "background"
+ },
+ {
+ "id": 1921,
+ "start": 655.472,
+ "end": 655.582,
+ "text": "by"
+ },
+ {
+ "id": 1922,
+ "start": 655.582,
+ "end": 656.052,
+ "text": "domestic"
+ },
+ {
+ "id": 1923,
+ "start": 656.097,
+ "end": 656.402,
+ "text": "entities."
+ },
+ {
+ "id": 1924,
+ "start": 656.612,
+ "end": 656.752,
+ "text": "It’s"
+ },
+ {
+ "id": 1925,
+ "start": 656.752,
+ "end": 656.812,
+ "text": "a"
+ },
+ {
+ "id": 1926,
+ "start": 656.812,
+ "end": 657.182,
+ "text": "wide"
+ },
+ {
+ "id": 1927,
+ "start": 657.182,
+ "end": 657.412,
+ "text": "range"
+ },
+ {
+ "id": 1928,
+ "start": 657.412,
+ "end": 657.482,
+ "text": "of"
+ },
+ {
+ "id": 1929,
+ "start": 657.482,
+ "end": 658.352,
+ "text": "actors."
+ },
+ {
+ "id": 1930,
+ "start": 658.352,
+ "end": 658.672,
+ "text": "How"
+ },
+ {
+ "id": 1931,
+ "start": 658.672,
+ "end": 658.852,
+ "text": "many"
+ },
+ {
+ "id": 1932,
+ "start": 658.852,
+ "end": 659.552,
+ "text": "investigators"
+ },
+ {
+ "id": 1933,
+ "start": 659.552,
+ "end": 659.652,
+ "text": "do"
+ },
+ {
+ "id": 1934,
+ "start": 659.652,
+ "end": 659.732,
+ "text": "you"
+ },
+ {
+ "id": 1935,
+ "start": 659.732,
+ "end": 660.792,
+ "text": "have?"
+ },
+ {
+ "id": 1936,
+ "start": 660.792,
+ "end": 661.162,
+ "text": "We’ve"
+ },
+ {
+ "id": 1937,
+ "start": 661.162,
+ "end": 661.672,
+ "text": "been"
+ },
+ {
+ "id": 1938,
+ "start": 661.672,
+ "end": 662.232,
+ "text": "radically"
+ },
+ {
+ "id": 1939,
+ "start": 662.232,
+ "end": 663.202,
+ "text": "increasing"
+ },
+ {
+ "id": 1940,
+ "start": 663.202,
+ "end": 663.372,
+ "text": "the"
+ },
+ {
+ "id": 1941,
+ "start": 663.372,
+ "end": 663.822,
+ "text": "size"
+ },
+ {
+ "id": 1942,
+ "start": 663.822,
+ "end": 663.922,
+ "text": "of"
+ },
+ {
+ "id": 1943,
+ "start": 663.922,
+ "end": 664.032,
+ "text": "our"
+ },
+ {
+ "id": 1944,
+ "start": 664.032,
+ "end": 664.282,
+ "text": "teams"
+ },
+ {
+ "id": 1945,
+ "start": 664.282,
+ "end": 664.532,
+ "text": "working"
+ },
+ {
+ "id": 1946,
+ "start": 664.532,
+ "end": 664.602,
+ "text": "on"
+ },
+ {
+ "id": 1947,
+ "start": 664.602,
+ "end": 664.962,
+ "text": "security"
+ },
+ {
+ "id": 1948,
+ "start": 664.962,
+ "end": 665.072,
+ "text": "in"
+ },
+ {
+ "id": 1949,
+ "start": 665.177,
+ "end": 665.317,
+ "text": "general."
+ },
+ {
+ "id": 1950,
+ "start": 665.392,
+ "end": 665.562,
+ "text": "We’ve"
+ },
+ {
+ "id": 1951,
+ "start": 665.562,
+ "end": 665.952,
+ "text": "doubled"
+ },
+ {
+ "id": 1952,
+ "start": 665.952,
+ "end": 666.042,
+ "text": "it"
+ },
+ {
+ "id": 1953,
+ "start": 666.042,
+ "end": 666.232,
+ "text": "from"
+ },
+ {
+ "id": 1954,
+ "start": 666.4495000000001,
+ "end": 666.6519999999999,
+ "text": "10,000"
+ },
+ {
+ "id": 1955,
+ "start": 666.857,
+ "end": 667.0719999999999,
+ "text": "to"
+ },
+ {
+ "id": 1956,
+ "start": 667.2645,
+ "end": 667.492,
+ "text": "20,000"
+ },
+ {
+ "id": 1957,
+ "start": 667.672,
+ "end": 667.912,
+ "text": "people"
+ },
+ {
+ "id": 1958,
+ "start": 667.912,
+ "end": 668.272,
+ "text": "across"
+ },
+ {
+ "id": 1959,
+ "start": 668.272,
+ "end": 668.342,
+ "text": "the"
+ },
+ {
+ "id": 1960,
+ "start": 668.342,
+ "end": 669.182,
+ "text": "company."
+ },
+ {
+ "id": 1961,
+ "start": 669.182,
+ "end": 669.382,
+ "text": "But"
+ },
+ {
+ "id": 1962,
+ "start": 669.382,
+ "end": 669.492,
+ "text": "as"
+ },
+ {
+ "id": 1963,
+ "start": 669.492,
+ "end": 669.722,
+ "text": "far"
+ },
+ {
+ "id": 1964,
+ "start": 669.722,
+ "end": 669.812,
+ "text": "as"
+ },
+ {
+ "id": 1965,
+ "start": 669.812,
+ "end": 669.902,
+ "text": "the"
+ },
+ {
+ "id": 1966,
+ "start": 669.902,
+ "end": 670.412,
+ "text": "investigative"
+ },
+ {
+ "id": 1967,
+ "start": 670.412,
+ "end": 670.642,
+ "text": "team,"
+ },
+ {
+ "id": 1968,
+ "start": 670.642,
+ "end": 670.792,
+ "text": "we"
+ },
+ {
+ "id": 1969,
+ "start": 670.792,
+ "end": 671.042,
+ "text": "don’t"
+ },
+ {
+ "id": 1970,
+ "start": 671.042,
+ "end": 671.422,
+ "text": "share"
+ },
+ {
+ "id": 1971,
+ "start": 671.422,
+ "end": 671.892,
+ "text": "particular"
+ },
+ {
+ "id": 1972,
+ "start": 671.892,
+ "end": 672.112,
+ "text": "team"
+ },
+ {
+ "id": 1973,
+ "start": 672.112,
+ "end": 672.592,
+ "text": "sizes."
+ },
+ {
+ "id": 1974,
+ "start": 672.592,
+ "end": 672.732,
+ "text": "Why"
+ },
+ {
+ "id": 1975,
+ "start": 672.732,
+ "end": 673.612,
+ "text": "not?"
+ },
+ {
+ "id": 1976,
+ "start": 673.612,
+ "end": 674.372,
+ "text": "Because"
+ },
+ {
+ "id": 1977,
+ "start": 674.372,
+ "end": 674.502,
+ "text": "there"
+ },
+ {
+ "id": 1978,
+ "start": 674.502,
+ "end": 674.562,
+ "text": "are"
+ },
+ {
+ "id": 1979,
+ "start": 674.562,
+ "end": 674.612,
+ "text": "a"
+ },
+ {
+ "id": 1980,
+ "start": 674.612,
+ "end": 674.842,
+ "text": "lot"
+ },
+ {
+ "id": 1981,
+ "start": 674.842,
+ "end": 674.912,
+ "text": "of"
+ },
+ {
+ "id": 1982,
+ "start": 674.912,
+ "end": 675.172,
+ "text": "different"
+ },
+ {
+ "id": 1983,
+ "start": 675.172,
+ "end": 675.362,
+ "text": "people"
+ },
+ {
+ "id": 1984,
+ "start": 675.362,
+ "end": 675.472,
+ "text": "that"
+ },
+ {
+ "id": 1985,
+ "start": 675.472,
+ "end": 675.622,
+ "text": "work"
+ },
+ {
+ "id": 1986,
+ "start": 675.622,
+ "end": 675.932,
+ "text": "together"
+ },
+ {
+ "id": 1987,
+ "start": 675.932,
+ "end": 676.012,
+ "text": "in"
+ },
+ {
+ "id": 1988,
+ "start": 676.012,
+ "end": 676.132,
+ "text": "this"
+ },
+ {
+ "id": 1989,
+ "start": 676.132,
+ "end": 676.582,
+ "text": "space,"
+ },
+ {
+ "id": 1990,
+ "start": 676.582,
+ "end": 676.772,
+ "text": "and"
+ },
+ {
+ "id": 1991,
+ "start": 676.772,
+ "end": 677.002,
+ "text": "thinking"
+ },
+ {
+ "id": 1992,
+ "start": 677.002,
+ "end": 677.172,
+ "text": "about"
+ },
+ {
+ "id": 1993,
+ "start": 677.172,
+ "end": 677.382,
+ "text": "one"
+ },
+ {
+ "id": 1994,
+ "start": 677.382,
+ "end": 677.612,
+ "text": "team"
+ },
+ {
+ "id": 1995,
+ "start": 677.612,
+ "end": 677.712,
+ "text": "in"
+ },
+ {
+ "id": 1996,
+ "start": 677.712,
+ "end": 678.202,
+ "text": "particular"
+ },
+ {
+ "id": 1997,
+ "start": 678.202,
+ "end": 678.352,
+ "text": "kind"
+ },
+ {
+ "id": 1998,
+ "start": 678.352,
+ "end": 678.412,
+ "text": "of"
+ },
+ {
+ "id": 1999,
+ "start": 678.412,
+ "end": 678.712,
+ "text": "misses"
+ },
+ {
+ "id": 2000,
+ "start": 678.712,
+ "end": 678.782,
+ "text": "the"
+ },
+ {
+ "id": 2001,
+ "start": 678.782,
+ "end": 680.012,
+ "text": "point."
+ },
+ {
+ "id": 2002,
+ "start": 680.012,
+ "end": 680.162,
+ "text": "How"
+ },
+ {
+ "id": 2003,
+ "start": 680.162,
+ "end": 680.342,
+ "text": "does"
+ },
+ {
+ "id": 2004,
+ "start": 680.342,
+ "end": 680.492,
+ "text": "that"
+ },
+ {
+ "id": 2005,
+ "start": 680.492,
+ "end": 680.652,
+ "text": "miss"
+ },
+ {
+ "id": 2006,
+ "start": 680.652,
+ "end": 680.732,
+ "text": "the"
+ },
+ {
+ "id": 2007,
+ "start": 680.732,
+ "end": 681.152,
+ "text": "point,"
+ },
+ {
+ "id": 2008,
+ "start": 681.152,
+ "end": 681.712,
+ "text": "though?"
+ },
+ {
+ "id": 2009,
+ "start": 681.712,
+ "end": 681.892,
+ "text": "In"
+ },
+ {
+ "id": 2010,
+ "start": 681.892,
+ "end": 682.322,
+ "text": "asking,"
+ },
+ {
+ "id": 2011,
+ "start": 682.322,
+ "end": 682.562,
+ "text": "just"
+ },
+ {
+ "id": 2012,
+ "start": 682.562,
+ "end": 682.672,
+ "text": "it"
+ },
+ {
+ "id": 2013,
+ "start": 682.672,
+ "end": 682.892,
+ "text": "seems"
+ },
+ {
+ "id": 2014,
+ "start": 682.892,
+ "end": 683.002,
+ "text": "like"
+ },
+ {
+ "id": 2015,
+ "start": 683.002,
+ "end": 683.072,
+ "text": "a"
+ },
+ {
+ "id": 2016,
+ "start": 683.072,
+ "end": 683.382,
+ "text": "basic"
+ },
+ {
+ "id": 2017,
+ "start": 683.382,
+ "end": 683.752,
+ "text": "question"
+ },
+ {
+ "id": 2018,
+ "start": 683.752,
+ "end": 683.872,
+ "text": "to"
+ },
+ {
+ "id": 2019,
+ "start": 683.872,
+ "end": 684.052,
+ "text": "me."
+ },
+ {
+ "id": 2020,
+ "start": 684.052,
+ "end": 684.092,
+ "text": "I"
+ },
+ {
+ "id": 2021,
+ "start": 684.092,
+ "end": 684.282,
+ "text": "could"
+ },
+ {
+ "id": 2022,
+ "start": 684.282,
+ "end": 684.502,
+ "text": "ask"
+ },
+ {
+ "id": 2023,
+ "start": 684.502,
+ "end": 684.602,
+ "text": "the"
+ },
+ {
+ "id": 2024,
+ "start": 684.602,
+ "end": 685.072,
+ "text": "FBI"
+ },
+ {
+ "id": 2025,
+ "start": 685.072,
+ "end": 685.192,
+ "text": "how"
+ },
+ {
+ "id": 2026,
+ "start": 685.192,
+ "end": 685.362,
+ "text": "many"
+ },
+ {
+ "id": 2027,
+ "start": 685.362,
+ "end": 685.652,
+ "text": "people"
+ },
+ {
+ "id": 2028,
+ "start": 685.652,
+ "end": 685.832,
+ "text": "they’ve"
+ },
+ {
+ "id": 2029,
+ "start": 685.832,
+ "end": 686.062,
+ "text": "got"
+ },
+ {
+ "id": 2030,
+ "start": 686.062,
+ "end": 687.082,
+ "text": "investigating"
+ },
+ {
+ "id": 2031,
+ "start": 687.082,
+ "end": 687.852,
+ "text": "cybercrime,"
+ },
+ {
+ "id": 2032,
+ "start": 687.852,
+ "end": 688.012,
+ "text": "for"
+ },
+ {
+ "id": 2033,
+ "start": 688.012,
+ "end": 688.822,
+ "text": "instance."
+ },
+ {
+ "id": 2034,
+ "start": 688.822,
+ "end": 689.022,
+ "text": "They’d"
+ },
+ {
+ "id": 2035,
+ "start": 689.022,
+ "end": 689.452,
+ "text": "probably"
+ },
+ {
+ "id": 2036,
+ "start": 689.452,
+ "end": 689.712,
+ "text": "tell"
+ },
+ {
+ "id": 2037,
+ "start": 689.832,
+ "end": 690.112,
+ "text": "me,"
+ },
+ {
+ "id": 2038,
+ "start": 690.212,
+ "end": 690.512,
+ "text": "so"
+ },
+ {
+ "id": 2039,
+ "start": 690.512,
+ "end": 690.722,
+ "text": "why"
+ },
+ {
+ "id": 2040,
+ "start": 690.722,
+ "end": 690.992,
+ "text": "can’t"
+ },
+ {
+ "id": 2041,
+ "start": 690.992,
+ "end": 691.112,
+ "text": "you"
+ },
+ {
+ "id": 2042,
+ "start": 691.112,
+ "end": 691.332,
+ "text": "tell"
+ },
+ {
+ "id": 2043,
+ "start": 691.332,
+ "end": 692.112,
+ "text": "me?"
+ },
+ {
+ "id": 2044,
+ "start": 692.112,
+ "end": 692.762,
+ "text": "Because"
+ },
+ {
+ "id": 2045,
+ "start": 692.762,
+ "end": 692.982,
+ "text": "our"
+ },
+ {
+ "id": 2046,
+ "start": 692.982,
+ "end": 693.272,
+ "text": "Threat"
+ },
+ {
+ "id": 2047,
+ "start": 693.272,
+ "end": 693.822,
+ "text": "investigative"
+ },
+ {
+ "id": 2048,
+ "start": 693.822,
+ "end": 694.372,
+ "text": "team"
+ },
+ {
+ "id": 2049,
+ "start": 694.372,
+ "end": 694.722,
+ "text": "works"
+ },
+ {
+ "id": 2050,
+ "start": 694.722,
+ "end": 694.952,
+ "text": "really"
+ },
+ {
+ "id": 2051,
+ "start": 694.952,
+ "end": 695.372,
+ "text": "closely"
+ },
+ {
+ "id": 2052,
+ "start": 695.372,
+ "end": 695.522,
+ "text": "with,"
+ },
+ {
+ "id": 2053,
+ "start": 695.522,
+ "end": 695.672,
+ "text": "for"
+ },
+ {
+ "id": 2054,
+ "start": 695.672,
+ "end": 696.052,
+ "text": "instance,"
+ },
+ {
+ "id": 2055,
+ "start": 695.8969999999999,
+ "end": 696.287,
+ "text": "our"
+ },
+ {
+ "id": 2056,
+ "start": 696.122,
+ "end": 696.522,
+ "text": "Community"
+ },
+ {
+ "id": 2057,
+ "start": 696.522,
+ "end": 697.182,
+ "text": "Operations"
+ },
+ {
+ "id": 2058,
+ "start": 697.182,
+ "end": 697.552,
+ "text": "team,"
+ },
+ {
+ "id": 2059,
+ "start": 697.552,
+ "end": 697.762,
+ "text": "who"
+ },
+ {
+ "id": 2060,
+ "start": 697.762,
+ "end": 698.192,
+ "text": "supports"
+ },
+ {
+ "id": 2061,
+ "start": 698.192,
+ "end": 698.262,
+ "text": "a"
+ },
+ {
+ "id": 2062,
+ "start": 698.262,
+ "end": 698.442,
+ "text": "lot"
+ },
+ {
+ "id": 2063,
+ "start": 698.442,
+ "end": 698.502,
+ "text": "of"
+ },
+ {
+ "id": 2064,
+ "start": 698.502,
+ "end": 698.662,
+ "text": "those"
+ },
+ {
+ "id": 2065,
+ "start": 698.662,
+ "end": 699.642,
+ "text": "investigations."
+ },
+ {
+ "id": 2066,
+ "start": 699.642,
+ "end": 699.832,
+ "text": "That’s"
+ },
+ {
+ "id": 2067,
+ "start": 699.832,
+ "end": 700.052,
+ "text": "why"
+ },
+ {
+ "id": 2068,
+ "start": 700.052,
+ "end": 700.192,
+ "text": "when"
+ },
+ {
+ "id": 2069,
+ "start": 700.192,
+ "end": 700.292,
+ "text": "we"
+ },
+ {
+ "id": 2070,
+ "start": 700.292,
+ "end": 700.642,
+ "text": "say"
+ },
+ {
+ "id": 2071,
+ "start": 700.642,
+ "end": 700.782,
+ "text": "we"
+ },
+ {
+ "id": 2072,
+ "start": 700.782,
+ "end": 701.752,
+ "text": "have"
+ },
+ {
+ "id": 2073,
+ "start": 701.162,
+ "end": 702.082,
+ "text": "first"
+ },
+ {
+ "id": 2074,
+ "start": 701.4653333333334,
+ "end": 702.2603333333334,
+ "text": "10,000"
+ },
+ {
+ "id": 2075,
+ "start": 701.7686666666667,
+ "end": 702.4386666666667,
+ "text": "at"
+ },
+ {
+ "id": 2076,
+ "start": 702.072,
+ "end": 702.617,
+ "text": "the"
+ },
+ {
+ "id": 2077,
+ "start": 702.3753333333334,
+ "end": 702.7953333333334,
+ "text": "beginning"
+ },
+ {
+ "id": 2078,
+ "start": 702.6786666666667,
+ "end": 702.9736666666668,
+ "text": "of"
+ },
+ {
+ "id": 2079,
+ "start": 702.982,
+ "end": 703.152,
+ "text": "this"
+ },
+ {
+ "id": 2080,
+ "start": 703.152,
+ "end": 703.282,
+ "text": "year"
+ },
+ {
+ "id": 2081,
+ "start": 703.282,
+ "end": 703.382,
+ "text": "and"
+ },
+ {
+ "id": 2082,
+ "start": 703.652,
+ "end": 703.8219999999999,
+ "text": "20,000"
+ },
+ {
+ "id": 2083,
+ "start": 704.022,
+ "end": 704.262,
+ "text": "people"
+ },
+ {
+ "id": 2084,
+ "start": 704.262,
+ "end": 704.332,
+ "text": "at"
+ },
+ {
+ "id": 2085,
+ "start": 704.332,
+ "end": 704.442,
+ "text": "the"
+ },
+ {
+ "id": 2086,
+ "start": 704.442,
+ "end": 704.542,
+ "text": "end"
+ },
+ {
+ "id": 2087,
+ "start": 704.542,
+ "end": 704.602,
+ "text": "of"
+ },
+ {
+ "id": 2088,
+ "start": 704.602,
+ "end": 704.712,
+ "text": "this"
+ },
+ {
+ "id": 2089,
+ "start": 704.712,
+ "end": 704.812,
+ "text": "year"
+ },
+ {
+ "id": 2090,
+ "start": 704.812,
+ "end": 705.142,
+ "text": "working"
+ },
+ {
+ "id": 2091,
+ "start": 705.142,
+ "end": 705.252,
+ "text": "on"
+ },
+ {
+ "id": 2092,
+ "start": 705.547,
+ "end": 705.717,
+ "text": "security,"
+ },
+ {
+ "id": 2093,
+ "start": 705.952,
+ "end": 706.182,
+ "text": "that"
+ },
+ {
+ "id": 2094,
+ "start": 706.182,
+ "end": 706.412,
+ "text": "really"
+ },
+ {
+ "id": 2095,
+ "start": 706.412,
+ "end": 706.542,
+ "text": "is"
+ },
+ {
+ "id": 2096,
+ "start": 706.542,
+ "end": 706.602,
+ "text": "a"
+ },
+ {
+ "id": 2097,
+ "start": 706.602,
+ "end": 707.032,
+ "text": "meaningful"
+ },
+ {
+ "id": 2098,
+ "start": 707.1519999999999,
+ "end": 707.5369999999999,
+ "text": "number,"
+ },
+ {
+ "id": 2099,
+ "start": 707.702,
+ "end": 708.042,
+ "text": "because"
+ },
+ {
+ "id": 2100,
+ "start": 708.042,
+ "end": 708.172,
+ "text": "to"
+ },
+ {
+ "id": 2101,
+ "start": 708.172,
+ "end": 708.432,
+ "text": "do"
+ },
+ {
+ "id": 2102,
+ "start": 708.432,
+ "end": 708.582,
+ "text": "this"
+ },
+ {
+ "id": 2103,
+ "start": 708.582,
+ "end": 708.752,
+ "text": "kind"
+ },
+ {
+ "id": 2104,
+ "start": 708.752,
+ "end": 708.822,
+ "text": "of"
+ },
+ {
+ "id": 2105,
+ "start": 708.822,
+ "end": 709.592,
+ "text": "operation,"
+ },
+ {
+ "id": 2106,
+ "start": 709.592,
+ "end": 709.762,
+ "text": "you"
+ },
+ {
+ "id": 2107,
+ "start": 709.762,
+ "end": 710.002,
+ "text": "need"
+ },
+ {
+ "id": 2108,
+ "start": 710.002,
+ "end": 710.372,
+ "text": "all"
+ },
+ {
+ "id": 2109,
+ "start": 710.372,
+ "end": 710.482,
+ "text": "of"
+ },
+ {
+ "id": 2110,
+ "start": 710.482,
+ "end": 710.572,
+ "text": "the"
+ },
+ {
+ "id": 2111,
+ "start": 710.572,
+ "end": 710.862,
+ "text": "different"
+ },
+ {
+ "id": 2112,
+ "start": 710.862,
+ "end": 711.462,
+ "text": "players."
+ },
+ {
+ "id": 2113,
+ "start": 712.002,
+ "end": 712.4519999999998,
+ "text": "OK,"
+ },
+ {
+ "id": 2114,
+ "start": 713.142,
+ "end": 713.442,
+ "text": "but"
+ },
+ {
+ "id": 2115,
+ "start": 713.442,
+ "end": 713.622,
+ "text": "it’s"
+ },
+ {
+ "id": 2116,
+ "start": 713.622,
+ "end": 714.052,
+ "text": "interesting,"
+ },
+ {
+ "id": 2117,
+ "start": 714.052,
+ "end": 714.322,
+ "text": "because"
+ },
+ {
+ "id": 2118,
+ "start": 714.322,
+ "end": 714.442,
+ "text": "in"
+ },
+ {
+ "id": 2119,
+ "start": 714.442,
+ "end": 714.562,
+ "text": "the"
+ },
+ {
+ "id": 2120,
+ "start": 714.562,
+ "end": 715.062,
+ "text": "interviews"
+ },
+ {
+ "id": 2121,
+ "start": 715.062,
+ "end": 715.262,
+ "text": "over"
+ },
+ {
+ "id": 2122,
+ "start": 715.262,
+ "end": 715.352,
+ "text": "the"
+ },
+ {
+ "id": 2123,
+ "start": 715.352,
+ "end": 715.662,
+ "text": "past"
+ },
+ {
+ "id": 2124,
+ "start": 715.662,
+ "end": 715.922,
+ "text": "couple"
+ },
+ {
+ "id": 2125,
+ "start": 715.922,
+ "end": 716.002,
+ "text": "of"
+ },
+ {
+ "id": 2126,
+ "start": 716.002,
+ "end": 716.432,
+ "text": "days,"
+ },
+ {
+ "id": 2127,
+ "start": 716.5069999999998,
+ "end": 716.942,
+ "text": "everyone’s"
+ },
+ {
+ "id": 2128,
+ "start": 717.012,
+ "end": 717.452,
+ "text": "citing"
+ },
+ {
+ "id": 2129,
+ "start": 717.452,
+ "end": 717.542,
+ "text": "the"
+ },
+ {
+ "id": 2130,
+ "start": 717.827,
+ "end": 718.0244999999999,
+ "text": "10,000"
+ },
+ {
+ "id": 2131,
+ "start": 718.202,
+ "end": 718.507,
+ "text": "to"
+ },
+ {
+ "id": 2132,
+ "start": 718.577,
+ "end": 718.9894999999998,
+ "text": "20,000"
+ },
+ {
+ "id": 2133,
+ "start": 718.952,
+ "end": 719.472,
+ "text": "mark,"
+ },
+ {
+ "id": 2134,
+ "start": 719.3670000000001,
+ "end": 719.8545,
+ "text": "and"
+ },
+ {
+ "id": 2135,
+ "start": 719.782,
+ "end": 720.2370000000001,
+ "text": "that"
+ },
+ {
+ "id": 2136,
+ "start": 720.197,
+ "end": 720.6195,
+ "text": "can"
+ },
+ {
+ "id": 2137,
+ "start": 720.612,
+ "end": 721.002,
+ "text": "include"
+ },
+ {
+ "id": 2138,
+ "start": 721.002,
+ "end": 721.532,
+ "text": "content"
+ },
+ {
+ "id": 2139,
+ "start": 721.532,
+ "end": 722.242,
+ "text": "moderators;"
+ },
+ {
+ "id": 2140,
+ "start": 722.242,
+ "end": 722.492,
+ "text": "that"
+ },
+ {
+ "id": 2141,
+ "start": 722.5293333333333,
+ "end": 722.7259999999999,
+ "text": "can"
+ },
+ {
+ "id": 2142,
+ "start": 722.8166666666666,
+ "end": 722.9599999999999,
+ "text": "include"
+ },
+ {
+ "id": 2143,
+ "start": 723.104,
+ "end": 723.194,
+ "text": "it"
+ },
+ {
+ "id": 2144,
+ "start": 723.194,
+ "end": 723.444,
+ "text": "seems"
+ },
+ {
+ "id": 2145,
+ "start": 723.444,
+ "end": 723.564,
+ "text": "like"
+ },
+ {
+ "id": 2146,
+ "start": 723.564,
+ "end": 723.634,
+ "text": "a"
+ },
+ {
+ "id": 2147,
+ "start": 723.634,
+ "end": 724.034,
+ "text": "wide"
+ },
+ {
+ "id": 2148,
+ "start": 724.034,
+ "end": 724.274,
+ "text": "array"
+ },
+ {
+ "id": 2149,
+ "start": 724.274,
+ "end": 724.374,
+ "text": "of"
+ },
+ {
+ "id": 2150,
+ "start": 724.364,
+ "end": 724.954,
+ "text": "people."
+ },
+ {
+ "id": 2151,
+ "start": 725.0540000000001,
+ "end": 725.519,
+ "text": "…"
+ },
+ {
+ "id": 2152,
+ "start": 725.744,
+ "end": 726.084,
+ "text": "How"
+ },
+ {
+ "id": 2153,
+ "start": 726.084,
+ "end": 726.194,
+ "text": "are"
+ },
+ {
+ "id": 2154,
+ "start": 726.194,
+ "end": 726.404,
+ "text": "we"
+ },
+ {
+ "id": 2155,
+ "start": 726.404,
+ "end": 727.004,
+ "text": "supposed"
+ },
+ {
+ "id": 2156,
+ "start": 727.004,
+ "end": 727.114,
+ "text": "to"
+ },
+ {
+ "id": 2157,
+ "start": 727.114,
+ "end": 727.674,
+ "text": "know,"
+ },
+ {
+ "id": 2158,
+ "start": 727.674,
+ "end": 728.554,
+ "text": "considering"
+ },
+ {
+ "id": 2159,
+ "start": 728.554,
+ "end": 728.714,
+ "text": "the"
+ },
+ {
+ "id": 2160,
+ "start": 728.714,
+ "end": 729.394,
+ "text": "gravity"
+ },
+ {
+ "id": 2161,
+ "start": 729.394,
+ "end": 729.514,
+ "text": "of"
+ },
+ {
+ "id": 2162,
+ "start": 729.514,
+ "end": 729.614,
+ "text": "the"
+ },
+ {
+ "id": 2163,
+ "start": 729.614,
+ "end": 730.054,
+ "text": "task"
+ },
+ {
+ "id": 2164,
+ "start": 730.054,
+ "end": 730.224,
+ "text": "that"
+ },
+ {
+ "id": 2165,
+ "start": 730.224,
+ "end": 730.394,
+ "text": "you"
+ },
+ {
+ "id": 2166,
+ "start": 730.394,
+ "end": 731.044,
+ "text": "have,"
+ },
+ {
+ "id": 2167,
+ "start": 731.044,
+ "end": 731.334,
+ "text": "which"
+ },
+ {
+ "id": 2168,
+ "start": 731.334,
+ "end": 731.464,
+ "text": "is"
+ },
+ {
+ "id": 2169,
+ "start": 731.464,
+ "end": 732.524,
+ "text": "essentially"
+ },
+ {
+ "id": 2170,
+ "start": 732.524,
+ "end": 733.484,
+ "text": "protecting"
+ },
+ {
+ "id": 2171,
+ "start": 733.484,
+ "end": 733.854,
+ "text": "one"
+ },
+ {
+ "id": 2172,
+ "start": 733.854,
+ "end": 733.914,
+ "text": "of"
+ },
+ {
+ "id": 2173,
+ "start": 733.914,
+ "end": 734.004,
+ "text": "the"
+ },
+ {
+ "id": 2174,
+ "start": 734.004,
+ "end": 734.414,
+ "text": "largest"
+ },
+ {
+ "id": 2175,
+ "start": 734.414,
+ "end": 735.024,
+ "text": "information"
+ },
+ {
+ "id": 2176,
+ "start": 735.024,
+ "end": 735.504,
+ "text": "sources"
+ },
+ {
+ "id": 2177,
+ "start": 735.504,
+ "end": 735.674,
+ "text": "for"
+ },
+ {
+ "id": 2178,
+ "start": 735.674,
+ "end": 736.114,
+ "text": "American"
+ },
+ {
+ "id": 2179,
+ "start": 736.114,
+ "end": 736.544,
+ "text": "voters"
+ },
+ {
+ "id": 2180,
+ "start": 736.544,
+ "end": 736.634,
+ "text": "in"
+ },
+ {
+ "id": 2181,
+ "start": 736.634,
+ "end": 736.784,
+ "text": "this"
+ },
+ {
+ "id": 2182,
+ "start": 736.784,
+ "end": 737.164,
+ "text": "upcoming"
+ },
+ {
+ "id": 2183,
+ "start": 737.4889999999999,
+ "end": 737.7539999999999,
+ "text": "election—how"
+ },
+ {
+ "id": 2184,
+ "start": 738.194,
+ "end": 738.344,
+ "text": "are"
+ },
+ {
+ "id": 2185,
+ "start": 738.344,
+ "end": 738.484,
+ "text": "we"
+ },
+ {
+ "id": 2186,
+ "start": 738.484,
+ "end": 738.884,
+ "text": "supposed"
+ },
+ {
+ "id": 2187,
+ "start": 738.884,
+ "end": 738.964,
+ "text": "to"
+ },
+ {
+ "id": 2188,
+ "start": 738.964,
+ "end": 739.334,
+ "text": "trust"
+ },
+ {
+ "id": 2189,
+ "start": 739.334,
+ "end": 739.464,
+ "text": "that"
+ },
+ {
+ "id": 2190,
+ "start": 739.464,
+ "end": 739.634,
+ "text": "you"
+ },
+ {
+ "id": 2191,
+ "start": 739.634,
+ "end": 740.124,
+ "text": "have"
+ },
+ {
+ "id": 2192,
+ "start": 740.124,
+ "end": 740.584,
+ "text": "all"
+ },
+ {
+ "id": 2193,
+ "start": 740.584,
+ "end": 740.674,
+ "text": "of"
+ },
+ {
+ "id": 2194,
+ "start": 740.674,
+ "end": 740.784,
+ "text": "the"
+ },
+ {
+ "id": 2195,
+ "start": 741.029,
+ "end": 741.139,
+ "text": "resources"
+ },
+ {
+ "id": 2196,
+ "start": 741.384,
+ "end": 741.494,
+ "text": "at"
+ },
+ {
+ "id": 2197,
+ "start": 741.494,
+ "end": 741.664,
+ "text": "your"
+ },
+ {
+ "id": 2198,
+ "start": 741.664,
+ "end": 742.764,
+ "text": "disposal"
+ },
+ {
+ "id": 2199,
+ "start": 742.764,
+ "end": 742.954,
+ "text": "that"
+ },
+ {
+ "id": 2200,
+ "start": 742.954,
+ "end": 743.074,
+ "text": "you"
+ },
+ {
+ "id": 2201,
+ "start": 743.074,
+ "end": 743.414,
+ "text": "need"
+ },
+ {
+ "id": 2202,
+ "start": 743.414,
+ "end": 743.494,
+ "text": "to"
+ },
+ {
+ "id": 2203,
+ "start": 743.494,
+ "end": 743.604,
+ "text": "be"
+ },
+ {
+ "id": 2204,
+ "start": 743.604,
+ "end": 743.744,
+ "text": "able"
+ },
+ {
+ "id": 2205,
+ "start": 743.744,
+ "end": 743.824,
+ "text": "to"
+ },
+ {
+ "id": 2206,
+ "start": 743.824,
+ "end": 744.254,
+ "text": "catch"
+ },
+ {
+ "id": 2207,
+ "start": 744.254,
+ "end": 744.464,
+ "text": "bad"
+ },
+ {
+ "id": 2208,
+ "start": 744.464,
+ "end": 745.444,
+ "text": "actors?"
+ },
+ {
+ "id": 2209,
+ "start": 745.444,
+ "end": 745.544,
+ "text": "I"
+ },
+ {
+ "id": 2210,
+ "start": 745.544,
+ "end": 745.704,
+ "text": "think"
+ },
+ {
+ "id": 2211,
+ "start": 745.704,
+ "end": 745.814,
+ "text": "one"
+ },
+ {
+ "id": 2212,
+ "start": 745.814,
+ "end": 745.874,
+ "text": "of"
+ },
+ {
+ "id": 2213,
+ "start": 745.874,
+ "end": 745.964,
+ "text": "the"
+ },
+ {
+ "id": 2214,
+ "start": 745.964,
+ "end": 746.314,
+ "text": "best"
+ },
+ {
+ "id": 2215,
+ "start": 746.314,
+ "end": 746.534,
+ "text": "ways"
+ },
+ {
+ "id": 2216,
+ "start": 746.534,
+ "end": 746.644,
+ "text": "to"
+ },
+ {
+ "id": 2217,
+ "start": 746.644,
+ "end": 746.824,
+ "text": "look"
+ },
+ {
+ "id": 2218,
+ "start": 746.824,
+ "end": 746.914,
+ "text": "to"
+ },
+ {
+ "id": 2219,
+ "start": 746.914,
+ "end": 747.194,
+ "text": "that"
+ },
+ {
+ "id": 2220,
+ "start": 747.194,
+ "end": 747.354,
+ "text": "is"
+ },
+ {
+ "id": 2221,
+ "start": 747.354,
+ "end": 747.484,
+ "text": "to"
+ },
+ {
+ "id": 2222,
+ "start": 747.484,
+ "end": 747.694,
+ "text": "look"
+ },
+ {
+ "id": 2223,
+ "start": 747.694,
+ "end": 747.784,
+ "text": "at"
+ },
+ {
+ "id": 2224,
+ "start": 747.784,
+ "end": 747.884,
+ "text": "the"
+ },
+ {
+ "id": 2225,
+ "start": 747.884,
+ "end": 748.474,
+ "text": "pattern"
+ },
+ {
+ "id": 2226,
+ "start": 748.474,
+ "end": 749.444,
+ "text": "of"
+ },
+ {
+ "id": 2227,
+ "start": 749.444,
+ "end": 750.134,
+ "text": "disruptions,"
+ },
+ {
+ "id": 2228,
+ "start": 750.134,
+ "end": 750.824,
+ "text": "takedowns,"
+ },
+ {
+ "id": 2229,
+ "start": 750.824,
+ "end": 751.124,
+ "text": "we’ve"
+ },
+ {
+ "id": 2230,
+ "start": 751.124,
+ "end": 751.384,
+ "text": "done"
+ },
+ {
+ "id": 2231,
+ "start": 751.384,
+ "end": 751.554,
+ "text": "over"
+ },
+ {
+ "id": 2232,
+ "start": 751.554,
+ "end": 751.624,
+ "text": "the"
+ },
+ {
+ "id": 2233,
+ "start": 751.624,
+ "end": 751.944,
+ "text": "past"
+ },
+ {
+ "id": 2234,
+ "start": 751.944,
+ "end": 752.194,
+ "text": "several"
+ },
+ {
+ "id": 2235,
+ "start": 752.194,
+ "end": 752.804,
+ "text": "months."
+ },
+ {
+ "id": 2236,
+ "start": 752.804,
+ "end": 752.954,
+ "text": "If"
+ },
+ {
+ "id": 2237,
+ "start": 752.954,
+ "end": 753.084,
+ "text": "you"
+ },
+ {
+ "id": 2238,
+ "start": 753.084,
+ "end": 753.444,
+ "text": "look"
+ },
+ {
+ "id": 2239,
+ "start": 753.444,
+ "end": 753.634,
+ "text": "at"
+ },
+ {
+ "id": 2240,
+ "start": 753.624,
+ "end": 753.854,
+ "text": "our"
+ },
+ {
+ "id": 2241,
+ "start": 754.049,
+ "end": 754.259,
+ "text": "takedowns"
+ },
+ {
+ "id": 2242,
+ "start": 754.474,
+ "end": 754.664,
+ "text": "from"
+ },
+ {
+ "id": 2243,
+ "start": 754.664,
+ "end": 755.034,
+ "text": "earlier"
+ },
+ {
+ "id": 2244,
+ "start": 755.034,
+ "end": 755.114,
+ "text": "in"
+ },
+ {
+ "id": 2245,
+ "start": 755.114,
+ "end": 755.194,
+ "text": "the"
+ },
+ {
+ "id": 2246,
+ "start": 755.194,
+ "end": 755.344,
+ "text": "year"
+ },
+ {
+ "id": 2247,
+ "start": 755.344,
+ "end": 755.454,
+ "text": "when"
+ },
+ {
+ "id": 2248,
+ "start": 755.454,
+ "end": 755.534,
+ "text": "I"
+ },
+ {
+ "id": 2249,
+ "start": 755.534,
+ "end": 755.924,
+ "text": "joined"
+ },
+ {
+ "id": 2250,
+ "start": 755.924,
+ "end": 756.034,
+ "text": "to"
+ },
+ {
+ "id": 2251,
+ "start": 756.034,
+ "end": 756.684,
+ "text": "now,"
+ },
+ {
+ "id": 2252,
+ "start": 756.684,
+ "end": 756.854,
+ "text": "there’s"
+ },
+ {
+ "id": 2253,
+ "start": 756.854,
+ "end": 756.954,
+ "text": "been"
+ },
+ {
+ "id": 2254,
+ "start": 756.954,
+ "end": 757.014,
+ "text": "a"
+ },
+ {
+ "id": 2255,
+ "start": 757.014,
+ "end": 757.184,
+ "text": "pretty"
+ },
+ {
+ "id": 2256,
+ "start": 757.184,
+ "end": 757.804,
+ "text": "substantial"
+ },
+ {
+ "id": 2257,
+ "start": 757.804,
+ "end": 758.124,
+ "text": "uptick"
+ },
+ {
+ "id": 2258,
+ "start": 758.124,
+ "end": 758.214,
+ "text": "in"
+ },
+ {
+ "id": 2259,
+ "start": 758.4340000000001,
+ "end": 758.5965000000001,
+ "text": "pace."
+ },
+ {
+ "id": 2260,
+ "start": 758.744,
+ "end": 758.979,
+ "text": "These"
+ },
+ {
+ "id": 2261,
+ "start": 759.054,
+ "end": 759.3615,
+ "text": "are"
+ },
+ {
+ "id": 2262,
+ "start": 759.364,
+ "end": 759.744,
+ "text": "manual"
+ },
+ {
+ "id": 2263,
+ "start": 759.844,
+ "end": 760.0989999999999,
+ "text": "disruptions,"
+ },
+ {
+ "id": 2264,
+ "start": 760.324,
+ "end": 760.454,
+ "text": "so"
+ },
+ {
+ "id": 2265,
+ "start": 760.454,
+ "end": 760.534,
+ "text": "the"
+ },
+ {
+ "id": 2266,
+ "start": 760.534,
+ "end": 760.804,
+ "text": "numbers"
+ },
+ {
+ "id": 2267,
+ "start": 760.804,
+ "end": 760.914,
+ "text": "are"
+ },
+ {
+ "id": 2268,
+ "start": 760.914,
+ "end": 761.144,
+ "text": "always"
+ },
+ {
+ "id": 2269,
+ "start": 761.044,
+ "end": 761.2306666666666,
+ "text": "going"
+ },
+ {
+ "id": 2270,
+ "start": 761.174,
+ "end": 761.3173333333333,
+ "text": "to"
+ },
+ {
+ "id": 2271,
+ "start": 761.304,
+ "end": 761.404,
+ "text": "be"
+ },
+ {
+ "id": 2272,
+ "start": 761.404,
+ "end": 761.874,
+ "text": "small,"
+ },
+ {
+ "id": 2273,
+ "start": 761.874,
+ "end": 762.064,
+ "text": "because"
+ },
+ {
+ "id": 2274,
+ "start": 762.064,
+ "end": 762.154,
+ "text": "what"
+ },
+ {
+ "id": 2275,
+ "start": 762.2073333333333,
+ "end": 762.2906666666667,
+ "text": "we"
+ },
+ {
+ "id": 2276,
+ "start": 762.3506666666667,
+ "end": 762.4273333333333,
+ "text": "do"
+ },
+ {
+ "id": 2277,
+ "start": 762.494,
+ "end": 762.564,
+ "text": "is"
+ },
+ {
+ "id": 2278,
+ "start": 762.564,
+ "end": 762.684,
+ "text": "we’re"
+ },
+ {
+ "id": 2279,
+ "start": 762.684,
+ "end": 763.044,
+ "text": "looking"
+ },
+ {
+ "id": 2280,
+ "start": 763.044,
+ "end": 763.154,
+ "text": "for"
+ },
+ {
+ "id": 2281,
+ "start": 763.154,
+ "end": 763.214,
+ "text": "the"
+ },
+ {
+ "id": 2282,
+ "start": 763.214,
+ "end": 763.384,
+ "text": "most"
+ },
+ {
+ "id": 2283,
+ "start": 763.384,
+ "end": 763.994,
+ "text": "sophisticated"
+ },
+ {
+ "id": 2284,
+ "start": 763.994,
+ "end": 764.224,
+ "text": "bad"
+ },
+ {
+ "id": 2285,
+ "start": 764.224,
+ "end": 764.564,
+ "text": "actors"
+ },
+ {
+ "id": 2286,
+ "start": 764.564,
+ "end": 764.674,
+ "text": "to"
+ },
+ {
+ "id": 2287,
+ "start": 764.674,
+ "end": 764.904,
+ "text": "take"
+ },
+ {
+ "id": 2288,
+ "start": 764.904,
+ "end": 765.034,
+ "text": "them"
+ },
+ {
+ "id": 2289,
+ "start": 765.034,
+ "end": 765.674,
+ "text": "down,"
+ },
+ {
+ "id": 2290,
+ "start": 765.674,
+ "end": 766.124,
+ "text": "but"
+ },
+ {
+ "id": 2291,
+ "start": 766.124,
+ "end": 766.324,
+ "text": "they’re"
+ },
+ {
+ "id": 2292,
+ "start": 766.324,
+ "end": 766.714,
+ "text": "coming"
+ },
+ {
+ "id": 2293,
+ "start": 766.714,
+ "end": 766.894,
+ "text": "much"
+ },
+ {
+ "id": 2294,
+ "start": 766.894,
+ "end": 767.044,
+ "text": "more"
+ },
+ {
+ "id": 2295,
+ "start": 767.3690000000001,
+ "end": 767.599,
+ "text": "quickly."
+ },
+ {
+ "id": 2296,
+ "start": 767.844,
+ "end": 768.154,
+ "text": "And"
+ },
+ {
+ "id": 2297,
+ "start": 768.154,
+ "end": 768.314,
+ "text": "what’s"
+ },
+ {
+ "id": 2298,
+ "start": 768.314,
+ "end": 768.704,
+ "text": "important"
+ },
+ {
+ "id": 2299,
+ "start": 768.704,
+ "end": 768.974,
+ "text": "about"
+ },
+ {
+ "id": 2300,
+ "start": 768.974,
+ "end": 769.284,
+ "text": "that"
+ },
+ {
+ "id": 2301,
+ "start": 769.284,
+ "end": 769.474,
+ "text": "is"
+ },
+ {
+ "id": 2302,
+ "start": 769.474,
+ "end": 769.574,
+ "text": "when"
+ },
+ {
+ "id": 2303,
+ "start": 769.574,
+ "end": 769.664,
+ "text": "we"
+ },
+ {
+ "id": 2304,
+ "start": 769.664,
+ "end": 769.984,
+ "text": "take"
+ },
+ {
+ "id": 2305,
+ "start": 769.984,
+ "end": 770.154,
+ "text": "these"
+ },
+ {
+ "id": 2306,
+ "start": 770.154,
+ "end": 770.984,
+ "text": "actions,"
+ },
+ {
+ "id": 2307,
+ "start": 770.984,
+ "end": 771.134,
+ "text": "it’s"
+ },
+ {
+ "id": 2308,
+ "start": 771.134,
+ "end": 771.304,
+ "text": "not"
+ },
+ {
+ "id": 2309,
+ "start": 771.304,
+ "end": 771.514,
+ "text": "just"
+ },
+ {
+ "id": 2310,
+ "start": 771.514,
+ "end": 772.364,
+ "text": "us."
+ },
+ {
+ "id": 2311,
+ "start": 772.364,
+ "end": 772.484,
+ "text": "The"
+ },
+ {
+ "id": 2312,
+ "start": 772.484,
+ "end": 772.594,
+ "text": "other"
+ },
+ {
+ "id": 2313,
+ "start": 772.594,
+ "end": 772.954,
+ "text": "technology"
+ },
+ {
+ "id": 2314,
+ "start": 772.954,
+ "end": 773.394,
+ "text": "companies"
+ },
+ {
+ "id": 2315,
+ "start": 773.394,
+ "end": 773.894,
+ "text": "are"
+ },
+ {
+ "id": 2316,
+ "start": 773.894,
+ "end": 774.204,
+ "text": "taking"
+ },
+ {
+ "id": 2317,
+ "start": 774.204,
+ "end": 774.604,
+ "text": "disruption"
+ },
+ {
+ "id": 2318,
+ "start": 774.604,
+ "end": 774.924,
+ "text": "actions"
+ },
+ {
+ "id": 2319,
+ "start": 774.924,
+ "end": 775.074,
+ "text": "as"
+ },
+ {
+ "id": 2320,
+ "start": 775.074,
+ "end": 775.694,
+ "text": "well."
+ },
+ {
+ "id": 2321,
+ "start": 775.694,
+ "end": 775.914,
+ "text": "We"
+ },
+ {
+ "id": 2322,
+ "start": 775.914,
+ "end": 776.044,
+ "text": "see"
+ },
+ {
+ "id": 2323,
+ "start": 776.044,
+ "end": 776.614,
+ "text": "government"
+ },
+ {
+ "id": 2324,
+ "start": 776.614,
+ "end": 777.144,
+ "text": "providing"
+ },
+ {
+ "id": 2325,
+ "start": 777.144,
+ "end": 777.284,
+ "text": "us"
+ },
+ {
+ "id": 2326,
+ "start": 777.284,
+ "end": 777.404,
+ "text": "with"
+ },
+ {
+ "id": 2327,
+ "start": 777.734,
+ "end": 777.934,
+ "text": "support."
+ },
+ {
+ "id": 2328,
+ "start": 778.184,
+ "end": 778.464,
+ "text": "As"
+ },
+ {
+ "id": 2329,
+ "start": 778.464,
+ "end": 778.604,
+ "text": "the"
+ },
+ {
+ "id": 2330,
+ "start": 778.604,
+ "end": 779.014,
+ "text": "community"
+ },
+ {
+ "id": 2331,
+ "start": 779.014,
+ "end": 779.294,
+ "text": "comes"
+ },
+ {
+ "id": 2332,
+ "start": 779.5390000000001,
+ "end": 779.764,
+ "text": "together,"
+ },
+ {
+ "id": 2333,
+ "start": 780.064,
+ "end": 780.234,
+ "text": "this"
+ },
+ {
+ "id": 2334,
+ "start": 780.234,
+ "end": 780.474,
+ "text": "isn’t"
+ },
+ {
+ "id": 2335,
+ "start": 780.474,
+ "end": 780.544,
+ "text": "a"
+ },
+ {
+ "id": 2336,
+ "start": 780.544,
+ "end": 780.974,
+ "text": "problem"
+ },
+ {
+ "id": 2337,
+ "start": 780.974,
+ "end": 781.114,
+ "text": "that"
+ },
+ {
+ "id": 2338,
+ "start": 781.114,
+ "end": 781.314,
+ "text": "any"
+ },
+ {
+ "id": 2339,
+ "start": 781.314,
+ "end": 781.624,
+ "text": "one"
+ },
+ {
+ "id": 2340,
+ "start": 781.624,
+ "end": 782.054,
+ "text": "company"
+ },
+ {
+ "id": 2341,
+ "start": 782.054,
+ "end": 782.194,
+ "text": "can"
+ },
+ {
+ "id": 2342,
+ "start": 782.444,
+ "end": 782.619,
+ "text": "tackle,"
+ },
+ {
+ "id": 2343,
+ "start": 782.834,
+ "end": 783.044,
+ "text": "but"
+ },
+ {
+ "id": 2344,
+ "start": 783.044,
+ "end": 783.154,
+ "text": "when"
+ },
+ {
+ "id": 2345,
+ "start": 783.154,
+ "end": 783.374,
+ "text": "all"
+ },
+ {
+ "id": 2346,
+ "start": 783.374,
+ "end": 783.434,
+ "text": "of"
+ },
+ {
+ "id": 2347,
+ "start": 783.434,
+ "end": 783.544,
+ "text": "us"
+ },
+ {
+ "id": 2348,
+ "start": 783.544,
+ "end": 783.704,
+ "text": "come"
+ },
+ {
+ "id": 2349,
+ "start": 783.704,
+ "end": 784.034,
+ "text": "together,"
+ },
+ {
+ "id": 2350,
+ "start": 784.034,
+ "end": 784.074,
+ "text": "I"
+ },
+ {
+ "id": 2351,
+ "start": 784.074,
+ "end": 784.244,
+ "text": "think"
+ },
+ {
+ "id": 2352,
+ "start": 784.244,
+ "end": 784.364,
+ "text": "we"
+ },
+ {
+ "id": 2353,
+ "start": 784.364,
+ "end": 784.614,
+ "text": "really"
+ },
+ {
+ "id": 2354,
+ "start": 784.614,
+ "end": 785.054,
+ "text": "do"
+ },
+ {
+ "id": 2355,
+ "start": 785.054,
+ "end": 785.734,
+ "text": "have"
+ },
+ {
+ "id": 2356,
+ "start": 785.734,
+ "end": 785.894,
+ "text": "a"
+ },
+ {
+ "id": 2357,
+ "start": 785.894,
+ "end": 786.494,
+ "text": "substantial"
+ },
+ {
+ "id": 2358,
+ "start": 786.494,
+ "end": 786.844,
+ "text": "uptick"
+ },
+ {
+ "id": 2359,
+ "start": 786.844,
+ "end": 786.954,
+ "text": "in"
+ },
+ {
+ "id": 2360,
+ "start": 786.954,
+ "end": 787.894,
+ "text": "capacity"
+ },
+ {
+ "id": 2361,
+ "start": 787.894,
+ "end": 788.014,
+ "text": "to"
+ },
+ {
+ "id": 2362,
+ "start": 788.014,
+ "end": 788.414,
+ "text": "disrupt"
+ },
+ {
+ "id": 2363,
+ "start": 788.414,
+ "end": 788.564,
+ "text": "this"
+ },
+ {
+ "id": 2364,
+ "start": 788.564,
+ "end": 788.804,
+ "text": "bad"
+ },
+ {
+ "id": 2365,
+ "start": 788.899,
+ "end": 789.069,
+ "text": "behavior"
+ },
+ {
+ "id": 2366,
+ "start": 789.234,
+ "end": 789.334,
+ "text": "and"
+ },
+ {
+ "id": 2367,
+ "start": 789.334,
+ "end": 789.534,
+ "text": "take"
+ },
+ {
+ "id": 2368,
+ "start": 789.534,
+ "end": 789.614,
+ "text": "it"
+ },
+ {
+ "id": 2369,
+ "start": 789.614,
+ "end": 790.194,
+ "text": "down."
+ },
+ {
+ "id": 2370,
+ "start": 790.194,
+ "end": 791.384,
+ "text": "And"
+ },
+ {
+ "id": 2371,
+ "start": 791.384,
+ "end": 791.904,
+ "text": "for"
+ },
+ {
+ "id": 2372,
+ "start": 791.904,
+ "end": 792.024,
+ "text": "the"
+ },
+ {
+ "id": 2373,
+ "start": 792.024,
+ "end": 795.044,
+ "text": "public,"
+ },
+ {
+ "id": 2374,
+ "start": 795.044,
+ "end": 795.334,
+ "text": "what"
+ },
+ {
+ "id": 2375,
+ "start": 795.334,
+ "end": 795.904,
+ "text": "measure,"
+ },
+ {
+ "id": 2376,
+ "start": 795.904,
+ "end": 796.104,
+ "text": "what"
+ },
+ {
+ "id": 2377,
+ "start": 796.104,
+ "end": 796.984,
+ "text": "standard"
+ },
+ {
+ "id": 2378,
+ "start": 796.984,
+ "end": 797.234,
+ "text": "should"
+ },
+ {
+ "id": 2379,
+ "start": 797.234,
+ "end": 797.394,
+ "text": "we"
+ },
+ {
+ "id": 2380,
+ "start": 797.394,
+ "end": 797.764,
+ "text": "have"
+ },
+ {
+ "id": 2381,
+ "start": 797.764,
+ "end": 798.224,
+ "text": "for"
+ },
+ {
+ "id": 2382,
+ "start": 798.224,
+ "end": 799.034,
+ "text": "you"
+ },
+ {
+ "id": 2383,
+ "start": 799.034,
+ "end": 799.194,
+ "text": "in"
+ },
+ {
+ "id": 2384,
+ "start": 799.194,
+ "end": 799.554,
+ "text": "terms"
+ },
+ {
+ "id": 2385,
+ "start": 799.554,
+ "end": 799.664,
+ "text": "of"
+ },
+ {
+ "id": 2386,
+ "start": 799.664,
+ "end": 799.834,
+ "text": "your"
+ },
+ {
+ "id": 2387,
+ "start": 799.834,
+ "end": 800.954,
+ "text": "success"
+ },
+ {
+ "id": 2388,
+ "start": 800.954,
+ "end": 801.334,
+ "text": "in"
+ },
+ {
+ "id": 2389,
+ "start": 801.334,
+ "end": 801.814,
+ "text": "protecting"
+ },
+ {
+ "id": 2390,
+ "start": 801.814,
+ "end": 801.974,
+ "text": "this"
+ },
+ {
+ "id": 2391,
+ "start": 801.974,
+ "end": 802.354,
+ "text": "upcoming"
+ },
+ {
+ "id": 2392,
+ "start": 802.354,
+ "end": 803.244,
+ "text": "election"
+ },
+ {
+ "id": 2393,
+ "start": 803.244,
+ "end": 803.344,
+ "text": "and"
+ },
+ {
+ "id": 2394,
+ "start": 803.344,
+ "end": 803.414,
+ "text": "the"
+ },
+ {
+ "id": 2395,
+ "start": 803.414,
+ "end": 803.894,
+ "text": "integrity"
+ },
+ {
+ "id": 2396,
+ "start": 803.894,
+ "end": 804.034,
+ "text": "of"
+ },
+ {
+ "id": 2397,
+ "start": 804.034,
+ "end": 804.944,
+ "text": "it?"
+ },
+ {
+ "id": 2398,
+ "start": 804.944,
+ "end": 805.384,
+ "text": "We"
+ },
+ {
+ "id": 2399,
+ "start": 805.384,
+ "end": 806.174,
+ "text": "have"
+ },
+ {
+ "id": 2400,
+ "start": 806.174,
+ "end": 806.394,
+ "text": "and"
+ },
+ {
+ "id": 2401,
+ "start": 806.394,
+ "end": 806.714,
+ "text": "I"
+ },
+ {
+ "id": 2402,
+ "start": 806.714,
+ "end": 807.184,
+ "text": "have"
+ },
+ {
+ "id": 2403,
+ "start": 807.184,
+ "end": 807.264,
+ "text": "a"
+ },
+ {
+ "id": 2404,
+ "start": 807.264,
+ "end": 808.004,
+ "text": "responsibility"
+ },
+ {
+ "id": 2405,
+ "start": 808.004,
+ "end": 808.114,
+ "text": "to"
+ },
+ {
+ "id": 2406,
+ "start": 808.114,
+ "end": 808.214,
+ "text": "the"
+ },
+ {
+ "id": 2407,
+ "start": 808.214,
+ "end": 808.524,
+ "text": "users"
+ },
+ {
+ "id": 2408,
+ "start": 808.524,
+ "end": 808.594,
+ "text": "on"
+ },
+ {
+ "id": 2409,
+ "start": 808.594,
+ "end": 808.674,
+ "text": "the"
+ },
+ {
+ "id": 2410,
+ "start": 808.674,
+ "end": 809.594,
+ "text": "platform"
+ },
+ {
+ "id": 2411,
+ "start": 809.594,
+ "end": 809.714,
+ "text": "to"
+ },
+ {
+ "id": 2412,
+ "start": 809.714,
+ "end": 809.904,
+ "text": "make"
+ },
+ {
+ "id": 2413,
+ "start": 809.904,
+ "end": 810.284,
+ "text": "sure"
+ },
+ {
+ "id": 2414,
+ "start": 810.284,
+ "end": 810.814,
+ "text": "that"
+ },
+ {
+ "id": 2415,
+ "start": 810.814,
+ "end": 811.134,
+ "text": "public"
+ },
+ {
+ "id": 2416,
+ "start": 811.134,
+ "end": 811.854,
+ "text": "debate"
+ },
+ {
+ "id": 2417,
+ "start": 811.854,
+ "end": 812.104,
+ "text": "can"
+ },
+ {
+ "id": 2418,
+ "start": 812.104,
+ "end": 812.324,
+ "text": "be"
+ },
+ {
+ "id": 2419,
+ "start": 812.419,
+ "end": 812.5889999999999,
+ "text": "open;"
+ },
+ {
+ "id": 2420,
+ "start": 812.734,
+ "end": 812.854,
+ "text": "it"
+ },
+ {
+ "id": 2421,
+ "start": 812.854,
+ "end": 813.054,
+ "text": "can"
+ },
+ {
+ "id": 2422,
+ "start": 813.054,
+ "end": 813.224,
+ "text": "be"
+ },
+ {
+ "id": 2423,
+ "start": 813.224,
+ "end": 814.134,
+ "text": "authentic."
+ },
+ {
+ "id": 2424,
+ "start": 814.134,
+ "end": 814.454,
+ "text": "That’s"
+ },
+ {
+ "id": 2425,
+ "start": 814.454,
+ "end": 814.644,
+ "text": "my"
+ },
+ {
+ "id": 2426,
+ "start": 814.644,
+ "end": 816.944,
+ "text": "goal."
+ },
+ {
+ "id": 2427,
+ "start": 816.944,
+ "end": 817.314,
+ "text": "What"
+ },
+ {
+ "id": 2428,
+ "start": 817.314,
+ "end": 817.444,
+ "text": "if"
+ },
+ {
+ "id": 2429,
+ "start": 817.444,
+ "end": 817.544,
+ "text": "it"
+ },
+ {
+ "id": 2430,
+ "start": 817.544,
+ "end": 817.844,
+ "text": "doesn’t"
+ },
+ {
+ "id": 2431,
+ "start": 817.844,
+ "end": 818.024,
+ "text": "go"
+ },
+ {
+ "id": 2432,
+ "start": 818.024,
+ "end": 818.674,
+ "text": "well?"
+ },
+ {
+ "id": 2433,
+ "start": 818.674,
+ "end": 818.954,
+ "text": "What"
+ },
+ {
+ "id": 2434,
+ "start": 818.954,
+ "end": 819.424,
+ "text": "if"
+ },
+ {
+ "id": 2435,
+ "start": 819.424,
+ "end": 819.664,
+ "text": "in"
+ },
+ {
+ "id": 2436,
+ "start": 819.664,
+ "end": 819.724,
+ "text": "a"
+ },
+ {
+ "id": 2437,
+ "start": 819.724,
+ "end": 820.994,
+ "text": "hypothetical,"
+ },
+ {
+ "id": 2438,
+ "start": 820.994,
+ "end": 821.204,
+ "text": "what"
+ },
+ {
+ "id": 2439,
+ "start": 821.204,
+ "end": 821.424,
+ "text": "if"
+ },
+ {
+ "id": 2440,
+ "start": 821.424,
+ "end": 821.744,
+ "text": "there"
+ },
+ {
+ "id": 2441,
+ "start": 821.744,
+ "end": 821.964,
+ "text": "are"
+ },
+ {
+ "id": 2442,
+ "start": 821.964,
+ "end": 822.224,
+ "text": "bad"
+ },
+ {
+ "id": 2443,
+ "start": 822.224,
+ "end": 822.734,
+ "text": "actors"
+ },
+ {
+ "id": 2444,
+ "start": 822.734,
+ "end": 823.094,
+ "text": "that"
+ },
+ {
+ "id": 2445,
+ "start": 823.094,
+ "end": 823.754,
+ "text": "interfere"
+ },
+ {
+ "id": 2446,
+ "start": 823.754,
+ "end": 823.844,
+ "text": "in"
+ },
+ {
+ "id": 2447,
+ "start": 823.844,
+ "end": 823.974,
+ "text": "the"
+ },
+ {
+ "id": 2448,
+ "start": 823.974,
+ "end": 824.344,
+ "text": "upcoming"
+ },
+ {
+ "id": 2449,
+ "start": 824.344,
+ "end": 825.644,
+ "text": "election"
+ },
+ {
+ "id": 2450,
+ "start": 825.644,
+ "end": 825.884,
+ "text": "on"
+ },
+ {
+ "id": 2451,
+ "start": 825.884,
+ "end": 826.564,
+ "text": "Facebook"
+ },
+ {
+ "id": 2452,
+ "start": 826.564,
+ "end": 826.854,
+ "text": "and"
+ },
+ {
+ "id": 2453,
+ "start": 826.854,
+ "end": 827.074,
+ "text": "other"
+ },
+ {
+ "id": 2454,
+ "start": 827.074,
+ "end": 827.684,
+ "text": "platforms"
+ },
+ {
+ "id": 2455,
+ "start": 827.824,
+ "end": 828.684,
+ "text": "potentially?"
+ },
+ {
+ "id": 2456,
+ "start": 828.574,
+ "end": 829.684,
+ "text": "What"
+ },
+ {
+ "id": 2457,
+ "start": 829.684,
+ "end": 829.844,
+ "text": "is"
+ },
+ {
+ "id": 2458,
+ "start": 829.844,
+ "end": 829.974,
+ "text": "the"
+ },
+ {
+ "id": 2459,
+ "start": 829.974,
+ "end": 830.594,
+ "text": "public"
+ },
+ {
+ "id": 2460,
+ "start": 830.594,
+ "end": 831.124,
+ "text": "supposed"
+ },
+ {
+ "id": 2461,
+ "start": 831.094,
+ "end": 831.5840000000001,
+ "text": "to"
+ },
+ {
+ "id": 2462,
+ "start": 831.594,
+ "end": 832.044,
+ "text": "do"
+ },
+ {
+ "id": 2463,
+ "start": 832.044,
+ "end": 832.154,
+ "text": "at"
+ },
+ {
+ "id": 2464,
+ "start": 832.154,
+ "end": 832.374,
+ "text": "that"
+ },
+ {
+ "id": 2465,
+ "start": 832.374,
+ "end": 832.694,
+ "text": "point?"
+ },
+ {
+ "id": 2466,
+ "start": 832.694,
+ "end": 832.824,
+ "text": "What"
+ },
+ {
+ "id": 2467,
+ "start": 832.824,
+ "end": 832.934,
+ "text": "is"
+ },
+ {
+ "id": 2468,
+ "start": 832.934,
+ "end": 833.024,
+ "text": "the"
+ },
+ {
+ "id": 2469,
+ "start": 833.024,
+ "end": 833.374,
+ "text": "public"
+ },
+ {
+ "id": 2470,
+ "start": 833.374,
+ "end": 833.754,
+ "text": "supposed"
+ },
+ {
+ "id": 2471,
+ "start": 833.754,
+ "end": 833.834,
+ "text": "to"
+ },
+ {
+ "id": 2472,
+ "start": 833.834,
+ "end": 834.374,
+ "text": "expect"
+ },
+ {
+ "id": 2473,
+ "start": 834.374,
+ "end": 834.454,
+ "text": "of"
+ },
+ {
+ "id": 2474,
+ "start": 834.6840000000001,
+ "end": 834.824,
+ "text": "Facebook?"
+ },
+ {
+ "id": 2475,
+ "start": 834.994,
+ "end": 835.194,
+ "text": "What’s"
+ },
+ {
+ "id": 2476,
+ "start": 835.194,
+ "end": 835.284,
+ "text": "the"
+ },
+ {
+ "id": 2477,
+ "start": 835.284,
+ "end": 836.374,
+ "text": "accountability"
+ },
+ {
+ "id": 2478,
+ "start": 836.374,
+ "end": 836.614,
+ "text": "if"
+ },
+ {
+ "id": 2479,
+ "start": 836.614,
+ "end": 836.874,
+ "text": "things"
+ },
+ {
+ "id": 2480,
+ "start": 836.874,
+ "end": 837.154,
+ "text": "don’t"
+ },
+ {
+ "id": 2481,
+ "start": 837.154,
+ "end": 837.364,
+ "text": "go"
+ },
+ {
+ "id": 2482,
+ "start": 837.364,
+ "end": 837.924,
+ "text": "well?"
+ },
+ {
+ "id": 2483,
+ "start": 837.924,
+ "end": 838.454,
+ "text": "We"
+ },
+ {
+ "id": 2484,
+ "start": 838.454,
+ "end": 838.744,
+ "text": "know"
+ },
+ {
+ "id": 2485,
+ "start": 838.744,
+ "end": 838.894,
+ "text": "that"
+ },
+ {
+ "id": 2486,
+ "start": 838.894,
+ "end": 839.054,
+ "text": "there"
+ },
+ {
+ "id": 2487,
+ "start": 839.054,
+ "end": 839.214,
+ "text": "are"
+ },
+ {
+ "id": 2488,
+ "start": 839.214,
+ "end": 839.504,
+ "text": "bad"
+ },
+ {
+ "id": 2489,
+ "start": 839.504,
+ "end": 840.224,
+ "text": "actors"
+ },
+ {
+ "id": 2490,
+ "start": 840.224,
+ "end": 840.494,
+ "text": "trying"
+ },
+ {
+ "id": 2491,
+ "start": 840.494,
+ "end": 840.574,
+ "text": "to"
+ },
+ {
+ "id": 2492,
+ "start": 840.574,
+ "end": 840.914,
+ "text": "target"
+ },
+ {
+ "id": 2493,
+ "start": 840.914,
+ "end": 841.224,
+ "text": "public"
+ },
+ {
+ "id": 2494,
+ "start": 841.224,
+ "end": 841.554,
+ "text": "debate"
+ },
+ {
+ "id": 2495,
+ "start": 841.554,
+ "end": 841.654,
+ "text": "on"
+ },
+ {
+ "id": 2496,
+ "start": 841.654,
+ "end": 841.944,
+ "text": "social"
+ },
+ {
+ "id": 2497,
+ "start": 841.944,
+ "end": 843.154,
+ "text": "media"
+ },
+ {
+ "id": 2498,
+ "start": 843.154,
+ "end": 844.004,
+ "text": "continually,"
+ },
+ {
+ "id": 2499,
+ "start": 844.004,
+ "end": 844.304,
+ "text": "right?"
+ },
+ {
+ "id": 2500,
+ "start": 844.304,
+ "end": 844.514,
+ "text": "Our"
+ },
+ {
+ "id": 2501,
+ "start": 844.514,
+ "end": 844.744,
+ "text": "teams"
+ },
+ {
+ "id": 2502,
+ "start": 844.744,
+ "end": 844.844,
+ "text": "would"
+ },
+ {
+ "id": 2503,
+ "start": 844.844,
+ "end": 845.064,
+ "text": "never"
+ },
+ {
+ "id": 2504,
+ "start": 845.064,
+ "end": 845.534,
+ "text": "suggest"
+ },
+ {
+ "id": 2505,
+ "start": 845.534,
+ "end": 845.724,
+ "text": "that"
+ },
+ {
+ "id": 2506,
+ "start": 846.2011428571428,
+ "end": 846.3911428571429,
+ "text": "you"
+ },
+ {
+ "id": 2507,
+ "start": 846.8682857142857,
+ "end": 847.0582857142857,
+ "text": "can—let"
+ },
+ {
+ "id": 2508,
+ "start": 847.5354285714285,
+ "end": 847.7254285714286,
+ "text": "me"
+ },
+ {
+ "id": 2509,
+ "start": 848.2025714285713,
+ "end": 848.3925714285714,
+ "text": "start"
+ },
+ {
+ "id": 2510,
+ "start": 848.8697142857142,
+ "end": 849.0597142857142,
+ "text": "that"
+ },
+ {
+ "id": 2511,
+ "start": 849.536857142857,
+ "end": 849.726857142857,
+ "text": "over—we"
+ },
+ {
+ "id": 2512,
+ "start": 850.204,
+ "end": 850.394,
+ "text": "know"
+ },
+ {
+ "id": 2513,
+ "start": 850.394,
+ "end": 850.504,
+ "text": "that"
+ },
+ {
+ "id": 2514,
+ "start": 850.504,
+ "end": 850.604,
+ "text": "there"
+ },
+ {
+ "id": 2515,
+ "start": 850.604,
+ "end": 850.674,
+ "text": "are"
+ },
+ {
+ "id": 2516,
+ "start": 850.674,
+ "end": 850.894,
+ "text": "bad"
+ },
+ {
+ "id": 2517,
+ "start": 850.894,
+ "end": 852.464,
+ "text": "actors."
+ },
+ {
+ "id": 2518,
+ "start": 852.464,
+ "end": 852.594,
+ "text": "We"
+ },
+ {
+ "id": 2519,
+ "start": 852.594,
+ "end": 852.754,
+ "text": "know"
+ },
+ {
+ "id": 2520,
+ "start": 852.754,
+ "end": 852.874,
+ "text": "that"
+ },
+ {
+ "id": 2521,
+ "start": 852.874,
+ "end": 852.984,
+ "text": "there"
+ },
+ {
+ "id": 2522,
+ "start": 852.984,
+ "end": 853.054,
+ "text": "are"
+ },
+ {
+ "id": 2523,
+ "start": 853.054,
+ "end": 853.284,
+ "text": "bad"
+ },
+ {
+ "id": 2524,
+ "start": 853.284,
+ "end": 853.574,
+ "text": "actors"
+ },
+ {
+ "id": 2525,
+ "start": 853.574,
+ "end": 854.244,
+ "text": "targeting"
+ },
+ {
+ "id": 2526,
+ "start": 854.244,
+ "end": 855.444,
+ "text": "debate,"
+ },
+ {
+ "id": 2527,
+ "start": 855.444,
+ "end": 856.204,
+ "text": "and"
+ },
+ {
+ "id": 2528,
+ "start": 856.204,
+ "end": 856.364,
+ "text": "I"
+ },
+ {
+ "id": 2529,
+ "start": 856.364,
+ "end": 856.684,
+ "text": "think"
+ },
+ {
+ "id": 2530,
+ "start": 856.684,
+ "end": 856.914,
+ "text": "our"
+ },
+ {
+ "id": 2531,
+ "start": 856.914,
+ "end": 857.194,
+ "text": "goal"
+ },
+ {
+ "id": 2532,
+ "start": 857.194,
+ "end": 857.784,
+ "text": "here"
+ },
+ {
+ "id": 2533,
+ "start": 857.784,
+ "end": 858.414,
+ "text": "is"
+ },
+ {
+ "id": 2534,
+ "start": 858.414,
+ "end": 858.844,
+ "text": "how"
+ },
+ {
+ "id": 2535,
+ "start": 858.844,
+ "end": 859.014,
+ "text": "do"
+ },
+ {
+ "id": 2536,
+ "start": 859.014,
+ "end": 859.594,
+ "text": "we"
+ },
+ {
+ "id": 2537,
+ "start": 859.594,
+ "end": 860.234,
+ "text": "identify"
+ },
+ {
+ "id": 2538,
+ "start": 860.234,
+ "end": 860.344,
+ "text": "the"
+ },
+ {
+ "id": 2539,
+ "start": 860.344,
+ "end": 860.674,
+ "text": "core"
+ },
+ {
+ "id": 2540,
+ "start": 860.8040000000001,
+ "end": 861.029,
+ "text": "behaviors"
+ },
+ {
+ "id": 2541,
+ "start": 861.264,
+ "end": 861.384,
+ "text": "that"
+ },
+ {
+ "id": 2542,
+ "start": 861.384,
+ "end": 861.504,
+ "text": "they"
+ },
+ {
+ "id": 2543,
+ "start": 861.504,
+ "end": 861.814,
+ "text": "rely"
+ },
+ {
+ "id": 2544,
+ "start": 861.814,
+ "end": 862.024,
+ "text": "on,"
+ },
+ {
+ "id": 2545,
+ "start": 862.024,
+ "end": 862.234,
+ "text": "for"
+ },
+ {
+ "id": 2546,
+ "start": 862.234,
+ "end": 863.194,
+ "text": "instance,"
+ },
+ {
+ "id": 2547,
+ "start": 863.194,
+ "end": 863.474,
+ "text": "using"
+ },
+ {
+ "id": 2548,
+ "start": 863.474,
+ "end": 863.664,
+ "text": "fake"
+ },
+ {
+ "id": 2549,
+ "start": 863.664,
+ "end": 865.034,
+ "text": "accounts,"
+ },
+ {
+ "id": 2550,
+ "start": 865.034,
+ "end": 865.594,
+ "text": "leveraging"
+ },
+ {
+ "id": 2551,
+ "start": 865.594,
+ "end": 866.884,
+ "text": "advertising,"
+ },
+ {
+ "id": 2552,
+ "start": 866.884,
+ "end": 867.334,
+ "text": "operating"
+ },
+ {
+ "id": 2553,
+ "start": 867.334,
+ "end": 867.404,
+ "text": "in"
+ },
+ {
+ "id": 2554,
+ "start": 867.404,
+ "end": 867.474,
+ "text": "the"
+ },
+ {
+ "id": 2555,
+ "start": 867.474,
+ "end": 867.944,
+ "text": "shadows"
+ },
+ {
+ "id": 2556,
+ "start": 867.944,
+ "end": 868.144,
+ "text": "without"
+ },
+ {
+ "id": 2557,
+ "start": 868.144,
+ "end": 868.854,
+ "text": "transparency"
+ },
+ {
+ "id": 2558,
+ "start": 868.854,
+ "end": 869.014,
+ "text": "and"
+ },
+ {
+ "id": 2559,
+ "start": 869.014,
+ "end": 869.264,
+ "text": "make"
+ },
+ {
+ "id": 2560,
+ "start": 869.264,
+ "end": 869.434,
+ "text": "those"
+ },
+ {
+ "id": 2561,
+ "start": 869.554,
+ "end": 869.7239999999999,
+ "text": "behaviors"
+ },
+ {
+ "id": 2562,
+ "start": 869.844,
+ "end": 870.014,
+ "text": "much"
+ },
+ {
+ "id": 2563,
+ "start": 870.1506666666668,
+ "end": 870.3706666666666,
+ "text": "more"
+ },
+ {
+ "id": 2564,
+ "start": 870.4573333333334,
+ "end": 870.7273333333333,
+ "text": "difficult."
+ },
+ {
+ "id": 2565,
+ "start": 870.764,
+ "end": 871.084,
+ "text": "But"
+ },
+ {
+ "id": 2566,
+ "start": 871.084,
+ "end": 871.324,
+ "text": "look"
+ },
+ {
+ "id": 2567,
+ "start": 871.324,
+ "end": 871.404,
+ "text": "at"
+ },
+ {
+ "id": 2568,
+ "start": 871.404,
+ "end": 871.514,
+ "text": "it"
+ },
+ {
+ "id": 2569,
+ "start": 871.514,
+ "end": 871.684,
+ "text": "from"
+ },
+ {
+ "id": 2570,
+ "start": 871.684,
+ "end": 871.834,
+ "text": "my"
+ },
+ {
+ "id": 2571,
+ "start": 871.834,
+ "end": 872.494,
+ "text": "perspective,"
+ },
+ {
+ "id": 2572,
+ "start": 872.494,
+ "end": 872.644,
+ "text": "or"
+ },
+ {
+ "id": 2573,
+ "start": 872.644,
+ "end": 872.834,
+ "text": "look"
+ },
+ {
+ "id": 2574,
+ "start": 872.834,
+ "end": 872.904,
+ "text": "at"
+ },
+ {
+ "id": 2575,
+ "start": 872.904,
+ "end": 872.984,
+ "text": "it"
+ },
+ {
+ "id": 2576,
+ "start": 872.984,
+ "end": 873.144,
+ "text": "from"
+ },
+ {
+ "id": 2577,
+ "start": 873.144,
+ "end": 873.224,
+ "text": "the"
+ },
+ {
+ "id": 2578,
+ "start": 873.224,
+ "end": 873.624,
+ "text": "public’s"
+ },
+ {
+ "id": 2579,
+ "start": 873.624,
+ "end": 874.134,
+ "text": "perspective"
+ },
+ {
+ "id": 2580,
+ "start": 874.134,
+ "end": 874.274,
+ "text": "for"
+ },
+ {
+ "id": 2581,
+ "start": 874.274,
+ "end": 874.334,
+ "text": "a"
+ },
+ {
+ "id": 2582,
+ "start": 874.334,
+ "end": 874.784,
+ "text": "second."
+ },
+ {
+ "id": 2583,
+ "start": 874.784,
+ "end": 874.964,
+ "text": "If"
+ },
+ {
+ "id": 2584,
+ "start": 874.964,
+ "end": 875.134,
+ "text": "this"
+ },
+ {
+ "id": 2585,
+ "start": 875.134,
+ "end": 875.514,
+ "text": "doesn’t"
+ },
+ {
+ "id": 2586,
+ "start": 875.514,
+ "end": 875.714,
+ "text": "go"
+ },
+ {
+ "id": 2587,
+ "start": 875.714,
+ "end": 876.174,
+ "text": "well,"
+ },
+ {
+ "id": 2588,
+ "start": 876.174,
+ "end": 877.044,
+ "text": "if"
+ },
+ {
+ "id": 2589,
+ "start": 877.044,
+ "end": 877.234,
+ "text": "there’s"
+ },
+ {
+ "id": 2590,
+ "start": 877.234,
+ "end": 877.314,
+ "text": "a"
+ },
+ {
+ "id": 2591,
+ "start": 877.314,
+ "end": 877.764,
+ "text": "problem"
+ },
+ {
+ "id": 2592,
+ "start": 877.764,
+ "end": 877.854,
+ "text": "in"
+ },
+ {
+ "id": 2593,
+ "start": 877.854,
+ "end": 877.924,
+ "text": "the"
+ },
+ {
+ "id": 2594,
+ "start": 877.924,
+ "end": 878.964,
+ "text": "midterms"
+ },
+ {
+ "id": 2595,
+ "start": 878.964,
+ "end": 879.194,
+ "text": "that"
+ },
+ {
+ "id": 2596,
+ "start": 879.194,
+ "end": 879.564,
+ "text": "happens"
+ },
+ {
+ "id": 2597,
+ "start": 879.564,
+ "end": 879.704,
+ "text": "on"
+ },
+ {
+ "id": 2598,
+ "start": 879.704,
+ "end": 881.164,
+ "text": "Facebook,"
+ },
+ {
+ "id": 2599,
+ "start": 881.164,
+ "end": 881.664,
+ "text": "how"
+ },
+ {
+ "id": 2600,
+ "start": 881.664,
+ "end": 881.944,
+ "text": "are"
+ },
+ {
+ "id": 2601,
+ "start": 881.944,
+ "end": 882.134,
+ "text": "we"
+ },
+ {
+ "id": 2602,
+ "start": 882.134,
+ "end": 882.604,
+ "text": "supposed"
+ },
+ {
+ "id": 2603,
+ "start": 882.604,
+ "end": 882.674,
+ "text": "to"
+ },
+ {
+ "id": 2604,
+ "start": 882.674,
+ "end": 882.984,
+ "text": "hold"
+ },
+ {
+ "id": 2605,
+ "start": 882.984,
+ "end": 883.474,
+ "text": "Facebook"
+ },
+ {
+ "id": 2606,
+ "start": 883.474,
+ "end": 884.764,
+ "text": "accountable"
+ },
+ {
+ "id": 2607,
+ "start": 884.764,
+ "end": 885.664,
+ "text": "if"
+ },
+ {
+ "id": 2608,
+ "start": 885.664,
+ "end": 885.844,
+ "text": "the"
+ },
+ {
+ "id": 2609,
+ "start": 885.844,
+ "end": 886.404,
+ "text": "platform"
+ },
+ {
+ "id": 2610,
+ "start": 886.404,
+ "end": 887.564,
+ "text": "again"
+ },
+ {
+ "id": 2611,
+ "start": 887.564,
+ "end": 888.284,
+ "text": "is"
+ },
+ {
+ "id": 2612,
+ "start": 888.284,
+ "end": 888.754,
+ "text": "gamed"
+ },
+ {
+ "id": 2613,
+ "start": 888.754,
+ "end": 888.924,
+ "text": "by"
+ },
+ {
+ "id": 2614,
+ "start": 888.924,
+ "end": 889.404,
+ "text": "malicious"
+ },
+ {
+ "id": 2615,
+ "start": 889.404,
+ "end": 890.564,
+ "text": "actors?"
+ },
+ {
+ "id": 2616,
+ "start": 890.564,
+ "end": 890.854,
+ "text": "What"
+ },
+ {
+ "id": 2617,
+ "start": 890.854,
+ "end": 891.144,
+ "text": "we’ve"
+ },
+ {
+ "id": 2618,
+ "start": 891.144,
+ "end": 891.654,
+ "text": "done"
+ },
+ {
+ "id": 2619,
+ "start": 891.654,
+ "end": 892.584,
+ "text": "consistently"
+ },
+ {
+ "id": 2620,
+ "start": 892.584,
+ "end": 892.844,
+ "text": "is"
+ },
+ {
+ "id": 2621,
+ "start": 892.844,
+ "end": 893.054,
+ "text": "we"
+ },
+ {
+ "id": 2622,
+ "start": 893.054,
+ "end": 893.584,
+ "text": "have"
+ },
+ {
+ "id": 2623,
+ "start": 893.584,
+ "end": 894.374,
+ "text": "identified"
+ },
+ {
+ "id": 2624,
+ "start": 894.374,
+ "end": 894.464,
+ "text": "the"
+ },
+ {
+ "id": 2625,
+ "start": 894.464,
+ "end": 894.694,
+ "text": "bad"
+ },
+ {
+ "id": 2626,
+ "start": 894.779,
+ "end": 894.974,
+ "text": "behavior."
+ },
+ {
+ "id": 2627,
+ "start": 895.094,
+ "end": 895.254,
+ "text": "We’ve"
+ },
+ {
+ "id": 2628,
+ "start": 895.254,
+ "end": 896.014,
+ "text": "investigated"
+ },
+ {
+ "id": 2629,
+ "start": 895.634,
+ "end": 896.094,
+ "text": "it"
+ },
+ {
+ "id": 2630,
+ "start": 896.014,
+ "end": 896.174,
+ "text": "as"
+ },
+ {
+ "id": 2631,
+ "start": 896.174,
+ "end": 896.494,
+ "text": "quickly"
+ },
+ {
+ "id": 2632,
+ "start": 896.494,
+ "end": 896.584,
+ "text": "as"
+ },
+ {
+ "id": 2633,
+ "start": 896.6473333333333,
+ "end": 896.784,
+ "text": "possible,"
+ },
+ {
+ "id": 2634,
+ "start": 896.8006666666666,
+ "end": 896.9839999999999,
+ "text": "and"
+ },
+ {
+ "id": 2635,
+ "start": 896.954,
+ "end": 897.184,
+ "text": "we’ve"
+ },
+ {
+ "id": 2636,
+ "start": 897.184,
+ "end": 897.664,
+ "text": "moved"
+ },
+ {
+ "id": 2637,
+ "start": 897.664,
+ "end": 897.784,
+ "text": "to"
+ },
+ {
+ "id": 2638,
+ "start": 897.784,
+ "end": 898.224,
+ "text": "eliminate"
+ },
+ {
+ "id": 2639,
+ "start": 898.224,
+ "end": 898.794,
+ "text": "it,"
+ },
+ {
+ "id": 2640,
+ "start": 898.794,
+ "end": 898.944,
+ "text": "and"
+ },
+ {
+ "id": 2641,
+ "start": 898.944,
+ "end": 899.074,
+ "text": "not"
+ },
+ {
+ "id": 2642,
+ "start": 899.074,
+ "end": 899.234,
+ "text": "just"
+ },
+ {
+ "id": 2643,
+ "start": 899.234,
+ "end": 899.444,
+ "text": "that"
+ },
+ {
+ "id": 2644,
+ "start": 899.444,
+ "end": 899.564,
+ "text": "but"
+ },
+ {
+ "id": 2645,
+ "start": 899.564,
+ "end": 899.634,
+ "text": "to"
+ },
+ {
+ "id": 2646,
+ "start": 899.844,
+ "end": 899.919,
+ "text": "publicize"
+ },
+ {
+ "id": 2647,
+ "start": 900.124,
+ "end": 900.204,
+ "text": "it,"
+ },
+ {
+ "id": 2648,
+ "start": 900.204,
+ "end": 900.284,
+ "text": "to"
+ },
+ {
+ "id": 2649,
+ "start": 900.284,
+ "end": 900.414,
+ "text": "make"
+ },
+ {
+ "id": 2650,
+ "start": 900.414,
+ "end": 900.534,
+ "text": "sure"
+ },
+ {
+ "id": 2651,
+ "start": 900.479,
+ "end": 900.694,
+ "text": "that"
+ },
+ {
+ "id": 2652,
+ "start": 900.544,
+ "end": 900.854,
+ "text": "people"
+ },
+ {
+ "id": 2653,
+ "start": 900.854,
+ "end": 901.514,
+ "text": "understand"
+ },
+ {
+ "id": 2654,
+ "start": 901.514,
+ "end": 901.644,
+ "text": "what"
+ },
+ {
+ "id": 2655,
+ "start": 901.644,
+ "end": 902.194,
+ "text": "happened."
+ },
+ {
+ "id": 2656,
+ "start": 902.194,
+ "end": 902.504,
+ "text": "One"
+ },
+ {
+ "id": 2657,
+ "start": 902.504,
+ "end": 902.564,
+ "text": "of"
+ },
+ {
+ "id": 2658,
+ "start": 902.564,
+ "end": 902.644,
+ "text": "the"
+ },
+ {
+ "id": 2659,
+ "start": 902.644,
+ "end": 905.704,
+ "text": "core"
+ },
+ {
+ "id": 2660,
+ "start": 905.704,
+ "end": 905.914,
+ "text": "things"
+ },
+ {
+ "id": 2661,
+ "start": 905.914,
+ "end": 906.024,
+ "text": "we"
+ },
+ {
+ "id": 2662,
+ "start": 906.024,
+ "end": 906.244,
+ "text": "all"
+ },
+ {
+ "id": 2663,
+ "start": 906.244,
+ "end": 906.414,
+ "text": "need"
+ },
+ {
+ "id": 2664,
+ "start": 906.414,
+ "end": 906.524,
+ "text": "to"
+ },
+ {
+ "id": 2665,
+ "start": 906.784,
+ "end": 906.909,
+ "text": "do"
+ },
+ {
+ "id": 2666,
+ "start": 907.154,
+ "end": 907.294,
+ "text": "is"
+ },
+ {
+ "id": 2667,
+ "start": 907.294,
+ "end": 907.394,
+ "text": "to"
+ },
+ {
+ "id": 2668,
+ "start": 907.394,
+ "end": 908.104,
+ "text": "understand"
+ },
+ {
+ "id": 2669,
+ "start": 908.104,
+ "end": 908.894,
+ "text": "better"
+ },
+ {
+ "id": 2670,
+ "start": 908.894,
+ "end": 909.264,
+ "text": "the"
+ },
+ {
+ "id": 2671,
+ "start": 909.254,
+ "end": 909.534,
+ "text": "bad"
+ },
+ {
+ "id": 2672,
+ "start": 909.619,
+ "end": 909.849,
+ "text": "behavior"
+ },
+ {
+ "id": 2673,
+ "start": 909.984,
+ "end": 910.164,
+ "text": "that’s"
+ },
+ {
+ "id": 2674,
+ "start": 910.164,
+ "end": 910.634,
+ "text": "occurring"
+ },
+ {
+ "id": 2675,
+ "start": 910.634,
+ "end": 910.764,
+ "text": "and"
+ },
+ {
+ "id": 2676,
+ "start": 910.764,
+ "end": 910.854,
+ "text": "the"
+ },
+ {
+ "id": 2677,
+ "start": 910.854,
+ "end": 911.274,
+ "text": "ways"
+ },
+ {
+ "id": 2678,
+ "start": 911.274,
+ "end": 911.374,
+ "text": "that"
+ },
+ {
+ "id": 2679,
+ "start": 911.374,
+ "end": 911.544,
+ "text": "these"
+ },
+ {
+ "id": 2680,
+ "start": 911.544,
+ "end": 911.844,
+ "text": "actors"
+ },
+ {
+ "id": 2681,
+ "start": 911.844,
+ "end": 911.914,
+ "text": "are"
+ },
+ {
+ "id": 2682,
+ "start": 911.914,
+ "end": 912.324,
+ "text": "trying"
+ },
+ {
+ "id": 2683,
+ "start": 912.324,
+ "end": 912.414,
+ "text": "to"
+ },
+ {
+ "id": 2684,
+ "start": 912.414,
+ "end": 912.834,
+ "text": "manipulate"
+ },
+ {
+ "id": 2685,
+ "start": 912.834,
+ "end": 913.104,
+ "text": "public"
+ },
+ {
+ "id": 2686,
+ "start": 913.104,
+ "end": 913.554,
+ "text": "debate"
+ },
+ {
+ "id": 2687,
+ "start": 913.554,
+ "end": 913.864,
+ "text": "so"
+ },
+ {
+ "id": 2688,
+ "start": 913.864,
+ "end": 913.954,
+ "text": "that"
+ },
+ {
+ "id": 2689,
+ "start": 913.954,
+ "end": 914.044,
+ "text": "we"
+ },
+ {
+ "id": 2690,
+ "start": 914.064,
+ "end": 914.184,
+ "text": "can"
+ },
+ {
+ "id": 2691,
+ "start": 914.174,
+ "end": 914.324,
+ "text": "make"
+ },
+ {
+ "id": 2692,
+ "start": 914.324,
+ "end": 914.394,
+ "text": "it"
+ },
+ {
+ "id": 2693,
+ "start": 914.394,
+ "end": 914.514,
+ "text": "more"
+ },
+ {
+ "id": 2694,
+ "start": 914.514,
+ "end": 914.874,
+ "text": "difficult"
+ },
+ {
+ "id": 2695,
+ "start": 914.874,
+ "end": 915.084,
+ "text": "going"
+ },
+ {
+ "id": 2696,
+ "start": 915.084,
+ "end": 916.894,
+ "text": "forward."
+ },
+ {
+ "id": 2697,
+ "start": 916.894,
+ "end": 917.014,
+ "text": "Do"
+ },
+ {
+ "id": 2698,
+ "start": 917.014,
+ "end": 917.084,
+ "text": "you"
+ },
+ {
+ "id": 2699,
+ "start": 917.084,
+ "end": 917.334,
+ "text": "think"
+ },
+ {
+ "id": 2700,
+ "start": 917.334,
+ "end": 917.474,
+ "text": "that"
+ },
+ {
+ "id": 2701,
+ "start": 917.474,
+ "end": 917.754,
+ "text": "answered"
+ },
+ {
+ "id": 2702,
+ "start": 917.754,
+ "end": 917.844,
+ "text": "my"
+ },
+ {
+ "id": 2703,
+ "start": 917.844,
+ "end": 918.774,
+ "text": "question?"
+ },
+ {
+ "id": 2704,
+ "start": 918.774,
+ "end": 918.884,
+ "text": "I"
+ },
+ {
+ "id": 2705,
+ "start": 918.884,
+ "end": 919.064,
+ "text": "mean,"
+ },
+ {
+ "id": 2706,
+ "start": 919.064,
+ "end": 919.264,
+ "text": "I’m"
+ },
+ {
+ "id": 2707,
+ "start": 919.6289999999998,
+ "end": 920.1590000000001,
+ "text": "serious."
+ },
+ {
+ "id": 2708,
+ "start": 920.194,
+ "end": 921.054,
+ "text": "Honestly,"
+ },
+ {
+ "id": 2709,
+ "start": 921.054,
+ "end": 921.534,
+ "text": "this"
+ },
+ {
+ "id": 2710,
+ "start": 921.534,
+ "end": 921.654,
+ "text": "is"
+ },
+ {
+ "id": 2711,
+ "start": 921.654,
+ "end": 921.734,
+ "text": "a"
+ },
+ {
+ "id": 2712,
+ "start": 921.734,
+ "end": 921.984,
+ "text": "really"
+ },
+ {
+ "id": 2713,
+ "start": 921.984,
+ "end": 922.384,
+ "text": "important"
+ },
+ {
+ "id": 2714,
+ "start": 922.384,
+ "end": 923.034,
+ "text": "question"
+ },
+ {
+ "id": 2715,
+ "start": 923.034,
+ "end": 923.224,
+ "text": "in"
+ },
+ {
+ "id": 2716,
+ "start": 923.224,
+ "end": 923.604,
+ "text": "terms"
+ },
+ {
+ "id": 2717,
+ "start": 923.604,
+ "end": 924.974,
+ "text": "of"
+ },
+ {
+ "id": 2718,
+ "start": 924.974,
+ "end": 925.304,
+ "text": "if"
+ },
+ {
+ "id": 2719,
+ "start": 925.304,
+ "end": 925.604,
+ "text": "things"
+ },
+ {
+ "id": 2720,
+ "start": 925.604,
+ "end": 925.884,
+ "text": "don’t"
+ },
+ {
+ "id": 2721,
+ "start": 925.884,
+ "end": 926.104,
+ "text": "go"
+ },
+ {
+ "id": 2722,
+ "start": 926.104,
+ "end": 926.554,
+ "text": "well,"
+ },
+ {
+ "id": 2723,
+ "start": 926.554,
+ "end": 926.854,
+ "text": "and"
+ },
+ {
+ "id": 2724,
+ "start": 926.854,
+ "end": 926.964,
+ "text": "I"
+ },
+ {
+ "id": 2725,
+ "start": 926.964,
+ "end": 927.344,
+ "text": "certainly"
+ },
+ {
+ "id": 2726,
+ "start": 927.344,
+ "end": 927.594,
+ "text": "hope"
+ },
+ {
+ "id": 2727,
+ "start": 927.594,
+ "end": 927.744,
+ "text": "that"
+ },
+ {
+ "id": 2728,
+ "start": 927.744,
+ "end": 927.884,
+ "text": "they"
+ },
+ {
+ "id": 2729,
+ "start": 927.884,
+ "end": 928.864,
+ "text": "do,"
+ },
+ {
+ "id": 2730,
+ "start": 928.864,
+ "end": 929.274,
+ "text": "what"
+ },
+ {
+ "id": 2731,
+ "start": 929.274,
+ "end": 930.074,
+ "text": "recourse"
+ },
+ {
+ "id": 2732,
+ "start": 930.074,
+ "end": 930.394,
+ "text": "does"
+ },
+ {
+ "id": 2733,
+ "start": 930.394,
+ "end": 930.504,
+ "text": "the"
+ },
+ {
+ "id": 2734,
+ "start": 930.504,
+ "end": 930.904,
+ "text": "public"
+ },
+ {
+ "id": 2735,
+ "start": 930.904,
+ "end": 931.494,
+ "text": "have"
+ },
+ {
+ "id": 2736,
+ "start": 931.494,
+ "end": 931.854,
+ "text": "for"
+ },
+ {
+ "id": 2737,
+ "start": 931.854,
+ "end": 932.074,
+ "text": "what"
+ },
+ {
+ "id": 2738,
+ "start": 932.074,
+ "end": 932.184,
+ "text": "is"
+ },
+ {
+ "id": 2739,
+ "start": 932.184,
+ "end": 932.864,
+ "text": "essentially"
+ },
+ {
+ "id": 2740,
+ "start": 932.864,
+ "end": 933.054,
+ "text": "kind"
+ },
+ {
+ "id": 2741,
+ "start": 933.054,
+ "end": 933.154,
+ "text": "of"
+ },
+ {
+ "id": 2742,
+ "start": 933.154,
+ "end": 933.244,
+ "text": "an"
+ },
+ {
+ "id": 2743,
+ "start": 933.244,
+ "end": 933.804,
+ "text": "information"
+ },
+ {
+ "id": 2744,
+ "start": 933.804,
+ "end": 934.374,
+ "text": "utility"
+ },
+ {
+ "id": 2745,
+ "start": 934.374,
+ "end": 934.564,
+ "text": "for"
+ },
+ {
+ "id": 2746,
+ "start": 934.564,
+ "end": 934.884,
+ "text": "so"
+ },
+ {
+ "id": 2747,
+ "start": 934.884,
+ "end": 935.664,
+ "text": "many"
+ },
+ {
+ "id": 2748,
+ "start": 935.664,
+ "end": 936.384,
+ "text": "voters"
+ },
+ {
+ "id": 2749,
+ "start": 936.384,
+ "end": 936.564,
+ "text": "in"
+ },
+ {
+ "id": 2750,
+ "start": 936.564,
+ "end": 936.714,
+ "text": "this"
+ },
+ {
+ "id": 2751,
+ "start": 936.714,
+ "end": 937.374,
+ "text": "electorate?"
+ },
+ {
+ "id": 2752,
+ "start": 937.374,
+ "end": 937.574,
+ "text": "What"
+ },
+ {
+ "id": 2753,
+ "start": 937.574,
+ "end": 937.944,
+ "text": "are"
+ },
+ {
+ "id": 2754,
+ "start": 937.944,
+ "end": 938.074,
+ "text": "we"
+ },
+ {
+ "id": 2755,
+ "start": 938.074,
+ "end": 938.564,
+ "text": "supposed"
+ },
+ {
+ "id": 2756,
+ "start": 938.564,
+ "end": 938.644,
+ "text": "to"
+ },
+ {
+ "id": 2757,
+ "start": 938.644,
+ "end": 939.014,
+ "text": "think?"
+ },
+ {
+ "id": 2758,
+ "start": 939.014,
+ "end": 939.144,
+ "text": "What"
+ },
+ {
+ "id": 2759,
+ "start": 939.144,
+ "end": 939.204,
+ "text": "are"
+ },
+ {
+ "id": 2760,
+ "start": 939.204,
+ "end": 939.294,
+ "text": "we"
+ },
+ {
+ "id": 2761,
+ "start": 939.294,
+ "end": 939.574,
+ "text": "supposed"
+ },
+ {
+ "id": 2762,
+ "start": 939.574,
+ "end": 939.644,
+ "text": "to"
+ },
+ {
+ "id": 2763,
+ "start": 941.4889999999996,
+ "end": 941.6990000000005,
+ "text": "do?"
+ },
+ {
+ "id": 2764,
+ "start": 943.404,
+ "end": 943.754,
+ "text": "Public"
+ },
+ {
+ "id": 2765,
+ "start": 943.754,
+ "end": 944.134,
+ "text": "debate"
+ },
+ {
+ "id": 2766,
+ "start": 944.134,
+ "end": 944.264,
+ "text": "is"
+ },
+ {
+ "id": 2767,
+ "start": 944.264,
+ "end": 944.524,
+ "text": "really"
+ },
+ {
+ "id": 2768,
+ "start": 944.524,
+ "end": 945.774,
+ "text": "essential,"
+ },
+ {
+ "id": 2769,
+ "start": 945.774,
+ "end": 946.144,
+ "text": "and"
+ },
+ {
+ "id": 2770,
+ "start": 946.144,
+ "end": 946.244,
+ "text": "I"
+ },
+ {
+ "id": 2771,
+ "start": 946.244,
+ "end": 946.464,
+ "text": "think"
+ },
+ {
+ "id": 2772,
+ "start": 946.464,
+ "end": 946.544,
+ "text": "the"
+ },
+ {
+ "id": 2773,
+ "start": 946.544,
+ "end": 946.764,
+ "text": "most"
+ },
+ {
+ "id": 2774,
+ "start": 946.764,
+ "end": 947.194,
+ "text": "important"
+ },
+ {
+ "id": 2775,
+ "start": 947.194,
+ "end": 947.414,
+ "text": "thing"
+ },
+ {
+ "id": 2776,
+ "start": 947.414,
+ "end": 947.884,
+ "text": "here"
+ },
+ {
+ "id": 2777,
+ "start": 947.884,
+ "end": 948.054,
+ "text": "is"
+ },
+ {
+ "id": 2778,
+ "start": 948.054,
+ "end": 948.164,
+ "text": "to"
+ },
+ {
+ "id": 2779,
+ "start": 948.164,
+ "end": 948.464,
+ "text": "make"
+ },
+ {
+ "id": 2780,
+ "start": 948.464,
+ "end": 949.104,
+ "text": "sure"
+ },
+ {
+ "id": 2781,
+ "start": 949.104,
+ "end": 949.334,
+ "text": "that"
+ },
+ {
+ "id": 2782,
+ "start": 949.334,
+ "end": 949.454,
+ "text": "it"
+ },
+ {
+ "id": 2783,
+ "start": 949.454,
+ "end": 949.694,
+ "text": "does"
+ },
+ {
+ "id": 2784,
+ "start": 949.694,
+ "end": 949.884,
+ "text": "go"
+ },
+ {
+ "id": 2785,
+ "start": 949.884,
+ "end": 950.404,
+ "text": "well,"
+ },
+ {
+ "id": 2786,
+ "start": 950.404,
+ "end": 950.504,
+ "text": "and"
+ },
+ {
+ "id": 2787,
+ "start": 950.504,
+ "end": 950.654,
+ "text": "that’s"
+ },
+ {
+ "id": 2788,
+ "start": 950.579,
+ "end": 950.7239999999999,
+ "text": "what"
+ },
+ {
+ "id": 2789,
+ "start": 950.654,
+ "end": 950.794,
+ "text": "we’re"
+ },
+ {
+ "id": 2790,
+ "start": 950.794,
+ "end": 951.234,
+ "text": "focused"
+ },
+ {
+ "id": 2791,
+ "start": 951.234,
+ "end": 951.524,
+ "text": "on."
+ },
+ {
+ "id": 2792,
+ "start": 951.5590000000001,
+ "end": 951.814,
+ "text": "What"
+ },
+ {
+ "id": 2793,
+ "start": 951.884,
+ "end": 952.104,
+ "text": "we’re"
+ },
+ {
+ "id": 2794,
+ "start": 952.104,
+ "end": 952.454,
+ "text": "focused"
+ },
+ {
+ "id": 2795,
+ "start": 952.454,
+ "end": 952.574,
+ "text": "on"
+ },
+ {
+ "id": 2796,
+ "start": 952.574,
+ "end": 952.664,
+ "text": "is"
+ },
+ {
+ "id": 2797,
+ "start": 952.664,
+ "end": 952.794,
+ "text": "how"
+ },
+ {
+ "id": 2798,
+ "start": 952.794,
+ "end": 952.854,
+ "text": "do"
+ },
+ {
+ "id": 2799,
+ "start": 952.854,
+ "end": 952.954,
+ "text": "we"
+ },
+ {
+ "id": 2800,
+ "start": 952.954,
+ "end": 953.094,
+ "text": "have"
+ },
+ {
+ "id": 2801,
+ "start": 953.094,
+ "end": 953.204,
+ "text": "the"
+ },
+ {
+ "id": 2802,
+ "start": 953.6890000000001,
+ "end": 953.8389999999999,
+ "text": "resources,"
+ },
+ {
+ "id": 2803,
+ "start": 954.284,
+ "end": 954.474,
+ "text": "how"
+ },
+ {
+ "id": 2804,
+ "start": 954.474,
+ "end": 954.544,
+ "text": "do"
+ },
+ {
+ "id": 2805,
+ "start": 954.544,
+ "end": 954.624,
+ "text": "we"
+ },
+ {
+ "id": 2806,
+ "start": 954.624,
+ "end": 954.754,
+ "text": "have"
+ },
+ {
+ "id": 2807,
+ "start": 954.754,
+ "end": 954.874,
+ "text": "the"
+ },
+ {
+ "id": 2808,
+ "start": 954.874,
+ "end": 955.844,
+ "text": "teams,"
+ },
+ {
+ "id": 2809,
+ "start": 955.844,
+ "end": 955.964,
+ "text": "and"
+ },
+ {
+ "id": 2810,
+ "start": 955.964,
+ "end": 956.034,
+ "text": "how"
+ },
+ {
+ "id": 2811,
+ "start": 956.034,
+ "end": 956.094,
+ "text": "do"
+ },
+ {
+ "id": 2812,
+ "start": 956.094,
+ "end": 956.154,
+ "text": "we"
+ },
+ {
+ "id": 2813,
+ "start": 956.154,
+ "end": 956.244,
+ "text": "have"
+ },
+ {
+ "id": 2814,
+ "start": 956.244,
+ "end": 956.334,
+ "text": "the"
+ },
+ {
+ "id": 2815,
+ "start": 956.334,
+ "end": 956.854,
+ "text": "capability"
+ },
+ {
+ "id": 2816,
+ "start": 956.854,
+ "end": 956.924,
+ "text": "to"
+ },
+ {
+ "id": 2817,
+ "start": 956.924,
+ "end": 957.084,
+ "text": "put"
+ },
+ {
+ "id": 2818,
+ "start": 957.084,
+ "end": 957.224,
+ "text": "this"
+ },
+ {
+ "id": 2819,
+ "start": 957.8240000000001,
+ "end": 958.3240000000001,
+ "text": "together."
+ },
+ {
+ "id": 2820,
+ "start": 958.564,
+ "end": 959.424,
+ "text": "But"
+ },
+ {
+ "id": 2821,
+ "start": 959.424,
+ "end": 959.684,
+ "text": "this"
+ },
+ {
+ "id": 2822,
+ "start": 959.684,
+ "end": 959.794,
+ "text": "is"
+ },
+ {
+ "id": 2823,
+ "start": 959.794,
+ "end": 959.874,
+ "text": "an"
+ },
+ {
+ "id": 2824,
+ "start": 959.874,
+ "end": 960.204,
+ "text": "effort"
+ },
+ {
+ "id": 2825,
+ "start": 960.204,
+ "end": 960.304,
+ "text": "that"
+ },
+ {
+ "id": 2826,
+ "start": 960.304,
+ "end": 960.394,
+ "text": "we"
+ },
+ {
+ "id": 2827,
+ "start": 960.394,
+ "end": 960.564,
+ "text": "need"
+ },
+ {
+ "id": 2828,
+ "start": 960.564,
+ "end": 960.924,
+ "text": "many"
+ },
+ {
+ "id": 2829,
+ "start": 961.0290000000001,
+ "end": 961.2539999999999,
+ "text": "organizations"
+ },
+ {
+ "id": 2830,
+ "start": 961.494,
+ "end": 961.584,
+ "text": "to"
+ },
+ {
+ "id": 2831,
+ "start": 961.584,
+ "end": 961.724,
+ "text": "work"
+ },
+ {
+ "id": 2832,
+ "start": 961.724,
+ "end": 962.034,
+ "text": "together"
+ },
+ {
+ "id": 2833,
+ "start": 962.034,
+ "end": 962.554,
+ "text": "on."
+ },
+ {
+ "id": 2834,
+ "start": 962.554,
+ "end": 962.644,
+ "text": "I"
+ },
+ {
+ "id": 2835,
+ "start": 962.644,
+ "end": 962.874,
+ "text": "think"
+ },
+ {
+ "id": 2836,
+ "start": 962.874,
+ "end": 963.314,
+ "text": "Facebook"
+ },
+ {
+ "id": 2837,
+ "start": 963.1655000000001,
+ "end": 963.4105,
+ "text": "has"
+ },
+ {
+ "id": 2838,
+ "start": 963.457,
+ "end": 963.507,
+ "text": "a"
+ },
+ {
+ "id": 2839,
+ "start": 963.507,
+ "end": 963.847,
+ "text": "critical"
+ },
+ {
+ "id": 2840,
+ "start": 963.847,
+ "end": 964.087,
+ "text": "piece"
+ },
+ {
+ "id": 2841,
+ "start": 964.087,
+ "end": 964.167,
+ "text": "of"
+ },
+ {
+ "id": 2842,
+ "start": 964.167,
+ "end": 964.897,
+ "text": "this,"
+ },
+ {
+ "id": 2843,
+ "start": 964.897,
+ "end": 965.167,
+ "text": "just"
+ },
+ {
+ "id": 2844,
+ "start": 965.167,
+ "end": 965.307,
+ "text": "like"
+ },
+ {
+ "id": 2845,
+ "start": 965.307,
+ "end": 965.377,
+ "text": "the"
+ },
+ {
+ "id": 2846,
+ "start": 965.377,
+ "end": 965.477,
+ "text": "other"
+ },
+ {
+ "id": 2847,
+ "start": 965.477,
+ "end": 965.897,
+ "text": "technology"
+ },
+ {
+ "id": 2848,
+ "start": 965.897,
+ "end": 966.267,
+ "text": "companies"
+ },
+ {
+ "id": 2849,
+ "start": 966.292,
+ "end": 966.512,
+ "text": "do;"
+ },
+ {
+ "id": 2850,
+ "start": 966.687,
+ "end": 966.757,
+ "text": "I"
+ },
+ {
+ "id": 2851,
+ "start": 966.757,
+ "end": 966.957,
+ "text": "think"
+ },
+ {
+ "id": 2852,
+ "start": 966.957,
+ "end": 967.357,
+ "text": "government"
+ },
+ {
+ "id": 2853,
+ "start": 967.357,
+ "end": 967.487,
+ "text": "has"
+ },
+ {
+ "id": 2854,
+ "start": 967.487,
+ "end": 967.537,
+ "text": "a"
+ },
+ {
+ "id": 2855,
+ "start": 967.537,
+ "end": 967.827,
+ "text": "critical"
+ },
+ {
+ "id": 2856,
+ "start": 967.827,
+ "end": 968.067,
+ "text": "piece"
+ },
+ {
+ "id": 2857,
+ "start": 968.067,
+ "end": 968.137,
+ "text": "of"
+ },
+ {
+ "id": 2858,
+ "start": 968.137,
+ "end": 968.867,
+ "text": "this."
+ },
+ {
+ "id": 2859,
+ "start": 968.867,
+ "end": 969.267,
+ "text": "The"
+ },
+ {
+ "id": 2860,
+ "start": 969.267,
+ "end": 969.917,
+ "text": "public"
+ },
+ {
+ "id": 2861,
+ "start": 969.917,
+ "end": 970.087,
+ "text": "has"
+ },
+ {
+ "id": 2862,
+ "start": 970.087,
+ "end": 970.137,
+ "text": "a"
+ },
+ {
+ "id": 2863,
+ "start": 970.137,
+ "end": 970.517,
+ "text": "component"
+ },
+ {
+ "id": 2864,
+ "start": 970.517,
+ "end": 970.577,
+ "text": "of"
+ },
+ {
+ "id": 2865,
+ "start": 970.577,
+ "end": 970.747,
+ "text": "this,"
+ },
+ {
+ "id": 2866,
+ "start": 970.747,
+ "end": 970.917,
+ "text": "sort"
+ },
+ {
+ "id": 2867,
+ "start": 970.917,
+ "end": 970.977,
+ "text": "of"
+ },
+ {
+ "id": 2868,
+ "start": 971.2669999999999,
+ "end": 971.362,
+ "text": "understanding"
+ },
+ {
+ "id": 2869,
+ "start": 971.617,
+ "end": 971.747,
+ "text": "what’s"
+ },
+ {
+ "id": 2870,
+ "start": 971.747,
+ "end": 972.657,
+ "text": "happening"
+ },
+ {
+ "id": 2871,
+ "start": 972.657,
+ "end": 972.827,
+ "text": "in"
+ },
+ {
+ "id": 2872,
+ "start": 972.827,
+ "end": 972.957,
+ "text": "this"
+ },
+ {
+ "id": 2873,
+ "start": 973.057,
+ "end": 973.3570000000001,
+ "text": "space."
+ },
+ {
+ "id": 2874,
+ "start": 973.287,
+ "end": 973.757,
+ "text": "Media"
+ },
+ {
+ "id": 2875,
+ "start": 973.757,
+ "end": 973.887,
+ "text": "has"
+ },
+ {
+ "id": 2876,
+ "start": 973.887,
+ "end": 973.947,
+ "text": "a"
+ },
+ {
+ "id": 2877,
+ "start": 973.947,
+ "end": 974.167,
+ "text": "piece"
+ },
+ {
+ "id": 2878,
+ "start": 974.167,
+ "end": 974.257,
+ "text": "of"
+ },
+ {
+ "id": 2879,
+ "start": 974.257,
+ "end": 974.467,
+ "text": "this."
+ },
+ {
+ "id": 2880,
+ "start": 974.467,
+ "end": 974.807,
+ "text": "All"
+ },
+ {
+ "id": 2881,
+ "start": 974.807,
+ "end": 974.867,
+ "text": "of"
+ },
+ {
+ "id": 2882,
+ "start": 974.867,
+ "end": 974.937,
+ "text": "us"
+ },
+ {
+ "id": 2883,
+ "start": 974.937,
+ "end": 975.067,
+ "text": "have"
+ },
+ {
+ "id": 2884,
+ "start": 975.067,
+ "end": 975.147,
+ "text": "to"
+ },
+ {
+ "id": 2885,
+ "start": 975.147,
+ "end": 975.327,
+ "text": "work"
+ },
+ {
+ "id": 2886,
+ "start": 975.327,
+ "end": 975.687,
+ "text": "together"
+ },
+ {
+ "id": 2887,
+ "start": 975.687,
+ "end": 975.767,
+ "text": "to"
+ },
+ {
+ "id": 2888,
+ "start": 975.767,
+ "end": 975.927,
+ "text": "make"
+ },
+ {
+ "id": 2889,
+ "start": 975.927,
+ "end": 976.077,
+ "text": "sure"
+ },
+ {
+ "id": 2890,
+ "start": 976.077,
+ "end": 976.147,
+ "text": "it"
+ },
+ {
+ "id": 2891,
+ "start": 976.147,
+ "end": 976.347,
+ "text": "goes"
+ },
+ {
+ "id": 2892,
+ "start": 976.347,
+ "end": 977.047,
+ "text": "well."
+ },
+ {
+ "id": 2893,
+ "start": 977.047,
+ "end": 977.267,
+ "text": "How"
+ },
+ {
+ "id": 2894,
+ "start": 977.267,
+ "end": 977.347,
+ "text": "are"
+ },
+ {
+ "id": 2895,
+ "start": 977.347,
+ "end": 977.517,
+ "text": "you"
+ },
+ {
+ "id": 2896,
+ "start": 977.517,
+ "end": 978.147,
+ "text": "coordinating"
+ },
+ {
+ "id": 2897,
+ "start": 978.147,
+ "end": 978.297,
+ "text": "with"
+ },
+ {
+ "id": 2898,
+ "start": 978.297,
+ "end": 981.057,
+ "text": "government?"
+ },
+ {
+ "id": 2899,
+ "start": 981.057,
+ "end": 981.197,
+ "text": "Is"
+ },
+ {
+ "id": 2900,
+ "start": 981.197,
+ "end": 981.367,
+ "text": "there"
+ },
+ {
+ "id": 2901,
+ "start": 981.367,
+ "end": 981.427,
+ "text": "a"
+ },
+ {
+ "id": 2902,
+ "start": 981.427,
+ "end": 982.037,
+ "text": "coordinated"
+ },
+ {
+ "id": 2903,
+ "start": 982.037,
+ "end": 982.357,
+ "text": "effort"
+ },
+ {
+ "id": 2904,
+ "start": 982.357,
+ "end": 982.567,
+ "text": "right"
+ },
+ {
+ "id": 2905,
+ "start": 982.567,
+ "end": 982.807,
+ "text": "now"
+ },
+ {
+ "id": 2906,
+ "start": 982.807,
+ "end": 982.917,
+ "text": "in"
+ },
+ {
+ "id": 2907,
+ "start": 982.917,
+ "end": 983.227,
+ "text": "terms"
+ },
+ {
+ "id": 2908,
+ "start": 983.227,
+ "end": 983.317,
+ "text": "of"
+ },
+ {
+ "id": 2909,
+ "start": 983.317,
+ "end": 983.677,
+ "text": "election"
+ },
+ {
+ "id": 2910,
+ "start": 983.677,
+ "end": 985.227,
+ "text": "integrity?"
+ },
+ {
+ "id": 2911,
+ "start": 985.227,
+ "end": 985.397,
+ "text": "When"
+ },
+ {
+ "id": 2912,
+ "start": 985.397,
+ "end": 985.537,
+ "text": "we’re"
+ },
+ {
+ "id": 2913,
+ "start": 985.537,
+ "end": 985.727,
+ "text": "getting"
+ },
+ {
+ "id": 2914,
+ "start": 985.727,
+ "end": 985.967,
+ "text": "ready"
+ },
+ {
+ "id": 2915,
+ "start": 985.967,
+ "end": 986.097,
+ "text": "to,"
+ },
+ {
+ "id": 2916,
+ "start": 986.097,
+ "end": 986.217,
+ "text": "for"
+ },
+ {
+ "id": 2917,
+ "start": 986.217,
+ "end": 986.457,
+ "text": "instance,"
+ },
+ {
+ "id": 2918,
+ "start": 986.457,
+ "end": 986.627,
+ "text": "take"
+ },
+ {
+ "id": 2919,
+ "start": 986.627,
+ "end": 986.667,
+ "text": "a"
+ },
+ {
+ "id": 2920,
+ "start": 986.667,
+ "end": 987.587,
+ "text": "disruption,"
+ },
+ {
+ "id": 2921,
+ "start": 987.587,
+ "end": 987.747,
+ "text": "we"
+ },
+ {
+ "id": 2922,
+ "start": 987.747,
+ "end": 988.007,
+ "text": "work"
+ },
+ {
+ "id": 2923,
+ "start": 988.007,
+ "end": 988.117,
+ "text": "with"
+ },
+ {
+ "id": 2924,
+ "start": 988.117,
+ "end": 988.457,
+ "text": "government"
+ },
+ {
+ "id": 2925,
+ "start": 988.457,
+ "end": 988.517,
+ "text": "to"
+ },
+ {
+ "id": 2926,
+ "start": 988.517,
+ "end": 988.667,
+ "text": "make"
+ },
+ {
+ "id": 2927,
+ "start": 988.667,
+ "end": 988.877,
+ "text": "sure"
+ },
+ {
+ "id": 2928,
+ "start": 988.877,
+ "end": 989.017,
+ "text": "they"
+ },
+ {
+ "id": 2929,
+ "start": 989.017,
+ "end": 989.387,
+ "text": "understand"
+ },
+ {
+ "id": 2930,
+ "start": 989.387,
+ "end": 989.537,
+ "text": "what’s"
+ },
+ {
+ "id": 2931,
+ "start": 989.667,
+ "end": 989.792,
+ "text": "happening,"
+ },
+ {
+ "id": 2932,
+ "start": 989.947,
+ "end": 990.047,
+ "text": "to"
+ },
+ {
+ "id": 2933,
+ "start": 990.047,
+ "end": 990.167,
+ "text": "make"
+ },
+ {
+ "id": 2934,
+ "start": 990.167,
+ "end": 990.277,
+ "text": "sure"
+ },
+ {
+ "id": 2935,
+ "start": 990.277,
+ "end": 990.397,
+ "text": "that"
+ },
+ {
+ "id": 2936,
+ "start": 990.397,
+ "end": 990.617,
+ "text": "law"
+ },
+ {
+ "id": 2937,
+ "start": 990.617,
+ "end": 992.037,
+ "text": "enforcement"
+ },
+ {
+ "id": 2938,
+ "start": 992.037,
+ "end": 992.217,
+ "text": "is"
+ },
+ {
+ "id": 2939,
+ "start": 992.217,
+ "end": 992.317,
+ "text": "in"
+ },
+ {
+ "id": 2940,
+ "start": 992.317,
+ "end": 992.387,
+ "text": "a"
+ },
+ {
+ "id": 2941,
+ "start": 992.387,
+ "end": 992.777,
+ "text": "position"
+ },
+ {
+ "id": 2942,
+ "start": 992.777,
+ "end": 992.857,
+ "text": "to"
+ },
+ {
+ "id": 2943,
+ "start": 992.857,
+ "end": 993.177,
+ "text": "conduct"
+ },
+ {
+ "id": 2944,
+ "start": 993.177,
+ "end": 993.257,
+ "text": "the"
+ },
+ {
+ "id": 2945,
+ "start": 993.257,
+ "end": 993.917,
+ "text": "investigations"
+ },
+ {
+ "id": 2946,
+ "start": 993.917,
+ "end": 994.007,
+ "text": "they"
+ },
+ {
+ "id": 2947,
+ "start": 994.007,
+ "end": 994.167,
+ "text": "need"
+ },
+ {
+ "id": 2948,
+ "start": 994.167,
+ "end": 994.247,
+ "text": "to"
+ },
+ {
+ "id": 2949,
+ "start": 994.247,
+ "end": 994.887,
+ "text": "conduct,"
+ },
+ {
+ "id": 2950,
+ "start": 994.887,
+ "end": 995.017,
+ "text": "to"
+ },
+ {
+ "id": 2951,
+ "start": 995.017,
+ "end": 995.427,
+ "text": "run"
+ },
+ {
+ "id": 2952,
+ "start": 995.427,
+ "end": 995.547,
+ "text": "the"
+ },
+ {
+ "id": 2953,
+ "start": 995.547,
+ "end": 995.987,
+ "text": "activities"
+ },
+ {
+ "id": 2954,
+ "start": 995.987,
+ "end": 996.137,
+ "text": "they"
+ },
+ {
+ "id": 2955,
+ "start": 996.137,
+ "end": 996.307,
+ "text": "need"
+ },
+ {
+ "id": 2956,
+ "start": 996.307,
+ "end": 996.437,
+ "text": "to"
+ },
+ {
+ "id": 2957,
+ "start": 996.437,
+ "end": 997.047,
+ "text": "run."
+ },
+ {
+ "id": 2958,
+ "start": 997.047,
+ "end": 997.207,
+ "text": "We"
+ },
+ {
+ "id": 2959,
+ "start": 997.207,
+ "end": 997.667,
+ "text": "regularly"
+ },
+ {
+ "id": 2960,
+ "start": 997.667,
+ "end": 997.837,
+ "text": "hear"
+ },
+ {
+ "id": 2961,
+ "start": 997.837,
+ "end": 998.067,
+ "text": "back"
+ },
+ {
+ "id": 2962,
+ "start": 998.067,
+ "end": 998.197,
+ "text": "from"
+ },
+ {
+ "id": 2963,
+ "start": 998.197,
+ "end": 998.537,
+ "text": "government"
+ },
+ {
+ "id": 2964,
+ "start": 998.537,
+ "end": 998.657,
+ "text": "when"
+ },
+ {
+ "id": 2965,
+ "start": 998.657,
+ "end": 998.837,
+ "text": "they"
+ },
+ {
+ "id": 2966,
+ "start": 998.837,
+ "end": 999.127,
+ "text": "see"
+ },
+ {
+ "id": 2967,
+ "start": 999.127,
+ "end": 999.767,
+ "text": "things"
+ },
+ {
+ "id": 2968,
+ "start": 999.767,
+ "end": 999.907,
+ "text": "that"
+ },
+ {
+ "id": 2969,
+ "start": 999.907,
+ "end": 1000.087,
+ "text": "might"
+ },
+ {
+ "id": 2970,
+ "start": 1000.087,
+ "end": 1000.347,
+ "text": "help"
+ },
+ {
+ "id": 2971,
+ "start": 1000.347,
+ "end": 1000.587,
+ "text": "us"
+ },
+ {
+ "id": 2972,
+ "start": 1000.587,
+ "end": 1000.777,
+ "text": "take"
+ },
+ {
+ "id": 2973,
+ "start": 1000.777,
+ "end": 1000.867,
+ "text": "our"
+ },
+ {
+ "id": 2974,
+ "start": 1000.867,
+ "end": 1001.417,
+ "text": "disruptions"
+ },
+ {
+ "id": 2975,
+ "start": 1001.417,
+ "end": 1002.137,
+ "text": "and"
+ },
+ {
+ "id": 2976,
+ "start": 1002.137,
+ "end": 1002.317,
+ "text": "take"
+ },
+ {
+ "id": 2977,
+ "start": 1002.317,
+ "end": 1002.647,
+ "text": "action"
+ },
+ {
+ "id": 2978,
+ "start": 1002.647,
+ "end": 1002.897,
+ "text": "against"
+ },
+ {
+ "id": 2979,
+ "start": 1002.897,
+ "end": 1003.027,
+ "text": "these"
+ },
+ {
+ "id": 2980,
+ "start": 1003.027,
+ "end": 1003.217,
+ "text": "bad"
+ },
+ {
+ "id": 2981,
+ "start": 1003.337,
+ "end": 1003.5336666666667,
+ "text": "actors,"
+ },
+ {
+ "id": 2982,
+ "start": 1003.6469999999999,
+ "end": 1003.8503333333334,
+ "text": "so"
+ },
+ {
+ "id": 2983,
+ "start": 1003.957,
+ "end": 1004.167,
+ "text": "there’s"
+ },
+ {
+ "id": 2984,
+ "start": 1004.167,
+ "end": 1004.227,
+ "text": "a"
+ },
+ {
+ "id": 2985,
+ "start": 1004.227,
+ "end": 1004.727,
+ "text": "constant"
+ },
+ {
+ "id": 2986,
+ "start": 1005.4169999999999,
+ "end": 1005.7669999999998,
+ "text": "dialogue."
+ },
+ {
+ "id": 2987,
+ "start": 1006.607,
+ "end": 1006.807,
+ "text": "Do"
+ },
+ {
+ "id": 2988,
+ "start": 1006.807,
+ "end": 1006.907,
+ "text": "you"
+ },
+ {
+ "id": 2989,
+ "start": 1006.907,
+ "end": 1007.337,
+ "text": "see"
+ },
+ {
+ "id": 2990,
+ "start": 1007.337,
+ "end": 1008.087,
+ "text": "Facebook,"
+ },
+ {
+ "id": 2991,
+ "start": 1008.087,
+ "end": 1008.237,
+ "text": "for"
+ },
+ {
+ "id": 2992,
+ "start": 1008.237,
+ "end": 1008.737,
+ "text": "instance,"
+ },
+ {
+ "id": 2993,
+ "start": 1008.737,
+ "end": 1008.867,
+ "text": "as"
+ },
+ {
+ "id": 2994,
+ "start": 1008.867,
+ "end": 1008.937,
+ "text": "a"
+ },
+ {
+ "id": 2995,
+ "start": 1008.937,
+ "end": 1009.157,
+ "text": "sort"
+ },
+ {
+ "id": 2996,
+ "start": 1009.157,
+ "end": 1009.227,
+ "text": "of"
+ },
+ {
+ "id": 2997,
+ "start": 1009.227,
+ "end": 1009.607,
+ "text": "first"
+ },
+ {
+ "id": 2998,
+ "start": 1009.607,
+ "end": 1009.847,
+ "text": "line"
+ },
+ {
+ "id": 2999,
+ "start": 1009.847,
+ "end": 1010.017,
+ "text": "of"
+ },
+ {
+ "id": 3000,
+ "start": 1010.502,
+ "end": 1010.722,
+ "text": "defense"
+ },
+ {
+ "id": 3001,
+ "start": 1011.157,
+ "end": 1011.427,
+ "text": "in"
+ },
+ {
+ "id": 3002,
+ "start": 1011.427,
+ "end": 1011.927,
+ "text": "terms"
+ },
+ {
+ "id": 3003,
+ "start": 1011.927,
+ "end": 1013.167,
+ "text": "of,"
+ },
+ {
+ "id": 3004,
+ "start": 1013.167,
+ "end": 1013.277,
+ "text": "the"
+ },
+ {
+ "id": 3005,
+ "start": 1013.277,
+ "end": 1013.617,
+ "text": "federal"
+ },
+ {
+ "id": 3006,
+ "start": 1013.617,
+ "end": 1014.097,
+ "text": "government"
+ },
+ {
+ "id": 3007,
+ "start": 1014.097,
+ "end": 1014.527,
+ "text": "can’t"
+ },
+ {
+ "id": 3008,
+ "start": 1014.527,
+ "end": 1015.257,
+ "text": "monitor"
+ },
+ {
+ "id": 3009,
+ "start": 1015.3969999999999,
+ "end": 1015.8870000000001,
+ "text": "behavior"
+ },
+ {
+ "id": 3010,
+ "start": 1016.267,
+ "end": 1016.517,
+ "text": "on"
+ },
+ {
+ "id": 3011,
+ "start": 1016.517,
+ "end": 1016.887,
+ "text": "social"
+ },
+ {
+ "id": 3012,
+ "start": 1016.887,
+ "end": 1017.537,
+ "text": "media,"
+ },
+ {
+ "id": 3013,
+ "start": 1017.537,
+ "end": 1017.877,
+ "text": "so"
+ },
+ {
+ "id": 3014,
+ "start": 1017.877,
+ "end": 1018.017,
+ "text": "we"
+ },
+ {
+ "id": 3015,
+ "start": 1018.017,
+ "end": 1018.247,
+ "text": "have"
+ },
+ {
+ "id": 3016,
+ "start": 1018.247,
+ "end": 1018.467,
+ "text": "to"
+ },
+ {
+ "id": 3017,
+ "start": 1018.467,
+ "end": 1018.877,
+ "text": "rely"
+ },
+ {
+ "id": 3018,
+ "start": 1018.877,
+ "end": 1019.377,
+ "text": "upon"
+ },
+ {
+ "id": 3019,
+ "start": 1019.377,
+ "end": 1019.427,
+ "text": "a"
+ },
+ {
+ "id": 3020,
+ "start": 1019.427,
+ "end": 1019.807,
+ "text": "company"
+ },
+ {
+ "id": 3021,
+ "start": 1019.807,
+ "end": 1019.997,
+ "text": "like"
+ },
+ {
+ "id": 3022,
+ "start": 1019.997,
+ "end": 1020.507,
+ "text": "Facebook"
+ },
+ {
+ "id": 3023,
+ "start": 1020.4819999999999,
+ "end": 1021.032,
+ "text": "to"
+ },
+ {
+ "id": 3024,
+ "start": 1020.967,
+ "end": 1021.557,
+ "text": "monitor"
+ },
+ {
+ "id": 3025,
+ "start": 1021.557,
+ "end": 1021.667,
+ "text": "the"
+ },
+ {
+ "id": 3026,
+ "start": 1021.667,
+ "end": 1022.187,
+ "text": "network"
+ },
+ {
+ "id": 3027,
+ "start": 1022.187,
+ "end": 1022.457,
+ "text": "for"
+ },
+ {
+ "id": 3028,
+ "start": 1022.457,
+ "end": 1022.907,
+ "text": "malicious"
+ },
+ {
+ "id": 3029,
+ "start": 1022.907,
+ "end": 1023.397,
+ "text": "actors,"
+ },
+ {
+ "id": 3030,
+ "start": 1023.397,
+ "end": 1023.667,
+ "text": "right?"
+ },
+ {
+ "id": 3031,
+ "start": 1023.667,
+ "end": 1023.887,
+ "text": "Isn’t"
+ },
+ {
+ "id": 3032,
+ "start": 1023.887,
+ "end": 1024.007,
+ "text": "that"
+ },
+ {
+ "id": 3033,
+ "start": 1024.007,
+ "end": 1027.797,
+ "text": "correct?"
+ },
+ {
+ "id": 3034,
+ "start": 1027.797,
+ "end": 1028.127,
+ "text": "We"
+ },
+ {
+ "id": 3035,
+ "start": 1028.127,
+ "end": 1028.227,
+ "text": "and"
+ },
+ {
+ "id": 3036,
+ "start": 1028.227,
+ "end": 1028.297,
+ "text": "the"
+ },
+ {
+ "id": 3037,
+ "start": 1028.297,
+ "end": 1028.587,
+ "text": "government"
+ },
+ {
+ "id": 3038,
+ "start": 1028.492,
+ "end": 1028.787,
+ "text": "have"
+ },
+ {
+ "id": 3039,
+ "start": 1028.687,
+ "end": 1028.987,
+ "text": "different"
+ },
+ {
+ "id": 3040,
+ "start": 1028.987,
+ "end": 1029.237,
+ "text": "tools"
+ },
+ {
+ "id": 3041,
+ "start": 1029.237,
+ "end": 1029.347,
+ "text": "to"
+ },
+ {
+ "id": 3042,
+ "start": 1029.347,
+ "end": 1029.487,
+ "text": "do"
+ },
+ {
+ "id": 3043,
+ "start": 1029.487,
+ "end": 1029.737,
+ "text": "that,"
+ },
+ {
+ "id": 3044,
+ "start": 1029.737,
+ "end": 1030.297,
+ "text": "right."
+ },
+ {
+ "id": 3045,
+ "start": 1030.297,
+ "end": 1030.747,
+ "text": "Government"
+ },
+ {
+ "id": 3046,
+ "start": 1030.747,
+ "end": 1030.887,
+ "text": "has"
+ },
+ {
+ "id": 3047,
+ "start": 1030.887,
+ "end": 1030.947,
+ "text": "a"
+ },
+ {
+ "id": 3048,
+ "start": 1030.947,
+ "end": 1031.167,
+ "text": "set"
+ },
+ {
+ "id": 3049,
+ "start": 1031.167,
+ "end": 1031.257,
+ "text": "of"
+ },
+ {
+ "id": 3050,
+ "start": 1031.257,
+ "end": 1031.737,
+ "text": "capacity"
+ },
+ {
+ "id": 3051,
+ "start": 1031.737,
+ "end": 1031.897,
+ "text": "that’s"
+ },
+ {
+ "id": 3052,
+ "start": 1031.897,
+ "end": 1032.067,
+ "text": "really"
+ },
+ {
+ "id": 3053,
+ "start": 1032.067,
+ "end": 1032.667,
+ "text": "important."
+ },
+ {
+ "id": 3054,
+ "start": 1032.4803333333332,
+ "end": 1032.9136666666666,
+ "text": "They"
+ },
+ {
+ "id": 3055,
+ "start": 1032.8936666666666,
+ "end": 1033.1603333333333,
+ "text": "are"
+ },
+ {
+ "id": 3056,
+ "start": 1033.307,
+ "end": 1033.407,
+ "text": "the"
+ },
+ {
+ "id": 3057,
+ "start": 1033.407,
+ "end": 1033.657,
+ "text": "best"
+ },
+ {
+ "id": 3058,
+ "start": 1033.6419999999998,
+ "end": 1033.842,
+ "text": "place,"
+ },
+ {
+ "id": 3059,
+ "start": 1033.877,
+ "end": 1034.027,
+ "text": "for"
+ },
+ {
+ "id": 3060,
+ "start": 1034.027,
+ "end": 1034.677,
+ "text": "example,"
+ },
+ {
+ "id": 3061,
+ "start": 1034.5320000000002,
+ "end": 1035.292,
+ "text": "to"
+ },
+ {
+ "id": 3062,
+ "start": 1035.037,
+ "end": 1035.907,
+ "text": "understand"
+ },
+ {
+ "id": 3063,
+ "start": 1035.907,
+ "end": 1036.047,
+ "text": "the"
+ },
+ {
+ "id": 3064,
+ "start": 1036.047,
+ "end": 1036.557,
+ "text": "intent"
+ },
+ {
+ "id": 3065,
+ "start": 1036.557,
+ "end": 1037.697,
+ "text": "behind"
+ },
+ {
+ "id": 3066,
+ "start": 1037.697,
+ "end": 1037.827,
+ "text": "a"
+ },
+ {
+ "id": 3067,
+ "start": 1037.827,
+ "end": 1038.187,
+ "text": "state"
+ },
+ {
+ "id": 3068,
+ "start": 1038.187,
+ "end": 1038.847,
+ "text": "actor"
+ },
+ {
+ "id": 3069,
+ "start": 1038.847,
+ "end": 1039.087,
+ "text": "and"
+ },
+ {
+ "id": 3070,
+ "start": 1039.087,
+ "end": 1039.197,
+ "text": "the"
+ },
+ {
+ "id": 3071,
+ "start": 1039.197,
+ "end": 1039.617,
+ "text": "reason"
+ },
+ {
+ "id": 3072,
+ "start": 1039.617,
+ "end": 1039.757,
+ "text": "they’re"
+ },
+ {
+ "id": 3073,
+ "start": 1039.757,
+ "end": 1040.157,
+ "text": "engaging"
+ },
+ {
+ "id": 3074,
+ "start": 1039.9920000000002,
+ "end": 1040.2269999999999,
+ "text": "it"
+ },
+ {
+ "id": 3075,
+ "start": 1040.227,
+ "end": 1040.297,
+ "text": "the"
+ },
+ {
+ "id": 3076,
+ "start": 1040.297,
+ "end": 1040.427,
+ "text": "way"
+ },
+ {
+ "id": 3077,
+ "start": 1040.427,
+ "end": 1040.577,
+ "text": "they’re"
+ },
+ {
+ "id": 3078,
+ "start": 1040.877,
+ "end": 1041.2919999999997,
+ "text": "engaging."
+ },
+ {
+ "id": 3079,
+ "start": 1041.327,
+ "end": 1042.007,
+ "text": "Facebook"
+ },
+ {
+ "id": 3080,
+ "start": 1042.007,
+ "end": 1042.547,
+ "text": "and"
+ },
+ {
+ "id": 3081,
+ "start": 1042.547,
+ "end": 1042.917,
+ "text": "the"
+ },
+ {
+ "id": 3082,
+ "start": 1042.917,
+ "end": 1043.287,
+ "text": "value"
+ },
+ {
+ "id": 3083,
+ "start": 1043.287,
+ "end": 1043.417,
+ "text": "that"
+ },
+ {
+ "id": 3084,
+ "start": 1043.417,
+ "end": 1043.557,
+ "text": "we"
+ },
+ {
+ "id": 3085,
+ "start": 1043.557,
+ "end": 1043.697,
+ "text": "can"
+ },
+ {
+ "id": 3086,
+ "start": 1043.697,
+ "end": 1044.067,
+ "text": "bring"
+ },
+ {
+ "id": 3087,
+ "start": 1043.942,
+ "end": 1044.182,
+ "text": "is"
+ },
+ {
+ "id": 3088,
+ "start": 1044.187,
+ "end": 1044.297,
+ "text": "our"
+ },
+ {
+ "id": 3089,
+ "start": 1044.297,
+ "end": 1044.617,
+ "text": "ability"
+ },
+ {
+ "id": 3090,
+ "start": 1044.617,
+ "end": 1044.697,
+ "text": "to"
+ },
+ {
+ "id": 3091,
+ "start": 1044.697,
+ "end": 1045.097,
+ "text": "understand"
+ },
+ {
+ "id": 3092,
+ "start": 1045.097,
+ "end": 1045.237,
+ "text": "what’s"
+ },
+ {
+ "id": 3093,
+ "start": 1045.237,
+ "end": 1045.557,
+ "text": "happening"
+ },
+ {
+ "id": 3094,
+ "start": 1045.557,
+ "end": 1045.637,
+ "text": "on"
+ },
+ {
+ "id": 3095,
+ "start": 1045.637,
+ "end": 1045.707,
+ "text": "our"
+ },
+ {
+ "id": 3096,
+ "start": 1045.707,
+ "end": 1046.617,
+ "text": "platform"
+ },
+ {
+ "id": 3097,
+ "start": 1046.617,
+ "end": 1046.737,
+ "text": "and"
+ },
+ {
+ "id": 3098,
+ "start": 1046.737,
+ "end": 1046.837,
+ "text": "to"
+ },
+ {
+ "id": 3099,
+ "start": 1046.837,
+ "end": 1047.357,
+ "text": "investigate"
+ },
+ {
+ "id": 3100,
+ "start": 1047.347,
+ "end": 1047.547,
+ "text": "bad"
+ },
+ {
+ "id": 3101,
+ "start": 1047.627,
+ "end": 1047.772,
+ "text": "behavior"
+ },
+ {
+ "id": 3102,
+ "start": 1047.907,
+ "end": 1047.997,
+ "text": "on"
+ },
+ {
+ "id": 3103,
+ "start": 1047.997,
+ "end": 1048.077,
+ "text": "the"
+ },
+ {
+ "id": 3104,
+ "start": 1048.077,
+ "end": 1048.697,
+ "text": "platform."
+ },
+ {
+ "id": 3105,
+ "start": 1048.697,
+ "end": 1048.977,
+ "text": "But"
+ },
+ {
+ "id": 3106,
+ "start": 1048.977,
+ "end": 1049.467,
+ "text": "government"
+ },
+ {
+ "id": 3107,
+ "start": 1049.467,
+ "end": 1049.767,
+ "text": "doesn’t"
+ },
+ {
+ "id": 3108,
+ "start": 1049.767,
+ "end": 1049.967,
+ "text": "have"
+ },
+ {
+ "id": 3109,
+ "start": 1049.967,
+ "end": 1050.047,
+ "text": "a"
+ },
+ {
+ "id": 3110,
+ "start": 1050.047,
+ "end": 1050.367,
+ "text": "view"
+ },
+ {
+ "id": 3111,
+ "start": 1050.367,
+ "end": 1050.647,
+ "text": "into"
+ },
+ {
+ "id": 3112,
+ "start": 1050.647,
+ "end": 1051.157,
+ "text": "what"
+ },
+ {
+ "id": 3113,
+ "start": 1051.157,
+ "end": 1051.417,
+ "text": "is"
+ },
+ {
+ "id": 3114,
+ "start": 1051.417,
+ "end": 1051.947,
+ "text": "happening"
+ },
+ {
+ "id": 3115,
+ "start": 1051.947,
+ "end": 1052.077,
+ "text": "on"
+ },
+ {
+ "id": 3116,
+ "start": 1052.077,
+ "end": 1052.577,
+ "text": "Facebook’s"
+ },
+ {
+ "id": 3117,
+ "start": 1052.577,
+ "end": 1053.407,
+ "text": "platform"
+ },
+ {
+ "id": 3118,
+ "start": 1053.407,
+ "end": 1053.657,
+ "text": "on"
+ },
+ {
+ "id": 3119,
+ "start": 1053.657,
+ "end": 1054.087,
+ "text": "American"
+ },
+ {
+ "id": 3120,
+ "start": 1054.087,
+ "end": 1054.657,
+ "text": "citizens"
+ },
+ {
+ "id": 3121,
+ "start": 1054.657,
+ "end": 1054.887,
+ "text": "right"
+ },
+ {
+ "id": 3122,
+ "start": 1054.887,
+ "end": 1055.077,
+ "text": "now,"
+ },
+ {
+ "id": 3123,
+ "start": 1055.077,
+ "end": 1055.277,
+ "text": "for"
+ },
+ {
+ "id": 3124,
+ "start": 1055.607,
+ "end": 1055.9470000000001,
+ "text": "instance."
+ },
+ {
+ "id": 3125,
+ "start": 1056.137,
+ "end": 1056.617,
+ "text": "Government"
+ },
+ {
+ "id": 3126,
+ "start": 1056.617,
+ "end": 1056.787,
+ "text": "has"
+ },
+ {
+ "id": 3127,
+ "start": 1056.787,
+ "end": 1056.857,
+ "text": "the"
+ },
+ {
+ "id": 3128,
+ "start": 1056.857,
+ "end": 1057.057,
+ "text": "view"
+ },
+ {
+ "id": 3129,
+ "start": 1057.057,
+ "end": 1057.207,
+ "text": "that"
+ },
+ {
+ "id": 3130,
+ "start": 1057.207,
+ "end": 1057.377,
+ "text": "any"
+ },
+ {
+ "id": 3131,
+ "start": 1057.377,
+ "end": 1057.667,
+ "text": "user"
+ },
+ {
+ "id": 3132,
+ "start": 1057.667,
+ "end": 1057.727,
+ "text": "of"
+ },
+ {
+ "id": 3133,
+ "start": 1057.732,
+ "end": 1057.9569999999999,
+ "text": "a"
+ },
+ {
+ "id": 3134,
+ "start": 1057.797,
+ "end": 1058.187,
+ "text": "platform"
+ },
+ {
+ "id": 3135,
+ "start": 1058.187,
+ "end": 1058.297,
+ "text": "would"
+ },
+ {
+ "id": 3136,
+ "start": 1058.297,
+ "end": 1059.357,
+ "text": "have,"
+ },
+ {
+ "id": 3137,
+ "start": 1059.357,
+ "end": 1059.647,
+ "text": "although"
+ },
+ {
+ "id": 3138,
+ "start": 1059.647,
+ "end": 1059.747,
+ "text": "of"
+ },
+ {
+ "id": 3139,
+ "start": 1059.747,
+ "end": 1059.957,
+ "text": "course"
+ },
+ {
+ "id": 3140,
+ "start": 1059.957,
+ "end": 1060.117,
+ "text": "law"
+ },
+ {
+ "id": 3141,
+ "start": 1060.267,
+ "end": 1060.397,
+ "text": "enforcement,"
+ },
+ {
+ "id": 3142,
+ "start": 1060.577,
+ "end": 1060.677,
+ "text": "when"
+ },
+ {
+ "id": 3143,
+ "start": 1060.677,
+ "end": 1060.747,
+ "text": "they"
+ },
+ {
+ "id": 3144,
+ "start": 1060.747,
+ "end": 1061.057,
+ "text": "provide"
+ },
+ {
+ "id": 3145,
+ "start": 1061.057,
+ "end": 1061.187,
+ "text": "us"
+ },
+ {
+ "id": 3146,
+ "start": 1061.187,
+ "end": 1061.317,
+ "text": "with"
+ },
+ {
+ "id": 3147,
+ "start": 1061.317,
+ "end": 1061.567,
+ "text": "lawful"
+ },
+ {
+ "id": 3148,
+ "start": 1061.567,
+ "end": 1061.997,
+ "text": "process,"
+ },
+ {
+ "id": 3149,
+ "start": 1061.997,
+ "end": 1062.087,
+ "text": "we"
+ },
+ {
+ "id": 3150,
+ "start": 1062.087,
+ "end": 1062.527,
+ "text": "respond"
+ },
+ {
+ "id": 3151,
+ "start": 1062.527,
+ "end": 1062.617,
+ "text": "and"
+ },
+ {
+ "id": 3152,
+ "start": 1062.617,
+ "end": 1062.927,
+ "text": "provide"
+ },
+ {
+ "id": 3153,
+ "start": 1062.777,
+ "end": 1063.272,
+ "text": "them"
+ },
+ {
+ "id": 3154,
+ "start": 1062.937,
+ "end": 1063.617,
+ "text": "information."
+ },
+ {
+ "id": 3155,
+ "start": 1063.617,
+ "end": 1063.787,
+ "text": "So"
+ },
+ {
+ "id": 3156,
+ "start": 1063.787,
+ "end": 1063.897,
+ "text": "we"
+ },
+ {
+ "id": 3157,
+ "start": 1063.897,
+ "end": 1064.277,
+ "text": "regularly"
+ },
+ {
+ "id": 3158,
+ "start": 1064.172,
+ "end": 1064.4070000000002,
+ "text": "work"
+ },
+ {
+ "id": 3159,
+ "start": 1064.447,
+ "end": 1064.537,
+ "text": "with"
+ },
+ {
+ "id": 3160,
+ "start": 1064.537,
+ "end": 1064.647,
+ "text": "law"
+ },
+ {
+ "id": 3161,
+ "start": 1064.647,
+ "end": 1065.047,
+ "text": "enforcement"
+ },
+ {
+ "id": 3162,
+ "start": 1065.047,
+ "end": 1065.137,
+ "text": "to"
+ },
+ {
+ "id": 3163,
+ "start": 1065.137,
+ "end": 1065.507,
+ "text": "enable"
+ },
+ {
+ "id": 3164,
+ "start": 1065.507,
+ "end": 1065.657,
+ "text": "them"
+ },
+ {
+ "id": 3165,
+ "start": 1065.657,
+ "end": 1065.737,
+ "text": "to"
+ },
+ {
+ "id": 3166,
+ "start": 1065.737,
+ "end": 1066.037,
+ "text": "conduct"
+ },
+ {
+ "id": 3167,
+ "start": 1066.037,
+ "end": 1066.157,
+ "text": "their"
+ },
+ {
+ "id": 3168,
+ "start": 1066.157,
+ "end": 1067.257,
+ "text": "investigations."
+ },
+ {
+ "id": 3169,
+ "start": 1067.257,
+ "end": 1067.357,
+ "text": "Are"
+ },
+ {
+ "id": 3170,
+ "start": 1067.357,
+ "end": 1067.577,
+ "text": "you"
+ },
+ {
+ "id": 3171,
+ "start": 1067.577,
+ "end": 1067.877,
+ "text": "getting"
+ },
+ {
+ "id": 3172,
+ "start": 1067.877,
+ "end": 1068.247,
+ "text": "tips"
+ },
+ {
+ "id": 3173,
+ "start": 1068.247,
+ "end": 1068.447,
+ "text": "from"
+ },
+ {
+ "id": 3174,
+ "start": 1068.447,
+ "end": 1068.617,
+ "text": "law"
+ },
+ {
+ "id": 3175,
+ "start": 1068.617,
+ "end": 1069.297,
+ "text": "enforcement,"
+ },
+ {
+ "id": 3176,
+ "start": 1069.297,
+ "end": 1069.467,
+ "text": "for"
+ },
+ {
+ "id": 3177,
+ "start": 1069.467,
+ "end": 1069.847,
+ "text": "instance,"
+ },
+ {
+ "id": 3178,
+ "start": 1069.847,
+ "end": 1069.987,
+ "text": "from"
+ },
+ {
+ "id": 3179,
+ "start": 1069.987,
+ "end": 1070.087,
+ "text": "the"
+ },
+ {
+ "id": 3180,
+ "start": 1070.087,
+ "end": 1070.657,
+ "text": "FBI"
+ },
+ {
+ "id": 3181,
+ "start": 1070.657,
+ "end": 1071.497,
+ "text": "about"
+ },
+ {
+ "id": 3182,
+ "start": 1071.497,
+ "end": 1072.647,
+ "text": "potential"
+ },
+ {
+ "id": 3183,
+ "start": 1072.647,
+ "end": 1073.097,
+ "text": "active"
+ },
+ {
+ "id": 3184,
+ "start": 1073.097,
+ "end": 1073.757,
+ "text": "operations"
+ },
+ {
+ "id": 3185,
+ "start": 1073.757,
+ "end": 1073.877,
+ "text": "that"
+ },
+ {
+ "id": 3186,
+ "start": 1073.877,
+ "end": 1073.937,
+ "text": "are"
+ },
+ {
+ "id": 3187,
+ "start": 1073.937,
+ "end": 1074.517,
+ "text": "playing"
+ },
+ {
+ "id": 3188,
+ "start": 1074.517,
+ "end": 1074.647,
+ "text": "out"
+ },
+ {
+ "id": 3189,
+ "start": 1074.647,
+ "end": 1074.727,
+ "text": "on"
+ },
+ {
+ "id": 3190,
+ "start": 1074.727,
+ "end": 1074.837,
+ "text": "your"
+ },
+ {
+ "id": 3191,
+ "start": 1074.837,
+ "end": 1075.667,
+ "text": "platform?"
+ },
+ {
+ "id": 3192,
+ "start": 1075.407,
+ "end": 1076.067,
+ "text": "Yes."
+ },
+ {
+ "id": 3193,
+ "start": 1076.157,
+ "end": 1076.642,
+ "text": "A"
+ },
+ {
+ "id": 3194,
+ "start": 1076.907,
+ "end": 1077.217,
+ "text": "really"
+ },
+ {
+ "id": 3195,
+ "start": 1077.217,
+ "end": 1077.357,
+ "text": "good"
+ },
+ {
+ "id": 3196,
+ "start": 1077.357,
+ "end": 1077.827,
+ "text": "example"
+ },
+ {
+ "id": 3197,
+ "start": 1077.827,
+ "end": 1077.917,
+ "text": "of"
+ },
+ {
+ "id": 3198,
+ "start": 1077.917,
+ "end": 1078.527,
+ "text": "this"
+ },
+ {
+ "id": 3199,
+ "start": 1078.527,
+ "end": 1078.927,
+ "text": "is"
+ },
+ {
+ "id": 3200,
+ "start": 1078.927,
+ "end": 1079.027,
+ "text": "the"
+ },
+ {
+ "id": 3201,
+ "start": 1079.027,
+ "end": 1079.507,
+ "text": "disruption"
+ },
+ {
+ "id": 3202,
+ "start": 1079.507,
+ "end": 1079.627,
+ "text": "we"
+ },
+ {
+ "id": 3203,
+ "start": 1079.627,
+ "end": 1079.877,
+ "text": "did"
+ },
+ {
+ "id": 3204,
+ "start": 1079.877,
+ "end": 1079.987,
+ "text": "in"
+ },
+ {
+ "id": 3205,
+ "start": 1079.987,
+ "end": 1080.157,
+ "text": "late"
+ },
+ {
+ "id": 3206,
+ "start": 1080.157,
+ "end": 1080.697,
+ "text": "July"
+ },
+ {
+ "id": 3207,
+ "start": 1080.697,
+ "end": 1080.827,
+ "text": "when"
+ },
+ {
+ "id": 3208,
+ "start": 1080.827,
+ "end": 1080.917,
+ "text": "we"
+ },
+ {
+ "id": 3209,
+ "start": 1080.917,
+ "end": 1081.117,
+ "text": "took"
+ },
+ {
+ "id": 3210,
+ "start": 1081.117,
+ "end": 1081.577,
+ "text": "down"
+ },
+ {
+ "id": 3211,
+ "start": 1081.632,
+ "end": 1081.9070000000002,
+ "text": "32"
+ },
+ {
+ "id": 3212,
+ "start": 1082.147,
+ "end": 1082.237,
+ "text": "or"
+ },
+ {
+ "id": 3213,
+ "start": 1082.237,
+ "end": 1082.487,
+ "text": "so"
+ },
+ {
+ "id": 3214,
+ "start": 1082.487,
+ "end": 1083.287,
+ "text": "assets"
+ },
+ {
+ "id": 3215,
+ "start": 1083.287,
+ "end": 1083.427,
+ "text": "that"
+ },
+ {
+ "id": 3216,
+ "start": 1083.427,
+ "end": 1083.737,
+ "text": "showed"
+ },
+ {
+ "id": 3217,
+ "start": 1083.737,
+ "end": 1084.067,
+ "text": "some"
+ },
+ {
+ "id": 3218,
+ "start": 1084.067,
+ "end": 1084.747,
+ "text": "links"
+ },
+ {
+ "id": 3219,
+ "start": 1084.747,
+ "end": 1084.967,
+ "text": "to"
+ },
+ {
+ "id": 3220,
+ "start": 1084.967,
+ "end": 1086.287,
+ "text": "Russia;"
+ },
+ {
+ "id": 3221,
+ "start": 1086.287,
+ "end": 1086.607,
+ "text": "that"
+ },
+ {
+ "id": 3222,
+ "start": 1086.607,
+ "end": 1086.697,
+ "text": "in"
+ },
+ {
+ "id": 3223,
+ "start": 1086.697,
+ "end": 1086.877,
+ "text": "that"
+ },
+ {
+ "id": 3224,
+ "start": 1086.877,
+ "end": 1087.067,
+ "text": "case"
+ },
+ {
+ "id": 3225,
+ "start": 1087.067,
+ "end": 1087.147,
+ "text": "we"
+ },
+ {
+ "id": 3226,
+ "start": 1087.147,
+ "end": 1087.397,
+ "text": "talked"
+ },
+ {
+ "id": 3227,
+ "start": 1087.397,
+ "end": 1087.547,
+ "text": "about"
+ },
+ {
+ "id": 3228,
+ "start": 1087.547,
+ "end": 1087.807,
+ "text": "where"
+ },
+ {
+ "id": 3229,
+ "start": 1087.807,
+ "end": 1088.007,
+ "text": "that"
+ },
+ {
+ "id": 3230,
+ "start": 1088.007,
+ "end": 1088.237,
+ "text": "came"
+ },
+ {
+ "id": 3231,
+ "start": 1088.237,
+ "end": 1088.927,
+ "text": "from,"
+ },
+ {
+ "id": 3232,
+ "start": 1088.927,
+ "end": 1089.067,
+ "text": "and"
+ },
+ {
+ "id": 3233,
+ "start": 1089.067,
+ "end": 1089.127,
+ "text": "it"
+ },
+ {
+ "id": 3234,
+ "start": 1089.127,
+ "end": 1089.297,
+ "text": "came"
+ },
+ {
+ "id": 3235,
+ "start": 1089.297,
+ "end": 1089.607,
+ "text": "from"
+ },
+ {
+ "id": 3236,
+ "start": 1089.417,
+ "end": 1089.937,
+ "text": "three"
+ },
+ {
+ "id": 3237,
+ "start": 1089.962,
+ "end": 1090.4470000000001,
+ "text": "sources."
+ },
+ {
+ "id": 3238,
+ "start": 1090.507,
+ "end": 1090.957,
+ "text": "One"
+ },
+ {
+ "id": 3239,
+ "start": 1090.957,
+ "end": 1091.107,
+ "text": "was"
+ },
+ {
+ "id": 3240,
+ "start": 1091.107,
+ "end": 1091.347,
+ "text": "our"
+ },
+ {
+ "id": 3241,
+ "start": 1091.347,
+ "end": 1091.667,
+ "text": "own"
+ },
+ {
+ "id": 3242,
+ "start": 1091.667,
+ "end": 1092.157,
+ "text": "analysis"
+ },
+ {
+ "id": 3243,
+ "start": 1092.157,
+ "end": 1092.257,
+ "text": "and"
+ },
+ {
+ "id": 3244,
+ "start": 1092.747,
+ "end": 1093.092,
+ "text": "investigation;"
+ },
+ {
+ "id": 3245,
+ "start": 1093.337,
+ "end": 1093.927,
+ "text": "second"
+ },
+ {
+ "id": 3246,
+ "start": 1093.927,
+ "end": 1094.397,
+ "text": "was"
+ },
+ {
+ "id": 3247,
+ "start": 1094.397,
+ "end": 1094.987,
+ "text": "support"
+ },
+ {
+ "id": 3248,
+ "start": 1094.987,
+ "end": 1095.427,
+ "text": "from"
+ },
+ {
+ "id": 3249,
+ "start": 1095.427,
+ "end": 1095.887,
+ "text": "outside"
+ },
+ {
+ "id": 3250,
+ "start": 1095.887,
+ "end": 1096.587,
+ "text": "researchers;"
+ },
+ {
+ "id": 3251,
+ "start": 1096.587,
+ "end": 1096.847,
+ "text": "and"
+ },
+ {
+ "id": 3252,
+ "start": 1096.847,
+ "end": 1097.427,
+ "text": "third"
+ },
+ {
+ "id": 3253,
+ "start": 1097.427,
+ "end": 1098.007,
+ "text": "was"
+ },
+ {
+ "id": 3254,
+ "start": 1098.007,
+ "end": 1098.607,
+ "text": "information"
+ },
+ {
+ "id": 3255,
+ "start": 1098.607,
+ "end": 1098.967,
+ "text": "from"
+ },
+ {
+ "id": 3256,
+ "start": 1098.967,
+ "end": 1099.377,
+ "text": "tips"
+ },
+ {
+ "id": 3257,
+ "start": 1099.377,
+ "end": 1099.587,
+ "text": "from"
+ },
+ {
+ "id": 3258,
+ "start": 1099.587,
+ "end": 1099.707,
+ "text": "law"
+ },
+ {
+ "id": 3259,
+ "start": 1100.1953333333333,
+ "end": 1100.3470000000004,
+ "text": "enforcement."
+ },
+ {
+ "id": 3260,
+ "start": 1100.8036666666667,
+ "end": 1100.9870000000003,
+ "text": "In"
+ },
+ {
+ "id": 3261,
+ "start": 1101.412,
+ "end": 1101.6270000000002,
+ "text": "a"
+ },
+ {
+ "id": 3262,
+ "start": 1102.0203333333334,
+ "end": 1102.2670000000005,
+ "text": "bigger-picture"
+ },
+ {
+ "id": 3263,
+ "start": 1102.6286666666667,
+ "end": 1102.9070000000004,
+ "text": "sense,"
+ },
+ {
+ "id": 3264,
+ "start": 1103.237,
+ "end": 1103.547,
+ "text": "isn’t"
+ },
+ {
+ "id": 3265,
+ "start": 1103.547,
+ "end": 1104.237,
+ "text": "there"
+ },
+ {
+ "id": 3266,
+ "start": 1104.237,
+ "end": 1104.397,
+ "text": "an"
+ },
+ {
+ "id": 3267,
+ "start": 1104.397,
+ "end": 1104.847,
+ "text": "aspect"
+ },
+ {
+ "id": 3268,
+ "start": 1104.847,
+ "end": 1104.947,
+ "text": "of"
+ },
+ {
+ "id": 3269,
+ "start": 1104.947,
+ "end": 1105.167,
+ "text": "this"
+ },
+ {
+ "id": 3270,
+ "start": 1105.167,
+ "end": 1105.327,
+ "text": "where"
+ },
+ {
+ "id": 3271,
+ "start": 1105.327,
+ "end": 1105.477,
+ "text": "we"
+ },
+ {
+ "id": 3272,
+ "start": 1105.477,
+ "end": 1105.727,
+ "text": "kind"
+ },
+ {
+ "id": 3273,
+ "start": 1105.727,
+ "end": 1105.807,
+ "text": "of"
+ },
+ {
+ "id": 3274,
+ "start": 1105.807,
+ "end": 1106.077,
+ "text": "just"
+ },
+ {
+ "id": 3275,
+ "start": 1106.077,
+ "end": 1106.237,
+ "text": "have"
+ },
+ {
+ "id": 3276,
+ "start": 1106.237,
+ "end": 1106.357,
+ "text": "to"
+ },
+ {
+ "id": 3277,
+ "start": 1106.357,
+ "end": 1106.687,
+ "text": "take"
+ },
+ {
+ "id": 3278,
+ "start": 1106.687,
+ "end": 1107.237,
+ "text": "Facebook’s"
+ },
+ {
+ "id": 3279,
+ "start": 1107.237,
+ "end": 1107.587,
+ "text": "word"
+ },
+ {
+ "id": 3280,
+ "start": 1107.587,
+ "end": 1107.867,
+ "text": "for"
+ },
+ {
+ "id": 3281,
+ "start": 1107.867,
+ "end": 1108.837,
+ "text": "it;"
+ },
+ {
+ "id": 3282,
+ "start": 1108.837,
+ "end": 1108.967,
+ "text": "if"
+ },
+ {
+ "id": 3283,
+ "start": 1108.967,
+ "end": 1109.087,
+ "text": "you"
+ },
+ {
+ "id": 3284,
+ "start": 1109.087,
+ "end": 1109.377,
+ "text": "take"
+ },
+ {
+ "id": 3285,
+ "start": 1109.377,
+ "end": 1109.897,
+ "text": "down"
+ },
+ {
+ "id": 3286,
+ "start": 1109.897,
+ "end": 1110.157,
+ "text": "X"
+ },
+ {
+ "id": 3287,
+ "start": 1110.157,
+ "end": 1110.437,
+ "text": "number"
+ },
+ {
+ "id": 3288,
+ "start": 1110.437,
+ "end": 1110.517,
+ "text": "of"
+ },
+ {
+ "id": 3289,
+ "start": 1110.517,
+ "end": 1111.397,
+ "text": "accounts,"
+ },
+ {
+ "id": 3290,
+ "start": 1111.397,
+ "end": 1111.697,
+ "text": "we"
+ },
+ {
+ "id": 3291,
+ "start": 1111.697,
+ "end": 1111.877,
+ "text": "have"
+ },
+ {
+ "id": 3292,
+ "start": 1111.877,
+ "end": 1112.137,
+ "text": "no"
+ },
+ {
+ "id": 3293,
+ "start": 1112.137,
+ "end": 1112.557,
+ "text": "idea"
+ },
+ {
+ "id": 3294,
+ "start": 1112.557,
+ "end": 1112.717,
+ "text": "how"
+ },
+ {
+ "id": 3295,
+ "start": 1112.717,
+ "end": 1112.987,
+ "text": "many"
+ },
+ {
+ "id": 3296,
+ "start": 1112.987,
+ "end": 1113.247,
+ "text": "other"
+ },
+ {
+ "id": 3297,
+ "start": 1113.247,
+ "end": 1113.757,
+ "text": "possible"
+ },
+ {
+ "id": 3298,
+ "start": 1113.757,
+ "end": 1114.177,
+ "text": "accounts"
+ },
+ {
+ "id": 3299,
+ "start": 1114.177,
+ "end": 1114.367,
+ "text": "there"
+ },
+ {
+ "id": 3300,
+ "start": 1114.422,
+ "end": 1114.7769999999998,
+ "text": "are,"
+ },
+ {
+ "id": 3301,
+ "start": 1114.667,
+ "end": 1115.187,
+ "text": "and"
+ },
+ {
+ "id": 3302,
+ "start": 1115.187,
+ "end": 1115.477,
+ "text": "you’re"
+ },
+ {
+ "id": 3303,
+ "start": 1115.477,
+ "end": 1115.687,
+ "text": "only"
+ },
+ {
+ "id": 3304,
+ "start": 1115.687,
+ "end": 1115.957,
+ "text": "doing"
+ },
+ {
+ "id": 3305,
+ "start": 1115.957,
+ "end": 1116.067,
+ "text": "as"
+ },
+ {
+ "id": 3306,
+ "start": 1116.067,
+ "end": 1116.297,
+ "text": "well"
+ },
+ {
+ "id": 3307,
+ "start": 1116.297,
+ "end": 1116.427,
+ "text": "as"
+ },
+ {
+ "id": 3308,
+ "start": 1116.427,
+ "end": 1116.537,
+ "text": "you"
+ },
+ {
+ "id": 3309,
+ "start": 1116.537,
+ "end": 1116.807,
+ "text": "say"
+ },
+ {
+ "id": 3310,
+ "start": 1116.807,
+ "end": 1116.967,
+ "text": "you’re"
+ },
+ {
+ "id": 3311,
+ "start": 1116.967,
+ "end": 1117.447,
+ "text": "doing,"
+ },
+ {
+ "id": 3312,
+ "start": 1117.5520000000001,
+ "end": 1118.082,
+ "text": "right?"
+ },
+ {
+ "id": 3313,
+ "start": 1118.137,
+ "end": 1118.717,
+ "text": "So"
+ },
+ {
+ "id": 3314,
+ "start": 1118.717,
+ "end": 1118.947,
+ "text": "there’s"
+ },
+ {
+ "id": 3315,
+ "start": 1118.947,
+ "end": 1119.287,
+ "text": "no"
+ },
+ {
+ "id": 3316,
+ "start": 1119.287,
+ "end": 1119.707,
+ "text": "way"
+ },
+ {
+ "id": 3317,
+ "start": 1119.707,
+ "end": 1119.947,
+ "text": "for"
+ },
+ {
+ "id": 3318,
+ "start": 1119.947,
+ "end": 1120.177,
+ "text": "us"
+ },
+ {
+ "id": 3319,
+ "start": 1120.177,
+ "end": 1120.287,
+ "text": "to"
+ },
+ {
+ "id": 3320,
+ "start": 1120.287,
+ "end": 1121.367,
+ "text": "audit"
+ },
+ {
+ "id": 3321,
+ "start": 1121.367,
+ "end": 1121.687,
+ "text": "how"
+ },
+ {
+ "id": 3322,
+ "start": 1121.687,
+ "end": 1121.917,
+ "text": "well"
+ },
+ {
+ "id": 3323,
+ "start": 1121.917,
+ "end": 1122.077,
+ "text": "you’re"
+ },
+ {
+ "id": 3324,
+ "start": 1122.367,
+ "end": 1122.5836666666667,
+ "text": "doing"
+ },
+ {
+ "id": 3325,
+ "start": 1122.817,
+ "end": 1123.0903333333333,
+ "text": "or"
+ },
+ {
+ "id": 3326,
+ "start": 1123.267,
+ "end": 1123.597,
+ "text": "how"
+ },
+ {
+ "id": 3327,
+ "start": 1123.597,
+ "end": 1123.967,
+ "text": "well"
+ },
+ {
+ "id": 3328,
+ "start": 1123.967,
+ "end": 1124.297,
+ "text": "you’re"
+ },
+ {
+ "id": 3329,
+ "start": 1124.297,
+ "end": 1124.537,
+ "text": "not"
+ },
+ {
+ "id": 3330,
+ "start": 1124.9319999999998,
+ "end": 1125.202,
+ "text": "doing."
+ },
+ {
+ "id": 3331,
+ "start": 1125.567,
+ "end": 1125.867,
+ "text": "Doesn’t"
+ },
+ {
+ "id": 3332,
+ "start": 1125.867,
+ "end": 1126.037,
+ "text": "that"
+ },
+ {
+ "id": 3333,
+ "start": 1126.037,
+ "end": 1126.207,
+ "text": "put"
+ },
+ {
+ "id": 3334,
+ "start": 1126.207,
+ "end": 1126.317,
+ "text": "the"
+ },
+ {
+ "id": 3335,
+ "start": 1126.317,
+ "end": 1126.887,
+ "text": "public"
+ },
+ {
+ "id": 3336,
+ "start": 1126.887,
+ "end": 1127.087,
+ "text": "in"
+ },
+ {
+ "id": 3337,
+ "start": 1127.087,
+ "end": 1127.227,
+ "text": "an"
+ },
+ {
+ "id": 3338,
+ "start": 1127.227,
+ "end": 1127.507,
+ "text": "odd"
+ },
+ {
+ "id": 3339,
+ "start": 1127.507,
+ "end": 1127.967,
+ "text": "position"
+ },
+ {
+ "id": 3340,
+ "start": 1127.967,
+ "end": 1128.087,
+ "text": "to"
+ },
+ {
+ "id": 3341,
+ "start": 1128.087,
+ "end": 1128.347,
+ "text": "just"
+ },
+ {
+ "id": 3342,
+ "start": 1128.347,
+ "end": 1128.487,
+ "text": "have"
+ },
+ {
+ "id": 3343,
+ "start": 1128.487,
+ "end": 1128.587,
+ "text": "to"
+ },
+ {
+ "id": 3344,
+ "start": 1128.587,
+ "end": 1128.787,
+ "text": "kind"
+ },
+ {
+ "id": 3345,
+ "start": 1128.787,
+ "end": 1129.277,
+ "text": "of"
+ },
+ {
+ "id": 3346,
+ "start": 1129.277,
+ "end": 1129.547,
+ "text": "take"
+ },
+ {
+ "id": 3347,
+ "start": 1129.547,
+ "end": 1129.677,
+ "text": "your"
+ },
+ {
+ "id": 3348,
+ "start": 1129.677,
+ "end": 1129.947,
+ "text": "word"
+ },
+ {
+ "id": 3349,
+ "start": 1129.947,
+ "end": 1130.177,
+ "text": "for"
+ },
+ {
+ "id": 3350,
+ "start": 1130.177,
+ "end": 1130.867,
+ "text": "it?"
+ },
+ {
+ "id": 3351,
+ "start": 1130.867,
+ "end": 1131.637,
+ "text": "Transparency"
+ },
+ {
+ "id": 3352,
+ "start": 1131.637,
+ "end": 1131.737,
+ "text": "and"
+ },
+ {
+ "id": 3353,
+ "start": 1131.737,
+ "end": 1132.217,
+ "text": "understanding"
+ },
+ {
+ "id": 3354,
+ "start": 1132.217,
+ "end": 1132.347,
+ "text": "this"
+ },
+ {
+ "id": 3355,
+ "start": 1132.347,
+ "end": 1132.687,
+ "text": "stuff,"
+ },
+ {
+ "id": 3356,
+ "start": 1132.687,
+ "end": 1132.817,
+ "text": "which"
+ },
+ {
+ "id": 3357,
+ "start": 1132.817,
+ "end": 1132.927,
+ "text": "is"
+ },
+ {
+ "id": 3358,
+ "start": 1132.927,
+ "end": 1132.967,
+ "text": "I"
+ },
+ {
+ "id": 3359,
+ "start": 1132.967,
+ "end": 1133.147,
+ "text": "think"
+ },
+ {
+ "id": 3360,
+ "start": 1133.147,
+ "end": 1133.237,
+ "text": "what"
+ },
+ {
+ "id": 3361,
+ "start": 1133.237,
+ "end": 1133.357,
+ "text": "you’re"
+ },
+ {
+ "id": 3362,
+ "start": 1133.357,
+ "end": 1133.727,
+ "text": "focused"
+ },
+ {
+ "id": 3363,
+ "start": 1133.727,
+ "end": 1133.897,
+ "text": "on,"
+ },
+ {
+ "id": 3364,
+ "start": 1133.897,
+ "end": 1134.057,
+ "text": "is"
+ },
+ {
+ "id": 3365,
+ "start": 1134.057,
+ "end": 1134.407,
+ "text": "really"
+ },
+ {
+ "id": 3366,
+ "start": 1134.407,
+ "end": 1134.957,
+ "text": "important,"
+ },
+ {
+ "id": 3367,
+ "start": 1134.957,
+ "end": 1135.647,
+ "text": "understanding"
+ },
+ {
+ "id": 3368,
+ "start": 1135.647,
+ "end": 1135.747,
+ "text": "the"
+ },
+ {
+ "id": 3369,
+ "start": 1135.747,
+ "end": 1136.017,
+ "text": "type"
+ },
+ {
+ "id": 3370,
+ "start": 1136.017,
+ "end": 1136.097,
+ "text": "of"
+ },
+ {
+ "id": 3371,
+ "start": 1136.097,
+ "end": 1136.327,
+ "text": "bad"
+ },
+ {
+ "id": 3372,
+ "start": 1136.502,
+ "end": 1136.672,
+ "text": "behavior"
+ },
+ {
+ "id": 3373,
+ "start": 1136.907,
+ "end": 1137.017,
+ "text": "and"
+ },
+ {
+ "id": 3374,
+ "start": 1137.017,
+ "end": 1137.347,
+ "text": "how"
+ },
+ {
+ "id": 3375,
+ "start": 1137.347,
+ "end": 1137.497,
+ "text": "it’s"
+ },
+ {
+ "id": 3376,
+ "start": 1137.497,
+ "end": 1137.737,
+ "text": "being"
+ },
+ {
+ "id": 3377,
+ "start": 1137.737,
+ "end": 1138.067,
+ "text": "acted"
+ },
+ {
+ "id": 3378,
+ "start": 1138.287,
+ "end": 1138.5420000000001,
+ "text": "against."
+ },
+ {
+ "id": 3379,
+ "start": 1138.837,
+ "end": 1139.017,
+ "text": "Part"
+ },
+ {
+ "id": 3380,
+ "start": 1139.017,
+ "end": 1139.067,
+ "text": "of"
+ },
+ {
+ "id": 3381,
+ "start": 1139.067,
+ "end": 1139.157,
+ "text": "what"
+ },
+ {
+ "id": 3382,
+ "start": 1139.157,
+ "end": 1139.247,
+ "text": "we’re"
+ },
+ {
+ "id": 3383,
+ "start": 1139.247,
+ "end": 1139.467,
+ "text": "trying"
+ },
+ {
+ "id": 3384,
+ "start": 1139.467,
+ "end": 1139.547,
+ "text": "to"
+ },
+ {
+ "id": 3385,
+ "start": 1139.602,
+ "end": 1139.962,
+ "text": "do"
+ },
+ {
+ "id": 3386,
+ "start": 1139.737,
+ "end": 1140.377,
+ "text": "there"
+ },
+ {
+ "id": 3387,
+ "start": 1140.087,
+ "end": 1140.517,
+ "text": "is"
+ },
+ {
+ "id": 3388,
+ "start": 1140.357,
+ "end": 1140.6770000000001,
+ "text": "to"
+ },
+ {
+ "id": 3389,
+ "start": 1140.627,
+ "end": 1140.837,
+ "text": "work"
+ },
+ {
+ "id": 3390,
+ "start": 1140.837,
+ "end": 1141.067,
+ "text": "more"
+ },
+ {
+ "id": 3391,
+ "start": 1141.067,
+ "end": 1141.157,
+ "text": "with"
+ },
+ {
+ "id": 3392,
+ "start": 1141.157,
+ "end": 1141.217,
+ "text": "the"
+ },
+ {
+ "id": 3393,
+ "start": 1141.570333333333,
+ "end": 1141.857,
+ "text": "cybersecurity"
+ },
+ {
+ "id": 3394,
+ "start": 1141.9836666666665,
+ "end": 1142.4969999999998,
+ "text": "community,"
+ },
+ {
+ "id": 3395,
+ "start": 1142.397,
+ "end": 1143.137,
+ "text": "so"
+ },
+ {
+ "id": 3396,
+ "start": 1143.137,
+ "end": 1143.407,
+ "text": "we’ve"
+ },
+ {
+ "id": 3397,
+ "start": 1143.407,
+ "end": 1143.667,
+ "text": "worked"
+ },
+ {
+ "id": 3398,
+ "start": 1143.667,
+ "end": 1144.057,
+ "text": "recently"
+ },
+ {
+ "id": 3399,
+ "start": 1144.057,
+ "end": 1144.247,
+ "text": "with"
+ },
+ {
+ "id": 3400,
+ "start": 1144.237,
+ "end": 1144.447,
+ "text": "both"
+ },
+ {
+ "id": 3401,
+ "start": 1144.792,
+ "end": 1144.9869999999999,
+ "text": "FireEye,"
+ },
+ {
+ "id": 3402,
+ "start": 1145.347,
+ "end": 1145.527,
+ "text": "but"
+ },
+ {
+ "id": 3403,
+ "start": 1145.527,
+ "end": 1145.877,
+ "text": "before"
+ },
+ {
+ "id": 3404,
+ "start": 1145.877,
+ "end": 1146.017,
+ "text": "that"
+ },
+ {
+ "id": 3405,
+ "start": 1146.017,
+ "end": 1146.117,
+ "text": "with"
+ },
+ {
+ "id": 3406,
+ "start": 1146.117,
+ "end": 1146.187,
+ "text": "the"
+ },
+ {
+ "id": 3407,
+ "start": 1146.187,
+ "end": 1146.507,
+ "text": "Atlantic"
+ },
+ {
+ "id": 3408,
+ "start": 1146.507,
+ "end": 1147.167,
+ "text": "Council,"
+ },
+ {
+ "id": 3409,
+ "start": 1147.167,
+ "end": 1147.337,
+ "text": "and"
+ },
+ {
+ "id": 3410,
+ "start": 1147.337,
+ "end": 1147.477,
+ "text": "the"
+ },
+ {
+ "id": 3411,
+ "start": 1147.477,
+ "end": 1147.877,
+ "text": "goal"
+ },
+ {
+ "id": 3412,
+ "start": 1147.877,
+ "end": 1147.967,
+ "text": "of"
+ },
+ {
+ "id": 3413,
+ "start": 1147.967,
+ "end": 1148.167,
+ "text": "those"
+ },
+ {
+ "id": 3414,
+ "start": 1148.167,
+ "end": 1149.067,
+ "text": "relationships"
+ },
+ {
+ "id": 3415,
+ "start": 1149.067,
+ "end": 1149.237,
+ "text": "is"
+ },
+ {
+ "id": 3416,
+ "start": 1149.237,
+ "end": 1149.407,
+ "text": "that"
+ },
+ {
+ "id": 3417,
+ "start": 1149.407,
+ "end": 1149.867,
+ "text": "those"
+ },
+ {
+ "id": 3418,
+ "start": 1149.867,
+ "end": 1150.347,
+ "text": "experts"
+ },
+ {
+ "id": 3419,
+ "start": 1150.347,
+ "end": 1150.457,
+ "text": "who"
+ },
+ {
+ "id": 3420,
+ "start": 1150.457,
+ "end": 1150.607,
+ "text": "are"
+ },
+ {
+ "id": 3421,
+ "start": 1150.607,
+ "end": 1150.967,
+ "text": "outside"
+ },
+ {
+ "id": 3422,
+ "start": 1150.967,
+ "end": 1151.637,
+ "text": "Facebook"
+ },
+ {
+ "id": 3423,
+ "start": 1151.637,
+ "end": 1151.847,
+ "text": "can"
+ },
+ {
+ "id": 3424,
+ "start": 1151.847,
+ "end": 1152.267,
+ "text": "conduct"
+ },
+ {
+ "id": 3425,
+ "start": 1152.267,
+ "end": 1152.447,
+ "text": "their"
+ },
+ {
+ "id": 3426,
+ "start": 1152.447,
+ "end": 1152.557,
+ "text": "own"
+ },
+ {
+ "id": 3427,
+ "start": 1152.557,
+ "end": 1153.617,
+ "text": "analysis"
+ },
+ {
+ "id": 3428,
+ "start": 1153.617,
+ "end": 1154.087,
+ "text": "of"
+ },
+ {
+ "id": 3429,
+ "start": 1154.087,
+ "end": 1154.167,
+ "text": "the"
+ },
+ {
+ "id": 3430,
+ "start": 1154.167,
+ "end": 1154.887,
+ "text": "content"
+ },
+ {
+ "id": 3431,
+ "start": 1154.887,
+ "end": 1155.077,
+ "text": "and"
+ },
+ {
+ "id": 3432,
+ "start": 1155.077,
+ "end": 1155.257,
+ "text": "of"
+ },
+ {
+ "id": 3433,
+ "start": 1155.257,
+ "end": 1155.397,
+ "text": "the"
+ },
+ {
+ "id": 3434,
+ "start": 1155.397,
+ "end": 1155.887,
+ "text": "activity"
+ },
+ {
+ "id": 3435,
+ "start": 1155.887,
+ "end": 1156.167,
+ "text": "that"
+ },
+ {
+ "id": 3436,
+ "start": 1156.167,
+ "end": 1156.397,
+ "text": "we’ve"
+ },
+ {
+ "id": 3437,
+ "start": 1156.397,
+ "end": 1156.947,
+ "text": "identified"
+ },
+ {
+ "id": 3438,
+ "start": 1156.947,
+ "end": 1157.077,
+ "text": "and"
+ },
+ {
+ "id": 3439,
+ "start": 1157.077,
+ "end": 1157.197,
+ "text": "that"
+ },
+ {
+ "id": 3440,
+ "start": 1157.257,
+ "end": 1157.677,
+ "text": "they’ve"
+ },
+ {
+ "id": 3441,
+ "start": 1157.437,
+ "end": 1158.157,
+ "text": "identified,"
+ },
+ {
+ "id": 3442,
+ "start": 1158.157,
+ "end": 1158.377,
+ "text": "and"
+ },
+ {
+ "id": 3443,
+ "start": 1158.377,
+ "end": 1158.587,
+ "text": "help"
+ },
+ {
+ "id": 3444,
+ "start": 1158.587,
+ "end": 1158.657,
+ "text": "the"
+ },
+ {
+ "id": 3445,
+ "start": 1158.657,
+ "end": 1158.967,
+ "text": "public"
+ },
+ {
+ "id": 3446,
+ "start": 1158.967,
+ "end": 1159.457,
+ "text": "understand"
+ },
+ {
+ "id": 3447,
+ "start": 1159.457,
+ "end": 1159.627,
+ "text": "more"
+ },
+ {
+ "id": 3448,
+ "start": 1159.627,
+ "end": 1159.787,
+ "text": "what"
+ },
+ {
+ "id": 3449,
+ "start": 1159.787,
+ "end": 1159.927,
+ "text": "is"
+ },
+ {
+ "id": 3450,
+ "start": 1159.927,
+ "end": 1160.177,
+ "text": "going"
+ },
+ {
+ "id": 3451,
+ "start": 1160.177,
+ "end": 1160.287,
+ "text": "on."
+ },
+ {
+ "id": 3452,
+ "start": 1160.287,
+ "end": 1160.387,
+ "text": "So"
+ },
+ {
+ "id": 3453,
+ "start": 1160.387,
+ "end": 1160.477,
+ "text": "if"
+ },
+ {
+ "id": 3454,
+ "start": 1160.477,
+ "end": 1160.577,
+ "text": "you"
+ },
+ {
+ "id": 3455,
+ "start": 1160.577,
+ "end": 1161.037,
+ "text": "look,"
+ },
+ {
+ "id": 3456,
+ "start": 1160.977,
+ "end": 1161.247,
+ "text": "…"
+ },
+ {
+ "id": 3457,
+ "start": 1161.377,
+ "end": 1161.457,
+ "text": "the"
+ },
+ {
+ "id": 3458,
+ "start": 1161.457,
+ "end": 1161.807,
+ "text": "Atlantic"
+ },
+ {
+ "id": 3459,
+ "start": 1161.807,
+ "end": 1162.097,
+ "text": "Council"
+ },
+ {
+ "id": 3460,
+ "start": 1162.097,
+ "end": 1162.517,
+ "text": "provided"
+ },
+ {
+ "id": 3461,
+ "start": 1162.517,
+ "end": 1162.577,
+ "text": "a"
+ },
+ {
+ "id": 3462,
+ "start": 1162.577,
+ "end": 1162.807,
+ "text": "pretty"
+ },
+ {
+ "id": 3463,
+ "start": 1162.807,
+ "end": 1163.187,
+ "text": "detailed"
+ },
+ {
+ "id": 3464,
+ "start": 1163.187,
+ "end": 1163.647,
+ "text": "analysis"
+ },
+ {
+ "id": 3465,
+ "start": 1163.647,
+ "end": 1163.737,
+ "text": "of"
+ },
+ {
+ "id": 3466,
+ "start": 1163.737,
+ "end": 1163.827,
+ "text": "the"
+ },
+ {
+ "id": 3467,
+ "start": 1163.827,
+ "end": 1164.207,
+ "text": "takedown"
+ },
+ {
+ "id": 3468,
+ "start": 1164.207,
+ "end": 1164.347,
+ "text": "from"
+ },
+ {
+ "id": 3469,
+ "start": 1164.347,
+ "end": 1164.957,
+ "text": "July,"
+ },
+ {
+ "id": 3470,
+ "start": 1164.827,
+ "end": 1165.197,
+ "text": "and"
+ },
+ {
+ "id": 3471,
+ "start": 1165.2820000000002,
+ "end": 1165.6819999999998,
+ "text": "FireEye"
+ },
+ {
+ "id": 3472,
+ "start": 1165.737,
+ "end": 1166.167,
+ "text": "provided"
+ },
+ {
+ "id": 3473,
+ "start": 1166.167,
+ "end": 1166.367,
+ "text": "their"
+ },
+ {
+ "id": 3474,
+ "start": 1166.367,
+ "end": 1166.597,
+ "text": "own"
+ },
+ {
+ "id": 3475,
+ "start": 1166.597,
+ "end": 1166.957,
+ "text": "detailed"
+ },
+ {
+ "id": 3476,
+ "start": 1166.957,
+ "end": 1167.477,
+ "text": "analysis"
+ },
+ {
+ "id": 3477,
+ "start": 1167.477,
+ "end": 1167.647,
+ "text": "of"
+ },
+ {
+ "id": 3478,
+ "start": 1167.647,
+ "end": 1167.717,
+ "text": "the"
+ },
+ {
+ "id": 3479,
+ "start": 1167.717,
+ "end": 1167.907,
+ "text": "more"
+ },
+ {
+ "id": 3480,
+ "start": 1167.907,
+ "end": 1168.227,
+ "text": "recent"
+ },
+ {
+ "id": 3481,
+ "start": 1168.227,
+ "end": 1169.137,
+ "text": "takedown."
+ },
+ {
+ "id": 3482,
+ "start": 1168.677,
+ "end": 1169.497,
+ "text": "Wasn’t"
+ },
+ {
+ "id": 3483,
+ "start": 1169.1419999999998,
+ "end": 1169.612,
+ "text": "it"
+ },
+ {
+ "id": 3484,
+ "start": 1169.607,
+ "end": 1169.727,
+ "text": "the"
+ },
+ {
+ "id": 3485,
+ "start": 1169.727,
+ "end": 1170.037,
+ "text": "Atlantic"
+ },
+ {
+ "id": 3486,
+ "start": 1170.037,
+ "end": 1170.367,
+ "text": "Council"
+ },
+ {
+ "id": 3487,
+ "start": 1170.367,
+ "end": 1170.497,
+ "text": "that"
+ },
+ {
+ "id": 3488,
+ "start": 1170.497,
+ "end": 1170.777,
+ "text": "actually"
+ },
+ {
+ "id": 3489,
+ "start": 1170.777,
+ "end": 1171.177,
+ "text": "found"
+ },
+ {
+ "id": 3490,
+ "start": 1171.177,
+ "end": 1171.427,
+ "text": "those"
+ },
+ {
+ "id": 3491,
+ "start": 1172.2469999999994,
+ "end": 1172.4170000000004,
+ "text": "accounts?"
+ },
+ {
+ "id": 3492,
+ "start": 1173.317,
+ "end": 1173.407,
+ "text": "I"
+ },
+ {
+ "id": 3493,
+ "start": 1173.407,
+ "end": 1173.687,
+ "text": "think"
+ },
+ {
+ "id": 3494,
+ "start": 1173.687,
+ "end": 1173.777,
+ "text": "you’re"
+ },
+ {
+ "id": 3495,
+ "start": 1173.777,
+ "end": 1174.067,
+ "text": "talking"
+ },
+ {
+ "id": 3496,
+ "start": 1174.067,
+ "end": 1174.297,
+ "text": "about"
+ },
+ {
+ "id": 3497,
+ "start": 1174.6620000000003,
+ "end": 1174.9320000000002,
+ "text": "FireEye,"
+ },
+ {
+ "id": 3498,
+ "start": 1175.257,
+ "end": 1175.567,
+ "text": "which"
+ },
+ {
+ "id": 3499,
+ "start": 1175.567,
+ "end": 1175.887,
+ "text": "found"
+ },
+ {
+ "id": 3500,
+ "start": 1175.887,
+ "end": 1176.157,
+ "text": "some"
+ },
+ {
+ "id": 3501,
+ "start": 1176.157,
+ "end": 1176.247,
+ "text": "of"
+ },
+ {
+ "id": 3502,
+ "start": 1176.247,
+ "end": 1176.337,
+ "text": "the"
+ },
+ {
+ "id": 3503,
+ "start": 1176.337,
+ "end": 1177.657,
+ "text": "accounts."
+ },
+ {
+ "id": 3504,
+ "start": 1177.657,
+ "end": 1178.047,
+ "text": "In"
+ },
+ {
+ "id": 3505,
+ "start": 1178.047,
+ "end": 1178.357,
+ "text": "the"
+ },
+ {
+ "id": 3506,
+ "start": 1178.357,
+ "end": 1178.837,
+ "text": "takedown"
+ },
+ {
+ "id": 3507,
+ "start": 1178.837,
+ "end": 1178.937,
+ "text": "in"
+ },
+ {
+ "id": 3508,
+ "start": 1178.937,
+ "end": 1179.407,
+ "text": "July,"
+ },
+ {
+ "id": 3509,
+ "start": 1179.407,
+ "end": 1179.557,
+ "text": "which"
+ },
+ {
+ "id": 3510,
+ "start": 1179.557,
+ "end": 1179.807,
+ "text": "involved"
+ },
+ {
+ "id": 3511,
+ "start": 1179.807,
+ "end": 1179.977,
+ "text": "both"
+ },
+ {
+ "id": 3512,
+ "start": 1179.977,
+ "end": 1180.887,
+ "text": "Iran"
+ },
+ {
+ "id": 3513,
+ "start": 1180.887,
+ "end": 1181.217,
+ "text": "and"
+ },
+ {
+ "id": 3514,
+ "start": 1181.217,
+ "end": 1182.657,
+ "text": "Russia,"
+ },
+ {
+ "id": 3515,
+ "start": 1182.657,
+ "end": 1182.797,
+ "text": "there"
+ },
+ {
+ "id": 3516,
+ "start": 1182.797,
+ "end": 1182.997,
+ "text": "were"
+ },
+ {
+ "id": 3517,
+ "start": 1182.997,
+ "end": 1183.407,
+ "text": "four"
+ },
+ {
+ "id": 3518,
+ "start": 1183.407,
+ "end": 1183.857,
+ "text": "separate"
+ },
+ {
+ "id": 3519,
+ "start": 1184.1119999999999,
+ "end": 1184.5369999999998,
+ "text": "investigations."
+ },
+ {
+ "id": 3520,
+ "start": 1184.817,
+ "end": 1185.217,
+ "text": "One"
+ },
+ {
+ "id": 3521,
+ "start": 1185.217,
+ "end": 1185.327,
+ "text": "of"
+ },
+ {
+ "id": 3522,
+ "start": 1185.327,
+ "end": 1185.707,
+ "text": "them"
+ },
+ {
+ "id": 3523,
+ "start": 1185.707,
+ "end": 1186.147,
+ "text": "was"
+ },
+ {
+ "id": 3524,
+ "start": 1186.147,
+ "end": 1186.327,
+ "text": "a"
+ },
+ {
+ "id": 3525,
+ "start": 1186.317,
+ "end": 1186.717,
+ "text": "tip,"
+ },
+ {
+ "id": 3526,
+ "start": 1186.747,
+ "end": 1187.012,
+ "text": "[came]"
+ },
+ {
+ "id": 3527,
+ "start": 1187.177,
+ "end": 1187.307,
+ "text": "from"
+ },
+ {
+ "id": 3528,
+ "start": 1187.307,
+ "end": 1187.367,
+ "text": "a"
+ },
+ {
+ "id": 3529,
+ "start": 1187.367,
+ "end": 1188.197,
+ "text": "tip"
+ },
+ {
+ "id": 3530,
+ "start": 1188.197,
+ "end": 1188.607,
+ "text": "that"
+ },
+ {
+ "id": 3531,
+ "start": 1188.607,
+ "end": 1188.767,
+ "text": "was"
+ },
+ {
+ "id": 3532,
+ "start": 1188.767,
+ "end": 1189.117,
+ "text": "provided"
+ },
+ {
+ "id": 3533,
+ "start": 1189.117,
+ "end": 1189.177,
+ "text": "to"
+ },
+ {
+ "id": 3534,
+ "start": 1189.177,
+ "end": 1189.267,
+ "text": "us"
+ },
+ {
+ "id": 3535,
+ "start": 1189.267,
+ "end": 1189.367,
+ "text": "by"
+ },
+ {
+ "id": 3536,
+ "start": 1189.887,
+ "end": 1190.052,
+ "text": "FireEye."
+ },
+ {
+ "id": 3537,
+ "start": 1190.507,
+ "end": 1190.737,
+ "text": "The"
+ },
+ {
+ "id": 3538,
+ "start": 1190.737,
+ "end": 1191.067,
+ "text": "other"
+ },
+ {
+ "id": 3539,
+ "start": 1191.067,
+ "end": 1191.397,
+ "text": "two"
+ },
+ {
+ "id": 3540,
+ "start": 1191.397,
+ "end": 1192.027,
+ "text": "investigations"
+ },
+ {
+ "id": 3541,
+ "start": 1192.027,
+ "end": 1192.227,
+ "text": "into"
+ },
+ {
+ "id": 3542,
+ "start": 1192.227,
+ "end": 1192.937,
+ "text": "Iran"
+ },
+ {
+ "id": 3543,
+ "start": 1192.937,
+ "end": 1193.047,
+ "text": "were"
+ },
+ {
+ "id": 3544,
+ "start": 1193.047,
+ "end": 1193.117,
+ "text": "the"
+ },
+ {
+ "id": 3545,
+ "start": 1193.117,
+ "end": 1193.367,
+ "text": "result"
+ },
+ {
+ "id": 3546,
+ "start": 1193.367,
+ "end": 1193.437,
+ "text": "of"
+ },
+ {
+ "id": 3547,
+ "start": 1193.437,
+ "end": 1193.567,
+ "text": "our"
+ },
+ {
+ "id": 3548,
+ "start": 1193.567,
+ "end": 1193.687,
+ "text": "own"
+ },
+ {
+ "id": 3549,
+ "start": 1193.687,
+ "end": 1194.047,
+ "text": "internal"
+ },
+ {
+ "id": 3550,
+ "start": 1194.047,
+ "end": 1195.037,
+ "text": "investigations,"
+ },
+ {
+ "id": 3551,
+ "start": 1195.037,
+ "end": 1195.517,
+ "text": "and"
+ },
+ {
+ "id": 3552,
+ "start": 1195.517,
+ "end": 1195.617,
+ "text": "the"
+ },
+ {
+ "id": 3553,
+ "start": 1195.617,
+ "end": 1195.907,
+ "text": "Russia"
+ },
+ {
+ "id": 3554,
+ "start": 1195.907,
+ "end": 1196.057,
+ "text": "one"
+ },
+ {
+ "id": 3555,
+ "start": 1196.057,
+ "end": 1196.487,
+ "text": "similarly"
+ },
+ {
+ "id": 3556,
+ "start": 1196.487,
+ "end": 1196.597,
+ "text": "was"
+ },
+ {
+ "id": 3557,
+ "start": 1196.557,
+ "end": 1196.7269999999999,
+ "text": "the"
+ },
+ {
+ "id": 3558,
+ "start": 1196.627,
+ "end": 1196.857,
+ "text": "result"
+ },
+ {
+ "id": 3559,
+ "start": 1196.857,
+ "end": 1196.937,
+ "text": "of"
+ },
+ {
+ "id": 3560,
+ "start": 1196.937,
+ "end": 1197.057,
+ "text": "our"
+ },
+ {
+ "id": 3561,
+ "start": 1197.057,
+ "end": 1197.147,
+ "text": "own"
+ },
+ {
+ "id": 3562,
+ "start": 1197.147,
+ "end": 1197.477,
+ "text": "internal"
+ },
+ {
+ "id": 3563,
+ "start": 1197.477,
+ "end": 1198.057,
+ "text": "investigations"
+ },
+ {
+ "id": 3564,
+ "start": 1198.057,
+ "end": 1198.177,
+ "text": "and"
+ },
+ {
+ "id": 3565,
+ "start": 1198.2069999999999,
+ "end": 1198.3220000000001,
+ "text": "work"
+ },
+ {
+ "id": 3566,
+ "start": 1198.357,
+ "end": 1198.467,
+ "text": "with"
+ },
+ {
+ "id": 3567,
+ "start": 1198.467,
+ "end": 1198.617,
+ "text": "law"
+ },
+ {
+ "id": 3568,
+ "start": 1198.617,
+ "end": 1199.077,
+ "text": "enforcement."
+ },
+ {
+ "id": 3569,
+ "start": 1199.392,
+ "end": 1199.767,
+ "text": "…"
+ },
+ {
+ "id": 3570,
+ "start": 1200.167,
+ "end": 1200.457,
+ "text": "One"
+ },
+ {
+ "id": 3571,
+ "start": 1200.457,
+ "end": 1200.567,
+ "text": "of"
+ },
+ {
+ "id": 3572,
+ "start": 1200.567,
+ "end": 1201.277,
+ "text": "the"
+ },
+ {
+ "id": 3573,
+ "start": 1201.277,
+ "end": 1202.377,
+ "text": "interesting"
+ },
+ {
+ "id": 3574,
+ "start": 1202.377,
+ "end": 1202.987,
+ "text": "ironies"
+ },
+ {
+ "id": 3575,
+ "start": 1202.987,
+ "end": 1203.327,
+ "text": "here"
+ },
+ {
+ "id": 3576,
+ "start": 1203.327,
+ "end": 1203.527,
+ "text": "is"
+ },
+ {
+ "id": 3577,
+ "start": 1203.527,
+ "end": 1205.378,
+ "text": "that"
+ },
+ {
+ "id": 3578,
+ "start": 1205.378,
+ "end": 1205.568,
+ "text": "in"
+ },
+ {
+ "id": 3579,
+ "start": 1205.568,
+ "end": 1205.798,
+ "text": "order"
+ },
+ {
+ "id": 3580,
+ "start": 1205.798,
+ "end": 1205.888,
+ "text": "to"
+ },
+ {
+ "id": 3581,
+ "start": 1205.888,
+ "end": 1206.278,
+ "text": "find"
+ },
+ {
+ "id": 3582,
+ "start": 1206.278,
+ "end": 1206.558,
+ "text": "bad"
+ },
+ {
+ "id": 3583,
+ "start": 1206.558,
+ "end": 1207.648,
+ "text": "actors"
+ },
+ {
+ "id": 3584,
+ "start": 1207.648,
+ "end": 1208.288,
+ "text": "on"
+ },
+ {
+ "id": 3585,
+ "start": 1208.288,
+ "end": 1208.418,
+ "text": "the"
+ },
+ {
+ "id": 3586,
+ "start": 1208.418,
+ "end": 1209.428,
+ "text": "platform,"
+ },
+ {
+ "id": 3587,
+ "start": 1209.428,
+ "end": 1209.678,
+ "text": "are"
+ },
+ {
+ "id": 3588,
+ "start": 1209.678,
+ "end": 1209.888,
+ "text": "you"
+ },
+ {
+ "id": 3589,
+ "start": 1209.888,
+ "end": 1210.188,
+ "text": "having"
+ },
+ {
+ "id": 3590,
+ "start": 1210.188,
+ "end": 1210.298,
+ "text": "to"
+ },
+ {
+ "id": 3591,
+ "start": 1210.298,
+ "end": 1210.498,
+ "text": "do"
+ },
+ {
+ "id": 3592,
+ "start": 1210.498,
+ "end": 1210.808,
+ "text": "more"
+ },
+ {
+ "id": 3593,
+ "start": 1210.808,
+ "end": 1211.748,
+ "text": "surveillance"
+ },
+ {
+ "id": 3594,
+ "start": 1211.748,
+ "end": 1212.098,
+ "text": "of"
+ },
+ {
+ "id": 3595,
+ "start": 1212.098,
+ "end": 1212.818,
+ "text": "Facebook"
+ },
+ {
+ "id": 3596,
+ "start": 1212.818,
+ "end": 1213.278,
+ "text": "users"
+ },
+ {
+ "id": 3597,
+ "start": 1213.278,
+ "end": 1213.448,
+ "text": "more"
+ },
+ {
+ "id": 3598,
+ "start": 1213.448,
+ "end": 1214.828,
+ "text": "generally?"
+ },
+ {
+ "id": 3599,
+ "start": 1214.828,
+ "end": 1214.908,
+ "text": "I"
+ },
+ {
+ "id": 3600,
+ "start": 1214.908,
+ "end": 1215.088,
+ "text": "think"
+ },
+ {
+ "id": 3601,
+ "start": 1215.088,
+ "end": 1215.388,
+ "text": "one"
+ },
+ {
+ "id": 3602,
+ "start": 1215.388,
+ "end": 1215.448,
+ "text": "of"
+ },
+ {
+ "id": 3603,
+ "start": 1215.448,
+ "end": 1215.518,
+ "text": "the"
+ },
+ {
+ "id": 3604,
+ "start": 1215.518,
+ "end": 1215.928,
+ "text": "important"
+ },
+ {
+ "id": 3605,
+ "start": 1215.9479999999999,
+ "end": 1216.218,
+ "text": "things—and"
+ },
+ {
+ "id": 3606,
+ "start": 1216.378,
+ "end": 1216.508,
+ "text": "this"
+ },
+ {
+ "id": 3607,
+ "start": 1216.508,
+ "end": 1216.718,
+ "text": "gets"
+ },
+ {
+ "id": 3608,
+ "start": 1216.718,
+ "end": 1216.788,
+ "text": "to"
+ },
+ {
+ "id": 3609,
+ "start": 1216.788,
+ "end": 1216.888,
+ "text": "your"
+ },
+ {
+ "id": 3610,
+ "start": 1217.213,
+ "end": 1217.293,
+ "text": "point—there’s"
+ },
+ {
+ "id": 3611,
+ "start": 1217.638,
+ "end": 1217.698,
+ "text": "a"
+ },
+ {
+ "id": 3612,
+ "start": 1217.698,
+ "end": 1217.938,
+ "text": "lot"
+ },
+ {
+ "id": 3613,
+ "start": 1217.938,
+ "end": 1218.008,
+ "text": "of"
+ },
+ {
+ "id": 3614,
+ "start": 1218.008,
+ "end": 1218.338,
+ "text": "focus"
+ },
+ {
+ "id": 3615,
+ "start": 1218.338,
+ "end": 1218.458,
+ "text": "on"
+ },
+ {
+ "id": 3616,
+ "start": 1218.458,
+ "end": 1218.528,
+ "text": "the"
+ },
+ {
+ "id": 3617,
+ "start": 1218.528,
+ "end": 1218.888,
+ "text": "nature"
+ },
+ {
+ "id": 3618,
+ "start": 1218.888,
+ "end": 1218.978,
+ "text": "of"
+ },
+ {
+ "id": 3619,
+ "start": 1218.978,
+ "end": 1219.058,
+ "text": "the"
+ },
+ {
+ "id": 3620,
+ "start": 1219.058,
+ "end": 1219.608,
+ "text": "content"
+ },
+ {
+ "id": 3621,
+ "start": 1219.598,
+ "end": 1219.768,
+ "text": "that"
+ },
+ {
+ "id": 3622,
+ "start": 1219.7730000000001,
+ "end": 1219.958,
+ "text": "these"
+ },
+ {
+ "id": 3623,
+ "start": 1219.948,
+ "end": 1220.148,
+ "text": "threat"
+ },
+ {
+ "id": 3624,
+ "start": 1220.148,
+ "end": 1220.448,
+ "text": "actors"
+ },
+ {
+ "id": 3625,
+ "start": 1220.338,
+ "end": 1220.733,
+ "text": "are"
+ },
+ {
+ "id": 3626,
+ "start": 1220.528,
+ "end": 1221.018,
+ "text": "sharing,"
+ },
+ {
+ "id": 3627,
+ "start": 1221.008,
+ "end": 1221.128,
+ "text": "and"
+ },
+ {
+ "id": 3628,
+ "start": 1221.246,
+ "end": 1221.382,
+ "text": "in"
+ },
+ {
+ "id": 3629,
+ "start": 1221.484,
+ "end": 1221.636,
+ "text": "the"
+ },
+ {
+ "id": 3630,
+ "start": 1221.722,
+ "end": 1221.8899999999999,
+ "text": "debate,"
+ },
+ {
+ "id": 3631,
+ "start": 1221.96,
+ "end": 1222.1439999999998,
+ "text": "there’s"
+ },
+ {
+ "id": 3632,
+ "start": 1222.198,
+ "end": 1222.398,
+ "text": "this"
+ },
+ {
+ "id": 3633,
+ "start": 1222.398,
+ "end": 1222.608,
+ "text": "heavy"
+ },
+ {
+ "id": 3634,
+ "start": 1222.608,
+ "end": 1222.908,
+ "text": "focus"
+ },
+ {
+ "id": 3635,
+ "start": 1222.908,
+ "end": 1223.008,
+ "text": "on"
+ },
+ {
+ "id": 3636,
+ "start": 1223.3629999999998,
+ "end": 1223.5130000000001,
+ "text": "misinformation,"
+ },
+ {
+ "id": 3637,
+ "start": 1223.818,
+ "end": 1224.018,
+ "text": "what’s"
+ },
+ {
+ "id": 3638,
+ "start": 1224.018,
+ "end": 1224.228,
+ "text": "being"
+ },
+ {
+ "id": 3639,
+ "start": 1224.228,
+ "end": 1224.658,
+ "text": "said,"
+ },
+ {
+ "id": 3640,
+ "start": 1224.658,
+ "end": 1224.848,
+ "text": "whether"
+ },
+ {
+ "id": 3641,
+ "start": 1224.848,
+ "end": 1224.988,
+ "text": "it’s"
+ },
+ {
+ "id": 3642,
+ "start": 1224.988,
+ "end": 1225.318,
+ "text": "true"
+ },
+ {
+ "id": 3643,
+ "start": 1225.318,
+ "end": 1225.418,
+ "text": "or"
+ },
+ {
+ "id": 3644,
+ "start": 1225.693,
+ "end": 1225.8929999999998,
+ "text": "not."
+ },
+ {
+ "id": 3645,
+ "start": 1226.068,
+ "end": 1226.368,
+ "text": "One"
+ },
+ {
+ "id": 3646,
+ "start": 1226.368,
+ "end": 1226.428,
+ "text": "of"
+ },
+ {
+ "id": 3647,
+ "start": 1226.428,
+ "end": 1226.488,
+ "text": "the"
+ },
+ {
+ "id": 3648,
+ "start": 1226.488,
+ "end": 1226.888,
+ "text": "important"
+ },
+ {
+ "id": 3649,
+ "start": 1226.888,
+ "end": 1227.048,
+ "text": "tools"
+ },
+ {
+ "id": 3650,
+ "start": 1227.048,
+ "end": 1227.138,
+ "text": "that"
+ },
+ {
+ "id": 3651,
+ "start": 1227.138,
+ "end": 1227.248,
+ "text": "we"
+ },
+ {
+ "id": 3652,
+ "start": 1227.248,
+ "end": 1227.568,
+ "text": "focus"
+ },
+ {
+ "id": 3653,
+ "start": 1227.568,
+ "end": 1227.718,
+ "text": "on"
+ },
+ {
+ "id": 3654,
+ "start": 1227.718,
+ "end": 1227.838,
+ "text": "is"
+ },
+ {
+ "id": 3655,
+ "start": 1227.838,
+ "end": 1228.218,
+ "text": "rather"
+ },
+ {
+ "id": 3656,
+ "start": 1228.218,
+ "end": 1228.378,
+ "text": "than"
+ },
+ {
+ "id": 3657,
+ "start": 1228.378,
+ "end": 1228.638,
+ "text": "looking"
+ },
+ {
+ "id": 3658,
+ "start": 1228.638,
+ "end": 1228.708,
+ "text": "at"
+ },
+ {
+ "id": 3659,
+ "start": 1228.708,
+ "end": 1228.778,
+ "text": "the"
+ },
+ {
+ "id": 3660,
+ "start": 1228.778,
+ "end": 1229.318,
+ "text": "content,"
+ },
+ {
+ "id": 3661,
+ "start": 1229.318,
+ "end": 1229.488,
+ "text": "look"
+ },
+ {
+ "id": 3662,
+ "start": 1229.488,
+ "end": 1229.558,
+ "text": "at"
+ },
+ {
+ "id": 3663,
+ "start": 1229.558,
+ "end": 1229.658,
+ "text": "the"
+ },
+ {
+ "id": 3664,
+ "start": 1230.123,
+ "end": 1230.2379999999998,
+ "text": "behavior."
+ },
+ {
+ "id": 3665,
+ "start": 1230.688,
+ "end": 1230.818,
+ "text": "For"
+ },
+ {
+ "id": 3666,
+ "start": 1230.818,
+ "end": 1231.098,
+ "text": "instance,"
+ },
+ {
+ "id": 3667,
+ "start": 1231.098,
+ "end": 1231.218,
+ "text": "the"
+ },
+ {
+ "id": 3668,
+ "start": 1231.218,
+ "end": 1231.488,
+ "text": "use"
+ },
+ {
+ "id": 3669,
+ "start": 1231.488,
+ "end": 1231.568,
+ "text": "of"
+ },
+ {
+ "id": 3670,
+ "start": 1231.568,
+ "end": 1231.818,
+ "text": "fake"
+ },
+ {
+ "id": 3671,
+ "start": 1231.818,
+ "end": 1232.758,
+ "text": "accounts,"
+ },
+ {
+ "id": 3672,
+ "start": 1232.758,
+ "end": 1232.968,
+ "text": "right?"
+ },
+ {
+ "id": 3673,
+ "start": 1232.968,
+ "end": 1233.178,
+ "text": "This"
+ },
+ {
+ "id": 3674,
+ "start": 1233.178,
+ "end": 1233.288,
+ "text": "is"
+ },
+ {
+ "id": 3675,
+ "start": 1233.288,
+ "end": 1233.368,
+ "text": "a"
+ },
+ {
+ "id": 3676,
+ "start": 1233.368,
+ "end": 1234.318,
+ "text": "pattern"
+ },
+ {
+ "id": 3677,
+ "start": 1234.318,
+ "end": 1234.578,
+ "text": "that"
+ },
+ {
+ "id": 3678,
+ "start": 1234.578,
+ "end": 1234.728,
+ "text": "is"
+ },
+ {
+ "id": 3679,
+ "start": 1234.728,
+ "end": 1234.788,
+ "text": "a"
+ },
+ {
+ "id": 3680,
+ "start": 1234.788,
+ "end": 1235.078,
+ "text": "clear"
+ },
+ {
+ "id": 3681,
+ "start": 1235.078,
+ "end": 1235.618,
+ "text": "violation"
+ },
+ {
+ "id": 3682,
+ "start": 1235.618,
+ "end": 1235.878,
+ "text": "of"
+ },
+ {
+ "id": 3683,
+ "start": 1235.878,
+ "end": 1236.108,
+ "text": "our"
+ },
+ {
+ "id": 3684,
+ "start": 1236.108,
+ "end": 1236.328,
+ "text": "terms"
+ },
+ {
+ "id": 3685,
+ "start": 1236.328,
+ "end": 1236.398,
+ "text": "of"
+ },
+ {
+ "id": 3686,
+ "start": 1236.398,
+ "end": 1237.138,
+ "text": "service,"
+ },
+ {
+ "id": 3687,
+ "start": 1237.138,
+ "end": 1237.338,
+ "text": "is"
+ },
+ {
+ "id": 3688,
+ "start": 1237.338,
+ "end": 1237.988,
+ "text": "also"
+ },
+ {
+ "id": 3689,
+ "start": 1237.988,
+ "end": 1238.058,
+ "text": "a"
+ },
+ {
+ "id": 3690,
+ "start": 1238.058,
+ "end": 1238.428,
+ "text": "clear"
+ },
+ {
+ "id": 3691,
+ "start": 1238.428,
+ "end": 1238.898,
+ "text": "indicator"
+ },
+ {
+ "id": 3692,
+ "start": 1238.898,
+ "end": 1239.148,
+ "text": "of"
+ },
+ {
+ "id": 3693,
+ "start": 1239.148,
+ "end": 1239.838,
+ "text": "inauthentic"
+ },
+ {
+ "id": 3694,
+ "start": 1239.838,
+ "end": 1240.458,
+ "text": "engagement"
+ },
+ {
+ "id": 3695,
+ "start": 1240.458,
+ "end": 1240.608,
+ "text": "that"
+ },
+ {
+ "id": 3696,
+ "start": 1240.608,
+ "end": 1240.898,
+ "text": "doesn’t"
+ },
+ {
+ "id": 3697,
+ "start": 1240.898,
+ "end": 1241.238,
+ "text": "involve"
+ },
+ {
+ "id": 3698,
+ "start": 1241.238,
+ "end": 1241.648,
+ "text": "looking"
+ },
+ {
+ "id": 3699,
+ "start": 1241.648,
+ "end": 1242.238,
+ "text": "at"
+ },
+ {
+ "id": 3700,
+ "start": 1242.238,
+ "end": 1242.388,
+ "text": "the"
+ },
+ {
+ "id": 3701,
+ "start": 1242.388,
+ "end": 1242.828,
+ "text": "nature"
+ },
+ {
+ "id": 3702,
+ "start": 1242.828,
+ "end": 1242.908,
+ "text": "of"
+ },
+ {
+ "id": 3703,
+ "start": 1242.908,
+ "end": 1242.978,
+ "text": "the"
+ },
+ {
+ "id": 3704,
+ "start": 1242.978,
+ "end": 1243.338,
+ "text": "speech"
+ },
+ {
+ "id": 3705,
+ "start": 1243.338,
+ "end": 1243.438,
+ "text": "or"
+ },
+ {
+ "id": 3706,
+ "start": 1243.438,
+ "end": 1244.338,
+ "text": "considering"
+ },
+ {
+ "id": 3707,
+ "start": 1244.338,
+ "end": 1244.808,
+ "text": "what"
+ },
+ {
+ "id": 3708,
+ "start": 1244.808,
+ "end": 1245.118,
+ "text": "type"
+ },
+ {
+ "id": 3709,
+ "start": 1245.118,
+ "end": 1245.208,
+ "text": "of"
+ },
+ {
+ "id": 3710,
+ "start": 1245.208,
+ "end": 1245.488,
+ "text": "debate"
+ },
+ {
+ "id": 3711,
+ "start": 1245.488,
+ "end": 1245.578,
+ "text": "is"
+ },
+ {
+ "id": 3712,
+ "start": 1245.968,
+ "end": 1246.1280000000002,
+ "text": "happening."
+ },
+ {
+ "id": 3713,
+ "start": 1246.448,
+ "end": 1246.678,
+ "text": "For"
+ },
+ {
+ "id": 3714,
+ "start": 1246.678,
+ "end": 1246.948,
+ "text": "the"
+ },
+ {
+ "id": 3715,
+ "start": 1246.948,
+ "end": 1247.498,
+ "text": "simple"
+ },
+ {
+ "id": 3716,
+ "start": 1247.498,
+ "end": 1248.278,
+ "text": "forensics"
+ },
+ {
+ "id": 3717,
+ "start": 1248.278,
+ "end": 1248.418,
+ "text": "of"
+ },
+ {
+ "id": 3718,
+ "start": 1248.418,
+ "end": 1248.678,
+ "text": "even"
+ },
+ {
+ "id": 3719,
+ "start": 1248.678,
+ "end": 1249.058,
+ "text": "finding"
+ },
+ {
+ "id": 3720,
+ "start": 1249.058,
+ "end": 1249.338,
+ "text": "fake"
+ },
+ {
+ "id": 3721,
+ "start": 1249.9830000000002,
+ "end": 1250.3029999999999,
+ "text": "accounts,"
+ },
+ {
+ "id": 3722,
+ "start": 1250.908,
+ "end": 1251.268,
+ "text": "do"
+ },
+ {
+ "id": 3723,
+ "start": 1251.268,
+ "end": 1251.428,
+ "text": "you"
+ },
+ {
+ "id": 3724,
+ "start": 1251.428,
+ "end": 1251.638,
+ "text": "have"
+ },
+ {
+ "id": 3725,
+ "start": 1251.638,
+ "end": 1251.748,
+ "text": "to"
+ },
+ {
+ "id": 3726,
+ "start": 1251.748,
+ "end": 1252.308,
+ "text": "augment"
+ },
+ {
+ "id": 3727,
+ "start": 1252.308,
+ "end": 1252.448,
+ "text": "your"
+ },
+ {
+ "id": 3728,
+ "start": 1252.448,
+ "end": 1253.098,
+ "text": "surveillance"
+ },
+ {
+ "id": 3729,
+ "start": 1253.098,
+ "end": 1253.528,
+ "text": "efforts"
+ },
+ {
+ "id": 3730,
+ "start": 1253.528,
+ "end": 1253.678,
+ "text": "of"
+ },
+ {
+ "id": 3731,
+ "start": 1253.678,
+ "end": 1253.918,
+ "text": "the"
+ },
+ {
+ "id": 3732,
+ "start": 1253.918,
+ "end": 1254.388,
+ "text": "Facebook"
+ },
+ {
+ "id": 3733,
+ "start": 1254.388,
+ "end": 1254.898,
+ "text": "community"
+ },
+ {
+ "id": 3734,
+ "start": 1254.898,
+ "end": 1255.008,
+ "text": "in"
+ },
+ {
+ "id": 3735,
+ "start": 1255.008,
+ "end": 1255.208,
+ "text": "order"
+ },
+ {
+ "id": 3736,
+ "start": 1255.208,
+ "end": 1255.308,
+ "text": "to"
+ },
+ {
+ "id": 3737,
+ "start": 1255.308,
+ "end": 1255.668,
+ "text": "find"
+ },
+ {
+ "id": 3738,
+ "start": 1255.668,
+ "end": 1256.348,
+ "text": "them?"
+ },
+ {
+ "id": 3739,
+ "start": 1256.348,
+ "end": 1256.658,
+ "text": "We"
+ },
+ {
+ "id": 3740,
+ "start": 1256.658,
+ "end": 1256.888,
+ "text": "use"
+ },
+ {
+ "id": 3741,
+ "start": 1256.888,
+ "end": 1256.968,
+ "text": "the"
+ },
+ {
+ "id": 3742,
+ "start": 1256.968,
+ "end": 1257.318,
+ "text": "same"
+ },
+ {
+ "id": 3743,
+ "start": 1257.318,
+ "end": 1257.728,
+ "text": "tools"
+ },
+ {
+ "id": 3744,
+ "start": 1257.728,
+ "end": 1257.838,
+ "text": "to"
+ },
+ {
+ "id": 3745,
+ "start": 1257.838,
+ "end": 1258.458,
+ "text": "identify"
+ },
+ {
+ "id": 3746,
+ "start": 1258.868,
+ "end": 1259.2979999999998,
+ "text": "these"
+ },
+ {
+ "id": 3747,
+ "start": 1259.898,
+ "end": 1260.138,
+ "text": "types"
+ },
+ {
+ "id": 3748,
+ "start": 1260.138,
+ "end": 1260.208,
+ "text": "of"
+ },
+ {
+ "id": 3749,
+ "start": 1260.208,
+ "end": 1260.518,
+ "text": "malicious"
+ },
+ {
+ "id": 3750,
+ "start": 1260.518,
+ "end": 1261.118,
+ "text": "actors"
+ },
+ {
+ "id": 3751,
+ "start": 1261.118,
+ "end": 1261.278,
+ "text": "as"
+ },
+ {
+ "id": 3752,
+ "start": 1261.278,
+ "end": 1261.398,
+ "text": "we"
+ },
+ {
+ "id": 3753,
+ "start": 1261.458,
+ "end": 1261.5529999999999,
+ "text": "use"
+ },
+ {
+ "id": 3754,
+ "start": 1261.638,
+ "end": 1261.708,
+ "text": "to"
+ },
+ {
+ "id": 3755,
+ "start": 1261.708,
+ "end": 1261.898,
+ "text": "make"
+ },
+ {
+ "id": 3756,
+ "start": 1261.898,
+ "end": 1262.288,
+ "text": "sure"
+ },
+ {
+ "id": 3757,
+ "start": 1262.288,
+ "end": 1262.408,
+ "text": "that"
+ },
+ {
+ "id": 3758,
+ "start": 1262.408,
+ "end": 1262.518,
+ "text": "we’re"
+ },
+ {
+ "id": 3759,
+ "start": 1262.518,
+ "end": 1262.988,
+ "text": "stopping"
+ },
+ {
+ "id": 3760,
+ "start": 1262.988,
+ "end": 1263.208,
+ "text": "bad"
+ },
+ {
+ "id": 3761,
+ "start": 1263.208,
+ "end": 1263.528,
+ "text": "actors"
+ },
+ {
+ "id": 3762,
+ "start": 1263.528,
+ "end": 1263.628,
+ "text": "that"
+ },
+ {
+ "id": 3763,
+ "start": 1263.628,
+ "end": 1263.688,
+ "text": "are"
+ },
+ {
+ "id": 3764,
+ "start": 1263.688,
+ "end": 1264.118,
+ "text": "driving,"
+ },
+ {
+ "id": 3765,
+ "start": 1264.118,
+ "end": 1264.268,
+ "text": "for"
+ },
+ {
+ "id": 3766,
+ "start": 1264.268,
+ "end": 1264.738,
+ "text": "example,"
+ },
+ {
+ "id": 3767,
+ "start": 1264.738,
+ "end": 1264.898,
+ "text": "hate"
+ },
+ {
+ "id": 3768,
+ "start": 1264.898,
+ "end": 1265.308,
+ "text": "speech"
+ },
+ {
+ "id": 3769,
+ "start": 1265.308,
+ "end": 1265.728,
+ "text": "or"
+ },
+ {
+ "id": 3770,
+ "start": 1265.728,
+ "end": 1266.358,
+ "text": "bullying"
+ },
+ {
+ "id": 3771,
+ "start": 1266.358,
+ "end": 1267.048,
+ "text": "or"
+ },
+ {
+ "id": 3772,
+ "start": 1267.048,
+ "end": 1267.288,
+ "text": "child"
+ },
+ {
+ "id": 3773,
+ "start": 1267.898,
+ "end": 1268.2379999999998,
+ "text": "pornography."
+ },
+ {
+ "id": 3774,
+ "start": 1268.748,
+ "end": 1269.188,
+ "text": "So"
+ },
+ {
+ "id": 3775,
+ "start": 1269.188,
+ "end": 1269.288,
+ "text": "it"
+ },
+ {
+ "id": 3776,
+ "start": 1269.288,
+ "end": 1269.588,
+ "text": "doesn’t"
+ },
+ {
+ "id": 3777,
+ "start": 1269.588,
+ "end": 1270.058,
+ "text": "require"
+ },
+ {
+ "id": 3778,
+ "start": 1270.058,
+ "end": 1270.328,
+ "text": "any"
+ },
+ {
+ "id": 3779,
+ "start": 1270.328,
+ "end": 1270.578,
+ "text": "more"
+ },
+ {
+ "id": 3780,
+ "start": 1270.578,
+ "end": 1270.998,
+ "text": "data"
+ },
+ {
+ "id": 3781,
+ "start": 1270.998,
+ "end": 1271.848,
+ "text": "analysis"
+ },
+ {
+ "id": 3782,
+ "start": 1271.848,
+ "end": 1272.078,
+ "text": "or"
+ },
+ {
+ "id": 3783,
+ "start": 1272.078,
+ "end": 1272.488,
+ "text": "looking"
+ },
+ {
+ "id": 3784,
+ "start": 1272.488,
+ "end": 1273.308,
+ "text": "at"
+ },
+ {
+ "id": 3785,
+ "start": 1273.308,
+ "end": 1273.768,
+ "text": "what"
+ },
+ {
+ "id": 3786,
+ "start": 1273.768,
+ "end": 1273.998,
+ "text": "could"
+ },
+ {
+ "id": 3787,
+ "start": 1273.998,
+ "end": 1274.238,
+ "text": "be"
+ },
+ {
+ "id": 3788,
+ "start": 1274.238,
+ "end": 1274.528,
+ "text": "someone"
+ },
+ {
+ "id": 3789,
+ "start": 1274.458,
+ "end": 1275.1380000000001,
+ "text": "who’s"
+ },
+ {
+ "id": 3790,
+ "start": 1274.678,
+ "end": 1275.748,
+ "text": "not"
+ },
+ {
+ "id": 3791,
+ "start": 1275.748,
+ "end": 1276.198,
+ "text": "a"
+ },
+ {
+ "id": 3792,
+ "start": 1276.198,
+ "end": 1276.498,
+ "text": "bad"
+ },
+ {
+ "id": 3793,
+ "start": 1276.498,
+ "end": 1277.098,
+ "text": "actor"
+ },
+ {
+ "id": 3794,
+ "start": 1277.098,
+ "end": 1277.318,
+ "text": "but"
+ },
+ {
+ "id": 3795,
+ "start": 1277.318,
+ "end": 1277.668,
+ "text": "finding"
+ },
+ {
+ "id": 3796,
+ "start": 1277.668,
+ "end": 1277.808,
+ "text": "out"
+ },
+ {
+ "id": 3797,
+ "start": 1277.808,
+ "end": 1278.018,
+ "text": "more"
+ },
+ {
+ "id": 3798,
+ "start": 1278.018,
+ "end": 1278.268,
+ "text": "about"
+ },
+ {
+ "id": 3799,
+ "start": 1278.268,
+ "end": 1278.468,
+ "text": "him"
+ },
+ {
+ "id": 3800,
+ "start": 1278.468,
+ "end": 1278.548,
+ "text": "or"
+ },
+ {
+ "id": 3801,
+ "start": 1278.843,
+ "end": 1278.963,
+ "text": "her?"
+ },
+ {
+ "id": 3802,
+ "start": 1279.218,
+ "end": 1279.378,
+ "text": "It"
+ },
+ {
+ "id": 3803,
+ "start": 1279.378,
+ "end": 1279.688,
+ "text": "doesn’t"
+ },
+ {
+ "id": 3804,
+ "start": 1279.688,
+ "end": 1280.148,
+ "text": "require"
+ },
+ {
+ "id": 3805,
+ "start": 1280.148,
+ "end": 1280.758,
+ "text": "more"
+ },
+ {
+ "id": 3806,
+ "start": 1281.5013333333336,
+ "end": 1282.1979999999994,
+ "text": "data"
+ },
+ {
+ "id": 3807,
+ "start": 1282.854666666667,
+ "end": 1283.638,
+ "text": "than"
+ },
+ {
+ "id": 3808,
+ "start": 1284.208,
+ "end": 1285.078,
+ "text": "previously"
+ },
+ {
+ "id": 3809,
+ "start": 1285.078,
+ "end": 1285.238,
+ "text": "in"
+ },
+ {
+ "id": 3810,
+ "start": 1285.238,
+ "end": 1285.418,
+ "text": "order"
+ },
+ {
+ "id": 3811,
+ "start": 1285.418,
+ "end": 1285.508,
+ "text": "to"
+ },
+ {
+ "id": 3812,
+ "start": 1285.508,
+ "end": 1285.978,
+ "text": "find"
+ },
+ {
+ "id": 3813,
+ "start": 1285.968,
+ "end": 1286.198,
+ "text": "bad"
+ },
+ {
+ "id": 3814,
+ "start": 1286.6280000000004,
+ "end": 1286.8080000000002,
+ "text": "actors?"
+ },
+ {
+ "id": 3815,
+ "start": 1287.288,
+ "end": 1287.418,
+ "text": "I"
+ },
+ {
+ "id": 3816,
+ "start": 1287.418,
+ "end": 1287.578,
+ "text": "mean,"
+ },
+ {
+ "id": 3817,
+ "start": 1287.561333333333,
+ "end": 1287.748,
+ "text": "our"
+ },
+ {
+ "id": 3818,
+ "start": 1287.7046666666665,
+ "end": 1287.918,
+ "text": "invest—"
+ },
+ {
+ "id": 3819,
+ "start": 1287.848,
+ "end": 1288.088,
+ "text": "We"
+ },
+ {
+ "id": 3820,
+ "start": 1288.088,
+ "end": 1288.308,
+ "text": "know"
+ },
+ {
+ "id": 3821,
+ "start": 1288.308,
+ "end": 1288.468,
+ "text": "how"
+ },
+ {
+ "id": 3822,
+ "start": 1288.468,
+ "end": 1289.228,
+ "text": "investigations"
+ },
+ {
+ "id": 3823,
+ "start": 1289.228,
+ "end": 1289.878,
+ "text": "work,"
+ },
+ {
+ "id": 3824,
+ "start": 1289.878,
+ "end": 1290.928,
+ "text": "so"
+ },
+ {
+ "id": 3825,
+ "start": 1290.928,
+ "end": 1291.418,
+ "text": "you"
+ },
+ {
+ "id": 3826,
+ "start": 1291.418,
+ "end": 1291.668,
+ "text": "need"
+ },
+ {
+ "id": 3827,
+ "start": 1291.668,
+ "end": 1291.938,
+ "text": "more"
+ },
+ {
+ "id": 3828,
+ "start": 1291.938,
+ "end": 1292.848,
+ "text": "intel"
+ },
+ {
+ "id": 3829,
+ "start": 1292.848,
+ "end": 1292.998,
+ "text": "in"
+ },
+ {
+ "id": 3830,
+ "start": 1292.998,
+ "end": 1293.178,
+ "text": "order"
+ },
+ {
+ "id": 3831,
+ "start": 1293.178,
+ "end": 1293.258,
+ "text": "to"
+ },
+ {
+ "id": 3832,
+ "start": 1293.258,
+ "end": 1293.548,
+ "text": "find"
+ },
+ {
+ "id": 3833,
+ "start": 1293.548,
+ "end": 1293.788,
+ "text": "bad"
+ },
+ {
+ "id": 3834,
+ "start": 1293.788,
+ "end": 1294.248,
+ "text": "actors."
+ },
+ {
+ "id": 3835,
+ "start": 1294.248,
+ "end": 1294.458,
+ "text": "That’s"
+ },
+ {
+ "id": 3836,
+ "start": 1294.458,
+ "end": 1294.658,
+ "text": "just"
+ },
+ {
+ "id": 3837,
+ "start": 1294.658,
+ "end": 1294.798,
+ "text": "kind"
+ },
+ {
+ "id": 3838,
+ "start": 1294.798,
+ "end": 1294.868,
+ "text": "of"
+ },
+ {
+ "id": 3839,
+ "start": 1294.868,
+ "end": 1294.938,
+ "text": "the"
+ },
+ {
+ "id": 3840,
+ "start": 1294.938,
+ "end": 1295.298,
+ "text": "nature"
+ },
+ {
+ "id": 3841,
+ "start": 1295.298,
+ "end": 1295.438,
+ "text": "of"
+ },
+ {
+ "id": 3842,
+ "start": 1295.438,
+ "end": 1295.808,
+ "text": "it."
+ },
+ {
+ "id": 3843,
+ "start": 1295.808,
+ "end": 1296.118,
+ "text": "So"
+ },
+ {
+ "id": 3844,
+ "start": 1296.118,
+ "end": 1296.268,
+ "text": "is"
+ },
+ {
+ "id": 3845,
+ "start": 1296.268,
+ "end": 1296.498,
+ "text": "that"
+ },
+ {
+ "id": 3846,
+ "start": 1296.498,
+ "end": 1296.748,
+ "text": "not"
+ },
+ {
+ "id": 3847,
+ "start": 1296.748,
+ "end": 1296.958,
+ "text": "what’s"
+ },
+ {
+ "id": 3848,
+ "start": 1296.958,
+ "end": 1297.188,
+ "text": "going"
+ },
+ {
+ "id": 3849,
+ "start": 1297.188,
+ "end": 1297.308,
+ "text": "on"
+ },
+ {
+ "id": 3850,
+ "start": 1297.308,
+ "end": 1297.858,
+ "text": "here?"
+ },
+ {
+ "id": 3851,
+ "start": 1297.858,
+ "end": 1298.068,
+ "text": "Well,"
+ },
+ {
+ "id": 3852,
+ "start": 1298.068,
+ "end": 1298.128,
+ "text": "I"
+ },
+ {
+ "id": 3853,
+ "start": 1298.128,
+ "end": 1298.298,
+ "text": "think"
+ },
+ {
+ "id": 3854,
+ "start": 1298.298,
+ "end": 1298.428,
+ "text": "there’s"
+ },
+ {
+ "id": 3855,
+ "start": 1298.428,
+ "end": 1298.618,
+ "text": "two"
+ },
+ {
+ "id": 3856,
+ "start": 1298.618,
+ "end": 1299.098,
+ "text": "pieces"
+ },
+ {
+ "id": 3857,
+ "start": 1299.098,
+ "end": 1299.208,
+ "text": "that"
+ },
+ {
+ "id": 3858,
+ "start": 1299.208,
+ "end": 1299.278,
+ "text": "are"
+ },
+ {
+ "id": 3859,
+ "start": 1299.278,
+ "end": 1300.118,
+ "text": "important."
+ },
+ {
+ "id": 3860,
+ "start": 1300.118,
+ "end": 1300.238,
+ "text": "The"
+ },
+ {
+ "id": 3861,
+ "start": 1300.238,
+ "end": 1300.538,
+ "text": "first"
+ },
+ {
+ "id": 3862,
+ "start": 1300.538,
+ "end": 1300.778,
+ "text": "is"
+ },
+ {
+ "id": 3863,
+ "start": 1300.778,
+ "end": 1301.108,
+ "text": "our"
+ },
+ {
+ "id": 3864,
+ "start": 1301.108,
+ "end": 1301.798,
+ "text": "investigators"
+ },
+ {
+ "id": 3865,
+ "start": 1301.798,
+ "end": 1302.178,
+ "text": "work"
+ },
+ {
+ "id": 3866,
+ "start": 1302.178,
+ "end": 1302.398,
+ "text": "within"
+ },
+ {
+ "id": 3867,
+ "start": 1302.398,
+ "end": 1302.458,
+ "text": "a"
+ },
+ {
+ "id": 3868,
+ "start": 1302.458,
+ "end": 1302.778,
+ "text": "very"
+ },
+ {
+ "id": 3869,
+ "start": 1302.778,
+ "end": 1303.208,
+ "text": "rigorous"
+ },
+ {
+ "id": 3870,
+ "start": 1303.208,
+ "end": 1303.488,
+ "text": "ethical"
+ },
+ {
+ "id": 3871,
+ "start": 1303.488,
+ "end": 1304.118,
+ "text": "framework"
+ },
+ {
+ "id": 3872,
+ "start": 1304.118,
+ "end": 1304.298,
+ "text": "of"
+ },
+ {
+ "id": 3873,
+ "start": 1304.298,
+ "end": 1304.518,
+ "text": "when"
+ },
+ {
+ "id": 3874,
+ "start": 1304.518,
+ "end": 1304.618,
+ "text": "they"
+ },
+ {
+ "id": 3875,
+ "start": 1304.618,
+ "end": 1304.778,
+ "text": "look"
+ },
+ {
+ "id": 3876,
+ "start": 1304.778,
+ "end": 1304.858,
+ "text": "at"
+ },
+ {
+ "id": 3877,
+ "start": 1304.858,
+ "end": 1305.058,
+ "text": "things"
+ },
+ {
+ "id": 3878,
+ "start": 1305.058,
+ "end": 1305.158,
+ "text": "and"
+ },
+ {
+ "id": 3879,
+ "start": 1305.158,
+ "end": 1305.268,
+ "text": "when"
+ },
+ {
+ "id": 3880,
+ "start": 1305.268,
+ "end": 1305.368,
+ "text": "they"
+ },
+ {
+ "id": 3881,
+ "start": 1305.368,
+ "end": 1305.708,
+ "text": "don’t"
+ },
+ {
+ "id": 3882,
+ "start": 1305.708,
+ "end": 1305.818,
+ "text": "in"
+ },
+ {
+ "id": 3883,
+ "start": 1305.818,
+ "end": 1305.888,
+ "text": "the"
+ },
+ {
+ "id": 3884,
+ "start": 1305.888,
+ "end": 1306.248,
+ "text": "course"
+ },
+ {
+ "id": 3885,
+ "start": 1306.248,
+ "end": 1306.338,
+ "text": "of"
+ },
+ {
+ "id": 3886,
+ "start": 1306.338,
+ "end": 1306.418,
+ "text": "an"
+ },
+ {
+ "id": 3887,
+ "start": 1306.418,
+ "end": 1307.108,
+ "text": "investigation"
+ },
+ {
+ "id": 3888,
+ "start": 1307.108,
+ "end": 1307.238,
+ "text": "to"
+ },
+ {
+ "id": 3889,
+ "start": 1307.238,
+ "end": 1307.568,
+ "text": "ensure"
+ },
+ {
+ "id": 3890,
+ "start": 1307.568,
+ "end": 1307.698,
+ "text": "that"
+ },
+ {
+ "id": 3891,
+ "start": 1307.698,
+ "end": 1307.838,
+ "text": "they’re"
+ },
+ {
+ "id": 3892,
+ "start": 1308.3280000000002,
+ "end": 1308.4929999999997,
+ "text": "minimizing"
+ },
+ {
+ "id": 3893,
+ "start": 1308.958,
+ "end": 1309.148,
+ "text": "any"
+ },
+ {
+ "id": 3894,
+ "start": 1309.148,
+ "end": 1309.308,
+ "text": "kind"
+ },
+ {
+ "id": 3895,
+ "start": 1309.308,
+ "end": 1309.378,
+ "text": "of"
+ },
+ {
+ "id": 3896,
+ "start": 1309.378,
+ "end": 1310.118,
+ "text": "impact"
+ },
+ {
+ "id": 3897,
+ "start": 1310.118,
+ "end": 1310.418,
+ "text": "of"
+ },
+ {
+ "id": 3898,
+ "start": 1310.418,
+ "end": 1310.498,
+ "text": "the"
+ },
+ {
+ "id": 3899,
+ "start": 1310.578,
+ "end": 1310.808,
+ "text": "sorts"
+ },
+ {
+ "id": 3900,
+ "start": 1310.738,
+ "end": 1311.118,
+ "text": "of"
+ },
+ {
+ "id": 3901,
+ "start": 1311.118,
+ "end": 1311.728,
+ "text": "investigation"
+ },
+ {
+ "id": 3902,
+ "start": 1311.728,
+ "end": 1311.818,
+ "text": "you’re"
+ },
+ {
+ "id": 3903,
+ "start": 1311.818,
+ "end": 1312.188,
+ "text": "talking"
+ },
+ {
+ "id": 3904,
+ "start": 1312.188,
+ "end": 1312.948,
+ "text": "about."
+ },
+ {
+ "id": 3905,
+ "start": 1312.948,
+ "end": 1313.028,
+ "text": "The"
+ },
+ {
+ "id": 3906,
+ "start": 1313.028,
+ "end": 1313.178,
+ "text": "other"
+ },
+ {
+ "id": 3907,
+ "start": 1313.178,
+ "end": 1313.478,
+ "text": "piece"
+ },
+ {
+ "id": 3908,
+ "start": 1313.468,
+ "end": 1313.818,
+ "text": "is"
+ },
+ {
+ "id": 3909,
+ "start": 1313.788,
+ "end": 1314.028,
+ "text": "when"
+ },
+ {
+ "id": 3910,
+ "start": 1314.108,
+ "end": 1314.238,
+ "text": "we’re"
+ },
+ {
+ "id": 3911,
+ "start": 1314.238,
+ "end": 1314.568,
+ "text": "doing"
+ },
+ {
+ "id": 3912,
+ "start": 1314.568,
+ "end": 1314.678,
+ "text": "the"
+ },
+ {
+ "id": 3913,
+ "start": 1314.678,
+ "end": 1315.008,
+ "text": "broader"
+ },
+ {
+ "id": 3914,
+ "start": 1315.008,
+ "end": 1315.688,
+ "text": "analysis,"
+ },
+ {
+ "id": 3915,
+ "start": 1315.688,
+ "end": 1315.778,
+ "text": "when"
+ },
+ {
+ "id": 3916,
+ "start": 1315.778,
+ "end": 1315.888,
+ "text": "we’re"
+ },
+ {
+ "id": 3917,
+ "start": 1315.888,
+ "end": 1316.198,
+ "text": "looking"
+ },
+ {
+ "id": 3918,
+ "start": 1316.198,
+ "end": 1316.268,
+ "text": "at"
+ },
+ {
+ "id": 3919,
+ "start": 1316.268,
+ "end": 1316.668,
+ "text": "pattern"
+ },
+ {
+ "id": 3920,
+ "start": 1316.668,
+ "end": 1317.058,
+ "text": "matching,"
+ },
+ {
+ "id": 3921,
+ "start": 1317.058,
+ "end": 1317.148,
+ "text": "when"
+ },
+ {
+ "id": 3922,
+ "start": 1317.148,
+ "end": 1317.238,
+ "text": "we’re"
+ },
+ {
+ "id": 3923,
+ "start": 1317.238,
+ "end": 1317.448,
+ "text": "trying"
+ },
+ {
+ "id": 3924,
+ "start": 1317.448,
+ "end": 1317.538,
+ "text": "to"
+ },
+ {
+ "id": 3925,
+ "start": 1317.538,
+ "end": 1318.148,
+ "text": "identify"
+ },
+ {
+ "id": 3926,
+ "start": 1318.148,
+ "end": 1318.328,
+ "text": "these"
+ },
+ {
+ "id": 3927,
+ "start": 1318.328,
+ "end": 1318.538,
+ "text": "bad"
+ },
+ {
+ "id": 3928,
+ "start": 1318.833,
+ "end": 1319.0430000000001,
+ "text": "behaviors,"
+ },
+ {
+ "id": 3929,
+ "start": 1319.338,
+ "end": 1319.548,
+ "text": "we"
+ },
+ {
+ "id": 3930,
+ "start": 1319.548,
+ "end": 1319.978,
+ "text": "look"
+ },
+ {
+ "id": 3931,
+ "start": 1320.058,
+ "end": 1320.3746666666666,
+ "text": "at—these"
+ },
+ {
+ "id": 3932,
+ "start": 1320.568,
+ "end": 1320.7713333333331,
+ "text": "can"
+ },
+ {
+ "id": 3933,
+ "start": 1321.078,
+ "end": 1321.168,
+ "text": "be"
+ },
+ {
+ "id": 3934,
+ "start": 1321.168,
+ "end": 1321.298,
+ "text": "sort"
+ },
+ {
+ "id": 3935,
+ "start": 1321.298,
+ "end": 1321.358,
+ "text": "of"
+ },
+ {
+ "id": 3936,
+ "start": 1321.788,
+ "end": 1321.9946666666667,
+ "text": "anonymized"
+ },
+ {
+ "id": 3937,
+ "start": 1322.278,
+ "end": 1322.6313333333335,
+ "text": "behavior"
+ },
+ {
+ "id": 3938,
+ "start": 1322.768,
+ "end": 1323.268,
+ "text": "patterns."
+ },
+ {
+ "id": 3939,
+ "start": 1323.268,
+ "end": 1323.488,
+ "text": "Are"
+ },
+ {
+ "id": 3940,
+ "start": 1323.488,
+ "end": 1323.638,
+ "text": "these"
+ },
+ {
+ "id": 3941,
+ "start": 1323.878,
+ "end": 1324.313,
+ "text": "organizations"
+ },
+ {
+ "id": 3942,
+ "start": 1324.268,
+ "end": 1324.988,
+ "text": "using"
+ },
+ {
+ "id": 3943,
+ "start": 1324.828,
+ "end": 1325.278,
+ "text": "large"
+ },
+ {
+ "id": 3944,
+ "start": 1325.0963333333334,
+ "end": 1325.4563333333335,
+ "text": "amounts"
+ },
+ {
+ "id": 3945,
+ "start": 1325.3646666666666,
+ "end": 1325.6346666666668,
+ "text": "of"
+ },
+ {
+ "id": 3946,
+ "start": 1325.633,
+ "end": 1325.813,
+ "text": "fake"
+ },
+ {
+ "id": 3947,
+ "start": 1326.018,
+ "end": 1326.3680000000004,
+ "text": "accounts?"
+ },
+ {
+ "id": 3948,
+ "start": 1326.403,
+ "end": 1326.923,
+ "text": "What"
+ },
+ {
+ "id": 3949,
+ "start": 1326.923,
+ "end": 1327.123,
+ "text": "sort"
+ },
+ {
+ "id": 3950,
+ "start": 1327.123,
+ "end": 1327.243,
+ "text": "of"
+ },
+ {
+ "id": 3951,
+ "start": 1327.243,
+ "end": 1327.573,
+ "text": "ads,"
+ },
+ {
+ "id": 3952,
+ "start": 1327.573,
+ "end": 1327.673,
+ "text": "and"
+ },
+ {
+ "id": 3953,
+ "start": 1327.673,
+ "end": 1327.833,
+ "text": "where"
+ },
+ {
+ "id": 3954,
+ "start": 1327.7696666666666,
+ "end": 1327.9396666666667,
+ "text": "are"
+ },
+ {
+ "id": 3955,
+ "start": 1327.8663333333334,
+ "end": 1328.0463333333335,
+ "text": "these"
+ },
+ {
+ "id": 3956,
+ "start": 1327.963,
+ "end": 1328.153,
+ "text": "ads"
+ },
+ {
+ "id": 3957,
+ "start": 1328.153,
+ "end": 1328.483,
+ "text": "coming"
+ },
+ {
+ "id": 3958,
+ "start": 1328.483,
+ "end": 1328.803,
+ "text": "from?"
+ },
+ {
+ "id": 3959,
+ "start": 1328.793,
+ "end": 1328.953,
+ "text": "These"
+ },
+ {
+ "id": 3960,
+ "start": 1328.9279999999999,
+ "end": 1329.408,
+ "text": "are"
+ },
+ {
+ "id": 3961,
+ "start": 1329.063,
+ "end": 1329.863,
+ "text": "indicators"
+ },
+ {
+ "id": 3962,
+ "start": 1329.603,
+ "end": 1330.078,
+ "text": "that"
+ },
+ {
+ "id": 3963,
+ "start": 1330.143,
+ "end": 1330.293,
+ "text": "can"
+ },
+ {
+ "id": 3964,
+ "start": 1330.293,
+ "end": 1330.573,
+ "text": "help"
+ },
+ {
+ "id": 3965,
+ "start": 1330.573,
+ "end": 1330.653,
+ "text": "us"
+ },
+ {
+ "id": 3966,
+ "start": 1330.653,
+ "end": 1331.013,
+ "text": "understand"
+ },
+ {
+ "id": 3967,
+ "start": 1331.013,
+ "end": 1331.103,
+ "text": "where"
+ },
+ {
+ "id": 3968,
+ "start": 1331.103,
+ "end": 1331.163,
+ "text": "to"
+ },
+ {
+ "id": 3969,
+ "start": 1331.163,
+ "end": 1331.493,
+ "text": "start"
+ },
+ {
+ "id": 3970,
+ "start": 1331.493,
+ "end": 1333.343,
+ "text": "looking."
+ },
+ {
+ "id": 3971,
+ "start": 1333.343,
+ "end": 1333.593,
+ "text": "What’s"
+ },
+ {
+ "id": 3972,
+ "start": 1333.593,
+ "end": 1333.723,
+ "text": "your"
+ },
+ {
+ "id": 3973,
+ "start": 1334.088,
+ "end": 1334.453,
+ "text": "worst-case"
+ },
+ {
+ "id": 3974,
+ "start": 1334.583,
+ "end": 1335.183,
+ "text": "scenario"
+ },
+ {
+ "id": 3975,
+ "start": 1335.183,
+ "end": 1335.373,
+ "text": "for"
+ },
+ {
+ "id": 3976,
+ "start": 1335.373,
+ "end": 1335.833,
+ "text": "Election"
+ },
+ {
+ "id": 3977,
+ "start": 1335.833,
+ "end": 1336.053,
+ "text": "Day?"
+ },
+ {
+ "id": 3978,
+ "start": 1336.7863333333335,
+ "end": 1337.1529999999993,
+ "text": "Our"
+ },
+ {
+ "id": 3979,
+ "start": 1337.7396666666668,
+ "end": 1338.2529999999997,
+ "text": "worst-case"
+ },
+ {
+ "id": 3980,
+ "start": 1338.693,
+ "end": 1339.353,
+ "text": "scenario?"
+ },
+ {
+ "id": 3981,
+ "start": 1340.1679999999997,
+ "end": 1340.5529999999999,
+ "text": "Yeah."
+ },
+ {
+ "id": 3982,
+ "start": 1341.643,
+ "end": 1341.753,
+ "text": "I"
+ },
+ {
+ "id": 3983,
+ "start": 1341.753,
+ "end": 1342.743,
+ "text": "think"
+ },
+ {
+ "id": 3984,
+ "start": 1342.743,
+ "end": 1342.933,
+ "text": "we"
+ },
+ {
+ "id": 3985,
+ "start": 1342.933,
+ "end": 1343.093,
+ "text": "all"
+ },
+ {
+ "id": 3986,
+ "start": 1343.093,
+ "end": 1343.503,
+ "text": "know"
+ },
+ {
+ "id": 3987,
+ "start": 1343.503,
+ "end": 1343.903,
+ "text": "some"
+ },
+ {
+ "id": 3988,
+ "start": 1343.903,
+ "end": 1343.993,
+ "text": "of"
+ },
+ {
+ "id": 3989,
+ "start": 1343.993,
+ "end": 1344.093,
+ "text": "the"
+ },
+ {
+ "id": 3990,
+ "start": 1344.093,
+ "end": 1344.863,
+ "text": "things"
+ },
+ {
+ "id": 3991,
+ "start": 1344.863,
+ "end": 1345.083,
+ "text": "that"
+ },
+ {
+ "id": 3992,
+ "start": 1345.083,
+ "end": 1345.143,
+ "text": "are"
+ },
+ {
+ "id": 3993,
+ "start": 1345.1663333333336,
+ "end": 1345.3196666666668,
+ "text": "going"
+ },
+ {
+ "id": 3994,
+ "start": 1345.2496666666668,
+ "end": 1345.4963333333335,
+ "text": "to"
+ },
+ {
+ "id": 3995,
+ "start": 1345.333,
+ "end": 1345.673,
+ "text": "come"
+ },
+ {
+ "id": 3996,
+ "start": 1345.673,
+ "end": 1345.843,
+ "text": "and"
+ },
+ {
+ "id": 3997,
+ "start": 1345.843,
+ "end": 1346.023,
+ "text": "some"
+ },
+ {
+ "id": 3998,
+ "start": 1346.023,
+ "end": 1346.113,
+ "text": "of"
+ },
+ {
+ "id": 3999,
+ "start": 1346.113,
+ "end": 1346.183,
+ "text": "the"
+ },
+ {
+ "id": 4000,
+ "start": 1346.183,
+ "end": 1346.453,
+ "text": "things"
+ },
+ {
+ "id": 4001,
+ "start": 1346.453,
+ "end": 1346.513,
+ "text": "we"
+ },
+ {
+ "id": 4002,
+ "start": 1346.513,
+ "end": 1346.843,
+ "text": "expect"
+ },
+ {
+ "id": 4003,
+ "start": 1346.843,
+ "end": 1346.993,
+ "text": "these"
+ },
+ {
+ "id": 4004,
+ "start": 1346.993,
+ "end": 1347.303,
+ "text": "actors"
+ },
+ {
+ "id": 4005,
+ "start": 1347.303,
+ "end": 1347.403,
+ "text": "to"
+ },
+ {
+ "id": 4006,
+ "start": 1347.403,
+ "end": 1348.023,
+ "text": "use."
+ },
+ {
+ "id": 4007,
+ "start": 1348.023,
+ "end": 1348.193,
+ "text": "I"
+ },
+ {
+ "id": 4008,
+ "start": 1348.193,
+ "end": 1348.403,
+ "text": "think"
+ },
+ {
+ "id": 4009,
+ "start": 1348.403,
+ "end": 1348.583,
+ "text": "from"
+ },
+ {
+ "id": 4010,
+ "start": 1348.583,
+ "end": 1348.743,
+ "text": "my"
+ },
+ {
+ "id": 4011,
+ "start": 1348.743,
+ "end": 1349.733,
+ "text": "perspective,"
+ },
+ {
+ "id": 4012,
+ "start": 1349.733,
+ "end": 1349.863,
+ "text": "I"
+ },
+ {
+ "id": 4013,
+ "start": 1349.863,
+ "end": 1350.393,
+ "text": "know"
+ },
+ {
+ "id": 4014,
+ "start": 1350.393,
+ "end": 1350.503,
+ "text": "that"
+ },
+ {
+ "id": 4015,
+ "start": 1350.503,
+ "end": 1350.593,
+ "text": "they’re"
+ },
+ {
+ "id": 4016,
+ "start": 1350.593,
+ "end": 1350.713,
+ "text": "going"
+ },
+ {
+ "id": 4017,
+ "start": 1350.713,
+ "end": 1350.773,
+ "text": "to"
+ },
+ {
+ "id": 4018,
+ "start": 1350.773,
+ "end": 1350.873,
+ "text": "do"
+ },
+ {
+ "id": 4019,
+ "start": 1350.873,
+ "end": 1351.183,
+ "text": "things"
+ },
+ {
+ "id": 4020,
+ "start": 1351.183,
+ "end": 1351.263,
+ "text": "I"
+ },
+ {
+ "id": 4021,
+ "start": 1351.263,
+ "end": 1351.553,
+ "text": "haven’t"
+ },
+ {
+ "id": 4022,
+ "start": 1351.553,
+ "end": 1351.743,
+ "text": "thought"
+ },
+ {
+ "id": 4023,
+ "start": 1351.848,
+ "end": 1352.0330000000001,
+ "text": "of,"
+ },
+ {
+ "id": 4024,
+ "start": 1352.143,
+ "end": 1352.323,
+ "text": "and"
+ },
+ {
+ "id": 4025,
+ "start": 1352.323,
+ "end": 1352.453,
+ "text": "we"
+ },
+ {
+ "id": 4026,
+ "start": 1352.453,
+ "end": 1352.623,
+ "text": "know"
+ },
+ {
+ "id": 4027,
+ "start": 1352.623,
+ "end": 1352.713,
+ "text": "that"
+ },
+ {
+ "id": 4028,
+ "start": 1352.713,
+ "end": 1352.813,
+ "text": "they’re"
+ },
+ {
+ "id": 4029,
+ "start": 1352.813,
+ "end": 1352.933,
+ "text": "going"
+ },
+ {
+ "id": 4030,
+ "start": 1352.933,
+ "end": 1352.993,
+ "text": "to"
+ },
+ {
+ "id": 4031,
+ "start": 1352.993,
+ "end": 1353.053,
+ "text": "do"
+ },
+ {
+ "id": 4032,
+ "start": 1353.053,
+ "end": 1353.273,
+ "text": "things"
+ },
+ {
+ "id": 4033,
+ "start": 1353.273,
+ "end": 1353.403,
+ "text": "we"
+ },
+ {
+ "id": 4034,
+ "start": 1353.403,
+ "end": 1353.663,
+ "text": "haven’t"
+ },
+ {
+ "id": 4035,
+ "start": 1353.663,
+ "end": 1353.883,
+ "text": "thought"
+ },
+ {
+ "id": 4036,
+ "start": 1353.943,
+ "end": 1354.1879999999999,
+ "text": "of."
+ },
+ {
+ "id": 4037,
+ "start": 1354.223,
+ "end": 1354.493,
+ "text": "Trying"
+ },
+ {
+ "id": 4038,
+ "start": 1354.493,
+ "end": 1354.583,
+ "text": "to"
+ },
+ {
+ "id": 4039,
+ "start": 1354.583,
+ "end": 1354.953,
+ "text": "guess"
+ },
+ {
+ "id": 4040,
+ "start": 1354.953,
+ "end": 1355.253,
+ "text": "every"
+ },
+ {
+ "id": 4041,
+ "start": 1355.253,
+ "end": 1355.543,
+ "text": "single"
+ },
+ {
+ "id": 4042,
+ "start": 1355.543,
+ "end": 1356.153,
+ "text": "thing"
+ },
+ {
+ "id": 4043,
+ "start": 1356.043,
+ "end": 1356.293,
+ "text": "is"
+ },
+ {
+ "id": 4044,
+ "start": 1356.1796666666667,
+ "end": 1356.4029999999998,
+ "text": "going"
+ },
+ {
+ "id": 4045,
+ "start": 1356.3163333333332,
+ "end": 1356.513,
+ "text": "to"
+ },
+ {
+ "id": 4046,
+ "start": 1356.453,
+ "end": 1356.623,
+ "text": "mean"
+ },
+ {
+ "id": 4047,
+ "start": 1356.623,
+ "end": 1356.763,
+ "text": "we’re"
+ },
+ {
+ "id": 4048,
+ "start": 1356.763,
+ "end": 1357.213,
+ "text": "always"
+ },
+ {
+ "id": 4049,
+ "start": 1357.213,
+ "end": 1357.373,
+ "text": "one"
+ },
+ {
+ "id": 4050,
+ "start": 1357.373,
+ "end": 1357.603,
+ "text": "step"
+ },
+ {
+ "id": 4051,
+ "start": 1357.603,
+ "end": 1358.643,
+ "text": "behind."
+ },
+ {
+ "id": 4052,
+ "start": 1358.643,
+ "end": 1358.883,
+ "text": "What’s"
+ },
+ {
+ "id": 4053,
+ "start": 1358.883,
+ "end": 1359.163,
+ "text": "more"
+ },
+ {
+ "id": 4054,
+ "start": 1359.163,
+ "end": 1359.613,
+ "text": "important"
+ },
+ {
+ "id": 4055,
+ "start": 1359.613,
+ "end": 1359.723,
+ "text": "is"
+ },
+ {
+ "id": 4056,
+ "start": 1359.723,
+ "end": 1359.793,
+ "text": "to"
+ },
+ {
+ "id": 4057,
+ "start": 1359.793,
+ "end": 1359.913,
+ "text": "have"
+ },
+ {
+ "id": 4058,
+ "start": 1359.913,
+ "end": 1359.993,
+ "text": "a"
+ },
+ {
+ "id": 4059,
+ "start": 1359.993,
+ "end": 1360.443,
+ "text": "process"
+ },
+ {
+ "id": 4060,
+ "start": 1360.443,
+ "end": 1360.543,
+ "text": "in"
+ },
+ {
+ "id": 4061,
+ "start": 1360.543,
+ "end": 1360.903,
+ "text": "place"
+ },
+ {
+ "id": 4062,
+ "start": 1360.903,
+ "end": 1361.063,
+ "text": "and"
+ },
+ {
+ "id": 4063,
+ "start": 1360.9830000000002,
+ "end": 1361.1280000000002,
+ "text": "to"
+ },
+ {
+ "id": 4064,
+ "start": 1361.063,
+ "end": 1361.193,
+ "text": "have"
+ },
+ {
+ "id": 4065,
+ "start": 1361.193,
+ "end": 1361.233,
+ "text": "a"
+ },
+ {
+ "id": 4066,
+ "start": 1361.233,
+ "end": 1361.633,
+ "text": "system"
+ },
+ {
+ "id": 4067,
+ "start": 1361.633,
+ "end": 1361.723,
+ "text": "in"
+ },
+ {
+ "id": 4068,
+ "start": 1361.723,
+ "end": 1362.353,
+ "text": "place"
+ },
+ {
+ "id": 4069,
+ "start": 1362.353,
+ "end": 1362.553,
+ "text": "so"
+ },
+ {
+ "id": 4070,
+ "start": 1362.553,
+ "end": 1362.703,
+ "text": "that"
+ },
+ {
+ "id": 4071,
+ "start": 1362.703,
+ "end": 1362.833,
+ "text": "we"
+ },
+ {
+ "id": 4072,
+ "start": 1362.833,
+ "end": 1362.963,
+ "text": "can"
+ },
+ {
+ "id": 4073,
+ "start": 1362.963,
+ "end": 1363.673,
+ "text": "identify"
+ },
+ {
+ "id": 4074,
+ "start": 1363.673,
+ "end": 1363.863,
+ "text": "these"
+ },
+ {
+ "id": 4075,
+ "start": 1363.863,
+ "end": 1364.083,
+ "text": "things"
+ },
+ {
+ "id": 4076,
+ "start": 1364.083,
+ "end": 1364.523,
+ "text": "early"
+ },
+ {
+ "id": 4077,
+ "start": 1364.523,
+ "end": 1364.723,
+ "text": "and"
+ },
+ {
+ "id": 4078,
+ "start": 1364.723,
+ "end": 1364.793,
+ "text": "we"
+ },
+ {
+ "id": 4079,
+ "start": 1364.813,
+ "end": 1364.9279999999999,
+ "text": "can"
+ },
+ {
+ "id": 4080,
+ "start": 1364.903,
+ "end": 1365.063,
+ "text": "move"
+ },
+ {
+ "id": 4081,
+ "start": 1365.063,
+ "end": 1365.433,
+ "text": "very"
+ },
+ {
+ "id": 4082,
+ "start": 1365.433,
+ "end": 1365.783,
+ "text": "quickly"
+ },
+ {
+ "id": 4083,
+ "start": 1365.783,
+ "end": 1365.903,
+ "text": "to"
+ },
+ {
+ "id": 4084,
+ "start": 1365.903,
+ "end": 1367.033,
+ "text": "respond."
+ },
+ {
+ "id": 4085,
+ "start": 1367.033,
+ "end": 1367.083,
+ "text": "I"
+ },
+ {
+ "id": 4086,
+ "start": 1367.083,
+ "end": 1367.353,
+ "text": "talked"
+ },
+ {
+ "id": 4087,
+ "start": 1367.353,
+ "end": 1367.783,
+ "text": "earlier"
+ },
+ {
+ "id": 4088,
+ "start": 1367.783,
+ "end": 1367.983,
+ "text": "about"
+ },
+ {
+ "id": 4089,
+ "start": 1367.983,
+ "end": 1368.163,
+ "text": "this"
+ },
+ {
+ "id": 4090,
+ "start": 1368.163,
+ "end": 1368.673,
+ "text": "idea"
+ },
+ {
+ "id": 4091,
+ "start": 1368.673,
+ "end": 1369.433,
+ "text": "of"
+ },
+ {
+ "id": 4092,
+ "start": 1369.433,
+ "end": 1369.773,
+ "text": "looking"
+ },
+ {
+ "id": 4093,
+ "start": 1369.773,
+ "end": 1369.903,
+ "text": "for"
+ },
+ {
+ "id": 4094,
+ "start": 1369.903,
+ "end": 1370.923,
+ "text": "needles"
+ },
+ {
+ "id": 4095,
+ "start": 1370.923,
+ "end": 1371.073,
+ "text": "and"
+ },
+ {
+ "id": 4096,
+ "start": 1371.073,
+ "end": 1371.513,
+ "text": "shrinking"
+ },
+ {
+ "id": 4097,
+ "start": 1371.513,
+ "end": 1371.593,
+ "text": "the"
+ },
+ {
+ "id": 4098,
+ "start": 1371.593,
+ "end": 1372.943,
+ "text": "haystack."
+ },
+ {
+ "id": 4099,
+ "start": 1372.943,
+ "end": 1373.263,
+ "text": "Putting"
+ },
+ {
+ "id": 4100,
+ "start": 1373.263,
+ "end": 1373.483,
+ "text": "those"
+ },
+ {
+ "id": 4101,
+ "start": 1373.483,
+ "end": 1373.673,
+ "text": "two"
+ },
+ {
+ "id": 4102,
+ "start": 1373.673,
+ "end": 1373.923,
+ "text": "types"
+ },
+ {
+ "id": 4103,
+ "start": 1373.923,
+ "end": 1374.003,
+ "text": "of"
+ },
+ {
+ "id": 4104,
+ "start": 1374.003,
+ "end": 1374.333,
+ "text": "efforts"
+ },
+ {
+ "id": 4105,
+ "start": 1374.333,
+ "end": 1375.333,
+ "text": "together"
+ },
+ {
+ "id": 4106,
+ "start": 1375.333,
+ "end": 1375.513,
+ "text": "is"
+ },
+ {
+ "id": 4107,
+ "start": 1375.513,
+ "end": 1375.793,
+ "text": "really"
+ },
+ {
+ "id": 4108,
+ "start": 1375.793,
+ "end": 1376.173,
+ "text": "important"
+ },
+ {
+ "id": 4109,
+ "start": 1376.173,
+ "end": 1376.313,
+ "text": "here,"
+ },
+ {
+ "id": 4110,
+ "start": 1376.313,
+ "end": 1376.553,
+ "text": "because"
+ },
+ {
+ "id": 4111,
+ "start": 1376.553,
+ "end": 1376.743,
+ "text": "when"
+ },
+ {
+ "id": 4112,
+ "start": 1376.743,
+ "end": 1376.853,
+ "text": "you"
+ },
+ {
+ "id": 4113,
+ "start": 1376.853,
+ "end": 1377.053,
+ "text": "look"
+ },
+ {
+ "id": 4114,
+ "start": 1377.053,
+ "end": 1377.153,
+ "text": "for"
+ },
+ {
+ "id": 4115,
+ "start": 1377.153,
+ "end": 1377.743,
+ "text": "needles,"
+ },
+ {
+ "id": 4116,
+ "start": 1377.743,
+ "end": 1377.983,
+ "text": "when"
+ },
+ {
+ "id": 4117,
+ "start": 1377.983,
+ "end": 1378.103,
+ "text": "you’re"
+ },
+ {
+ "id": 4118,
+ "start": 1378.103,
+ "end": 1378.393,
+ "text": "looking"
+ },
+ {
+ "id": 4119,
+ "start": 1378.393,
+ "end": 1378.483,
+ "text": "for"
+ },
+ {
+ "id": 4120,
+ "start": 1378.483,
+ "end": 1378.543,
+ "text": "the"
+ },
+ {
+ "id": 4121,
+ "start": 1378.543,
+ "end": 1378.743,
+ "text": "most"
+ },
+ {
+ "id": 4122,
+ "start": 1378.743,
+ "end": 1379.583,
+ "text": "sophisticated"
+ },
+ {
+ "id": 4123,
+ "start": 1379.583,
+ "end": 1379.813,
+ "text": "bad"
+ },
+ {
+ "id": 4124,
+ "start": 1379.813,
+ "end": 1380.443,
+ "text": "actors,"
+ },
+ {
+ "id": 4125,
+ "start": 1380.233,
+ "end": 1380.733,
+ "text": "those"
+ },
+ {
+ "id": 4126,
+ "start": 1380.483,
+ "end": 1380.773,
+ "text": "are"
+ },
+ {
+ "id": 4127,
+ "start": 1380.733,
+ "end": 1380.813,
+ "text": "the"
+ },
+ {
+ "id": 4128,
+ "start": 1380.813,
+ "end": 1381.023,
+ "text": "ones"
+ },
+ {
+ "id": 4129,
+ "start": 1381.023,
+ "end": 1381.113,
+ "text": "that"
+ },
+ {
+ "id": 4130,
+ "start": 1381.113,
+ "end": 1381.173,
+ "text": "are"
+ },
+ {
+ "id": 4131,
+ "start": 1381.183,
+ "end": 1381.3796666666667,
+ "text": "going"
+ },
+ {
+ "id": 4132,
+ "start": 1381.253,
+ "end": 1381.5863333333332,
+ "text": "to"
+ },
+ {
+ "id": 4133,
+ "start": 1381.323,
+ "end": 1381.793,
+ "text": "try"
+ },
+ {
+ "id": 4134,
+ "start": 1381.793,
+ "end": 1381.993,
+ "text": "new"
+ },
+ {
+ "id": 4135,
+ "start": 1381.993,
+ "end": 1382.533,
+ "text": "techniques"
+ },
+ {
+ "id": 4136,
+ "start": 1382.533,
+ "end": 1383.333,
+ "text": "first,"
+ },
+ {
+ "id": 4137,
+ "start": 1383.333,
+ "end": 1383.493,
+ "text": "and"
+ },
+ {
+ "id": 4138,
+ "start": 1383.493,
+ "end": 1384.363,
+ "text": "having"
+ },
+ {
+ "id": 4139,
+ "start": 1384.363,
+ "end": 1384.523,
+ "text": "this"
+ },
+ {
+ "id": 4140,
+ "start": 1384.523,
+ "end": 1384.703,
+ "text": "sort"
+ },
+ {
+ "id": 4141,
+ "start": 1384.703,
+ "end": 1384.793,
+ "text": "of"
+ },
+ {
+ "id": 4142,
+ "start": 1384.793,
+ "end": 1385.253,
+ "text": "core"
+ },
+ {
+ "id": 4143,
+ "start": 1385.253,
+ "end": 1385.713,
+ "text": "team"
+ },
+ {
+ "id": 4144,
+ "start": 1385.713,
+ "end": 1385.843,
+ "text": "of"
+ },
+ {
+ "id": 4145,
+ "start": 1385.843,
+ "end": 1386.423,
+ "text": "investigators"
+ },
+ {
+ "id": 4146,
+ "start": 1386.423,
+ "end": 1386.773,
+ "text": "focused"
+ },
+ {
+ "id": 4147,
+ "start": 1386.773,
+ "end": 1386.883,
+ "text": "on"
+ },
+ {
+ "id": 4148,
+ "start": 1386.883,
+ "end": 1387.403,
+ "text": "that"
+ },
+ {
+ "id": 4149,
+ "start": 1387.403,
+ "end": 1387.763,
+ "text": "means"
+ },
+ {
+ "id": 4150,
+ "start": 1387.763,
+ "end": 1387.853,
+ "text": "you"
+ },
+ {
+ "id": 4151,
+ "start": 1387.853,
+ "end": 1387.973,
+ "text": "will"
+ },
+ {
+ "id": 4152,
+ "start": 1387.973,
+ "end": 1388.183,
+ "text": "get"
+ },
+ {
+ "id": 4153,
+ "start": 1388.183,
+ "end": 1388.373,
+ "text": "the"
+ },
+ {
+ "id": 4154,
+ "start": 1388.373,
+ "end": 1388.823,
+ "text": "earliest"
+ },
+ {
+ "id": 4155,
+ "start": 1388.823,
+ "end": 1389.473,
+ "text": "indications"
+ },
+ {
+ "id": 4156,
+ "start": 1389.473,
+ "end": 1389.643,
+ "text": "of"
+ },
+ {
+ "id": 4157,
+ "start": 1389.643,
+ "end": 1389.883,
+ "text": "new"
+ },
+ {
+ "id": 4158,
+ "start": 1389.883,
+ "end": 1390.803,
+ "text": "techniques"
+ },
+ {
+ "id": 4159,
+ "start": 1390.803,
+ "end": 1390.973,
+ "text": "like"
+ },
+ {
+ "id": 4160,
+ "start": 1390.973,
+ "end": 1391.093,
+ "text": "what"
+ },
+ {
+ "id": 4161,
+ "start": 1391.093,
+ "end": 1391.193,
+ "text": "you’re"
+ },
+ {
+ "id": 4162,
+ "start": 1391.193,
+ "end": 1391.513,
+ "text": "talking"
+ },
+ {
+ "id": 4163,
+ "start": 1391.798,
+ "end": 1392.2580000000003,
+ "text": "about."
+ },
+ {
+ "id": 4164,
+ "start": 1392.403,
+ "end": 1393.003,
+ "text": "Then"
+ },
+ {
+ "id": 4165,
+ "start": 1393.003,
+ "end": 1393.153,
+ "text": "you"
+ },
+ {
+ "id": 4166,
+ "start": 1393.153,
+ "end": 1393.283,
+ "text": "can"
+ },
+ {
+ "id": 4167,
+ "start": 1393.283,
+ "end": 1393.713,
+ "text": "scale"
+ },
+ {
+ "id": 4168,
+ "start": 1393.713,
+ "end": 1393.893,
+ "text": "those"
+ },
+ {
+ "id": 4169,
+ "start": 1393.893,
+ "end": 1394.403,
+ "text": "up"
+ },
+ {
+ "id": 4170,
+ "start": 1394.403,
+ "end": 1394.503,
+ "text": "to"
+ },
+ {
+ "id": 4171,
+ "start": 1394.503,
+ "end": 1394.653,
+ "text": "have"
+ },
+ {
+ "id": 4172,
+ "start": 1394.653,
+ "end": 1394.703,
+ "text": "a"
+ },
+ {
+ "id": 4173,
+ "start": 1394.703,
+ "end": 1394.943,
+ "text": "much"
+ },
+ {
+ "id": 4174,
+ "start": 1394.943,
+ "end": 1395.313,
+ "text": "larger"
+ },
+ {
+ "id": 4175,
+ "start": 1395.313,
+ "end": 1395.753,
+ "text": "impact"
+ },
+ {
+ "id": 4176,
+ "start": 1395.753,
+ "end": 1396.163,
+ "text": "across"
+ },
+ {
+ "id": 4177,
+ "start": 1396.163,
+ "end": 1396.243,
+ "text": "the"
+ },
+ {
+ "id": 4178,
+ "start": 1396.243,
+ "end": 1397.013,
+ "text": "platform."
+ },
+ {
+ "id": 4179,
+ "start": 1397.013,
+ "end": 1397.183,
+ "text": "Are"
+ },
+ {
+ "id": 4180,
+ "start": 1397.183,
+ "end": 1397.373,
+ "text": "you"
+ },
+ {
+ "id": 4181,
+ "start": 1397.373,
+ "end": 1397.583,
+ "text": "able"
+ },
+ {
+ "id": 4182,
+ "start": 1397.583,
+ "end": 1397.683,
+ "text": "to"
+ },
+ {
+ "id": 4183,
+ "start": 1397.683,
+ "end": 1397.973,
+ "text": "talk"
+ },
+ {
+ "id": 4184,
+ "start": 1397.973,
+ "end": 1398.083,
+ "text": "to"
+ },
+ {
+ "id": 4185,
+ "start": 1398.083,
+ "end": 1398.213,
+ "text": "me"
+ },
+ {
+ "id": 4186,
+ "start": 1398.213,
+ "end": 1398.313,
+ "text": "at"
+ },
+ {
+ "id": 4187,
+ "start": 1398.313,
+ "end": 1398.493,
+ "text": "all"
+ },
+ {
+ "id": 4188,
+ "start": 1398.493,
+ "end": 1398.733,
+ "text": "about"
+ },
+ {
+ "id": 4189,
+ "start": 1398.733,
+ "end": 1398.933,
+ "text": "what"
+ },
+ {
+ "id": 4190,
+ "start": 1398.933,
+ "end": 1399.113,
+ "text": "new"
+ },
+ {
+ "id": 4191,
+ "start": 1399.113,
+ "end": 1399.633,
+ "text": "techniques"
+ },
+ {
+ "id": 4192,
+ "start": 1399.773,
+ "end": 1400.1963333333335,
+ "text": "you’re"
+ },
+ {
+ "id": 4193,
+ "start": 1400.4329999999998,
+ "end": 1400.759666666667,
+ "text": "seeing"
+ },
+ {
+ "id": 4194,
+ "start": 1401.093,
+ "end": 1401.323,
+ "text": "bad"
+ },
+ {
+ "id": 4195,
+ "start": 1401.323,
+ "end": 1401.683,
+ "text": "actors"
+ },
+ {
+ "id": 4196,
+ "start": 1401.683,
+ "end": 1401.893,
+ "text": "use"
+ },
+ {
+ "id": 4197,
+ "start": 1401.893,
+ "end": 1403.133,
+ "text": "here?"
+ },
+ {
+ "id": 4198,
+ "start": 1403.133,
+ "end": 1403.333,
+ "text": "One"
+ },
+ {
+ "id": 4199,
+ "start": 1403.333,
+ "end": 1403.393,
+ "text": "of"
+ },
+ {
+ "id": 4200,
+ "start": 1403.393,
+ "end": 1403.483,
+ "text": "the"
+ },
+ {
+ "id": 4201,
+ "start": 1403.483,
+ "end": 1403.793,
+ "text": "things"
+ },
+ {
+ "id": 4202,
+ "start": 1403.793,
+ "end": 1404.313,
+ "text": "that"
+ },
+ {
+ "id": 4203,
+ "start": 1404.313,
+ "end": 1404.413,
+ "text": "a"
+ },
+ {
+ "id": 4204,
+ "start": 1404.413,
+ "end": 1404.673,
+ "text": "number"
+ },
+ {
+ "id": 4205,
+ "start": 1404.673,
+ "end": 1404.733,
+ "text": "of"
+ },
+ {
+ "id": 4206,
+ "start": 1404.733,
+ "end": 1404.923,
+ "text": "people"
+ },
+ {
+ "id": 4207,
+ "start": 1404.923,
+ "end": 1405.053,
+ "text": "have"
+ },
+ {
+ "id": 4208,
+ "start": 1405.053,
+ "end": 1405.443,
+ "text": "focused"
+ },
+ {
+ "id": 4209,
+ "start": 1405.443,
+ "end": 1405.543,
+ "text": "on"
+ },
+ {
+ "id": 4210,
+ "start": 1405.543,
+ "end": 1405.633,
+ "text": "and"
+ },
+ {
+ "id": 4211,
+ "start": 1405.633,
+ "end": 1405.763,
+ "text": "that"
+ },
+ {
+ "id": 4212,
+ "start": 1405.763,
+ "end": 1406.023,
+ "text": "we’re"
+ },
+ {
+ "id": 4213,
+ "start": 1406.023,
+ "end": 1406.363,
+ "text": "certainly"
+ },
+ {
+ "id": 4214,
+ "start": 1406.363,
+ "end": 1406.733,
+ "text": "focused"
+ },
+ {
+ "id": 4215,
+ "start": 1406.733,
+ "end": 1406.863,
+ "text": "on"
+ },
+ {
+ "id": 4216,
+ "start": 1406.863,
+ "end": 1406.993,
+ "text": "is"
+ },
+ {
+ "id": 4217,
+ "start": 1407.2963333333335,
+ "end": 1407.4796666666666,
+ "text": "manipulated"
+ },
+ {
+ "id": 4218,
+ "start": 1407.7296666666666,
+ "end": 1407.9663333333333,
+ "text": "media."
+ },
+ {
+ "id": 4219,
+ "start": 1408.163,
+ "end": 1408.453,
+ "text": "People"
+ },
+ {
+ "id": 4220,
+ "start": 1408.453,
+ "end": 1408.673,
+ "text": "talk"
+ },
+ {
+ "id": 4221,
+ "start": 1408.673,
+ "end": 1408.943,
+ "text": "about;"
+ },
+ {
+ "id": 4222,
+ "start": 1408.943,
+ "end": 1409.163,
+ "text": "people"
+ },
+ {
+ "id": 4223,
+ "start": 1409.163,
+ "end": 1409.303,
+ "text": "call"
+ },
+ {
+ "id": 4224,
+ "start": 1409.303,
+ "end": 1409.423,
+ "text": "them"
+ },
+ {
+ "id": 4225,
+ "start": 1409.7896666666668,
+ "end": 1410.0963333333332,
+ "text": "deepfakes,"
+ },
+ {
+ "id": 4226,
+ "start": 1410.2763333333335,
+ "end": 1410.7696666666664,
+ "text": "whether"
+ },
+ {
+ "id": 4227,
+ "start": 1410.763,
+ "end": 1411.443,
+ "text": "video"
+ },
+ {
+ "id": 4228,
+ "start": 1411.443,
+ "end": 1411.593,
+ "text": "or"
+ },
+ {
+ "id": 4229,
+ "start": 1411.593,
+ "end": 1411.653,
+ "text": "it"
+ },
+ {
+ "id": 4230,
+ "start": 1411.653,
+ "end": 1411.793,
+ "text": "could"
+ },
+ {
+ "id": 4231,
+ "start": 1411.793,
+ "end": 1412.033,
+ "text": "also"
+ },
+ {
+ "id": 4232,
+ "start": 1412.033,
+ "end": 1412.133,
+ "text": "be"
+ },
+ {
+ "id": 4233,
+ "start": 1412.133,
+ "end": 1412.843,
+ "text": "photographs"
+ },
+ {
+ "id": 4234,
+ "start": 1412.843,
+ "end": 1413.063,
+ "text": "or"
+ },
+ {
+ "id": 4235,
+ "start": 1413.063,
+ "end": 1413.943,
+ "text": "audio"
+ },
+ {
+ "id": 4236,
+ "start": 1413.943,
+ "end": 1414.153,
+ "text": "that"
+ },
+ {
+ "id": 4237,
+ "start": 1414.153,
+ "end": 1414.753,
+ "text": "is"
+ },
+ {
+ "id": 4238,
+ "start": 1414.753,
+ "end": 1415.293,
+ "text": "untrue"
+ },
+ {
+ "id": 4239,
+ "start": 1415.293,
+ "end": 1415.393,
+ "text": "and"
+ },
+ {
+ "id": 4240,
+ "start": 1415.393,
+ "end": 1415.493,
+ "text": "has"
+ },
+ {
+ "id": 4241,
+ "start": 1415.493,
+ "end": 1415.623,
+ "text": "been"
+ },
+ {
+ "id": 4242,
+ "start": 1415.623,
+ "end": 1416.303,
+ "text": "manipulated"
+ },
+ {
+ "id": 4243,
+ "start": 1416.028,
+ "end": 1416.528,
+ "text": "to"
+ },
+ {
+ "id": 4244,
+ "start": 1416.433,
+ "end": 1416.753,
+ "text": "appear"
+ },
+ {
+ "id": 4245,
+ "start": 1416.753,
+ "end": 1417.293,
+ "text": "legitimate,"
+ },
+ {
+ "id": 4246,
+ "start": 1417.293,
+ "end": 1417.853,
+ "text": "right?"
+ },
+ {
+ "id": 4247,
+ "start": 1417.853,
+ "end": 1418.013,
+ "text": "This"
+ },
+ {
+ "id": 4248,
+ "start": 1418.013,
+ "end": 1418.123,
+ "text": "is"
+ },
+ {
+ "id": 4249,
+ "start": 1418.123,
+ "end": 1418.563,
+ "text": "another"
+ },
+ {
+ "id": 4250,
+ "start": 1418.563,
+ "end": 1419.003,
+ "text": "kind"
+ },
+ {
+ "id": 4251,
+ "start": 1419.003,
+ "end": 1419.093,
+ "text": "of"
+ },
+ {
+ "id": 4252,
+ "start": 1419.093,
+ "end": 1420.073,
+ "text": "misinformation"
+ },
+ {
+ "id": 4253,
+ "start": 1420.073,
+ "end": 1420.203,
+ "text": "that"
+ },
+ {
+ "id": 4254,
+ "start": 1420.203,
+ "end": 1420.293,
+ "text": "we"
+ },
+ {
+ "id": 4255,
+ "start": 1420.313,
+ "end": 1420.748,
+ "text": "can"
+ },
+ {
+ "id": 4256,
+ "start": 1420.423,
+ "end": 1421.203,
+ "text": "see"
+ },
+ {
+ "id": 4257,
+ "start": 1421.203,
+ "end": 1422.313,
+ "text": "being"
+ },
+ {
+ "id": 4258,
+ "start": 1422.313,
+ "end": 1422.833,
+ "text": "used"
+ },
+ {
+ "id": 4259,
+ "start": 1422.833,
+ "end": 1422.943,
+ "text": "and"
+ },
+ {
+ "id": 4260,
+ "start": 1423.393,
+ "end": 1423.5179999999998,
+ "text": "utilized,"
+ },
+ {
+ "id": 4261,
+ "start": 1423.953,
+ "end": 1424.093,
+ "text": "so"
+ },
+ {
+ "id": 4262,
+ "start": 1424.093,
+ "end": 1424.223,
+ "text": "this"
+ },
+ {
+ "id": 4263,
+ "start": 1424.223,
+ "end": 1424.343,
+ "text": "is"
+ },
+ {
+ "id": 4264,
+ "start": 1424.343,
+ "end": 1424.513,
+ "text": "one"
+ },
+ {
+ "id": 4265,
+ "start": 1424.513,
+ "end": 1424.583,
+ "text": "of"
+ },
+ {
+ "id": 4266,
+ "start": 1424.583,
+ "end": 1424.673,
+ "text": "the"
+ },
+ {
+ "id": 4267,
+ "start": 1424.673,
+ "end": 1424.943,
+ "text": "things"
+ },
+ {
+ "id": 4268,
+ "start": 1424.943,
+ "end": 1425.063,
+ "text": "that"
+ },
+ {
+ "id": 4269,
+ "start": 1425.063,
+ "end": 1425.323,
+ "text": "we’re"
+ },
+ {
+ "id": 4270,
+ "start": 1425.323,
+ "end": 1425.643,
+ "text": "focused"
+ },
+ {
+ "id": 4271,
+ "start": 1425.573,
+ "end": 1425.808,
+ "text": "on."
+ },
+ {
+ "id": 4272,
+ "start": 1425.823,
+ "end": 1425.973,
+ "text": "How"
+ },
+ {
+ "id": 4273,
+ "start": 1425.973,
+ "end": 1426.063,
+ "text": "do"
+ },
+ {
+ "id": 4274,
+ "start": 1426.063,
+ "end": 1426.173,
+ "text": "we"
+ },
+ {
+ "id": 4275,
+ "start": 1426.173,
+ "end": 1426.533,
+ "text": "detect"
+ },
+ {
+ "id": 4276,
+ "start": 1426.533,
+ "end": 1426.633,
+ "text": "it?"
+ },
+ {
+ "id": 4277,
+ "start": 1426.633,
+ "end": 1426.793,
+ "text": "How"
+ },
+ {
+ "id": 4278,
+ "start": 1426.793,
+ "end": 1426.853,
+ "text": "do"
+ },
+ {
+ "id": 4279,
+ "start": 1426.853,
+ "end": 1426.953,
+ "text": "we"
+ },
+ {
+ "id": 4280,
+ "start": 1426.953,
+ "end": 1427.513,
+ "text": "understand"
+ },
+ {
+ "id": 4281,
+ "start": 1427.513,
+ "end": 1427.613,
+ "text": "it?"
+ },
+ {
+ "id": 4282,
+ "start": 1427.613,
+ "end": 1427.713,
+ "text": "How"
+ },
+ {
+ "id": 4283,
+ "start": 1427.713,
+ "end": 1427.783,
+ "text": "do"
+ },
+ {
+ "id": 4284,
+ "start": 1427.783,
+ "end": 1427.873,
+ "text": "we"
+ },
+ {
+ "id": 4285,
+ "start": 1427.873,
+ "end": 1428.613,
+ "text": "ensure"
+ },
+ {
+ "id": 4286,
+ "start": 1428.613,
+ "end": 1428.793,
+ "text": "that"
+ },
+ {
+ "id": 4287,
+ "start": 1428.793,
+ "end": 1428.913,
+ "text": "our"
+ },
+ {
+ "id": 4288,
+ "start": 1428.913,
+ "end": 1429.353,
+ "text": "policies"
+ },
+ {
+ "id": 4289,
+ "start": 1429.193,
+ "end": 1429.5230000000001,
+ "text": "are"
+ },
+ {
+ "id": 4290,
+ "start": 1429.473,
+ "end": 1429.693,
+ "text": "ready"
+ },
+ {
+ "id": 4291,
+ "start": 1429.693,
+ "end": 1429.943,
+ "text": "for"
+ },
+ {
+ "id": 4292,
+ "start": 1429.943,
+ "end": 1430.173,
+ "text": "it?"
+ },
+ {
+ "id": 4293,
+ "start": 1430.173,
+ "end": 1430.383,
+ "text": "And"
+ },
+ {
+ "id": 4294,
+ "start": 1430.383,
+ "end": 1430.453,
+ "text": "you"
+ },
+ {
+ "id": 4295,
+ "start": 1430.453,
+ "end": 1430.733,
+ "text": "actually"
+ },
+ {
+ "id": 4296,
+ "start": 1430.733,
+ "end": 1430.933,
+ "text": "have"
+ },
+ {
+ "id": 4297,
+ "start": 1430.933,
+ "end": 1431.003,
+ "text": "an"
+ },
+ {
+ "id": 4298,
+ "start": 1431.003,
+ "end": 1431.623,
+ "text": "ability"
+ },
+ {
+ "id": 4299,
+ "start": 1431.623,
+ "end": 1431.773,
+ "text": "to"
+ },
+ {
+ "id": 4300,
+ "start": 1431.773,
+ "end": 1432.223,
+ "text": "detect"
+ },
+ {
+ "id": 4301,
+ "start": 1432.223,
+ "end": 1433.443,
+ "text": "it?"
+ },
+ {
+ "id": 4302,
+ "start": 1433.443,
+ "end": 1433.593,
+ "text": "We’re"
+ },
+ {
+ "id": 4303,
+ "start": 1433.593,
+ "end": 1433.943,
+ "text": "working"
+ },
+ {
+ "id": 4304,
+ "start": 1433.943,
+ "end": 1434.033,
+ "text": "on"
+ },
+ {
+ "id": 4305,
+ "start": 1434.033,
+ "end": 1434.123,
+ "text": "an"
+ },
+ {
+ "id": 4306,
+ "start": 1434.123,
+ "end": 1434.443,
+ "text": "ability"
+ },
+ {
+ "id": 4307,
+ "start": 1434.443,
+ "end": 1434.533,
+ "text": "to"
+ },
+ {
+ "id": 4308,
+ "start": 1434.613,
+ "end": 1434.7063333333333,
+ "text": "detect"
+ },
+ {
+ "id": 4309,
+ "start": 1434.783,
+ "end": 1434.8796666666667,
+ "text": "it."
+ },
+ {
+ "id": 4310,
+ "start": 1434.953,
+ "end": 1435.053,
+ "text": "I"
+ },
+ {
+ "id": 4311,
+ "start": 1435.053,
+ "end": 1435.253,
+ "text": "think"
+ },
+ {
+ "id": 4312,
+ "start": 1435.253,
+ "end": 1435.533,
+ "text": "one"
+ },
+ {
+ "id": 4313,
+ "start": 1435.533,
+ "end": 1435.613,
+ "text": "of"
+ },
+ {
+ "id": 4314,
+ "start": 1435.613,
+ "end": 1435.693,
+ "text": "the"
+ },
+ {
+ "id": 4315,
+ "start": 1435.693,
+ "end": 1435.903,
+ "text": "things"
+ },
+ {
+ "id": 4316,
+ "start": 1435.903,
+ "end": 1436.043,
+ "text": "that’s"
+ },
+ {
+ "id": 4317,
+ "start": 1436.043,
+ "end": 1436.503,
+ "text": "important"
+ },
+ {
+ "id": 4318,
+ "start": 1436.503,
+ "end": 1436.773,
+ "text": "here"
+ },
+ {
+ "id": 4319,
+ "start": 1436.773,
+ "end": 1437.443,
+ "text": "is"
+ },
+ {
+ "id": 4320,
+ "start": 1437.443,
+ "end": 1437.623,
+ "text": "there"
+ },
+ {
+ "id": 4321,
+ "start": 1437.623,
+ "end": 1437.793,
+ "text": "is"
+ },
+ {
+ "id": 4322,
+ "start": 1437.793,
+ "end": 1437.903,
+ "text": "no"
+ },
+ {
+ "id": 4323,
+ "start": 1437.903,
+ "end": 1438.243,
+ "text": "silver"
+ },
+ {
+ "id": 4324,
+ "start": 1438.243,
+ "end": 1438.783,
+ "text": "bullet"
+ },
+ {
+ "id": 4325,
+ "start": 1438.783,
+ "end": 1438.923,
+ "text": "for"
+ },
+ {
+ "id": 4326,
+ "start": 1438.923,
+ "end": 1439.173,
+ "text": "something"
+ },
+ {
+ "id": 4327,
+ "start": 1439.173,
+ "end": 1439.323,
+ "text": "like"
+ },
+ {
+ "id": 4328,
+ "start": 1439.3229999999999,
+ "end": 1439.4430000000002,
+ "text": "this,"
+ },
+ {
+ "id": 4329,
+ "start": 1439.473,
+ "end": 1439.563,
+ "text": "and"
+ },
+ {
+ "id": 4330,
+ "start": 1439.563,
+ "end": 1440.203,
+ "text": "technology"
+ },
+ {
+ "id": 4331,
+ "start": 1440.203,
+ "end": 1440.733,
+ "text": "automated"
+ },
+ {
+ "id": 4332,
+ "start": 1440.733,
+ "end": 1441.493,
+ "text": "detection"
+ },
+ {
+ "id": 4333,
+ "start": 1441.493,
+ "end": 1441.693,
+ "text": "is"
+ },
+ {
+ "id": 4334,
+ "start": 1441.693,
+ "end": 1442.013,
+ "text": "never"
+ },
+ {
+ "id": 4335,
+ "start": 1442.013,
+ "end": 1442.073,
+ "text": "a"
+ },
+ {
+ "id": 4336,
+ "start": 1442.073,
+ "end": 1442.513,
+ "text": "solution"
+ },
+ {
+ "id": 4337,
+ "start": 1442.513,
+ "end": 1442.663,
+ "text": "by"
+ },
+ {
+ "id": 4338,
+ "start": 1442.663,
+ "end": 1443.533,
+ "text": "itself."
+ },
+ {
+ "id": 4339,
+ "start": 1443.533,
+ "end": 1443.683,
+ "text": "It’s"
+ },
+ {
+ "id": 4340,
+ "start": 1443.683,
+ "end": 1443.753,
+ "text": "a"
+ },
+ {
+ "id": 4341,
+ "start": 1443.753,
+ "end": 1443.983,
+ "text": "part"
+ },
+ {
+ "id": 4342,
+ "start": 1443.983,
+ "end": 1444.043,
+ "text": "of"
+ },
+ {
+ "id": 4343,
+ "start": 1444.043,
+ "end": 1444.103,
+ "text": "the"
+ },
+ {
+ "id": 4344,
+ "start": 1444.103,
+ "end": 1444.753,
+ "text": "solution,"
+ },
+ {
+ "id": 4345,
+ "start": 1444.753,
+ "end": 1445.053,
+ "text": "which"
+ },
+ {
+ "id": 4346,
+ "start": 1445.053,
+ "end": 1445.173,
+ "text": "is"
+ },
+ {
+ "id": 4347,
+ "start": 1445.173,
+ "end": 1445.463,
+ "text": "why"
+ },
+ {
+ "id": 4348,
+ "start": 1445.463,
+ "end": 1445.633,
+ "text": "we"
+ },
+ {
+ "id": 4349,
+ "start": 1445.633,
+ "end": 1445.883,
+ "text": "have"
+ },
+ {
+ "id": 4350,
+ "start": 1445.883,
+ "end": 1446.398,
+ "text": "partners"
+ },
+ {
+ "id": 4351,
+ "start": 1446.383,
+ "end": 1446.548,
+ "text": "like"
+ },
+ {
+ "id": 4352,
+ "start": 1446.6705,
+ "end": 1446.873,
+ "text": "third-party"
+ },
+ {
+ "id": 4353,
+ "start": 1446.958,
+ "end": 1447.198,
+ "text": "fact"
+ },
+ {
+ "id": 4354,
+ "start": 1447.198,
+ "end": 1447.538,
+ "text": "checkers"
+ },
+ {
+ "id": 4355,
+ "start": 1447.538,
+ "end": 1447.628,
+ "text": "that"
+ },
+ {
+ "id": 4356,
+ "start": 1447.628,
+ "end": 1447.718,
+ "text": "can"
+ },
+ {
+ "id": 4357,
+ "start": 1447.718,
+ "end": 1447.878,
+ "text": "help"
+ },
+ {
+ "id": 4358,
+ "start": 1447.878,
+ "end": 1447.978,
+ "text": "us"
+ },
+ {
+ "id": 4359,
+ "start": 1447.978,
+ "end": 1448.648,
+ "text": "understand"
+ },
+ {
+ "id": 4360,
+ "start": 1448.648,
+ "end": 1448.728,
+ "text": "the"
+ },
+ {
+ "id": 4361,
+ "start": 1448.728,
+ "end": 1449.038,
+ "text": "nature"
+ },
+ {
+ "id": 4362,
+ "start": 1449.038,
+ "end": 1449.538,
+ "text": "of"
+ },
+ {
+ "id": 4363,
+ "start": 1449.538,
+ "end": 1449.758,
+ "text": "what’s"
+ },
+ {
+ "id": 4364,
+ "start": 1449.758,
+ "end": 1449.988,
+ "text": "out"
+ },
+ {
+ "id": 4365,
+ "start": 1449.988,
+ "end": 1450.358,
+ "text": "there;"
+ },
+ {
+ "id": 4366,
+ "start": 1450.358,
+ "end": 1450.728,
+ "text": "which"
+ },
+ {
+ "id": 4367,
+ "start": 1450.728,
+ "end": 1450.848,
+ "text": "is"
+ },
+ {
+ "id": 4368,
+ "start": 1450.848,
+ "end": 1451.128,
+ "text": "why"
+ },
+ {
+ "id": 4369,
+ "start": 1451.128,
+ "end": 1451.278,
+ "text": "we"
+ },
+ {
+ "id": 4370,
+ "start": 1451.278,
+ "end": 1451.438,
+ "text": "have"
+ },
+ {
+ "id": 4371,
+ "start": 1451.438,
+ "end": 1451.828,
+ "text": "internal"
+ },
+ {
+ "id": 4372,
+ "start": 1452.288,
+ "end": 1452.5430000000001,
+ "text": "teams;"
+ },
+ {
+ "id": 4373,
+ "start": 1453.138,
+ "end": 1453.258,
+ "text": "which"
+ },
+ {
+ "id": 4374,
+ "start": 1453.258,
+ "end": 1453.368,
+ "text": "is"
+ },
+ {
+ "id": 4375,
+ "start": 1453.368,
+ "end": 1453.538,
+ "text": "why"
+ },
+ {
+ "id": 4376,
+ "start": 1453.538,
+ "end": 1453.678,
+ "text": "we"
+ },
+ {
+ "id": 4377,
+ "start": 1453.678,
+ "end": 1454.318,
+ "text": "have"
+ },
+ {
+ "id": 4378,
+ "start": 1454.318,
+ "end": 1454.428,
+ "text": "the"
+ },
+ {
+ "id": 4379,
+ "start": 1454.428,
+ "end": 1454.768,
+ "text": "movement"
+ },
+ {
+ "id": 4380,
+ "start": 1454.768,
+ "end": 1454.938,
+ "text": "from"
+ },
+ {
+ "id": 4381,
+ "start": 1455.138,
+ "end": 1455.328,
+ "text": "10,000"
+ },
+ {
+ "id": 4382,
+ "start": 1455.508,
+ "end": 1455.718,
+ "text": "people"
+ },
+ {
+ "id": 4383,
+ "start": 1455.718,
+ "end": 1455.798,
+ "text": "to"
+ },
+ {
+ "id": 4384,
+ "start": 1456.038,
+ "end": 1456.358,
+ "text": "20,000"
+ },
+ {
+ "id": 4385,
+ "start": 1456.358,
+ "end": 1456.918,
+ "text": "people,"
+ },
+ {
+ "id": 4386,
+ "start": 1456.918,
+ "end": 1457.158,
+ "text": "so"
+ },
+ {
+ "id": 4387,
+ "start": 1457.158,
+ "end": 1457.288,
+ "text": "that"
+ },
+ {
+ "id": 4388,
+ "start": 1457.288,
+ "end": 1457.418,
+ "text": "you"
+ },
+ {
+ "id": 4389,
+ "start": 1457.418,
+ "end": 1457.848,
+ "text": "have"
+ },
+ {
+ "id": 4390,
+ "start": 1457.848,
+ "end": 1458.448,
+ "text": "automated"
+ },
+ {
+ "id": 4391,
+ "start": 1458.448,
+ "end": 1459.008,
+ "text": "tools"
+ },
+ {
+ "id": 4392,
+ "start": 1459.008,
+ "end": 1459.988,
+ "text": "complemented"
+ },
+ {
+ "id": 4393,
+ "start": 1459.988,
+ "end": 1460.758,
+ "text": "with"
+ },
+ {
+ "id": 4394,
+ "start": 1460.758,
+ "end": 1461.068,
+ "text": "human"
+ },
+ {
+ "id": 4395,
+ "start": 1461.068,
+ "end": 1462.378,
+ "text": "analysis."
+ },
+ {
+ "id": 4396,
+ "start": 1462.378,
+ "end": 1462.648,
+ "text": "What’s"
+ },
+ {
+ "id": 4397,
+ "start": 1462.648,
+ "end": 1462.758,
+ "text": "your"
+ },
+ {
+ "id": 4398,
+ "start": 1462.758,
+ "end": 1463.398,
+ "text": "confidence"
+ },
+ {
+ "id": 4399,
+ "start": 1463.398,
+ "end": 1463.698,
+ "text": "level"
+ },
+ {
+ "id": 4400,
+ "start": 1463.698,
+ "end": 1463.998,
+ "text": "going"
+ },
+ {
+ "id": 4401,
+ "start": 1463.998,
+ "end": 1464.238,
+ "text": "into"
+ },
+ {
+ "id": 4402,
+ "start": 1464.238,
+ "end": 1464.338,
+ "text": "the"
+ },
+ {
+ "id": 4403,
+ "start": 1464.338,
+ "end": 1464.928,
+ "text": "midterms"
+ },
+ {
+ "id": 4404,
+ "start": 1464.698,
+ "end": 1465.228,
+ "text": "then"
+ },
+ {
+ "id": 4405,
+ "start": 1465.058,
+ "end": 1465.528,
+ "text": "and"
+ },
+ {
+ "id": 4406,
+ "start": 1465.418,
+ "end": 1465.828,
+ "text": "Election"
+ },
+ {
+ "id": 4407,
+ "start": 1465.828,
+ "end": 1466.498,
+ "text": "Day"
+ },
+ {
+ "id": 4408,
+ "start": 1466.498,
+ "end": 1466.658,
+ "text": "in"
+ },
+ {
+ "id": 4409,
+ "start": 1466.658,
+ "end": 1466.998,
+ "text": "terms"
+ },
+ {
+ "id": 4410,
+ "start": 1466.998,
+ "end": 1467.538,
+ "text": "of"
+ },
+ {
+ "id": 4411,
+ "start": 1467.538,
+ "end": 1467.828,
+ "text": "how"
+ },
+ {
+ "id": 4412,
+ "start": 1467.828,
+ "end": 1468.248,
+ "text": "well"
+ },
+ {
+ "id": 4413,
+ "start": 1468.248,
+ "end": 1469.128,
+ "text": "prepared"
+ },
+ {
+ "id": 4414,
+ "start": 1469.128,
+ "end": 1469.698,
+ "text": "Facebook"
+ },
+ {
+ "id": 4415,
+ "start": 1469.698,
+ "end": 1469.858,
+ "text": "is"
+ },
+ {
+ "id": 4416,
+ "start": 1469.858,
+ "end": 1469.968,
+ "text": "to"
+ },
+ {
+ "id": 4417,
+ "start": 1469.968,
+ "end": 1470.148,
+ "text": "deal"
+ },
+ {
+ "id": 4418,
+ "start": 1470.148,
+ "end": 1470.288,
+ "text": "with"
+ },
+ {
+ "id": 4419,
+ "start": 1470.288,
+ "end": 1470.518,
+ "text": "bad"
+ },
+ {
+ "id": 4420,
+ "start": 1470.518,
+ "end": 1471.628,
+ "text": "actors?"
+ },
+ {
+ "id": 4421,
+ "start": 1471.628,
+ "end": 1471.808,
+ "text": "We"
+ },
+ {
+ "id": 4422,
+ "start": 1471.808,
+ "end": 1471.908,
+ "text": "have"
+ },
+ {
+ "id": 4423,
+ "start": 1471.908,
+ "end": 1472.078,
+ "text": "been"
+ },
+ {
+ "id": 4424,
+ "start": 1472.318,
+ "end": 1472.4479999999999,
+ "text": "laser-focused"
+ },
+ {
+ "id": 4425,
+ "start": 1472.728,
+ "end": 1472.818,
+ "text": "on"
+ },
+ {
+ "id": 4426,
+ "start": 1472.818,
+ "end": 1472.948,
+ "text": "this"
+ },
+ {
+ "id": 4427,
+ "start": 1472.948,
+ "end": 1473.768,
+ "text": "problem,"
+ },
+ {
+ "id": 4428,
+ "start": 1473.768,
+ "end": 1473.898,
+ "text": "and"
+ },
+ {
+ "id": 4429,
+ "start": 1473.898,
+ "end": 1473.948,
+ "text": "I"
+ },
+ {
+ "id": 4430,
+ "start": 1473.948,
+ "end": 1474.238,
+ "text": "think"
+ },
+ {
+ "id": 4431,
+ "start": 1474.238,
+ "end": 1474.348,
+ "text": "the"
+ },
+ {
+ "id": 4432,
+ "start": 1474.348,
+ "end": 1474.678,
+ "text": "best"
+ },
+ {
+ "id": 4433,
+ "start": 1474.678,
+ "end": 1474.788,
+ "text": "way"
+ },
+ {
+ "id": 4434,
+ "start": 1474.788,
+ "end": 1474.868,
+ "text": "to"
+ },
+ {
+ "id": 4435,
+ "start": 1474.868,
+ "end": 1475.138,
+ "text": "measure"
+ },
+ {
+ "id": 4436,
+ "start": 1475.138,
+ "end": 1475.248,
+ "text": "our"
+ },
+ {
+ "id": 4437,
+ "start": 1475.248,
+ "end": 1475.768,
+ "text": "confidence"
+ },
+ {
+ "id": 4438,
+ "start": 1475.768,
+ "end": 1476.298,
+ "text": "level"
+ },
+ {
+ "id": 4439,
+ "start": 1476.298,
+ "end": 1476.458,
+ "text": "is"
+ },
+ {
+ "id": 4440,
+ "start": 1476.458,
+ "end": 1476.558,
+ "text": "to"
+ },
+ {
+ "id": 4441,
+ "start": 1476.558,
+ "end": 1476.778,
+ "text": "look"
+ },
+ {
+ "id": 4442,
+ "start": 1476.778,
+ "end": 1476.848,
+ "text": "at"
+ },
+ {
+ "id": 4443,
+ "start": 1476.848,
+ "end": 1476.998,
+ "text": "the"
+ },
+ {
+ "id": 4444,
+ "start": 1476.998,
+ "end": 1477.448,
+ "text": "impacts"
+ },
+ {
+ "id": 4445,
+ "start": 1477.448,
+ "end": 1477.618,
+ "text": "we’ve"
+ },
+ {
+ "id": 4446,
+ "start": 1477.9430000000004,
+ "end": 1478.163,
+ "text": "had."
+ },
+ {
+ "id": 4447,
+ "start": 1478.438,
+ "end": 1478.708,
+ "text": "From"
+ },
+ {
+ "id": 4448,
+ "start": 1478.708,
+ "end": 1478.878,
+ "text": "my"
+ },
+ {
+ "id": 4449,
+ "start": 1478.878,
+ "end": 1479.718,
+ "text": "perspective,"
+ },
+ {
+ "id": 4450,
+ "start": 1479.718,
+ "end": 1479.968,
+ "text": "one"
+ },
+ {
+ "id": 4451,
+ "start": 1479.968,
+ "end": 1480.028,
+ "text": "of"
+ },
+ {
+ "id": 4452,
+ "start": 1479.998,
+ "end": 1480.1280000000002,
+ "text": "the"
+ },
+ {
+ "id": 4453,
+ "start": 1480.028,
+ "end": 1480.228,
+ "text": "most"
+ },
+ {
+ "id": 4454,
+ "start": 1480.228,
+ "end": 1480.548,
+ "text": "critical"
+ },
+ {
+ "id": 4455,
+ "start": 1480.548,
+ "end": 1480.968,
+ "text": "things"
+ },
+ {
+ "id": 4456,
+ "start": 1480.968,
+ "end": 1481.078,
+ "text": "in"
+ },
+ {
+ "id": 4457,
+ "start": 1481.078,
+ "end": 1481.258,
+ "text": "any"
+ },
+ {
+ "id": 4458,
+ "start": 1481.258,
+ "end": 1481.678,
+ "text": "crisis"
+ },
+ {
+ "id": 4459,
+ "start": 1481.678,
+ "end": 1482.208,
+ "text": "situation,"
+ },
+ {
+ "id": 4460,
+ "start": 1482.208,
+ "end": 1482.318,
+ "text": "which"
+ },
+ {
+ "id": 4461,
+ "start": 1482.318,
+ "end": 1482.388,
+ "text": "is"
+ },
+ {
+ "id": 4462,
+ "start": 1482.388,
+ "end": 1482.488,
+ "text": "what"
+ },
+ {
+ "id": 4463,
+ "start": 1482.488,
+ "end": 1482.578,
+ "text": "we’re"
+ },
+ {
+ "id": 4464,
+ "start": 1482.578,
+ "end": 1482.898,
+ "text": "talking"
+ },
+ {
+ "id": 4465,
+ "start": 1482.898,
+ "end": 1483.088,
+ "text": "about"
+ },
+ {
+ "id": 4466,
+ "start": 1483.088,
+ "end": 1483.328,
+ "text": "here"
+ },
+ {
+ "id": 4467,
+ "start": 1483.328,
+ "end": 1483.428,
+ "text": "in"
+ },
+ {
+ "id": 4468,
+ "start": 1483.428,
+ "end": 1483.518,
+ "text": "an"
+ },
+ {
+ "id": 4469,
+ "start": 1483.518,
+ "end": 1484.378,
+ "text": "election,"
+ },
+ {
+ "id": 4470,
+ "start": 1484.378,
+ "end": 1484.578,
+ "text": "is"
+ },
+ {
+ "id": 4471,
+ "start": 1484.578,
+ "end": 1484.788,
+ "text": "do"
+ },
+ {
+ "id": 4472,
+ "start": 1484.788,
+ "end": 1484.998,
+ "text": "you"
+ },
+ {
+ "id": 4473,
+ "start": 1484.998,
+ "end": 1485.418,
+ "text": "have"
+ },
+ {
+ "id": 4474,
+ "start": 1485.418,
+ "end": 1485.518,
+ "text": "the"
+ },
+ {
+ "id": 4475,
+ "start": 1485.518,
+ "end": 1486.518,
+ "text": "relationships,"
+ },
+ {
+ "id": 4476,
+ "start": 1486.518,
+ "end": 1486.638,
+ "text": "do"
+ },
+ {
+ "id": 4477,
+ "start": 1486.638,
+ "end": 1486.778,
+ "text": "you"
+ },
+ {
+ "id": 4478,
+ "start": 1486.778,
+ "end": 1487.008,
+ "text": "have"
+ },
+ {
+ "id": 4479,
+ "start": 1487.008,
+ "end": 1487.098,
+ "text": "the"
+ },
+ {
+ "id": 4480,
+ "start": 1487.098,
+ "end": 1487.568,
+ "text": "pathways"
+ },
+ {
+ "id": 4481,
+ "start": 1487.568,
+ "end": 1487.698,
+ "text": "and"
+ },
+ {
+ "id": 4482,
+ "start": 1487.698,
+ "end": 1488.428,
+ "text": "channels"
+ },
+ {
+ "id": 4483,
+ "start": 1488.428,
+ "end": 1488.538,
+ "text": "to"
+ },
+ {
+ "id": 4484,
+ "start": 1488.538,
+ "end": 1488.728,
+ "text": "make"
+ },
+ {
+ "id": 4485,
+ "start": 1488.728,
+ "end": 1488.938,
+ "text": "sure"
+ },
+ {
+ "id": 4486,
+ "start": 1488.843,
+ "end": 1489.0529999999999,
+ "text": "that"
+ },
+ {
+ "id": 4487,
+ "start": 1488.958,
+ "end": 1489.168,
+ "text": "you"
+ },
+ {
+ "id": 4488,
+ "start": 1489.073,
+ "end": 1489.283,
+ "text": "can"
+ },
+ {
+ "id": 4489,
+ "start": 1489.188,
+ "end": 1489.398,
+ "text": "move"
+ },
+ {
+ "id": 4490,
+ "start": 1489.398,
+ "end": 1489.708,
+ "text": "quickly"
+ },
+ {
+ "id": 4491,
+ "start": 1489.708,
+ "end": 1489.828,
+ "text": "when"
+ },
+ {
+ "id": 4492,
+ "start": 1489.828,
+ "end": 1489.948,
+ "text": "that"
+ },
+ {
+ "id": 4493,
+ "start": 1490.308,
+ "end": 1490.463,
+ "text": "happens."
+ },
+ {
+ "id": 4494,
+ "start": 1490.788,
+ "end": 1490.978,
+ "text": "One"
+ },
+ {
+ "id": 4495,
+ "start": 1490.978,
+ "end": 1491.498,
+ "text": "advantage"
+ },
+ {
+ "id": 4496,
+ "start": 1491.498,
+ "end": 1491.608,
+ "text": "that"
+ },
+ {
+ "id": 4497,
+ "start": 1491.608,
+ "end": 1491.728,
+ "text": "we"
+ },
+ {
+ "id": 4498,
+ "start": 1491.728,
+ "end": 1492.308,
+ "text": "have"
+ },
+ {
+ "id": 4499,
+ "start": 1492.308,
+ "end": 1492.408,
+ "text": "is"
+ },
+ {
+ "id": 4500,
+ "start": 1492.408,
+ "end": 1492.508,
+ "text": "that"
+ },
+ {
+ "id": 4501,
+ "start": 1492.508,
+ "end": 1492.648,
+ "text": "we’ve"
+ },
+ {
+ "id": 4502,
+ "start": 1492.648,
+ "end": 1492.788,
+ "text": "been"
+ },
+ {
+ "id": 4503,
+ "start": 1492.788,
+ "end": 1493.178,
+ "text": "doing"
+ },
+ {
+ "id": 4504,
+ "start": 1493.178,
+ "end": 1493.368,
+ "text": "these"
+ },
+ {
+ "id": 4505,
+ "start": 1493.368,
+ "end": 1494.158,
+ "text": "disruptions,"
+ },
+ {
+ "id": 4506,
+ "start": 1494.158,
+ "end": 1494.448,
+ "text": "which"
+ },
+ {
+ "id": 4507,
+ "start": 1494.448,
+ "end": 1494.638,
+ "text": "means"
+ },
+ {
+ "id": 4508,
+ "start": 1494.638,
+ "end": 1494.738,
+ "text": "we’ve"
+ },
+ {
+ "id": 4509,
+ "start": 1494.738,
+ "end": 1494.918,
+ "text": "been"
+ },
+ {
+ "id": 4510,
+ "start": 1494.918,
+ "end": 1495.728,
+ "text": "exercising"
+ },
+ {
+ "id": 4511,
+ "start": 1495.728,
+ "end": 1495.888,
+ "text": "this"
+ },
+ {
+ "id": 4512,
+ "start": 1495.888,
+ "end": 1496.768,
+ "text": "process"
+ },
+ {
+ "id": 4513,
+ "start": 1496.768,
+ "end": 1496.998,
+ "text": "and"
+ },
+ {
+ "id": 4514,
+ "start": 1496.998,
+ "end": 1497.148,
+ "text": "these"
+ },
+ {
+ "id": 4515,
+ "start": 1497.148,
+ "end": 1498.118,
+ "text": "pathways,"
+ },
+ {
+ "id": 4516,
+ "start": 1498.118,
+ "end": 1498.348,
+ "text": "both"
+ },
+ {
+ "id": 4517,
+ "start": 1498.348,
+ "end": 1498.648,
+ "text": "inside"
+ },
+ {
+ "id": 4518,
+ "start": 1498.648,
+ "end": 1498.718,
+ "text": "the"
+ },
+ {
+ "id": 4519,
+ "start": 1498.718,
+ "end": 1499.188,
+ "text": "company"
+ },
+ {
+ "id": 4520,
+ "start": 1499.188,
+ "end": 1499.278,
+ "text": "to"
+ },
+ {
+ "id": 4521,
+ "start": 1499.278,
+ "end": 1499.368,
+ "text": "make"
+ },
+ {
+ "id": 4522,
+ "start": 1499.368,
+ "end": 1499.468,
+ "text": "sure"
+ },
+ {
+ "id": 4523,
+ "start": 1499.468,
+ "end": 1499.568,
+ "text": "that"
+ },
+ {
+ "id": 4524,
+ "start": 1499.568,
+ "end": 1499.858,
+ "text": "all"
+ },
+ {
+ "id": 4525,
+ "start": 1499.858,
+ "end": 1499.958,
+ "text": "the"
+ },
+ {
+ "id": 4526,
+ "start": 1499.958,
+ "end": 1500.298,
+ "text": "teams"
+ },
+ {
+ "id": 4527,
+ "start": 1500.298,
+ "end": 1500.358,
+ "text": "are"
+ },
+ {
+ "id": 4528,
+ "start": 1500.358,
+ "end": 1500.748,
+ "text": "working"
+ },
+ {
+ "id": 4529,
+ "start": 1500.748,
+ "end": 1501.108,
+ "text": "together"
+ },
+ {
+ "id": 4530,
+ "start": 1500.978,
+ "end": 1501.193,
+ "text": "in"
+ },
+ {
+ "id": 4531,
+ "start": 1501.208,
+ "end": 1501.278,
+ "text": "the"
+ },
+ {
+ "id": 4532,
+ "start": 1501.278,
+ "end": 1501.428,
+ "text": "way"
+ },
+ {
+ "id": 4533,
+ "start": 1501.428,
+ "end": 1501.538,
+ "text": "they"
+ },
+ {
+ "id": 4534,
+ "start": 1501.538,
+ "end": 1501.758,
+ "text": "need"
+ },
+ {
+ "id": 4535,
+ "start": 1501.903,
+ "end": 1502.078,
+ "text": "to,"
+ },
+ {
+ "id": 4536,
+ "start": 1502.268,
+ "end": 1502.398,
+ "text": "and"
+ },
+ {
+ "id": 4537,
+ "start": 1502.398,
+ "end": 1502.618,
+ "text": "also"
+ },
+ {
+ "id": 4538,
+ "start": 1502.618,
+ "end": 1502.978,
+ "text": "outside"
+ },
+ {
+ "id": 4539,
+ "start": 1502.978,
+ "end": 1503.058,
+ "text": "the"
+ },
+ {
+ "id": 4540,
+ "start": 1503.058,
+ "end": 1503.598,
+ "text": "company,"
+ },
+ {
+ "id": 4541,
+ "start": 1503.598,
+ "end": 1503.888,
+ "text": "because"
+ },
+ {
+ "id": 4542,
+ "start": 1503.888,
+ "end": 1504.088,
+ "text": "for"
+ },
+ {
+ "id": 4543,
+ "start": 1504.088,
+ "end": 1504.368,
+ "text": "everything"
+ },
+ {
+ "id": 4544,
+ "start": 1504.368,
+ "end": 1504.518,
+ "text": "that"
+ },
+ {
+ "id": 4545,
+ "start": 1504.518,
+ "end": 1504.738,
+ "text": "we"
+ },
+ {
+ "id": 4546,
+ "start": 1504.738,
+ "end": 1504.958,
+ "text": "do,"
+ },
+ {
+ "id": 4547,
+ "start": 1504.958,
+ "end": 1505.268,
+ "text": "we’re"
+ },
+ {
+ "id": 4548,
+ "start": 1505.268,
+ "end": 1505.478,
+ "text": "only"
+ },
+ {
+ "id": 4549,
+ "start": 1505.478,
+ "end": 1505.768,
+ "text": "one"
+ },
+ {
+ "id": 4550,
+ "start": 1505.768,
+ "end": 1506.058,
+ "text": "piece"
+ },
+ {
+ "id": 4551,
+ "start": 1506.058,
+ "end": 1506.118,
+ "text": "of"
+ },
+ {
+ "id": 4552,
+ "start": 1506.118,
+ "end": 1506.198,
+ "text": "the"
+ },
+ {
+ "id": 4553,
+ "start": 1506.198,
+ "end": 1507.038,
+ "text": "puzzle,"
+ },
+ {
+ "id": 4554,
+ "start": 1507.038,
+ "end": 1507.488,
+ "text": "and"
+ },
+ {
+ "id": 4555,
+ "start": 1507.488,
+ "end": 1507.868,
+ "text": "making"
+ },
+ {
+ "id": 4556,
+ "start": 1507.868,
+ "end": 1508.138,
+ "text": "sure"
+ },
+ {
+ "id": 4557,
+ "start": 1508.138,
+ "end": 1508.268,
+ "text": "that"
+ },
+ {
+ "id": 4558,
+ "start": 1508.268,
+ "end": 1508.448,
+ "text": "we"
+ },
+ {
+ "id": 4559,
+ "start": 1508.448,
+ "end": 1508.578,
+ "text": "can"
+ },
+ {
+ "id": 4560,
+ "start": 1508.578,
+ "end": 1508.728,
+ "text": "get"
+ },
+ {
+ "id": 4561,
+ "start": 1508.728,
+ "end": 1509.248,
+ "text": "information"
+ },
+ {
+ "id": 4562,
+ "start": 1509.248,
+ "end": 1509.448,
+ "text": "to"
+ },
+ {
+ "id": 4563,
+ "start": 1509.448,
+ "end": 1509.578,
+ "text": "and"
+ },
+ {
+ "id": 4564,
+ "start": 1509.578,
+ "end": 1509.968,
+ "text": "from"
+ },
+ {
+ "id": 4565,
+ "start": 1509.968,
+ "end": 1510.348,
+ "text": "government"
+ },
+ {
+ "id": 4566,
+ "start": 1510.348,
+ "end": 1510.448,
+ "text": "as"
+ },
+ {
+ "id": 4567,
+ "start": 1510.448,
+ "end": 1510.528,
+ "text": "we"
+ },
+ {
+ "id": 4568,
+ "start": 1510.528,
+ "end": 1510.788,
+ "text": "talked"
+ },
+ {
+ "id": 4569,
+ "start": 1510.788,
+ "end": 1511.058,
+ "text": "about"
+ },
+ {
+ "id": 4570,
+ "start": 1511.058,
+ "end": 1511.678,
+ "text": "quickly,"
+ },
+ {
+ "id": 4571,
+ "start": 1511.678,
+ "end": 1511.848,
+ "text": "to"
+ },
+ {
+ "id": 4572,
+ "start": 1511.848,
+ "end": 1511.958,
+ "text": "our"
+ },
+ {
+ "id": 4573,
+ "start": 1511.958,
+ "end": 1512.588,
+ "text": "partners"
+ },
+ {
+ "id": 4574,
+ "start": 1512.588,
+ "end": 1512.808,
+ "text": "in"
+ },
+ {
+ "id": 4575,
+ "start": 1512.808,
+ "end": 1512.878,
+ "text": "the"
+ },
+ {
+ "id": 4576,
+ "start": 1512.878,
+ "end": 1513.158,
+ "text": "private"
+ },
+ {
+ "id": 4577,
+ "start": 1513.158,
+ "end": 1513.448,
+ "text": "sector"
+ },
+ {
+ "id": 4578,
+ "start": 1513.448,
+ "end": 1514.208,
+ "text": "quickly,"
+ },
+ {
+ "id": 4579,
+ "start": 1514.208,
+ "end": 1514.478,
+ "text": "to"
+ },
+ {
+ "id": 4580,
+ "start": 1514.478,
+ "end": 1514.628,
+ "text": "the"
+ },
+ {
+ "id": 4581,
+ "start": 1514.628,
+ "end": 1515.008,
+ "text": "research"
+ },
+ {
+ "id": 4582,
+ "start": 1515.008,
+ "end": 1515.338,
+ "text": "community"
+ },
+ {
+ "id": 4583,
+ "start": 1515.363,
+ "end": 1515.673,
+ "text": "quickly,"
+ },
+ {
+ "id": 4584,
+ "start": 1515.718,
+ "end": 1516.008,
+ "text": "that’s"
+ },
+ {
+ "id": 4585,
+ "start": 1515.9313333333334,
+ "end": 1516.2613333333334,
+ "text": "just"
+ },
+ {
+ "id": 4586,
+ "start": 1516.1446666666666,
+ "end": 1516.5146666666667,
+ "text": "as"
+ },
+ {
+ "id": 4587,
+ "start": 1516.358,
+ "end": 1516.768,
+ "text": "important"
+ },
+ {
+ "id": 4588,
+ "start": 1516.768,
+ "end": 1516.868,
+ "text": "as"
+ },
+ {
+ "id": 4589,
+ "start": 1516.868,
+ "end": 1517.188,
+ "text": "everything"
+ },
+ {
+ "id": 4590,
+ "start": 1517.2113333333334,
+ "end": 1517.5046666666667,
+ "text": "else."
+ },
+ {
+ "id": 4591,
+ "start": 1517.5546666666667,
+ "end": 1517.8213333333333,
+ "text": "And"
+ },
+ {
+ "id": 4592,
+ "start": 1517.898,
+ "end": 1518.138,
+ "text": "what"
+ },
+ {
+ "id": 4593,
+ "start": 1518.138,
+ "end": 1518.578,
+ "text": "about"
+ },
+ {
+ "id": 4594,
+ "start": 1518.578,
+ "end": 1518.688,
+ "text": "a"
+ },
+ {
+ "id": 4595,
+ "start": 1518.688,
+ "end": 1519.028,
+ "text": "war"
+ },
+ {
+ "id": 4596,
+ "start": 1519.028,
+ "end": 1519.388,
+ "text": "room?"
+ },
+ {
+ "id": 4597,
+ "start": 1519.388,
+ "end": 1519.908,
+ "text": "Here’s"
+ },
+ {
+ "id": 4598,
+ "start": 1519.908,
+ "end": 1519.978,
+ "text": "a"
+ },
+ {
+ "id": 4599,
+ "start": 1519.978,
+ "end": 1520.678,
+ "text": "scenario,"
+ },
+ {
+ "id": 4600,
+ "start": 1520.678,
+ "end": 1520.988,
+ "text": "right?"
+ },
+ {
+ "id": 4601,
+ "start": 1520.988,
+ "end": 1521.448,
+ "text": "Election"
+ },
+ {
+ "id": 4602,
+ "start": 1521.448,
+ "end": 1521.608,
+ "text": "Day"
+ },
+ {
+ "id": 4603,
+ "start": 1521.608,
+ "end": 1521.928,
+ "text": "comes"
+ },
+ {
+ "id": 4604,
+ "start": 1521.928,
+ "end": 1522.808,
+ "text": "along,"
+ },
+ {
+ "id": 4605,
+ "start": 1522.808,
+ "end": 1523.298,
+ "text": "and"
+ },
+ {
+ "id": 4606,
+ "start": 1523.298,
+ "end": 1523.518,
+ "text": "all"
+ },
+ {
+ "id": 4607,
+ "start": 1523.518,
+ "end": 1523.598,
+ "text": "of"
+ },
+ {
+ "id": 4608,
+ "start": 1523.598,
+ "end": 1523.648,
+ "text": "a"
+ },
+ {
+ "id": 4609,
+ "start": 1523.648,
+ "end": 1524.348,
+ "text": "sudden"
+ },
+ {
+ "id": 4610,
+ "start": 1524.338,
+ "end": 1524.738,
+ "text": "there’s"
+ },
+ {
+ "id": 4611,
+ "start": 1524.8229999999996,
+ "end": 1525.1680000000001,
+ "text": "a"
+ },
+ {
+ "id": 4612,
+ "start": 1525.308,
+ "end": 1525.598,
+ "text": "piece"
+ },
+ {
+ "id": 4613,
+ "start": 1525.598,
+ "end": 1526.338,
+ "text": "of"
+ },
+ {
+ "id": 4614,
+ "start": 1526.338,
+ "end": 1526.748,
+ "text": "false"
+ },
+ {
+ "id": 4615,
+ "start": 1526.748,
+ "end": 1527.628,
+ "text": "information"
+ },
+ {
+ "id": 4616,
+ "start": 1527.628,
+ "end": 1527.798,
+ "text": "that"
+ },
+ {
+ "id": 4617,
+ "start": 1527.798,
+ "end": 1527.898,
+ "text": "there"
+ },
+ {
+ "id": 4618,
+ "start": 1527.898,
+ "end": 1527.988,
+ "text": "had"
+ },
+ {
+ "id": 4619,
+ "start": 1527.988,
+ "end": 1528.108,
+ "text": "been"
+ },
+ {
+ "id": 4620,
+ "start": 1528.108,
+ "end": 1528.168,
+ "text": "a"
+ },
+ {
+ "id": 4621,
+ "start": 1528.168,
+ "end": 1528.558,
+ "text": "hack"
+ },
+ {
+ "id": 4622,
+ "start": 1528.558,
+ "end": 1528.708,
+ "text": "on"
+ },
+ {
+ "id": 4623,
+ "start": 1528.708,
+ "end": 1529.048,
+ "text": "voting"
+ },
+ {
+ "id": 4624,
+ "start": 1529.048,
+ "end": 1529.968,
+ "text": "machines"
+ },
+ {
+ "id": 4625,
+ "start": 1529.968,
+ "end": 1531.418,
+ "text": "in"
+ },
+ {
+ "id": 4626,
+ "start": 1531.418,
+ "end": 1531.558,
+ "text": "a"
+ },
+ {
+ "id": 4627,
+ "start": 1531.558,
+ "end": 1532.098,
+ "text": "congressional"
+ },
+ {
+ "id": 4628,
+ "start": 1532.098,
+ "end": 1532.318,
+ "text": "race"
+ },
+ {
+ "id": 4629,
+ "start": 1532.318,
+ "end": 1532.418,
+ "text": "in"
+ },
+ {
+ "id": 4630,
+ "start": 1532.418,
+ "end": 1532.828,
+ "text": "Ohio"
+ },
+ {
+ "id": 4631,
+ "start": 1532.828,
+ "end": 1533.668,
+ "text": "somewhere,"
+ },
+ {
+ "id": 4632,
+ "start": 1533.668,
+ "end": 1534.478,
+ "text": "and"
+ },
+ {
+ "id": 4633,
+ "start": 1534.478,
+ "end": 1534.718,
+ "text": "there’s"
+ },
+ {
+ "id": 4634,
+ "start": 1534.718,
+ "end": 1534.878,
+ "text": "this"
+ },
+ {
+ "id": 4635,
+ "start": 1534.878,
+ "end": 1535.118,
+ "text": "piece"
+ },
+ {
+ "id": 4636,
+ "start": 1535.118,
+ "end": 1535.208,
+ "text": "of"
+ },
+ {
+ "id": 4637,
+ "start": 1535.208,
+ "end": 1536.028,
+ "text": "misinformation"
+ },
+ {
+ "id": 4638,
+ "start": 1535.623,
+ "end": 1536.243,
+ "text": "that"
+ },
+ {
+ "id": 4639,
+ "start": 1536.038,
+ "end": 1536.458,
+ "text": "actually"
+ },
+ {
+ "id": 4640,
+ "start": 1536.458,
+ "end": 1536.738,
+ "text": "doesn’t"
+ },
+ {
+ "id": 4641,
+ "start": 1536.738,
+ "end": 1537.098,
+ "text": "happen,"
+ },
+ {
+ "id": 4642,
+ "start": 1537.098,
+ "end": 1537.208,
+ "text": "and"
+ },
+ {
+ "id": 4643,
+ "start": 1537.208,
+ "end": 1537.338,
+ "text": "it’s"
+ },
+ {
+ "id": 4644,
+ "start": 1537.338,
+ "end": 1537.678,
+ "text": "starting"
+ },
+ {
+ "id": 4645,
+ "start": 1537.793,
+ "end": 1538.0330000000001,
+ "text": "to"
+ },
+ {
+ "id": 4646,
+ "start": 1538.248,
+ "end": 1538.388,
+ "text": "be"
+ },
+ {
+ "id": 4647,
+ "start": 1538.388,
+ "end": 1538.768,
+ "text": "passed"
+ },
+ {
+ "id": 4648,
+ "start": 1538.768,
+ "end": 1539.088,
+ "text": "around"
+ },
+ {
+ "id": 4649,
+ "start": 1539.088,
+ "end": 1539.188,
+ "text": "on"
+ },
+ {
+ "id": 4650,
+ "start": 1539.188,
+ "end": 1539.548,
+ "text": "social"
+ },
+ {
+ "id": 4651,
+ "start": 1539.548,
+ "end": 1540.188,
+ "text": "media."
+ },
+ {
+ "id": 4652,
+ "start": 1540.188,
+ "end": 1540.968,
+ "text": "What"
+ },
+ {
+ "id": 4653,
+ "start": 1540.968,
+ "end": 1541.778,
+ "text": "preparedness"
+ },
+ {
+ "id": 4654,
+ "start": 1541.778,
+ "end": 1541.938,
+ "text": "is"
+ },
+ {
+ "id": 4655,
+ "start": 1541.938,
+ "end": 1542.108,
+ "text": "there"
+ },
+ {
+ "id": 4656,
+ "start": 1542.108,
+ "end": 1542.188,
+ "text": "to"
+ },
+ {
+ "id": 4657,
+ "start": 1542.188,
+ "end": 1542.448,
+ "text": "deal"
+ },
+ {
+ "id": 4658,
+ "start": 1542.448,
+ "end": 1542.588,
+ "text": "with"
+ },
+ {
+ "id": 4659,
+ "start": 1542.588,
+ "end": 1542.918,
+ "text": "something"
+ },
+ {
+ "id": 4660,
+ "start": 1542.918,
+ "end": 1543.128,
+ "text": "like"
+ },
+ {
+ "id": 4661,
+ "start": 1543.128,
+ "end": 1543.418,
+ "text": "that"
+ },
+ {
+ "id": 4662,
+ "start": 1543.418,
+ "end": 1543.498,
+ "text": "or"
+ },
+ {
+ "id": 4663,
+ "start": 1543.498,
+ "end": 1543.868,
+ "text": "if"
+ },
+ {
+ "id": 4664,
+ "start": 1543.868,
+ "end": 1544.148,
+ "text": "there’s"
+ },
+ {
+ "id": 4665,
+ "start": 1544.138,
+ "end": 1544.448,
+ "text": "any"
+ },
+ {
+ "id": 4666,
+ "start": 1544.4379999999999,
+ "end": 1544.6480000000001,
+ "text": "sort"
+ },
+ {
+ "id": 4667,
+ "start": 1544.738,
+ "end": 1544.848,
+ "text": "of"
+ },
+ {
+ "id": 4668,
+ "start": 1544.848,
+ "end": 1545.408,
+ "text": "information"
+ },
+ {
+ "id": 4669,
+ "start": 1545.408,
+ "end": 1545.588,
+ "text": "that’s"
+ },
+ {
+ "id": 4670,
+ "start": 1545.588,
+ "end": 1545.868,
+ "text": "being"
+ },
+ {
+ "id": 4671,
+ "start": 1546.093,
+ "end": 1546.4679999999998,
+ "text": "seeded"
+ },
+ {
+ "id": 4672,
+ "start": 1546.598,
+ "end": 1547.068,
+ "text": "all"
+ },
+ {
+ "id": 4673,
+ "start": 1547.068,
+ "end": 1547.588,
+ "text": "throughout"
+ },
+ {
+ "id": 4674,
+ "start": 1547.588,
+ "end": 1547.668,
+ "text": "the"
+ },
+ {
+ "id": 4675,
+ "start": 1547.668,
+ "end": 1548.048,
+ "text": "social"
+ },
+ {
+ "id": 4676,
+ "start": 1548.048,
+ "end": 1549.898,
+ "text": "network"
+ },
+ {
+ "id": 4677,
+ "start": 1549.898,
+ "end": 1550.278,
+ "text": "that’s"
+ },
+ {
+ "id": 4678,
+ "start": 1550.278,
+ "end": 1550.598,
+ "text": "trying"
+ },
+ {
+ "id": 4679,
+ "start": 1550.598,
+ "end": 1550.708,
+ "text": "to"
+ },
+ {
+ "id": 4680,
+ "start": 1550.708,
+ "end": 1551.158,
+ "text": "sow"
+ },
+ {
+ "id": 4681,
+ "start": 1551.158,
+ "end": 1552.338,
+ "text": "distrust"
+ },
+ {
+ "id": 4682,
+ "start": 1552.338,
+ "end": 1552.568,
+ "text": "in"
+ },
+ {
+ "id": 4683,
+ "start": 1552.568,
+ "end": 1552.678,
+ "text": "the"
+ },
+ {
+ "id": 4684,
+ "start": 1552.678,
+ "end": 1553.048,
+ "text": "actual"
+ },
+ {
+ "id": 4685,
+ "start": 1553.6580000000004,
+ "end": 1553.8880000000004,
+ "text": "process?"
+ },
+ {
+ "id": 4686,
+ "start": 1554.638,
+ "end": 1554.728,
+ "text": "We"
+ },
+ {
+ "id": 4687,
+ "start": 1554.728,
+ "end": 1554.998,
+ "text": "have"
+ },
+ {
+ "id": 4688,
+ "start": 1554.998,
+ "end": 1555.468,
+ "text": "policies"
+ },
+ {
+ "id": 4689,
+ "start": 1555.468,
+ "end": 1555.568,
+ "text": "in"
+ },
+ {
+ "id": 4690,
+ "start": 1555.568,
+ "end": 1556.068,
+ "text": "place"
+ },
+ {
+ "id": 4691,
+ "start": 1556.0230000000004,
+ "end": 1556.458,
+ "text": "to"
+ },
+ {
+ "id": 4692,
+ "start": 1556.478,
+ "end": 1556.848,
+ "text": "act"
+ },
+ {
+ "id": 4693,
+ "start": 1556.848,
+ "end": 1556.958,
+ "text": "on"
+ },
+ {
+ "id": 4694,
+ "start": 1556.958,
+ "end": 1557.428,
+ "text": "information"
+ },
+ {
+ "id": 4695,
+ "start": 1557.428,
+ "end": 1557.628,
+ "text": "like"
+ },
+ {
+ "id": 4696,
+ "start": 1557.628,
+ "end": 1558.098,
+ "text": "that."
+ },
+ {
+ "id": 4697,
+ "start": 1558.098,
+ "end": 1558.228,
+ "text": "But"
+ },
+ {
+ "id": 4698,
+ "start": 1558.228,
+ "end": 1558.348,
+ "text": "it’s"
+ },
+ {
+ "id": 4699,
+ "start": 1558.488,
+ "end": 1558.643,
+ "text": "really—I"
+ },
+ {
+ "id": 4700,
+ "start": 1558.748,
+ "end": 1558.938,
+ "text": "think"
+ },
+ {
+ "id": 4701,
+ "start": 1558.938,
+ "end": 1559.008,
+ "text": "the"
+ },
+ {
+ "id": 4702,
+ "start": 1559.008,
+ "end": 1559.308,
+ "text": "question"
+ },
+ {
+ "id": 4703,
+ "start": 1559.203,
+ "end": 1559.508,
+ "text": "you’re"
+ },
+ {
+ "id": 4704,
+ "start": 1559.398,
+ "end": 1559.708,
+ "text": "asking"
+ },
+ {
+ "id": 4705,
+ "start": 1559.708,
+ "end": 1559.838,
+ "text": "is"
+ },
+ {
+ "id": 4706,
+ "start": 1559.838,
+ "end": 1560.078,
+ "text": "bigger"
+ },
+ {
+ "id": 4707,
+ "start": 1560.078,
+ "end": 1560.208,
+ "text": "than"
+ },
+ {
+ "id": 4708,
+ "start": 1560.243,
+ "end": 1560.533,
+ "text": "that,"
+ },
+ {
+ "id": 4709,
+ "start": 1560.408,
+ "end": 1560.858,
+ "text": "right?"
+ },
+ {
+ "id": 4710,
+ "start": 1560.858,
+ "end": 1561.218,
+ "text": "First"
+ },
+ {
+ "id": 4711,
+ "start": 1561.218,
+ "end": 1561.318,
+ "text": "is,"
+ },
+ {
+ "id": 4712,
+ "start": 1561.318,
+ "end": 1561.488,
+ "text": "how"
+ },
+ {
+ "id": 4713,
+ "start": 1561.488,
+ "end": 1561.568,
+ "text": "do"
+ },
+ {
+ "id": 4714,
+ "start": 1561.568,
+ "end": 1561.688,
+ "text": "we"
+ },
+ {
+ "id": 4715,
+ "start": 1561.688,
+ "end": 1561.948,
+ "text": "learn"
+ },
+ {
+ "id": 4716,
+ "start": 1561.948,
+ "end": 1562.158,
+ "text": "about"
+ },
+ {
+ "id": 4717,
+ "start": 1562.158,
+ "end": 1562.618,
+ "text": "it,"
+ },
+ {
+ "id": 4718,
+ "start": 1562.618,
+ "end": 1562.718,
+ "text": "and"
+ },
+ {
+ "id": 4719,
+ "start": 1562.718,
+ "end": 1562.788,
+ "text": "how"
+ },
+ {
+ "id": 4720,
+ "start": 1562.788,
+ "end": 1562.858,
+ "text": "do"
+ },
+ {
+ "id": 4721,
+ "start": 1562.858,
+ "end": 1562.918,
+ "text": "we"
+ },
+ {
+ "id": 4722,
+ "start": 1562.918,
+ "end": 1563.048,
+ "text": "learn"
+ },
+ {
+ "id": 4723,
+ "start": 1563.048,
+ "end": 1563.218,
+ "text": "about"
+ },
+ {
+ "id": 4724,
+ "start": 1563.218,
+ "end": 1563.288,
+ "text": "it"
+ },
+ {
+ "id": 4725,
+ "start": 1563.288,
+ "end": 1563.688,
+ "text": "quickly"
+ },
+ {
+ "id": 4726,
+ "start": 1563.688,
+ "end": 1564.078,
+ "text": "enough;"
+ },
+ {
+ "id": 4727,
+ "start": 1564.078,
+ "end": 1564.298,
+ "text": "and"
+ },
+ {
+ "id": 4728,
+ "start": 1564.298,
+ "end": 1564.388,
+ "text": "then"
+ },
+ {
+ "id": 4729,
+ "start": 1564.388,
+ "end": 1564.708,
+ "text": "second"
+ },
+ {
+ "id": 4730,
+ "start": 1564.708,
+ "end": 1564.768,
+ "text": "is,"
+ },
+ {
+ "id": 4731,
+ "start": 1564.768,
+ "end": 1564.868,
+ "text": "how"
+ },
+ {
+ "id": 4732,
+ "start": 1564.868,
+ "end": 1564.938,
+ "text": "do"
+ },
+ {
+ "id": 4733,
+ "start": 1564.938,
+ "end": 1565.108,
+ "text": "we"
+ },
+ {
+ "id": 4734,
+ "start": 1565.108,
+ "end": 1565.478,
+ "text": "act"
+ },
+ {
+ "id": 4735,
+ "start": 1565.478,
+ "end": 1565.608,
+ "text": "on"
+ },
+ {
+ "id": 4736,
+ "start": 1565.608,
+ "end": 1565.678,
+ "text": "it"
+ },
+ {
+ "id": 4737,
+ "start": 1565.678,
+ "end": 1565.988,
+ "text": "quickly"
+ },
+ {
+ "id": 4738,
+ "start": 1565.988,
+ "end": 1566.158,
+ "text": "enough"
+ },
+ {
+ "id": 4739,
+ "start": 1566.158,
+ "end": 1566.248,
+ "text": "to"
+ },
+ {
+ "id": 4740,
+ "start": 1566.248,
+ "end": 1566.388,
+ "text": "make"
+ },
+ {
+ "id": 4741,
+ "start": 1566.388,
+ "end": 1566.518,
+ "text": "sure"
+ },
+ {
+ "id": 4742,
+ "start": 1566.518,
+ "end": 1566.608,
+ "text": "that"
+ },
+ {
+ "id": 4743,
+ "start": 1566.608,
+ "end": 1566.708,
+ "text": "we’re"
+ },
+ {
+ "id": 4744,
+ "start": 1566.9165,
+ "end": 1567.0415,
+ "text": "mitigating"
+ },
+ {
+ "id": 4745,
+ "start": 1567.225,
+ "end": 1567.375,
+ "text": "any"
+ },
+ {
+ "id": 4746,
+ "start": 1567.375,
+ "end": 1568.625,
+ "text": "consequences?"
+ },
+ {
+ "id": 4747,
+ "start": 1568.625,
+ "end": 1568.755,
+ "text": "This"
+ },
+ {
+ "id": 4748,
+ "start": 1568.755,
+ "end": 1568.945,
+ "text": "gets"
+ },
+ {
+ "id": 4749,
+ "start": 1568.945,
+ "end": 1569.155,
+ "text": "back"
+ },
+ {
+ "id": 4750,
+ "start": 1569.155,
+ "end": 1569.235,
+ "text": "to"
+ },
+ {
+ "id": 4751,
+ "start": 1569.235,
+ "end": 1569.345,
+ "text": "my"
+ },
+ {
+ "id": 4752,
+ "start": 1569.61,
+ "end": 1569.8500000000001,
+ "text": "point:"
+ },
+ {
+ "id": 4753,
+ "start": 1569.985,
+ "end": 1570.355,
+ "text": "We"
+ },
+ {
+ "id": 4754,
+ "start": 1570.355,
+ "end": 1570.535,
+ "text": "need"
+ },
+ {
+ "id": 4755,
+ "start": 1570.535,
+ "end": 1570.635,
+ "text": "to"
+ },
+ {
+ "id": 4756,
+ "start": 1570.635,
+ "end": 1571.125,
+ "text": "know"
+ },
+ {
+ "id": 4757,
+ "start": 1571.125,
+ "end": 1571.235,
+ "text": "and"
+ },
+ {
+ "id": 4758,
+ "start": 1571.235,
+ "end": 1571.325,
+ "text": "we"
+ },
+ {
+ "id": 4759,
+ "start": 1571.325,
+ "end": 1571.445,
+ "text": "need"
+ },
+ {
+ "id": 4760,
+ "start": 1571.445,
+ "end": 1571.505,
+ "text": "to"
+ },
+ {
+ "id": 4761,
+ "start": 1571.505,
+ "end": 1571.695,
+ "text": "have"
+ },
+ {
+ "id": 4762,
+ "start": 1571.695,
+ "end": 1572.305,
+ "text": "communications"
+ },
+ {
+ "id": 4763,
+ "start": 1572.305,
+ "end": 1572.405,
+ "text": "and"
+ },
+ {
+ "id": 4764,
+ "start": 1572.575,
+ "end": 1572.71,
+ "text": "connections"
+ },
+ {
+ "id": 4765,
+ "start": 1572.845,
+ "end": 1573.015,
+ "text": "with"
+ },
+ {
+ "id": 4766,
+ "start": 1573.015,
+ "end": 1573.095,
+ "text": "the"
+ },
+ {
+ "id": 4767,
+ "start": 1573.095,
+ "end": 1573.505,
+ "text": "people"
+ },
+ {
+ "id": 4768,
+ "start": 1573.505,
+ "end": 1573.615,
+ "text": "in"
+ },
+ {
+ "id": 4769,
+ "start": 1573.615,
+ "end": 1573.695,
+ "text": "the"
+ },
+ {
+ "id": 4770,
+ "start": 1573.835,
+ "end": 1573.925,
+ "text": "states"
+ },
+ {
+ "id": 4771,
+ "start": 1574.0549999999998,
+ "end": 1574.155,
+ "text": "who"
+ },
+ {
+ "id": 4772,
+ "start": 1574.2749999999999,
+ "end": 1574.385,
+ "text": "are"
+ },
+ {
+ "id": 4773,
+ "start": 1574.495,
+ "end": 1574.615,
+ "text": "going"
+ },
+ {
+ "id": 4774,
+ "start": 1574.615,
+ "end": 1574.675,
+ "text": "to"
+ },
+ {
+ "id": 4775,
+ "start": 1574.675,
+ "end": 1574.915,
+ "text": "see"
+ },
+ {
+ "id": 4776,
+ "start": 1574.915,
+ "end": 1575.105,
+ "text": "these"
+ },
+ {
+ "id": 4777,
+ "start": 1575.105,
+ "end": 1575.295,
+ "text": "things"
+ },
+ {
+ "id": 4778,
+ "start": 1575.295,
+ "end": 1576.145,
+ "text": "happening,"
+ },
+ {
+ "id": 4779,
+ "start": 1576.145,
+ "end": 1576.455,
+ "text": "with"
+ },
+ {
+ "id": 4780,
+ "start": 1576.455,
+ "end": 1576.565,
+ "text": "the"
+ },
+ {
+ "id": 4781,
+ "start": 1576.565,
+ "end": 1576.975,
+ "text": "people"
+ },
+ {
+ "id": 4782,
+ "start": 1576.975,
+ "end": 1577.115,
+ "text": "in"
+ },
+ {
+ "id": 4783,
+ "start": 1577.115,
+ "end": 1577.565,
+ "text": "government"
+ },
+ {
+ "id": 4784,
+ "start": 1577.565,
+ "end": 1577.685,
+ "text": "who"
+ },
+ {
+ "id": 4785,
+ "start": 1577.685,
+ "end": 1577.745,
+ "text": "are"
+ },
+ {
+ "id": 4786,
+ "start": 1577.745,
+ "end": 1577.865,
+ "text": "going"
+ },
+ {
+ "id": 4787,
+ "start": 1577.865,
+ "end": 1577.925,
+ "text": "to"
+ },
+ {
+ "id": 4788,
+ "start": 1577.925,
+ "end": 1578.045,
+ "text": "see"
+ },
+ {
+ "id": 4789,
+ "start": 1578.045,
+ "end": 1578.195,
+ "text": "these"
+ },
+ {
+ "id": 4790,
+ "start": 1578.195,
+ "end": 1578.355,
+ "text": "things"
+ },
+ {
+ "id": 4791,
+ "start": 1578.355,
+ "end": 1578.835,
+ "text": "happening,"
+ },
+ {
+ "id": 4792,
+ "start": 1578.835,
+ "end": 1579.095,
+ "text": "with"
+ },
+ {
+ "id": 4793,
+ "start": 1579.095,
+ "end": 1579.315,
+ "text": "all"
+ },
+ {
+ "id": 4794,
+ "start": 1579.315,
+ "end": 1579.375,
+ "text": "the"
+ },
+ {
+ "id": 4795,
+ "start": 1579.375,
+ "end": 1579.605,
+ "text": "different"
+ },
+ {
+ "id": 4796,
+ "start": 1579.605,
+ "end": 1579.885,
+ "text": "places"
+ },
+ {
+ "id": 4797,
+ "start": 1579.885,
+ "end": 1579.985,
+ "text": "where"
+ },
+ {
+ "id": 4798,
+ "start": 1579.985,
+ "end": 1580.125,
+ "text": "this"
+ },
+ {
+ "id": 4799,
+ "start": 1580.125,
+ "end": 1580.595,
+ "text": "information"
+ },
+ {
+ "id": 4800,
+ "start": 1580.595,
+ "end": 1580.685,
+ "text": "will"
+ },
+ {
+ "id": 4801,
+ "start": 1580.685,
+ "end": 1580.985,
+ "text": "bubble"
+ },
+ {
+ "id": 4802,
+ "start": 1580.985,
+ "end": 1581.255,
+ "text": "up,"
+ },
+ {
+ "id": 4803,
+ "start": 1581.255,
+ "end": 1581.445,
+ "text": "so"
+ },
+ {
+ "id": 4804,
+ "start": 1581.445,
+ "end": 1581.535,
+ "text": "we"
+ },
+ {
+ "id": 4805,
+ "start": 1581.535,
+ "end": 1581.685,
+ "text": "can"
+ },
+ {
+ "id": 4806,
+ "start": 1581.685,
+ "end": 1581.885,
+ "text": "learn"
+ },
+ {
+ "id": 4807,
+ "start": 1581.885,
+ "end": 1581.975,
+ "text": "it"
+ },
+ {
+ "id": 4808,
+ "start": 1581.975,
+ "end": 1582.085,
+ "text": "as"
+ },
+ {
+ "id": 4809,
+ "start": 1582.085,
+ "end": 1582.385,
+ "text": "quickly"
+ },
+ {
+ "id": 4810,
+ "start": 1582.385,
+ "end": 1582.485,
+ "text": "as"
+ },
+ {
+ "id": 4811,
+ "start": 1582.65,
+ "end": 1582.79,
+ "text": "possible."
+ },
+ {
+ "id": 4812,
+ "start": 1582.915,
+ "end": 1583.095,
+ "text": "And"
+ },
+ {
+ "id": 4813,
+ "start": 1583.095,
+ "end": 1583.215,
+ "text": "you’re"
+ },
+ {
+ "id": 4814,
+ "start": 1583.1916666666666,
+ "end": 1583.3083333333334,
+ "text": "going"
+ },
+ {
+ "id": 4815,
+ "start": 1583.2883333333334,
+ "end": 1583.4016666666666,
+ "text": "to"
+ },
+ {
+ "id": 4816,
+ "start": 1583.385,
+ "end": 1583.495,
+ "text": "be"
+ },
+ {
+ "id": 4817,
+ "start": 1583.495,
+ "end": 1583.635,
+ "text": "able"
+ },
+ {
+ "id": 4818,
+ "start": 1583.635,
+ "end": 1583.715,
+ "text": "to"
+ },
+ {
+ "id": 4819,
+ "start": 1583.715,
+ "end": 1583.885,
+ "text": "do"
+ },
+ {
+ "id": 4820,
+ "start": 1583.885,
+ "end": 1584.075,
+ "text": "that"
+ },
+ {
+ "id": 4821,
+ "start": 1584.075,
+ "end": 1584.175,
+ "text": "in"
+ },
+ {
+ "id": 4822,
+ "start": 1584.175,
+ "end": 1584.395,
+ "text": "real"
+ },
+ {
+ "id": 4823,
+ "start": 1584.7,
+ "end": 1584.8899999999999,
+ "text": "time?"
+ },
+ {
+ "id": 4824,
+ "start": 1585.225,
+ "end": 1585.385,
+ "text": "You"
+ },
+ {
+ "id": 4825,
+ "start": 1585.385,
+ "end": 1585.635,
+ "text": "said"
+ },
+ {
+ "id": 4826,
+ "start": 1585.635,
+ "end": 1585.715,
+ "text": "a"
+ },
+ {
+ "id": 4827,
+ "start": 1585.715,
+ "end": 1585.975,
+ "text": "war"
+ },
+ {
+ "id": 4828,
+ "start": 1585.975,
+ "end": 1586.495,
+ "text": "room,"
+ },
+ {
+ "id": 4829,
+ "start": 1586.495,
+ "end": 1586.645,
+ "text": "and"
+ },
+ {
+ "id": 4830,
+ "start": 1586.645,
+ "end": 1586.685,
+ "text": "I"
+ },
+ {
+ "id": 4831,
+ "start": 1586.685,
+ "end": 1587.495,
+ "text": "think"
+ },
+ {
+ "id": 4832,
+ "start": 1587.495,
+ "end": 1587.805,
+ "text": "that’s"
+ },
+ {
+ "id": 4833,
+ "start": 1587.805,
+ "end": 1587.875,
+ "text": "a"
+ },
+ {
+ "id": 4834,
+ "start": 1587.875,
+ "end": 1588.395,
+ "text": "good"
+ },
+ {
+ "id": 4835,
+ "start": 1588.4900000000002,
+ "end": 1588.835,
+ "text": "image,"
+ },
+ {
+ "id": 4836,
+ "start": 1589.105,
+ "end": 1589.275,
+ "text": "but"
+ },
+ {
+ "id": 4837,
+ "start": 1589.275,
+ "end": 1589.375,
+ "text": "it’s"
+ },
+ {
+ "id": 4838,
+ "start": 1589.375,
+ "end": 1589.685,
+ "text": "important"
+ },
+ {
+ "id": 4839,
+ "start": 1589.685,
+ "end": 1589.755,
+ "text": "to"
+ },
+ {
+ "id": 4840,
+ "start": 1589.755,
+ "end": 1590.595,
+ "text": "remember"
+ },
+ {
+ "id": 4841,
+ "start": 1590.595,
+ "end": 1590.735,
+ "text": "we’re"
+ },
+ {
+ "id": 4842,
+ "start": 1590.735,
+ "end": 1590.885,
+ "text": "not"
+ },
+ {
+ "id": 4843,
+ "start": 1590.885,
+ "end": 1591.045,
+ "text": "just"
+ },
+ {
+ "id": 4844,
+ "start": 1591.045,
+ "end": 1591.365,
+ "text": "talking"
+ },
+ {
+ "id": 4845,
+ "start": 1591.365,
+ "end": 1591.565,
+ "text": "about"
+ },
+ {
+ "id": 4846,
+ "start": 1591.565,
+ "end": 1591.615,
+ "text": "a"
+ },
+ {
+ "id": 4847,
+ "start": 1591.615,
+ "end": 1591.805,
+ "text": "bunch"
+ },
+ {
+ "id": 4848,
+ "start": 1591.805,
+ "end": 1591.865,
+ "text": "of"
+ },
+ {
+ "id": 4849,
+ "start": 1591.865,
+ "end": 1592.045,
+ "text": "people"
+ },
+ {
+ "id": 4850,
+ "start": 1592.045,
+ "end": 1592.275,
+ "text": "sitting"
+ },
+ {
+ "id": 4851,
+ "start": 1592.275,
+ "end": 1592.495,
+ "text": "around"
+ },
+ {
+ "id": 4852,
+ "start": 1592.495,
+ "end": 1592.535,
+ "text": "a"
+ },
+ {
+ "id": 4853,
+ "start": 1592.535,
+ "end": 1593.165,
+ "text": "table."
+ },
+ {
+ "id": 4854,
+ "start": 1593.165,
+ "end": 1593.285,
+ "text": "What"
+ },
+ {
+ "id": 4855,
+ "start": 1593.285,
+ "end": 1593.405,
+ "text": "we’re"
+ },
+ {
+ "id": 4856,
+ "start": 1593.405,
+ "end": 1593.645,
+ "text": "really"
+ },
+ {
+ "id": 4857,
+ "start": 1593.645,
+ "end": 1594.045,
+ "text": "talking"
+ },
+ {
+ "id": 4858,
+ "start": 1594.045,
+ "end": 1594.685,
+ "text": "about"
+ },
+ {
+ "id": 4859,
+ "start": 1594.685,
+ "end": 1595.815,
+ "text": "is"
+ },
+ {
+ "id": 4860,
+ "start": 1595.815,
+ "end": 1596.475,
+ "text": "distributed"
+ },
+ {
+ "id": 4861,
+ "start": 1596.475,
+ "end": 1597.485,
+ "text": "communications"
+ },
+ {
+ "id": 4862,
+ "start": 1597.485,
+ "end": 1597.605,
+ "text": "to"
+ },
+ {
+ "id": 4863,
+ "start": 1597.605,
+ "end": 1597.825,
+ "text": "make"
+ },
+ {
+ "id": 4864,
+ "start": 1597.825,
+ "end": 1598.005,
+ "text": "sure"
+ },
+ {
+ "id": 4865,
+ "start": 1598.005,
+ "end": 1598.135,
+ "text": "that"
+ },
+ {
+ "id": 4866,
+ "start": 1598.135,
+ "end": 1598.215,
+ "text": "the"
+ },
+ {
+ "id": 4867,
+ "start": 1598.215,
+ "end": 1598.735,
+ "text": "contact"
+ },
+ {
+ "id": 4868,
+ "start": 1598.735,
+ "end": 1599.015,
+ "text": "points"
+ },
+ {
+ "id": 4869,
+ "start": 1599.015,
+ "end": 1599.085,
+ "text": "are"
+ },
+ {
+ "id": 4870,
+ "start": 1599.085,
+ "end": 1599.865,
+ "text": "established"
+ },
+ {
+ "id": 4871,
+ "start": 1599.865,
+ "end": 1600.035,
+ "text": "so"
+ },
+ {
+ "id": 4872,
+ "start": 1600.035,
+ "end": 1600.145,
+ "text": "that"
+ },
+ {
+ "id": 4873,
+ "start": 1600.145,
+ "end": 1600.275,
+ "text": "this"
+ },
+ {
+ "id": 4874,
+ "start": 1600.275,
+ "end": 1600.755,
+ "text": "information"
+ },
+ {
+ "id": 4875,
+ "start": 1600.515,
+ "end": 1600.99,
+ "text": "can"
+ },
+ {
+ "id": 4876,
+ "start": 1600.755,
+ "end": 1601.225,
+ "text": "flow"
+ },
+ {
+ "id": 4877,
+ "start": 1601.225,
+ "end": 1601.765,
+ "text": "through"
+ },
+ {
+ "id": 4878,
+ "start": 1601.765,
+ "end": 1602.095,
+ "text": "all"
+ },
+ {
+ "id": 4879,
+ "start": 1602.095,
+ "end": 1602.165,
+ "text": "the"
+ },
+ {
+ "id": 4880,
+ "start": 1602.165,
+ "end": 1602.415,
+ "text": "different"
+ },
+ {
+ "id": 4881,
+ "start": 1602.415,
+ "end": 1602.695,
+ "text": "teams"
+ },
+ {
+ "id": 4882,
+ "start": 1602.695,
+ "end": 1602.785,
+ "text": "that"
+ },
+ {
+ "id": 4883,
+ "start": 1602.785,
+ "end": 1602.905,
+ "text": "need"
+ },
+ {
+ "id": 4884,
+ "start": 1602.905,
+ "end": 1602.985,
+ "text": "to"
+ },
+ {
+ "id": 4885,
+ "start": 1602.985,
+ "end": 1603.185,
+ "text": "work"
+ },
+ {
+ "id": 4886,
+ "start": 1603.185,
+ "end": 1603.265,
+ "text": "on"
+ },
+ {
+ "id": 4887,
+ "start": 1603.295,
+ "end": 1603.38,
+ "text": "this,"
+ },
+ {
+ "id": 4888,
+ "start": 1603.405,
+ "end": 1603.495,
+ "text": "and"
+ },
+ {
+ "id": 4889,
+ "start": 1603.495,
+ "end": 1603.625,
+ "text": "that’s"
+ },
+ {
+ "id": 4890,
+ "start": 1603.625,
+ "end": 1603.965,
+ "text": "both"
+ },
+ {
+ "id": 4891,
+ "start": 1603.965,
+ "end": 1604.245,
+ "text": "inside"
+ },
+ {
+ "id": 4892,
+ "start": 1604.245,
+ "end": 1604.315,
+ "text": "the"
+ },
+ {
+ "id": 4893,
+ "start": 1604.315,
+ "end": 1604.855,
+ "text": "company"
+ },
+ {
+ "id": 4894,
+ "start": 1604.855,
+ "end": 1605.055,
+ "text": "but"
+ },
+ {
+ "id": 4895,
+ "start": 1605.055,
+ "end": 1605.615,
+ "text": "also"
+ },
+ {
+ "id": 4896,
+ "start": 1605.615,
+ "end": 1605.895,
+ "text": "with"
+ },
+ {
+ "id": 4897,
+ "start": 1605.895,
+ "end": 1606.075,
+ "text": "all"
+ },
+ {
+ "id": 4898,
+ "start": 1606.075,
+ "end": 1606.145,
+ "text": "of"
+ },
+ {
+ "id": 4899,
+ "start": 1606.145,
+ "end": 1606.225,
+ "text": "our"
+ },
+ {
+ "id": 4900,
+ "start": 1606.225,
+ "end": 1606.585,
+ "text": "partners"
+ },
+ {
+ "id": 4901,
+ "start": 1606.585,
+ "end": 1607.415,
+ "text": "externally."
+ },
+ {
+ "id": 4902,
+ "start": 1607.415,
+ "end": 1607.615,
+ "text": "Is"
+ },
+ {
+ "id": 4903,
+ "start": 1607.615,
+ "end": 1607.755,
+ "text": "there"
+ },
+ {
+ "id": 4904,
+ "start": 1607.7116666666666,
+ "end": 1607.8583333333336,
+ "text": "going"
+ },
+ {
+ "id": 4905,
+ "start": 1607.8083333333334,
+ "end": 1607.9616666666668,
+ "text": "to"
+ },
+ {
+ "id": 4906,
+ "start": 1607.905,
+ "end": 1608.065,
+ "text": "be"
+ },
+ {
+ "id": 4907,
+ "start": 1608.2649999999999,
+ "end": 1608.73,
+ "text": "real-time"
+ },
+ {
+ "id": 4908,
+ "start": 1608.625,
+ "end": 1609.395,
+ "text": "monitoring"
+ },
+ {
+ "id": 4909,
+ "start": 1609.395,
+ "end": 1609.665,
+ "text": "on"
+ },
+ {
+ "id": 4910,
+ "start": 1609.665,
+ "end": 1610.115,
+ "text": "Election"
+ },
+ {
+ "id": 4911,
+ "start": 1610.115,
+ "end": 1610.765,
+ "text": "Day"
+ },
+ {
+ "id": 4912,
+ "start": 1610.765,
+ "end": 1610.925,
+ "text": "of"
+ },
+ {
+ "id": 4913,
+ "start": 1610.925,
+ "end": 1611.265,
+ "text": "what’s"
+ },
+ {
+ "id": 4914,
+ "start": 1611.265,
+ "end": 1611.605,
+ "text": "going"
+ },
+ {
+ "id": 4915,
+ "start": 1611.605,
+ "end": 1611.875,
+ "text": "on"
+ },
+ {
+ "id": 4916,
+ "start": 1611.875,
+ "end": 1612.075,
+ "text": "on"
+ },
+ {
+ "id": 4917,
+ "start": 1612.4250000000002,
+ "end": 1612.6000000000001,
+ "text": "Facebook,"
+ },
+ {
+ "id": 4918,
+ "start": 1612.975,
+ "end": 1613.125,
+ "text": "in"
+ },
+ {
+ "id": 4919,
+ "start": 1613.125,
+ "end": 1613.215,
+ "text": "the"
+ },
+ {
+ "id": 4920,
+ "start": 1613.215,
+ "end": 1614.545,
+ "text": "conversation,"
+ },
+ {
+ "id": 4921,
+ "start": 1614.545,
+ "end": 1614.735,
+ "text": "as"
+ },
+ {
+ "id": 4922,
+ "start": 1614.735,
+ "end": 1614.825,
+ "text": "you"
+ },
+ {
+ "id": 4923,
+ "start": 1614.825,
+ "end": 1614.965,
+ "text": "put"
+ },
+ {
+ "id": 4924,
+ "start": 1614.965,
+ "end": 1615.035,
+ "text": "it,"
+ },
+ {
+ "id": 4925,
+ "start": 1615,
+ "end": 1615.08,
+ "text": "in"
+ },
+ {
+ "id": 4926,
+ "start": 1615.035,
+ "end": 1615.125,
+ "text": "the"
+ },
+ {
+ "id": 4927,
+ "start": 1615.125,
+ "end": 1615.455,
+ "text": "public"
+ },
+ {
+ "id": 4928,
+ "start": 1615.455,
+ "end": 1615.765,
+ "text": "square"
+ },
+ {
+ "id": 4929,
+ "start": 1615.765,
+ "end": 1615.855,
+ "text": "of"
+ },
+ {
+ "id": 4930,
+ "start": 1615.855,
+ "end": 1616.645,
+ "text": "Facebook"
+ },
+ {
+ "id": 4931,
+ "start": 1616.645,
+ "end": 1616.865,
+ "text": "on"
+ },
+ {
+ "id": 4932,
+ "start": 1616.865,
+ "end": 1617.305,
+ "text": "Election"
+ },
+ {
+ "id": 4933,
+ "start": 1617.305,
+ "end": 1617.615,
+ "text": "Day,"
+ },
+ {
+ "id": 4934,
+ "start": 1617.615,
+ "end": 1618.125,
+ "text": "and"
+ },
+ {
+ "id": 4935,
+ "start": 1618.125,
+ "end": 1618.455,
+ "text": "how"
+ },
+ {
+ "id": 4936,
+ "start": 1618.455,
+ "end": 1618.545,
+ "text": "are"
+ },
+ {
+ "id": 4937,
+ "start": 1618.545,
+ "end": 1618.765,
+ "text": "you"
+ },
+ {
+ "id": 4938,
+ "start": 1618.695,
+ "end": 1618.9916666666668,
+ "text": "going"
+ },
+ {
+ "id": 4939,
+ "start": 1618.8449999999998,
+ "end": 1619.2183333333332,
+ "text": "to"
+ },
+ {
+ "id": 4940,
+ "start": 1618.995,
+ "end": 1619.445,
+ "text": "actually"
+ },
+ {
+ "id": 4941,
+ "start": 1619.445,
+ "end": 1620.355,
+ "text": "find"
+ },
+ {
+ "id": 4942,
+ "start": 1620.355,
+ "end": 1620.895,
+ "text": "things"
+ },
+ {
+ "id": 4943,
+ "start": 1620.895,
+ "end": 1621.075,
+ "text": "that"
+ },
+ {
+ "id": 4944,
+ "start": 1621.075,
+ "end": 1621.225,
+ "text": "may"
+ },
+ {
+ "id": 4945,
+ "start": 1621.225,
+ "end": 1621.635,
+ "text": "actually"
+ },
+ {
+ "id": 4946,
+ "start": 1621.5849999999998,
+ "end": 1622.235,
+ "text": "sow"
+ },
+ {
+ "id": 4947,
+ "start": 1621.945,
+ "end": 1622.835,
+ "text": "distrust"
+ },
+ {
+ "id": 4948,
+ "start": 1622.835,
+ "end": 1622.965,
+ "text": "in"
+ },
+ {
+ "id": 4949,
+ "start": 1622.965,
+ "end": 1623.055,
+ "text": "the"
+ },
+ {
+ "id": 4950,
+ "start": 1623.055,
+ "end": 1623.915,
+ "text": "election?"
+ },
+ {
+ "id": 4951,
+ "start": 1623.915,
+ "end": 1624.665,
+ "text": "Absolutely."
+ },
+ {
+ "id": 4952,
+ "start": 1624.505,
+ "end": 1624.805,
+ "text": "We’re"
+ },
+ {
+ "id": 4953,
+ "start": 1624.655,
+ "end": 1624.895,
+ "text": "going"
+ },
+ {
+ "id": 4954,
+ "start": 1624.8049999999998,
+ "end": 1624.985,
+ "text": "to"
+ },
+ {
+ "id": 4955,
+ "start": 1624.955,
+ "end": 1625.075,
+ "text": "have"
+ },
+ {
+ "id": 4956,
+ "start": 1625.075,
+ "end": 1625.135,
+ "text": "a"
+ },
+ {
+ "id": 4957,
+ "start": 1625.135,
+ "end": 1625.955,
+ "text": "team"
+ },
+ {
+ "id": 4958,
+ "start": 1625.955,
+ "end": 1626.225,
+ "text": "on"
+ },
+ {
+ "id": 4959,
+ "start": 1626.225,
+ "end": 1626.635,
+ "text": "Election"
+ },
+ {
+ "id": 4960,
+ "start": 1626.635,
+ "end": 1626.935,
+ "text": "Day"
+ },
+ {
+ "id": 4961,
+ "start": 1626.935,
+ "end": 1627.295,
+ "text": "focused"
+ },
+ {
+ "id": 4962,
+ "start": 1627.295,
+ "end": 1627.385,
+ "text": "on"
+ },
+ {
+ "id": 4963,
+ "start": 1627.385,
+ "end": 1627.545,
+ "text": "that"
+ },
+ {
+ "id": 4964,
+ "start": 1627.545,
+ "end": 1627.875,
+ "text": "problem,"
+ },
+ {
+ "id": 4965,
+ "start": 1627.875,
+ "end": 1628.075,
+ "text": "and"
+ },
+ {
+ "id": 4966,
+ "start": 1628.075,
+ "end": 1628.295,
+ "text": "one"
+ },
+ {
+ "id": 4967,
+ "start": 1628.295,
+ "end": 1628.435,
+ "text": "thing"
+ },
+ {
+ "id": 4968,
+ "start": 1628.435,
+ "end": 1628.615,
+ "text": "that’s"
+ },
+ {
+ "id": 4969,
+ "start": 1628.615,
+ "end": 1628.925,
+ "text": "useful"
+ },
+ {
+ "id": 4970,
+ "start": 1628.925,
+ "end": 1629.105,
+ "text": "here"
+ },
+ {
+ "id": 4971,
+ "start": 1629.105,
+ "end": 1629.365,
+ "text": "is"
+ },
+ {
+ "id": 4972,
+ "start": 1629.365,
+ "end": 1629.675,
+ "text": "we’ve"
+ },
+ {
+ "id": 4973,
+ "start": 1629.675,
+ "end": 1629.885,
+ "text": "already"
+ },
+ {
+ "id": 4974,
+ "start": 1629.885,
+ "end": 1630.215,
+ "text": "done"
+ },
+ {
+ "id": 4975,
+ "start": 1630.215,
+ "end": 1630.435,
+ "text": "this"
+ },
+ {
+ "id": 4976,
+ "start": 1630.435,
+ "end": 1630.535,
+ "text": "in"
+ },
+ {
+ "id": 4977,
+ "start": 1630.535,
+ "end": 1630.745,
+ "text": "other"
+ },
+ {
+ "id": 4978,
+ "start": 1630.745,
+ "end": 1631.625,
+ "text": "elections,"
+ },
+ {
+ "id": 4979,
+ "start": 1631.625,
+ "end": 1632.025,
+ "text": "with"
+ },
+ {
+ "id": 4980,
+ "start": 1632.025,
+ "end": 1632.335,
+ "text": "recent"
+ },
+ {
+ "id": 4981,
+ "start": 1632.335,
+ "end": 1632.635,
+ "text": "elections"
+ },
+ {
+ "id": 4982,
+ "start": 1632.635,
+ "end": 1632.725,
+ "text": "that"
+ },
+ {
+ "id": 4983,
+ "start": 1632.725,
+ "end": 1632.825,
+ "text": "have"
+ },
+ {
+ "id": 4984,
+ "start": 1632.825,
+ "end": 1633.035,
+ "text": "come"
+ },
+ {
+ "id": 4985,
+ "start": 1632.9850000000001,
+ "end": 1633.1550000000002,
+ "text": "up."
+ },
+ {
+ "id": 4986,
+ "start": 1633.145,
+ "end": 1633.275,
+ "text": "Whether"
+ },
+ {
+ "id": 4987,
+ "start": 1633.305,
+ "end": 1633.395,
+ "text": "you’re"
+ },
+ {
+ "id": 4988,
+ "start": 1633.395,
+ "end": 1633.565,
+ "text": "talking"
+ },
+ {
+ "id": 4989,
+ "start": 1633.565,
+ "end": 1633.695,
+ "text": "about"
+ },
+ {
+ "id": 4990,
+ "start": 1634.1599999999999,
+ "end": 1634.4299999999996,
+ "text": "Mexico,"
+ },
+ {
+ "id": 4991,
+ "start": 1634.755,
+ "end": 1635.165,
+ "text": "recent"
+ },
+ {
+ "id": 4992,
+ "start": 1635.205,
+ "end": 1635.4850000000001,
+ "text": "elections,"
+ },
+ {
+ "id": 4993,
+ "start": 1635.655,
+ "end": 1635.805,
+ "text": "we’ve"
+ },
+ {
+ "id": 4994,
+ "start": 1635.805,
+ "end": 1635.925,
+ "text": "been"
+ },
+ {
+ "id": 4995,
+ "start": 1635.925,
+ "end": 1636.185,
+ "text": "able"
+ },
+ {
+ "id": 4996,
+ "start": 1636.185,
+ "end": 1636.285,
+ "text": "to"
+ },
+ {
+ "id": 4997,
+ "start": 1636.285,
+ "end": 1636.455,
+ "text": "sort"
+ },
+ {
+ "id": 4998,
+ "start": 1636.455,
+ "end": 1636.815,
+ "text": "of"
+ },
+ {
+ "id": 4999,
+ "start": 1636.815,
+ "end": 1637.285,
+ "text": "build"
+ },
+ {
+ "id": 5000,
+ "start": 1637.285,
+ "end": 1637.565,
+ "text": "out"
+ },
+ {
+ "id": 5001,
+ "start": 1637.565,
+ "end": 1637.675,
+ "text": "our"
+ },
+ {
+ "id": 5002,
+ "start": 1637.675,
+ "end": 1638.175,
+ "text": "understanding"
+ },
+ {
+ "id": 5003,
+ "start": 1638.175,
+ "end": 1638.255,
+ "text": "of"
+ },
+ {
+ "id": 5004,
+ "start": 1638.255,
+ "end": 1638.555,
+ "text": "how"
+ },
+ {
+ "id": 5005,
+ "start": 1638.555,
+ "end": 1638.885,
+ "text": "best"
+ },
+ {
+ "id": 5006,
+ "start": 1638.885,
+ "end": 1638.965,
+ "text": "to"
+ },
+ {
+ "id": 5007,
+ "start": 1638.965,
+ "end": 1639.135,
+ "text": "do"
+ },
+ {
+ "id": 5008,
+ "start": 1639.135,
+ "end": 1640.445,
+ "text": "this."
+ },
+ {
+ "id": 5009,
+ "start": 1640.445,
+ "end": 1640.745,
+ "text": "And"
+ },
+ {
+ "id": 5010,
+ "start": 1640.745,
+ "end": 1640.875,
+ "text": "you’re"
+ },
+ {
+ "id": 5011,
+ "start": 1640.875,
+ "end": 1641.385,
+ "text": "confident"
+ },
+ {
+ "id": 5012,
+ "start": 1641.385,
+ "end": 1641.475,
+ "text": "you"
+ },
+ {
+ "id": 5013,
+ "start": 1641.475,
+ "end": 1641.595,
+ "text": "can"
+ },
+ {
+ "id": 5014,
+ "start": 1641.595,
+ "end": 1641.745,
+ "text": "do"
+ },
+ {
+ "id": 5015,
+ "start": 1641.745,
+ "end": 1641.915,
+ "text": "that"
+ },
+ {
+ "id": 5016,
+ "start": 1644.2749999999978,
+ "end": 1644.4399999999987,
+ "text": "here?"
+ },
+ {
+ "id": 5017,
+ "start": 1646.805,
+ "end": 1646.965,
+ "text": "I"
+ },
+ {
+ "id": 5018,
+ "start": 1646.965,
+ "end": 1647.295,
+ "text": "think"
+ },
+ {
+ "id": 5019,
+ "start": 1648.3300000000008,
+ "end": 1648.5750000000007,
+ "text": "that—yes."
+ },
+ {
+ "id": 5020,
+ "start": 1649.695,
+ "end": 1649.855,
+ "text": "I’m"
+ },
+ {
+ "id": 5021,
+ "start": 1649.855,
+ "end": 1650.435,
+ "text": "confident"
+ },
+ {
+ "id": 5022,
+ "start": 1650.435,
+ "end": 1650.535,
+ "text": "that"
+ },
+ {
+ "id": 5023,
+ "start": 1650.535,
+ "end": 1650.615,
+ "text": "we"
+ },
+ {
+ "id": 5024,
+ "start": 1650.615,
+ "end": 1650.715,
+ "text": "can"
+ },
+ {
+ "id": 5025,
+ "start": 1650.715,
+ "end": 1650.815,
+ "text": "do"
+ },
+ {
+ "id": 5026,
+ "start": 1650.815,
+ "end": 1650.945,
+ "text": "this"
+ },
+ {
+ "id": 5027,
+ "start": 1651.5550000000003,
+ "end": 1651.8999999999996,
+ "text": "here."
+ },
+ {
+ "id": 5028,
+ "start": 1652.295,
+ "end": 1652.855,
+ "text": "Now,"
+ },
+ {
+ "id": 5029,
+ "start": 1652.855,
+ "end": 1652.945,
+ "text": "I"
+ },
+ {
+ "id": 5030,
+ "start": 1652.945,
+ "end": 1653.085,
+ "text": "think"
+ },
+ {
+ "id": 5031,
+ "start": 1653.085,
+ "end": 1653.185,
+ "text": "this"
+ },
+ {
+ "id": 5032,
+ "start": 1653.185,
+ "end": 1653.275,
+ "text": "is"
+ },
+ {
+ "id": 5033,
+ "start": 1653.275,
+ "end": 1653.375,
+ "text": "a"
+ },
+ {
+ "id": 5034,
+ "start": 1653.375,
+ "end": 1653.755,
+ "text": "really"
+ },
+ {
+ "id": 5035,
+ "start": 1653.755,
+ "end": 1654.015,
+ "text": "hard"
+ },
+ {
+ "id": 5036,
+ "start": 1654.245,
+ "end": 1654.51,
+ "text": "problem,"
+ },
+ {
+ "id": 5037,
+ "start": 1654.735,
+ "end": 1655.005,
+ "text": "and"
+ },
+ {
+ "id": 5038,
+ "start": 1655.005,
+ "end": 1655.055,
+ "text": "I"
+ },
+ {
+ "id": 5039,
+ "start": 1655.055,
+ "end": 1655.305,
+ "text": "think,"
+ },
+ {
+ "id": 5040,
+ "start": 1655.305,
+ "end": 1655.415,
+ "text": "as"
+ },
+ {
+ "id": 5041,
+ "start": 1655.415,
+ "end": 1655.475,
+ "text": "I"
+ },
+ {
+ "id": 5042,
+ "start": 1655.475,
+ "end": 1655.695,
+ "text": "said"
+ },
+ {
+ "id": 5043,
+ "start": 1655.695,
+ "end": 1656.415,
+ "text": "before,"
+ },
+ {
+ "id": 5044,
+ "start": 1656.415,
+ "end": 1656.535,
+ "text": "the"
+ },
+ {
+ "id": 5045,
+ "start": 1656.535,
+ "end": 1657.035,
+ "text": "potential"
+ },
+ {
+ "id": 5046,
+ "start": 1657.035,
+ "end": 1657.625,
+ "text": "for"
+ },
+ {
+ "id": 5047,
+ "start": 1657.625,
+ "end": 1657.965,
+ "text": "some"
+ },
+ {
+ "id": 5048,
+ "start": 1657.965,
+ "end": 1658.135,
+ "text": "sort"
+ },
+ {
+ "id": 5049,
+ "start": 1658.135,
+ "end": 1658.205,
+ "text": "of"
+ },
+ {
+ "id": 5050,
+ "start": 1658.205,
+ "end": 1658.405,
+ "text": "bad"
+ },
+ {
+ "id": 5051,
+ "start": 1658.77,
+ "end": 1658.9549999999997,
+ "text": "behavior"
+ },
+ {
+ "id": 5052,
+ "start": 1659.335,
+ "end": 1659.505,
+ "text": "is"
+ },
+ {
+ "id": 5053,
+ "start": 1659.505,
+ "end": 1659.785,
+ "text": "very"
+ },
+ {
+ "id": 5054,
+ "start": 1659.785,
+ "end": 1660.255,
+ "text": "high."
+ },
+ {
+ "id": 5055,
+ "start": 1660.255,
+ "end": 1660.435,
+ "text": "There"
+ },
+ {
+ "id": 5056,
+ "start": 1660.435,
+ "end": 1660.775,
+ "text": "will"
+ },
+ {
+ "id": 5057,
+ "start": 1660.775,
+ "end": 1660.935,
+ "text": "be"
+ },
+ {
+ "id": 5058,
+ "start": 1660.935,
+ "end": 1661.215,
+ "text": "some"
+ },
+ {
+ "id": 5059,
+ "start": 1661.215,
+ "end": 1661.425,
+ "text": "kind"
+ },
+ {
+ "id": 5060,
+ "start": 1661.425,
+ "end": 1661.495,
+ "text": "of"
+ },
+ {
+ "id": 5061,
+ "start": 1661.495,
+ "end": 1662.015,
+ "text": "problematic"
+ },
+ {
+ "id": 5062,
+ "start": 1662.1150000000002,
+ "end": 1662.4250000000004,
+ "text": "behavior."
+ },
+ {
+ "id": 5063,
+ "start": 1662.735,
+ "end": 1662.835,
+ "text": "The"
+ },
+ {
+ "id": 5064,
+ "start": 1662.835,
+ "end": 1663.165,
+ "text": "question"
+ },
+ {
+ "id": 5065,
+ "start": 1663.165,
+ "end": 1663.285,
+ "text": "is,"
+ },
+ {
+ "id": 5066,
+ "start": 1663.285,
+ "end": 1663.405,
+ "text": "do"
+ },
+ {
+ "id": 5067,
+ "start": 1663.405,
+ "end": 1663.615,
+ "text": "we"
+ },
+ {
+ "id": 5068,
+ "start": 1663.615,
+ "end": 1663.805,
+ "text": "have"
+ },
+ {
+ "id": 5069,
+ "start": 1663.805,
+ "end": 1663.895,
+ "text": "the"
+ },
+ {
+ "id": 5070,
+ "start": 1663.895,
+ "end": 1664.235,
+ "text": "teams"
+ },
+ {
+ "id": 5071,
+ "start": 1664.235,
+ "end": 1664.345,
+ "text": "and"
+ },
+ {
+ "id": 5072,
+ "start": 1664.345,
+ "end": 1664.885,
+ "text": "processes"
+ },
+ {
+ "id": 5073,
+ "start": 1664.885,
+ "end": 1665.015,
+ "text": "and"
+ },
+ {
+ "id": 5074,
+ "start": 1665.17,
+ "end": 1665.29,
+ "text": "resources"
+ },
+ {
+ "id": 5075,
+ "start": 1665.455,
+ "end": 1665.565,
+ "text": "in"
+ },
+ {
+ "id": 5076,
+ "start": 1665.565,
+ "end": 1665.935,
+ "text": "place,"
+ },
+ {
+ "id": 5077,
+ "start": 1665.935,
+ "end": 1666.035,
+ "text": "and"
+ },
+ {
+ "id": 5078,
+ "start": 1666.035,
+ "end": 1666.155,
+ "text": "does"
+ },
+ {
+ "id": 5079,
+ "start": 1666.155,
+ "end": 1666.235,
+ "text": "the"
+ },
+ {
+ "id": 5080,
+ "start": 1666.235,
+ "end": 1667.095,
+ "text": "community"
+ },
+ {
+ "id": 5081,
+ "start": 1667.095,
+ "end": 1667.355,
+ "text": "have"
+ },
+ {
+ "id": 5082,
+ "start": 1667.355,
+ "end": 1667.425,
+ "text": "the"
+ },
+ {
+ "id": 5083,
+ "start": 1667.425,
+ "end": 1667.845,
+ "text": "resources"
+ },
+ {
+ "id": 5084,
+ "start": 1667.845,
+ "end": 1667.945,
+ "text": "in"
+ },
+ {
+ "id": 5085,
+ "start": 1667.945,
+ "end": 1668.165,
+ "text": "place"
+ },
+ {
+ "id": 5086,
+ "start": 1668.165,
+ "end": 1668.245,
+ "text": "to"
+ },
+ {
+ "id": 5087,
+ "start": 1668.245,
+ "end": 1668.665,
+ "text": "respond"
+ },
+ {
+ "id": 5088,
+ "start": 1668.665,
+ "end": 1668.725,
+ "text": "to"
+ },
+ {
+ "id": 5089,
+ "start": 1668.725,
+ "end": 1668.865,
+ "text": "that"
+ },
+ {
+ "id": 5090,
+ "start": 1668.865,
+ "end": 1669.235,
+ "text": "quickly"
+ },
+ {
+ "id": 5091,
+ "start": 1669.235,
+ "end": 1669.385,
+ "text": "when"
+ },
+ {
+ "id": 5092,
+ "start": 1669.385,
+ "end": 1669.445,
+ "text": "it"
+ },
+ {
+ "id": 5093,
+ "start": 1669.445,
+ "end": 1670.065,
+ "text": "develops?"
+ },
+ {
+ "id": 5094,
+ "start": 1670.025,
+ "end": 1670.285,
+ "text": "If"
+ },
+ {
+ "id": 5095,
+ "start": 1670.2150000000001,
+ "end": 1670.48,
+ "text": "there"
+ },
+ {
+ "id": 5096,
+ "start": 1670.405,
+ "end": 1670.675,
+ "text": "were"
+ },
+ {
+ "id": 5097,
+ "start": 1670.54,
+ "end": 1670.8799999999999,
+ "text": "a"
+ },
+ {
+ "id": 5098,
+ "start": 1670.675,
+ "end": 1671.085,
+ "text": "legal"
+ },
+ {
+ "id": 5099,
+ "start": 1671.085,
+ "end": 1672.345,
+ "text": "standard,"
+ },
+ {
+ "id": 5100,
+ "start": 1672.345,
+ "end": 1672.845,
+ "text": "for"
+ },
+ {
+ "id": 5101,
+ "start": 1672.845,
+ "end": 1673.275,
+ "text": "instance,"
+ },
+ {
+ "id": 5102,
+ "start": 1673.275,
+ "end": 1673.345,
+ "text": "a"
+ },
+ {
+ "id": 5103,
+ "start": 1673.345,
+ "end": 1673.655,
+ "text": "legal"
+ },
+ {
+ "id": 5104,
+ "start": 1673.655,
+ "end": 1674.075,
+ "text": "standard"
+ },
+ {
+ "id": 5105,
+ "start": 1674.075,
+ "end": 1676.745,
+ "text": "that"
+ },
+ {
+ "id": 5106,
+ "start": 1676.745,
+ "end": 1677.475,
+ "text": "Facebook"
+ },
+ {
+ "id": 5107,
+ "start": 1677.475,
+ "end": 1677.715,
+ "text": "has"
+ },
+ {
+ "id": 5108,
+ "start": 1677.715,
+ "end": 1677.835,
+ "text": "to"
+ },
+ {
+ "id": 5109,
+ "start": 1677.835,
+ "end": 1678.155,
+ "text": "take"
+ },
+ {
+ "id": 5110,
+ "start": 1678.155,
+ "end": 1678.545,
+ "text": "down"
+ },
+ {
+ "id": 5111,
+ "start": 1678.7700000000002,
+ "end": 1679.27,
+ "text": "deepfake"
+ },
+ {
+ "id": 5112,
+ "start": 1679.385,
+ "end": 1679.995,
+ "text": "videos,"
+ },
+ {
+ "id": 5113,
+ "start": 1679.995,
+ "end": 1680.175,
+ "text": "for"
+ },
+ {
+ "id": 5114,
+ "start": 1680.175,
+ "end": 1681.145,
+ "text": "instance,"
+ },
+ {
+ "id": 5115,
+ "start": 1681.145,
+ "end": 1681.395,
+ "text": "would"
+ },
+ {
+ "id": 5116,
+ "start": 1681.395,
+ "end": 1681.615,
+ "text": "that"
+ },
+ {
+ "id": 5117,
+ "start": 1681.9,
+ "end": 1682.0850000000003,
+ "text": "incentivize"
+ },
+ {
+ "id": 5118,
+ "start": 1682.405,
+ "end": 1682.555,
+ "text": "you"
+ },
+ {
+ "id": 5119,
+ "start": 1682.555,
+ "end": 1682.745,
+ "text": "any"
+ },
+ {
+ "id": 5120,
+ "start": 1682.745,
+ "end": 1683.455,
+ "text": "further"
+ },
+ {
+ "id": 5121,
+ "start": 1683.455,
+ "end": 1683.565,
+ "text": "to"
+ },
+ {
+ "id": 5122,
+ "start": 1683.565,
+ "end": 1684.165,
+ "text": "actually"
+ },
+ {
+ "id": 5123,
+ "start": 1684.165,
+ "end": 1684.355,
+ "text": "get"
+ },
+ {
+ "id": 5124,
+ "start": 1684.355,
+ "end": 1684.435,
+ "text": "it"
+ },
+ {
+ "id": 5125,
+ "start": 1684.435,
+ "end": 1684.855,
+ "text": "done?"
+ },
+ {
+ "id": 5126,
+ "start": 1685.085,
+ "end": 1685.5575000000003,
+ "text": "You’re"
+ },
+ {
+ "id": 5127,
+ "start": 1685.7350000000001,
+ "end": 1686.2600000000002,
+ "text": "talking"
+ },
+ {
+ "id": 5128,
+ "start": 1686.3850000000002,
+ "end": 1686.9625,
+ "text": "about"
+ },
+ {
+ "id": 5129,
+ "start": 1687.035,
+ "end": 1687.665,
+ "text": "regulation"
+ },
+ {
+ "id": 5130,
+ "start": 1687.4,
+ "end": 1687.91,
+ "text": "here,"
+ },
+ {
+ "id": 5131,
+ "start": 1687.765,
+ "end": 1688.155,
+ "text": "right?"
+ },
+ {
+ "id": 5132,
+ "start": 1688.105,
+ "end": 1688.425,
+ "text": "Yeah,"
+ },
+ {
+ "id": 5133,
+ "start": 1688.4283333333335,
+ "end": 1688.6716666666666,
+ "text": "sure."
+ },
+ {
+ "id": 5134,
+ "start": 1688.7516666666668,
+ "end": 1688.9183333333333,
+ "text": "Yeah."
+ },
+ {
+ "id": 5135,
+ "start": 1689.075,
+ "end": 1689.165,
+ "text": "I"
+ },
+ {
+ "id": 5136,
+ "start": 1689.165,
+ "end": 1689.365,
+ "text": "think"
+ },
+ {
+ "id": 5137,
+ "start": 1689.365,
+ "end": 1689.425,
+ "text": "in"
+ },
+ {
+ "id": 5138,
+ "start": 1689.425,
+ "end": 1689.495,
+ "text": "the"
+ },
+ {
+ "id": 5139,
+ "start": 1689.605,
+ "end": 1689.6799999999998,
+ "text": "context"
+ },
+ {
+ "id": 5140,
+ "start": 1689.785,
+ "end": 1689.865,
+ "text": "of"
+ },
+ {
+ "id": 5141,
+ "start": 1689.865,
+ "end": 1690.475,
+ "text": "regulation,"
+ },
+ {
+ "id": 5142,
+ "start": 1690.475,
+ "end": 1690.675,
+ "text": "we’ve"
+ },
+ {
+ "id": 5143,
+ "start": 1690.675,
+ "end": 1690.875,
+ "text": "said"
+ },
+ {
+ "id": 5144,
+ "start": 1690.875,
+ "end": 1691.175,
+ "text": "very"
+ },
+ {
+ "id": 5145,
+ "start": 1691.175,
+ "end": 1691.475,
+ "text": "clearly"
+ },
+ {
+ "id": 5146,
+ "start": 1691.475,
+ "end": 1691.635,
+ "text": "that"
+ },
+ {
+ "id": 5147,
+ "start": 1691.635,
+ "end": 1691.785,
+ "text": "for"
+ },
+ {
+ "id": 5148,
+ "start": 1691.785,
+ "end": 1692.025,
+ "text": "us,"
+ },
+ {
+ "id": 5149,
+ "start": 1692.025,
+ "end": 1692.175,
+ "text": "it’s"
+ },
+ {
+ "id": 5150,
+ "start": 1692.175,
+ "end": 1692.325,
+ "text": "not"
+ },
+ {
+ "id": 5151,
+ "start": 1692.325,
+ "end": 1692.355,
+ "text": "a"
+ },
+ {
+ "id": 5152,
+ "start": 1692.355,
+ "end": 1692.705,
+ "text": "question"
+ },
+ {
+ "id": 5153,
+ "start": 1692.705,
+ "end": 1692.765,
+ "text": "of"
+ },
+ {
+ "id": 5154,
+ "start": 1692.765,
+ "end": 1692.975,
+ "text": "whether"
+ },
+ {
+ "id": 5155,
+ "start": 1692.975,
+ "end": 1693.095,
+ "text": "there"
+ },
+ {
+ "id": 5156,
+ "start": 1693.095,
+ "end": 1693.285,
+ "text": "should"
+ },
+ {
+ "id": 5157,
+ "start": 1693.285,
+ "end": 1693.515,
+ "text": "be;"
+ },
+ {
+ "id": 5158,
+ "start": 1693.52,
+ "end": 1693.6550000000002,
+ "text": "it’s"
+ },
+ {
+ "id": 5159,
+ "start": 1693.755,
+ "end": 1693.795,
+ "text": "a"
+ },
+ {
+ "id": 5160,
+ "start": 1693.795,
+ "end": 1694.075,
+ "text": "question"
+ },
+ {
+ "id": 5161,
+ "start": 1694.075,
+ "end": 1694.135,
+ "text": "of"
+ },
+ {
+ "id": 5162,
+ "start": 1694.135,
+ "end": 1694.255,
+ "text": "can"
+ },
+ {
+ "id": 5163,
+ "start": 1694.255,
+ "end": 1694.335,
+ "text": "we"
+ },
+ {
+ "id": 5164,
+ "start": 1694.335,
+ "end": 1694.445,
+ "text": "have"
+ },
+ {
+ "id": 5165,
+ "start": 1694.445,
+ "end": 1694.545,
+ "text": "the"
+ },
+ {
+ "id": 5166,
+ "start": 1694.545,
+ "end": 1694.865,
+ "text": "right"
+ },
+ {
+ "id": 5167,
+ "start": 1695.6500000000005,
+ "end": 1695.8849999999993,
+ "text": "regulation."
+ },
+ {
+ "id": 5168,
+ "start": 1696.755,
+ "end": 1696.905,
+ "text": "If"
+ },
+ {
+ "id": 5169,
+ "start": 1696.905,
+ "end": 1696.985,
+ "text": "you"
+ },
+ {
+ "id": 5170,
+ "start": 1696.985,
+ "end": 1697.165,
+ "text": "take"
+ },
+ {
+ "id": 5171,
+ "start": 1697.165,
+ "end": 1697.225,
+ "text": "an"
+ },
+ {
+ "id": 5172,
+ "start": 1697.225,
+ "end": 1697.665,
+ "text": "example"
+ },
+ {
+ "id": 5173,
+ "start": 1697.665,
+ "end": 1697.825,
+ "text": "like"
+ },
+ {
+ "id": 5174,
+ "start": 1697.825,
+ "end": 1697.905,
+ "text": "the"
+ },
+ {
+ "id": 5175,
+ "start": 1697.905,
+ "end": 1698.205,
+ "text": "Honest"
+ },
+ {
+ "id": 5176,
+ "start": 1698.2050000000002,
+ "end": 1698.6599999999999,
+ "text": "Ads"
+ },
+ {
+ "id": 5177,
+ "start": 1698.505,
+ "end": 1699.115,
+ "text": "Act,"
+ },
+ {
+ "id": 5178,
+ "start": 1699.115,
+ "end": 1699.275,
+ "text": "this"
+ },
+ {
+ "id": 5179,
+ "start": 1699.275,
+ "end": 1699.365,
+ "text": "is"
+ },
+ {
+ "id": 5180,
+ "start": 1699.365,
+ "end": 1699.625,
+ "text": "something"
+ },
+ {
+ "id": 5181,
+ "start": 1699.625,
+ "end": 1699.745,
+ "text": "where"
+ },
+ {
+ "id": 5182,
+ "start": 1699.745,
+ "end": 1699.895,
+ "text": "we"
+ },
+ {
+ "id": 5183,
+ "start": 1699.895,
+ "end": 1699.995,
+ "text": "have"
+ },
+ {
+ "id": 5184,
+ "start": 1699.995,
+ "end": 1700.345,
+ "text": "actually"
+ },
+ {
+ "id": 5185,
+ "start": 1700.345,
+ "end": 1700.825,
+ "text": "already"
+ },
+ {
+ "id": 5186,
+ "start": 1700.825,
+ "end": 1701.985,
+ "text": "implemented"
+ },
+ {
+ "id": 5187,
+ "start": 1701.985,
+ "end": 1702.435,
+ "text": "the"
+ },
+ {
+ "id": 5188,
+ "start": 1702.435,
+ "end": 1702.995,
+ "text": "controls"
+ },
+ {
+ "id": 5189,
+ "start": 1702.995,
+ "end": 1703.115,
+ "text": "that"
+ },
+ {
+ "id": 5190,
+ "start": 1703.115,
+ "end": 1703.215,
+ "text": "it"
+ },
+ {
+ "id": 5191,
+ "start": 1703.215,
+ "end": 1703.325,
+ "text": "would"
+ },
+ {
+ "id": 5192,
+ "start": 1703.325,
+ "end": 1704.635,
+ "text": "envision"
+ },
+ {
+ "id": 5193,
+ "start": 1704.635,
+ "end": 1704.915,
+ "text": "even"
+ },
+ {
+ "id": 5194,
+ "start": 1704.915,
+ "end": 1705.065,
+ "text": "though"
+ },
+ {
+ "id": 5195,
+ "start": 1705.065,
+ "end": 1705.915,
+ "text": "the"
+ },
+ {
+ "id": 5196,
+ "start": 1705.915,
+ "end": 1706.175,
+ "text": "law,"
+ },
+ {
+ "id": 5197,
+ "start": 1706.175,
+ "end": 1706.365,
+ "text": "which"
+ },
+ {
+ "id": 5198,
+ "start": 1706.365,
+ "end": 1706.455,
+ "text": "we"
+ },
+ {
+ "id": 5199,
+ "start": 1706.455,
+ "end": 1707.095,
+ "text": "support,"
+ },
+ {
+ "id": 5200,
+ "start": 1707.095,
+ "end": 1707.545,
+ "text": "hasn’t"
+ },
+ {
+ "id": 5201,
+ "start": 1707.545,
+ "end": 1707.665,
+ "text": "been"
+ },
+ {
+ "id": 5202,
+ "start": 1707.665,
+ "end": 1707.895,
+ "text": "signed"
+ },
+ {
+ "id": 5203,
+ "start": 1707.895,
+ "end": 1708.055,
+ "text": "into"
+ },
+ {
+ "id": 5204,
+ "start": 1708.055,
+ "end": 1708.225,
+ "text": "law"
+ },
+ {
+ "id": 5205,
+ "start": 1708.225,
+ "end": 1708.475,
+ "text": "yet."
+ },
+ {
+ "id": 5206,
+ "start": 1708.475,
+ "end": 1708.955,
+ "text": "So"
+ },
+ {
+ "id": 5207,
+ "start": 1708.955,
+ "end": 1709.065,
+ "text": "to"
+ },
+ {
+ "id": 5208,
+ "start": 1709.065,
+ "end": 1709.175,
+ "text": "your"
+ },
+ {
+ "id": 5209,
+ "start": 1709.175,
+ "end": 1709.455,
+ "text": "question"
+ },
+ {
+ "id": 5210,
+ "start": 1709.455,
+ "end": 1709.565,
+ "text": "about"
+ },
+ {
+ "id": 5211,
+ "start": 1709.565,
+ "end": 1710.415,
+ "text": "incentive,"
+ },
+ {
+ "id": 5212,
+ "start": 1710.415,
+ "end": 1710.785,
+ "text": "we’re"
+ },
+ {
+ "id": 5213,
+ "start": 1710.785,
+ "end": 1711.265,
+ "text": "focused"
+ },
+ {
+ "id": 5214,
+ "start": 1711.265,
+ "end": 1711.375,
+ "text": "on"
+ },
+ {
+ "id": 5215,
+ "start": 1711.375,
+ "end": 1711.525,
+ "text": "this"
+ },
+ {
+ "id": 5216,
+ "start": 1711.525,
+ "end": 1712.015,
+ "text": "problem,"
+ },
+ {
+ "id": 5217,
+ "start": 1712.015,
+ "end": 1712.315,
+ "text": "and"
+ },
+ {
+ "id": 5218,
+ "start": 1712.315,
+ "end": 1712.445,
+ "text": "we’re"
+ },
+ {
+ "id": 5219,
+ "start": 1712.445,
+ "end": 1712.835,
+ "text": "driving"
+ },
+ {
+ "id": 5220,
+ "start": 1712.835,
+ "end": 1712.935,
+ "text": "as"
+ },
+ {
+ "id": 5221,
+ "start": 1712.935,
+ "end": 1713.205,
+ "text": "far"
+ },
+ {
+ "id": 5222,
+ "start": 1713.205,
+ "end": 1713.295,
+ "text": "as"
+ },
+ {
+ "id": 5223,
+ "start": 1713.295,
+ "end": 1713.365,
+ "text": "we"
+ },
+ {
+ "id": 5224,
+ "start": 1713.365,
+ "end": 1713.765,
+ "text": "possibly"
+ },
+ {
+ "id": 5225,
+ "start": 1713.765,
+ "end": 1713.905,
+ "text": "can"
+ },
+ {
+ "id": 5226,
+ "start": 1713.905,
+ "end": 1713.985,
+ "text": "to"
+ },
+ {
+ "id": 5227,
+ "start": 1713.985,
+ "end": 1714.145,
+ "text": "do"
+ },
+ {
+ "id": 5228,
+ "start": 1714.125,
+ "end": 1714.335,
+ "text": "it,"
+ },
+ {
+ "id": 5229,
+ "start": 1714.265,
+ "end": 1714.525,
+ "text": "and"
+ },
+ {
+ "id": 5230,
+ "start": 1714.525,
+ "end": 1714.705,
+ "text": "what"
+ },
+ {
+ "id": 5231,
+ "start": 1714.705,
+ "end": 1714.885,
+ "text": "we’ve"
+ },
+ {
+ "id": 5232,
+ "start": 1714.885,
+ "end": 1715.355,
+ "text": "decided"
+ },
+ {
+ "id": 5233,
+ "start": 1715.355,
+ "end": 1715.625,
+ "text": "is"
+ },
+ {
+ "id": 5234,
+ "start": 1715.625,
+ "end": 1715.915,
+ "text": "rather"
+ },
+ {
+ "id": 5235,
+ "start": 1715.915,
+ "end": 1716.085,
+ "text": "than"
+ },
+ {
+ "id": 5236,
+ "start": 1716.085,
+ "end": 1716.475,
+ "text": "waiting"
+ },
+ {
+ "id": 5237,
+ "start": 1716.475,
+ "end": 1716.615,
+ "text": "for"
+ },
+ {
+ "id": 5238,
+ "start": 1716.615,
+ "end": 1717.265,
+ "text": "regulation,"
+ },
+ {
+ "id": 5239,
+ "start": 1717.265,
+ "end": 1717.565,
+ "text": "we"
+ },
+ {
+ "id": 5240,
+ "start": 1717.565,
+ "end": 1717.695,
+ "text": "need"
+ },
+ {
+ "id": 5241,
+ "start": 1717.695,
+ "end": 1717.765,
+ "text": "to"
+ },
+ {
+ "id": 5242,
+ "start": 1717.765,
+ "end": 1717.925,
+ "text": "put"
+ },
+ {
+ "id": 5243,
+ "start": 1717.925,
+ "end": 1718.005,
+ "text": "in"
+ },
+ {
+ "id": 5244,
+ "start": 1718.005,
+ "end": 1718.275,
+ "text": "place"
+ },
+ {
+ "id": 5245,
+ "start": 1718.275,
+ "end": 1718.605,
+ "text": "everything"
+ },
+ {
+ "id": 5246,
+ "start": 1718.605,
+ "end": 1718.735,
+ "text": "that"
+ },
+ {
+ "id": 5247,
+ "start": 1718.735,
+ "end": 1718.975,
+ "text": "we"
+ },
+ {
+ "id": 5248,
+ "start": 1718.975,
+ "end": 1719.325,
+ "text": "believe"
+ },
+ {
+ "id": 5249,
+ "start": 1719.325,
+ "end": 1719.545,
+ "text": "needs"
+ },
+ {
+ "id": 5250,
+ "start": 1719.545,
+ "end": 1719.635,
+ "text": "to"
+ },
+ {
+ "id": 5251,
+ "start": 1719.635,
+ "end": 1719.745,
+ "text": "be"
+ },
+ {
+ "id": 5252,
+ "start": 1719.745,
+ "end": 1719.855,
+ "text": "there"
+ },
+ {
+ "id": 5253,
+ "start": 1719.855,
+ "end": 1719.945,
+ "text": "and"
+ },
+ {
+ "id": 5254,
+ "start": 1719.945,
+ "end": 1720.085,
+ "text": "that"
+ },
+ {
+ "id": 5255,
+ "start": 1720.085,
+ "end": 1720.255,
+ "text": "we"
+ },
+ {
+ "id": 5256,
+ "start": 1720.255,
+ "end": 1720.405,
+ "text": "can"
+ },
+ {
+ "id": 5257,
+ "start": 1720.405,
+ "end": 1720.685,
+ "text": "do"
+ },
+ {
+ "id": 5258,
+ "start": 1720.685,
+ "end": 1720.815,
+ "text": "as"
+ },
+ {
+ "id": 5259,
+ "start": 1720.815,
+ "end": 1721.115,
+ "text": "quickly"
+ },
+ {
+ "id": 5260,
+ "start": 1721.115,
+ "end": 1721.205,
+ "text": "as"
+ },
+ {
+ "id": 5261,
+ "start": 1721.205,
+ "end": 1721.625,
+ "text": "possible."
+ },
+ {
+ "id": 5262,
+ "start": 1721.6616666666664,
+ "end": 1722.145,
+ "text": "The"
+ },
+ {
+ "id": 5263,
+ "start": 1722.1183333333329,
+ "end": 1722.665,
+ "text": "U.K."
+ },
+ {
+ "id": 5264,
+ "start": 1722.575,
+ "end": 1723.185,
+ "text": "Parliament,"
+ },
+ {
+ "id": 5265,
+ "start": 1723.185,
+ "end": 1723.345,
+ "text": "for"
+ },
+ {
+ "id": 5266,
+ "start": 1723.345,
+ "end": 1723.735,
+ "text": "instance,"
+ },
+ {
+ "id": 5267,
+ "start": 1723.735,
+ "end": 1723.855,
+ "text": "there"
+ },
+ {
+ "id": 5268,
+ "start": 1723.855,
+ "end": 1724.415,
+ "text": "was"
+ },
+ {
+ "id": 5269,
+ "start": 1724.415,
+ "end": 1724.485,
+ "text": "a"
+ },
+ {
+ "id": 5270,
+ "start": 1724.485,
+ "end": 1724.875,
+ "text": "committee"
+ },
+ {
+ "id": 5271,
+ "start": 1724.875,
+ "end": 1725.065,
+ "text": "there"
+ },
+ {
+ "id": 5272,
+ "start": 1725.065,
+ "end": 1725.205,
+ "text": "that"
+ },
+ {
+ "id": 5273,
+ "start": 1725.205,
+ "end": 1725.595,
+ "text": "studied"
+ },
+ {
+ "id": 5274,
+ "start": 1725.595,
+ "end": 1725.685,
+ "text": "the"
+ },
+ {
+ "id": 5275,
+ "start": 1725.685,
+ "end": 1726.015,
+ "text": "fake"
+ },
+ {
+ "id": 5276,
+ "start": 1726.015,
+ "end": 1726.395,
+ "text": "news"
+ },
+ {
+ "id": 5277,
+ "start": 1726.395,
+ "end": 1726.915,
+ "text": "problem"
+ },
+ {
+ "id": 5278,
+ "start": 1726.915,
+ "end": 1727.415,
+ "text": "and"
+ },
+ {
+ "id": 5279,
+ "start": 1727.415,
+ "end": 1727.545,
+ "text": "a"
+ },
+ {
+ "id": 5280,
+ "start": 1727.545,
+ "end": 1727.715,
+ "text": "lot"
+ },
+ {
+ "id": 5281,
+ "start": 1727.715,
+ "end": 1727.805,
+ "text": "of"
+ },
+ {
+ "id": 5282,
+ "start": 1727.805,
+ "end": 1727.995,
+ "text": "other"
+ },
+ {
+ "id": 5283,
+ "start": 1727.995,
+ "end": 1728.445,
+ "text": "problems"
+ },
+ {
+ "id": 5284,
+ "start": 1728.445,
+ "end": 1728.585,
+ "text": "that"
+ },
+ {
+ "id": 5285,
+ "start": 1728.585,
+ "end": 1728.905,
+ "text": "happened"
+ },
+ {
+ "id": 5286,
+ "start": 1728.905,
+ "end": 1729.045,
+ "text": "on"
+ },
+ {
+ "id": 5287,
+ "start": 1729.6499999999996,
+ "end": 1729.8499999999995,
+ "text": "Facebook,"
+ },
+ {
+ "id": 5288,
+ "start": 1730.395,
+ "end": 1730.655,
+ "text": "and"
+ },
+ {
+ "id": 5289,
+ "start": 1730.655,
+ "end": 1730.915,
+ "text": "they’ve"
+ },
+ {
+ "id": 5290,
+ "start": 1730.915,
+ "end": 1731.505,
+ "text": "recommended,"
+ },
+ {
+ "id": 5291,
+ "start": 1731.505,
+ "end": 1731.675,
+ "text": "for"
+ },
+ {
+ "id": 5292,
+ "start": 1731.675,
+ "end": 1732.105,
+ "text": "instance,"
+ },
+ {
+ "id": 5293,
+ "start": 1732.105,
+ "end": 1732.285,
+ "text": "that"
+ },
+ {
+ "id": 5294,
+ "start": 1732.285,
+ "end": 1732.455,
+ "text": "there"
+ },
+ {
+ "id": 5295,
+ "start": 1732.455,
+ "end": 1732.615,
+ "text": "be"
+ },
+ {
+ "id": 5296,
+ "start": 1732.615,
+ "end": 1733.815,
+ "text": "legislation"
+ },
+ {
+ "id": 5297,
+ "start": 1733.815,
+ "end": 1734.345,
+ "text": "that"
+ },
+ {
+ "id": 5298,
+ "start": 1734.345,
+ "end": 1734.985,
+ "text": "holds"
+ },
+ {
+ "id": 5299,
+ "start": 1734.985,
+ "end": 1736.065,
+ "text": "Facebook"
+ },
+ {
+ "id": 5300,
+ "start": 1736.065,
+ "end": 1737.355,
+ "text": "liable"
+ },
+ {
+ "id": 5301,
+ "start": 1737.355,
+ "end": 1737.795,
+ "text": "if"
+ },
+ {
+ "id": 5302,
+ "start": 1737.795,
+ "end": 1737.925,
+ "text": "they"
+ },
+ {
+ "id": 5303,
+ "start": 1737.925,
+ "end": 1738.255,
+ "text": "don’t"
+ },
+ {
+ "id": 5304,
+ "start": 1738.255,
+ "end": 1738.565,
+ "text": "take"
+ },
+ {
+ "id": 5305,
+ "start": 1738.565,
+ "end": 1738.995,
+ "text": "down"
+ },
+ {
+ "id": 5306,
+ "start": 1738.995,
+ "end": 1739.075,
+ "text": "the"
+ },
+ {
+ "id": 5307,
+ "start": 1739.075,
+ "end": 1739.735,
+ "text": "content"
+ },
+ {
+ "id": 5308,
+ "start": 1739.735,
+ "end": 1739.935,
+ "text": "of"
+ },
+ {
+ "id": 5309,
+ "start": 1739.935,
+ "end": 1740.285,
+ "text": "bad"
+ },
+ {
+ "id": 5310,
+ "start": 1740.285,
+ "end": 1741.515,
+ "text": "actors."
+ },
+ {
+ "id": 5311,
+ "start": 1741.515,
+ "end": 1741.815,
+ "text": "What"
+ },
+ {
+ "id": 5312,
+ "start": 1741.815,
+ "end": 1742.025,
+ "text": "does"
+ },
+ {
+ "id": 5313,
+ "start": 1742.025,
+ "end": 1742.345,
+ "text": "that"
+ },
+ {
+ "id": 5314,
+ "start": 1742.345,
+ "end": 1742.695,
+ "text": "sound"
+ },
+ {
+ "id": 5315,
+ "start": 1742.695,
+ "end": 1742.905,
+ "text": "like"
+ },
+ {
+ "id": 5316,
+ "start": 1742.905,
+ "end": 1743.045,
+ "text": "to"
+ },
+ {
+ "id": 5317,
+ "start": 1743.045,
+ "end": 1743.625,
+ "text": "you?"
+ },
+ {
+ "id": 5318,
+ "start": 1743.625,
+ "end": 1743.755,
+ "text": "Is"
+ },
+ {
+ "id": 5319,
+ "start": 1743.755,
+ "end": 1743.935,
+ "text": "that"
+ },
+ {
+ "id": 5320,
+ "start": 1743.935,
+ "end": 1744.245,
+ "text": "actually"
+ },
+ {
+ "id": 5321,
+ "start": 1744.245,
+ "end": 1744.325,
+ "text": "a"
+ },
+ {
+ "id": 5322,
+ "start": 1744.325,
+ "end": 1745.715,
+ "text": "feasible"
+ },
+ {
+ "id": 5323,
+ "start": 1745.715,
+ "end": 1746.005,
+ "text": "piece"
+ },
+ {
+ "id": 5324,
+ "start": 1746.005,
+ "end": 1746.105,
+ "text": "of"
+ },
+ {
+ "id": 5325,
+ "start": 1746.105,
+ "end": 1747.415,
+ "text": "legislation"
+ },
+ {
+ "id": 5326,
+ "start": 1747.415,
+ "end": 1747.995,
+ "text": "that"
+ },
+ {
+ "id": 5327,
+ "start": 1747.995,
+ "end": 1748.165,
+ "text": "would"
+ },
+ {
+ "id": 5328,
+ "start": 1748.165,
+ "end": 1748.345,
+ "text": "put"
+ },
+ {
+ "id": 5329,
+ "start": 1748.345,
+ "end": 1748.445,
+ "text": "the"
+ },
+ {
+ "id": 5330,
+ "start": 1748.445,
+ "end": 1749.055,
+ "text": "liability"
+ },
+ {
+ "id": 5331,
+ "start": 1749.055,
+ "end": 1749.155,
+ "text": "on"
+ },
+ {
+ "id": 5332,
+ "start": 1749.155,
+ "end": 1749.235,
+ "text": "a"
+ },
+ {
+ "id": 5333,
+ "start": 1749.235,
+ "end": 1749.575,
+ "text": "private"
+ },
+ {
+ "id": 5334,
+ "start": 1749.575,
+ "end": 1749.945,
+ "text": "company"
+ },
+ {
+ "id": 5335,
+ "start": 1749.945,
+ "end": 1750.135,
+ "text": "like"
+ },
+ {
+ "id": 5336,
+ "start": 1750.135,
+ "end": 1751.315,
+ "text": "Facebook"
+ },
+ {
+ "id": 5337,
+ "start": 1751.315,
+ "end": 1751.535,
+ "text": "to"
+ },
+ {
+ "id": 5338,
+ "start": 1751.535,
+ "end": 1751.945,
+ "text": "take"
+ },
+ {
+ "id": 5339,
+ "start": 1751.945,
+ "end": 1753.115,
+ "text": "down"
+ },
+ {
+ "id": 5340,
+ "start": 1753.115,
+ "end": 1753.415,
+ "text": "bad"
+ },
+ {
+ "id": 5341,
+ "start": 1753.415,
+ "end": 1754.615,
+ "text": "actors?"
+ },
+ {
+ "id": 5342,
+ "start": 1754.615,
+ "end": 1754.785,
+ "text": "We"
+ },
+ {
+ "id": 5343,
+ "start": 1754.785,
+ "end": 1754.885,
+ "text": "have"
+ },
+ {
+ "id": 5344,
+ "start": 1754.885,
+ "end": 1754.965,
+ "text": "to"
+ },
+ {
+ "id": 5345,
+ "start": 1754.965,
+ "end": 1755.055,
+ "text": "be"
+ },
+ {
+ "id": 5346,
+ "start": 1755.055,
+ "end": 1755.265,
+ "text": "really"
+ },
+ {
+ "id": 5347,
+ "start": 1755.265,
+ "end": 1755.655,
+ "text": "careful"
+ },
+ {
+ "id": 5348,
+ "start": 1755.655,
+ "end": 1756.305,
+ "text": "here"
+ },
+ {
+ "id": 5349,
+ "start": 1756.305,
+ "end": 1756.465,
+ "text": "in"
+ },
+ {
+ "id": 5350,
+ "start": 1756.465,
+ "end": 1756.635,
+ "text": "this"
+ },
+ {
+ "id": 5351,
+ "start": 1756.635,
+ "end": 1757.095,
+ "text": "balance,"
+ },
+ {
+ "id": 5352,
+ "start": 1757.095,
+ "end": 1758.065,
+ "text": "right?"
+ },
+ {
+ "id": 5353,
+ "start": 1758.065,
+ "end": 1758.865,
+ "text": "Open"
+ },
+ {
+ "id": 5354,
+ "start": 1758.655,
+ "end": 1759.225,
+ "text": "public"
+ },
+ {
+ "id": 5355,
+ "start": 1759.1500000000003,
+ "end": 1759.6099999999997,
+ "text": "debate,"
+ },
+ {
+ "id": 5356,
+ "start": 1759.645,
+ "end": 1759.995,
+ "text": "free"
+ },
+ {
+ "id": 5357,
+ "start": 1759.995,
+ "end": 1760.125,
+ "text": "and"
+ },
+ {
+ "id": 5358,
+ "start": 1760.125,
+ "end": 1760.325,
+ "text": "fair"
+ },
+ {
+ "id": 5359,
+ "start": 1760.325,
+ "end": 1760.745,
+ "text": "elections"
+ },
+ {
+ "id": 5360,
+ "start": 1760.745,
+ "end": 1760.845,
+ "text": "are"
+ },
+ {
+ "id": 5361,
+ "start": 1760.845,
+ "end": 1760.935,
+ "text": "the"
+ },
+ {
+ "id": 5362,
+ "start": 1760.935,
+ "end": 1762.015,
+ "text": "cornerstone"
+ },
+ {
+ "id": 5363,
+ "start": 1762.015,
+ "end": 1762.355,
+ "text": "of"
+ },
+ {
+ "id": 5364,
+ "start": 1762.355,
+ "end": 1762.805,
+ "text": "democratic"
+ },
+ {
+ "id": 5365,
+ "start": 1762.805,
+ "end": 1763.905,
+ "text": "society,"
+ },
+ {
+ "id": 5366,
+ "start": 1763.905,
+ "end": 1764.225,
+ "text": "and"
+ },
+ {
+ "id": 5367,
+ "start": 1764.225,
+ "end": 1764.375,
+ "text": "the"
+ },
+ {
+ "id": 5368,
+ "start": 1764.375,
+ "end": 1764.715,
+ "text": "last"
+ },
+ {
+ "id": 5369,
+ "start": 1764.715,
+ "end": 1764.875,
+ "text": "thing"
+ },
+ {
+ "id": 5370,
+ "start": 1764.875,
+ "end": 1764.985,
+ "text": "we"
+ },
+ {
+ "id": 5371,
+ "start": 1764.985,
+ "end": 1765.115,
+ "text": "would"
+ },
+ {
+ "id": 5372,
+ "start": 1765.115,
+ "end": 1765.545,
+ "text": "want"
+ },
+ {
+ "id": 5373,
+ "start": 1765.545,
+ "end": 1765.715,
+ "text": "is"
+ },
+ {
+ "id": 5374,
+ "start": 1765.715,
+ "end": 1765.775,
+ "text": "a"
+ },
+ {
+ "id": 5375,
+ "start": 1765.775,
+ "end": 1766.365,
+ "text": "drive"
+ },
+ {
+ "id": 5376,
+ "start": 1766.205,
+ "end": 1766.73,
+ "text": "toward"
+ },
+ {
+ "id": 5377,
+ "start": 1766.635,
+ "end": 1767.095,
+ "text": "protecting"
+ },
+ {
+ "id": 5378,
+ "start": 1767.095,
+ "end": 1767.295,
+ "text": "them"
+ },
+ {
+ "id": 5379,
+ "start": 1767.295,
+ "end": 1767.405,
+ "text": "that"
+ },
+ {
+ "id": 5380,
+ "start": 1767.405,
+ "end": 1767.715,
+ "text": "actually"
+ },
+ {
+ "id": 5381,
+ "start": 1767.715,
+ "end": 1768.085,
+ "text": "results"
+ },
+ {
+ "id": 5382,
+ "start": 1768.085,
+ "end": 1768.855,
+ "text": "in"
+ },
+ {
+ "id": 5383,
+ "start": 1768.855,
+ "end": 1769.625,
+ "text": "mitigating,"
+ },
+ {
+ "id": 5384,
+ "start": 1769.625,
+ "end": 1769.835,
+ "text": "in"
+ },
+ {
+ "id": 5385,
+ "start": 1769.835,
+ "end": 1770.605,
+ "text": "eliminating,"
+ },
+ {
+ "id": 5386,
+ "start": 1770.605,
+ "end": 1770.815,
+ "text": "in"
+ },
+ {
+ "id": 5387,
+ "start": 1770.815,
+ "end": 1771.495,
+ "text": "challenging"
+ },
+ {
+ "id": 5388,
+ "start": 1771.495,
+ "end": 1771.675,
+ "text": "free"
+ },
+ {
+ "id": 5389,
+ "start": 1771.675,
+ "end": 1772.155,
+ "text": "speech."
+ },
+ {
+ "id": 5390,
+ "start": 1772.155,
+ "end": 1772.325,
+ "text": "There’s"
+ },
+ {
+ "id": 5391,
+ "start": 1772.325,
+ "end": 1772.385,
+ "text": "a"
+ },
+ {
+ "id": 5392,
+ "start": 1772.385,
+ "end": 1772.825,
+ "text": "balance"
+ },
+ {
+ "id": 5393,
+ "start": 1772.825,
+ "end": 1772.995,
+ "text": "here,"
+ },
+ {
+ "id": 5394,
+ "start": 1772.995,
+ "end": 1773.085,
+ "text": "and"
+ },
+ {
+ "id": 5395,
+ "start": 1773.085,
+ "end": 1773.155,
+ "text": "the"
+ },
+ {
+ "id": 5396,
+ "start": 1773.155,
+ "end": 1773.335,
+ "text": "thing"
+ },
+ {
+ "id": 5397,
+ "start": 1773.335,
+ "end": 1773.445,
+ "text": "that"
+ },
+ {
+ "id": 5398,
+ "start": 1773.445,
+ "end": 1773.505,
+ "text": "I"
+ },
+ {
+ "id": 5399,
+ "start": 1773.505,
+ "end": 1773.815,
+ "text": "worry"
+ },
+ {
+ "id": 5400,
+ "start": 1773.815,
+ "end": 1774.415,
+ "text": "about"
+ },
+ {
+ "id": 5401,
+ "start": 1774.415,
+ "end": 1774.565,
+ "text": "is"
+ },
+ {
+ "id": 5402,
+ "start": 1774.565,
+ "end": 1774.835,
+ "text": "making"
+ },
+ {
+ "id": 5403,
+ "start": 1774.835,
+ "end": 1775.045,
+ "text": "sure"
+ },
+ {
+ "id": 5404,
+ "start": 1775.045,
+ "end": 1775.195,
+ "text": "that"
+ },
+ {
+ "id": 5405,
+ "start": 1775.195,
+ "end": 1775.315,
+ "text": "we"
+ },
+ {
+ "id": 5406,
+ "start": 1775.315,
+ "end": 1775.435,
+ "text": "can"
+ },
+ {
+ "id": 5407,
+ "start": 1775.435,
+ "end": 1775.785,
+ "text": "strike"
+ },
+ {
+ "id": 5408,
+ "start": 1775.785,
+ "end": 1775.935,
+ "text": "that"
+ },
+ {
+ "id": 5409,
+ "start": 1775.935,
+ "end": 1776.765,
+ "text": "balance."
+ },
+ {
+ "id": 5410,
+ "start": 1776.765,
+ "end": 1777.465,
+ "text": "Explain"
+ },
+ {
+ "id": 5411,
+ "start": 1777.465,
+ "end": 1777.645,
+ "text": "that"
+ },
+ {
+ "id": 5412,
+ "start": 1777.645,
+ "end": 1777.775,
+ "text": "to"
+ },
+ {
+ "id": 5413,
+ "start": 1777.775,
+ "end": 1777.975,
+ "text": "me"
+ },
+ {
+ "id": 5414,
+ "start": 1777.975,
+ "end": 1778.595,
+ "text": "then."
+ },
+ {
+ "id": 5415,
+ "start": 1778.595,
+ "end": 1779.025,
+ "text": "You"
+ },
+ {
+ "id": 5416,
+ "start": 1779.025,
+ "end": 1779.355,
+ "text": "think"
+ },
+ {
+ "id": 5417,
+ "start": 1779.355,
+ "end": 1779.525,
+ "text": "that"
+ },
+ {
+ "id": 5418,
+ "start": 1779.525,
+ "end": 1779.705,
+ "text": "if"
+ },
+ {
+ "id": 5419,
+ "start": 1779.705,
+ "end": 1779.845,
+ "text": "you"
+ },
+ {
+ "id": 5420,
+ "start": 1779.845,
+ "end": 1779.995,
+ "text": "were"
+ },
+ {
+ "id": 5421,
+ "start": 1779.995,
+ "end": 1781.125,
+ "text": "mandated"
+ },
+ {
+ "id": 5422,
+ "start": 1781.125,
+ "end": 1781.265,
+ "text": "to"
+ },
+ {
+ "id": 5423,
+ "start": 1781.265,
+ "end": 1781.555,
+ "text": "take"
+ },
+ {
+ "id": 5424,
+ "start": 1781.555,
+ "end": 1781.835,
+ "text": "down"
+ },
+ {
+ "id": 5425,
+ "start": 1781.835,
+ "end": 1782.125,
+ "text": "bad"
+ },
+ {
+ "id": 5426,
+ "start": 1782.125,
+ "end": 1782.775,
+ "text": "content"
+ },
+ {
+ "id": 5427,
+ "start": 1782.775,
+ "end": 1783.355,
+ "text": "that"
+ },
+ {
+ "id": 5428,
+ "start": 1783.355,
+ "end": 1783.575,
+ "text": "that"
+ },
+ {
+ "id": 5429,
+ "start": 1783.575,
+ "end": 1783.735,
+ "text": "would"
+ },
+ {
+ "id": 5430,
+ "start": 1783.735,
+ "end": 1784.225,
+ "text": "somehow"
+ },
+ {
+ "id": 5431,
+ "start": 1784.225,
+ "end": 1784.735,
+ "text": "mitigate"
+ },
+ {
+ "id": 5432,
+ "start": 1784.735,
+ "end": 1784.935,
+ "text": "free"
+ },
+ {
+ "id": 5433,
+ "start": 1784.935,
+ "end": 1785.985,
+ "text": "speech?"
+ },
+ {
+ "id": 5434,
+ "start": 1785.985,
+ "end": 1786.105,
+ "text": "I"
+ },
+ {
+ "id": 5435,
+ "start": 1786.105,
+ "end": 1786.385,
+ "text": "think"
+ },
+ {
+ "id": 5436,
+ "start": 1786.385,
+ "end": 1787.435,
+ "text": "that"
+ },
+ {
+ "id": 5437,
+ "start": 1787.435,
+ "end": 1787.625,
+ "text": "the"
+ },
+ {
+ "id": 5438,
+ "start": 1787.625,
+ "end": 1788.035,
+ "text": "speed"
+ },
+ {
+ "id": 5439,
+ "start": 1788.035,
+ "end": 1788.125,
+ "text": "at"
+ },
+ {
+ "id": 5440,
+ "start": 1788.125,
+ "end": 1788.325,
+ "text": "which"
+ },
+ {
+ "id": 5441,
+ "start": 1788.325,
+ "end": 1788.445,
+ "text": "you"
+ },
+ {
+ "id": 5442,
+ "start": 1788.445,
+ "end": 1789.095,
+ "text": "react"
+ },
+ {
+ "id": 5443,
+ "start": 1789.095,
+ "end": 1789.235,
+ "text": "and"
+ },
+ {
+ "id": 5444,
+ "start": 1789.235,
+ "end": 1789.315,
+ "text": "our"
+ },
+ {
+ "id": 5445,
+ "start": 1789.315,
+ "end": 1789.775,
+ "text": "ability"
+ },
+ {
+ "id": 5446,
+ "start": 1789.775,
+ "end": 1789.845,
+ "text": "to"
+ },
+ {
+ "id": 5447,
+ "start": 1790.1750000000002,
+ "end": 1790.285,
+ "text": "analyze"
+ },
+ {
+ "id": 5448,
+ "start": 1790.575,
+ "end": 1790.725,
+ "text": "is"
+ },
+ {
+ "id": 5449,
+ "start": 1790.725,
+ "end": 1790.935,
+ "text": "really"
+ },
+ {
+ "id": 5450,
+ "start": 1790.935,
+ "end": 1792.205,
+ "text": "important."
+ },
+ {
+ "id": 5451,
+ "start": 1792.205,
+ "end": 1792.645,
+ "text": "We"
+ },
+ {
+ "id": 5452,
+ "start": 1792.645,
+ "end": 1792.895,
+ "text": "have"
+ },
+ {
+ "id": 5453,
+ "start": 1792.895,
+ "end": 1793.325,
+ "text": "positioned"
+ },
+ {
+ "id": 5454,
+ "start": 1793.325,
+ "end": 1793.795,
+ "text": "ourselves"
+ },
+ {
+ "id": 5455,
+ "start": 1793.795,
+ "end": 1793.875,
+ "text": "to"
+ },
+ {
+ "id": 5456,
+ "start": 1793.875,
+ "end": 1794.015,
+ "text": "be"
+ },
+ {
+ "id": 5457,
+ "start": 1794.015,
+ "end": 1794.165,
+ "text": "able"
+ },
+ {
+ "id": 5458,
+ "start": 1794.165,
+ "end": 1794.265,
+ "text": "to"
+ },
+ {
+ "id": 5459,
+ "start": 1794.265,
+ "end": 1794.715,
+ "text": "identify"
+ },
+ {
+ "id": 5460,
+ "start": 1794.715,
+ "end": 1794.845,
+ "text": "and"
+ },
+ {
+ "id": 5461,
+ "start": 1794.845,
+ "end": 1795.065,
+ "text": "take"
+ },
+ {
+ "id": 5462,
+ "start": 1795.065,
+ "end": 1795.285,
+ "text": "down"
+ },
+ {
+ "id": 5463,
+ "start": 1795.285,
+ "end": 1795.575,
+ "text": "bad"
+ },
+ {
+ "id": 5464,
+ "start": 1795.575,
+ "end": 1796.065,
+ "text": "content,"
+ },
+ {
+ "id": 5465,
+ "start": 1796.065,
+ "end": 1796.575,
+ "text": "harmful"
+ },
+ {
+ "id": 5466,
+ "start": 1796.575,
+ "end": 1797.065,
+ "text": "content,"
+ },
+ {
+ "id": 5467,
+ "start": 1797.065,
+ "end": 1797.515,
+ "text": "particularly"
+ },
+ {
+ "id": 5468,
+ "start": 1797.515,
+ "end": 1797.935,
+ "text": "content"
+ },
+ {
+ "id": 5469,
+ "start": 1797.935,
+ "end": 1798.045,
+ "text": "that"
+ },
+ {
+ "id": 5470,
+ "start": 1798.045,
+ "end": 1798.525,
+ "text": "violates"
+ },
+ {
+ "id": 5471,
+ "start": 1798.525,
+ "end": 1798.585,
+ "text": "our"
+ },
+ {
+ "id": 5472,
+ "start": 1798.585,
+ "end": 1798.985,
+ "text": "Community"
+ },
+ {
+ "id": 5473,
+ "start": 1798.985,
+ "end": 1800.325,
+ "text": "Standards,"
+ },
+ {
+ "id": 5474,
+ "start": 1800.325,
+ "end": 1801.215,
+ "text": "now"
+ },
+ {
+ "id": 5475,
+ "start": 1801.215,
+ "end": 1801.485,
+ "text": "under"
+ },
+ {
+ "id": 5476,
+ "start": 1801.485,
+ "end": 1801.585,
+ "text": "our"
+ },
+ {
+ "id": 5477,
+ "start": 1801.585,
+ "end": 1802.205,
+ "text": "policies,"
+ },
+ {
+ "id": 5478,
+ "start": 1802.205,
+ "end": 1802.375,
+ "text": "with"
+ },
+ {
+ "id": 5479,
+ "start": 1802.375,
+ "end": 1802.775,
+ "text": "incredible"
+ },
+ {
+ "id": 5480,
+ "start": 1802.775,
+ "end": 1803.085,
+ "text": "speed."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 1.58,
+ "end": 9.59,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 1,
+ "start": 10.14,
+ "end": 20.43,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 2,
+ "start": 20.43,
+ "end": 25.4,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 3,
+ "start": 25.4,
+ "end": 29.8,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 4,
+ "start": 28.32,
+ "end": 31.81,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 5,
+ "start": 31.81,
+ "end": 39.24,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 6,
+ "start": 39.54,
+ "end": 43.52,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 7,
+ "start": 43.52,
+ "end": 45.18000000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 8,
+ "start": 45.32,
+ "end": 47.05,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 9,
+ "start": 47.05,
+ "end": 51.04,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 10,
+ "start": 50.65,
+ "end": 53.755,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 11,
+ "start": 53.9,
+ "end": 64.88,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 12,
+ "start": 64.88,
+ "end": 73.73,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 13,
+ "start": 73.73,
+ "end": 76.33,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 14,
+ "start": 76.33,
+ "end": 82.6,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 15,
+ "start": 81.45,
+ "end": 89.315,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 16,
+ "start": 89.64,
+ "end": 90.89,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 17,
+ "start": 90.89,
+ "end": 99.44,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 18,
+ "start": 99.44,
+ "end": 104.84,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 19,
+ "start": 104.84,
+ "end": 113.57,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 20,
+ "start": 113.57,
+ "end": 118.44075000000004,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 21,
+ "start": 119.0315,
+ "end": 134.89300000000003,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 22,
+ "start": 134.671,
+ "end": 146.003,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 23,
+ "start": 146.003,
+ "end": 151.983,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 24,
+ "start": 151.983,
+ "end": 155.8455,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 25,
+ "start": 155.98300000000003,
+ "end": 156.16799999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 26,
+ "start": 156.28300000000002,
+ "end": 162.613,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 27,
+ "start": 162.753,
+ "end": 171.573,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 28,
+ "start": 171.573,
+ "end": 177.063,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 29,
+ "start": 177.063,
+ "end": 192.71800000000002,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 30,
+ "start": 192.963,
+ "end": 198.363,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 31,
+ "start": 198.363,
+ "end": 206.303,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 32,
+ "start": 206.303,
+ "end": 207.633,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 33,
+ "start": 207.633,
+ "end": 209.253,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 34,
+ "start": 209.253,
+ "end": 210.793,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 35,
+ "start": 210.793,
+ "end": 214.233,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 36,
+ "start": 214.223,
+ "end": 216.92800000000003,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 37,
+ "start": 217.143,
+ "end": 226.48800000000003,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 38,
+ "start": 226.833,
+ "end": 246.213,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 39,
+ "start": 246.213,
+ "end": 257.503,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 40,
+ "start": 257.113,
+ "end": 259.163,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 41,
+ "start": 259.163,
+ "end": 266.843,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 42,
+ "start": 266.843,
+ "end": 277.028,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 43,
+ "start": 277.393,
+ "end": 282.563,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 44,
+ "start": 282.563,
+ "end": 288.133,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 45,
+ "start": 288.133,
+ "end": 291.513,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 46,
+ "start": 291.513,
+ "end": 299.473,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 47,
+ "start": 299.473,
+ "end": 312.073,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 48,
+ "start": 312.073,
+ "end": 313.603,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 49,
+ "start": 313.603,
+ "end": 319.268,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 50,
+ "start": 319.663,
+ "end": 323.873,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 51,
+ "start": 323.873,
+ "end": 334.303,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 52,
+ "start": 334.303,
+ "end": 339.243,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 53,
+ "start": 339.243,
+ "end": 342.853,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 54,
+ "start": 342.853,
+ "end": 351.313,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 55,
+ "start": 351.413,
+ "end": 358.303,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 56,
+ "start": 358.303,
+ "end": 361.08625,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 57,
+ "start": 361.273,
+ "end": 372.899,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 58,
+ "start": 373.184,
+ "end": 377.784,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 59,
+ "start": 377.784,
+ "end": 383.884,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 60,
+ "start": 383.884,
+ "end": 389.584,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 61,
+ "start": 389.584,
+ "end": 392.284,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 62,
+ "start": 391.454,
+ "end": 409.884,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 63,
+ "start": 409.884,
+ "end": 413.864,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 64,
+ "start": 413.864,
+ "end": 430.114,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 65,
+ "start": 430.114,
+ "end": 440.609,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 66,
+ "start": 440.92400000000004,
+ "end": 444.644,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 67,
+ "start": 444.61733333333336,
+ "end": 453.62399999999997,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 68,
+ "start": 453.754,
+ "end": 459.664,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 69,
+ "start": 459.664,
+ "end": 483.7490000000001,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 70,
+ "start": 484.294,
+ "end": 495.504,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 71,
+ "start": 495.504,
+ "end": 504.644,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 72,
+ "start": 504.644,
+ "end": 507.604,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 73,
+ "start": 507.604,
+ "end": 521.304,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 74,
+ "start": 521.304,
+ "end": 523.0920000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 75,
+ "start": 523.226,
+ "end": 523.498,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 76,
+ "start": 523.624,
+ "end": 528.934,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 77,
+ "start": 528.934,
+ "end": 533.604,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 78,
+ "start": 533.604,
+ "end": 537.414,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 79,
+ "start": 537.399,
+ "end": 548.384,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 80,
+ "start": 548.604,
+ "end": 550.594,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 81,
+ "start": 550.594,
+ "end": 553.1789999999996,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 82,
+ "start": 554.154,
+ "end": 564.824,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 83,
+ "start": 564.824,
+ "end": 570.364,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 84,
+ "start": 570.364,
+ "end": 572.104,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 85,
+ "start": 572.104,
+ "end": 587.844,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 86,
+ "start": 587.844,
+ "end": 596.2240000000002,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 87,
+ "start": 596.834,
+ "end": 605.2320000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 88,
+ "start": 605.812,
+ "end": 610.822,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 89,
+ "start": 610.9886666666667,
+ "end": 615.377,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 90,
+ "start": 615.782,
+ "end": 623.272,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 91,
+ "start": 623.272,
+ "end": 631.012,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 92,
+ "start": 631.012,
+ "end": 635.212,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 93,
+ "start": 635.212,
+ "end": 636.0269999999999,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 94,
+ "start": 636.232,
+ "end": 642.642,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 95,
+ "start": 642.5245000000001,
+ "end": 644.342,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 96,
+ "start": 644.342,
+ "end": 656.402,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 97,
+ "start": 656.612,
+ "end": 658.352,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 98,
+ "start": 658.352,
+ "end": 660.792,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 99,
+ "start": 660.792,
+ "end": 665.317,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 100,
+ "start": 665.392,
+ "end": 669.182,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 101,
+ "start": 669.182,
+ "end": 672.592,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 102,
+ "start": 672.592,
+ "end": 673.612,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 103,
+ "start": 673.612,
+ "end": 680.012,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 104,
+ "start": 680.012,
+ "end": 681.712,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 105,
+ "start": 681.712,
+ "end": 684.052,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 106,
+ "start": 684.052,
+ "end": 688.822,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 107,
+ "start": 688.822,
+ "end": 692.112,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 108,
+ "start": 692.112,
+ "end": 699.642,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 109,
+ "start": 699.642,
+ "end": 711.462,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 110,
+ "start": 712.002,
+ "end": 724.954,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 111,
+ "start": 725.0540000000001,
+ "end": 745.444,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 112,
+ "start": 745.444,
+ "end": 752.804,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 113,
+ "start": 752.804,
+ "end": 758.5965000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 114,
+ "start": 758.744,
+ "end": 767.599,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 115,
+ "start": 767.844,
+ "end": 772.364,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 116,
+ "start": 772.364,
+ "end": 775.694,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 117,
+ "start": 775.694,
+ "end": 777.934,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 118,
+ "start": 778.184,
+ "end": 790.194,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 119,
+ "start": 790.194,
+ "end": 804.944,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 120,
+ "start": 804.944,
+ "end": 814.134,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 121,
+ "start": 814.134,
+ "end": 816.944,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 122,
+ "start": 816.944,
+ "end": 818.674,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 123,
+ "start": 818.674,
+ "end": 828.684,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 124,
+ "start": 828.574,
+ "end": 832.694,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 125,
+ "start": 832.694,
+ "end": 834.824,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 126,
+ "start": 834.994,
+ "end": 837.924,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 127,
+ "start": 837.924,
+ "end": 844.304,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 128,
+ "start": 844.304,
+ "end": 852.464,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 129,
+ "start": 852.464,
+ "end": 870.7273333333333,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 130,
+ "start": 870.764,
+ "end": 874.784,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 131,
+ "start": 874.784,
+ "end": 890.564,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 132,
+ "start": 890.564,
+ "end": 894.974,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 133,
+ "start": 895.094,
+ "end": 902.194,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 134,
+ "start": 902.194,
+ "end": 916.894,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 135,
+ "start": 916.894,
+ "end": 918.774,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 136,
+ "start": 918.774,
+ "end": 920.1590000000001,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 137,
+ "start": 920.194,
+ "end": 937.374,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 138,
+ "start": 937.374,
+ "end": 939.014,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 139,
+ "start": 939.014,
+ "end": 941.6990000000005,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 140,
+ "start": 943.404,
+ "end": 951.524,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 141,
+ "start": 951.5590000000001,
+ "end": 958.3240000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 142,
+ "start": 958.564,
+ "end": 962.554,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 143,
+ "start": 962.554,
+ "end": 968.867,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 144,
+ "start": 968.867,
+ "end": 973.3570000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 145,
+ "start": 973.287,
+ "end": 974.467,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 146,
+ "start": 974.467,
+ "end": 977.047,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 147,
+ "start": 977.047,
+ "end": 981.057,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 148,
+ "start": 981.057,
+ "end": 985.227,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 149,
+ "start": 985.227,
+ "end": 997.047,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 150,
+ "start": 997.047,
+ "end": 1005.7669999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 151,
+ "start": 1006.607,
+ "end": 1023.667,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 152,
+ "start": 1023.667,
+ "end": 1027.797,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 153,
+ "start": 1027.797,
+ "end": 1030.297,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 154,
+ "start": 1030.297,
+ "end": 1032.667,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 155,
+ "start": 1032.4803333333332,
+ "end": 1041.2919999999997,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 156,
+ "start": 1041.327,
+ "end": 1048.697,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 157,
+ "start": 1048.697,
+ "end": 1055.9470000000001,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 158,
+ "start": 1056.137,
+ "end": 1063.617,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 159,
+ "start": 1063.617,
+ "end": 1067.257,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 160,
+ "start": 1067.257,
+ "end": 1075.667,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 161,
+ "start": 1075.407,
+ "end": 1076.067,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 162,
+ "start": 1076.157,
+ "end": 1090.4470000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 163,
+ "start": 1090.507,
+ "end": 1100.3470000000004,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 164,
+ "start": 1100.8036666666667,
+ "end": 1118.082,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 165,
+ "start": 1118.137,
+ "end": 1125.202,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 166,
+ "start": 1125.567,
+ "end": 1130.867,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 167,
+ "start": 1130.867,
+ "end": 1138.5420000000001,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 168,
+ "start": 1138.837,
+ "end": 1160.287,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 169,
+ "start": 1160.287,
+ "end": 1169.137,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 170,
+ "start": 1168.677,
+ "end": 1172.4170000000004,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 171,
+ "start": 1173.317,
+ "end": 1177.657,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 172,
+ "start": 1177.657,
+ "end": 1184.5369999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 173,
+ "start": 1184.817,
+ "end": 1190.052,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 174,
+ "start": 1190.507,
+ "end": 1199.077,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 175,
+ "start": 1199.392,
+ "end": 1214.828,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 176,
+ "start": 1214.828,
+ "end": 1225.8929999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 177,
+ "start": 1226.068,
+ "end": 1230.2379999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 178,
+ "start": 1230.688,
+ "end": 1232.968,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 179,
+ "start": 1232.968,
+ "end": 1246.1280000000002,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 180,
+ "start": 1246.448,
+ "end": 1256.348,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 181,
+ "start": 1256.348,
+ "end": 1268.2379999999998,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 182,
+ "start": 1268.748,
+ "end": 1278.963,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 183,
+ "start": 1279.218,
+ "end": 1286.8080000000002,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 184,
+ "start": 1287.288,
+ "end": 1287.918,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 185,
+ "start": 1287.848,
+ "end": 1294.248,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 186,
+ "start": 1294.248,
+ "end": 1295.808,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 187,
+ "start": 1295.808,
+ "end": 1297.858,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 188,
+ "start": 1297.858,
+ "end": 1300.118,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 189,
+ "start": 1300.118,
+ "end": 1312.948,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 190,
+ "start": 1312.948,
+ "end": 1323.268,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 191,
+ "start": 1323.268,
+ "end": 1326.3680000000004,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 192,
+ "start": 1326.403,
+ "end": 1328.803,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 193,
+ "start": 1328.793,
+ "end": 1333.343,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 194,
+ "start": 1333.343,
+ "end": 1336.053,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 195,
+ "start": 1336.7863333333335,
+ "end": 1339.353,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 196,
+ "start": 1340.1679999999997,
+ "end": 1340.5529999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 197,
+ "start": 1341.643,
+ "end": 1348.023,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 198,
+ "start": 1348.023,
+ "end": 1354.1879999999999,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 199,
+ "start": 1354.223,
+ "end": 1358.643,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 200,
+ "start": 1358.643,
+ "end": 1367.033,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 201,
+ "start": 1367.033,
+ "end": 1372.943,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 202,
+ "start": 1372.943,
+ "end": 1392.2580000000003,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 203,
+ "start": 1392.403,
+ "end": 1397.013,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 204,
+ "start": 1397.013,
+ "end": 1403.133,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 205,
+ "start": 1403.133,
+ "end": 1407.9663333333333,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 206,
+ "start": 1408.163,
+ "end": 1417.853,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 207,
+ "start": 1417.853,
+ "end": 1425.808,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 208,
+ "start": 1425.823,
+ "end": 1426.633,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 209,
+ "start": 1426.633,
+ "end": 1427.613,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 210,
+ "start": 1427.613,
+ "end": 1430.173,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 211,
+ "start": 1430.173,
+ "end": 1433.443,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 212,
+ "start": 1433.443,
+ "end": 1434.8796666666667,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 213,
+ "start": 1434.953,
+ "end": 1443.533,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 214,
+ "start": 1443.533,
+ "end": 1462.378,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 215,
+ "start": 1462.378,
+ "end": 1471.628,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 216,
+ "start": 1471.628,
+ "end": 1478.163,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 217,
+ "start": 1478.438,
+ "end": 1490.463,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 218,
+ "start": 1490.788,
+ "end": 1517.5046666666667,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 219,
+ "start": 1517.5546666666667,
+ "end": 1519.388,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 220,
+ "start": 1519.388,
+ "end": 1520.988,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 221,
+ "start": 1520.988,
+ "end": 1540.188,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 222,
+ "start": 1540.188,
+ "end": 1553.8880000000004,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 223,
+ "start": 1554.638,
+ "end": 1558.098,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 224,
+ "start": 1558.098,
+ "end": 1560.858,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 225,
+ "start": 1560.858,
+ "end": 1568.625,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 226,
+ "start": 1568.625,
+ "end": 1582.79,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 227,
+ "start": 1582.915,
+ "end": 1584.8899999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 228,
+ "start": 1585.225,
+ "end": 1593.165,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 229,
+ "start": 1593.165,
+ "end": 1607.415,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 230,
+ "start": 1607.415,
+ "end": 1623.915,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 231,
+ "start": 1623.915,
+ "end": 1624.665,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 232,
+ "start": 1624.505,
+ "end": 1633.1550000000002,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 233,
+ "start": 1633.145,
+ "end": 1640.445,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 234,
+ "start": 1640.445,
+ "end": 1644.4399999999987,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 235,
+ "start": 1646.805,
+ "end": 1648.5750000000007,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 236,
+ "start": 1649.695,
+ "end": 1651.8999999999996,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 237,
+ "start": 1652.295,
+ "end": 1660.255,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 238,
+ "start": 1660.255,
+ "end": 1662.4250000000004,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 239,
+ "start": 1662.735,
+ "end": 1670.065,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 240,
+ "start": 1670.025,
+ "end": 1684.855,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 241,
+ "start": 1685.085,
+ "end": 1688.155,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 242,
+ "start": 1688.105,
+ "end": 1688.6716666666666,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 243,
+ "start": 1688.7516666666668,
+ "end": 1688.9183333333333,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 244,
+ "start": 1689.075,
+ "end": 1695.8849999999993,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 245,
+ "start": 1696.755,
+ "end": 1708.475,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 246,
+ "start": 1708.475,
+ "end": 1721.625,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 247,
+ "start": 1721.6616666666664,
+ "end": 1741.515,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 248,
+ "start": 1741.515,
+ "end": 1743.625,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 249,
+ "start": 1743.625,
+ "end": 1754.615,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 250,
+ "start": 1754.615,
+ "end": 1758.065,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 251,
+ "start": 1758.065,
+ "end": 1772.155,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 252,
+ "start": 1772.155,
+ "end": 1776.765,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 253,
+ "start": 1776.765,
+ "end": 1778.595,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 254,
+ "start": 1778.595,
+ "end": 1785.985,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 255,
+ "start": 1785.985,
+ "end": 1792.205,
+ "speaker": "Nathan Gleicher"
+ },
+ {
+ "id": 256,
+ "start": 1792.205,
+ "end": 1803.085,
+ "speaker": "Nathan Gleicher"
+ }
+ ]
+ }
+ },
+ {
+ "_id": "1002cjw29xii80000ird74yb19swa",
+ "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
+ "title": "Naomi Gleit",
+ "description": "Naomi Gleit, Facebook VP of Social Good. Interview for PBS Frontline, The Facebook Dilemma",
+ "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Naomi+Gleit-l-Ivr6kq6fk.mp4",
+ "clipName": "The Facebook Dilemma - Naomi Gleit-l-Ivr6kq6fk.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "id": 0,
+ "start": 1.44,
+ "end": 1.75,
+ "text": "So"
+ },
+ {
+ "id": 1,
+ "start": 1.75,
+ "end": 1.94,
+ "text": "if"
+ },
+ {
+ "id": 2,
+ "start": 1.94,
+ "end": 2.04,
+ "text": "you"
+ },
+ {
+ "id": 3,
+ "start": 2.285,
+ "end": 2.505,
+ "text": "can"
+ },
+ {
+ "id": 4,
+ "start": 2.63,
+ "end": 2.97,
+ "text": "think"
+ },
+ {
+ "id": 5,
+ "start": 2.97,
+ "end": 3.31,
+ "text": "back"
+ },
+ {
+ "id": 6,
+ "start": 3.31,
+ "end": 3.44,
+ "text": "and"
+ },
+ {
+ "id": 7,
+ "start": 3.44,
+ "end": 3.85,
+ "text": "situate"
+ },
+ {
+ "id": 8,
+ "start": 3.85,
+ "end": 4.19,
+ "text": "yourself"
+ },
+ {
+ "id": 9,
+ "start": 4.19,
+ "end": 4.47,
+ "text": "back"
+ },
+ {
+ "id": 10,
+ "start": 4.47,
+ "end": 5.05,
+ "text": "in"
+ },
+ {
+ "id": 11,
+ "start": 4.91,
+ "end": 5.73,
+ "text": "November"
+ },
+ {
+ "id": 12,
+ "start": 5.970000000000001,
+ "end": 6.5600000000000005,
+ "text": "2016"
+ },
+ {
+ "id": 13,
+ "start": 7.03,
+ "end": 7.39,
+ "text": "and"
+ },
+ {
+ "id": 14,
+ "start": 7.39,
+ "end": 7.8,
+ "text": "what"
+ },
+ {
+ "id": 15,
+ "start": 7.8,
+ "end": 8.06,
+ "text": "that"
+ },
+ {
+ "id": 16,
+ "start": 8.06,
+ "end": 8.43,
+ "text": "moment"
+ },
+ {
+ "id": 17,
+ "start": 8.43,
+ "end": 8.8,
+ "text": "was"
+ },
+ {
+ "id": 18,
+ "start": 8.8,
+ "end": 9.32,
+ "text": "like"
+ },
+ {
+ "id": 19,
+ "start": 9.32,
+ "end": 9.89,
+ "text": "here"
+ },
+ {
+ "id": 20,
+ "start": 9.88,
+ "end": 10.71,
+ "text": "internally"
+ },
+ {
+ "id": 21,
+ "start": 10.6,
+ "end": 11.16,
+ "text": "and"
+ },
+ {
+ "id": 22,
+ "start": 11.32,
+ "end": 11.61,
+ "text": "what"
+ },
+ {
+ "id": 23,
+ "start": 11.61,
+ "end": 11.79,
+ "text": "was"
+ },
+ {
+ "id": 24,
+ "start": 11.79,
+ "end": 11.96,
+ "text": "sort"
+ },
+ {
+ "id": 25,
+ "start": 11.96,
+ "end": 12.05,
+ "text": "of"
+ },
+ {
+ "id": 26,
+ "start": 12.05,
+ "end": 12.44,
+ "text": "dawning"
+ },
+ {
+ "id": 27,
+ "start": 12.44,
+ "end": 12.62,
+ "text": "on"
+ },
+ {
+ "id": 28,
+ "start": 12.62,
+ "end": 12.94,
+ "text": "you"
+ },
+ {
+ "id": 29,
+ "start": 12.94,
+ "end": 13.27,
+ "text": "about"
+ },
+ {
+ "id": 30,
+ "start": 13.27,
+ "end": 13.89,
+ "text": "Facebook,"
+ },
+ {
+ "id": 31,
+ "start": 13.89,
+ "end": 14.21,
+ "text": "about"
+ },
+ {
+ "id": 32,
+ "start": 14.100000000000001,
+ "end": 14.72,
+ "text": "the"
+ },
+ {
+ "id": 33,
+ "start": 14.31,
+ "end": 15.23,
+ "text": "election,"
+ },
+ {
+ "id": 34,
+ "start": 15.23,
+ "end": 15.48,
+ "text": "and"
+ },
+ {
+ "id": 35,
+ "start": 15.48,
+ "end": 15.62,
+ "text": "what"
+ },
+ {
+ "id": 36,
+ "start": 15.62,
+ "end": 15.77,
+ "text": "was"
+ },
+ {
+ "id": 37,
+ "start": 15.77,
+ "end": 15.87,
+ "text": "the"
+ },
+ {
+ "id": 38,
+ "start": 15.87,
+ "end": 16.19,
+ "text": "vibe"
+ },
+ {
+ "id": 39,
+ "start": 16.19,
+ "end": 16.59,
+ "text": "inside"
+ },
+ {
+ "id": 40,
+ "start": 16.59,
+ "end": 16.68,
+ "text": "of"
+ },
+ {
+ "id": 41,
+ "start": 16.68,
+ "end": 16.86,
+ "text": "here"
+ },
+ {
+ "id": 42,
+ "start": 16.86,
+ "end": 16.96,
+ "text": "at"
+ },
+ {
+ "id": 43,
+ "start": 16.96,
+ "end": 17.13,
+ "text": "that"
+ },
+ {
+ "id": 44,
+ "start": 17.13,
+ "end": 17.35,
+ "text": "point"
+ },
+ {
+ "id": 45,
+ "start": 17.35,
+ "end": 17.41,
+ "text": "in"
+ },
+ {
+ "id": 46,
+ "start": 17.41,
+ "end": 18.97,
+ "text": "time,"
+ },
+ {
+ "id": 47,
+ "start": 18.97,
+ "end": 19.18,
+ "text": "tell"
+ },
+ {
+ "id": 48,
+ "start": 19.18,
+ "end": 19.3,
+ "text": "me"
+ },
+ {
+ "id": 49,
+ "start": 19.3,
+ "end": 19.54,
+ "text": "about"
+ },
+ {
+ "id": 50,
+ "start": 19.54,
+ "end": 21.53,
+ "text": "it."
+ },
+ {
+ "id": 51,
+ "start": 21.53,
+ "end": 21.66,
+ "text": "I’ve"
+ },
+ {
+ "id": 52,
+ "start": 21.66,
+ "end": 21.78,
+ "text": "been"
+ },
+ {
+ "id": 53,
+ "start": 21.78,
+ "end": 21.91,
+ "text": "at"
+ },
+ {
+ "id": 54,
+ "start": 21.91,
+ "end": 22.37,
+ "text": "Facebook,"
+ },
+ {
+ "id": 55,
+ "start": 22.37,
+ "end": 22.61,
+ "text": "just"
+ },
+ {
+ "id": 56,
+ "start": 22.61,
+ "end": 22.76,
+ "text": "as"
+ },
+ {
+ "id": 57,
+ "start": 22.76,
+ "end": 22.96,
+ "text": "some"
+ },
+ {
+ "id": 58,
+ "start": 22.96,
+ "end": 23.54,
+ "text": "background,"
+ },
+ {
+ "id": 59,
+ "start": 23.54,
+ "end": 24.05,
+ "text": "for"
+ },
+ {
+ "id": 60,
+ "start": 24.05,
+ "end": 24.35,
+ "text": "almost"
+ },
+ {
+ "id": 61,
+ "start": 24.35,
+ "end": 24.7,
+ "text": "13"
+ },
+ {
+ "id": 62,
+ "start": 24.7,
+ "end": 26.16,
+ "text": "years."
+ },
+ {
+ "id": 63,
+ "start": 26.16,
+ "end": 26.29,
+ "text": "I"
+ },
+ {
+ "id": 64,
+ "start": 26.29,
+ "end": 26.54,
+ "text": "started"
+ },
+ {
+ "id": 65,
+ "start": 26.54,
+ "end": 26.64,
+ "text": "when"
+ },
+ {
+ "id": 66,
+ "start": 26.64,
+ "end": 26.69,
+ "text": "I"
+ },
+ {
+ "id": 67,
+ "start": 26.69,
+ "end": 26.82,
+ "text": "was"
+ },
+ {
+ "id": 68,
+ "start": 27.095000000000002,
+ "end": 27.2825,
+ "text": "21"
+ },
+ {
+ "id": 69,
+ "start": 27.500000000000004,
+ "end": 27.744999999999997,
+ "text": "in"
+ },
+ {
+ "id": 70,
+ "start": 27.905,
+ "end": 28.207500000000003,
+ "text": "2005,"
+ },
+ {
+ "id": 71,
+ "start": 28.31,
+ "end": 28.67,
+ "text": "and"
+ },
+ {
+ "id": 72,
+ "start": 28.67,
+ "end": 28.85,
+ "text": "there"
+ },
+ {
+ "id": 73,
+ "start": 28.85,
+ "end": 29.06,
+ "text": "have"
+ },
+ {
+ "id": 74,
+ "start": 29.06,
+ "end": 29.39,
+ "text": "been"
+ },
+ {
+ "id": 75,
+ "start": 29.39,
+ "end": 29.51,
+ "text": "a"
+ },
+ {
+ "id": 76,
+ "start": 29.51,
+ "end": 29.92,
+ "text": "lot"
+ },
+ {
+ "id": 77,
+ "start": 29.92,
+ "end": 31.04,
+ "text": "of"
+ },
+ {
+ "id": 78,
+ "start": 31.04,
+ "end": 31.31,
+ "text": "ups"
+ },
+ {
+ "id": 79,
+ "start": 31.31,
+ "end": 31.41,
+ "text": "and"
+ },
+ {
+ "id": 80,
+ "start": 31.41,
+ "end": 31.87,
+ "text": "downs"
+ },
+ {
+ "id": 81,
+ "start": 31.87,
+ "end": 31.96,
+ "text": "and"
+ },
+ {
+ "id": 82,
+ "start": 31.96,
+ "end": 32.46,
+ "text": "intense"
+ },
+ {
+ "id": 83,
+ "start": 32.46,
+ "end": 33.36,
+ "text": "periods"
+ },
+ {
+ "id": 84,
+ "start": 33.36,
+ "end": 33.91,
+ "text": "of"
+ },
+ {
+ "id": 85,
+ "start": 33.91,
+ "end": 34.09,
+ "text": "my"
+ },
+ {
+ "id": 86,
+ "start": 34.09,
+ "end": 34.52,
+ "text": "career"
+ },
+ {
+ "id": 87,
+ "start": 34.52,
+ "end": 35.6,
+ "text": "here,"
+ },
+ {
+ "id": 88,
+ "start": 35.6,
+ "end": 35.87,
+ "text": "but"
+ },
+ {
+ "id": 89,
+ "start": 35.87,
+ "end": 36.21,
+ "text": "definitely"
+ },
+ {
+ "id": 90,
+ "start": 36.21,
+ "end": 36.3,
+ "text": "the"
+ },
+ {
+ "id": 91,
+ "start": 36.3,
+ "end": 36.57,
+ "text": "past"
+ },
+ {
+ "id": 92,
+ "start": 36.57,
+ "end": 36.67,
+ "text": "few"
+ },
+ {
+ "id": 93,
+ "start": 36.67,
+ "end": 36.94,
+ "text": "years"
+ },
+ {
+ "id": 94,
+ "start": 36.94,
+ "end": 37.09,
+ "text": "have"
+ },
+ {
+ "id": 95,
+ "start": 37.09,
+ "end": 37.42,
+ "text": "been"
+ },
+ {
+ "id": 96,
+ "start": 37.42,
+ "end": 37.52,
+ "text": "the"
+ },
+ {
+ "id": 97,
+ "start": 37.52,
+ "end": 38.15,
+ "text": "most"
+ },
+ {
+ "id": 98,
+ "start": 38.15,
+ "end": 39.58,
+ "text": "intense."
+ },
+ {
+ "id": 99,
+ "start": 39.58,
+ "end": 39.73,
+ "text": "And"
+ },
+ {
+ "id": 100,
+ "start": 39.73,
+ "end": 39.92,
+ "text": "what’s"
+ },
+ {
+ "id": 101,
+ "start": 39.92,
+ "end": 40.06,
+ "text": "been"
+ },
+ {
+ "id": 102,
+ "start": 40.48857142857143,
+ "end": 40.62857142857143,
+ "text": "intense"
+ },
+ {
+ "id": 103,
+ "start": 41.057142857142864,
+ "end": 41.197142857142865,
+ "text": "about"
+ },
+ {
+ "id": 104,
+ "start": 41.62571428571429,
+ "end": 41.76571428571429,
+ "text": "it?"
+ },
+ {
+ "id": 105,
+ "start": 42.19428571428572,
+ "end": 42.33428571428572,
+ "text": "Why"
+ },
+ {
+ "id": 106,
+ "start": 42.76285714285714,
+ "end": 42.902857142857144,
+ "text": "is"
+ },
+ {
+ "id": 107,
+ "start": 43.331428571428575,
+ "end": 43.471428571428575,
+ "text": "that?"
+ },
+ {
+ "id": 108,
+ "start": 43.9,
+ "end": 44.04,
+ "text": "I"
+ },
+ {
+ "id": 109,
+ "start": 44.04,
+ "end": 44.32,
+ "text": "joined"
+ },
+ {
+ "id": 110,
+ "start": 44.32,
+ "end": 44.82,
+ "text": "Facebook"
+ },
+ {
+ "id": 111,
+ "start": 44.82,
+ "end": 45.1,
+ "text": "because"
+ },
+ {
+ "id": 112,
+ "start": 45.1,
+ "end": 45.13,
+ "text": "I"
+ },
+ {
+ "id": 113,
+ "start": 45.13,
+ "end": 45.35,
+ "text": "really"
+ },
+ {
+ "id": 114,
+ "start": 45.35,
+ "end": 45.67,
+ "text": "believed"
+ },
+ {
+ "id": 115,
+ "start": 45.67,
+ "end": 45.74,
+ "text": "in"
+ },
+ {
+ "id": 116,
+ "start": 45.74,
+ "end": 45.81,
+ "text": "the"
+ },
+ {
+ "id": 117,
+ "start": 45.81,
+ "end": 46.35,
+ "text": "mission"
+ },
+ {
+ "id": 118,
+ "start": 46.35,
+ "end": 47.22,
+ "text": "to"
+ },
+ {
+ "id": 119,
+ "start": 47.22,
+ "end": 47.58,
+ "text": "make"
+ },
+ {
+ "id": 120,
+ "start": 47.58,
+ "end": 47.65,
+ "text": "the"
+ },
+ {
+ "id": 121,
+ "start": 47.65,
+ "end": 47.85,
+ "text": "world"
+ },
+ {
+ "id": 122,
+ "start": 47.85,
+ "end": 47.99,
+ "text": "more"
+ },
+ {
+ "id": 123,
+ "start": 47.99,
+ "end": 48.22,
+ "text": "open"
+ },
+ {
+ "id": 124,
+ "start": 48.22,
+ "end": 48.34,
+ "text": "and"
+ },
+ {
+ "id": 125,
+ "start": 48.86750000000001,
+ "end": 49.022499999999994,
+ "text": "connected,"
+ },
+ {
+ "id": 126,
+ "start": 49.515,
+ "end": 49.705,
+ "text": "and"
+ },
+ {
+ "id": 127,
+ "start": 50.162499999999994,
+ "end": 50.38749999999999,
+ "text": "I’ve"
+ },
+ {
+ "id": 128,
+ "start": 50.81,
+ "end": 51.07,
+ "text": "worked"
+ },
+ {
+ "id": 129,
+ "start": 51.07,
+ "end": 51.46,
+ "text": "on"
+ },
+ {
+ "id": 130,
+ "start": 51.46,
+ "end": 51.69,
+ "text": "many"
+ },
+ {
+ "id": 131,
+ "start": 51.69,
+ "end": 51.95,
+ "text": "different"
+ },
+ {
+ "id": 132,
+ "start": 51.95,
+ "end": 52.53,
+ "text": "projects,"
+ },
+ {
+ "id": 133,
+ "start": 52.53,
+ "end": 52.84,
+ "text": "whether"
+ },
+ {
+ "id": 134,
+ "start": 52.84,
+ "end": 53.29,
+ "text": "it’s"
+ },
+ {
+ "id": 135,
+ "start": 53.29,
+ "end": 54.74,
+ "text": "growth,"
+ },
+ {
+ "id": 136,
+ "start": 54.74,
+ "end": 55.17,
+ "text": "social"
+ },
+ {
+ "id": 137,
+ "start": 55.17,
+ "end": 55.7,
+ "text": "good,"
+ },
+ {
+ "id": 138,
+ "start": 55.7,
+ "end": 55.9,
+ "text": "more"
+ },
+ {
+ "id": 139,
+ "start": 55.9,
+ "end": 56.33,
+ "text": "recently"
+ },
+ {
+ "id": 140,
+ "start": 56.33,
+ "end": 56.67,
+ "text": "safety"
+ },
+ {
+ "id": 141,
+ "start": 56.67,
+ "end": 56.81,
+ "text": "and"
+ },
+ {
+ "id": 142,
+ "start": 57.44999999999999,
+ "end": 57.80499999999998,
+ "text": "security,"
+ },
+ {
+ "id": 143,
+ "start": 58.23,
+ "end": 58.8,
+ "text": "so"
+ },
+ {
+ "id": 144,
+ "start": 58.8,
+ "end": 58.98,
+ "text": "I’ve"
+ },
+ {
+ "id": 145,
+ "start": 58.98,
+ "end": 59.16,
+ "text": "really"
+ },
+ {
+ "id": 146,
+ "start": 59.16,
+ "end": 59.32,
+ "text": "been"
+ },
+ {
+ "id": 147,
+ "start": 59.32,
+ "end": 59.9,
+ "text": "focused"
+ },
+ {
+ "id": 148,
+ "start": 59.9,
+ "end": 60.33,
+ "text": "on"
+ },
+ {
+ "id": 149,
+ "start": 60.33,
+ "end": 60.98,
+ "text": "amplifying"
+ },
+ {
+ "id": 150,
+ "start": 60.98,
+ "end": 61.24,
+ "text": "all"
+ },
+ {
+ "id": 151,
+ "start": 61.24,
+ "end": 61.32,
+ "text": "of"
+ },
+ {
+ "id": 152,
+ "start": 61.32,
+ "end": 61.43,
+ "text": "the"
+ },
+ {
+ "id": 153,
+ "start": 61.43,
+ "end": 61.64,
+ "text": "good"
+ },
+ {
+ "id": 154,
+ "start": 61.64,
+ "end": 61.93,
+ "text": "things"
+ },
+ {
+ "id": 155,
+ "start": 61.93,
+ "end": 62.09,
+ "text": "that"
+ },
+ {
+ "id": 156,
+ "start": 62.09,
+ "end": 62.64,
+ "text": "happen"
+ },
+ {
+ "id": 157,
+ "start": 62.64,
+ "end": 62.89,
+ "text": "on"
+ },
+ {
+ "id": 158,
+ "start": 62.89,
+ "end": 63.65,
+ "text": "Facebook."
+ },
+ {
+ "id": 159,
+ "start": 63.65,
+ "end": 63.72,
+ "text": "I"
+ },
+ {
+ "id": 160,
+ "start": 63.72,
+ "end": 64.34,
+ "text": "think"
+ },
+ {
+ "id": 161,
+ "start": 64.34,
+ "end": 64.73,
+ "text": "what’s"
+ },
+ {
+ "id": 162,
+ "start": 64.73,
+ "end": 65.32,
+ "text": "changed"
+ },
+ {
+ "id": 163,
+ "start": 65.32,
+ "end": 65.68,
+ "text": "is"
+ },
+ {
+ "id": 164,
+ "start": 65.68,
+ "end": 66.06,
+ "text": "we’ve"
+ },
+ {
+ "id": 165,
+ "start": 66.06,
+ "end": 66.45,
+ "text": "definitely"
+ },
+ {
+ "id": 166,
+ "start": 66.45,
+ "end": 66.75,
+ "text": "become"
+ },
+ {
+ "id": 167,
+ "start": 66.75,
+ "end": 66.95,
+ "text": "more"
+ },
+ {
+ "id": 168,
+ "start": 66.95,
+ "end": 67.51,
+ "text": "aware"
+ },
+ {
+ "id": 169,
+ "start": 67.51,
+ "end": 68.76,
+ "text": "of"
+ },
+ {
+ "id": 170,
+ "start": 68.76,
+ "end": 69.02,
+ "text": "how"
+ },
+ {
+ "id": 171,
+ "start": 69.02,
+ "end": 69.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 172,
+ "start": 69.54,
+ "end": 69.72,
+ "text": "can"
+ },
+ {
+ "id": 173,
+ "start": 69.72,
+ "end": 70.05,
+ "text": "be"
+ },
+ {
+ "id": 174,
+ "start": 70.05,
+ "end": 71.07,
+ "text": "abused"
+ },
+ {
+ "id": 175,
+ "start": 71.07,
+ "end": 71.21,
+ "text": "by"
+ },
+ {
+ "id": 176,
+ "start": 71.21,
+ "end": 71.43,
+ "text": "bad"
+ },
+ {
+ "id": 177,
+ "start": 71.43,
+ "end": 72.57,
+ "text": "actors,"
+ },
+ {
+ "id": 178,
+ "start": 72.57,
+ "end": 72.68,
+ "text": "by"
+ },
+ {
+ "id": 179,
+ "start": 72.68,
+ "end": 72.91,
+ "text": "fake"
+ },
+ {
+ "id": 180,
+ "start": 73.655,
+ "end": 74.1,
+ "text": "accounts,"
+ },
+ {
+ "id": 181,
+ "start": 74.63,
+ "end": 75.29,
+ "text": "and"
+ },
+ {
+ "id": 182,
+ "start": 75.29,
+ "end": 75.5,
+ "text": "what"
+ },
+ {
+ "id": 183,
+ "start": 75.5,
+ "end": 75.57,
+ "text": "our"
+ },
+ {
+ "id": 184,
+ "start": 75.57,
+ "end": 76.43,
+ "text": "responsibility"
+ },
+ {
+ "id": 185,
+ "start": 76.43,
+ "end": 76.82,
+ "text": "is"
+ },
+ {
+ "id": 186,
+ "start": 76.82,
+ "end": 76.92,
+ "text": "and"
+ },
+ {
+ "id": 187,
+ "start": 76.92,
+ "end": 77.17,
+ "text": "making"
+ },
+ {
+ "id": 188,
+ "start": 77.17,
+ "end": 77.37,
+ "text": "sure"
+ },
+ {
+ "id": 189,
+ "start": 77.37,
+ "end": 77.5,
+ "text": "that"
+ },
+ {
+ "id": 190,
+ "start": 77.5,
+ "end": 77.65,
+ "text": "we"
+ },
+ {
+ "id": 191,
+ "start": 77.855,
+ "end": 78.02,
+ "text": "minimize"
+ },
+ {
+ "id": 192,
+ "start": 78.21,
+ "end": 78.39,
+ "text": "those"
+ },
+ {
+ "id": 193,
+ "start": 78.39,
+ "end": 79.3,
+ "text": "experiences"
+ },
+ {
+ "id": 194,
+ "start": 79.3,
+ "end": 79.43,
+ "text": "on"
+ },
+ {
+ "id": 195,
+ "start": 79.43,
+ "end": 79.52,
+ "text": "the"
+ },
+ {
+ "id": 196,
+ "start": 79.52,
+ "end": 82.7,
+ "text": "site."
+ },
+ {
+ "id": 197,
+ "start": 82.7,
+ "end": 82.97,
+ "text": "What"
+ },
+ {
+ "id": 198,
+ "start": 82.97,
+ "end": 83.15,
+ "text": "was"
+ },
+ {
+ "id": 199,
+ "start": 83.15,
+ "end": 83.26,
+ "text": "the"
+ },
+ {
+ "id": 200,
+ "start": 83.26,
+ "end": 83.58,
+ "text": "Growth"
+ },
+ {
+ "id": 201,
+ "start": 83.58,
+ "end": 83.81,
+ "text": "team"
+ },
+ {
+ "id": 202,
+ "start": 83.81,
+ "end": 84.12,
+ "text": "about?"
+ },
+ {
+ "id": 203,
+ "start": 84.12,
+ "end": 84.25,
+ "text": "What"
+ },
+ {
+ "id": 204,
+ "start": 84.25,
+ "end": 84.36,
+ "text": "did"
+ },
+ {
+ "id": 205,
+ "start": 84.36,
+ "end": 84.46,
+ "text": "you"
+ },
+ {
+ "id": 206,
+ "start": 84.46,
+ "end": 84.66,
+ "text": "do"
+ },
+ {
+ "id": 207,
+ "start": 85.17,
+ "end": 85.36666666666665,
+ "text": "at"
+ },
+ {
+ "id": 208,
+ "start": 85.88000000000001,
+ "end": 86.07333333333332,
+ "text": "Growth?"
+ },
+ {
+ "id": 209,
+ "start": 86.59,
+ "end": 86.78,
+ "text": "When"
+ },
+ {
+ "id": 210,
+ "start": 86.78,
+ "end": 86.83,
+ "text": "I"
+ },
+ {
+ "id": 211,
+ "start": 86.83,
+ "end": 87.06,
+ "text": "joined"
+ },
+ {
+ "id": 212,
+ "start": 86.985,
+ "end": 87.42,
+ "text": "at"
+ },
+ {
+ "id": 213,
+ "start": 87.14,
+ "end": 87.78,
+ "text": "Facebook,"
+ },
+ {
+ "id": 214,
+ "start": 87.78,
+ "end": 87.91,
+ "text": "it"
+ },
+ {
+ "id": 215,
+ "start": 87.91,
+ "end": 88.17,
+ "text": "was"
+ },
+ {
+ "id": 216,
+ "start": 88.17,
+ "end": 88.48,
+ "text": "just"
+ },
+ {
+ "id": 217,
+ "start": 88.48,
+ "end": 88.53,
+ "text": "a"
+ },
+ {
+ "id": 218,
+ "start": 88.53,
+ "end": 88.87,
+ "text": "site"
+ },
+ {
+ "id": 219,
+ "start": 88.87,
+ "end": 89.06,
+ "text": "for"
+ },
+ {
+ "id": 220,
+ "start": 89.06,
+ "end": 89.43,
+ "text": "college"
+ },
+ {
+ "id": 221,
+ "start": 89.43,
+ "end": 90.15,
+ "text": "students."
+ },
+ {
+ "id": 222,
+ "start": 90.15,
+ "end": 90.47,
+ "text": "It’s"
+ },
+ {
+ "id": 223,
+ "start": 90.47,
+ "end": 90.7,
+ "text": "even"
+ },
+ {
+ "id": 224,
+ "start": 90.7,
+ "end": 90.93,
+ "text": "hard"
+ },
+ {
+ "id": 225,
+ "start": 90.93,
+ "end": 91.05,
+ "text": "to"
+ },
+ {
+ "id": 226,
+ "start": 91.55000000000001,
+ "end": 91.65999999999998,
+ "text": "remember."
+ },
+ {
+ "id": 227,
+ "start": 92.17,
+ "end": 92.27,
+ "text": "On"
+ },
+ {
+ "id": 228,
+ "start": 92.27,
+ "end": 92.35,
+ "text": "the"
+ },
+ {
+ "id": 229,
+ "start": 92.35,
+ "end": 92.63,
+ "text": "Growth"
+ },
+ {
+ "id": 230,
+ "start": 92.68249999999999,
+ "end": 92.91999999999999,
+ "text": "team,"
+ },
+ {
+ "id": 231,
+ "start": 93.01499999999999,
+ "end": 93.21,
+ "text": "the"
+ },
+ {
+ "id": 232,
+ "start": 93.3475,
+ "end": 93.5,
+ "text": "story"
+ },
+ {
+ "id": 233,
+ "start": 93.68,
+ "end": 93.79,
+ "text": "of"
+ },
+ {
+ "id": 234,
+ "start": 93.79,
+ "end": 94.15,
+ "text": "Growth"
+ },
+ {
+ "id": 235,
+ "start": 94.15,
+ "end": 94.38,
+ "text": "has"
+ },
+ {
+ "id": 236,
+ "start": 94.38,
+ "end": 94.63,
+ "text": "really"
+ },
+ {
+ "id": 237,
+ "start": 94.63,
+ "end": 94.84,
+ "text": "been"
+ },
+ {
+ "id": 238,
+ "start": 94.84,
+ "end": 95.16,
+ "text": "about"
+ },
+ {
+ "id": 239,
+ "start": 95.16,
+ "end": 95.47,
+ "text": "making"
+ },
+ {
+ "id": 240,
+ "start": 95.47,
+ "end": 95.97,
+ "text": "Facebook"
+ },
+ {
+ "id": 241,
+ "start": 95.97,
+ "end": 96.73,
+ "text": "available"
+ },
+ {
+ "id": 242,
+ "start": 96.73,
+ "end": 96.87,
+ "text": "to"
+ },
+ {
+ "id": 243,
+ "start": 96.87,
+ "end": 97.17,
+ "text": "people"
+ },
+ {
+ "id": 244,
+ "start": 97.17,
+ "end": 97.36,
+ "text": "that"
+ },
+ {
+ "id": 245,
+ "start": 97.36,
+ "end": 97.76,
+ "text": "wanted"
+ },
+ {
+ "id": 246,
+ "start": 97.76,
+ "end": 98,
+ "text": "it"
+ },
+ {
+ "id": 247,
+ "start": 98,
+ "end": 98.74,
+ "text": "but"
+ },
+ {
+ "id": 248,
+ "start": 98.74,
+ "end": 99.21,
+ "text": "couldn’t"
+ },
+ {
+ "id": 249,
+ "start": 99.21,
+ "end": 99.52,
+ "text": "have"
+ },
+ {
+ "id": 250,
+ "start": 99.52,
+ "end": 99.9,
+ "text": "access"
+ },
+ {
+ "id": 251,
+ "start": 99.9,
+ "end": 100.03,
+ "text": "to"
+ },
+ {
+ "id": 252,
+ "start": 100.03,
+ "end": 100.29,
+ "text": "it,"
+ },
+ {
+ "id": 253,
+ "start": 100.29,
+ "end": 100.49,
+ "text": "whether"
+ },
+ {
+ "id": 254,
+ "start": 100.49,
+ "end": 100.55,
+ "text": "it"
+ },
+ {
+ "id": 255,
+ "start": 100.55,
+ "end": 100.66,
+ "text": "was"
+ },
+ {
+ "id": 256,
+ "start": 100.66,
+ "end": 100.9,
+ "text": "because"
+ },
+ {
+ "id": 257,
+ "start": 100.9,
+ "end": 100.98,
+ "text": "they"
+ },
+ {
+ "id": 258,
+ "start": 100.98,
+ "end": 101.06,
+ "text": "were"
+ },
+ {
+ "id": 259,
+ "start": 101.06,
+ "end": 101.14,
+ "text": "in"
+ },
+ {
+ "id": 260,
+ "start": 101.14,
+ "end": 101.34,
+ "text": "high"
+ },
+ {
+ "id": 261,
+ "start": 101.53,
+ "end": 101.685,
+ "text": "school—so"
+ },
+ {
+ "id": 262,
+ "start": 101.92,
+ "end": 102.03,
+ "text": "one"
+ },
+ {
+ "id": 263,
+ "start": 102.03,
+ "end": 102.09,
+ "text": "of"
+ },
+ {
+ "id": 264,
+ "start": 102.09,
+ "end": 102.2,
+ "text": "my"
+ },
+ {
+ "id": 265,
+ "start": 102.2,
+ "end": 102.47,
+ "text": "first"
+ },
+ {
+ "id": 266,
+ "start": 102.47,
+ "end": 102.93,
+ "text": "projects"
+ },
+ {
+ "id": 267,
+ "start": 102.93,
+ "end": 103.54,
+ "text": "was"
+ },
+ {
+ "id": 268,
+ "start": 103.54,
+ "end": 104.04,
+ "text": "expanding"
+ },
+ {
+ "id": 269,
+ "start": 104.04,
+ "end": 104.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 270,
+ "start": 104.44,
+ "end": 104.51,
+ "text": "to"
+ },
+ {
+ "id": 271,
+ "start": 104.51,
+ "end": 104.69,
+ "text": "high"
+ },
+ {
+ "id": 272,
+ "start": 104.69,
+ "end": 104.94,
+ "text": "school"
+ },
+ {
+ "id": 273,
+ "start": 105.465,
+ "end": 105.815,
+ "text": "students—or"
+ },
+ {
+ "id": 274,
+ "start": 106.24,
+ "end": 106.69,
+ "text": "whether"
+ },
+ {
+ "id": 275,
+ "start": 106.69,
+ "end": 106.82,
+ "text": "it"
+ },
+ {
+ "id": 276,
+ "start": 106.82,
+ "end": 107.45,
+ "text": "was"
+ },
+ {
+ "id": 277,
+ "start": 107.45,
+ "end": 107.69,
+ "text": "because"
+ },
+ {
+ "id": 278,
+ "start": 107.69,
+ "end": 107.79,
+ "text": "they"
+ },
+ {
+ "id": 279,
+ "start": 107.79,
+ "end": 109.08,
+ "text": "weren’t"
+ },
+ {
+ "id": 280,
+ "start": 109.08,
+ "end": 109.45,
+ "text": "English"
+ },
+ {
+ "id": 281,
+ "start": 109.45,
+ "end": 110.35,
+ "text": "speakers."
+ },
+ {
+ "id": 282,
+ "start": 110.35,
+ "end": 110.63,
+ "text": "People"
+ },
+ {
+ "id": 283,
+ "start": 110.63,
+ "end": 110.91,
+ "text": "had"
+ },
+ {
+ "id": 284,
+ "start": 110.91,
+ "end": 111.2,
+ "text": "friends"
+ },
+ {
+ "id": 285,
+ "start": 111.2,
+ "end": 111.34,
+ "text": "and"
+ },
+ {
+ "id": 286,
+ "start": 111.34,
+ "end": 111.88,
+ "text": "family"
+ },
+ {
+ "id": 287,
+ "start": 111.88,
+ "end": 112.05,
+ "text": "that"
+ },
+ {
+ "id": 288,
+ "start": 112.05,
+ "end": 112.3,
+ "text": "spoke"
+ },
+ {
+ "id": 289,
+ "start": 112.3,
+ "end": 112.55,
+ "text": "other"
+ },
+ {
+ "id": 290,
+ "start": 112.55,
+ "end": 113.15,
+ "text": "languages"
+ },
+ {
+ "id": 291,
+ "start": 113.15,
+ "end": 113.27,
+ "text": "that"
+ },
+ {
+ "id": 292,
+ "start": 113.27,
+ "end": 113.38,
+ "text": "they"
+ },
+ {
+ "id": 293,
+ "start": 113.38,
+ "end": 113.64,
+ "text": "wanted"
+ },
+ {
+ "id": 294,
+ "start": 113.64,
+ "end": 113.72,
+ "text": "to"
+ },
+ {
+ "id": 295,
+ "start": 113.72,
+ "end": 113.98,
+ "text": "use"
+ },
+ {
+ "id": 296,
+ "start": 113.98,
+ "end": 114.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 297,
+ "start": 114.57000000000001,
+ "end": 114.92,
+ "text": "with,"
+ },
+ {
+ "id": 298,
+ "start": 115.16,
+ "end": 115.38,
+ "text": "so"
+ },
+ {
+ "id": 299,
+ "start": 115.38,
+ "end": 115.46,
+ "text": "I"
+ },
+ {
+ "id": 300,
+ "start": 115.46,
+ "end": 115.85,
+ "text": "worked"
+ },
+ {
+ "id": 301,
+ "start": 115.85,
+ "end": 116.29,
+ "text": "on"
+ },
+ {
+ "id": 302,
+ "start": 116.29,
+ "end": 116.85,
+ "text": "translating"
+ },
+ {
+ "id": 303,
+ "start": 116.85,
+ "end": 117.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 304,
+ "start": 117.3,
+ "end": 117.56,
+ "text": "into"
+ },
+ {
+ "id": 305,
+ "start": 117.56,
+ "end": 117.85,
+ "text": "over"
+ },
+ {
+ "id": 306,
+ "start": 117.905,
+ "end": 118.69499999999996,
+ "text": "100"
+ },
+ {
+ "id": 307,
+ "start": 118.25,
+ "end": 119.54,
+ "text": "languages."
+ },
+ {
+ "id": 308,
+ "start": 119.54,
+ "end": 120.18,
+ "text": "Sometimes"
+ },
+ {
+ "id": 309,
+ "start": 120.18,
+ "end": 120.74,
+ "text": "people"
+ },
+ {
+ "id": 310,
+ "start": 120.74,
+ "end": 120.93,
+ "text": "had"
+ },
+ {
+ "id": 311,
+ "start": 120.93,
+ "end": 121.43,
+ "text": "access"
+ },
+ {
+ "id": 312,
+ "start": 121.43,
+ "end": 121.56,
+ "text": "to"
+ },
+ {
+ "id": 313,
+ "start": 121.56,
+ "end": 121.62,
+ "text": "a"
+ },
+ {
+ "id": 314,
+ "start": 121.62,
+ "end": 122.09,
+ "text": "phone"
+ },
+ {
+ "id": 315,
+ "start": 122.09,
+ "end": 122.28,
+ "text": "but"
+ },
+ {
+ "id": 316,
+ "start": 122.28,
+ "end": 122.44,
+ "text": "not"
+ },
+ {
+ "id": 317,
+ "start": 122.44,
+ "end": 122.49,
+ "text": "a"
+ },
+ {
+ "id": 318,
+ "start": 123.14000000000001,
+ "end": 123.34000000000003,
+ "text": "computer,"
+ },
+ {
+ "id": 319,
+ "start": 123.84,
+ "end": 124.19,
+ "text": "so"
+ },
+ {
+ "id": 320,
+ "start": 124.19,
+ "end": 124.32,
+ "text": "one"
+ },
+ {
+ "id": 321,
+ "start": 124.32,
+ "end": 124.41,
+ "text": "of"
+ },
+ {
+ "id": 322,
+ "start": 124.41,
+ "end": 124.51,
+ "text": "the"
+ },
+ {
+ "id": 323,
+ "start": 124.51,
+ "end": 124.76,
+ "text": "Growth"
+ },
+ {
+ "id": 324,
+ "start": 124.76,
+ "end": 124.97,
+ "text": "team"
+ },
+ {
+ "id": 325,
+ "start": 124.97,
+ "end": 125.55,
+ "text": "projects"
+ },
+ {
+ "id": 326,
+ "start": 125.55,
+ "end": 126.34,
+ "text": "was"
+ },
+ {
+ "id": 327,
+ "start": 126.34,
+ "end": 126.66,
+ "text": "building"
+ },
+ {
+ "id": 328,
+ "start": 126.66,
+ "end": 126.77,
+ "text": "a"
+ },
+ {
+ "id": 329,
+ "start": 126.77,
+ "end": 127.08,
+ "text": "really"
+ },
+ {
+ "id": 330,
+ "start": 127.08,
+ "end": 127.33,
+ "text": "rich"
+ },
+ {
+ "id": 331,
+ "start": 127.33,
+ "end": 127.75,
+ "text": "Facebook"
+ },
+ {
+ "id": 332,
+ "start": 127.75,
+ "end": 128.65,
+ "text": "experience"
+ },
+ {
+ "id": 333,
+ "start": 128.65,
+ "end": 129.14,
+ "text": "for"
+ },
+ {
+ "id": 334,
+ "start": 129.14,
+ "end": 129.46,
+ "text": "mobile"
+ },
+ {
+ "id": 335,
+ "start": 129.46,
+ "end": 130.12,
+ "text": "phones,"
+ },
+ {
+ "id": 336,
+ "start": 130.12,
+ "end": 130.6,
+ "text": "say,"
+ },
+ {
+ "id": 337,
+ "start": 130.6,
+ "end": 131.13,
+ "text": "on"
+ },
+ {
+ "id": 338,
+ "start": 131.13,
+ "end": 131.36,
+ "text": "low"
+ },
+ {
+ "id": 339,
+ "start": 131.36,
+ "end": 132.33,
+ "text": "networks"
+ },
+ {
+ "id": 340,
+ "start": 132.10000000000002,
+ "end": 132.91750000000002,
+ "text": "or"
+ },
+ {
+ "id": 341,
+ "start": 132.84000000000003,
+ "end": 133.50500000000002,
+ "text": "low"
+ },
+ {
+ "id": 342,
+ "start": 133.58,
+ "end": 134.0925,
+ "text": "connectivity."
+ },
+ {
+ "id": 343,
+ "start": 134.32,
+ "end": 134.68,
+ "text": "More"
+ },
+ {
+ "id": 344,
+ "start": 134.68,
+ "end": 135.2,
+ "text": "recently,"
+ },
+ {
+ "id": 345,
+ "start": 135.2,
+ "end": 135.45,
+ "text": "people"
+ },
+ {
+ "id": 346,
+ "start": 135.45,
+ "end": 135.62,
+ "text": "might"
+ },
+ {
+ "id": 347,
+ "start": 135.62,
+ "end": 135.77,
+ "text": "have"
+ },
+ {
+ "id": 348,
+ "start": 135.77,
+ "end": 136.36,
+ "text": "access"
+ },
+ {
+ "id": 349,
+ "start": 136.36,
+ "end": 136.73,
+ "text": "to"
+ },
+ {
+ "id": 350,
+ "start": 136.73,
+ "end": 136.81,
+ "text": "a"
+ },
+ {
+ "id": 351,
+ "start": 136.81,
+ "end": 137.25,
+ "text": "phone"
+ },
+ {
+ "id": 352,
+ "start": 137.25,
+ "end": 137.43,
+ "text": "but"
+ },
+ {
+ "id": 353,
+ "start": 137.43,
+ "end": 137.65,
+ "text": "can’t"
+ },
+ {
+ "id": 354,
+ "start": 137.65,
+ "end": 137.91,
+ "text": "afford"
+ },
+ {
+ "id": 355,
+ "start": 137.91,
+ "end": 137.96,
+ "text": "a"
+ },
+ {
+ "id": 356,
+ "start": 137.96,
+ "end": 138.2,
+ "text": "data"
+ },
+ {
+ "id": 357,
+ "start": 138.35,
+ "end": 138.70499999999998,
+ "text": "plan,"
+ },
+ {
+ "id": 358,
+ "start": 138.74,
+ "end": 139.21,
+ "text": "and"
+ },
+ {
+ "id": 359,
+ "start": 139.21,
+ "end": 139.4,
+ "text": "that’s"
+ },
+ {
+ "id": 360,
+ "start": 139.4,
+ "end": 139.5,
+ "text": "the"
+ },
+ {
+ "id": 361,
+ "start": 139.5,
+ "end": 139.7,
+ "text": "goal"
+ },
+ {
+ "id": 362,
+ "start": 139.7,
+ "end": 139.79,
+ "text": "of"
+ },
+ {
+ "id": 363,
+ "start": 140.23999999999998,
+ "end": 140.33499999999998,
+ "text": "Internet.org."
+ },
+ {
+ "id": 364,
+ "start": 140.78,
+ "end": 140.88,
+ "text": "It"
+ },
+ {
+ "id": 365,
+ "start": 140.88,
+ "end": 141.1,
+ "text": "really"
+ },
+ {
+ "id": 366,
+ "start": 141.1,
+ "end": 141.35,
+ "text": "has"
+ },
+ {
+ "id": 367,
+ "start": 141.35,
+ "end": 141.77,
+ "text": "been"
+ },
+ {
+ "id": 368,
+ "start": 141.77,
+ "end": 142.37,
+ "text": "about"
+ },
+ {
+ "id": 369,
+ "start": 142.37,
+ "end": 142.86,
+ "text": "removing"
+ },
+ {
+ "id": 370,
+ "start": 142.86,
+ "end": 143.5,
+ "text": "barriers"
+ },
+ {
+ "id": 371,
+ "start": 143.5,
+ "end": 143.62,
+ "text": "that"
+ },
+ {
+ "id": 372,
+ "start": 143.62,
+ "end": 143.68,
+ "text": "are"
+ },
+ {
+ "id": 373,
+ "start": 143.68,
+ "end": 144.1,
+ "text": "preventing"
+ },
+ {
+ "id": 374,
+ "start": 144.1,
+ "end": 144.51,
+ "text": "people"
+ },
+ {
+ "id": 375,
+ "start": 144.51,
+ "end": 144.69,
+ "text": "from"
+ },
+ {
+ "id": 376,
+ "start": 144.69,
+ "end": 145.18,
+ "text": "accessing"
+ },
+ {
+ "id": 377,
+ "start": 145.18,
+ "end": 146.95,
+ "text": "Facebook"
+ },
+ {
+ "id": 378,
+ "start": 146.95,
+ "end": 147.42,
+ "text": "and"
+ },
+ {
+ "id": 379,
+ "start": 147.42,
+ "end": 147.72,
+ "text": "allowing"
+ },
+ {
+ "id": 380,
+ "start": 147.72,
+ "end": 147.84,
+ "text": "them"
+ },
+ {
+ "id": 381,
+ "start": 147.84,
+ "end": 147.95,
+ "text": "to"
+ },
+ {
+ "id": 382,
+ "start": 147.95,
+ "end": 148.12,
+ "text": "use"
+ },
+ {
+ "id": 383,
+ "start": 148.12,
+ "end": 148.95,
+ "text": "it."
+ },
+ {
+ "id": 384,
+ "start": 148.25,
+ "end": 149.28,
+ "text": "What"
+ },
+ {
+ "id": 385,
+ "start": 149.37,
+ "end": 149.92,
+ "text": "were"
+ },
+ {
+ "id": 386,
+ "start": 150.49,
+ "end": 150.56,
+ "text": "the"
+ },
+ {
+ "id": 387,
+ "start": 150.56,
+ "end": 151.19,
+ "text": "metrics"
+ },
+ {
+ "id": 388,
+ "start": 151.19,
+ "end": 151.38,
+ "text": "that"
+ },
+ {
+ "id": 389,
+ "start": 151.38,
+ "end": 151.54,
+ "text": "you"
+ },
+ {
+ "id": 390,
+ "start": 151.54,
+ "end": 152.18,
+ "text": "used"
+ },
+ {
+ "id": 391,
+ "start": 152.18,
+ "end": 152.39,
+ "text": "in"
+ },
+ {
+ "id": 392,
+ "start": 152.39,
+ "end": 152.47,
+ "text": "the"
+ },
+ {
+ "id": 393,
+ "start": 152.47,
+ "end": 152.8,
+ "text": "Growth"
+ },
+ {
+ "id": 394,
+ "start": 152.8,
+ "end": 153.08,
+ "text": "team"
+ },
+ {
+ "id": 395,
+ "start": 153.08,
+ "end": 153.64,
+ "text": "about"
+ },
+ {
+ "id": 396,
+ "start": 153.64,
+ "end": 153.91,
+ "text": "how"
+ },
+ {
+ "id": 397,
+ "start": 153.91,
+ "end": 154.05,
+ "text": "you"
+ },
+ {
+ "id": 398,
+ "start": 154.155,
+ "end": 154.29500000000002,
+ "text": "measured"
+ },
+ {
+ "id": 399,
+ "start": 154.4,
+ "end": 154.54,
+ "text": "your"
+ },
+ {
+ "id": 400,
+ "start": 154.54,
+ "end": 155.56,
+ "text": "success"
+ },
+ {
+ "id": 401,
+ "start": 155.56,
+ "end": 155.91,
+ "text": "and"
+ },
+ {
+ "id": 402,
+ "start": 155.91,
+ "end": 156.42,
+ "text": "how"
+ },
+ {
+ "id": 403,
+ "start": 156.42,
+ "end": 156.7,
+ "text": "your"
+ },
+ {
+ "id": 404,
+ "start": 156.7,
+ "end": 157,
+ "text": "team"
+ },
+ {
+ "id": 405,
+ "start": 157,
+ "end": 157.14,
+ "text": "was"
+ },
+ {
+ "id": 406,
+ "start": 158.18,
+ "end": 158.39,
+ "text": "incentivized?"
+ },
+ {
+ "id": 407,
+ "start": 159.36,
+ "end": 159.64,
+ "text": "One"
+ },
+ {
+ "id": 408,
+ "start": 159.64,
+ "end": 159.79,
+ "text": "of"
+ },
+ {
+ "id": 409,
+ "start": 159.79,
+ "end": 160.02,
+ "text": "the"
+ },
+ {
+ "id": 410,
+ "start": 160.02,
+ "end": 160.55,
+ "text": "biggest"
+ },
+ {
+ "id": 411,
+ "start": 160.55,
+ "end": 160.93,
+ "text": "things"
+ },
+ {
+ "id": 412,
+ "start": 160.93,
+ "end": 161.05,
+ "text": "that"
+ },
+ {
+ "id": 413,
+ "start": 161.06,
+ "end": 161.27,
+ "text": "I"
+ },
+ {
+ "id": 414,
+ "start": 161.19,
+ "end": 161.49,
+ "text": "worked"
+ },
+ {
+ "id": 415,
+ "start": 161.49,
+ "end": 162,
+ "text": "on"
+ },
+ {
+ "id": 416,
+ "start": 161.89666666666668,
+ "end": 162.30333333333334,
+ "text": "as"
+ },
+ {
+ "id": 417,
+ "start": 162.30333333333334,
+ "end": 162.60666666666665,
+ "text": "a"
+ },
+ {
+ "id": 418,
+ "start": 162.71,
+ "end": 162.91,
+ "text": "leader"
+ },
+ {
+ "id": 419,
+ "start": 162.91,
+ "end": 163.01,
+ "text": "on"
+ },
+ {
+ "id": 420,
+ "start": 163.01,
+ "end": 163.09,
+ "text": "the"
+ },
+ {
+ "id": 421,
+ "start": 163.09,
+ "end": 163.34,
+ "text": "Growth"
+ },
+ {
+ "id": 422,
+ "start": 163.34,
+ "end": 163.67,
+ "text": "team"
+ },
+ {
+ "id": 423,
+ "start": 163.67,
+ "end": 163.96,
+ "text": "has"
+ },
+ {
+ "id": 424,
+ "start": 163.96,
+ "end": 164.22,
+ "text": "really"
+ },
+ {
+ "id": 425,
+ "start": 164.22,
+ "end": 164.46,
+ "text": "been"
+ },
+ {
+ "id": 426,
+ "start": 164.46,
+ "end": 164.76,
+ "text": "helping"
+ },
+ {
+ "id": 427,
+ "start": 164.76,
+ "end": 165,
+ "text": "people"
+ },
+ {
+ "id": 428,
+ "start": 165,
+ "end": 165.25,
+ "text": "find"
+ },
+ {
+ "id": 429,
+ "start": 165.25,
+ "end": 165.38,
+ "text": "their"
+ },
+ {
+ "id": 430,
+ "start": 165.38,
+ "end": 165.69,
+ "text": "friends"
+ },
+ {
+ "id": 431,
+ "start": 165.69,
+ "end": 165.86,
+ "text": "on"
+ },
+ {
+ "id": 432,
+ "start": 165.86,
+ "end": 166.87,
+ "text": "Facebook."
+ },
+ {
+ "id": 433,
+ "start": 166.87,
+ "end": 167.15,
+ "text": "When"
+ },
+ {
+ "id": 434,
+ "start": 167.15,
+ "end": 167.28,
+ "text": "we"
+ },
+ {
+ "id": 435,
+ "start": 167.28,
+ "end": 167.4,
+ "text": "were"
+ },
+ {
+ "id": 436,
+ "start": 167.4,
+ "end": 167.83,
+ "text": "college"
+ },
+ {
+ "id": 437,
+ "start": 167.83,
+ "end": 168.17,
+ "text": "students,"
+ },
+ {
+ "id": 438,
+ "start": 168.17,
+ "end": 168.23,
+ "text": "it"
+ },
+ {
+ "id": 439,
+ "start": 168.23,
+ "end": 168.39,
+ "text": "was"
+ },
+ {
+ "id": 440,
+ "start": 168.39,
+ "end": 168.65,
+ "text": "really"
+ },
+ {
+ "id": 441,
+ "start": 168.65,
+ "end": 168.9,
+ "text": "easy"
+ },
+ {
+ "id": 442,
+ "start": 168.9,
+ "end": 169,
+ "text": "to"
+ },
+ {
+ "id": 443,
+ "start": 169.26,
+ "end": 169.37,
+ "text": "connect"
+ },
+ {
+ "id": 444,
+ "start": 169.61999999999998,
+ "end": 169.74,
+ "text": "to—I"
+ },
+ {
+ "id": 445,
+ "start": 169.98,
+ "end": 170.11,
+ "text": "went"
+ },
+ {
+ "id": 446,
+ "start": 170.11,
+ "end": 170.18,
+ "text": "to"
+ },
+ {
+ "id": 447,
+ "start": 170.18,
+ "end": 170.58,
+ "text": "Stanford;"
+ },
+ {
+ "id": 448,
+ "start": 170.58,
+ "end": 170.84,
+ "text": "all"
+ },
+ {
+ "id": 449,
+ "start": 170.84,
+ "end": 170.95,
+ "text": "of"
+ },
+ {
+ "id": 450,
+ "start": 170.95,
+ "end": 171.07,
+ "text": "my"
+ },
+ {
+ "id": 451,
+ "start": 171.07,
+ "end": 171.39,
+ "text": "friends"
+ },
+ {
+ "id": 452,
+ "start": 171.23,
+ "end": 171.45499999999998,
+ "text": "[were]"
+ },
+ {
+ "id": 453,
+ "start": 171.39,
+ "end": 171.52,
+ "text": "at"
+ },
+ {
+ "id": 454,
+ "start": 171.52,
+ "end": 171.91,
+ "text": "Stanford"
+ },
+ {
+ "id": 455,
+ "start": 171.91,
+ "end": 172.54,
+ "text": "campus."
+ },
+ {
+ "id": 456,
+ "start": 172.54,
+ "end": 173.72,
+ "text": "But"
+ },
+ {
+ "id": 457,
+ "start": 173.72,
+ "end": 173.86,
+ "text": "when"
+ },
+ {
+ "id": 458,
+ "start": 173.86,
+ "end": 173.92,
+ "text": "I"
+ },
+ {
+ "id": 459,
+ "start": 173.92,
+ "end": 174.16,
+ "text": "joined,"
+ },
+ {
+ "id": 460,
+ "start": 174.16,
+ "end": 174.25,
+ "text": "there"
+ },
+ {
+ "id": 461,
+ "start": 174.25,
+ "end": 174.37,
+ "text": "were"
+ },
+ {
+ "id": 462,
+ "start": 174.37,
+ "end": 174.6,
+ "text": "1"
+ },
+ {
+ "id": 463,
+ "start": 174.6,
+ "end": 174.94,
+ "text": "million"
+ },
+ {
+ "id": 464,
+ "start": 175.025,
+ "end": 175.24,
+ "text": "users,"
+ },
+ {
+ "id": 465,
+ "start": 175.45,
+ "end": 175.54,
+ "text": "and"
+ },
+ {
+ "id": 466,
+ "start": 175.54,
+ "end": 175.66,
+ "text": "now"
+ },
+ {
+ "id": 467,
+ "start": 175.66,
+ "end": 175.87,
+ "text": "there’s"
+ },
+ {
+ "id": 468,
+ "start": 175.87,
+ "end": 176.13,
+ "text": "over"
+ },
+ {
+ "id": 469,
+ "start": 176.13,
+ "end": 176.48,
+ "text": "2"
+ },
+ {
+ "id": 470,
+ "start": 176.48,
+ "end": 177.04,
+ "text": "billion"
+ },
+ {
+ "id": 471,
+ "start": 177.04,
+ "end": 177.45,
+ "text": "people"
+ },
+ {
+ "id": 472,
+ "start": 177.45,
+ "end": 177.78,
+ "text": "using"
+ },
+ {
+ "id": 473,
+ "start": 177.78,
+ "end": 178.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 474,
+ "start": 178.46,
+ "end": 178.71,
+ "text": "every"
+ },
+ {
+ "id": 475,
+ "start": 178.71,
+ "end": 179.67,
+ "text": "month."
+ },
+ {
+ "id": 476,
+ "start": 179.67,
+ "end": 180.02,
+ "text": "We’ve"
+ },
+ {
+ "id": 477,
+ "start": 180.02,
+ "end": 180.28,
+ "text": "had"
+ },
+ {
+ "id": 478,
+ "start": 180.28,
+ "end": 180.39,
+ "text": "to"
+ },
+ {
+ "id": 479,
+ "start": 180.39,
+ "end": 180.72,
+ "text": "build"
+ },
+ {
+ "id": 480,
+ "start": 180.72,
+ "end": 180.77,
+ "text": "a"
+ },
+ {
+ "id": 481,
+ "start": 180.77,
+ "end": 180.9,
+ "text": "new"
+ },
+ {
+ "id": 482,
+ "start": 180.9,
+ "end": 181.21,
+ "text": "user"
+ },
+ {
+ "id": 483,
+ "start": 181.21,
+ "end": 182.27,
+ "text": "experience,"
+ },
+ {
+ "id": 484,
+ "start": 182.54666666666662,
+ "end": 183.38333333333333,
+ "text": "friend-finding"
+ },
+ {
+ "id": 485,
+ "start": 183.88333333333333,
+ "end": 184.49666666666667,
+ "text": "tools."
+ },
+ {
+ "id": 486,
+ "start": 185.22,
+ "end": 185.61,
+ "text": "Upload"
+ },
+ {
+ "id": 487,
+ "start": 185.61,
+ "end": 185.73,
+ "text": "your"
+ },
+ {
+ "id": 488,
+ "start": 185.73,
+ "end": 186.27,
+ "text": "profile"
+ },
+ {
+ "id": 489,
+ "start": 186.27,
+ "end": 187,
+ "text": "picture,"
+ },
+ {
+ "id": 490,
+ "start": 187,
+ "end": 187.44,
+ "text": "find"
+ },
+ {
+ "id": 491,
+ "start": 187.44,
+ "end": 187.78,
+ "text": "people"
+ },
+ {
+ "id": 492,
+ "start": 187.78,
+ "end": 187.95,
+ "text": "with"
+ },
+ {
+ "id": 493,
+ "start": 187.95,
+ "end": 188.27,
+ "text": "shared"
+ },
+ {
+ "id": 494,
+ "start": 188.27,
+ "end": 189,
+ "text": "interests"
+ },
+ {
+ "id": 495,
+ "start": 189,
+ "end": 189.11,
+ "text": "or"
+ },
+ {
+ "id": 496,
+ "start": 189.11,
+ "end": 189.39,
+ "text": "find"
+ },
+ {
+ "id": 497,
+ "start": 189.39,
+ "end": 189.63,
+ "text": "people"
+ },
+ {
+ "id": 498,
+ "start": 189.63,
+ "end": 189.77,
+ "text": "that"
+ },
+ {
+ "id": 499,
+ "start": 189.77,
+ "end": 189.95,
+ "text": "went"
+ },
+ {
+ "id": 500,
+ "start": 189.95,
+ "end": 190.06,
+ "text": "to"
+ },
+ {
+ "id": 501,
+ "start": 190.06,
+ "end": 190.19,
+ "text": "your"
+ },
+ {
+ "id": 502,
+ "start": 190.19,
+ "end": 191.26,
+ "text": "school."
+ },
+ {
+ "id": 503,
+ "start": 191.26,
+ "end": 191.3,
+ "text": "A"
+ },
+ {
+ "id": 504,
+ "start": 191.3,
+ "end": 191.61,
+ "text": "lot"
+ },
+ {
+ "id": 505,
+ "start": 191.61,
+ "end": 191.71,
+ "text": "of"
+ },
+ {
+ "id": 506,
+ "start": 191.71,
+ "end": 191.81,
+ "text": "the"
+ },
+ {
+ "id": 507,
+ "start": 191.81,
+ "end": 192.06,
+ "text": "work"
+ },
+ {
+ "id": 508,
+ "start": 192.06,
+ "end": 192.17,
+ "text": "that"
+ },
+ {
+ "id": 509,
+ "start": 192.17,
+ "end": 192.32,
+ "text": "we’ve"
+ },
+ {
+ "id": 510,
+ "start": 192.32,
+ "end": 192.47,
+ "text": "been"
+ },
+ {
+ "id": 511,
+ "start": 192.47,
+ "end": 192.84,
+ "text": "doing"
+ },
+ {
+ "id": 512,
+ "start": 192.84,
+ "end": 193.02,
+ "text": "is"
+ },
+ {
+ "id": 513,
+ "start": 193.02,
+ "end": 193.25,
+ "text": "really"
+ },
+ {
+ "id": 514,
+ "start": 193.25,
+ "end": 193.58,
+ "text": "helping"
+ },
+ {
+ "id": 515,
+ "start": 193.58,
+ "end": 193.84,
+ "text": "people"
+ },
+ {
+ "id": 516,
+ "start": 193.84,
+ "end": 194.08,
+ "text": "find"
+ },
+ {
+ "id": 517,
+ "start": 194.08,
+ "end": 194.21,
+ "text": "their"
+ },
+ {
+ "id": 518,
+ "start": 194.21,
+ "end": 194.47,
+ "text": "friends"
+ },
+ {
+ "id": 519,
+ "start": 194.47,
+ "end": 194.61,
+ "text": "on"
+ },
+ {
+ "id": 520,
+ "start": 194.61,
+ "end": 195.15,
+ "text": "Facebook,"
+ },
+ {
+ "id": 521,
+ "start": 195.15,
+ "end": 195.9,
+ "text": "because"
+ },
+ {
+ "id": 522,
+ "start": 195.69,
+ "end": 196.34,
+ "text": "without"
+ },
+ {
+ "id": 523,
+ "start": 196.40999999999997,
+ "end": 197.22500000000008,
+ "text": "friends—you"
+ },
+ {
+ "id": 524,
+ "start": 197.13,
+ "end": 198.11,
+ "text": "know,"
+ },
+ {
+ "id": 525,
+ "start": 198.11,
+ "end": 198.26,
+ "text": "the"
+ },
+ {
+ "id": 526,
+ "start": 198.26,
+ "end": 198.51,
+ "text": "site’s"
+ },
+ {
+ "id": 527,
+ "start": 198.51,
+ "end": 198.62,
+ "text": "all"
+ },
+ {
+ "id": 528,
+ "start": 198.62,
+ "end": 199.11,
+ "text": "about"
+ },
+ {
+ "id": 529,
+ "start": 199.11,
+ "end": 199.27,
+ "text": "your"
+ },
+ {
+ "id": 530,
+ "start": 199.27,
+ "end": 199.53,
+ "text": "friends"
+ },
+ {
+ "id": 531,
+ "start": 199.53,
+ "end": 199.65,
+ "text": "and"
+ },
+ {
+ "id": 532,
+ "start": 199.65,
+ "end": 200.64,
+ "text": "family."
+ },
+ {
+ "id": 533,
+ "start": 200.64,
+ "end": 200.96,
+ "text": "If"
+ },
+ {
+ "id": 534,
+ "start": 200.96,
+ "end": 201.03,
+ "text": "you"
+ },
+ {
+ "id": 535,
+ "start": 201.03,
+ "end": 201.16,
+ "text": "don’t"
+ },
+ {
+ "id": 536,
+ "start": 201.16,
+ "end": 201.25,
+ "text": "have"
+ },
+ {
+ "id": 537,
+ "start": 201.25,
+ "end": 201.38,
+ "text": "any"
+ },
+ {
+ "id": 538,
+ "start": 201.38,
+ "end": 201.86,
+ "text": "friends,"
+ },
+ {
+ "id": 539,
+ "start": 201.86,
+ "end": 201.9,
+ "text": "I"
+ },
+ {
+ "id": 540,
+ "start": 201.9,
+ "end": 202.07,
+ "text": "don’t"
+ },
+ {
+ "id": 541,
+ "start": 202.07,
+ "end": 202.25,
+ "text": "think"
+ },
+ {
+ "id": 542,
+ "start": 202.25,
+ "end": 202.36,
+ "text": "it"
+ },
+ {
+ "id": 543,
+ "start": 202.36,
+ "end": 203.02,
+ "text": "can"
+ },
+ {
+ "id": 544,
+ "start": 203.02,
+ "end": 203.34,
+ "text": "really"
+ },
+ {
+ "id": 545,
+ "start": 203.34,
+ "end": 203.69,
+ "text": "provide"
+ },
+ {
+ "id": 546,
+ "start": 203.69,
+ "end": 203.81,
+ "text": "its"
+ },
+ {
+ "id": 547,
+ "start": 204.33000000000004,
+ "end": 204.51500000000004,
+ "text": "value."
+ },
+ {
+ "id": 548,
+ "start": 204.97,
+ "end": 205.22,
+ "text": "Some"
+ },
+ {
+ "id": 549,
+ "start": 205.22,
+ "end": 205.29,
+ "text": "of"
+ },
+ {
+ "id": 550,
+ "start": 205.29,
+ "end": 205.47,
+ "text": "the"
+ },
+ {
+ "id": 551,
+ "start": 205.47,
+ "end": 206.09,
+ "text": "problems"
+ },
+ {
+ "id": 552,
+ "start": 206.09,
+ "end": 206.24,
+ "text": "that"
+ },
+ {
+ "id": 553,
+ "start": 206.24,
+ "end": 206.51,
+ "text": "have"
+ },
+ {
+ "id": 554,
+ "start": 206.51,
+ "end": 206.94,
+ "text": "reared"
+ },
+ {
+ "id": 555,
+ "start": 206.94,
+ "end": 207.12,
+ "text": "their"
+ },
+ {
+ "id": 556,
+ "start": 207.12,
+ "end": 207.87,
+ "text": "head"
+ },
+ {
+ "id": 557,
+ "start": 207.87,
+ "end": 208.07,
+ "text": "with"
+ },
+ {
+ "id": 558,
+ "start": 208.07,
+ "end": 208.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 559,
+ "start": 208.54,
+ "end": 208.71,
+ "text": "over"
+ },
+ {
+ "id": 560,
+ "start": 208.71,
+ "end": 208.79,
+ "text": "the"
+ },
+ {
+ "id": 561,
+ "start": 208.79,
+ "end": 209.07,
+ "text": "past"
+ },
+ {
+ "id": 562,
+ "start": 209.07,
+ "end": 209.3,
+ "text": "couple"
+ },
+ {
+ "id": 563,
+ "start": 209.3,
+ "end": 209.38,
+ "text": "of"
+ },
+ {
+ "id": 564,
+ "start": 209.38,
+ "end": 209.88,
+ "text": "years"
+ },
+ {
+ "id": 565,
+ "start": 211.21000000000015,
+ "end": 211.5,
+ "text": "seem"
+ },
+ {
+ "id": 566,
+ "start": 213.04,
+ "end": 213.12,
+ "text": "to"
+ },
+ {
+ "id": 567,
+ "start": 213.12,
+ "end": 213.21,
+ "text": "have"
+ },
+ {
+ "id": 568,
+ "start": 213.21,
+ "end": 213.36,
+ "text": "been"
+ },
+ {
+ "id": 569,
+ "start": 213.36,
+ "end": 213.83,
+ "text": "caused"
+ },
+ {
+ "id": 570,
+ "start": 213.83,
+ "end": 213.92,
+ "text": "in"
+ },
+ {
+ "id": 571,
+ "start": 213.92,
+ "end": 214.17,
+ "text": "some"
+ },
+ {
+ "id": 572,
+ "start": 214.17,
+ "end": 214.53,
+ "text": "ways"
+ },
+ {
+ "id": 573,
+ "start": 214.53,
+ "end": 215.57,
+ "text": "by"
+ },
+ {
+ "id": 574,
+ "start": 215.57,
+ "end": 215.94,
+ "text": "this"
+ },
+ {
+ "id": 575,
+ "start": 215.94,
+ "end": 216.62,
+ "text": "exponential"
+ },
+ {
+ "id": 576,
+ "start": 216.62,
+ "end": 217.44,
+ "text": "growth,"
+ },
+ {
+ "id": 577,
+ "start": 217.44,
+ "end": 218.88,
+ "text": "by"
+ },
+ {
+ "id": 578,
+ "start": 218.88,
+ "end": 219.24,
+ "text": "growing"
+ },
+ {
+ "id": 579,
+ "start": 219.24,
+ "end": 219.44,
+ "text": "too"
+ },
+ {
+ "id": 580,
+ "start": 219.44,
+ "end": 219.85,
+ "text": "fast"
+ },
+ {
+ "id": 581,
+ "start": 219.715,
+ "end": 221.32499999999993,
+ "text": "too"
+ },
+ {
+ "id": 582,
+ "start": 219.99,
+ "end": 222.8,
+ "text": "quickly."
+ },
+ {
+ "id": 583,
+ "start": 222.8,
+ "end": 222.98,
+ "text": "Do"
+ },
+ {
+ "id": 584,
+ "start": 222.98,
+ "end": 223.05,
+ "text": "you"
+ },
+ {
+ "id": 585,
+ "start": 223.05,
+ "end": 223.32,
+ "text": "think"
+ },
+ {
+ "id": 586,
+ "start": 223.32,
+ "end": 223.51,
+ "text": "that"
+ },
+ {
+ "id": 587,
+ "start": 223.51,
+ "end": 223.97,
+ "text": "growth"
+ },
+ {
+ "id": 588,
+ "start": 223.97,
+ "end": 224.19,
+ "text": "was"
+ },
+ {
+ "id": 589,
+ "start": 224.19,
+ "end": 224.43,
+ "text": "in"
+ },
+ {
+ "id": 590,
+ "start": 224.43,
+ "end": 224.65,
+ "text": "some"
+ },
+ {
+ "id": 591,
+ "start": 224.65,
+ "end": 224.86,
+ "text": "ways"
+ },
+ {
+ "id": 592,
+ "start": 224.86,
+ "end": 225.52,
+ "text": "responsible"
+ },
+ {
+ "id": 593,
+ "start": 225.52,
+ "end": 225.74,
+ "text": "for"
+ },
+ {
+ "id": 594,
+ "start": 225.74,
+ "end": 226.52,
+ "text": "where"
+ },
+ {
+ "id": 595,
+ "start": 226.16,
+ "end": 226.62,
+ "text": "the"
+ },
+ {
+ "id": 596,
+ "start": 226.45666666666668,
+ "end": 226.84666666666666,
+ "text": "company"
+ },
+ {
+ "id": 597,
+ "start": 226.75333333333336,
+ "end": 227.07333333333335,
+ "text": "has"
+ },
+ {
+ "id": 598,
+ "start": 227.05,
+ "end": 227.3,
+ "text": "found"
+ },
+ {
+ "id": 599,
+ "start": 227.3,
+ "end": 227.67,
+ "text": "itself"
+ },
+ {
+ "id": 600,
+ "start": 227.67,
+ "end": 228.97,
+ "text": "now?"
+ },
+ {
+ "id": 601,
+ "start": 228.97,
+ "end": 229.68,
+ "text": "So"
+ },
+ {
+ "id": 602,
+ "start": 229.68,
+ "end": 229.82,
+ "text": "I"
+ },
+ {
+ "id": 603,
+ "start": 229.82,
+ "end": 230.19,
+ "text": "think"
+ },
+ {
+ "id": 604,
+ "start": 230.01,
+ "end": 230.51,
+ "text": "Mark—and"
+ },
+ {
+ "id": 605,
+ "start": 230.2,
+ "end": 230.83,
+ "text": "Mark"
+ },
+ {
+ "id": 606,
+ "start": 230.77000000000004,
+ "end": 231.215,
+ "text": "has"
+ },
+ {
+ "id": 607,
+ "start": 231.34,
+ "end": 231.6,
+ "text": "said"
+ },
+ {
+ "id": 608,
+ "start": 231.6,
+ "end": 232.03,
+ "text": "this,"
+ },
+ {
+ "id": 609,
+ "start": 232.03,
+ "end": 232.55,
+ "text": "that"
+ },
+ {
+ "id": 610,
+ "start": 232.55,
+ "end": 233.03,
+ "text": "we"
+ },
+ {
+ "id": 611,
+ "start": 233.03,
+ "end": 233.24,
+ "text": "have"
+ },
+ {
+ "id": 612,
+ "start": 233.24,
+ "end": 233.58,
+ "text": "been"
+ },
+ {
+ "id": 613,
+ "start": 233.58,
+ "end": 234.53,
+ "text": "slow"
+ },
+ {
+ "id": 614,
+ "start": 234.53,
+ "end": 235.16,
+ "text": "to"
+ },
+ {
+ "id": 615,
+ "start": 235.16,
+ "end": 235.59,
+ "text": "really"
+ },
+ {
+ "id": 616,
+ "start": 235.59,
+ "end": 237.04,
+ "text": "understand"
+ },
+ {
+ "id": 617,
+ "start": 237.04,
+ "end": 237.17,
+ "text": "the"
+ },
+ {
+ "id": 618,
+ "start": 237.17,
+ "end": 237.57,
+ "text": "ways"
+ },
+ {
+ "id": 619,
+ "start": 237.57,
+ "end": 237.7,
+ "text": "in"
+ },
+ {
+ "id": 620,
+ "start": 237.7,
+ "end": 238.21,
+ "text": "which"
+ },
+ {
+ "id": 621,
+ "start": 238.21,
+ "end": 238.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 622,
+ "start": 238.72,
+ "end": 239,
+ "text": "might"
+ },
+ {
+ "id": 623,
+ "start": 239,
+ "end": 239.24,
+ "text": "be"
+ },
+ {
+ "id": 624,
+ "start": 239.24,
+ "end": 239.94,
+ "text": "used"
+ },
+ {
+ "id": 625,
+ "start": 239.94,
+ "end": 241.05,
+ "text": "for"
+ },
+ {
+ "id": 626,
+ "start": 241.05,
+ "end": 241.29,
+ "text": "bad"
+ },
+ {
+ "id": 627,
+ "start": 241.29,
+ "end": 242.18,
+ "text": "things."
+ },
+ {
+ "id": 628,
+ "start": 242.18,
+ "end": 242.66,
+ "text": "We’ve"
+ },
+ {
+ "id": 629,
+ "start": 242.66,
+ "end": 242.83,
+ "text": "been"
+ },
+ {
+ "id": 630,
+ "start": 242.83,
+ "end": 243.04,
+ "text": "really"
+ },
+ {
+ "id": 631,
+ "start": 243.04,
+ "end": 243.62,
+ "text": "focused"
+ },
+ {
+ "id": 632,
+ "start": 243.62,
+ "end": 243.93,
+ "text": "on"
+ },
+ {
+ "id": 633,
+ "start": 243.93,
+ "end": 244.01,
+ "text": "the"
+ },
+ {
+ "id": 634,
+ "start": 244.01,
+ "end": 244.19,
+ "text": "good"
+ },
+ {
+ "id": 635,
+ "start": 244.19,
+ "end": 245.047,
+ "text": "things."
+ },
+ {
+ "id": 636,
+ "start": 245.047,
+ "end": 245.497,
+ "text": "I"
+ },
+ {
+ "id": 637,
+ "start": 245.497,
+ "end": 245.687,
+ "text": "lead"
+ },
+ {
+ "id": 638,
+ "start": 245.687,
+ "end": 245.737,
+ "text": "a"
+ },
+ {
+ "id": 639,
+ "start": 245.737,
+ "end": 246.077,
+ "text": "team"
+ },
+ {
+ "id": 640,
+ "start": 246.077,
+ "end": 246.287,
+ "text": "called"
+ },
+ {
+ "id": 641,
+ "start": 246.287,
+ "end": 246.367,
+ "text": "the"
+ },
+ {
+ "id": 642,
+ "start": 246.367,
+ "end": 246.717,
+ "text": "Social"
+ },
+ {
+ "id": 643,
+ "start": 246.717,
+ "end": 246.927,
+ "text": "Good"
+ },
+ {
+ "id": 644,
+ "start": 246.927,
+ "end": 247.327,
+ "text": "team,"
+ },
+ {
+ "id": 645,
+ "start": 247.327,
+ "end": 247.597,
+ "text": "and"
+ },
+ {
+ "id": 646,
+ "start": 247.597,
+ "end": 247.827,
+ "text": "their"
+ },
+ {
+ "id": 647,
+ "start": 247.827,
+ "end": 248.737,
+ "text": "entire"
+ },
+ {
+ "id": 648,
+ "start": 248.737,
+ "end": 249.327,
+ "text": "focus"
+ },
+ {
+ "id": 649,
+ "start": 249.327,
+ "end": 249.977,
+ "text": "is"
+ },
+ {
+ "id": 650,
+ "start": 249.977,
+ "end": 250.587,
+ "text": "finding"
+ },
+ {
+ "id": 651,
+ "start": 250.587,
+ "end": 250.887,
+ "text": "great"
+ },
+ {
+ "id": 652,
+ "start": 250.887,
+ "end": 251.157,
+ "text": "things"
+ },
+ {
+ "id": 653,
+ "start": 251.157,
+ "end": 251.317,
+ "text": "that"
+ },
+ {
+ "id": 654,
+ "start": 251.317,
+ "end": 251.587,
+ "text": "happen"
+ },
+ {
+ "id": 655,
+ "start": 251.587,
+ "end": 251.727,
+ "text": "on"
+ },
+ {
+ "id": 656,
+ "start": 251.727,
+ "end": 252.147,
+ "text": "Facebook"
+ },
+ {
+ "id": 657,
+ "start": 252.147,
+ "end": 252.267,
+ "text": "all"
+ },
+ {
+ "id": 658,
+ "start": 252.267,
+ "end": 252.357,
+ "text": "the"
+ },
+ {
+ "id": 659,
+ "start": 252.357,
+ "end": 252.977,
+ "text": "time"
+ },
+ {
+ "id": 660,
+ "start": 252.977,
+ "end": 253.767,
+ "text": "and"
+ },
+ {
+ "id": 661,
+ "start": 253.767,
+ "end": 254.097,
+ "text": "building"
+ },
+ {
+ "id": 662,
+ "start": 254.097,
+ "end": 254.417,
+ "text": "tools"
+ },
+ {
+ "id": 663,
+ "start": 254.417,
+ "end": 254.507,
+ "text": "to"
+ },
+ {
+ "id": 664,
+ "start": 254.507,
+ "end": 254.677,
+ "text": "make"
+ },
+ {
+ "id": 665,
+ "start": 254.677,
+ "end": 254.847,
+ "text": "that"
+ },
+ {
+ "id": 666,
+ "start": 254.847,
+ "end": 255.067,
+ "text": "even"
+ },
+ {
+ "id": 667,
+ "start": 255.067,
+ "end": 256.077,
+ "text": "easier."
+ },
+ {
+ "id": 668,
+ "start": 256.077,
+ "end": 256.197,
+ "text": "A"
+ },
+ {
+ "id": 669,
+ "start": 256.197,
+ "end": 256.347,
+ "text": "good"
+ },
+ {
+ "id": 670,
+ "start": 256.347,
+ "end": 256.817,
+ "text": "example"
+ },
+ {
+ "id": 671,
+ "start": 256.817,
+ "end": 257.147,
+ "text": "is"
+ },
+ {
+ "id": 672,
+ "start": 257.332,
+ "end": 257.592,
+ "text": "ALS"
+ },
+ {
+ "id": 673,
+ "start": 257.847,
+ "end": 258.037,
+ "text": "Ice"
+ },
+ {
+ "id": 674,
+ "start": 258.037,
+ "end": 258.297,
+ "text": "Bucket"
+ },
+ {
+ "id": 675,
+ "start": 258.297,
+ "end": 258.977,
+ "text": "Challenge."
+ },
+ {
+ "id": 676,
+ "start": 258.977,
+ "end": 259.087,
+ "text": "We"
+ },
+ {
+ "id": 677,
+ "start": 259.087,
+ "end": 259.367,
+ "text": "built"
+ },
+ {
+ "id": 678,
+ "start": 259.367,
+ "end": 259.447,
+ "text": "the"
+ },
+ {
+ "id": 679,
+ "start": 259.447,
+ "end": 259.787,
+ "text": "Donate"
+ },
+ {
+ "id": 680,
+ "start": 259.787,
+ "end": 260.067,
+ "text": "button"
+ },
+ {
+ "id": 681,
+ "start": 260.067,
+ "end": 260.317,
+ "text": "from"
+ },
+ {
+ "id": 682,
+ "start": 260.317,
+ "end": 261.847,
+ "text": "that."
+ },
+ {
+ "id": 683,
+ "start": 261.847,
+ "end": 262.027,
+ "text": "In"
+ },
+ {
+ "id": 684,
+ "start": 262.027,
+ "end": 262.547,
+ "text": "terms"
+ },
+ {
+ "id": 685,
+ "start": 262.547,
+ "end": 263.877,
+ "text": "of"
+ },
+ {
+ "id": 686,
+ "start": 263.877,
+ "end": 264.217,
+ "text": "have"
+ },
+ {
+ "id": 687,
+ "start": 264.217,
+ "end": 264.327,
+ "text": "we"
+ },
+ {
+ "id": 688,
+ "start": 264.327,
+ "end": 264.557,
+ "text": "been"
+ },
+ {
+ "id": 689,
+ "start": 264.557,
+ "end": 265.307,
+ "text": "slow?"
+ },
+ {
+ "id": 690,
+ "start": 265.232,
+ "end": 265.71200000000005,
+ "text": "Yes."
+ },
+ {
+ "id": 691,
+ "start": 265.907,
+ "end": 266.117,
+ "text": "But"
+ },
+ {
+ "id": 692,
+ "start": 266.117,
+ "end": 266.347,
+ "text": "we’ve"
+ },
+ {
+ "id": 693,
+ "start": 266.347,
+ "end": 266.627,
+ "text": "done"
+ },
+ {
+ "id": 694,
+ "start": 266.627,
+ "end": 267.467,
+ "text": "so"
+ },
+ {
+ "id": 695,
+ "start": 267.467,
+ "end": 268.057,
+ "text": "much"
+ },
+ {
+ "id": 696,
+ "start": 268.057,
+ "end": 268.627,
+ "text": "to"
+ },
+ {
+ "id": 697,
+ "start": 268.627,
+ "end": 268.867,
+ "text": "make"
+ },
+ {
+ "id": 698,
+ "start": 268.867,
+ "end": 268.997,
+ "text": "up"
+ },
+ {
+ "id": 699,
+ "start": 268.997,
+ "end": 269.147,
+ "text": "for"
+ },
+ {
+ "id": 700,
+ "start": 269.147,
+ "end": 270.087,
+ "text": "that."
+ },
+ {
+ "id": 701,
+ "start": 270.087,
+ "end": 270.257,
+ "text": "Let"
+ },
+ {
+ "id": 702,
+ "start": 270.257,
+ "end": 270.337,
+ "text": "me"
+ },
+ {
+ "id": 703,
+ "start": 270.337,
+ "end": 270.517,
+ "text": "ask"
+ },
+ {
+ "id": 704,
+ "start": 270.517,
+ "end": 270.587,
+ "text": "you"
+ },
+ {
+ "id": 705,
+ "start": 270.587,
+ "end": 270.737,
+ "text": "about"
+ },
+ {
+ "id": 706,
+ "start": 270.737,
+ "end": 270.807,
+ "text": "the"
+ },
+ {
+ "id": 707,
+ "start": 270.807,
+ "end": 271.127,
+ "text": "slow,"
+ },
+ {
+ "id": 708,
+ "start": 271.127,
+ "end": 271.327,
+ "text": "though,"
+ },
+ {
+ "id": 709,
+ "start": 271.327,
+ "end": 272.687,
+ "text": "because"
+ },
+ {
+ "id": 710,
+ "start": 272.687,
+ "end": 272.897,
+ "text": "one"
+ },
+ {
+ "id": 711,
+ "start": 272.897,
+ "end": 272.967,
+ "text": "of"
+ },
+ {
+ "id": 712,
+ "start": 272.967,
+ "end": 273.067,
+ "text": "the"
+ },
+ {
+ "id": 713,
+ "start": 273.067,
+ "end": 273.797,
+ "text": "things"
+ },
+ {
+ "id": 714,
+ "start": 273.797,
+ "end": 274.037,
+ "text": "in"
+ },
+ {
+ "id": 715,
+ "start": 274.037,
+ "end": 274.237,
+ "text": "our"
+ },
+ {
+ "id": 716,
+ "start": 274.237,
+ "end": 274.857,
+ "text": "reporting"
+ },
+ {
+ "id": 717,
+ "start": 274.857,
+ "end": 275.007,
+ "text": "and"
+ },
+ {
+ "id": 718,
+ "start": 275.007,
+ "end": 275.137,
+ "text": "one"
+ },
+ {
+ "id": 719,
+ "start": 275.137,
+ "end": 275.227,
+ "text": "of"
+ },
+ {
+ "id": 720,
+ "start": 275.227,
+ "end": 275.347,
+ "text": "the"
+ },
+ {
+ "id": 721,
+ "start": 275.347,
+ "end": 275.747,
+ "text": "things"
+ },
+ {
+ "id": 722,
+ "start": 275.747,
+ "end": 275.957,
+ "text": "that"
+ },
+ {
+ "id": 723,
+ "start": 275.957,
+ "end": 275.987,
+ "text": "I"
+ },
+ {
+ "id": 724,
+ "start": 275.987,
+ "end": 276.247,
+ "text": "think"
+ },
+ {
+ "id": 725,
+ "start": 276.247,
+ "end": 276.297,
+ "text": "a"
+ },
+ {
+ "id": 726,
+ "start": 276.297,
+ "end": 276.487,
+ "text": "lot"
+ },
+ {
+ "id": 727,
+ "start": 276.487,
+ "end": 276.597,
+ "text": "of"
+ },
+ {
+ "id": 728,
+ "start": 276.597,
+ "end": 277.017,
+ "text": "outside"
+ },
+ {
+ "id": 729,
+ "start": 277.017,
+ "end": 277.427,
+ "text": "critics"
+ },
+ {
+ "id": 730,
+ "start": 277.427,
+ "end": 277.567,
+ "text": "would"
+ },
+ {
+ "id": 731,
+ "start": 277.567,
+ "end": 278.277,
+ "text": "say"
+ },
+ {
+ "id": 732,
+ "start": 278.277,
+ "end": 278.497,
+ "text": "is"
+ },
+ {
+ "id": 733,
+ "start": 278.497,
+ "end": 278.987,
+ "text": "that"
+ },
+ {
+ "id": 734,
+ "start": 278.987,
+ "end": 279.967,
+ "text": "there"
+ },
+ {
+ "id": 735,
+ "start": 279.967,
+ "end": 280.287,
+ "text": "was"
+ },
+ {
+ "id": 736,
+ "start": 280.287,
+ "end": 280.667,
+ "text": "plenty"
+ },
+ {
+ "id": 737,
+ "start": 280.667,
+ "end": 280.847,
+ "text": "that"
+ },
+ {
+ "id": 738,
+ "start": 280.847,
+ "end": 281.007,
+ "text": "was"
+ },
+ {
+ "id": 739,
+ "start": 281.007,
+ "end": 281.507,
+ "text": "known"
+ },
+ {
+ "id": 740,
+ "start": 281.507,
+ "end": 281.867,
+ "text": "about"
+ },
+ {
+ "id": 741,
+ "start": 281.867,
+ "end": 281.967,
+ "text": "the"
+ },
+ {
+ "id": 742,
+ "start": 281.967,
+ "end": 282.447,
+ "text": "potential"
+ },
+ {
+ "id": 743,
+ "start": 282.447,
+ "end": 283.237,
+ "text": "downsides"
+ },
+ {
+ "id": 744,
+ "start": 283.237,
+ "end": 283.417,
+ "text": "of"
+ },
+ {
+ "id": 745,
+ "start": 283.417,
+ "end": 283.747,
+ "text": "social"
+ },
+ {
+ "id": 746,
+ "start": 283.747,
+ "end": 284.097,
+ "text": "media"
+ },
+ {
+ "id": 747,
+ "start": 284.097,
+ "end": 284.447,
+ "text": "and"
+ },
+ {
+ "id": 748,
+ "start": 284.89699999999993,
+ "end": 285.14700000000005,
+ "text": "Facebook—you"
+ },
+ {
+ "id": 749,
+ "start": 285.697,
+ "end": 285.847,
+ "text": "know,"
+ },
+ {
+ "id": 750,
+ "start": 285.847,
+ "end": 286.347,
+ "text": "potential"
+ },
+ {
+ "id": 751,
+ "start": 286.347,
+ "end": 286.727,
+ "text": "for"
+ },
+ {
+ "id": 752,
+ "start": 286.727,
+ "end": 287.987,
+ "text": "disinformation,"
+ },
+ {
+ "id": 753,
+ "start": 287.987,
+ "end": 288.477,
+ "text": "potential"
+ },
+ {
+ "id": 754,
+ "start": 288.477,
+ "end": 288.807,
+ "text": "for"
+ },
+ {
+ "id": 755,
+ "start": 288.832,
+ "end": 289.197,
+ "text": "filter"
+ },
+ {
+ "id": 756,
+ "start": 289.187,
+ "end": 289.587,
+ "text": "bubbles"
+ },
+ {
+ "id": 757,
+ "start": 289.587,
+ "end": 289.687,
+ "text": "or"
+ },
+ {
+ "id": 758,
+ "start": 289.687,
+ "end": 290.157,
+ "text": "preference"
+ },
+ {
+ "id": 759,
+ "start": 290.157,
+ "end": 291.047,
+ "text": "bubbles,"
+ },
+ {
+ "id": 760,
+ "start": 291.047,
+ "end": 291.557,
+ "text": "potential"
+ },
+ {
+ "id": 761,
+ "start": 291.557,
+ "end": 293.577,
+ "text": "for"
+ },
+ {
+ "id": 762,
+ "start": 293.577,
+ "end": 293.837,
+ "text": "all"
+ },
+ {
+ "id": 763,
+ "start": 293.837,
+ "end": 294.127,
+ "text": "sorts"
+ },
+ {
+ "id": 764,
+ "start": 294.127,
+ "end": 294.347,
+ "text": "of"
+ },
+ {
+ "id": 765,
+ "start": 294.347,
+ "end": 294.637,
+ "text": "bad"
+ },
+ {
+ "id": 766,
+ "start": 294.637,
+ "end": 295.087,
+ "text": "actors"
+ },
+ {
+ "id": 767,
+ "start": 295.087,
+ "end": 295.187,
+ "text": "and"
+ },
+ {
+ "id": 768,
+ "start": 295.61199999999997,
+ "end": 295.78700000000003,
+ "text": "abuse."
+ },
+ {
+ "id": 769,
+ "start": 296.137,
+ "end": 296.387,
+ "text": "Were"
+ },
+ {
+ "id": 770,
+ "start": 296.387,
+ "end": 296.667,
+ "text": "these"
+ },
+ {
+ "id": 771,
+ "start": 296.667,
+ "end": 296.997,
+ "text": "things"
+ },
+ {
+ "id": 772,
+ "start": 296.997,
+ "end": 297.247,
+ "text": "that"
+ },
+ {
+ "id": 773,
+ "start": 297.247,
+ "end": 297.447,
+ "text": "you"
+ },
+ {
+ "id": 774,
+ "start": 297.447,
+ "end": 297.717,
+ "text": "just"
+ },
+ {
+ "id": 775,
+ "start": 297.717,
+ "end": 297.967,
+ "text": "weren’t"
+ },
+ {
+ "id": 776,
+ "start": 297.967,
+ "end": 298.217,
+ "text": "paying"
+ },
+ {
+ "id": 777,
+ "start": 298.217,
+ "end": 298.737,
+ "text": "attention"
+ },
+ {
+ "id": 778,
+ "start": 298.737,
+ "end": 299.047,
+ "text": "to,"
+ },
+ {
+ "id": 779,
+ "start": 299.047,
+ "end": 299.247,
+ "text": "or"
+ },
+ {
+ "id": 780,
+ "start": 299.247,
+ "end": 299.367,
+ "text": "were"
+ },
+ {
+ "id": 781,
+ "start": 299.367,
+ "end": 299.647,
+ "text": "these"
+ },
+ {
+ "id": 782,
+ "start": 299.647,
+ "end": 299.967,
+ "text": "things"
+ },
+ {
+ "id": 783,
+ "start": 299.967,
+ "end": 300.637,
+ "text": "that"
+ },
+ {
+ "id": 784,
+ "start": 300.637,
+ "end": 301.737,
+ "text": "were"
+ },
+ {
+ "id": 785,
+ "start": 301.737,
+ "end": 302.267,
+ "text": "conscious"
+ },
+ {
+ "id": 786,
+ "start": 302.267,
+ "end": 302.917,
+ "text": "choices"
+ },
+ {
+ "id": 787,
+ "start": 302.917,
+ "end": 303.067,
+ "text": "to"
+ },
+ {
+ "id": 788,
+ "start": 303.642,
+ "end": 303.79200000000003,
+ "text": "say,"
+ },
+ {
+ "id": 789,
+ "start": 304.367,
+ "end": 304.517,
+ "text": "“All"
+ },
+ {
+ "id": 790,
+ "start": 304.517,
+ "end": 304.697,
+ "text": "right,"
+ },
+ {
+ "id": 791,
+ "start": 304.697,
+ "end": 304.837,
+ "text": "we’re"
+ },
+ {
+ "id": 792,
+ "start": 305.092,
+ "end": 305.392,
+ "text": "going"
+ },
+ {
+ "id": 793,
+ "start": 305.48699999999997,
+ "end": 305.947,
+ "text": "to"
+ },
+ {
+ "id": 794,
+ "start": 305.88199999999995,
+ "end": 306.502,
+ "text": "abdicate"
+ },
+ {
+ "id": 795,
+ "start": 306.277,
+ "end": 307.057,
+ "text": "responsibility"
+ },
+ {
+ "id": 796,
+ "start": 307.057,
+ "end": 307.247,
+ "text": "from"
+ },
+ {
+ "id": 797,
+ "start": 307.247,
+ "end": 307.487,
+ "text": "those"
+ },
+ {
+ "id": 798,
+ "start": 307.487,
+ "end": 307.837,
+ "text": "things"
+ },
+ {
+ "id": 799,
+ "start": 307.837,
+ "end": 308.107,
+ "text": "and"
+ },
+ {
+ "id": 800,
+ "start": 308.107,
+ "end": 308.367,
+ "text": "just"
+ },
+ {
+ "id": 801,
+ "start": 308.367,
+ "end": 308.577,
+ "text": "keep"
+ },
+ {
+ "id": 802,
+ "start": 309.027,
+ "end": 309.187,
+ "text": "growing”?"
+ },
+ {
+ "id": 803,
+ "start": 309.687,
+ "end": 309.797,
+ "text": "I"
+ },
+ {
+ "id": 804,
+ "start": 309.797,
+ "end": 310.147,
+ "text": "definitely"
+ },
+ {
+ "id": 805,
+ "start": 310.147,
+ "end": 310.347,
+ "text": "think"
+ },
+ {
+ "id": 806,
+ "start": 310.347,
+ "end": 310.517,
+ "text": "we’ve"
+ },
+ {
+ "id": 807,
+ "start": 310.517,
+ "end": 310.687,
+ "text": "been"
+ },
+ {
+ "id": 808,
+ "start": 310.687,
+ "end": 311.027,
+ "text": "paying"
+ },
+ {
+ "id": 809,
+ "start": 311.027,
+ "end": 311.557,
+ "text": "attention"
+ },
+ {
+ "id": 810,
+ "start": 311.557,
+ "end": 311.687,
+ "text": "to"
+ },
+ {
+ "id": 811,
+ "start": 311.687,
+ "end": 311.847,
+ "text": "the"
+ },
+ {
+ "id": 812,
+ "start": 311.847,
+ "end": 312.157,
+ "text": "things"
+ },
+ {
+ "id": 813,
+ "start": 312.157,
+ "end": 312.317,
+ "text": "that"
+ },
+ {
+ "id": 814,
+ "start": 312.317,
+ "end": 312.447,
+ "text": "we"
+ },
+ {
+ "id": 815,
+ "start": 312.827,
+ "end": 312.947,
+ "text": "know."
+ },
+ {
+ "id": 816,
+ "start": 313.337,
+ "end": 313.447,
+ "text": "One"
+ },
+ {
+ "id": 817,
+ "start": 313.447,
+ "end": 313.507,
+ "text": "of"
+ },
+ {
+ "id": 818,
+ "start": 313.507,
+ "end": 313.577,
+ "text": "the"
+ },
+ {
+ "id": 819,
+ "start": 313.577,
+ "end": 313.917,
+ "text": "biggest"
+ },
+ {
+ "id": 820,
+ "start": 313.917,
+ "end": 314.497,
+ "text": "challenges"
+ },
+ {
+ "id": 821,
+ "start": 314.497,
+ "end": 314.967,
+ "text": "here"
+ },
+ {
+ "id": 822,
+ "start": 314.967,
+ "end": 315.137,
+ "text": "is"
+ },
+ {
+ "id": 823,
+ "start": 315.137,
+ "end": 315.317,
+ "text": "that"
+ },
+ {
+ "id": 824,
+ "start": 315.317,
+ "end": 315.507,
+ "text": "this"
+ },
+ {
+ "id": 825,
+ "start": 315.507,
+ "end": 315.687,
+ "text": "is"
+ },
+ {
+ "id": 826,
+ "start": 315.687,
+ "end": 315.967,
+ "text": "really"
+ },
+ {
+ "id": 827,
+ "start": 315.967,
+ "end": 316.057,
+ "text": "an"
+ },
+ {
+ "id": 828,
+ "start": 316.057,
+ "end": 316.677,
+ "text": "evolving"
+ },
+ {
+ "id": 829,
+ "start": 316.677,
+ "end": 316.957,
+ "text": "set"
+ },
+ {
+ "id": 830,
+ "start": 316.957,
+ "end": 317.057,
+ "text": "of"
+ },
+ {
+ "id": 831,
+ "start": 317.057,
+ "end": 317.507,
+ "text": "threats"
+ },
+ {
+ "id": 832,
+ "start": 317.507,
+ "end": 317.697,
+ "text": "and"
+ },
+ {
+ "id": 833,
+ "start": 317.697,
+ "end": 318.337,
+ "text": "risks."
+ },
+ {
+ "id": 834,
+ "start": 318.337,
+ "end": 318.847,
+ "text": "One"
+ },
+ {
+ "id": 835,
+ "start": 318.847,
+ "end": 319.047,
+ "text": "good"
+ },
+ {
+ "id": 836,
+ "start": 319.047,
+ "end": 319.567,
+ "text": "example"
+ },
+ {
+ "id": 837,
+ "start": 319.567,
+ "end": 319.697,
+ "text": "of"
+ },
+ {
+ "id": 838,
+ "start": 319.697,
+ "end": 320.007,
+ "text": "this"
+ },
+ {
+ "id": 839,
+ "start": 319.997,
+ "end": 320.477,
+ "text": "is"
+ },
+ {
+ "id": 840,
+ "start": 320.27700000000004,
+ "end": 320.717,
+ "text": "we"
+ },
+ {
+ "id": 841,
+ "start": 320.557,
+ "end": 320.957,
+ "text": "were"
+ },
+ {
+ "id": 842,
+ "start": 320.957,
+ "end": 321.177,
+ "text": "really"
+ },
+ {
+ "id": 843,
+ "start": 321.177,
+ "end": 321.587,
+ "text": "focused"
+ },
+ {
+ "id": 844,
+ "start": 321.587,
+ "end": 321.727,
+ "text": "on"
+ },
+ {
+ "id": 845,
+ "start": 322.147,
+ "end": 322.307,
+ "text": "cyberattacks"
+ },
+ {
+ "id": 846,
+ "start": 322.707,
+ "end": 322.887,
+ "text": "for"
+ },
+ {
+ "id": 847,
+ "start": 322.887,
+ "end": 322.997,
+ "text": "the"
+ },
+ {
+ "id": 848,
+ "start": 322.997,
+ "end": 323.437,
+ "text": "November"
+ },
+ {
+ "id": 849,
+ "start": 323.627,
+ "end": 324.41200000000003,
+ "text": "2016"
+ },
+ {
+ "id": 850,
+ "start": 324.257,
+ "end": 325.387,
+ "text": "election."
+ },
+ {
+ "id": 851,
+ "start": 325.387,
+ "end": 325.717,
+ "text": "We"
+ },
+ {
+ "id": 852,
+ "start": 325.717,
+ "end": 326.527,
+ "text": "weren’t"
+ },
+ {
+ "id": 853,
+ "start": 326.527,
+ "end": 327.117,
+ "text": "ahead"
+ },
+ {
+ "id": 854,
+ "start": 327.117,
+ "end": 327.307,
+ "text": "of"
+ },
+ {
+ "id": 855,
+ "start": 327.307,
+ "end": 327.407,
+ "text": "the"
+ },
+ {
+ "id": 856,
+ "start": 327.407,
+ "end": 328.017,
+ "text": "curve"
+ },
+ {
+ "id": 857,
+ "start": 328.017,
+ "end": 328.457,
+ "text": "on"
+ },
+ {
+ "id": 858,
+ "start": 328.457,
+ "end": 328.877,
+ "text": "foreign"
+ },
+ {
+ "id": 859,
+ "start": 328.877,
+ "end": 329.657,
+ "text": "interference"
+ },
+ {
+ "id": 860,
+ "start": 329.657,
+ "end": 329.757,
+ "text": "in"
+ },
+ {
+ "id": 861,
+ "start": 329.757,
+ "end": 330.547,
+ "text": "elections,"
+ },
+ {
+ "id": 862,
+ "start": 330.547,
+ "end": 330.717,
+ "text": "and"
+ },
+ {
+ "id": 863,
+ "start": 330.717,
+ "end": 330.777,
+ "text": "I"
+ },
+ {
+ "id": 864,
+ "start": 330.777,
+ "end": 331.807,
+ "text": "think"
+ },
+ {
+ "id": 865,
+ "start": 331.807,
+ "end": 332.047,
+ "text": "that’s"
+ },
+ {
+ "id": 866,
+ "start": 332.047,
+ "end": 332.697,
+ "text": "true"
+ },
+ {
+ "id": 867,
+ "start": 332.697,
+ "end": 332.857,
+ "text": "of"
+ },
+ {
+ "id": 868,
+ "start": 332.857,
+ "end": 333.207,
+ "text": "us"
+ },
+ {
+ "id": 869,
+ "start": 333.207,
+ "end": 333.307,
+ "text": "and"
+ },
+ {
+ "id": 870,
+ "start": 333.307,
+ "end": 333.357,
+ "text": "a"
+ },
+ {
+ "id": 871,
+ "start": 333.357,
+ "end": 333.577,
+ "text": "lot"
+ },
+ {
+ "id": 872,
+ "start": 333.577,
+ "end": 333.667,
+ "text": "of"
+ },
+ {
+ "id": 873,
+ "start": 333.667,
+ "end": 334.147,
+ "text": "other"
+ },
+ {
+ "id": 874,
+ "start": 334.807,
+ "end": 335.112,
+ "text": "organizations"
+ },
+ {
+ "id": 875,
+ "start": 335.947,
+ "end": 336.077,
+ "text": "and"
+ },
+ {
+ "id": 876,
+ "start": 336.077,
+ "end": 336.647,
+ "text": "companies"
+ },
+ {
+ "id": 877,
+ "start": 336.647,
+ "end": 336.727,
+ "text": "in"
+ },
+ {
+ "id": 878,
+ "start": 336.727,
+ "end": 336.857,
+ "text": "the"
+ },
+ {
+ "id": 879,
+ "start": 337.252,
+ "end": 338.02199999999993,
+ "text": "industry,"
+ },
+ {
+ "id": 880,
+ "start": 337.777,
+ "end": 339.187,
+ "text": "so"
+ },
+ {
+ "id": 881,
+ "start": 339.187,
+ "end": 339.467,
+ "text": "it’s"
+ },
+ {
+ "id": 882,
+ "start": 339.467,
+ "end": 339.627,
+ "text": "been"
+ },
+ {
+ "id": 883,
+ "start": 339.627,
+ "end": 339.687,
+ "text": "a"
+ },
+ {
+ "id": 884,
+ "start": 339.687,
+ "end": 340.127,
+ "text": "process"
+ },
+ {
+ "id": 885,
+ "start": 340.127,
+ "end": 340.257,
+ "text": "of"
+ },
+ {
+ "id": 886,
+ "start": 340.257,
+ "end": 340.837,
+ "text": "learning."
+ },
+ {
+ "id": 887,
+ "start": 340.837,
+ "end": 341.057,
+ "text": "These"
+ },
+ {
+ "id": 888,
+ "start": 341.057,
+ "end": 341.897,
+ "text": "aren’t"
+ },
+ {
+ "id": 889,
+ "start": 341.897,
+ "end": 342.487,
+ "text": "things"
+ },
+ {
+ "id": 890,
+ "start": 342.487,
+ "end": 343.867,
+ "text": "that"
+ },
+ {
+ "id": 891,
+ "start": 343.867,
+ "end": 344.087,
+ "text": "we"
+ },
+ {
+ "id": 892,
+ "start": 344.087,
+ "end": 344.227,
+ "text": "can"
+ },
+ {
+ "id": 893,
+ "start": 344.227,
+ "end": 344.407,
+ "text": "get"
+ },
+ {
+ "id": 894,
+ "start": 344.407,
+ "end": 344.707,
+ "text": "ahead"
+ },
+ {
+ "id": 895,
+ "start": 345.07200000000006,
+ "end": 345.51700000000005,
+ "text": "of,"
+ },
+ {
+ "id": 896,
+ "start": 345.737,
+ "end": 346.327,
+ "text": "but"
+ },
+ {
+ "id": 897,
+ "start": 346.327,
+ "end": 346.467,
+ "text": "we’re"
+ },
+ {
+ "id": 898,
+ "start": 346.467,
+ "end": 346.657,
+ "text": "really"
+ },
+ {
+ "id": 899,
+ "start": 346.657,
+ "end": 347.027,
+ "text": "trying"
+ },
+ {
+ "id": 900,
+ "start": 347.44199999999995,
+ "end": 347.83699999999993,
+ "text": "to."
+ },
+ {
+ "id": 901,
+ "start": 348.227,
+ "end": 348.647,
+ "text": "Do"
+ },
+ {
+ "id": 902,
+ "start": 348.647,
+ "end": 348.807,
+ "text": "you"
+ },
+ {
+ "id": 903,
+ "start": 348.807,
+ "end": 349.357,
+ "text": "think"
+ },
+ {
+ "id": 904,
+ "start": 349.357,
+ "end": 349.607,
+ "text": "that"
+ },
+ {
+ "id": 905,
+ "start": 349.607,
+ "end": 349.747,
+ "text": "if"
+ },
+ {
+ "id": 906,
+ "start": 349.747,
+ "end": 349.857,
+ "text": "you"
+ },
+ {
+ "id": 907,
+ "start": 349.857,
+ "end": 350.127,
+ "text": "look"
+ },
+ {
+ "id": 908,
+ "start": 350.127,
+ "end": 350.507,
+ "text": "back"
+ },
+ {
+ "id": 909,
+ "start": 350.507,
+ "end": 350.637,
+ "text": "in"
+ },
+ {
+ "id": 910,
+ "start": 350.637,
+ "end": 350.987,
+ "text": "terms"
+ },
+ {
+ "id": 911,
+ "start": 350.987,
+ "end": 351.147,
+ "text": "of"
+ },
+ {
+ "id": 912,
+ "start": 351.147,
+ "end": 351.367,
+ "text": "your"
+ },
+ {
+ "id": 913,
+ "start": 351.367,
+ "end": 352.467,
+ "text": "years"
+ },
+ {
+ "id": 914,
+ "start": 352.467,
+ "end": 352.927,
+ "text": "growing"
+ },
+ {
+ "id": 915,
+ "start": 352.927,
+ "end": 353.127,
+ "text": "this"
+ },
+ {
+ "id": 916,
+ "start": 353.127,
+ "end": 353.677,
+ "text": "business"
+ },
+ {
+ "id": 917,
+ "start": 353.677,
+ "end": 354.327,
+ "text": "that"
+ },
+ {
+ "id": 918,
+ "start": 354.327,
+ "end": 354.517,
+ "text": "there"
+ },
+ {
+ "id": 919,
+ "start": 354.517,
+ "end": 354.667,
+ "text": "were"
+ },
+ {
+ "id": 920,
+ "start": 354.667,
+ "end": 355.417,
+ "text": "moments"
+ },
+ {
+ "id": 921,
+ "start": 355.417,
+ "end": 355.897,
+ "text": "that"
+ },
+ {
+ "id": 922,
+ "start": 355.897,
+ "end": 356.127,
+ "text": "you"
+ },
+ {
+ "id": 923,
+ "start": 356.127,
+ "end": 356.317,
+ "text": "knew"
+ },
+ {
+ "id": 924,
+ "start": 356.317,
+ "end": 356.647,
+ "text": "about"
+ },
+ {
+ "id": 925,
+ "start": 356.647,
+ "end": 357.167,
+ "text": "problems"
+ },
+ {
+ "id": 926,
+ "start": 357.167,
+ "end": 357.277,
+ "text": "and"
+ },
+ {
+ "id": 927,
+ "start": 357.277,
+ "end": 357.387,
+ "text": "you"
+ },
+ {
+ "id": 928,
+ "start": 357.387,
+ "end": 357.617,
+ "text": "really"
+ },
+ {
+ "id": 929,
+ "start": 357.617,
+ "end": 357.767,
+ "text": "should"
+ },
+ {
+ "id": 930,
+ "start": 357.767,
+ "end": 357.857,
+ "text": "have"
+ },
+ {
+ "id": 931,
+ "start": 357.857,
+ "end": 358.167,
+ "text": "taken"
+ },
+ {
+ "id": 932,
+ "start": 358.167,
+ "end": 358.317,
+ "text": "them"
+ },
+ {
+ "id": 933,
+ "start": 358.317,
+ "end": 358.457,
+ "text": "more"
+ },
+ {
+ "id": 934,
+ "start": 358.457,
+ "end": 359.247,
+ "text": "seriously"
+ },
+ {
+ "id": 935,
+ "start": 359.247,
+ "end": 359.407,
+ "text": "at"
+ },
+ {
+ "id": 936,
+ "start": 359.407,
+ "end": 359.487,
+ "text": "the"
+ },
+ {
+ "id": 937,
+ "start": 361.09199999999987,
+ "end": 361.1970000000001,
+ "text": "time?"
+ },
+ {
+ "id": 938,
+ "start": 362.777,
+ "end": 362.907,
+ "text": "I"
+ },
+ {
+ "id": 939,
+ "start": 362.907,
+ "end": 363.207,
+ "text": "think"
+ },
+ {
+ "id": 940,
+ "start": 363.207,
+ "end": 363.537,
+ "text": "we’ve"
+ },
+ {
+ "id": 941,
+ "start": 363.527,
+ "end": 364.017,
+ "text": "made"
+ },
+ {
+ "id": 942,
+ "start": 364.88750000000005,
+ "end": 365.22749999999996,
+ "text": "mistakes,"
+ },
+ {
+ "id": 943,
+ "start": 366.248,
+ "end": 366.438,
+ "text": "but"
+ },
+ {
+ "id": 944,
+ "start": 366.438,
+ "end": 366.508,
+ "text": "I"
+ },
+ {
+ "id": 945,
+ "start": 366.508,
+ "end": 366.748,
+ "text": "think"
+ },
+ {
+ "id": 946,
+ "start": 366.748,
+ "end": 366.908,
+ "text": "we’ve"
+ },
+ {
+ "id": 947,
+ "start": 366.908,
+ "end": 367.188,
+ "text": "also"
+ },
+ {
+ "id": 948,
+ "start": 367.188,
+ "end": 367.428,
+ "text": "really"
+ },
+ {
+ "id": 949,
+ "start": 367.428,
+ "end": 367.718,
+ "text": "learned"
+ },
+ {
+ "id": 950,
+ "start": 367.718,
+ "end": 367.928,
+ "text": "from"
+ },
+ {
+ "id": 951,
+ "start": 367.928,
+ "end": 368.058,
+ "text": "our"
+ },
+ {
+ "id": 952,
+ "start": 368.96799999999996,
+ "end": 370.4480000000003,
+ "text": "mistakes,"
+ },
+ {
+ "id": 953,
+ "start": 370.008,
+ "end": 372.838,
+ "text": "and"
+ },
+ {
+ "id": 954,
+ "start": 372.838,
+ "end": 372.978,
+ "text": "I"
+ },
+ {
+ "id": 955,
+ "start": 372.978,
+ "end": 373.298,
+ "text": "think"
+ },
+ {
+ "id": 956,
+ "start": 373.298,
+ "end": 373.908,
+ "text": "that"
+ },
+ {
+ "id": 957,
+ "start": 373.908,
+ "end": 374.168,
+ "text": "one"
+ },
+ {
+ "id": 958,
+ "start": 374.168,
+ "end": 374.508,
+ "text": "way"
+ },
+ {
+ "id": 959,
+ "start": 374.508,
+ "end": 375.258,
+ "text": "that"
+ },
+ {
+ "id": 960,
+ "start": 375.258,
+ "end": 375.548,
+ "text": "people"
+ },
+ {
+ "id": 961,
+ "start": 375.548,
+ "end": 375.638,
+ "text": "have"
+ },
+ {
+ "id": 962,
+ "start": 375.90799999999996,
+ "end": 376.123,
+ "text": "characterized"
+ },
+ {
+ "id": 963,
+ "start": 376.268,
+ "end": 376.608,
+ "text": "Mark"
+ },
+ {
+ "id": 964,
+ "start": 376.608,
+ "end": 377.198,
+ "text": "is"
+ },
+ {
+ "id": 965,
+ "start": 377.198,
+ "end": 377.308,
+ "text": "as"
+ },
+ {
+ "id": 966,
+ "start": 377.308,
+ "end": 377.378,
+ "text": "a"
+ },
+ {
+ "id": 967,
+ "start": 377.88300000000004,
+ "end": 377.968,
+ "text": "“learn-it-all.”"
+ },
+ {
+ "id": 968,
+ "start": 378.458,
+ "end": 378.558,
+ "text": "He’s"
+ },
+ {
+ "id": 969,
+ "start": 378.558,
+ "end": 378.728,
+ "text": "not"
+ },
+ {
+ "id": 970,
+ "start": 378.728,
+ "end": 378.768,
+ "text": "a"
+ },
+ {
+ "id": 971,
+ "start": 380.24800000000005,
+ "end": 380.38800000000015,
+ "text": "know-it-all."
+ },
+ {
+ "id": 972,
+ "start": 381.768,
+ "end": 382.008,
+ "text": "We"
+ },
+ {
+ "id": 973,
+ "start": 382.008,
+ "end": 382.158,
+ "text": "didn’t"
+ },
+ {
+ "id": 974,
+ "start": 382.158,
+ "end": 382.298,
+ "text": "know"
+ },
+ {
+ "id": 975,
+ "start": 382.298,
+ "end": 382.798,
+ "text": "everything"
+ },
+ {
+ "id": 976,
+ "start": 382.798,
+ "end": 382.998,
+ "text": "from"
+ },
+ {
+ "id": 977,
+ "start": 382.998,
+ "end": 383.088,
+ "text": "the"
+ },
+ {
+ "id": 978,
+ "start": 383.088,
+ "end": 383.478,
+ "text": "beginning,"
+ },
+ {
+ "id": 979,
+ "start": 383.478,
+ "end": 383.618,
+ "text": "but"
+ },
+ {
+ "id": 980,
+ "start": 383.618,
+ "end": 383.758,
+ "text": "he"
+ },
+ {
+ "id": 981,
+ "start": 383.758,
+ "end": 383.908,
+ "text": "is"
+ },
+ {
+ "id": 982,
+ "start": 383.908,
+ "end": 383.978,
+ "text": "a"
+ },
+ {
+ "id": 983,
+ "start": 384.208,
+ "end": 384.293,
+ "text": "learn-it-all,"
+ },
+ {
+ "id": 984,
+ "start": 384.508,
+ "end": 384.608,
+ "text": "and"
+ },
+ {
+ "id": 985,
+ "start": 384.608,
+ "end": 384.648,
+ "text": "I"
+ },
+ {
+ "id": 986,
+ "start": 384.648,
+ "end": 384.888,
+ "text": "think"
+ },
+ {
+ "id": 987,
+ "start": 384.888,
+ "end": 385.108,
+ "text": "that’s"
+ },
+ {
+ "id": 988,
+ "start": 385.4546666666667,
+ "end": 385.638,
+ "text": "true"
+ },
+ {
+ "id": 989,
+ "start": 386.0213333333334,
+ "end": 386.16799999999995,
+ "text": "of"
+ },
+ {
+ "id": 990,
+ "start": 386.588,
+ "end": 386.698,
+ "text": "the"
+ },
+ {
+ "id": 991,
+ "start": 386.698,
+ "end": 387.188,
+ "text": "company"
+ },
+ {
+ "id": 992,
+ "start": 387.188,
+ "end": 387.398,
+ "text": "as"
+ },
+ {
+ "id": 993,
+ "start": 387.398,
+ "end": 388.178,
+ "text": "well,"
+ },
+ {
+ "id": 994,
+ "start": 388.178,
+ "end": 390.038,
+ "text": "is"
+ },
+ {
+ "id": 995,
+ "start": 390.038,
+ "end": 390.628,
+ "text": "that"
+ },
+ {
+ "id": 996,
+ "start": 390.628,
+ "end": 391.018,
+ "text": "once"
+ },
+ {
+ "id": 997,
+ "start": 391.018,
+ "end": 391.208,
+ "text": "we"
+ },
+ {
+ "id": 998,
+ "start": 391.208,
+ "end": 391.668,
+ "text": "know"
+ },
+ {
+ "id": 999,
+ "start": 391.668,
+ "end": 391.828,
+ "text": "that"
+ },
+ {
+ "id": 1000,
+ "start": 391.828,
+ "end": 391.988,
+ "text": "this"
+ },
+ {
+ "id": 1001,
+ "start": 391.988,
+ "end": 392.078,
+ "text": "is"
+ },
+ {
+ "id": 1002,
+ "start": 392.078,
+ "end": 392.148,
+ "text": "a"
+ },
+ {
+ "id": 1003,
+ "start": 392.72300000000007,
+ "end": 392.923,
+ "text": "problem,"
+ },
+ {
+ "id": 1004,
+ "start": 393.368,
+ "end": 393.698,
+ "text": "we’ve"
+ },
+ {
+ "id": 1005,
+ "start": 393.698,
+ "end": 394.088,
+ "text": "shifted"
+ },
+ {
+ "id": 1006,
+ "start": 394.088,
+ "end": 394.138,
+ "text": "a"
+ },
+ {
+ "id": 1007,
+ "start": 394.138,
+ "end": 394.348,
+ "text": "lot"
+ },
+ {
+ "id": 1008,
+ "start": 394.348,
+ "end": 394.468,
+ "text": "of"
+ },
+ {
+ "id": 1009,
+ "start": 394.468,
+ "end": 395.258,
+ "text": "people"
+ },
+ {
+ "id": 1010,
+ "start": 395.258,
+ "end": 395.838,
+ "text": "and"
+ },
+ {
+ "id": 1011,
+ "start": 395.838,
+ "end": 396.788,
+ "text": "technology"
+ },
+ {
+ "id": 1012,
+ "start": 396.788,
+ "end": 397.438,
+ "text": "to"
+ },
+ {
+ "id": 1013,
+ "start": 397.438,
+ "end": 397.868,
+ "text": "focus"
+ },
+ {
+ "id": 1014,
+ "start": 397.868,
+ "end": 398.038,
+ "text": "on"
+ },
+ {
+ "id": 1015,
+ "start": 398.038,
+ "end": 398.278,
+ "text": "it."
+ },
+ {
+ "id": 1016,
+ "start": 398.71466666666663,
+ "end": 398.97466666666674,
+ "text": "How"
+ },
+ {
+ "id": 1017,
+ "start": 399.39133333333336,
+ "end": 399.67133333333345,
+ "text": "has"
+ },
+ {
+ "id": 1018,
+ "start": 400.068,
+ "end": 400.368,
+ "text": "Mark"
+ },
+ {
+ "id": 1019,
+ "start": 400.368,
+ "end": 401.378,
+ "text": "changed?"
+ },
+ {
+ "id": 1020,
+ "start": 401.378,
+ "end": 401.818,
+ "text": "You’ve"
+ },
+ {
+ "id": 1021,
+ "start": 401.818,
+ "end": 402.028,
+ "text": "known"
+ },
+ {
+ "id": 1022,
+ "start": 402.028,
+ "end": 402.188,
+ "text": "him"
+ },
+ {
+ "id": 1023,
+ "start": 402.188,
+ "end": 402.328,
+ "text": "for"
+ },
+ {
+ "id": 1024,
+ "start": 402.328,
+ "end": 402.378,
+ "text": "a"
+ },
+ {
+ "id": 1025,
+ "start": 402.378,
+ "end": 402.578,
+ "text": "very"
+ },
+ {
+ "id": 1026,
+ "start": 402.578,
+ "end": 402.768,
+ "text": "long"
+ },
+ {
+ "id": 1027,
+ "start": 402.768,
+ "end": 403.038,
+ "text": "time"
+ },
+ {
+ "id": 1028,
+ "start": 403.038,
+ "end": 403.128,
+ "text": "at"
+ },
+ {
+ "id": 1029,
+ "start": 403.128,
+ "end": 403.268,
+ "text": "this"
+ },
+ {
+ "id": 1030,
+ "start": 403.35299999999995,
+ "end": 403.47799999999995,
+ "text": "point,"
+ },
+ {
+ "id": 1031,
+ "start": 403.578,
+ "end": 403.688,
+ "text": "but"
+ },
+ {
+ "id": 1032,
+ "start": 403.68466666666666,
+ "end": 403.8113333333333,
+ "text": "how"
+ },
+ {
+ "id": 1033,
+ "start": 403.79133333333334,
+ "end": 403.93466666666666,
+ "text": "has"
+ },
+ {
+ "id": 1034,
+ "start": 403.898,
+ "end": 404.058,
+ "text": "he"
+ },
+ {
+ "id": 1035,
+ "start": 404.058,
+ "end": 404.508,
+ "text": "changed"
+ },
+ {
+ "id": 1036,
+ "start": 404.508,
+ "end": 404.628,
+ "text": "as"
+ },
+ {
+ "id": 1037,
+ "start": 404.628,
+ "end": 404.698,
+ "text": "a"
+ },
+ {
+ "id": 1038,
+ "start": 404.698,
+ "end": 405.128,
+ "text": "result"
+ },
+ {
+ "id": 1039,
+ "start": 405.128,
+ "end": 405.598,
+ "text": "of"
+ },
+ {
+ "id": 1040,
+ "start": 405.598,
+ "end": 405.848,
+ "text": "what’s"
+ },
+ {
+ "id": 1041,
+ "start": 405.848,
+ "end": 406.198,
+ "text": "happened"
+ },
+ {
+ "id": 1042,
+ "start": 406.198,
+ "end": 406.348,
+ "text": "over"
+ },
+ {
+ "id": 1043,
+ "start": 406.348,
+ "end": 406.458,
+ "text": "the"
+ },
+ {
+ "id": 1044,
+ "start": 406.458,
+ "end": 406.728,
+ "text": "past"
+ },
+ {
+ "id": 1045,
+ "start": 406.728,
+ "end": 406.948,
+ "text": "couple"
+ },
+ {
+ "id": 1046,
+ "start": 406.948,
+ "end": 407.008,
+ "text": "of"
+ },
+ {
+ "id": 1047,
+ "start": 407.008,
+ "end": 409.628,
+ "text": "years?"
+ },
+ {
+ "id": 1048,
+ "start": 407.388,
+ "end": 410.258,
+ "text": "Mark"
+ },
+ {
+ "id": 1049,
+ "start": 409.048,
+ "end": 410.718,
+ "text": "has—I"
+ },
+ {
+ "id": 1050,
+ "start": 410.708,
+ "end": 411.178,
+ "text": "mean,"
+ },
+ {
+ "id": 1051,
+ "start": 411.178,
+ "end": 411.538,
+ "text": "I"
+ },
+ {
+ "id": 1052,
+ "start": 411.538,
+ "end": 411.788,
+ "text": "called"
+ },
+ {
+ "id": 1053,
+ "start": 411.788,
+ "end": 411.888,
+ "text": "him"
+ },
+ {
+ "id": 1054,
+ "start": 411.888,
+ "end": 411.968,
+ "text": "a"
+ },
+ {
+ "id": 1055,
+ "start": 412.293,
+ "end": 412.37800000000004,
+ "text": "learn-it-all."
+ },
+ {
+ "id": 1056,
+ "start": 412.698,
+ "end": 412.788,
+ "text": "I"
+ },
+ {
+ "id": 1057,
+ "start": 412.788,
+ "end": 413.028,
+ "text": "think"
+ },
+ {
+ "id": 1058,
+ "start": 413.028,
+ "end": 413.228,
+ "text": "one"
+ },
+ {
+ "id": 1059,
+ "start": 413.228,
+ "end": 413.888,
+ "text": "really"
+ },
+ {
+ "id": 1060,
+ "start": 413.888,
+ "end": 414.128,
+ "text": "good"
+ },
+ {
+ "id": 1061,
+ "start": 414.128,
+ "end": 414.768,
+ "text": "example"
+ },
+ {
+ "id": 1062,
+ "start": 414.768,
+ "end": 415.948,
+ "text": "is"
+ },
+ {
+ "id": 1063,
+ "start": 415.948,
+ "end": 416.188,
+ "text": "his"
+ },
+ {
+ "id": 1064,
+ "start": 416.188,
+ "end": 416.488,
+ "text": "yearly"
+ },
+ {
+ "id": 1065,
+ "start": 416.488,
+ "end": 417.518,
+ "text": "challenge."
+ },
+ {
+ "id": 1066,
+ "start": 417.518,
+ "end": 417.658,
+ "text": "In"
+ },
+ {
+ "id": 1067,
+ "start": 417.658,
+ "end": 417.748,
+ "text": "the"
+ },
+ {
+ "id": 1068,
+ "start": 417.748,
+ "end": 418.188,
+ "text": "past,"
+ },
+ {
+ "id": 1069,
+ "start": 418.188,
+ "end": 418.338,
+ "text": "his"
+ },
+ {
+ "id": 1070,
+ "start": 418.338,
+ "end": 418.628,
+ "text": "yearly"
+ },
+ {
+ "id": 1071,
+ "start": 418.628,
+ "end": 419.128,
+ "text": "challenge"
+ },
+ {
+ "id": 1072,
+ "start": 419.128,
+ "end": 419.298,
+ "text": "one"
+ },
+ {
+ "id": 1073,
+ "start": 419.298,
+ "end": 419.558,
+ "text": "year"
+ },
+ {
+ "id": 1074,
+ "start": 419.558,
+ "end": 419.698,
+ "text": "was"
+ },
+ {
+ "id": 1075,
+ "start": 419.698,
+ "end": 419.808,
+ "text": "to"
+ },
+ {
+ "id": 1076,
+ "start": 419.808,
+ "end": 419.998,
+ "text": "learn"
+ },
+ {
+ "id": 1077,
+ "start": 419.998,
+ "end": 420.938,
+ "text": "Chinese."
+ },
+ {
+ "id": 1078,
+ "start": 420.938,
+ "end": 421.648,
+ "text": "Another"
+ },
+ {
+ "id": 1079,
+ "start": 421.648,
+ "end": 422.138,
+ "text": "year"
+ },
+ {
+ "id": 1080,
+ "start": 421.89300000000003,
+ "end": 422.328,
+ "text": "it"
+ },
+ {
+ "id": 1081,
+ "start": 422.138,
+ "end": 422.518,
+ "text": "was"
+ },
+ {
+ "id": 1082,
+ "start": 422.518,
+ "end": 422.838,
+ "text": "to"
+ },
+ {
+ "id": 1083,
+ "start": 422.838,
+ "end": 423.038,
+ "text": "wear"
+ },
+ {
+ "id": 1084,
+ "start": 423.038,
+ "end": 423.118,
+ "text": "a"
+ },
+ {
+ "id": 1085,
+ "start": 423.118,
+ "end": 423.618,
+ "text": "tie"
+ },
+ {
+ "id": 1086,
+ "start": 423.618,
+ "end": 424.018,
+ "text": "every"
+ },
+ {
+ "id": 1087,
+ "start": 424.018,
+ "end": 424.408,
+ "text": "day"
+ },
+ {
+ "id": 1088,
+ "start": 424.408,
+ "end": 425.078,
+ "text": "because"
+ },
+ {
+ "id": 1089,
+ "start": 425.078,
+ "end": 425.548,
+ "text": "it’s"
+ },
+ {
+ "id": 1090,
+ "start": 425.548,
+ "end": 425.658,
+ "text": "a"
+ },
+ {
+ "id": 1091,
+ "start": 425.658,
+ "end": 426.228,
+ "text": "serious"
+ },
+ {
+ "id": 1092,
+ "start": 426.228,
+ "end": 426.478,
+ "text": "year."
+ },
+ {
+ "id": 1093,
+ "start": 426.478,
+ "end": 426.598,
+ "text": "That"
+ },
+ {
+ "id": 1094,
+ "start": 426.598,
+ "end": 426.738,
+ "text": "was"
+ },
+ {
+ "id": 1095,
+ "start": 426.738,
+ "end": 426.878,
+ "text": "like"
+ },
+ {
+ "id": 1096,
+ "start": 426.878,
+ "end": 426.938,
+ "text": "a"
+ },
+ {
+ "id": 1097,
+ "start": 426.938,
+ "end": 427.458,
+ "text": "serious"
+ },
+ {
+ "id": 1098,
+ "start": 427.458,
+ "end": 428.768,
+ "text": "year."
+ },
+ {
+ "id": 1099,
+ "start": 428.768,
+ "end": 429.038,
+ "text": "His"
+ },
+ {
+ "id": 1100,
+ "start": 429.038,
+ "end": 429.458,
+ "text": "challenge"
+ },
+ {
+ "id": 1101,
+ "start": 429.458,
+ "end": 429.728,
+ "text": "this"
+ },
+ {
+ "id": 1102,
+ "start": 429.728,
+ "end": 430.268,
+ "text": "year"
+ },
+ {
+ "id": 1103,
+ "start": 430.268,
+ "end": 430.588,
+ "text": "was"
+ },
+ {
+ "id": 1104,
+ "start": 430.588,
+ "end": 430.798,
+ "text": "to"
+ },
+ {
+ "id": 1105,
+ "start": 430.798,
+ "end": 431.168,
+ "text": "really"
+ },
+ {
+ "id": 1106,
+ "start": 431.168,
+ "end": 431.608,
+ "text": "focus"
+ },
+ {
+ "id": 1107,
+ "start": 431.608,
+ "end": 431.728,
+ "text": "on"
+ },
+ {
+ "id": 1108,
+ "start": 431.728,
+ "end": 432.308,
+ "text": "improving"
+ },
+ {
+ "id": 1109,
+ "start": 432.308,
+ "end": 432.698,
+ "text": "safety"
+ },
+ {
+ "id": 1110,
+ "start": 432.698,
+ "end": 432.828,
+ "text": "and"
+ },
+ {
+ "id": 1111,
+ "start": 432.828,
+ "end": 433.338,
+ "text": "security"
+ },
+ {
+ "id": 1112,
+ "start": 433.338,
+ "end": 433.478,
+ "text": "on"
+ },
+ {
+ "id": 1113,
+ "start": 433.88133333333343,
+ "end": 434.1380000000001,
+ "text": "Facebook."
+ },
+ {
+ "id": 1114,
+ "start": 434.4246666666667,
+ "end": 434.79800000000006,
+ "text": "It"
+ },
+ {
+ "id": 1115,
+ "start": 434.968,
+ "end": 435.458,
+ "text": "gives"
+ },
+ {
+ "id": 1116,
+ "start": 435.458,
+ "end": 435.558,
+ "text": "you"
+ },
+ {
+ "id": 1117,
+ "start": 435.558,
+ "end": 435.608,
+ "text": "a"
+ },
+ {
+ "id": 1118,
+ "start": 435.608,
+ "end": 436.368,
+ "text": "sense"
+ },
+ {
+ "id": 1119,
+ "start": 436.368,
+ "end": 436.528,
+ "text": "of"
+ },
+ {
+ "id": 1120,
+ "start": 436.528,
+ "end": 436.848,
+ "text": "how"
+ },
+ {
+ "id": 1121,
+ "start": 436.848,
+ "end": 437.118,
+ "text": "he’s"
+ },
+ {
+ "id": 1122,
+ "start": 437.298,
+ "end": 437.488,
+ "text": "changed"
+ },
+ {
+ "id": 1123,
+ "start": 437.748,
+ "end": 437.858,
+ "text": "the"
+ },
+ {
+ "id": 1124,
+ "start": 437.858,
+ "end": 438.458,
+ "text": "gravity"
+ },
+ {
+ "id": 1125,
+ "start": 438.458,
+ "end": 438.578,
+ "text": "of"
+ },
+ {
+ "id": 1126,
+ "start": 438.578,
+ "end": 438.798,
+ "text": "these"
+ },
+ {
+ "id": 1127,
+ "start": 438.798,
+ "end": 439.608,
+ "text": "challenges,"
+ },
+ {
+ "id": 1128,
+ "start": 439.608,
+ "end": 439.718,
+ "text": "and"
+ },
+ {
+ "id": 1129,
+ "start": 439.718,
+ "end": 439.878,
+ "text": "these"
+ },
+ {
+ "id": 1130,
+ "start": 439.878,
+ "end": 440.818,
+ "text": "responsibilities"
+ },
+ {
+ "id": 1131,
+ "start": 440.4579999999999,
+ "end": 441.038,
+ "text": "[have]"
+ },
+ {
+ "id": 1132,
+ "start": 441.038,
+ "end": 441.258,
+ "text": "really"
+ },
+ {
+ "id": 1133,
+ "start": 441.258,
+ "end": 441.838,
+ "text": "grown"
+ },
+ {
+ "id": 1134,
+ "start": 441.838,
+ "end": 442.248,
+ "text": "from,"
+ },
+ {
+ "id": 1135,
+ "start": 442.248,
+ "end": 442.648,
+ "text": "say,"
+ },
+ {
+ "id": 1136,
+ "start": 442.648,
+ "end": 442.968,
+ "text": "wearing"
+ },
+ {
+ "id": 1137,
+ "start": 442.968,
+ "end": 443.018,
+ "text": "a"
+ },
+ {
+ "id": 1138,
+ "start": 443.398,
+ "end": 443.583,
+ "text": "tie,"
+ },
+ {
+ "id": 1139,
+ "start": 443.828,
+ "end": 444.148,
+ "text": "you"
+ },
+ {
+ "id": 1140,
+ "start": 444.148,
+ "end": 444.438,
+ "text": "know"
+ },
+ {
+ "id": 1141,
+ "start": 444.223,
+ "end": 444.513,
+ "text": "when"
+ },
+ {
+ "id": 1142,
+ "start": 444.298,
+ "end": 444.58799999999997,
+ "text": "we"
+ },
+ {
+ "id": 1143,
+ "start": 444.373,
+ "end": 444.663,
+ "text": "were"
+ },
+ {
+ "id": 1144,
+ "start": 444.448,
+ "end": 444.738,
+ "text": "just"
+ },
+ {
+ "id": 1145,
+ "start": 444.738,
+ "end": 444.788,
+ "text": "a"
+ },
+ {
+ "id": 1146,
+ "start": 444.788,
+ "end": 445.168,
+ "text": "college"
+ },
+ {
+ "id": 1147,
+ "start": 445.168,
+ "end": 445.468,
+ "text": "site,"
+ },
+ {
+ "id": 1148,
+ "start": 445.918,
+ "end": 446.27799999999996,
+ "text": "to"
+ },
+ {
+ "id": 1149,
+ "start": 446.668,
+ "end": 447.088,
+ "text": "making"
+ },
+ {
+ "id": 1150,
+ "start": 447.088,
+ "end": 447.538,
+ "text": "sure"
+ },
+ {
+ "id": 1151,
+ "start": 447.538,
+ "end": 447.768,
+ "text": "that"
+ },
+ {
+ "id": 1152,
+ "start": 447.768,
+ "end": 448.468,
+ "text": "Facebook"
+ },
+ {
+ "id": 1153,
+ "start": 448.468,
+ "end": 449.128,
+ "text": "is"
+ },
+ {
+ "id": 1154,
+ "start": 449.128,
+ "end": 449.198,
+ "text": "a"
+ },
+ {
+ "id": 1155,
+ "start": 449.198,
+ "end": 449.448,
+ "text": "safe"
+ },
+ {
+ "id": 1156,
+ "start": 449.448,
+ "end": 449.548,
+ "text": "and"
+ },
+ {
+ "id": 1157,
+ "start": 449.548,
+ "end": 449.868,
+ "text": "secure"
+ },
+ {
+ "id": 1158,
+ "start": 450.1980000000001,
+ "end": 450.96799999999985,
+ "text": "place."
+ },
+ {
+ "id": 1159,
+ "start": 450.848,
+ "end": 452.068,
+ "text": "And"
+ },
+ {
+ "id": 1160,
+ "start": 452.068,
+ "end": 452.248,
+ "text": "in"
+ },
+ {
+ "id": 1161,
+ "start": 452.248,
+ "end": 452.618,
+ "text": "terms"
+ },
+ {
+ "id": 1162,
+ "start": 452.618,
+ "end": 453.698,
+ "text": "of"
+ },
+ {
+ "id": 1163,
+ "start": 453.698,
+ "end": 454.588,
+ "text": "responsibility,"
+ },
+ {
+ "id": 1164,
+ "start": 454.588,
+ "end": 454.858,
+ "text": "because"
+ },
+ {
+ "id": 1165,
+ "start": 454.858,
+ "end": 455.008,
+ "text": "it’s"
+ },
+ {
+ "id": 1166,
+ "start": 455.008,
+ "end": 455.078,
+ "text": "a"
+ },
+ {
+ "id": 1167,
+ "start": 455.078,
+ "end": 455.568,
+ "text": "term"
+ },
+ {
+ "id": 1168,
+ "start": 455.568,
+ "end": 455.778,
+ "text": "we’ve"
+ },
+ {
+ "id": 1169,
+ "start": 455.778,
+ "end": 455.958,
+ "text": "heard"
+ },
+ {
+ "id": 1170,
+ "start": 455.958,
+ "end": 456.008,
+ "text": "a"
+ },
+ {
+ "id": 1171,
+ "start": 456.008,
+ "end": 456.328,
+ "text": "lot"
+ },
+ {
+ "id": 1172,
+ "start": 456.328,
+ "end": 456.528,
+ "text": "from"
+ },
+ {
+ "id": 1173,
+ "start": 456.528,
+ "end": 456.958,
+ "text": "Mark,"
+ },
+ {
+ "id": 1174,
+ "start": 456.958,
+ "end": 457.838,
+ "text": "you’ve"
+ },
+ {
+ "id": 1175,
+ "start": 457.838,
+ "end": 458.188,
+ "text": "mentioned"
+ },
+ {
+ "id": 1176,
+ "start": 459.48800000000006,
+ "end": 459.7579999999998,
+ "text": "responsibility,"
+ },
+ {
+ "id": 1177,
+ "start": 461.138,
+ "end": 461.328,
+ "text": "what"
+ },
+ {
+ "id": 1178,
+ "start": 461.328,
+ "end": 461.638,
+ "text": "about"
+ },
+ {
+ "id": 1179,
+ "start": 461.638,
+ "end": 462.508,
+ "text": "accountability,"
+ },
+ {
+ "id": 1180,
+ "start": 462.2713333333333,
+ "end": 462.89799999999997,
+ "text": "right?"
+ },
+ {
+ "id": 1181,
+ "start": 462.9046666666666,
+ "end": 463.28799999999995,
+ "text": "Did"
+ },
+ {
+ "id": 1182,
+ "start": 463.538,
+ "end": 463.678,
+ "text": "you"
+ },
+ {
+ "id": 1183,
+ "start": 463.678,
+ "end": 463.878,
+ "text": "see"
+ },
+ {
+ "id": 1184,
+ "start": 463.878,
+ "end": 463.938,
+ "text": "a"
+ },
+ {
+ "id": 1185,
+ "start": 463.938,
+ "end": 464.358,
+ "text": "difference"
+ },
+ {
+ "id": 1186,
+ "start": 464.358,
+ "end": 464.808,
+ "text": "between"
+ },
+ {
+ "id": 1187,
+ "start": 464.808,
+ "end": 465.678,
+ "text": "responsibility"
+ },
+ {
+ "id": 1188,
+ "start": 465.678,
+ "end": 465.798,
+ "text": "and"
+ },
+ {
+ "id": 1189,
+ "start": 465.798,
+ "end": 466.558,
+ "text": "accountability"
+ },
+ {
+ "id": 1190,
+ "start": 466.558,
+ "end": 466.668,
+ "text": "in"
+ },
+ {
+ "id": 1191,
+ "start": 466.668,
+ "end": 466.988,
+ "text": "terms"
+ },
+ {
+ "id": 1192,
+ "start": 466.988,
+ "end": 467.968,
+ "text": "of"
+ },
+ {
+ "id": 1193,
+ "start": 467.968,
+ "end": 469.708,
+ "text": "this"
+ },
+ {
+ "id": 1194,
+ "start": 469.708,
+ "end": 470.418,
+ "text": "enormously"
+ },
+ {
+ "id": 1195,
+ "start": 470.418,
+ "end": 470.818,
+ "text": "powerful"
+ },
+ {
+ "id": 1196,
+ "start": 470.818,
+ "end": 471.778,
+ "text": "company,"
+ },
+ {
+ "id": 1197,
+ "start": 471.778,
+ "end": 472.678,
+ "text": "huge"
+ },
+ {
+ "id": 1198,
+ "start": 472.678,
+ "end": 473.048,
+ "text": "global"
+ },
+ {
+ "id": 1199,
+ "start": 473.048,
+ "end": 473.748,
+ "text": "reach,"
+ },
+ {
+ "id": 1200,
+ "start": 473.748,
+ "end": 474.398,
+ "text": "tremendous"
+ },
+ {
+ "id": 1201,
+ "start": 474.398,
+ "end": 474.928,
+ "text": "impact"
+ },
+ {
+ "id": 1202,
+ "start": 474.928,
+ "end": 475.148,
+ "text": "on"
+ },
+ {
+ "id": 1203,
+ "start": 475.348,
+ "end": 475.528,
+ "text": "societies"
+ },
+ {
+ "id": 1204,
+ "start": 475.768,
+ "end": 475.908,
+ "text": "all"
+ },
+ {
+ "id": 1205,
+ "start": 475.908,
+ "end": 476.168,
+ "text": "around"
+ },
+ {
+ "id": 1206,
+ "start": 476.168,
+ "end": 476.238,
+ "text": "the"
+ },
+ {
+ "id": 1207,
+ "start": 476.238,
+ "end": 477.438,
+ "text": "globe?"
+ },
+ {
+ "id": 1208,
+ "start": 477.438,
+ "end": 477.938,
+ "text": "Who"
+ },
+ {
+ "id": 1209,
+ "start": 477.938,
+ "end": 478.138,
+ "text": "can"
+ },
+ {
+ "id": 1210,
+ "start": 478.138,
+ "end": 478.478,
+ "text": "hold"
+ },
+ {
+ "id": 1211,
+ "start": 478.478,
+ "end": 478.988,
+ "text": "Facebook"
+ },
+ {
+ "id": 1212,
+ "start": 478.988,
+ "end": 479.968,
+ "text": "accountable"
+ },
+ {
+ "id": 1213,
+ "start": 479.968,
+ "end": 480.198,
+ "text": "for"
+ },
+ {
+ "id": 1214,
+ "start": 480.198,
+ "end": 480.368,
+ "text": "what"
+ },
+ {
+ "id": 1215,
+ "start": 480.368,
+ "end": 480.468,
+ "text": "it"
+ },
+ {
+ "id": 1216,
+ "start": 480.468,
+ "end": 483.088,
+ "text": "does?"
+ },
+ {
+ "id": 1217,
+ "start": 483.088,
+ "end": 483.158,
+ "text": "I"
+ },
+ {
+ "id": 1218,
+ "start": 483.158,
+ "end": 483.478,
+ "text": "think"
+ },
+ {
+ "id": 1219,
+ "start": 483.478,
+ "end": 483.798,
+ "text": "we"
+ },
+ {
+ "id": 1220,
+ "start": 483.798,
+ "end": 484.068,
+ "text": "all"
+ },
+ {
+ "id": 1221,
+ "start": 484.068,
+ "end": 484.858,
+ "text": "acknowledge"
+ },
+ {
+ "id": 1222,
+ "start": 484.858,
+ "end": 485.038,
+ "text": "and"
+ },
+ {
+ "id": 1223,
+ "start": 485.038,
+ "end": 485.878,
+ "text": "understand"
+ },
+ {
+ "id": 1224,
+ "start": 485.878,
+ "end": 486.088,
+ "text": "how"
+ },
+ {
+ "id": 1225,
+ "start": 486.088,
+ "end": 486.678,
+ "text": "much"
+ },
+ {
+ "id": 1226,
+ "start": 486.678,
+ "end": 486.798,
+ "text": "of"
+ },
+ {
+ "id": 1227,
+ "start": 486.798,
+ "end": 486.898,
+ "text": "a"
+ },
+ {
+ "id": 1228,
+ "start": 486.898,
+ "end": 487.668,
+ "text": "privilege"
+ },
+ {
+ "id": 1229,
+ "start": 487.668,
+ "end": 487.808,
+ "text": "it"
+ },
+ {
+ "id": 1230,
+ "start": 487.808,
+ "end": 488.881,
+ "text": "is"
+ },
+ {
+ "id": 1231,
+ "start": 488.881,
+ "end": 489.131,
+ "text": "to"
+ },
+ {
+ "id": 1232,
+ "start": 489.131,
+ "end": 489.431,
+ "text": "be"
+ },
+ {
+ "id": 1233,
+ "start": 489.431,
+ "end": 489.661,
+ "text": "such"
+ },
+ {
+ "id": 1234,
+ "start": 489.661,
+ "end": 489.721,
+ "text": "an"
+ },
+ {
+ "id": 1235,
+ "start": 489.721,
+ "end": 490.031,
+ "text": "important"
+ },
+ {
+ "id": 1236,
+ "start": 490.031,
+ "end": 490.261,
+ "text": "part"
+ },
+ {
+ "id": 1237,
+ "start": 490.261,
+ "end": 490.331,
+ "text": "in"
+ },
+ {
+ "id": 1238,
+ "start": 490.331,
+ "end": 490.631,
+ "text": "people’s"
+ },
+ {
+ "id": 1239,
+ "start": 491.17600000000004,
+ "end": 491.496,
+ "text": "lives,"
+ },
+ {
+ "id": 1240,
+ "start": 492.021,
+ "end": 492.361,
+ "text": "and"
+ },
+ {
+ "id": 1241,
+ "start": 492.361,
+ "end": 492.611,
+ "text": "that"
+ },
+ {
+ "id": 1242,
+ "start": 492.611,
+ "end": 492.851,
+ "text": "is"
+ },
+ {
+ "id": 1243,
+ "start": 492.851,
+ "end": 493.421,
+ "text": "why"
+ },
+ {
+ "id": 1244,
+ "start": 493.421,
+ "end": 493.681,
+ "text": "we"
+ },
+ {
+ "id": 1245,
+ "start": 493.681,
+ "end": 494.631,
+ "text": "feel"
+ },
+ {
+ "id": 1246,
+ "start": 494.631,
+ "end": 495.181,
+ "text": "incredibly"
+ },
+ {
+ "id": 1247,
+ "start": 495.181,
+ "end": 496.041,
+ "text": "responsible"
+ },
+ {
+ "id": 1248,
+ "start": 496.041,
+ "end": 496.291,
+ "text": "for"
+ },
+ {
+ "id": 1249,
+ "start": 496.291,
+ "end": 496.581,
+ "text": "making"
+ },
+ {
+ "id": 1250,
+ "start": 496.581,
+ "end": 496.781,
+ "text": "sure"
+ },
+ {
+ "id": 1251,
+ "start": 496.781,
+ "end": 496.941,
+ "text": "that"
+ },
+ {
+ "id": 1252,
+ "start": 496.941,
+ "end": 497.331,
+ "text": "Facebook"
+ },
+ {
+ "id": 1253,
+ "start": 497.331,
+ "end": 497.481,
+ "text": "is"
+ },
+ {
+ "id": 1254,
+ "start": 497.481,
+ "end": 497.731,
+ "text": "used"
+ },
+ {
+ "id": 1255,
+ "start": 497.731,
+ "end": 497.911,
+ "text": "for"
+ },
+ {
+ "id": 1256,
+ "start": 497.911,
+ "end": 498.841,
+ "text": "good"
+ },
+ {
+ "id": 1257,
+ "start": 498.841,
+ "end": 499.281,
+ "text": "and"
+ },
+ {
+ "id": 1258,
+ "start": 499.281,
+ "end": 499.491,
+ "text": "not"
+ },
+ {
+ "id": 1259,
+ "start": 499.491,
+ "end": 501.321,
+ "text": "bad."
+ },
+ {
+ "id": 1260,
+ "start": 501.321,
+ "end": 501.461,
+ "text": "In"
+ },
+ {
+ "id": 1261,
+ "start": 501.461,
+ "end": 501.811,
+ "text": "terms"
+ },
+ {
+ "id": 1262,
+ "start": 501.811,
+ "end": 501.891,
+ "text": "of"
+ },
+ {
+ "id": 1263,
+ "start": 501.891,
+ "end": 503.361,
+ "text": "accountability,"
+ },
+ {
+ "id": 1264,
+ "start": 503.361,
+ "end": 503.461,
+ "text": "a"
+ },
+ {
+ "id": 1265,
+ "start": 503.461,
+ "end": 503.651,
+ "text": "lot"
+ },
+ {
+ "id": 1266,
+ "start": 503.651,
+ "end": 503.711,
+ "text": "of"
+ },
+ {
+ "id": 1267,
+ "start": 503.711,
+ "end": 504.541,
+ "text": "times"
+ },
+ {
+ "id": 1268,
+ "start": 504.541,
+ "end": 504.681,
+ "text": "we"
+ },
+ {
+ "id": 1269,
+ "start": 504.681,
+ "end": 504.901,
+ "text": "can’t"
+ },
+ {
+ "id": 1270,
+ "start": 504.901,
+ "end": 504.991,
+ "text": "do"
+ },
+ {
+ "id": 1271,
+ "start": 504.991,
+ "end": 505.151,
+ "text": "this"
+ },
+ {
+ "id": 1272,
+ "start": 505.151,
+ "end": 505.271,
+ "text": "on"
+ },
+ {
+ "id": 1273,
+ "start": 505.271,
+ "end": 505.481,
+ "text": "our"
+ },
+ {
+ "id": 1274,
+ "start": 505.481,
+ "end": 506.271,
+ "text": "own."
+ },
+ {
+ "id": 1275,
+ "start": 506.271,
+ "end": 506.481,
+ "text": "We"
+ },
+ {
+ "id": 1276,
+ "start": 506.481,
+ "end": 506.671,
+ "text": "work"
+ },
+ {
+ "id": 1277,
+ "start": 506.671,
+ "end": 506.831,
+ "text": "with"
+ },
+ {
+ "id": 1278,
+ "start": 506.831,
+ "end": 507.671,
+ "text": "experts;"
+ },
+ {
+ "id": 1279,
+ "start": 507.671,
+ "end": 507.861,
+ "text": "we"
+ },
+ {
+ "id": 1280,
+ "start": 507.861,
+ "end": 508.031,
+ "text": "work"
+ },
+ {
+ "id": 1281,
+ "start": 508.031,
+ "end": 508.171,
+ "text": "with"
+ },
+ {
+ "id": 1282,
+ "start": 508.171,
+ "end": 508.331,
+ "text": "other"
+ },
+ {
+ "id": 1283,
+ "start": 508.7010000000001,
+ "end": 508.9459999999999,
+ "text": "companies;"
+ },
+ {
+ "id": 1284,
+ "start": 509.231,
+ "end": 509.561,
+ "text": "we"
+ },
+ {
+ "id": 1285,
+ "start": 509.561,
+ "end": 509.741,
+ "text": "work"
+ },
+ {
+ "id": 1286,
+ "start": 509.741,
+ "end": 509.891,
+ "text": "with"
+ },
+ {
+ "id": 1287,
+ "start": 509.891,
+ "end": 510.681,
+ "text": "partners;"
+ },
+ {
+ "id": 1288,
+ "start": 510.681,
+ "end": 510.821,
+ "text": "we"
+ },
+ {
+ "id": 1289,
+ "start": 510.821,
+ "end": 511.021,
+ "text": "work"
+ },
+ {
+ "id": 1290,
+ "start": 511.021,
+ "end": 511.141,
+ "text": "with"
+ },
+ {
+ "id": 1291,
+ "start": 512.1659999999999,
+ "end": 512.3410000000001,
+ "text": "organizations."
+ },
+ {
+ "id": 1292,
+ "start": 513.311,
+ "end": 513.541,
+ "text": "It’s"
+ },
+ {
+ "id": 1293,
+ "start": 513.541,
+ "end": 513.811,
+ "text": "something"
+ },
+ {
+ "id": 1294,
+ "start": 513.811,
+ "end": 513.981,
+ "text": "that"
+ },
+ {
+ "id": 1295,
+ "start": 513.981,
+ "end": 514.121,
+ "text": "we"
+ },
+ {
+ "id": 1296,
+ "start": 514.121,
+ "end": 514.311,
+ "text": "need"
+ },
+ {
+ "id": 1297,
+ "start": 514.311,
+ "end": 514.431,
+ "text": "to"
+ },
+ {
+ "id": 1298,
+ "start": 514.431,
+ "end": 515.361,
+ "text": "do"
+ },
+ {
+ "id": 1299,
+ "start": 515.361,
+ "end": 515.821,
+ "text": "in"
+ },
+ {
+ "id": 1300,
+ "start": 515.821,
+ "end": 517.251,
+ "text": "concert."
+ },
+ {
+ "id": 1301,
+ "start": 517.251,
+ "end": 517.371,
+ "text": "I"
+ },
+ {
+ "id": 1302,
+ "start": 517.371,
+ "end": 518.251,
+ "text": "guess"
+ },
+ {
+ "id": 1303,
+ "start": 518.251,
+ "end": 518.391,
+ "text": "what"
+ },
+ {
+ "id": 1304,
+ "start": 518.391,
+ "end": 518.481,
+ "text": "I’m"
+ },
+ {
+ "id": 1305,
+ "start": 518.481,
+ "end": 518.711,
+ "text": "trying"
+ },
+ {
+ "id": 1306,
+ "start": 518.711,
+ "end": 518.771,
+ "text": "to"
+ },
+ {
+ "id": 1307,
+ "start": 518.771,
+ "end": 518.921,
+ "text": "get"
+ },
+ {
+ "id": 1308,
+ "start": 518.921,
+ "end": 518.961,
+ "text": "a"
+ },
+ {
+ "id": 1309,
+ "start": 518.961,
+ "end": 519.311,
+ "text": "sense"
+ },
+ {
+ "id": 1310,
+ "start": 519.311,
+ "end": 519.491,
+ "text": "of"
+ },
+ {
+ "id": 1311,
+ "start": 519.491,
+ "end": 519.861,
+ "text": "is"
+ },
+ {
+ "id": 1312,
+ "start": 519.661,
+ "end": 520.161,
+ "text": "what"
+ },
+ {
+ "id": 1313,
+ "start": 520.3359999999999,
+ "end": 520.676,
+ "text": "was—was"
+ },
+ {
+ "id": 1314,
+ "start": 521.011,
+ "end": 521.191,
+ "text": "there"
+ },
+ {
+ "id": 1315,
+ "start": 521.191,
+ "end": 521.351,
+ "text": "a"
+ },
+ {
+ "id": 1316,
+ "start": 521.351,
+ "end": 522.431,
+ "text": "reckoning"
+ },
+ {
+ "id": 1317,
+ "start": 522.431,
+ "end": 523.291,
+ "text": "inside,"
+ },
+ {
+ "id": 1318,
+ "start": 523.291,
+ "end": 523.971,
+ "text": "right?"
+ },
+ {
+ "id": 1319,
+ "start": 523.971,
+ "end": 524.171,
+ "text": "If"
+ },
+ {
+ "id": 1320,
+ "start": 524.171,
+ "end": 524.281,
+ "text": "you"
+ },
+ {
+ "id": 1321,
+ "start": 524.306,
+ "end": 524.481,
+ "text": "can"
+ },
+ {
+ "id": 1322,
+ "start": 524.441,
+ "end": 524.681,
+ "text": "bring"
+ },
+ {
+ "id": 1323,
+ "start": 524.681,
+ "end": 524.861,
+ "text": "me"
+ },
+ {
+ "id": 1324,
+ "start": 524.861,
+ "end": 525.141,
+ "text": "into"
+ },
+ {
+ "id": 1325,
+ "start": 526.4209999999998,
+ "end": 526.8809999999999,
+ "text": "some—something"
+ },
+ {
+ "id": 1326,
+ "start": 527.981,
+ "end": 528.621,
+ "text": "happens"
+ },
+ {
+ "id": 1327,
+ "start": 528.621,
+ "end": 528.931,
+ "text": "after"
+ },
+ {
+ "id": 1328,
+ "start": 528.931,
+ "end": 529.021,
+ "text": "the"
+ },
+ {
+ "id": 1329,
+ "start": 529.316,
+ "end": 529.746,
+ "text": "2016"
+ },
+ {
+ "id": 1330,
+ "start": 529.701,
+ "end": 530.471,
+ "text": "election,"
+ },
+ {
+ "id": 1331,
+ "start": 530.471,
+ "end": 531.321,
+ "text": "and"
+ },
+ {
+ "id": 1332,
+ "start": 531.321,
+ "end": 531.501,
+ "text": "it’s"
+ },
+ {
+ "id": 1333,
+ "start": 531.501,
+ "end": 531.921,
+ "text": "something"
+ },
+ {
+ "id": 1334,
+ "start": 531.921,
+ "end": 532.401,
+ "text": "you’ve"
+ },
+ {
+ "id": 1335,
+ "start": 532.401,
+ "end": 533.091,
+ "text": "spent"
+ },
+ {
+ "id": 1336,
+ "start": 533.091,
+ "end": 533.241,
+ "text": "a"
+ },
+ {
+ "id": 1337,
+ "start": 533.241,
+ "end": 533.521,
+ "text": "long"
+ },
+ {
+ "id": 1338,
+ "start": 533.521,
+ "end": 533.851,
+ "text": "time"
+ },
+ {
+ "id": 1339,
+ "start": 533.851,
+ "end": 534.221,
+ "text": "growing"
+ },
+ {
+ "id": 1340,
+ "start": 534.221,
+ "end": 534.401,
+ "text": "this"
+ },
+ {
+ "id": 1341,
+ "start": 534.401,
+ "end": 536.931,
+ "text": "business."
+ },
+ {
+ "id": 1342,
+ "start": 536.931,
+ "end": 537.121,
+ "text": "What"
+ },
+ {
+ "id": 1343,
+ "start": 537.121,
+ "end": 537.251,
+ "text": "is"
+ },
+ {
+ "id": 1344,
+ "start": 537.251,
+ "end": 537.381,
+ "text": "it"
+ },
+ {
+ "id": 1345,
+ "start": 537.381,
+ "end": 538.361,
+ "text": "like"
+ },
+ {
+ "id": 1346,
+ "start": 538.361,
+ "end": 538.521,
+ "text": "to"
+ },
+ {
+ "id": 1347,
+ "start": 538.521,
+ "end": 538.811,
+ "text": "see"
+ },
+ {
+ "id": 1348,
+ "start": 538.811,
+ "end": 539.751,
+ "text": "it"
+ },
+ {
+ "id": 1349,
+ "start": 539.751,
+ "end": 541.221,
+ "text": "and"
+ },
+ {
+ "id": 1350,
+ "start": 541.221,
+ "end": 541.431,
+ "text": "have"
+ },
+ {
+ "id": 1351,
+ "start": 541.431,
+ "end": 541.751,
+ "text": "all"
+ },
+ {
+ "id": 1352,
+ "start": 541.751,
+ "end": 541.831,
+ "text": "of"
+ },
+ {
+ "id": 1353,
+ "start": 541.831,
+ "end": 542.041,
+ "text": "these"
+ },
+ {
+ "id": 1354,
+ "start": 542.041,
+ "end": 542.621,
+ "text": "problems"
+ },
+ {
+ "id": 1355,
+ "start": 542.621,
+ "end": 543.351,
+ "text": "that"
+ },
+ {
+ "id": 1356,
+ "start": 543.351,
+ "end": 543.581,
+ "text": "have"
+ },
+ {
+ "id": 1357,
+ "start": 543.581,
+ "end": 543.871,
+ "text": "been"
+ },
+ {
+ "id": 1358,
+ "start": 543.871,
+ "end": 544.081,
+ "text": "known"
+ },
+ {
+ "id": 1359,
+ "start": 544.081,
+ "end": 544.531,
+ "text": "about"
+ },
+ {
+ "id": 1360,
+ "start": 544.531,
+ "end": 544.681,
+ "text": "but"
+ },
+ {
+ "id": 1361,
+ "start": 544.681,
+ "end": 544.811,
+ "text": "all"
+ },
+ {
+ "id": 1362,
+ "start": 544.811,
+ "end": 544.881,
+ "text": "of"
+ },
+ {
+ "id": 1363,
+ "start": 544.881,
+ "end": 544.921,
+ "text": "a"
+ },
+ {
+ "id": 1364,
+ "start": 544.921,
+ "end": 545.151,
+ "text": "sudden"
+ },
+ {
+ "id": 1365,
+ "start": 545.151,
+ "end": 545.361,
+ "text": "rear"
+ },
+ {
+ "id": 1366,
+ "start": 545.361,
+ "end": 545.521,
+ "text": "their"
+ },
+ {
+ "id": 1367,
+ "start": 545.521,
+ "end": 546.301,
+ "text": "heads"
+ },
+ {
+ "id": 1368,
+ "start": 546.051,
+ "end": 546.451,
+ "text": "in"
+ },
+ {
+ "id": 1369,
+ "start": 546.9060000000001,
+ "end": 547.201,
+ "text": "2016?"
+ },
+ {
+ "id": 1370,
+ "start": 547.761,
+ "end": 547.951,
+ "text": "What"
+ },
+ {
+ "id": 1371,
+ "start": 547.951,
+ "end": 548.081,
+ "text": "is"
+ },
+ {
+ "id": 1372,
+ "start": 548.081,
+ "end": 548.351,
+ "text": "that"
+ },
+ {
+ "id": 1373,
+ "start": 548.351,
+ "end": 548.701,
+ "text": "like"
+ },
+ {
+ "id": 1374,
+ "start": 548.701,
+ "end": 549.141,
+ "text": "inside"
+ },
+ {
+ "id": 1375,
+ "start": 549.141,
+ "end": 549.231,
+ "text": "of"
+ },
+ {
+ "id": 1376,
+ "start": 549.231,
+ "end": 549.511,
+ "text": "here?"
+ },
+ {
+ "id": 1377,
+ "start": 550.1610000000001,
+ "end": 550.336,
+ "text": "Yeah."
+ },
+ {
+ "id": 1378,
+ "start": 551.091,
+ "end": 551.161,
+ "text": "I"
+ },
+ {
+ "id": 1379,
+ "start": 551.161,
+ "end": 551.371,
+ "text": "think"
+ },
+ {
+ "id": 1380,
+ "start": 551.371,
+ "end": 551.421,
+ "text": "I"
+ },
+ {
+ "id": 1381,
+ "start": 551.421,
+ "end": 551.631,
+ "text": "just"
+ },
+ {
+ "id": 1382,
+ "start": 551.6410000000001,
+ "end": 551.8676666666667,
+ "text": "want"
+ },
+ {
+ "id": 1383,
+ "start": 551.861,
+ "end": 552.1043333333333,
+ "text": "to"
+ },
+ {
+ "id": 1384,
+ "start": 552.081,
+ "end": 552.341,
+ "text": "push"
+ },
+ {
+ "id": 1385,
+ "start": 552.341,
+ "end": 552.581,
+ "text": "back"
+ },
+ {
+ "id": 1386,
+ "start": 552.581,
+ "end": 552.881,
+ "text": "just"
+ },
+ {
+ "id": 1387,
+ "start": 552.881,
+ "end": 553.581,
+ "text": "on"
+ },
+ {
+ "id": 1388,
+ "start": 553.581,
+ "end": 553.821,
+ "text": "all"
+ },
+ {
+ "id": 1389,
+ "start": 553.821,
+ "end": 553.891,
+ "text": "of"
+ },
+ {
+ "id": 1390,
+ "start": 553.891,
+ "end": 554.071,
+ "text": "these"
+ },
+ {
+ "id": 1391,
+ "start": 554.071,
+ "end": 554.491,
+ "text": "problems"
+ },
+ {
+ "id": 1392,
+ "start": 554.491,
+ "end": 554.621,
+ "text": "that"
+ },
+ {
+ "id": 1393,
+ "start": 554.626,
+ "end": 554.856,
+ "text": "we’ve"
+ },
+ {
+ "id": 1394,
+ "start": 554.761,
+ "end": 555.091,
+ "text": "known"
+ },
+ {
+ "id": 1395,
+ "start": 555.091,
+ "end": 555.451,
+ "text": "about,"
+ },
+ {
+ "id": 1396,
+ "start": 555.451,
+ "end": 555.751,
+ "text": "because"
+ },
+ {
+ "id": 1397,
+ "start": 555.751,
+ "end": 555.921,
+ "text": "like"
+ },
+ {
+ "id": 1398,
+ "start": 555.921,
+ "end": 555.981,
+ "text": "I"
+ },
+ {
+ "id": 1399,
+ "start": 555.981,
+ "end": 556.201,
+ "text": "said"
+ },
+ {
+ "id": 1400,
+ "start": 556.201,
+ "end": 556.631,
+ "text": "earlier,"
+ },
+ {
+ "id": 1401,
+ "start": 556.631,
+ "end": 556.711,
+ "text": "a"
+ },
+ {
+ "id": 1402,
+ "start": 556.711,
+ "end": 556.921,
+ "text": "lot"
+ },
+ {
+ "id": 1403,
+ "start": 556.921,
+ "end": 557.021,
+ "text": "of"
+ },
+ {
+ "id": 1404,
+ "start": 557.021,
+ "end": 557.221,
+ "text": "these"
+ },
+ {
+ "id": 1405,
+ "start": 557.221,
+ "end": 557.341,
+ "text": "were"
+ },
+ {
+ "id": 1406,
+ "start": 557.341,
+ "end": 557.541,
+ "text": "new"
+ },
+ {
+ "id": 1407,
+ "start": 557.541,
+ "end": 558.421,
+ "text": "problems."
+ },
+ {
+ "id": 1408,
+ "start": 558.421,
+ "end": 559.901,
+ "text": "So"
+ },
+ {
+ "id": 1409,
+ "start": 559.901,
+ "end": 560.311,
+ "text": "again,"
+ },
+ {
+ "id": 1410,
+ "start": 560.311,
+ "end": 560.531,
+ "text": "we"
+ },
+ {
+ "id": 1411,
+ "start": 560.531,
+ "end": 560.761,
+ "text": "were"
+ },
+ {
+ "id": 1412,
+ "start": 560.761,
+ "end": 561.091,
+ "text": "ready"
+ },
+ {
+ "id": 1413,
+ "start": 561.091,
+ "end": 561.791,
+ "text": "for"
+ },
+ {
+ "id": 1414,
+ "start": 562.4659999999999,
+ "end": 562.9160000000002,
+ "text": "cyberattacks;"
+ },
+ {
+ "id": 1415,
+ "start": 563.841,
+ "end": 564.041,
+ "text": "we"
+ },
+ {
+ "id": 1416,
+ "start": 564.041,
+ "end": 564.211,
+ "text": "had"
+ },
+ {
+ "id": 1417,
+ "start": 564.211,
+ "end": 564.431,
+ "text": "a"
+ },
+ {
+ "id": 1418,
+ "start": 564.431,
+ "end": 564.741,
+ "text": "team"
+ },
+ {
+ "id": 1419,
+ "start": 564.741,
+ "end": 564.891,
+ "text": "that"
+ },
+ {
+ "id": 1420,
+ "start": 564.891,
+ "end": 565.071,
+ "text": "was"
+ },
+ {
+ "id": 1421,
+ "start": 565.071,
+ "end": 565.191,
+ "text": "on"
+ },
+ {
+ "id": 1422,
+ "start": 565.191,
+ "end": 565.431,
+ "text": "top"
+ },
+ {
+ "id": 1423,
+ "start": 565.431,
+ "end": 565.581,
+ "text": "of"
+ },
+ {
+ "id": 1424,
+ "start": 565.581,
+ "end": 565.831,
+ "text": "it,"
+ },
+ {
+ "id": 1425,
+ "start": 565.831,
+ "end": 566.961,
+ "text": "and"
+ },
+ {
+ "id": 1426,
+ "start": 566.961,
+ "end": 567.261,
+ "text": "we"
+ },
+ {
+ "id": 1427,
+ "start": 567.261,
+ "end": 567.351,
+ "text": "were"
+ },
+ {
+ "id": 1428,
+ "start": 567.351,
+ "end": 568.551,
+ "text": "not"
+ },
+ {
+ "id": 1429,
+ "start": 568.551,
+ "end": 569.371,
+ "text": "aware"
+ },
+ {
+ "id": 1430,
+ "start": 569.371,
+ "end": 569.701,
+ "text": "or"
+ },
+ {
+ "id": 1431,
+ "start": 569.701,
+ "end": 570.621,
+ "text": "expecting"
+ },
+ {
+ "id": 1432,
+ "start": 570.621,
+ "end": 570.911,
+ "text": "foreign"
+ },
+ {
+ "id": 1433,
+ "start": 570.911,
+ "end": 571.541,
+ "text": "interference"
+ },
+ {
+ "id": 1434,
+ "start": 571.541,
+ "end": 571.621,
+ "text": "in"
+ },
+ {
+ "id": 1435,
+ "start": 571.621,
+ "end": 571.731,
+ "text": "the"
+ },
+ {
+ "id": 1436,
+ "start": 572.0310000000001,
+ "end": 572.191,
+ "text": "election,"
+ },
+ {
+ "id": 1437,
+ "start": 572.441,
+ "end": 572.651,
+ "text": "so"
+ },
+ {
+ "id": 1438,
+ "start": 572.651,
+ "end": 572.711,
+ "text": "I"
+ },
+ {
+ "id": 1439,
+ "start": 572.711,
+ "end": 573.071,
+ "text": "think"
+ },
+ {
+ "id": 1440,
+ "start": 573.356,
+ "end": 573.716,
+ "text": "a"
+ },
+ {
+ "id": 1441,
+ "start": 574.001,
+ "end": 574.361,
+ "text": "lot"
+ },
+ {
+ "id": 1442,
+ "start": 574.361,
+ "end": 575.571,
+ "text": "of"
+ },
+ {
+ "id": 1443,
+ "start": 575.571,
+ "end": 575.851,
+ "text": "the"
+ },
+ {
+ "id": 1444,
+ "start": 575.851,
+ "end": 576.391,
+ "text": "feeling"
+ },
+ {
+ "id": 1445,
+ "start": 576.391,
+ "end": 576.651,
+ "text": "around"
+ },
+ {
+ "id": 1446,
+ "start": 576.651,
+ "end": 576.751,
+ "text": "the"
+ },
+ {
+ "id": 1447,
+ "start": 576.751,
+ "end": 577.151,
+ "text": "office"
+ },
+ {
+ "id": 1448,
+ "start": 577.151,
+ "end": 577.281,
+ "text": "that"
+ },
+ {
+ "id": 1449,
+ "start": 577.281,
+ "end": 577.441,
+ "text": "you’re"
+ },
+ {
+ "id": 1450,
+ "start": 577.441,
+ "end": 577.921,
+ "text": "asking"
+ },
+ {
+ "id": 1451,
+ "start": 577.921,
+ "end": 578.901,
+ "text": "about"
+ },
+ {
+ "id": 1452,
+ "start": 578.901,
+ "end": 579.261,
+ "text": "was"
+ },
+ {
+ "id": 1453,
+ "start": 579.261,
+ "end": 579.671,
+ "text": "just"
+ },
+ {
+ "id": 1454,
+ "start": 579.671,
+ "end": 580.171,
+ "text": "of"
+ },
+ {
+ "id": 1455,
+ "start": 580.101,
+ "end": 580.421,
+ "text": "–"
+ },
+ {
+ "id": 1456,
+ "start": 580.531,
+ "end": 580.671,
+ "text": "a"
+ },
+ {
+ "id": 1457,
+ "start": 580.671,
+ "end": 580.871,
+ "text": "little"
+ },
+ {
+ "id": 1458,
+ "start": 580.871,
+ "end": 581.021,
+ "text": "bit"
+ },
+ {
+ "id": 1459,
+ "start": 581.021,
+ "end": 581.241,
+ "text": "of"
+ },
+ {
+ "id": 1460,
+ "start": 581.241,
+ "end": 582.991,
+ "text": "surprise."
+ },
+ {
+ "id": 1461,
+ "start": 582.991,
+ "end": 583.231,
+ "text": "It’s"
+ },
+ {
+ "id": 1462,
+ "start": 583.231,
+ "end": 583.911,
+ "text": "been"
+ },
+ {
+ "id": 1463,
+ "start": 583.911,
+ "end": 584.071,
+ "text": "the"
+ },
+ {
+ "id": 1464,
+ "start": 584.071,
+ "end": 584.811,
+ "text": "most"
+ },
+ {
+ "id": 1465,
+ "start": 584.811,
+ "end": 585.681,
+ "text": "reflective"
+ },
+ {
+ "id": 1466,
+ "start": 585.681,
+ "end": 585.891,
+ "text": "sort"
+ },
+ {
+ "id": 1467,
+ "start": 585.891,
+ "end": 586.261,
+ "text": "of"
+ },
+ {
+ "id": 1468,
+ "start": 586.261,
+ "end": 587.341,
+ "text": "educational"
+ },
+ {
+ "id": 1469,
+ "start": 587.341,
+ "end": 588.361,
+ "text": "year."
+ },
+ {
+ "id": 1470,
+ "start": 588.361,
+ "end": 588.791,
+ "text": "We’ve"
+ },
+ {
+ "id": 1471,
+ "start": 588.791,
+ "end": 588.991,
+ "text": "been"
+ },
+ {
+ "id": 1472,
+ "start": 588.991,
+ "end": 589.361,
+ "text": "learning"
+ },
+ {
+ "id": 1473,
+ "start": 589.351,
+ "end": 589.501,
+ "text": "a"
+ },
+ {
+ "id": 1474,
+ "start": 589.821,
+ "end": 589.991,
+ "text": "lot."
+ },
+ {
+ "id": 1475,
+ "start": 590.291,
+ "end": 590.481,
+ "text": "But"
+ },
+ {
+ "id": 1476,
+ "start": 590.481,
+ "end": 590.581,
+ "text": "in"
+ },
+ {
+ "id": 1477,
+ "start": 590.581,
+ "end": 590.901,
+ "text": "terms"
+ },
+ {
+ "id": 1478,
+ "start": 590.901,
+ "end": 591.181,
+ "text": "of,"
+ },
+ {
+ "id": 1479,
+ "start": 591.181,
+ "end": 591.231,
+ "text": "I"
+ },
+ {
+ "id": 1480,
+ "start": 591.231,
+ "end": 591.561,
+ "text": "mean,"
+ },
+ {
+ "id": 1481,
+ "start": 592.126,
+ "end": 592.631,
+ "text": "engagement-driven"
+ },
+ {
+ "id": 1482,
+ "start": 593.021,
+ "end": 593.701,
+ "text": "algorithms,"
+ },
+ {
+ "id": 1483,
+ "start": 593.701,
+ "end": 593.911,
+ "text": "right?"
+ },
+ {
+ "id": 1484,
+ "start": 593.911,
+ "end": 594.221,
+ "text": "Part"
+ },
+ {
+ "id": 1485,
+ "start": 594.221,
+ "end": 594.421,
+ "text": "of"
+ },
+ {
+ "id": 1486,
+ "start": 594.596,
+ "end": 594.7710000000001,
+ "text": "Growth"
+ },
+ {
+ "id": 1487,
+ "start": 594.971,
+ "end": 595.121,
+ "text": "and"
+ },
+ {
+ "id": 1488,
+ "start": 595.121,
+ "end": 595.201,
+ "text": "the"
+ },
+ {
+ "id": 1489,
+ "start": 595.201,
+ "end": 595.481,
+ "text": "Growth"
+ },
+ {
+ "id": 1490,
+ "start": 595.481,
+ "end": 596.041,
+ "text": "strategy"
+ },
+ {
+ "id": 1491,
+ "start": 596.041,
+ "end": 596.641,
+ "text": "was"
+ },
+ {
+ "id": 1492,
+ "start": 596.641,
+ "end": 596.791,
+ "text": "in"
+ },
+ {
+ "id": 1493,
+ "start": 596.791,
+ "end": 597.091,
+ "text": "part"
+ },
+ {
+ "id": 1494,
+ "start": 597.091,
+ "end": 597.211,
+ "text": "to"
+ },
+ {
+ "id": 1495,
+ "start": 597.211,
+ "end": 597.681,
+ "text": "engage"
+ },
+ {
+ "id": 1496,
+ "start": 597.731,
+ "end": 598.1659999999999,
+ "text": "people."
+ },
+ {
+ "id": 1497,
+ "start": 598.251,
+ "end": 598.651,
+ "text": "Right?"
+ },
+ {
+ "id": 1498,
+ "start": 598.651,
+ "end": 598.931,
+ "text": "And"
+ },
+ {
+ "id": 1499,
+ "start": 598.931,
+ "end": 599.141,
+ "text": "get"
+ },
+ {
+ "id": 1500,
+ "start": 599.131,
+ "end": 599.471,
+ "text": "people"
+ },
+ {
+ "id": 1501,
+ "start": 599.3276666666667,
+ "end": 599.7343333333333,
+ "text": "on"
+ },
+ {
+ "id": 1502,
+ "start": 599.5243333333333,
+ "end": 599.9976666666666,
+ "text": "to"
+ },
+ {
+ "id": 1503,
+ "start": 599.721,
+ "end": 600.261,
+ "text": "Facebook"
+ },
+ {
+ "id": 1504,
+ "start": 600.261,
+ "end": 600.461,
+ "text": "and"
+ },
+ {
+ "id": 1505,
+ "start": 600.5076666666666,
+ "end": 600.861,
+ "text": "give"
+ },
+ {
+ "id": 1506,
+ "start": 600.7543333333333,
+ "end": 601.261,
+ "text": "an"
+ },
+ {
+ "id": 1507,
+ "start": 601.001,
+ "end": 601.661,
+ "text": "engaging"
+ },
+ {
+ "id": 1508,
+ "start": 602.8559999999998,
+ "end": 603.241,
+ "text": "product."
+ },
+ {
+ "id": 1509,
+ "start": 604.711,
+ "end": 604.821,
+ "text": "There"
+ },
+ {
+ "id": 1510,
+ "start": 604.821,
+ "end": 604.961,
+ "text": "was"
+ },
+ {
+ "id": 1511,
+ "start": 604.961,
+ "end": 605.031,
+ "text": "a"
+ },
+ {
+ "id": 1512,
+ "start": 605.031,
+ "end": 605.311,
+ "text": "long"
+ },
+ {
+ "id": 1513,
+ "start": 605.311,
+ "end": 605.851,
+ "text": "history"
+ },
+ {
+ "id": 1514,
+ "start": 605.851,
+ "end": 605.991,
+ "text": "of"
+ },
+ {
+ "id": 1515,
+ "start": 605.991,
+ "end": 606.621,
+ "text": "criticism"
+ },
+ {
+ "id": 1516,
+ "start": 606.621,
+ "end": 606.851,
+ "text": "either"
+ },
+ {
+ "id": 1517,
+ "start": 606.851,
+ "end": 606.991,
+ "text": "by"
+ },
+ {
+ "id": 1518,
+ "start": 606.991,
+ "end": 607.761,
+ "text": "academics"
+ },
+ {
+ "id": 1519,
+ "start": 607.761,
+ "end": 607.921,
+ "text": "or"
+ },
+ {
+ "id": 1520,
+ "start": 607.921,
+ "end": 608.071,
+ "text": "by"
+ },
+ {
+ "id": 1521,
+ "start": 608.071,
+ "end": 608.805,
+ "text": "others"
+ },
+ {
+ "id": 1522,
+ "start": 608.805,
+ "end": 609.725,
+ "text": "of"
+ },
+ {
+ "id": 1523,
+ "start": 609.725,
+ "end": 610.125,
+ "text": "the"
+ },
+ {
+ "id": 1524,
+ "start": 610.125,
+ "end": 610.595,
+ "text": "potential"
+ },
+ {
+ "id": 1525,
+ "start": 610.595,
+ "end": 611.045,
+ "text": "harms"
+ },
+ {
+ "id": 1526,
+ "start": 611.045,
+ "end": 611.255,
+ "text": "of"
+ },
+ {
+ "id": 1527,
+ "start": 611.245,
+ "end": 611.505,
+ "text": "just"
+ },
+ {
+ "id": 1528,
+ "start": 611.6650000000001,
+ "end": 612.035,
+ "text": "optimizing"
+ },
+ {
+ "id": 1529,
+ "start": 612.085,
+ "end": 612.5649999999999,
+ "text": "foreign"
+ },
+ {
+ "id": 1530,
+ "start": 612.505,
+ "end": 613.095,
+ "text": "engagement"
+ },
+ {
+ "id": 1531,
+ "start": 613.085,
+ "end": 613.275,
+ "text": "or"
+ },
+ {
+ "id": 1532,
+ "start": 613.54,
+ "end": 613.7199999999999,
+ "text": "optimizing"
+ },
+ {
+ "id": 1533,
+ "start": 613.995,
+ "end": 614.165,
+ "text": "for"
+ },
+ {
+ "id": 1534,
+ "start": 614.165,
+ "end": 614.535,
+ "text": "growing"
+ },
+ {
+ "id": 1535,
+ "start": 615.24,
+ "end": 615.4599999999999,
+ "text": "something."
+ },
+ {
+ "id": 1536,
+ "start": 616.315,
+ "end": 616.385,
+ "text": "You"
+ },
+ {
+ "id": 1537,
+ "start": 616.385,
+ "end": 616.555,
+ "text": "don’t"
+ },
+ {
+ "id": 1538,
+ "start": 616.555,
+ "end": 616.765,
+ "text": "think"
+ },
+ {
+ "id": 1539,
+ "start": 616.765,
+ "end": 616.925,
+ "text": "that"
+ },
+ {
+ "id": 1540,
+ "start": 616.925,
+ "end": 617.155,
+ "text": "that"
+ },
+ {
+ "id": 1541,
+ "start": 617.155,
+ "end": 617.335,
+ "text": "was"
+ },
+ {
+ "id": 1542,
+ "start": 617.335,
+ "end": 617.615,
+ "text": "known"
+ },
+ {
+ "id": 1543,
+ "start": 617.615,
+ "end": 618.095,
+ "text": "about"
+ },
+ {
+ "id": 1544,
+ "start": 618.095,
+ "end": 618.765,
+ "text": "before"
+ },
+ {
+ "id": 1545,
+ "start": 618.765,
+ "end": 619.285,
+ "text": "that"
+ },
+ {
+ "id": 1546,
+ "start": 619.285,
+ "end": 619.555,
+ "text": "took"
+ },
+ {
+ "id": 1547,
+ "start": 619.555,
+ "end": 619.865,
+ "text": "people"
+ },
+ {
+ "id": 1548,
+ "start": 619.865,
+ "end": 620.025,
+ "text": "by"
+ },
+ {
+ "id": 1549,
+ "start": 620.025,
+ "end": 620.475,
+ "text": "surprise"
+ },
+ {
+ "id": 1550,
+ "start": 620.9600000000002,
+ "end": 621.34,
+ "text": "here?"
+ },
+ {
+ "id": 1551,
+ "start": 621.895,
+ "end": 622.205,
+ "text": "From"
+ },
+ {
+ "id": 1552,
+ "start": 622.205,
+ "end": 622.365,
+ "text": "my"
+ },
+ {
+ "id": 1553,
+ "start": 622.365,
+ "end": 622.745,
+ "text": "vantage"
+ },
+ {
+ "id": 1554,
+ "start": 622.745,
+ "end": 623.005,
+ "text": "point"
+ },
+ {
+ "id": 1555,
+ "start": 623.005,
+ "end": 623.125,
+ "text": "on"
+ },
+ {
+ "id": 1556,
+ "start": 623.125,
+ "end": 623.225,
+ "text": "the"
+ },
+ {
+ "id": 1557,
+ "start": 623.225,
+ "end": 623.565,
+ "text": "Growth"
+ },
+ {
+ "id": 1558,
+ "start": 623.565,
+ "end": 624.015,
+ "text": "team,"
+ },
+ {
+ "id": 1559,
+ "start": 624.015,
+ "end": 624.185,
+ "text": "we"
+ },
+ {
+ "id": 1560,
+ "start": 624.185,
+ "end": 624.885,
+ "text": "definitely"
+ },
+ {
+ "id": 1561,
+ "start": 624.885,
+ "end": 625.325,
+ "text": "weren’t"
+ },
+ {
+ "id": 1562,
+ "start": 625.5675000000001,
+ "end": 626.0825,
+ "text": "optimizing"
+ },
+ {
+ "id": 1563,
+ "start": 626.2500000000002,
+ "end": 626.8400000000001,
+ "text": "for"
+ },
+ {
+ "id": 1564,
+ "start": 626.9325000000001,
+ "end": 627.5975000000001,
+ "text": "engagement."
+ },
+ {
+ "id": 1565,
+ "start": 627.615,
+ "end": 628.355,
+ "text": "The"
+ },
+ {
+ "id": 1566,
+ "start": 628.355,
+ "end": 629.365,
+ "text": "metrics"
+ },
+ {
+ "id": 1567,
+ "start": 629.365,
+ "end": 629.495,
+ "text": "or"
+ },
+ {
+ "id": 1568,
+ "start": 629.495,
+ "end": 629.705,
+ "text": "the"
+ },
+ {
+ "id": 1569,
+ "start": 629.705,
+ "end": 630.305,
+ "text": "stats"
+ },
+ {
+ "id": 1570,
+ "start": 630.305,
+ "end": 630.505,
+ "text": "that"
+ },
+ {
+ "id": 1571,
+ "start": 630.505,
+ "end": 630.865,
+ "text": "we"
+ },
+ {
+ "id": 1572,
+ "start": 630.865,
+ "end": 631.585,
+ "text": "follow"
+ },
+ {
+ "id": 1573,
+ "start": 631.375,
+ "end": 631.87,
+ "text": "are"
+ },
+ {
+ "id": 1574,
+ "start": 631.885,
+ "end": 632.155,
+ "text": "really"
+ },
+ {
+ "id": 1575,
+ "start": 632.155,
+ "end": 632.475,
+ "text": "around"
+ },
+ {
+ "id": 1576,
+ "start": 632.475,
+ "end": 633.185,
+ "text": "friending."
+ },
+ {
+ "id": 1577,
+ "start": 633.185,
+ "end": 633.235,
+ "text": "I"
+ },
+ {
+ "id": 1578,
+ "start": 633.235,
+ "end": 633.465,
+ "text": "think"
+ },
+ {
+ "id": 1579,
+ "start": 633.465,
+ "end": 633.505,
+ "text": "I"
+ },
+ {
+ "id": 1580,
+ "start": 633.505,
+ "end": 633.725,
+ "text": "told"
+ },
+ {
+ "id": 1581,
+ "start": 633.725,
+ "end": 633.825,
+ "text": "you"
+ },
+ {
+ "id": 1582,
+ "start": 633.825,
+ "end": 633.895,
+ "text": "a"
+ },
+ {
+ "id": 1583,
+ "start": 633.895,
+ "end": 634.305,
+ "text": "lot"
+ },
+ {
+ "id": 1584,
+ "start": 634.305,
+ "end": 634.365,
+ "text": "of"
+ },
+ {
+ "id": 1585,
+ "start": 634.365,
+ "end": 634.505,
+ "text": "my"
+ },
+ {
+ "id": 1586,
+ "start": 634.505,
+ "end": 634.975,
+ "text": "focus"
+ },
+ {
+ "id": 1587,
+ "start": 634.975,
+ "end": 635.655,
+ "text": "on"
+ },
+ {
+ "id": 1588,
+ "start": 635.655,
+ "end": 636.205,
+ "text": "Growth"
+ },
+ {
+ "id": 1589,
+ "start": 636.205,
+ "end": 636.475,
+ "text": "was"
+ },
+ {
+ "id": 1590,
+ "start": 636.475,
+ "end": 636.855,
+ "text": "really"
+ },
+ {
+ "id": 1591,
+ "start": 636.855,
+ "end": 637.755,
+ "text": "about"
+ },
+ {
+ "id": 1592,
+ "start": 637.755,
+ "end": 638.025,
+ "text": "getting"
+ },
+ {
+ "id": 1593,
+ "start": 638.025,
+ "end": 638.295,
+ "text": "people"
+ },
+ {
+ "id": 1594,
+ "start": 638.295,
+ "end": 638.365,
+ "text": "to"
+ },
+ {
+ "id": 1595,
+ "start": 638.365,
+ "end": 638.635,
+ "text": "join"
+ },
+ {
+ "id": 1596,
+ "start": 638.635,
+ "end": 639.215,
+ "text": "Facebook,"
+ },
+ {
+ "id": 1597,
+ "start": 639.215,
+ "end": 639.355,
+ "text": "have"
+ },
+ {
+ "id": 1598,
+ "start": 639.355,
+ "end": 639.575,
+ "text": "a"
+ },
+ {
+ "id": 1599,
+ "start": 639.575,
+ "end": 639.835,
+ "text": "good"
+ },
+ {
+ "id": 1600,
+ "start": 639.835,
+ "end": 640.625,
+ "text": "experience,"
+ },
+ {
+ "id": 1601,
+ "start": 640.625,
+ "end": 641.135,
+ "text": "understand"
+ },
+ {
+ "id": 1602,
+ "start": 641.135,
+ "end": 641.295,
+ "text": "how"
+ },
+ {
+ "id": 1603,
+ "start": 641.295,
+ "end": 641.395,
+ "text": "to"
+ },
+ {
+ "id": 1604,
+ "start": 641.395,
+ "end": 641.585,
+ "text": "use"
+ },
+ {
+ "id": 1605,
+ "start": 641.585,
+ "end": 641.685,
+ "text": "the"
+ },
+ {
+ "id": 1606,
+ "start": 641.685,
+ "end": 642.165,
+ "text": "site,"
+ },
+ {
+ "id": 1607,
+ "start": 642.165,
+ "end": 642.365,
+ "text": "set"
+ },
+ {
+ "id": 1608,
+ "start": 642.365,
+ "end": 642.475,
+ "text": "up"
+ },
+ {
+ "id": 1609,
+ "start": 642.475,
+ "end": 642.555,
+ "text": "a"
+ },
+ {
+ "id": 1610,
+ "start": 642.555,
+ "end": 643.095,
+ "text": "profile"
+ },
+ {
+ "id": 1611,
+ "start": 643.095,
+ "end": 643.575,
+ "text": "picture"
+ },
+ {
+ "id": 1612,
+ "start": 643.575,
+ "end": 643.775,
+ "text": "and"
+ },
+ {
+ "id": 1613,
+ "start": 643.775,
+ "end": 644.055,
+ "text": "connect"
+ },
+ {
+ "id": 1614,
+ "start": 644.055,
+ "end": 644.165,
+ "text": "with"
+ },
+ {
+ "id": 1615,
+ "start": 644.165,
+ "end": 644.325,
+ "text": "their"
+ },
+ {
+ "id": 1616,
+ "start": 645.325,
+ "end": 645.9300000000001,
+ "text": "friends."
+ },
+ {
+ "id": 1617,
+ "start": 646.485,
+ "end": 647.535,
+ "text": "So"
+ },
+ {
+ "id": 1618,
+ "start": 647.535,
+ "end": 647.715,
+ "text": "I’m"
+ },
+ {
+ "id": 1619,
+ "start": 647.715,
+ "end": 647.935,
+ "text": "not"
+ },
+ {
+ "id": 1620,
+ "start": 647.935,
+ "end": 648.085,
+ "text": "sure"
+ },
+ {
+ "id": 1621,
+ "start": 648.085,
+ "end": 648.355,
+ "text": "it’s"
+ },
+ {
+ "id": 1622,
+ "start": 648.355,
+ "end": 648.865,
+ "text": "entirely"
+ },
+ {
+ "id": 1623,
+ "start": 648.865,
+ "end": 649.325,
+ "text": "accurate"
+ },
+ {
+ "id": 1624,
+ "start": 649.325,
+ "end": 649.465,
+ "text": "to"
+ },
+ {
+ "id": 1625,
+ "start": 649.465,
+ "end": 649.855,
+ "text": "say"
+ },
+ {
+ "id": 1626,
+ "start": 649.855,
+ "end": 650.065,
+ "text": "that"
+ },
+ {
+ "id": 1627,
+ "start": 650.065,
+ "end": 650.215,
+ "text": "we"
+ },
+ {
+ "id": 1628,
+ "start": 650.215,
+ "end": 650.485,
+ "text": "were"
+ },
+ {
+ "id": 1629,
+ "start": 650.7475000000001,
+ "end": 650.9875000000001,
+ "text": "optimizing"
+ },
+ {
+ "id": 1630,
+ "start": 651.28,
+ "end": 651.49,
+ "text": "for"
+ },
+ {
+ "id": 1631,
+ "start": 651.8125,
+ "end": 651.9925,
+ "text": "engagement."
+ },
+ {
+ "id": 1632,
+ "start": 652.345,
+ "end": 652.495,
+ "text": "At"
+ },
+ {
+ "id": 1633,
+ "start": 652.495,
+ "end": 653.575,
+ "text": "least"
+ },
+ {
+ "id": 1634,
+ "start": 653.575,
+ "end": 653.895,
+ "text": "for"
+ },
+ {
+ "id": 1635,
+ "start": 653.895,
+ "end": 654.075,
+ "text": "me"
+ },
+ {
+ "id": 1636,
+ "start": 654.075,
+ "end": 654.195,
+ "text": "and"
+ },
+ {
+ "id": 1637,
+ "start": 654.195,
+ "end": 654.395,
+ "text": "my"
+ },
+ {
+ "id": 1638,
+ "start": 654.5250000000001,
+ "end": 654.725,
+ "text": "team,"
+ },
+ {
+ "id": 1639,
+ "start": 654.855,
+ "end": 655.055,
+ "text": "we"
+ },
+ {
+ "id": 1640,
+ "start": 655.055,
+ "end": 655.505,
+ "text": "wanted"
+ },
+ {
+ "id": 1641,
+ "start": 655.505,
+ "end": 656.555,
+ "text": "to"
+ },
+ {
+ "id": 1642,
+ "start": 656.555,
+ "end": 656.835,
+ "text": "help"
+ },
+ {
+ "id": 1643,
+ "start": 656.835,
+ "end": 657.085,
+ "text": "people"
+ },
+ {
+ "id": 1644,
+ "start": 657.085,
+ "end": 657.255,
+ "text": "see"
+ },
+ {
+ "id": 1645,
+ "start": 657.255,
+ "end": 657.725,
+ "text": "value"
+ },
+ {
+ "id": 1646,
+ "start": 657.725,
+ "end": 658.545,
+ "text": "in"
+ },
+ {
+ "id": 1647,
+ "start": 658.025,
+ "end": 658.885,
+ "text": "using"
+ },
+ {
+ "id": 1648,
+ "start": 658.9499999999999,
+ "end": 659.4300000000001,
+ "text": "Facebook."
+ },
+ {
+ "id": 1649,
+ "start": 659.875,
+ "end": 659.975,
+ "text": "In"
+ },
+ {
+ "id": 1650,
+ "start": 659.975,
+ "end": 660.665,
+ "text": "terms"
+ },
+ {
+ "id": 1651,
+ "start": 660.665,
+ "end": 660.795,
+ "text": "of"
+ },
+ {
+ "id": 1652,
+ "start": 660.795,
+ "end": 661.735,
+ "text": "expanding"
+ },
+ {
+ "id": 1653,
+ "start": 661.735,
+ "end": 662.795,
+ "text": "internationally,"
+ },
+ {
+ "id": 1654,
+ "start": 662.795,
+ "end": 662.985,
+ "text": "which"
+ },
+ {
+ "id": 1655,
+ "start": 662.985,
+ "end": 663.145,
+ "text": "was"
+ },
+ {
+ "id": 1656,
+ "start": 663.145,
+ "end": 663.415,
+ "text": "also"
+ },
+ {
+ "id": 1657,
+ "start": 663.415,
+ "end": 663.645,
+ "text": "part"
+ },
+ {
+ "id": 1658,
+ "start": 663.645,
+ "end": 663.745,
+ "text": "of"
+ },
+ {
+ "id": 1659,
+ "start": 663.745,
+ "end": 663.955,
+ "text": "your"
+ },
+ {
+ "id": 1660,
+ "start": 663.955,
+ "end": 664.3483333333334,
+ "text": "purview—"
+ },
+ {
+ "id": 1661,
+ "start": 664.165,
+ "end": 664.7416666666667,
+ "text": "Yes."
+ },
+ {
+ "id": 1662,
+ "start": 664.375,
+ "end": 665.135,
+ "text": "Yes."
+ },
+ {
+ "id": 1663,
+ "start": 665.135,
+ "end": 665.365,
+ "text": "—what"
+ },
+ {
+ "id": 1664,
+ "start": 665.365,
+ "end": 665.665,
+ "text": "about"
+ },
+ {
+ "id": 1665,
+ "start": 665.665,
+ "end": 665.955,
+ "text": "going"
+ },
+ {
+ "id": 1666,
+ "start": 665.955,
+ "end": 666.195,
+ "text": "into"
+ },
+ {
+ "id": 1667,
+ "start": 666.195,
+ "end": 666.685,
+ "text": "places"
+ },
+ {
+ "id": 1668,
+ "start": 667.5999999999999,
+ "end": 667.98,
+ "text": "…"
+ },
+ {
+ "id": 1669,
+ "start": 669.005,
+ "end": 669.275,
+ "text": "in"
+ },
+ {
+ "id": 1670,
+ "start": 669.275,
+ "end": 669.765,
+ "text": "Southeast"
+ },
+ {
+ "id": 1671,
+ "start": 669.765,
+ "end": 670.165,
+ "text": "Asia"
+ },
+ {
+ "id": 1672,
+ "start": 670.165,
+ "end": 670.405,
+ "text": "or"
+ },
+ {
+ "id": 1673,
+ "start": 670.405,
+ "end": 670.795,
+ "text": "elsewhere"
+ },
+ {
+ "id": 1674,
+ "start": 670.795,
+ "end": 670.895,
+ "text": "in"
+ },
+ {
+ "id": 1675,
+ "start": 670.895,
+ "end": 670.985,
+ "text": "the"
+ },
+ {
+ "id": 1676,
+ "start": 670.985,
+ "end": 671.325,
+ "text": "world"
+ },
+ {
+ "id": 1677,
+ "start": 671.325,
+ "end": 671.485,
+ "text": "that"
+ },
+ {
+ "id": 1678,
+ "start": 671.485,
+ "end": 671.645,
+ "text": "did"
+ },
+ {
+ "id": 1679,
+ "start": 671.645,
+ "end": 671.915,
+ "text": "not"
+ },
+ {
+ "id": 1680,
+ "start": 671.915,
+ "end": 672.855,
+ "text": "have"
+ },
+ {
+ "id": 1681,
+ "start": 672.855,
+ "end": 673.315,
+ "text": "civic"
+ },
+ {
+ "id": 1682,
+ "start": 673.315,
+ "end": 674.205,
+ "text": "institutions,"
+ },
+ {
+ "id": 1683,
+ "start": 674.205,
+ "end": 675.225,
+ "text": "strong"
+ },
+ {
+ "id": 1684,
+ "start": 675.225,
+ "end": 675.655,
+ "text": "histories"
+ },
+ {
+ "id": 1685,
+ "start": 675.655,
+ "end": 675.745,
+ "text": "of"
+ },
+ {
+ "id": 1686,
+ "start": 675.745,
+ "end": 677.095,
+ "text": "democracy,"
+ },
+ {
+ "id": 1687,
+ "start": 677.095,
+ "end": 677.705,
+ "text": "strong"
+ },
+ {
+ "id": 1688,
+ "start": 677.705,
+ "end": 678.245,
+ "text": "governmental"
+ },
+ {
+ "id": 1689,
+ "start": 678.245,
+ "end": 679.125,
+ "text": "institutions"
+ },
+ {
+ "id": 1690,
+ "start": 679.125,
+ "end": 680.185,
+ "text": "that"
+ },
+ {
+ "id": 1691,
+ "start": 680.185,
+ "end": 680.415,
+ "text": "in"
+ },
+ {
+ "id": 1692,
+ "start": 680.415,
+ "end": 680.735,
+ "text": "some"
+ },
+ {
+ "id": 1693,
+ "start": 680.735,
+ "end": 681.455,
+ "text": "way"
+ },
+ {
+ "id": 1694,
+ "start": 681.455,
+ "end": 682.055,
+ "text": "that"
+ },
+ {
+ "id": 1695,
+ "start": 682.055,
+ "end": 682.345,
+ "text": "there"
+ },
+ {
+ "id": 1696,
+ "start": 682.345,
+ "end": 682.575,
+ "text": "was"
+ },
+ {
+ "id": 1697,
+ "start": 682.575,
+ "end": 682.815,
+ "text": "some"
+ },
+ {
+ "id": 1698,
+ "start": 682.815,
+ "end": 683.745,
+ "text": "risk"
+ },
+ {
+ "id": 1699,
+ "start": 683.745,
+ "end": 683.905,
+ "text": "to"
+ },
+ {
+ "id": 1700,
+ "start": 683.905,
+ "end": 684.365,
+ "text": "bringing"
+ },
+ {
+ "id": 1701,
+ "start": 684.365,
+ "end": 684.565,
+ "text": "this"
+ },
+ {
+ "id": 1702,
+ "start": 684.565,
+ "end": 685.785,
+ "text": "technology"
+ },
+ {
+ "id": 1703,
+ "start": 685.785,
+ "end": 686.055,
+ "text": "to"
+ },
+ {
+ "id": 1704,
+ "start": 686.055,
+ "end": 686.275,
+ "text": "these"
+ },
+ {
+ "id": 1705,
+ "start": 686.275,
+ "end": 686.835,
+ "text": "countries"
+ },
+ {
+ "id": 1706,
+ "start": 686.835,
+ "end": 687.465,
+ "text": "and"
+ },
+ {
+ "id": 1707,
+ "start": 687.465,
+ "end": 687.745,
+ "text": "really"
+ },
+ {
+ "id": 1708,
+ "start": 687.745,
+ "end": 688.245,
+ "text": "promoting"
+ },
+ {
+ "id": 1709,
+ "start": 688.245,
+ "end": 688.365,
+ "text": "it"
+ },
+ {
+ "id": 1710,
+ "start": 688.365,
+ "end": 688.515,
+ "text": "as"
+ },
+ {
+ "id": 1711,
+ "start": 688.515,
+ "end": 688.615,
+ "text": "it"
+ },
+ {
+ "id": 1712,
+ "start": 688.9383333333333,
+ "end": 689.105,
+ "text": "was?"
+ },
+ {
+ "id": 1713,
+ "start": 689.3616666666666,
+ "end": 689.595,
+ "text": "Yeah."
+ },
+ {
+ "id": 1714,
+ "start": 689.785,
+ "end": 690.085,
+ "text": "I"
+ },
+ {
+ "id": 1715,
+ "start": 690.085,
+ "end": 690.275,
+ "text": "think"
+ },
+ {
+ "id": 1716,
+ "start": 690.275,
+ "end": 690.485,
+ "text": "this"
+ },
+ {
+ "id": 1717,
+ "start": 690.3483333333334,
+ "end": 690.565,
+ "text": "sort"
+ },
+ {
+ "id": 1718,
+ "start": 690.4216666666666,
+ "end": 690.645,
+ "text": "of"
+ },
+ {
+ "id": 1719,
+ "start": 690.495,
+ "end": 690.725,
+ "text": "is"
+ },
+ {
+ "id": 1720,
+ "start": 690.725,
+ "end": 690.795,
+ "text": "a"
+ },
+ {
+ "id": 1721,
+ "start": 690.795,
+ "end": 691.035,
+ "text": "great"
+ },
+ {
+ "id": 1722,
+ "start": 691.035,
+ "end": 691.465,
+ "text": "point."
+ },
+ {
+ "id": 1723,
+ "start": 691.465,
+ "end": 691.675,
+ "text": "When"
+ },
+ {
+ "id": 1724,
+ "start": 691.675,
+ "end": 692.645,
+ "text": "we"
+ },
+ {
+ "id": 1725,
+ "start": 692.645,
+ "end": 692.905,
+ "text": "were"
+ },
+ {
+ "id": 1726,
+ "start": 692.905,
+ "end": 693.175,
+ "text": "first"
+ },
+ {
+ "id": 1727,
+ "start": 693.175,
+ "end": 693.655,
+ "text": "starting"
+ },
+ {
+ "id": 1728,
+ "start": 693.655,
+ "end": 693.785,
+ "text": "on"
+ },
+ {
+ "id": 1729,
+ "start": 693.785,
+ "end": 694.245,
+ "text": "Facebook,"
+ },
+ {
+ "id": 1730,
+ "start": 694.245,
+ "end": 694.365,
+ "text": "we"
+ },
+ {
+ "id": 1731,
+ "start": 694.365,
+ "end": 694.445,
+ "text": "were"
+ },
+ {
+ "id": 1732,
+ "start": 694.445,
+ "end": 694.865,
+ "text": "college"
+ },
+ {
+ "id": 1733,
+ "start": 694.865,
+ "end": 695.275,
+ "text": "students"
+ },
+ {
+ "id": 1734,
+ "start": 695.275,
+ "end": 695.655,
+ "text": "building"
+ },
+ {
+ "id": 1735,
+ "start": 695.655,
+ "end": 695.705,
+ "text": "a"
+ },
+ {
+ "id": 1736,
+ "start": 695.705,
+ "end": 696.035,
+ "text": "site"
+ },
+ {
+ "id": 1737,
+ "start": 696.035,
+ "end": 696.695,
+ "text": "for"
+ },
+ {
+ "id": 1738,
+ "start": 696.505,
+ "end": 697.065,
+ "text": "college"
+ },
+ {
+ "id": 1739,
+ "start": 696.98,
+ "end": 697.34,
+ "text": "students,"
+ },
+ {
+ "id": 1740,
+ "start": 697.455,
+ "end": 697.615,
+ "text": "so"
+ },
+ {
+ "id": 1741,
+ "start": 697.615,
+ "end": 697.845,
+ "text": "other"
+ },
+ {
+ "id": 1742,
+ "start": 697.845,
+ "end": 698.145,
+ "text": "people"
+ },
+ {
+ "id": 1743,
+ "start": 698.145,
+ "end": 698.385,
+ "text": "like"
+ },
+ {
+ "id": 1744,
+ "start": 698.7,
+ "end": 698.935,
+ "text": "us."
+ },
+ {
+ "id": 1745,
+ "start": 699.255,
+ "end": 699.485,
+ "text": "As"
+ },
+ {
+ "id": 1746,
+ "start": 699.485,
+ "end": 699.675,
+ "text": "we’ve"
+ },
+ {
+ "id": 1747,
+ "start": 699.675,
+ "end": 700.255,
+ "text": "grown"
+ },
+ {
+ "id": 1748,
+ "start": 700.255,
+ "end": 700.445,
+ "text": "into"
+ },
+ {
+ "id": 1749,
+ "start": 700.445,
+ "end": 700.655,
+ "text": "other"
+ },
+ {
+ "id": 1750,
+ "start": 700.655,
+ "end": 701.285,
+ "text": "languages"
+ },
+ {
+ "id": 1751,
+ "start": 700.935,
+ "end": 701.4283333333333,
+ "text": "and"
+ },
+ {
+ "id": 1752,
+ "start": 701.215,
+ "end": 701.5716666666667,
+ "text": "to"
+ },
+ {
+ "id": 1753,
+ "start": 701.495,
+ "end": 701.715,
+ "text": "other"
+ },
+ {
+ "id": 1754,
+ "start": 701.715,
+ "end": 703.355,
+ "text": "countries,"
+ },
+ {
+ "id": 1755,
+ "start": 703.355,
+ "end": 703.495,
+ "text": "the"
+ },
+ {
+ "id": 1756,
+ "start": 703.495,
+ "end": 703.725,
+ "text": "people"
+ },
+ {
+ "id": 1757,
+ "start": 703.725,
+ "end": 703.835,
+ "text": "that"
+ },
+ {
+ "id": 1758,
+ "start": 703.835,
+ "end": 703.895,
+ "text": "are"
+ },
+ {
+ "id": 1759,
+ "start": 703.895,
+ "end": 704.195,
+ "text": "using"
+ },
+ {
+ "id": 1760,
+ "start": 704.195,
+ "end": 704.575,
+ "text": "Facebook"
+ },
+ {
+ "id": 1761,
+ "start": 704.575,
+ "end": 704.735,
+ "text": "look"
+ },
+ {
+ "id": 1762,
+ "start": 704.735,
+ "end": 704.955,
+ "text": "very"
+ },
+ {
+ "id": 1763,
+ "start": 704.955,
+ "end": 705.405,
+ "text": "different,"
+ },
+ {
+ "id": 1764,
+ "start": 705.405,
+ "end": 705.695,
+ "text": "whether"
+ },
+ {
+ "id": 1765,
+ "start": 705.695,
+ "end": 705.845,
+ "text": "it’s"
+ },
+ {
+ "id": 1766,
+ "start": 705.845,
+ "end": 706.225,
+ "text": "because"
+ },
+ {
+ "id": 1767,
+ "start": 706.225,
+ "end": 706.415,
+ "text": "they’re"
+ },
+ {
+ "id": 1768,
+ "start": 706.415,
+ "end": 706.515,
+ "text": "in"
+ },
+ {
+ "id": 1769,
+ "start": 706.515,
+ "end": 706.945,
+ "text": "Southeast"
+ },
+ {
+ "id": 1770,
+ "start": 706.945,
+ "end": 707.445,
+ "text": "Asia"
+ },
+ {
+ "id": 1771,
+ "start": 707.445,
+ "end": 708.035,
+ "text": "or"
+ },
+ {
+ "id": 1772,
+ "start": 708.035,
+ "end": 708.235,
+ "text": "they"
+ },
+ {
+ "id": 1773,
+ "start": 708.235,
+ "end": 710.675,
+ "text": "speak"
+ },
+ {
+ "id": 1774,
+ "start": 710.675,
+ "end": 710.865,
+ "text": "a"
+ },
+ {
+ "id": 1775,
+ "start": 710.865,
+ "end": 711.175,
+ "text": "different"
+ },
+ {
+ "id": 1776,
+ "start": 711.5450000000001,
+ "end": 711.79,
+ "text": "language,"
+ },
+ {
+ "id": 1777,
+ "start": 712.225,
+ "end": 712.405,
+ "text": "so"
+ },
+ {
+ "id": 1778,
+ "start": 712.405,
+ "end": 712.735,
+ "text": "we’ve"
+ },
+ {
+ "id": 1779,
+ "start": 712.735,
+ "end": 712.985,
+ "text": "really"
+ },
+ {
+ "id": 1780,
+ "start": 712.985,
+ "end": 713.365,
+ "text": "had"
+ },
+ {
+ "id": 1781,
+ "start": 713.365,
+ "end": 714.305,
+ "text": "to"
+ },
+ {
+ "id": 1782,
+ "start": 714.305,
+ "end": 714.655,
+ "text": "build"
+ },
+ {
+ "id": 1783,
+ "start": 714.655,
+ "end": 714.685,
+ "text": "a"
+ },
+ {
+ "id": 1784,
+ "start": 714.685,
+ "end": 715.075,
+ "text": "diverse"
+ },
+ {
+ "id": 1785,
+ "start": 715.075,
+ "end": 716.355,
+ "text": "workforce,"
+ },
+ {
+ "id": 1786,
+ "start": 716.355,
+ "end": 716.715,
+ "text": "partner"
+ },
+ {
+ "id": 1787,
+ "start": 716.715,
+ "end": 716.845,
+ "text": "with"
+ },
+ {
+ "id": 1788,
+ "start": 716.845,
+ "end": 717.165,
+ "text": "people"
+ },
+ {
+ "id": 1789,
+ "start": 717.165,
+ "end": 717.295,
+ "text": "that"
+ },
+ {
+ "id": 1790,
+ "start": 717.295,
+ "end": 717.445,
+ "text": "are"
+ },
+ {
+ "id": 1791,
+ "start": 717.445,
+ "end": 717.655,
+ "text": "on"
+ },
+ {
+ "id": 1792,
+ "start": 717.655,
+ "end": 717.745,
+ "text": "the"
+ },
+ {
+ "id": 1793,
+ "start": 717.745,
+ "end": 719.655,
+ "text": "ground,"
+ },
+ {
+ "id": 1794,
+ "start": 719.655,
+ "end": 719.905,
+ "text": "work"
+ },
+ {
+ "id": 1795,
+ "start": 719.905,
+ "end": 720.055,
+ "text": "with"
+ },
+ {
+ "id": 1796,
+ "start": 720.055,
+ "end": 720.655,
+ "text": "academics,"
+ },
+ {
+ "id": 1797,
+ "start": 720.655,
+ "end": 720.835,
+ "text": "work"
+ },
+ {
+ "id": 1798,
+ "start": 720.835,
+ "end": 721.005,
+ "text": "with"
+ },
+ {
+ "id": 1799,
+ "start": 721.005,
+ "end": 721.545,
+ "text": "experts"
+ },
+ {
+ "id": 1800,
+ "start": 721.545,
+ "end": 721.665,
+ "text": "to"
+ },
+ {
+ "id": 1801,
+ "start": 721.665,
+ "end": 722.565,
+ "text": "understand"
+ },
+ {
+ "id": 1802,
+ "start": 722.565,
+ "end": 722.945,
+ "text": "the"
+ },
+ {
+ "id": 1803,
+ "start": 722.945,
+ "end": 723.315,
+ "text": "people"
+ },
+ {
+ "id": 1804,
+ "start": 723.315,
+ "end": 723.385,
+ "text": "in"
+ },
+ {
+ "id": 1805,
+ "start": 723.385,
+ "end": 723.475,
+ "text": "the"
+ },
+ {
+ "id": 1806,
+ "start": 723.475,
+ "end": 724.215,
+ "text": "communities"
+ },
+ {
+ "id": 1807,
+ "start": 724.215,
+ "end": 724.335,
+ "text": "that"
+ },
+ {
+ "id": 1808,
+ "start": 724.335,
+ "end": 724.415,
+ "text": "are"
+ },
+ {
+ "id": 1809,
+ "start": 724.415,
+ "end": 724.715,
+ "text": "using"
+ },
+ {
+ "id": 1810,
+ "start": 724.715,
+ "end": 725.195,
+ "text": "Facebook"
+ },
+ {
+ "id": 1811,
+ "start": 725.195,
+ "end": 725.325,
+ "text": "and"
+ },
+ {
+ "id": 1812,
+ "start": 725.775,
+ "end": 726.03,
+ "text": "how."
+ },
+ {
+ "id": 1813,
+ "start": 726.355,
+ "end": 726.735,
+ "text": "We’re"
+ },
+ {
+ "id": 1814,
+ "start": 726.735,
+ "end": 726.865,
+ "text": "at"
+ },
+ {
+ "id": 1815,
+ "start": 726.865,
+ "end": 726.985,
+ "text": "the"
+ },
+ {
+ "id": 1816,
+ "start": 726.985,
+ "end": 727.135,
+ "text": "end"
+ },
+ {
+ "id": 1817,
+ "start": 727.135,
+ "end": 727.205,
+ "text": "of"
+ },
+ {
+ "id": 1818,
+ "start": 727.205,
+ "end": 727.365,
+ "text": "this"
+ },
+ {
+ "id": 1819,
+ "start": 727.365,
+ "end": 727.875,
+ "text": "process"
+ },
+ {
+ "id": 1820,
+ "start": 727.875,
+ "end": 728.025,
+ "text": "of"
+ },
+ {
+ "id": 1821,
+ "start": 728.025,
+ "end": 728.475,
+ "text": "reporting"
+ },
+ {
+ "id": 1822,
+ "start": 728.3365,
+ "end": 728.6465000000001,
+ "text": "out"
+ },
+ {
+ "id": 1823,
+ "start": 728.648,
+ "end": 728.818,
+ "text": "this"
+ },
+ {
+ "id": 1824,
+ "start": 728.818,
+ "end": 729.608,
+ "text": "film,"
+ },
+ {
+ "id": 1825,
+ "start": 729.608,
+ "end": 730.098,
+ "text": "and"
+ },
+ {
+ "id": 1826,
+ "start": 730.098,
+ "end": 730.248,
+ "text": "we’re"
+ },
+ {
+ "id": 1827,
+ "start": 730.248,
+ "end": 730.478,
+ "text": "here"
+ },
+ {
+ "id": 1828,
+ "start": 730.478,
+ "end": 730.588,
+ "text": "at"
+ },
+ {
+ "id": 1829,
+ "start": 730.588,
+ "end": 731.198,
+ "text": "Facebook,"
+ },
+ {
+ "id": 1830,
+ "start": 731.198,
+ "end": 731.318,
+ "text": "and"
+ },
+ {
+ "id": 1831,
+ "start": 731.318,
+ "end": 731.348,
+ "text": "I"
+ },
+ {
+ "id": 1832,
+ "start": 731.348,
+ "end": 731.588,
+ "text": "think"
+ },
+ {
+ "id": 1833,
+ "start": 731.588,
+ "end": 731.728,
+ "text": "one"
+ },
+ {
+ "id": 1834,
+ "start": 731.728,
+ "end": 731.798,
+ "text": "of"
+ },
+ {
+ "id": 1835,
+ "start": 731.798,
+ "end": 731.898,
+ "text": "the"
+ },
+ {
+ "id": 1836,
+ "start": 731.898,
+ "end": 732.288,
+ "text": "things"
+ },
+ {
+ "id": 1837,
+ "start": 732.288,
+ "end": 732.468,
+ "text": "is"
+ },
+ {
+ "id": 1838,
+ "start": 732.468,
+ "end": 732.818,
+ "text": "that"
+ },
+ {
+ "id": 1839,
+ "start": 732.9946666666666,
+ "end": 733.2513333333334,
+ "text": "there"
+ },
+ {
+ "id": 1840,
+ "start": 733.5213333333334,
+ "end": 733.6846666666667,
+ "text": "is"
+ },
+ {
+ "id": 1841,
+ "start": 734.048,
+ "end": 734.118,
+ "text": "a"
+ },
+ {
+ "id": 1842,
+ "start": 734.118,
+ "end": 734.538,
+ "text": "sense"
+ },
+ {
+ "id": 1843,
+ "start": 734.538,
+ "end": 735.098,
+ "text": "outside"
+ },
+ {
+ "id": 1844,
+ "start": 735.098,
+ "end": 735.218,
+ "text": "of"
+ },
+ {
+ "id": 1845,
+ "start": 735.218,
+ "end": 735.708,
+ "text": "here"
+ },
+ {
+ "id": 1846,
+ "start": 735.708,
+ "end": 737.978,
+ "text": "that"
+ },
+ {
+ "id": 1847,
+ "start": 737.978,
+ "end": 738.558,
+ "text": "Facebook"
+ },
+ {
+ "id": 1848,
+ "start": 738.558,
+ "end": 738.718,
+ "text": "has"
+ },
+ {
+ "id": 1849,
+ "start": 738.718,
+ "end": 738.958,
+ "text": "had"
+ },
+ {
+ "id": 1850,
+ "start": 738.958,
+ "end": 739.158,
+ "text": "this"
+ },
+ {
+ "id": 1851,
+ "start": 739.158,
+ "end": 739.958,
+ "text": "veneer,"
+ },
+ {
+ "id": 1852,
+ "start": 739.958,
+ "end": 740.188,
+ "text": "this"
+ },
+ {
+ "id": 1853,
+ "start": 740.188,
+ "end": 740.588,
+ "text": "public"
+ },
+ {
+ "id": 1854,
+ "start": 740.588,
+ "end": 740.938,
+ "text": "image"
+ },
+ {
+ "id": 1855,
+ "start": 740.938,
+ "end": 741.078,
+ "text": "of"
+ },
+ {
+ "id": 1856,
+ "start": 741.078,
+ "end": 741.388,
+ "text": "a"
+ },
+ {
+ "id": 1857,
+ "start": 741.388,
+ "end": 741.818,
+ "text": "force"
+ },
+ {
+ "id": 1858,
+ "start": 741.818,
+ "end": 741.998,
+ "text": "for"
+ },
+ {
+ "id": 1859,
+ "start": 741.998,
+ "end": 742.648,
+ "text": "good,"
+ },
+ {
+ "id": 1860,
+ "start": 742.648,
+ "end": 743.498,
+ "text": "and"
+ },
+ {
+ "id": 1861,
+ "start": 743.498,
+ "end": 744.088,
+ "text": "that"
+ },
+ {
+ "id": 1862,
+ "start": 744.088,
+ "end": 745.028,
+ "text": "the"
+ },
+ {
+ "id": 1863,
+ "start": 745.028,
+ "end": 745.448,
+ "text": "company’s"
+ },
+ {
+ "id": 1864,
+ "start": 745.448,
+ "end": 745.568,
+ "text": "been"
+ },
+ {
+ "id": 1865,
+ "start": 745.568,
+ "end": 745.808,
+ "text": "very"
+ },
+ {
+ "id": 1866,
+ "start": 745.808,
+ "end": 746.418,
+ "text": "successful"
+ },
+ {
+ "id": 1867,
+ "start": 746.418,
+ "end": 746.508,
+ "text": "at"
+ },
+ {
+ "id": 1868,
+ "start": 746.508,
+ "end": 746.808,
+ "text": "putting"
+ },
+ {
+ "id": 1869,
+ "start": 746.808,
+ "end": 747.298,
+ "text": "forward"
+ },
+ {
+ "id": 1870,
+ "start": 747.298,
+ "end": 747.408,
+ "text": "a"
+ },
+ {
+ "id": 1871,
+ "start": 747.408,
+ "end": 747.658,
+ "text": "very"
+ },
+ {
+ "id": 1872,
+ "start": 747.658,
+ "end": 748.158,
+ "text": "positive"
+ },
+ {
+ "id": 1873,
+ "start": 748.158,
+ "end": 748.438,
+ "text": "image"
+ },
+ {
+ "id": 1874,
+ "start": 748.438,
+ "end": 748.578,
+ "text": "of"
+ },
+ {
+ "id": 1875,
+ "start": 748.788,
+ "end": 749.058,
+ "text": "itself—any"
+ },
+ {
+ "id": 1876,
+ "start": 749.138,
+ "end": 749.538,
+ "text": "company"
+ },
+ {
+ "id": 1877,
+ "start": 749.538,
+ "end": 749.688,
+ "text": "would"
+ },
+ {
+ "id": 1878,
+ "start": 749.678,
+ "end": 749.888,
+ "text": "do"
+ },
+ {
+ "id": 1879,
+ "start": 750.458,
+ "end": 750.8280000000001,
+ "text": "that—but"
+ },
+ {
+ "id": 1880,
+ "start": 751.238,
+ "end": 751.768,
+ "text": "that"
+ },
+ {
+ "id": 1881,
+ "start": 751.768,
+ "end": 751.988,
+ "text": "at"
+ },
+ {
+ "id": 1882,
+ "start": 751.988,
+ "end": 752.098,
+ "text": "the"
+ },
+ {
+ "id": 1883,
+ "start": 752.098,
+ "end": 752.228,
+ "text": "end"
+ },
+ {
+ "id": 1884,
+ "start": 752.228,
+ "end": 752.298,
+ "text": "of"
+ },
+ {
+ "id": 1885,
+ "start": 752.298,
+ "end": 752.378,
+ "text": "the"
+ },
+ {
+ "id": 1886,
+ "start": 752.378,
+ "end": 752.998,
+ "text": "day,"
+ },
+ {
+ "id": 1887,
+ "start": 752.998,
+ "end": 753.288,
+ "text": "there’s"
+ },
+ {
+ "id": 1888,
+ "start": 753.288,
+ "end": 753.478,
+ "text": "been"
+ },
+ {
+ "id": 1889,
+ "start": 753.478,
+ "end": 753.708,
+ "text": "quite"
+ },
+ {
+ "id": 1890,
+ "start": 753.708,
+ "end": 753.758,
+ "text": "a"
+ },
+ {
+ "id": 1891,
+ "start": 753.758,
+ "end": 753.908,
+ "text": "bit"
+ },
+ {
+ "id": 1892,
+ "start": 753.908,
+ "end": 753.988,
+ "text": "of"
+ },
+ {
+ "id": 1893,
+ "start": 753.988,
+ "end": 754.498,
+ "text": "harm"
+ },
+ {
+ "id": 1894,
+ "start": 754.498,
+ "end": 754.858,
+ "text": "caused"
+ },
+ {
+ "id": 1895,
+ "start": 754.858,
+ "end": 754.998,
+ "text": "by"
+ },
+ {
+ "id": 1896,
+ "start": 754.998,
+ "end": 755.188,
+ "text": "this"
+ },
+ {
+ "id": 1897,
+ "start": 755.188,
+ "end": 755.688,
+ "text": "company"
+ },
+ {
+ "id": 1898,
+ "start": 755.8929999999999,
+ "end": 756.203,
+ "text": "and"
+ },
+ {
+ "id": 1899,
+ "start": 756.598,
+ "end": 756.718,
+ "text": "what"
+ },
+ {
+ "id": 1900,
+ "start": 756.718,
+ "end": 756.848,
+ "text": "it’s"
+ },
+ {
+ "id": 1901,
+ "start": 759.1929999999993,
+ "end": 759.3829999999998,
+ "text": "built."
+ },
+ {
+ "id": 1902,
+ "start": 761.668,
+ "end": 761.918,
+ "text": "When"
+ },
+ {
+ "id": 1903,
+ "start": 761.918,
+ "end": 762.488,
+ "text": "Exxon"
+ },
+ {
+ "id": 1904,
+ "start": 762.488,
+ "end": 762.898,
+ "text": "spills"
+ },
+ {
+ "id": 1905,
+ "start": 762.898,
+ "end": 764.048,
+ "text": "oil,"
+ },
+ {
+ "id": 1906,
+ "start": 763.328,
+ "end": 764.688,
+ "text": "someone’s"
+ },
+ {
+ "id": 1907,
+ "start": 763.8346666666666,
+ "end": 764.7813333333332,
+ "text": "going"
+ },
+ {
+ "id": 1908,
+ "start": 764.3413333333333,
+ "end": 764.8746666666666,
+ "text": "to"
+ },
+ {
+ "id": 1909,
+ "start": 764.848,
+ "end": 764.968,
+ "text": "be"
+ },
+ {
+ "id": 1910,
+ "start": 764.968,
+ "end": 765.178,
+ "text": "held"
+ },
+ {
+ "id": 1911,
+ "start": 765.178,
+ "end": 766.128,
+ "text": "accountable,"
+ },
+ {
+ "id": 1912,
+ "start": 766.128,
+ "end": 766.748,
+ "text": "and"
+ },
+ {
+ "id": 1913,
+ "start": 766.738,
+ "end": 767.178,
+ "text": "there’s"
+ },
+ {
+ "id": 1914,
+ "start": 766.9513333333334,
+ "end": 767.3046666666667,
+ "text": "going"
+ },
+ {
+ "id": 1915,
+ "start": 767.1646666666668,
+ "end": 767.4313333333333,
+ "text": "to"
+ },
+ {
+ "id": 1916,
+ "start": 767.378,
+ "end": 767.558,
+ "text": "be"
+ },
+ {
+ "id": 1917,
+ "start": 767.558,
+ "end": 767.868,
+ "text": "people"
+ },
+ {
+ "id": 1918,
+ "start": 767.868,
+ "end": 768.008,
+ "text": "that"
+ },
+ {
+ "id": 1919,
+ "start": 768.008,
+ "end": 768.098,
+ "text": "are"
+ },
+ {
+ "id": 1920,
+ "start": 768.098,
+ "end": 769.388,
+ "text": "fired."
+ },
+ {
+ "id": 1921,
+ "start": 769.388,
+ "end": 769.638,
+ "text": "What"
+ },
+ {
+ "id": 1922,
+ "start": 769.638,
+ "end": 769.698,
+ "text": "do"
+ },
+ {
+ "id": 1923,
+ "start": 769.698,
+ "end": 769.808,
+ "text": "you"
+ },
+ {
+ "id": 1924,
+ "start": 769.808,
+ "end": 770.198,
+ "text": "think"
+ },
+ {
+ "id": 1925,
+ "start": 770.198,
+ "end": 770.358,
+ "text": "that"
+ },
+ {
+ "id": 1926,
+ "start": 770.358,
+ "end": 770.508,
+ "text": "the"
+ },
+ {
+ "id": 1927,
+ "start": 770.508,
+ "end": 771.438,
+ "text": "accountability"
+ },
+ {
+ "id": 1928,
+ "start": 771.438,
+ "end": 771.668,
+ "text": "has"
+ },
+ {
+ "id": 1929,
+ "start": 771.668,
+ "end": 771.928,
+ "text": "been"
+ },
+ {
+ "id": 1930,
+ "start": 771.928,
+ "end": 772.478,
+ "text": "here"
+ },
+ {
+ "id": 1931,
+ "start": 772.478,
+ "end": 772.648,
+ "text": "in"
+ },
+ {
+ "id": 1932,
+ "start": 772.648,
+ "end": 773.008,
+ "text": "terms"
+ },
+ {
+ "id": 1933,
+ "start": 773.008,
+ "end": 773.688,
+ "text": "of"
+ },
+ {
+ "id": 1934,
+ "start": 773.688,
+ "end": 774.138,
+ "text": "what’s"
+ },
+ {
+ "id": 1935,
+ "start": 774.138,
+ "end": 774.428,
+ "text": "been"
+ },
+ {
+ "id": 1936,
+ "start": 774.428,
+ "end": 775.128,
+ "text": "caused"
+ },
+ {
+ "id": 1937,
+ "start": 775.128,
+ "end": 775.318,
+ "text": "or"
+ },
+ {
+ "id": 1938,
+ "start": 775.318,
+ "end": 776.018,
+ "text": "what"
+ },
+ {
+ "id": 1939,
+ "start": 776.018,
+ "end": 776.478,
+ "text": "Facebook"
+ },
+ {
+ "id": 1940,
+ "start": 776.478,
+ "end": 776.618,
+ "text": "has"
+ },
+ {
+ "id": 1941,
+ "start": 776.618,
+ "end": 776.738,
+ "text": "been"
+ },
+ {
+ "id": 1942,
+ "start": 776.738,
+ "end": 776.808,
+ "text": "a"
+ },
+ {
+ "id": 1943,
+ "start": 776.808,
+ "end": 777.098,
+ "text": "part"
+ },
+ {
+ "id": 1944,
+ "start": 777.098,
+ "end": 777.608,
+ "text": "of"
+ },
+ {
+ "id": 1945,
+ "start": 777.608,
+ "end": 777.948,
+ "text": "and"
+ },
+ {
+ "id": 1946,
+ "start": 777.948,
+ "end": 778.098,
+ "text": "what"
+ },
+ {
+ "id": 1947,
+ "start": 778.098,
+ "end": 778.258,
+ "text": "you’ve"
+ },
+ {
+ "id": 1948,
+ "start": 778.448,
+ "end": 779.288,
+ "text": "built,"
+ },
+ {
+ "id": 1949,
+ "start": 778.798,
+ "end": 780.318,
+ "text": "and"
+ },
+ {
+ "id": 1950,
+ "start": 780.318,
+ "end": 780.548,
+ "text": "can"
+ },
+ {
+ "id": 1951,
+ "start": 780.548,
+ "end": 780.648,
+ "text": "you"
+ },
+ {
+ "id": 1952,
+ "start": 780.648,
+ "end": 781.118,
+ "text": "understand"
+ },
+ {
+ "id": 1953,
+ "start": 781.118,
+ "end": 781.238,
+ "text": "why"
+ },
+ {
+ "id": 1954,
+ "start": 781.238,
+ "end": 781.338,
+ "text": "it"
+ },
+ {
+ "id": 1955,
+ "start": 781.338,
+ "end": 781.468,
+ "text": "may"
+ },
+ {
+ "id": 1956,
+ "start": 781.468,
+ "end": 781.698,
+ "text": "not"
+ },
+ {
+ "id": 1957,
+ "start": 781.698,
+ "end": 781.818,
+ "text": "be"
+ },
+ {
+ "id": 1958,
+ "start": 781.818,
+ "end": 782.488,
+ "text": "satisfying"
+ },
+ {
+ "id": 1959,
+ "start": 782.488,
+ "end": 782.628,
+ "text": "to"
+ },
+ {
+ "id": 1960,
+ "start": 782.628,
+ "end": 782.708,
+ "text": "a"
+ },
+ {
+ "id": 1961,
+ "start": 782.708,
+ "end": 782.888,
+ "text": "lot"
+ },
+ {
+ "id": 1962,
+ "start": 782.888,
+ "end": 782.958,
+ "text": "of"
+ },
+ {
+ "id": 1963,
+ "start": 782.958,
+ "end": 783.268,
+ "text": "people"
+ },
+ {
+ "id": 1964,
+ "start": 783.268,
+ "end": 783.448,
+ "text": "out"
+ },
+ {
+ "id": 1965,
+ "start": 783.448,
+ "end": 783.658,
+ "text": "there"
+ },
+ {
+ "id": 1966,
+ "start": 783.658,
+ "end": 783.808,
+ "text": "that"
+ },
+ {
+ "id": 1967,
+ "start": 783.808,
+ "end": 783.948,
+ "text": "there"
+ },
+ {
+ "id": 1968,
+ "start": 783.948,
+ "end": 784.368,
+ "text": "hasn’t"
+ },
+ {
+ "id": 1969,
+ "start": 784.368,
+ "end": 785.018,
+ "text": "been,"
+ },
+ {
+ "id": 1970,
+ "start": 785.018,
+ "end": 785.118,
+ "text": "you"
+ },
+ {
+ "id": 1971,
+ "start": 785.118,
+ "end": 785.288,
+ "text": "know,"
+ },
+ {
+ "id": 1972,
+ "start": 785.288,
+ "end": 785.628,
+ "text": "who’s"
+ },
+ {
+ "id": 1973,
+ "start": 785.628,
+ "end": 785.788,
+ "text": "been"
+ },
+ {
+ "id": 1974,
+ "start": 785.788,
+ "end": 786.278,
+ "text": "fired,"
+ },
+ {
+ "id": 1975,
+ "start": 786.278,
+ "end": 786.448,
+ "text": "for"
+ },
+ {
+ "id": 1976,
+ "start": 786.448,
+ "end": 786.898,
+ "text": "instance,"
+ },
+ {
+ "id": 1977,
+ "start": 786.898,
+ "end": 786.988,
+ "text": "or"
+ },
+ {
+ "id": 1978,
+ "start": 786.988,
+ "end": 787.218,
+ "text": "who’s"
+ },
+ {
+ "id": 1979,
+ "start": 787.218,
+ "end": 787.508,
+ "text": "lost"
+ },
+ {
+ "id": 1980,
+ "start": 787.508,
+ "end": 787.638,
+ "text": "their"
+ },
+ {
+ "id": 1981,
+ "start": 787.773,
+ "end": 787.893,
+ "text": "job"
+ },
+ {
+ "id": 1982,
+ "start": 788.038,
+ "end": 788.148,
+ "text": "as"
+ },
+ {
+ "id": 1983,
+ "start": 788.148,
+ "end": 788.208,
+ "text": "a"
+ },
+ {
+ "id": 1984,
+ "start": 788.208,
+ "end": 788.628,
+ "text": "result"
+ },
+ {
+ "id": 1985,
+ "start": 788.628,
+ "end": 788.718,
+ "text": "of"
+ },
+ {
+ "id": 1986,
+ "start": 788.718,
+ "end": 788.918,
+ "text": "what’s"
+ },
+ {
+ "id": 1987,
+ "start": 788.918,
+ "end": 789.988,
+ "text": "happened"
+ },
+ {
+ "id": 1988,
+ "start": 789.988,
+ "end": 790.218,
+ "text": "here"
+ },
+ {
+ "id": 1989,
+ "start": 790.218,
+ "end": 790.298,
+ "text": "at"
+ },
+ {
+ "id": 1990,
+ "start": 790.298,
+ "end": 793.768,
+ "text": "Facebook?"
+ },
+ {
+ "id": 1991,
+ "start": 793.768,
+ "end": 793.958,
+ "text": "You"
+ },
+ {
+ "id": 1992,
+ "start": 793.958,
+ "end": 794.308,
+ "text": "know,"
+ },
+ {
+ "id": 1993,
+ "start": 794.298,
+ "end": 795.008,
+ "text": "I"
+ },
+ {
+ "id": 1994,
+ "start": 795.0630000000001,
+ "end": 795.5430000000001,
+ "text": "am"
+ },
+ {
+ "id": 1995,
+ "start": 795.828,
+ "end": 796.078,
+ "text": "still"
+ },
+ {
+ "id": 1996,
+ "start": 796.033,
+ "end": 796.433,
+ "text": "at"
+ },
+ {
+ "id": 1997,
+ "start": 796.238,
+ "end": 796.788,
+ "text": "Facebook"
+ },
+ {
+ "id": 1998,
+ "start": 796.788,
+ "end": 797.188,
+ "text": "because"
+ },
+ {
+ "id": 1999,
+ "start": 797.188,
+ "end": 797.258,
+ "text": "I"
+ },
+ {
+ "id": 2000,
+ "start": 797.258,
+ "end": 797.678,
+ "text": "firmly"
+ },
+ {
+ "id": 2001,
+ "start": 797.678,
+ "end": 798.118,
+ "text": "believe"
+ },
+ {
+ "id": 2002,
+ "start": 798.118,
+ "end": 798.278,
+ "text": "that"
+ },
+ {
+ "id": 2003,
+ "start": 798.278,
+ "end": 798.698,
+ "text": "Facebook"
+ },
+ {
+ "id": 2004,
+ "start": 798.698,
+ "end": 798.888,
+ "text": "is"
+ },
+ {
+ "id": 2005,
+ "start": 798.888,
+ "end": 798.988,
+ "text": "a"
+ },
+ {
+ "id": 2006,
+ "start": 798.988,
+ "end": 799.338,
+ "text": "force"
+ },
+ {
+ "id": 2007,
+ "start": 799.338,
+ "end": 799.528,
+ "text": "for"
+ },
+ {
+ "id": 2008,
+ "start": 799.528,
+ "end": 799.838,
+ "text": "good,"
+ },
+ {
+ "id": 2009,
+ "start": 799.838,
+ "end": 800.078,
+ "text": "but"
+ },
+ {
+ "id": 2010,
+ "start": 800.078,
+ "end": 800.338,
+ "text": "when"
+ },
+ {
+ "id": 2011,
+ "start": 800.338,
+ "end": 800.708,
+ "text": "you"
+ },
+ {
+ "id": 2012,
+ "start": 800.708,
+ "end": 800.988,
+ "text": "build"
+ },
+ {
+ "id": 2013,
+ "start": 800.988,
+ "end": 801.058,
+ "text": "a"
+ },
+ {
+ "id": 2014,
+ "start": 801.058,
+ "end": 801.528,
+ "text": "product"
+ },
+ {
+ "id": 2015,
+ "start": 801.528,
+ "end": 801.748,
+ "text": "that"
+ },
+ {
+ "id": 2016,
+ "start": 801.748,
+ "end": 801.988,
+ "text": "really"
+ },
+ {
+ "id": 2017,
+ "start": 801.988,
+ "end": 802.158,
+ "text": "is"
+ },
+ {
+ "id": 2018,
+ "start": 802.158,
+ "end": 802.228,
+ "text": "a"
+ },
+ {
+ "id": 2019,
+ "start": 802.228,
+ "end": 802.818,
+ "text": "reflection"
+ },
+ {
+ "id": 2020,
+ "start": 802.818,
+ "end": 802.938,
+ "text": "of"
+ },
+ {
+ "id": 2021,
+ "start": 803.483,
+ "end": 804.0480000000002,
+ "text": "society,"
+ },
+ {
+ "id": 2022,
+ "start": 804.148,
+ "end": 805.158,
+ "text": "you"
+ },
+ {
+ "id": 2023,
+ "start": 805.158,
+ "end": 805.378,
+ "text": "get"
+ },
+ {
+ "id": 2024,
+ "start": 805.378,
+ "end": 805.498,
+ "text": "the"
+ },
+ {
+ "id": 2025,
+ "start": 805.498,
+ "end": 805.858,
+ "text": "good"
+ },
+ {
+ "id": 2026,
+ "start": 805.858,
+ "end": 806.168,
+ "text": "and"
+ },
+ {
+ "id": 2027,
+ "start": 806.168,
+ "end": 806.258,
+ "text": "the"
+ },
+ {
+ "id": 2028,
+ "start": 806.258,
+ "end": 808.058,
+ "text": "bad."
+ },
+ {
+ "id": 2029,
+ "start": 808.058,
+ "end": 810.288,
+ "text": "So"
+ },
+ {
+ "id": 2030,
+ "start": 810.288,
+ "end": 810.798,
+ "text": "I’m"
+ },
+ {
+ "id": 2031,
+ "start": 810.798,
+ "end": 811.088,
+ "text": "not"
+ },
+ {
+ "id": 2032,
+ "start": 811.088,
+ "end": 811.578,
+ "text": "sure"
+ },
+ {
+ "id": 2033,
+ "start": 811.578,
+ "end": 812.558,
+ "text": "that"
+ },
+ {
+ "id": 2034,
+ "start": 812.558,
+ "end": 812.708,
+ "text": "in"
+ },
+ {
+ "id": 2035,
+ "start": 812.708,
+ "end": 813.008,
+ "text": "terms"
+ },
+ {
+ "id": 2036,
+ "start": 813.008,
+ "end": 813.088,
+ "text": "of"
+ },
+ {
+ "id": 2037,
+ "start": 813.088,
+ "end": 814.898,
+ "text": "accountability"
+ },
+ {
+ "id": 2038,
+ "start": 814.898,
+ "end": 815.288,
+ "text": "someone"
+ },
+ {
+ "id": 2039,
+ "start": 815.288,
+ "end": 815.448,
+ "text": "has"
+ },
+ {
+ "id": 2040,
+ "start": 815.448,
+ "end": 815.618,
+ "text": "been"
+ },
+ {
+ "id": 2041,
+ "start": 815.878,
+ "end": 816.158,
+ "text": "fired,"
+ },
+ {
+ "id": 2042,
+ "start": 816.308,
+ "end": 816.698,
+ "text": "but"
+ },
+ {
+ "id": 2043,
+ "start": 816.9879999999998,
+ "end": 817.438,
+ "text": "we’ve"
+ },
+ {
+ "id": 2044,
+ "start": 817.668,
+ "end": 818.178,
+ "text": "definitely"
+ },
+ {
+ "id": 2045,
+ "start": 818.178,
+ "end": 818.658,
+ "text": "changed"
+ },
+ {
+ "id": 2046,
+ "start": 818.658,
+ "end": 818.748,
+ "text": "the"
+ },
+ {
+ "id": 2047,
+ "start": 818.748,
+ "end": 818.918,
+ "text": "way"
+ },
+ {
+ "id": 2048,
+ "start": 818.918,
+ "end": 819.068,
+ "text": "that"
+ },
+ {
+ "id": 2049,
+ "start": 819.068,
+ "end": 819.198,
+ "text": "we"
+ },
+ {
+ "id": 2050,
+ "start": 819.713,
+ "end": 819.868,
+ "text": "operate,"
+ },
+ {
+ "id": 2051,
+ "start": 820.358,
+ "end": 820.538,
+ "text": "and"
+ },
+ {
+ "id": 2052,
+ "start": 820.538,
+ "end": 820.688,
+ "text": "this"
+ },
+ {
+ "id": 2053,
+ "start": 820.688,
+ "end": 820.828,
+ "text": "is"
+ },
+ {
+ "id": 2054,
+ "start": 820.828,
+ "end": 820.928,
+ "text": "our"
+ },
+ {
+ "id": 2055,
+ "start": 820.928,
+ "end": 821.248,
+ "text": "number"
+ },
+ {
+ "id": 2056,
+ "start": 821.248,
+ "end": 821.408,
+ "text": "one"
+ },
+ {
+ "id": 2057,
+ "start": 821.408,
+ "end": 823.088,
+ "text": "priority."
+ },
+ {
+ "id": 2058,
+ "start": 823.088,
+ "end": 823.988,
+ "text": "And"
+ },
+ {
+ "id": 2059,
+ "start": 823.988,
+ "end": 824.218,
+ "text": "in"
+ },
+ {
+ "id": 2060,
+ "start": 824.218,
+ "end": 824.538,
+ "text": "terms"
+ },
+ {
+ "id": 2061,
+ "start": 824.538,
+ "end": 824.618,
+ "text": "of"
+ },
+ {
+ "id": 2062,
+ "start": 824.618,
+ "end": 825.048,
+ "text": "changing"
+ },
+ {
+ "id": 2063,
+ "start": 825.048,
+ "end": 825.148,
+ "text": "the"
+ },
+ {
+ "id": 2064,
+ "start": 825.148,
+ "end": 825.308,
+ "text": "way"
+ },
+ {
+ "id": 2065,
+ "start": 825.308,
+ "end": 825.508,
+ "text": "that"
+ },
+ {
+ "id": 2066,
+ "start": 825.508,
+ "end": 825.618,
+ "text": "you"
+ },
+ {
+ "id": 2067,
+ "start": 825.618,
+ "end": 826.178,
+ "text": "operate,"
+ },
+ {
+ "id": 2068,
+ "start": 826.178,
+ "end": 826.378,
+ "text": "is"
+ },
+ {
+ "id": 2069,
+ "start": 826.378,
+ "end": 827.618,
+ "text": "there"
+ },
+ {
+ "id": 2070,
+ "start": 827.618,
+ "end": 827.688,
+ "text": "a"
+ },
+ {
+ "id": 2071,
+ "start": 827.688,
+ "end": 828.128,
+ "text": "sense"
+ },
+ {
+ "id": 2072,
+ "start": 828.128,
+ "end": 828.358,
+ "text": "that"
+ },
+ {
+ "id": 2073,
+ "start": 828.358,
+ "end": 828.628,
+ "text": "we"
+ },
+ {
+ "id": 2074,
+ "start": 828.628,
+ "end": 828.838,
+ "text": "kind"
+ },
+ {
+ "id": 2075,
+ "start": 828.838,
+ "end": 828.938,
+ "text": "of"
+ },
+ {
+ "id": 2076,
+ "start": 828.938,
+ "end": 829.148,
+ "text": "have"
+ },
+ {
+ "id": 2077,
+ "start": 829.148,
+ "end": 829.268,
+ "text": "to"
+ },
+ {
+ "id": 2078,
+ "start": 829.268,
+ "end": 829.558,
+ "text": "take"
+ },
+ {
+ "id": 2079,
+ "start": 829.558,
+ "end": 829.718,
+ "text": "your"
+ },
+ {
+ "id": 2080,
+ "start": 829.718,
+ "end": 830.028,
+ "text": "word"
+ },
+ {
+ "id": 2081,
+ "start": 830.028,
+ "end": 830.208,
+ "text": "for"
+ },
+ {
+ "id": 2082,
+ "start": 830.208,
+ "end": 830.808,
+ "text": "that?"
+ },
+ {
+ "id": 2083,
+ "start": 830.808,
+ "end": 830.918,
+ "text": "I"
+ },
+ {
+ "id": 2084,
+ "start": 830.918,
+ "end": 831.058,
+ "text": "mean,"
+ },
+ {
+ "id": 2085,
+ "start": 831.058,
+ "end": 831.498,
+ "text": "obviously"
+ },
+ {
+ "id": 2086,
+ "start": 831.498,
+ "end": 831.668,
+ "text": "we’re"
+ },
+ {
+ "id": 2087,
+ "start": 831.668,
+ "end": 832.178,
+ "text": "here"
+ },
+ {
+ "id": 2088,
+ "start": 832.178,
+ "end": 832.338,
+ "text": "at"
+ },
+ {
+ "id": 2089,
+ "start": 832.338,
+ "end": 832.748,
+ "text": "Facebook"
+ },
+ {
+ "id": 2090,
+ "start": 832.748,
+ "end": 833.048,
+ "text": "to"
+ },
+ {
+ "id": 2091,
+ "start": 833.048,
+ "end": 833.638,
+ "text": "see"
+ },
+ {
+ "id": 2092,
+ "start": 833.638,
+ "end": 833.838,
+ "text": "and"
+ },
+ {
+ "id": 2093,
+ "start": 833.838,
+ "end": 834.068,
+ "text": "talk"
+ },
+ {
+ "id": 2094,
+ "start": 834.068,
+ "end": 834.148,
+ "text": "to"
+ },
+ {
+ "id": 2095,
+ "start": 834.148,
+ "end": 834.238,
+ "text": "the"
+ },
+ {
+ "id": 2096,
+ "start": 834.238,
+ "end": 834.548,
+ "text": "people"
+ },
+ {
+ "id": 2097,
+ "start": 834.548,
+ "end": 834.678,
+ "text": "that"
+ },
+ {
+ "id": 2098,
+ "start": 834.678,
+ "end": 834.738,
+ "text": "are"
+ },
+ {
+ "id": 2099,
+ "start": 834.738,
+ "end": 835.218,
+ "text": "changing"
+ },
+ {
+ "id": 2100,
+ "start": 835.218,
+ "end": 835.308,
+ "text": "the"
+ },
+ {
+ "id": 2101,
+ "start": 835.308,
+ "end": 835.468,
+ "text": "way"
+ },
+ {
+ "id": 2102,
+ "start": 835.468,
+ "end": 835.668,
+ "text": "that"
+ },
+ {
+ "id": 2103,
+ "start": 835.668,
+ "end": 835.778,
+ "text": "you"
+ },
+ {
+ "id": 2104,
+ "start": 836.5729999999999,
+ "end": 837.3130000000001,
+ "text": "operate,"
+ },
+ {
+ "id": 2105,
+ "start": 837.478,
+ "end": 838.848,
+ "text": "but"
+ },
+ {
+ "id": 2106,
+ "start": 838.848,
+ "end": 838.998,
+ "text": "at"
+ },
+ {
+ "id": 2107,
+ "start": 838.998,
+ "end": 839.088,
+ "text": "the"
+ },
+ {
+ "id": 2108,
+ "start": 839.088,
+ "end": 839.188,
+ "text": "end"
+ },
+ {
+ "id": 2109,
+ "start": 839.188,
+ "end": 839.248,
+ "text": "of"
+ },
+ {
+ "id": 2110,
+ "start": 839.248,
+ "end": 839.328,
+ "text": "the"
+ },
+ {
+ "id": 2111,
+ "start": 839.328,
+ "end": 839.648,
+ "text": "day,"
+ },
+ {
+ "id": 2112,
+ "start": 839.848,
+ "end": 840.093,
+ "text": "we"
+ },
+ {
+ "id": 2113,
+ "start": 840.368,
+ "end": 840.538,
+ "text": "have"
+ },
+ {
+ "id": 2114,
+ "start": 840.538,
+ "end": 840.638,
+ "text": "to"
+ },
+ {
+ "id": 2115,
+ "start": 840.638,
+ "end": 840.928,
+ "text": "take"
+ },
+ {
+ "id": 2116,
+ "start": 840.928,
+ "end": 841.088,
+ "text": "your"
+ },
+ {
+ "id": 2117,
+ "start": 841.088,
+ "end": 841.418,
+ "text": "word"
+ },
+ {
+ "id": 2118,
+ "start": 841.418,
+ "end": 841.598,
+ "text": "for"
+ },
+ {
+ "id": 2119,
+ "start": 841.598,
+ "end": 841.868,
+ "text": "that,"
+ },
+ {
+ "id": 2120,
+ "start": 841.868,
+ "end": 842.558,
+ "text": "right?"
+ },
+ {
+ "id": 2121,
+ "start": 842.558,
+ "end": 842.988,
+ "text": "No."
+ },
+ {
+ "id": 2122,
+ "start": 842.988,
+ "end": 843.088,
+ "text": "I"
+ },
+ {
+ "id": 2123,
+ "start": 843.088,
+ "end": 843.408,
+ "text": "think"
+ },
+ {
+ "id": 2124,
+ "start": 843.408,
+ "end": 844.188,
+ "text": "that"
+ },
+ {
+ "id": 2125,
+ "start": 844.188,
+ "end": 844.518,
+ "text": "one"
+ },
+ {
+ "id": 2126,
+ "start": 844.518,
+ "end": 844.648,
+ "text": "of"
+ },
+ {
+ "id": 2127,
+ "start": 844.648,
+ "end": 844.728,
+ "text": "the"
+ },
+ {
+ "id": 2128,
+ "start": 844.728,
+ "end": 844.948,
+ "text": "most"
+ },
+ {
+ "id": 2129,
+ "start": 844.948,
+ "end": 845.268,
+ "text": "important"
+ },
+ {
+ "id": 2130,
+ "start": 845.268,
+ "end": 845.478,
+ "text": "things"
+ },
+ {
+ "id": 2131,
+ "start": 845.478,
+ "end": 845.588,
+ "text": "is"
+ },
+ {
+ "id": 2132,
+ "start": 845.588,
+ "end": 845.738,
+ "text": "that"
+ },
+ {
+ "id": 2133,
+ "start": 845.738,
+ "end": 845.868,
+ "text": "we’re"
+ },
+ {
+ "id": 2134,
+ "start": 846.3080000000002,
+ "end": 846.513,
+ "text": "super-transparent"
+ },
+ {
+ "id": 2135,
+ "start": 846.878,
+ "end": 847.158,
+ "text": "about"
+ },
+ {
+ "id": 2136,
+ "start": 847.158,
+ "end": 847.388,
+ "text": "all"
+ },
+ {
+ "id": 2137,
+ "start": 847.388,
+ "end": 847.488,
+ "text": "of"
+ },
+ {
+ "id": 2138,
+ "start": 847.488,
+ "end": 847.598,
+ "text": "the"
+ },
+ {
+ "id": 2139,
+ "start": 847.598,
+ "end": 847.978,
+ "text": "things"
+ },
+ {
+ "id": 2140,
+ "start": 847.978,
+ "end": 848.128,
+ "text": "that"
+ },
+ {
+ "id": 2141,
+ "start": 848.128,
+ "end": 848.288,
+ "text": "we’ve"
+ },
+ {
+ "id": 2142,
+ "start": 848.288,
+ "end": 848.458,
+ "text": "been"
+ },
+ {
+ "id": 2143,
+ "start": 848.989,
+ "end": 849.224,
+ "text": "doing:"
+ },
+ {
+ "id": 2144,
+ "start": 849.69,
+ "end": 849.99,
+ "text": "how"
+ },
+ {
+ "id": 2145,
+ "start": 849.99,
+ "end": 850.09,
+ "text": "we’re"
+ },
+ {
+ "id": 2146,
+ "start": 850.09,
+ "end": 850.43,
+ "text": "taking"
+ },
+ {
+ "id": 2147,
+ "start": 850.43,
+ "end": 850.69,
+ "text": "down"
+ },
+ {
+ "id": 2148,
+ "start": 850.69,
+ "end": 850.94,
+ "text": "fake"
+ },
+ {
+ "id": 2149,
+ "start": 850.94,
+ "end": 851.6,
+ "text": "accounts;"
+ },
+ {
+ "id": 2150,
+ "start": 851.6,
+ "end": 851.8,
+ "text": "how"
+ },
+ {
+ "id": 2151,
+ "start": 851.8,
+ "end": 851.97,
+ "text": "we’re"
+ },
+ {
+ "id": 2152,
+ "start": 851.97,
+ "end": 852.64,
+ "text": "identifying"
+ },
+ {
+ "id": 2153,
+ "start": 852.64,
+ "end": 853.75,
+ "text": "misinformation;"
+ },
+ {
+ "id": 2154,
+ "start": 853.75,
+ "end": 853.95,
+ "text": "who"
+ },
+ {
+ "id": 2155,
+ "start": 853.95,
+ "end": 854.13,
+ "text": "we’re"
+ },
+ {
+ "id": 2156,
+ "start": 854.13,
+ "end": 854.76,
+ "text": "partnering"
+ },
+ {
+ "id": 2157,
+ "start": 854.76,
+ "end": 855.04,
+ "text": "with"
+ },
+ {
+ "id": 2158,
+ "start": 855.28,
+ "end": 855.5649999999998,
+ "text": "third-party"
+ },
+ {
+ "id": 2159,
+ "start": 855.8,
+ "end": 856.09,
+ "text": "fact"
+ },
+ {
+ "id": 2160,
+ "start": 856.4199999999998,
+ "end": 856.695,
+ "text": "checkers."
+ },
+ {
+ "id": 2161,
+ "start": 857.04,
+ "end": 857.3,
+ "text": "We"
+ },
+ {
+ "id": 2162,
+ "start": 857.3,
+ "end": 858.02,
+ "text": "recently"
+ },
+ {
+ "id": 2163,
+ "start": 858.02,
+ "end": 858.41,
+ "text": "released"
+ },
+ {
+ "id": 2164,
+ "start": 858.41,
+ "end": 858.61,
+ "text": "a"
+ },
+ {
+ "id": 2165,
+ "start": 858.61,
+ "end": 859.23,
+ "text": "report"
+ },
+ {
+ "id": 2166,
+ "start": 859.23,
+ "end": 859.37,
+ "text": "that"
+ },
+ {
+ "id": 2167,
+ "start": 859.37,
+ "end": 859.61,
+ "text": "shows"
+ },
+ {
+ "id": 2168,
+ "start": 859.61,
+ "end": 859.91,
+ "text": "all"
+ },
+ {
+ "id": 2169,
+ "start": 859.91,
+ "end": 859.97,
+ "text": "of"
+ },
+ {
+ "id": 2170,
+ "start": 859.97,
+ "end": 860.07,
+ "text": "the"
+ },
+ {
+ "id": 2171,
+ "start": 860.07,
+ "end": 860.37,
+ "text": "stats"
+ },
+ {
+ "id": 2172,
+ "start": 860.37,
+ "end": 860.48,
+ "text": "and"
+ },
+ {
+ "id": 2173,
+ "start": 860.48,
+ "end": 860.89,
+ "text": "metrics"
+ },
+ {
+ "id": 2174,
+ "start": 860.89,
+ "end": 861.25,
+ "text": "around"
+ },
+ {
+ "id": 2175,
+ "start": 861.25,
+ "end": 861.41,
+ "text": "our"
+ },
+ {
+ "id": 2176,
+ "start": 861.41,
+ "end": 861.94,
+ "text": "integrity"
+ },
+ {
+ "id": 2177,
+ "start": 861.94,
+ "end": 862.64,
+ "text": "teams,"
+ },
+ {
+ "id": 2178,
+ "start": 862.64,
+ "end": 862.87,
+ "text": "what"
+ },
+ {
+ "id": 2179,
+ "start": 862.87,
+ "end": 862.98,
+ "text": "they’re"
+ },
+ {
+ "id": 2180,
+ "start": 862.98,
+ "end": 863.31,
+ "text": "taking"
+ },
+ {
+ "id": 2181,
+ "start": 863.31,
+ "end": 863.83,
+ "text": "down,"
+ },
+ {
+ "id": 2182,
+ "start": 863.83,
+ "end": 864.14,
+ "text": "how"
+ },
+ {
+ "id": 2183,
+ "start": 864.14,
+ "end": 864.5,
+ "text": "fast"
+ },
+ {
+ "id": 2184,
+ "start": 864.39,
+ "end": 864.7149999999999,
+ "text": "it"
+ },
+ {
+ "id": 2185,
+ "start": 864.64,
+ "end": 864.93,
+ "text": "comes"
+ },
+ {
+ "id": 2186,
+ "start": 864.93,
+ "end": 865.94,
+ "text": "down."
+ },
+ {
+ "id": 2187,
+ "start": 865.94,
+ "end": 866.54,
+ "text": "We’ve"
+ },
+ {
+ "id": 2188,
+ "start": 866.54,
+ "end": 867.08,
+ "text": "doubled"
+ },
+ {
+ "id": 2189,
+ "start": 867.08,
+ "end": 867.65,
+ "text": "from"
+ },
+ {
+ "id": 2190,
+ "start": 867.6649999999998,
+ "end": 868.0899999999999,
+ "text": "10,000"
+ },
+ {
+ "id": 2191,
+ "start": 868.25,
+ "end": 868.53,
+ "text": "people"
+ },
+ {
+ "id": 2192,
+ "start": 868.53,
+ "end": 868.8,
+ "text": "working"
+ },
+ {
+ "id": 2193,
+ "start": 868.8,
+ "end": 868.91,
+ "text": "on"
+ },
+ {
+ "id": 2194,
+ "start": 868.91,
+ "end": 869.21,
+ "text": "safety"
+ },
+ {
+ "id": 2195,
+ "start": 869.21,
+ "end": 869.33,
+ "text": "and"
+ },
+ {
+ "id": 2196,
+ "start": 869.33,
+ "end": 869.74,
+ "text": "security"
+ },
+ {
+ "id": 2197,
+ "start": 869.74,
+ "end": 869.84,
+ "text": "to"
+ },
+ {
+ "id": 2198,
+ "start": 870.14,
+ "end": 870.3050000000001,
+ "text": "20,000,"
+ },
+ {
+ "id": 2199,
+ "start": 870.54,
+ "end": 870.77,
+ "text": "so"
+ },
+ {
+ "id": 2200,
+ "start": 870.77,
+ "end": 871.3,
+ "text": "all"
+ },
+ {
+ "id": 2201,
+ "start": 871.3,
+ "end": 871.4,
+ "text": "of"
+ },
+ {
+ "id": 2202,
+ "start": 871.4,
+ "end": 871.7,
+ "text": "these"
+ },
+ {
+ "id": 2203,
+ "start": 871.7,
+ "end": 872.1,
+ "text": "things"
+ },
+ {
+ "id": 2204,
+ "start": 872.1,
+ "end": 872.18,
+ "text": "are"
+ },
+ {
+ "id": 2205,
+ "start": 872.18,
+ "end": 872.47,
+ "text": "things"
+ },
+ {
+ "id": 2206,
+ "start": 872.47,
+ "end": 872.61,
+ "text": "that"
+ },
+ {
+ "id": 2207,
+ "start": 872.61,
+ "end": 872.73,
+ "text": "we"
+ },
+ {
+ "id": 2208,
+ "start": 872.73,
+ "end": 872.87,
+ "text": "need"
+ },
+ {
+ "id": 2209,
+ "start": 872.87,
+ "end": 872.94,
+ "text": "to"
+ },
+ {
+ "id": 2210,
+ "start": 872.94,
+ "end": 873.09,
+ "text": "be"
+ },
+ {
+ "id": 2211,
+ "start": 873.09,
+ "end": 873.55,
+ "text": "extremely"
+ },
+ {
+ "id": 2212,
+ "start": 873.55,
+ "end": 874.23,
+ "text": "transparent"
+ },
+ {
+ "id": 2213,
+ "start": 874.23,
+ "end": 875.87,
+ "text": "about"
+ },
+ {
+ "id": 2214,
+ "start": 875.87,
+ "end": 876.12,
+ "text": "so"
+ },
+ {
+ "id": 2215,
+ "start": 876.12,
+ "end": 877.04,
+ "text": "that"
+ },
+ {
+ "id": 2216,
+ "start": 877.04,
+ "end": 877.44,
+ "text": "we"
+ },
+ {
+ "id": 2217,
+ "start": 877.44,
+ "end": 877.6,
+ "text": "can"
+ },
+ {
+ "id": 2218,
+ "start": 877.6,
+ "end": 878.32,
+ "text": "welcome"
+ },
+ {
+ "id": 2219,
+ "start": 878.32,
+ "end": 879,
+ "text": "feedback"
+ },
+ {
+ "id": 2220,
+ "start": 879,
+ "end": 879.78,
+ "text": "and"
+ },
+ {
+ "id": 2221,
+ "start": 879.78,
+ "end": 881.2,
+ "text": "evaluation."
+ },
+ {
+ "id": 2222,
+ "start": 881.2,
+ "end": 881.32,
+ "text": "The"
+ },
+ {
+ "id": 2223,
+ "start": 881.32,
+ "end": 881.46,
+ "text": "other"
+ },
+ {
+ "id": 2224,
+ "start": 881.46,
+ "end": 881.66,
+ "text": "thing"
+ },
+ {
+ "id": 2225,
+ "start": 881.66,
+ "end": 881.78,
+ "text": "is"
+ },
+ {
+ "id": 2226,
+ "start": 881.78,
+ "end": 881.97,
+ "text": "just"
+ },
+ {
+ "id": 2227,
+ "start": 881.97,
+ "end": 882.16,
+ "text": "trying"
+ },
+ {
+ "id": 2228,
+ "start": 882.16,
+ "end": 882.23,
+ "text": "to"
+ },
+ {
+ "id": 2229,
+ "start": 882.23,
+ "end": 882.36,
+ "text": "be"
+ },
+ {
+ "id": 2230,
+ "start": 882.36,
+ "end": 882.43,
+ "text": "a"
+ },
+ {
+ "id": 2231,
+ "start": 882.43,
+ "end": 882.61,
+ "text": "lot"
+ },
+ {
+ "id": 2232,
+ "start": 882.61,
+ "end": 882.75,
+ "text": "more"
+ },
+ {
+ "id": 2233,
+ "start": 882.75,
+ "end": 883.43,
+ "text": "transparent"
+ },
+ {
+ "id": 2234,
+ "start": 883.43,
+ "end": 883.52,
+ "text": "in"
+ },
+ {
+ "id": 2235,
+ "start": 883.52,
+ "end": 883.63,
+ "text": "our"
+ },
+ {
+ "id": 2236,
+ "start": 883.63,
+ "end": 885.46,
+ "text": "product."
+ },
+ {
+ "id": 2237,
+ "start": 885.46,
+ "end": 885.76,
+ "text": "Now"
+ },
+ {
+ "id": 2238,
+ "start": 885.76,
+ "end": 885.87,
+ "text": "you"
+ },
+ {
+ "id": 2239,
+ "start": 885.87,
+ "end": 885.98,
+ "text": "can"
+ },
+ {
+ "id": 2240,
+ "start": 885.98,
+ "end": 886.13,
+ "text": "go"
+ },
+ {
+ "id": 2241,
+ "start": 886.13,
+ "end": 886.21,
+ "text": "to"
+ },
+ {
+ "id": 2242,
+ "start": 886.21,
+ "end": 886.36,
+ "text": "any"
+ },
+ {
+ "id": 2243,
+ "start": 886.36,
+ "end": 886.88,
+ "text": "page"
+ },
+ {
+ "id": 2244,
+ "start": 886.88,
+ "end": 887.04,
+ "text": "and"
+ },
+ {
+ "id": 2245,
+ "start": 887.04,
+ "end": 887.21,
+ "text": "see"
+ },
+ {
+ "id": 2246,
+ "start": 887.21,
+ "end": 887.38,
+ "text": "what"
+ },
+ {
+ "id": 2247,
+ "start": 887.38,
+ "end": 887.74,
+ "text": "ads"
+ },
+ {
+ "id": 2248,
+ "start": 887.74,
+ "end": 887.93,
+ "text": "they’re"
+ },
+ {
+ "id": 2249,
+ "start": 887.93,
+ "end": 888.91,
+ "text": "running."
+ },
+ {
+ "id": 2250,
+ "start": 888.91,
+ "end": 889.28,
+ "text": "Anyone"
+ },
+ {
+ "id": 2251,
+ "start": 889.28,
+ "end": 889.38,
+ "text": "who"
+ },
+ {
+ "id": 2252,
+ "start": 889.38,
+ "end": 889.61,
+ "text": "wants"
+ },
+ {
+ "id": 2253,
+ "start": 889.61,
+ "end": 889.72,
+ "text": "to"
+ },
+ {
+ "id": 2254,
+ "start": 889.72,
+ "end": 889.88,
+ "text": "run"
+ },
+ {
+ "id": 2255,
+ "start": 889.88,
+ "end": 889.94,
+ "text": "a"
+ },
+ {
+ "id": 2256,
+ "start": 889.94,
+ "end": 890.49,
+ "text": "political"
+ },
+ {
+ "id": 2257,
+ "start": 890.49,
+ "end": 890.6,
+ "text": "or"
+ },
+ {
+ "id": 2258,
+ "start": 890.6,
+ "end": 890.88,
+ "text": "issue"
+ },
+ {
+ "id": 2259,
+ "start": 890.88,
+ "end": 891.1,
+ "text": "ad"
+ },
+ {
+ "id": 2260,
+ "start": 891.1,
+ "end": 891.31,
+ "text": "needs"
+ },
+ {
+ "id": 2261,
+ "start": 891.31,
+ "end": 891.42,
+ "text": "to"
+ },
+ {
+ "id": 2262,
+ "start": 891.61,
+ "end": 891.9425,
+ "text": "verify."
+ },
+ {
+ "id": 2263,
+ "start": 891.9100000000001,
+ "end": 892.465,
+ "text": "These"
+ },
+ {
+ "id": 2264,
+ "start": 892.21,
+ "end": 892.9875000000001,
+ "text": "are"
+ },
+ {
+ "id": 2265,
+ "start": 892.51,
+ "end": 893.51,
+ "text": "all"
+ },
+ {
+ "id": 2266,
+ "start": 893.51,
+ "end": 893.81,
+ "text": "part"
+ },
+ {
+ "id": 2267,
+ "start": 893.81,
+ "end": 893.9,
+ "text": "of"
+ },
+ {
+ "id": 2268,
+ "start": 893.9,
+ "end": 894.04,
+ "text": "our"
+ },
+ {
+ "id": 2269,
+ "start": 894.04,
+ "end": 894.41,
+ "text": "effort"
+ },
+ {
+ "id": 2270,
+ "start": 894.41,
+ "end": 894.52,
+ "text": "to"
+ },
+ {
+ "id": 2271,
+ "start": 894.52,
+ "end": 894.66,
+ "text": "be"
+ },
+ {
+ "id": 2272,
+ "start": 894.66,
+ "end": 894.82,
+ "text": "more"
+ },
+ {
+ "id": 2273,
+ "start": 894.82,
+ "end": 895.33,
+ "text": "transparent"
+ },
+ {
+ "id": 2274,
+ "start": 895.33,
+ "end": 895.49,
+ "text": "about"
+ },
+ {
+ "id": 2275,
+ "start": 895.49,
+ "end": 895.56,
+ "text": "the"
+ },
+ {
+ "id": 2276,
+ "start": 895.56,
+ "end": 896.1,
+ "text": "company"
+ },
+ {
+ "id": 2277,
+ "start": 896.1,
+ "end": 896.66,
+ "text": "and"
+ },
+ {
+ "id": 2278,
+ "start": 896.66,
+ "end": 896.76,
+ "text": "our"
+ },
+ {
+ "id": 2279,
+ "start": 896.76,
+ "end": 898.17,
+ "text": "product."
+ },
+ {
+ "id": 2280,
+ "start": 898.17,
+ "end": 898.62,
+ "text": "What"
+ },
+ {
+ "id": 2281,
+ "start": 898.62,
+ "end": 898.8,
+ "text": "is"
+ },
+ {
+ "id": 2282,
+ "start": 898.8,
+ "end": 898.92,
+ "text": "the"
+ },
+ {
+ "id": 2283,
+ "start": 898.92,
+ "end": 899.61,
+ "text": "standard"
+ },
+ {
+ "id": 2284,
+ "start": 899.61,
+ "end": 900.17,
+ "text": "that"
+ },
+ {
+ "id": 2285,
+ "start": 900.17,
+ "end": 900.38,
+ "text": "the"
+ },
+ {
+ "id": 2286,
+ "start": 900.38,
+ "end": 900.9,
+ "text": "public"
+ },
+ {
+ "id": 2287,
+ "start": 900.9,
+ "end": 901.11,
+ "text": "should"
+ },
+ {
+ "id": 2288,
+ "start": 901.11,
+ "end": 901.36,
+ "text": "hold"
+ },
+ {
+ "id": 2289,
+ "start": 901.36,
+ "end": 901.91,
+ "text": "Facebook"
+ },
+ {
+ "id": 2290,
+ "start": 901.8100000000001,
+ "end": 902.2,
+ "text": "to"
+ },
+ {
+ "id": 2291,
+ "start": 902.26,
+ "end": 902.49,
+ "text": "in"
+ },
+ {
+ "id": 2292,
+ "start": 902.49,
+ "end": 902.9,
+ "text": "terms"
+ },
+ {
+ "id": 2293,
+ "start": 902.9,
+ "end": 903.09,
+ "text": "of"
+ },
+ {
+ "id": 2294,
+ "start": 903.09,
+ "end": 903.56,
+ "text": "solving"
+ },
+ {
+ "id": 2295,
+ "start": 903.56,
+ "end": 903.81,
+ "text": "some"
+ },
+ {
+ "id": 2296,
+ "start": 903.81,
+ "end": 903.91,
+ "text": "of"
+ },
+ {
+ "id": 2297,
+ "start": 903.91,
+ "end": 904.53,
+ "text": "these"
+ },
+ {
+ "id": 2298,
+ "start": 904.53,
+ "end": 905.87,
+ "text": "seemingly"
+ },
+ {
+ "id": 2299,
+ "start": 905.87,
+ "end": 906.7,
+ "text": "enormous"
+ },
+ {
+ "id": 2300,
+ "start": 906.7,
+ "end": 907.6,
+ "text": "problems?"
+ },
+ {
+ "id": 2301,
+ "start": 907.6,
+ "end": 907.85,
+ "text": "Whether"
+ },
+ {
+ "id": 2302,
+ "start": 907.85,
+ "end": 907.94,
+ "text": "it"
+ },
+ {
+ "id": 2303,
+ "start": 907.94,
+ "end": 908.42,
+ "text": "comes"
+ },
+ {
+ "id": 2304,
+ "start": 908.42,
+ "end": 908.84,
+ "text": "down"
+ },
+ {
+ "id": 2305,
+ "start": 908.84,
+ "end": 909.45,
+ "text": "to"
+ },
+ {
+ "id": 2306,
+ "start": 909.45,
+ "end": 909.89,
+ "text": "hate"
+ },
+ {
+ "id": 2307,
+ "start": 909.89,
+ "end": 910.35,
+ "text": "speech"
+ },
+ {
+ "id": 2308,
+ "start": 910.35,
+ "end": 910.46,
+ "text": "on"
+ },
+ {
+ "id": 2309,
+ "start": 910.46,
+ "end": 910.55,
+ "text": "the"
+ },
+ {
+ "id": 2310,
+ "start": 910.55,
+ "end": 911.24,
+ "text": "platform"
+ },
+ {
+ "id": 2311,
+ "start": 911.24,
+ "end": 912.05,
+ "text": "or"
+ },
+ {
+ "id": 2312,
+ "start": 912.05,
+ "end": 912.65,
+ "text": "influence"
+ },
+ {
+ "id": 2313,
+ "start": 912.65,
+ "end": 913.54,
+ "text": "campaigns,"
+ },
+ {
+ "id": 2314,
+ "start": 913.54,
+ "end": 913.86,
+ "text": "what"
+ },
+ {
+ "id": 2315,
+ "start": 913.86,
+ "end": 914.45,
+ "text": "standard"
+ },
+ {
+ "id": 2316,
+ "start": 914.45,
+ "end": 914.82,
+ "text": "should"
+ },
+ {
+ "id": 2317,
+ "start": 914.82,
+ "end": 914.92,
+ "text": "the"
+ },
+ {
+ "id": 2318,
+ "start": 914.92,
+ "end": 915.4,
+ "text": "public"
+ },
+ {
+ "id": 2319,
+ "start": 915.4,
+ "end": 915.94,
+ "text": "have"
+ },
+ {
+ "id": 2320,
+ "start": 915.94,
+ "end": 916.24,
+ "text": "for"
+ },
+ {
+ "id": 2321,
+ "start": 916.24,
+ "end": 916.34,
+ "text": "the"
+ },
+ {
+ "id": 2322,
+ "start": 916.34,
+ "end": 917.08,
+ "text": "company"
+ },
+ {
+ "id": 2323,
+ "start": 917.08,
+ "end": 917.38,
+ "text": "going"
+ },
+ {
+ "id": 2324,
+ "start": 917.38,
+ "end": 918.16,
+ "text": "forward"
+ },
+ {
+ "id": 2325,
+ "start": 918.16,
+ "end": 918.31,
+ "text": "in"
+ },
+ {
+ "id": 2326,
+ "start": 918.31,
+ "end": 918.64,
+ "text": "terms"
+ },
+ {
+ "id": 2327,
+ "start": 918.64,
+ "end": 918.94,
+ "text": "of"
+ },
+ {
+ "id": 2328,
+ "start": 918.94,
+ "end": 919.98,
+ "text": "how"
+ },
+ {
+ "id": 2329,
+ "start": 919.98,
+ "end": 920.59,
+ "text": "responsive"
+ },
+ {
+ "id": 2330,
+ "start": 920.59,
+ "end": 920.72,
+ "text": "you"
+ },
+ {
+ "id": 2331,
+ "start": 920.72,
+ "end": 920.86,
+ "text": "are"
+ },
+ {
+ "id": 2332,
+ "start": 920.86,
+ "end": 920.94,
+ "text": "to"
+ },
+ {
+ "id": 2333,
+ "start": 920.94,
+ "end": 921.15,
+ "text": "these"
+ },
+ {
+ "id": 2334,
+ "start": 921.15,
+ "end": 923.07,
+ "text": "problems?"
+ },
+ {
+ "id": 2335,
+ "start": 923.07,
+ "end": 923.46,
+ "text": "I"
+ },
+ {
+ "id": 2336,
+ "start": 923.46,
+ "end": 923.99,
+ "text": "think"
+ },
+ {
+ "id": 2337,
+ "start": 923.99,
+ "end": 924.22,
+ "text": "the"
+ },
+ {
+ "id": 2338,
+ "start": 924.22,
+ "end": 924.79,
+ "text": "standard"
+ },
+ {
+ "id": 2339,
+ "start": 924.505,
+ "end": 924.8399999999999,
+ "text": "and"
+ },
+ {
+ "id": 2340,
+ "start": 924.79,
+ "end": 924.89,
+ "text": "the"
+ },
+ {
+ "id": 2341,
+ "start": 924.89,
+ "end": 926.78,
+ "text": "responsibility,"
+ },
+ {
+ "id": 2342,
+ "start": 926.78,
+ "end": 927.42,
+ "text": "what"
+ },
+ {
+ "id": 2343,
+ "start": 927.42,
+ "end": 927.59,
+ "text": "I’m"
+ },
+ {
+ "id": 2344,
+ "start": 927.59,
+ "end": 928.01,
+ "text": "focused"
+ },
+ {
+ "id": 2345,
+ "start": 928.01,
+ "end": 928.17,
+ "text": "on"
+ },
+ {
+ "id": 2346,
+ "start": 928.17,
+ "end": 928.31,
+ "text": "is"
+ },
+ {
+ "id": 2347,
+ "start": 928.31,
+ "end": 928.97,
+ "text": "amplifying"
+ },
+ {
+ "id": 2348,
+ "start": 928.97,
+ "end": 929.19,
+ "text": "good"
+ },
+ {
+ "id": 2349,
+ "start": 929.19,
+ "end": 929.35,
+ "text": "and"
+ },
+ {
+ "id": 2350,
+ "start": 929.8950000000002,
+ "end": 930.0475,
+ "text": "minimizing"
+ },
+ {
+ "id": 2351,
+ "start": 930.6000000000001,
+ "end": 930.745,
+ "text": "the"
+ },
+ {
+ "id": 2352,
+ "start": 931.3050000000001,
+ "end": 931.4425,
+ "text": "bad."
+ },
+ {
+ "id": 2353,
+ "start": 932.01,
+ "end": 932.14,
+ "text": "We"
+ },
+ {
+ "id": 2354,
+ "start": 932.14,
+ "end": 932.25,
+ "text": "need"
+ },
+ {
+ "id": 2355,
+ "start": 932.25,
+ "end": 932.32,
+ "text": "to"
+ },
+ {
+ "id": 2356,
+ "start": 932.32,
+ "end": 932.48,
+ "text": "be"
+ },
+ {
+ "id": 2357,
+ "start": 932.48,
+ "end": 933.07,
+ "text": "transparent"
+ },
+ {
+ "id": 2358,
+ "start": 933.07,
+ "end": 933.23,
+ "text": "about"
+ },
+ {
+ "id": 2359,
+ "start": 933.23,
+ "end": 933.35,
+ "text": "what"
+ },
+ {
+ "id": 2360,
+ "start": 933.35,
+ "end": 933.47,
+ "text": "we’re"
+ },
+ {
+ "id": 2361,
+ "start": 933.47,
+ "end": 933.85,
+ "text": "doing"
+ },
+ {
+ "id": 2362,
+ "start": 933.85,
+ "end": 933.97,
+ "text": "on"
+ },
+ {
+ "id": 2363,
+ "start": 933.97,
+ "end": 934.22,
+ "text": "both"
+ },
+ {
+ "id": 2364,
+ "start": 935.0233333333333,
+ "end": 935.2099999999998,
+ "text": "sides,"
+ },
+ {
+ "id": 2365,
+ "start": 936.0766666666666,
+ "end": 936.1999999999996,
+ "text": "and"
+ },
+ {
+ "id": 2366,
+ "start": 937.13,
+ "end": 937.19,
+ "text": "I"
+ },
+ {
+ "id": 2367,
+ "start": 937.19,
+ "end": 937.39,
+ "text": "think"
+ },
+ {
+ "id": 2368,
+ "start": 937.39,
+ "end": 937.56,
+ "text": "this"
+ },
+ {
+ "id": 2369,
+ "start": 937.56,
+ "end": 937.68,
+ "text": "is"
+ },
+ {
+ "id": 2370,
+ "start": 937.68,
+ "end": 937.76,
+ "text": "an"
+ },
+ {
+ "id": 2371,
+ "start": 937.76,
+ "end": 938.21,
+ "text": "ongoing"
+ },
+ {
+ "id": 2372,
+ "start": 938.21,
+ "end": 939.97,
+ "text": "discussion."
+ },
+ {
+ "id": 2373,
+ "start": 939.97,
+ "end": 940.28,
+ "text": "What’s"
+ },
+ {
+ "id": 2374,
+ "start": 940.28,
+ "end": 940.37,
+ "text": "an"
+ },
+ {
+ "id": 2375,
+ "start": 940.37,
+ "end": 940.77,
+ "text": "ongoing"
+ },
+ {
+ "id": 2376,
+ "start": 940.77,
+ "end": 941.51,
+ "text": "discussion?"
+ },
+ {
+ "id": 2377,
+ "start": 941.51,
+ "end": 941.78,
+ "text": "How"
+ },
+ {
+ "id": 2378,
+ "start": 941.78,
+ "end": 941.9,
+ "text": "we’re"
+ },
+ {
+ "id": 2379,
+ "start": 941.9,
+ "end": 942.33,
+ "text": "doing"
+ },
+ {
+ "id": 2380,
+ "start": 942.33,
+ "end": 942.44,
+ "text": "on"
+ },
+ {
+ "id": 2381,
+ "start": 942.8150000000002,
+ "end": 943.095,
+ "text": "minimizing"
+ },
+ {
+ "id": 2382,
+ "start": 943.3000000000001,
+ "end": 943.75,
+ "text": "the"
+ },
+ {
+ "id": 2383,
+ "start": 943.7850000000002,
+ "end": 944.405,
+ "text": "bad."
+ },
+ {
+ "id": 2384,
+ "start": 944.27,
+ "end": 945.06,
+ "text": "But"
+ },
+ {
+ "id": 2385,
+ "start": 945.06,
+ "end": 945.32,
+ "text": "we’re"
+ },
+ {
+ "id": 2386,
+ "start": 945.32,
+ "end": 945.66,
+ "text": "dealing"
+ },
+ {
+ "id": 2387,
+ "start": 945.66,
+ "end": 945.8,
+ "text": "with"
+ },
+ {
+ "id": 2388,
+ "start": 945.8,
+ "end": 946.3,
+ "text": "such"
+ },
+ {
+ "id": 2389,
+ "start": 946.3,
+ "end": 947.06,
+ "text": "consequential"
+ },
+ {
+ "id": 2390,
+ "start": 947.06,
+ "end": 947.68,
+ "text": "issues,"
+ },
+ {
+ "id": 2391,
+ "start": 947.68,
+ "end": 947.99,
+ "text": "right?"
+ },
+ {
+ "id": 2392,
+ "start": 947.99,
+ "end": 948.08,
+ "text": "We’re"
+ },
+ {
+ "id": 2393,
+ "start": 948.08,
+ "end": 948.39,
+ "text": "talking"
+ },
+ {
+ "id": 2394,
+ "start": 948.39,
+ "end": 949.42,
+ "text": "about"
+ },
+ {
+ "id": 2395,
+ "start": 949.42,
+ "end": 949.96,
+ "text": "integrity"
+ },
+ {
+ "id": 2396,
+ "start": 949.96,
+ "end": 950.05,
+ "text": "of"
+ },
+ {
+ "id": 2397,
+ "start": 950.05,
+ "end": 950.19,
+ "text": "our"
+ },
+ {
+ "id": 2398,
+ "start": 950.19,
+ "end": 950.93,
+ "text": "elections;"
+ },
+ {
+ "id": 2399,
+ "start": 950.6880000000001,
+ "end": 951.318,
+ "text": "we’re"
+ },
+ {
+ "id": 2400,
+ "start": 951.1860000000001,
+ "end": 951.706,
+ "text": "talking"
+ },
+ {
+ "id": 2401,
+ "start": 951.6840000000002,
+ "end": 952.0939999999999,
+ "text": "about—"
+ },
+ {
+ "id": 2402,
+ "start": 952.182,
+ "end": 952.482,
+ "text": "Absolutely."
+ },
+ {
+ "id": 2403,
+ "start": 952.68,
+ "end": 952.87,
+ "text": "—in"
+ },
+ {
+ "id": 2404,
+ "start": 952.87,
+ "end": 953.09,
+ "text": "some"
+ },
+ {
+ "id": 2405,
+ "start": 953.09,
+ "end": 955.47,
+ "text": "cases"
+ },
+ {
+ "id": 2406,
+ "start": 955.47,
+ "end": 955.78,
+ "text": "playing"
+ },
+ {
+ "id": 2407,
+ "start": 955.78,
+ "end": 955.86,
+ "text": "a"
+ },
+ {
+ "id": 2408,
+ "start": 955.86,
+ "end": 956.12,
+ "text": "role"
+ },
+ {
+ "id": 2409,
+ "start": 956.12,
+ "end": 956.19,
+ "text": "in"
+ },
+ {
+ "id": 2410,
+ "start": 956.19,
+ "end": 956.26,
+ "text": "the"
+ },
+ {
+ "id": 2411,
+ "start": 956.26,
+ "end": 960.41,
+ "text": "genocide."
+ },
+ {
+ "id": 2412,
+ "start": 960.41,
+ "end": 960.58,
+ "text": "An"
+ },
+ {
+ "id": 2413,
+ "start": 960.58,
+ "end": 961.06,
+ "text": "ongoing"
+ },
+ {
+ "id": 2414,
+ "start": 961.06,
+ "end": 961.74,
+ "text": "conversation"
+ },
+ {
+ "id": 2415,
+ "start": 961.74,
+ "end": 961.97,
+ "text": "means"
+ },
+ {
+ "id": 2416,
+ "start": 961.97,
+ "end": 962.26,
+ "text": "what"
+ },
+ {
+ "id": 2417,
+ "start": 962.26,
+ "end": 962.79,
+ "text": "exactly"
+ },
+ {
+ "id": 2418,
+ "start": 962.525,
+ "end": 963.2149999999999,
+ "text": "…"
+ },
+ {
+ "id": 2419,
+ "start": 962.79,
+ "end": 963.64,
+ "text": "about"
+ },
+ {
+ "id": 2420,
+ "start": 963.64,
+ "end": 963.71,
+ "text": "a"
+ },
+ {
+ "id": 2421,
+ "start": 963.71,
+ "end": 964.21,
+ "text": "standard"
+ },
+ {
+ "id": 2422,
+ "start": 964.21,
+ "end": 964.35,
+ "text": "for"
+ },
+ {
+ "id": 2423,
+ "start": 964.35,
+ "end": 964.87,
+ "text": "success"
+ },
+ {
+ "id": 2424,
+ "start": 966.2799999999993,
+ "end": 966.7749999999996,
+ "text": "here?"
+ },
+ {
+ "id": 2425,
+ "start": 968.21,
+ "end": 968.68,
+ "text": "This"
+ },
+ {
+ "id": 2426,
+ "start": 968.68,
+ "end": 968.87,
+ "text": "is"
+ },
+ {
+ "id": 2427,
+ "start": 968.87,
+ "end": 968.96,
+ "text": "the"
+ },
+ {
+ "id": 2428,
+ "start": 968.96,
+ "end": 969.22,
+ "text": "number"
+ },
+ {
+ "id": 2429,
+ "start": 969.22,
+ "end": 969.38,
+ "text": "one"
+ },
+ {
+ "id": 2430,
+ "start": 969.38,
+ "end": 969.72,
+ "text": "priority"
+ },
+ {
+ "id": 2431,
+ "start": 969.72,
+ "end": 969.88,
+ "text": "for"
+ },
+ {
+ "id": 2432,
+ "start": 969.88,
+ "end": 969.97,
+ "text": "the"
+ },
+ {
+ "id": 2433,
+ "start": 969.97,
+ "end": 970.57,
+ "text": "company."
+ },
+ {
+ "id": 2434,
+ "start": 970.57,
+ "end": 970.96,
+ "text": "Mark"
+ },
+ {
+ "id": 2435,
+ "start": 970.96,
+ "end": 971.16,
+ "text": "has"
+ },
+ {
+ "id": 2436,
+ "start": 971.16,
+ "end": 971.35,
+ "text": "been"
+ },
+ {
+ "id": 2437,
+ "start": 971.35,
+ "end": 971.63,
+ "text": "out"
+ },
+ {
+ "id": 2438,
+ "start": 971.5799999999999,
+ "end": 971.8375000000001,
+ "text": "there;"
+ },
+ {
+ "id": 2439,
+ "start": 971.81,
+ "end": 972.0450000000001,
+ "text": "Sheryl"
+ },
+ {
+ "id": 2440,
+ "start": 972.04,
+ "end": 972.2525,
+ "text": "[Sandberg]"
+ },
+ {
+ "id": 2441,
+ "start": 972.27,
+ "end": 972.46,
+ "text": "is"
+ },
+ {
+ "id": 2442,
+ "start": 972.46,
+ "end": 972.75,
+ "text": "out"
+ },
+ {
+ "id": 2443,
+ "start": 972.75,
+ "end": 973.1,
+ "text": "there."
+ },
+ {
+ "id": 2444,
+ "start": 973.1,
+ "end": 973.22,
+ "text": "You’re"
+ },
+ {
+ "id": 2445,
+ "start": 973.22,
+ "end": 973.54,
+ "text": "talking"
+ },
+ {
+ "id": 2446,
+ "start": 973.54,
+ "end": 973.6,
+ "text": "to"
+ },
+ {
+ "id": 2447,
+ "start": 973.6,
+ "end": 974.05,
+ "text": "me"
+ },
+ {
+ "id": 2448,
+ "start": 974.05,
+ "end": 974.15,
+ "text": "and"
+ },
+ {
+ "id": 2449,
+ "start": 974.15,
+ "end": 974.2,
+ "text": "a"
+ },
+ {
+ "id": 2450,
+ "start": 974.2,
+ "end": 974.43,
+ "text": "bunch"
+ },
+ {
+ "id": 2451,
+ "start": 974.43,
+ "end": 974.52,
+ "text": "of"
+ },
+ {
+ "id": 2452,
+ "start": 974.52,
+ "end": 974.66,
+ "text": "the"
+ },
+ {
+ "id": 2453,
+ "start": 974.66,
+ "end": 974.98,
+ "text": "other"
+ },
+ {
+ "id": 2454,
+ "start": 974.98,
+ "end": 975.4,
+ "text": "leaders"
+ },
+ {
+ "id": 2455,
+ "start": 975.4,
+ "end": 975.52,
+ "text": "that"
+ },
+ {
+ "id": 2456,
+ "start": 975.52,
+ "end": 975.64,
+ "text": "are"
+ },
+ {
+ "id": 2457,
+ "start": 975.64,
+ "end": 976.05,
+ "text": "working"
+ },
+ {
+ "id": 2458,
+ "start": 976.05,
+ "end": 976.26,
+ "text": "on"
+ },
+ {
+ "id": 2459,
+ "start": 976.26,
+ "end": 976.63,
+ "text": "this,"
+ },
+ {
+ "id": 2460,
+ "start": 976.63,
+ "end": 976.81,
+ "text": "and"
+ },
+ {
+ "id": 2461,
+ "start": 976.81,
+ "end": 976.87,
+ "text": "I"
+ },
+ {
+ "id": 2462,
+ "start": 976.87,
+ "end": 977.903,
+ "text": "think"
+ },
+ {
+ "id": 2463,
+ "start": 977.903,
+ "end": 978.153,
+ "text": "that’s"
+ },
+ {
+ "id": 2464,
+ "start": 978.153,
+ "end": 978.303,
+ "text": "what"
+ },
+ {
+ "id": 2465,
+ "start": 978.303,
+ "end": 978.453,
+ "text": "we"
+ },
+ {
+ "id": 2466,
+ "start": 978.453,
+ "end": 978.853,
+ "text": "mean"
+ },
+ {
+ "id": 2467,
+ "start": 978.853,
+ "end": 979.033,
+ "text": "by"
+ },
+ {
+ "id": 2468,
+ "start": 979.033,
+ "end": 979.413,
+ "text": "having"
+ },
+ {
+ "id": 2469,
+ "start": 979.413,
+ "end": 979.483,
+ "text": "an"
+ },
+ {
+ "id": 2470,
+ "start": 979.483,
+ "end": 979.923,
+ "text": "ongoing"
+ },
+ {
+ "id": 2471,
+ "start": 979.923,
+ "end": 980.563,
+ "text": "conversation."
+ },
+ {
+ "id": 2472,
+ "start": 980.563,
+ "end": 980.703,
+ "text": "This"
+ },
+ {
+ "id": 2473,
+ "start": 980.703,
+ "end": 980.793,
+ "text": "is"
+ },
+ {
+ "id": 2474,
+ "start": 980.793,
+ "end": 981.083,
+ "text": "something"
+ },
+ {
+ "id": 2475,
+ "start": 981.083,
+ "end": 981.243,
+ "text": "that"
+ },
+ {
+ "id": 2476,
+ "start": 981.243,
+ "end": 981.353,
+ "text": "we"
+ },
+ {
+ "id": 2477,
+ "start": 981.353,
+ "end": 981.593,
+ "text": "need"
+ },
+ {
+ "id": 2478,
+ "start": 981.9829999999998,
+ "end": 982.1579999999998,
+ "text": "to—as"
+ },
+ {
+ "id": 2479,
+ "start": 982.613,
+ "end": 982.723,
+ "text": "you"
+ },
+ {
+ "id": 2480,
+ "start": 982.723,
+ "end": 983.013,
+ "text": "said,"
+ },
+ {
+ "id": 2481,
+ "start": 983.013,
+ "end": 983.193,
+ "text": "this"
+ },
+ {
+ "id": 2482,
+ "start": 983.193,
+ "end": 983.363,
+ "text": "is"
+ },
+ {
+ "id": 2483,
+ "start": 983.6480000000001,
+ "end": 983.8080000000002,
+ "text": "serious;"
+ },
+ {
+ "id": 2484,
+ "start": 984.103,
+ "end": 984.253,
+ "text": "this"
+ },
+ {
+ "id": 2485,
+ "start": 984.253,
+ "end": 984.363,
+ "text": "is"
+ },
+ {
+ "id": 2486,
+ "start": 984.363,
+ "end": 985.213,
+ "text": "consequential."
+ },
+ {
+ "id": 2487,
+ "start": 985.213,
+ "end": 985.323,
+ "text": "We"
+ },
+ {
+ "id": 2488,
+ "start": 985.323,
+ "end": 985.573,
+ "text": "take"
+ },
+ {
+ "id": 2489,
+ "start": 985.573,
+ "end": 985.733,
+ "text": "this"
+ },
+ {
+ "id": 2490,
+ "start": 985.733,
+ "end": 986.643,
+ "text": "extremely"
+ },
+ {
+ "id": 2491,
+ "start": 986.3829999999998,
+ "end": 986.908,
+ "text": "…"
+ },
+ {
+ "id": 2492,
+ "start": 987.033,
+ "end": 987.173,
+ "text": "We"
+ },
+ {
+ "id": 2493,
+ "start": 987.173,
+ "end": 987.693,
+ "text": "understand"
+ },
+ {
+ "id": 2494,
+ "start": 987.693,
+ "end": 987.863,
+ "text": "this"
+ },
+ {
+ "id": 2495,
+ "start": 987.863,
+ "end": 988.923,
+ "text": "responsibility,"
+ },
+ {
+ "id": 2496,
+ "start": 988.923,
+ "end": 990.553,
+ "text": "and"
+ },
+ {
+ "id": 2497,
+ "start": 990.553,
+ "end": 991.013,
+ "text": "it’s"
+ },
+ {
+ "id": 2498,
+ "start": 991.013,
+ "end": 991.233,
+ "text": "not"
+ },
+ {
+ "id": 2499,
+ "start": 991.233,
+ "end": 991.583,
+ "text": "going"
+ },
+ {
+ "id": 2500,
+ "start": 991.583,
+ "end": 991.983,
+ "text": "away"
+ },
+ {
+ "id": 2501,
+ "start": 991.983,
+ "end": 993.053,
+ "text": "tomorrow."
+ },
+ {
+ "id": 2502,
+ "start": 993.053,
+ "end": 993.213,
+ "text": "We"
+ },
+ {
+ "id": 2503,
+ "start": 993.213,
+ "end": 993.363,
+ "text": "can"
+ },
+ {
+ "id": 2504,
+ "start": 993.363,
+ "end": 993.543,
+ "text": "only"
+ },
+ {
+ "id": 2505,
+ "start": 993.543,
+ "end": 993.703,
+ "text": "do"
+ },
+ {
+ "id": 2506,
+ "start": 993.703,
+ "end": 994.193,
+ "text": "better."
+ },
+ {
+ "id": 2507,
+ "start": 994.193,
+ "end": 994.373,
+ "text": "We’ve"
+ },
+ {
+ "id": 2508,
+ "start": 994.373,
+ "end": 994.533,
+ "text": "done"
+ },
+ {
+ "id": 2509,
+ "start": 994.533,
+ "end": 994.613,
+ "text": "a"
+ },
+ {
+ "id": 2510,
+ "start": 994.613,
+ "end": 994.893,
+ "text": "lot,"
+ },
+ {
+ "id": 2511,
+ "start": 994.893,
+ "end": 994.993,
+ "text": "and"
+ },
+ {
+ "id": 2512,
+ "start": 994.993,
+ "end": 995.163,
+ "text": "there’s"
+ },
+ {
+ "id": 2513,
+ "start": 995.163,
+ "end": 995.303,
+ "text": "so"
+ },
+ {
+ "id": 2514,
+ "start": 995.303,
+ "end": 995.503,
+ "text": "much"
+ },
+ {
+ "id": 2515,
+ "start": 995.503,
+ "end": 995.693,
+ "text": "more"
+ },
+ {
+ "id": 2516,
+ "start": 995.693,
+ "end": 995.833,
+ "text": "that"
+ },
+ {
+ "id": 2517,
+ "start": 995.833,
+ "end": 995.943,
+ "text": "we"
+ },
+ {
+ "id": 2518,
+ "start": 995.943,
+ "end": 996.113,
+ "text": "need"
+ },
+ {
+ "id": 2519,
+ "start": 996.113,
+ "end": 996.213,
+ "text": "to"
+ },
+ {
+ "id": 2520,
+ "start": 996.7180000000001,
+ "end": 997.153,
+ "text": "do."
+ },
+ {
+ "id": 2521,
+ "start": 997.323,
+ "end": 998.093,
+ "text": "Legally,"
+ },
+ {
+ "id": 2522,
+ "start": 998.093,
+ "end": 998.253,
+ "text": "is"
+ },
+ {
+ "id": 2523,
+ "start": 998.253,
+ "end": 998.433,
+ "text": "there"
+ },
+ {
+ "id": 2524,
+ "start": 998.433,
+ "end": 998.823,
+ "text": "anything"
+ },
+ {
+ "id": 2525,
+ "start": 998.913,
+ "end": 999.2490000000001,
+ "text": "you’d"
+ },
+ {
+ "id": 2526,
+ "start": 999.393,
+ "end": 999.6750000000001,
+ "text": "propose,"
+ },
+ {
+ "id": 2527,
+ "start": 999.873,
+ "end": 1000.101,
+ "text": "any"
+ },
+ {
+ "id": 2528,
+ "start": 1000.3530000000001,
+ "end": 1000.5270000000002,
+ "text": "way"
+ },
+ {
+ "id": 2529,
+ "start": 1000.833,
+ "end": 1000.953,
+ "text": "to"
+ },
+ {
+ "id": 2530,
+ "start": 1000.953,
+ "end": 1001.163,
+ "text": "kind"
+ },
+ {
+ "id": 2531,
+ "start": 1001.163,
+ "end": 1001.273,
+ "text": "of"
+ },
+ {
+ "id": 2532,
+ "start": 1001.273,
+ "end": 1001.643,
+ "text": "hold"
+ },
+ {
+ "id": 2533,
+ "start": 1001.643,
+ "end": 1001.803,
+ "text": "you"
+ },
+ {
+ "id": 2534,
+ "start": 1001.803,
+ "end": 1002.003,
+ "text": "to"
+ },
+ {
+ "id": 2535,
+ "start": 1002.003,
+ "end": 1002.073,
+ "text": "a"
+ },
+ {
+ "id": 2536,
+ "start": 1002.073,
+ "end": 1002.743,
+ "text": "standard"
+ },
+ {
+ "id": 2537,
+ "start": 1002.743,
+ "end": 1003.133,
+ "text": "or"
+ },
+ {
+ "id": 2538,
+ "start": 1003.133,
+ "end": 1003.653,
+ "text": "hold"
+ },
+ {
+ "id": 2539,
+ "start": 1003.653,
+ "end": 1003.873,
+ "text": "you"
+ },
+ {
+ "id": 2540,
+ "start": 1003.873,
+ "end": 1004.613,
+ "text": "to"
+ },
+ {
+ "id": 2541,
+ "start": 1004.613,
+ "end": 1004.883,
+ "text": "being"
+ },
+ {
+ "id": 2542,
+ "start": 1004.883,
+ "end": 1006.033,
+ "text": "responsible?"
+ },
+ {
+ "id": 2543,
+ "start": 1005.743,
+ "end": 1006.393,
+ "text": "Anything"
+ },
+ {
+ "id": 2544,
+ "start": 1006.148,
+ "end": 1006.703,
+ "text": "you’d"
+ },
+ {
+ "id": 2545,
+ "start": 1006.553,
+ "end": 1007.013,
+ "text": "propose"
+ },
+ {
+ "id": 2546,
+ "start": 1007.013,
+ "end": 1007.123,
+ "text": "on"
+ },
+ {
+ "id": 2547,
+ "start": 1007.123,
+ "end": 1007.333,
+ "text": "that"
+ },
+ {
+ "id": 2548,
+ "start": 1007.333,
+ "end": 1008.153,
+ "text": "level?"
+ },
+ {
+ "id": 2549,
+ "start": 1008.153,
+ "end": 1008.273,
+ "text": "I"
+ },
+ {
+ "id": 2550,
+ "start": 1008.273,
+ "end": 1008.543,
+ "text": "think"
+ },
+ {
+ "id": 2551,
+ "start": 1008.543,
+ "end": 1008.703,
+ "text": "we"
+ },
+ {
+ "id": 2552,
+ "start": 1008.703,
+ "end": 1009.003,
+ "text": "are"
+ },
+ {
+ "id": 2553,
+ "start": 1009.003,
+ "end": 1009.343,
+ "text": "open"
+ },
+ {
+ "id": 2554,
+ "start": 1009.343,
+ "end": 1009.503,
+ "text": "to"
+ },
+ {
+ "id": 2555,
+ "start": 1009.7429999999999,
+ "end": 1009.8679999999999,
+ "text": "that."
+ },
+ {
+ "id": 2556,
+ "start": 1010.143,
+ "end": 1010.233,
+ "text": "We"
+ },
+ {
+ "id": 2557,
+ "start": 1010.233,
+ "end": 1010.423,
+ "text": "don’t"
+ },
+ {
+ "id": 2558,
+ "start": 1010.423,
+ "end": 1010.583,
+ "text": "have"
+ },
+ {
+ "id": 2559,
+ "start": 1010.583,
+ "end": 1010.673,
+ "text": "an"
+ },
+ {
+ "id": 2560,
+ "start": 1010.8929999999999,
+ "end": 1011.018,
+ "text": "answer,"
+ },
+ {
+ "id": 2561,
+ "start": 1011.203,
+ "end": 1011.363,
+ "text": "and"
+ },
+ {
+ "id": 2562,
+ "start": 1011.363,
+ "end": 1011.463,
+ "text": "we"
+ },
+ {
+ "id": 2563,
+ "start": 1011.463,
+ "end": 1011.663,
+ "text": "are"
+ },
+ {
+ "id": 2564,
+ "start": 1011.663,
+ "end": 1012.123,
+ "text": "working"
+ },
+ {
+ "id": 2565,
+ "start": 1012.123,
+ "end": 1012.843,
+ "text": "with"
+ },
+ {
+ "id": 2566,
+ "start": 1012.843,
+ "end": 1013.513,
+ "text": "governments,"
+ },
+ {
+ "id": 2567,
+ "start": 1013.513,
+ "end": 1014.373,
+ "text": "companies,"
+ },
+ {
+ "id": 2568,
+ "start": 1014.373,
+ "end": 1014.603,
+ "text": "other"
+ },
+ {
+ "id": 2569,
+ "start": 1014.603,
+ "end": 1014.843,
+ "text": "people"
+ },
+ {
+ "id": 2570,
+ "start": 1014.723,
+ "end": 1014.923,
+ "text": "in"
+ },
+ {
+ "id": 2571,
+ "start": 1014.843,
+ "end": 1015.003,
+ "text": "our"
+ },
+ {
+ "id": 2572,
+ "start": 1015.003,
+ "end": 1015.463,
+ "text": "industry"
+ },
+ {
+ "id": 2573,
+ "start": 1015.463,
+ "end": 1015.613,
+ "text": "to"
+ },
+ {
+ "id": 2574,
+ "start": 1015.613,
+ "end": 1015.953,
+ "text": "figure"
+ },
+ {
+ "id": 2575,
+ "start": 1015.953,
+ "end": 1016.133,
+ "text": "out"
+ },
+ {
+ "id": 2576,
+ "start": 1016.133,
+ "end": 1016.353,
+ "text": "what"
+ },
+ {
+ "id": 2577,
+ "start": 1016.353,
+ "end": 1016.543,
+ "text": "is"
+ },
+ {
+ "id": 2578,
+ "start": 1016.543,
+ "end": 1016.663,
+ "text": "the"
+ },
+ {
+ "id": 2579,
+ "start": 1016.663,
+ "end": 1016.913,
+ "text": "right"
+ },
+ {
+ "id": 2580,
+ "start": 1017.108,
+ "end": 1017.328,
+ "text": "standard,"
+ },
+ {
+ "id": 2581,
+ "start": 1017.553,
+ "end": 1017.743,
+ "text": "what"
+ },
+ {
+ "id": 2582,
+ "start": 1017.743,
+ "end": 1017.853,
+ "text": "are"
+ },
+ {
+ "id": 2583,
+ "start": 1017.853,
+ "end": 1017.983,
+ "text": "the"
+ },
+ {
+ "id": 2584,
+ "start": 1017.983,
+ "end": 1019.793,
+ "text": "right"
+ },
+ {
+ "id": 2585,
+ "start": 1019.793,
+ "end": 1020.213,
+ "text": "forms"
+ },
+ {
+ "id": 2586,
+ "start": 1020.213,
+ "end": 1020.343,
+ "text": "of"
+ },
+ {
+ "id": 2587,
+ "start": 1022.6829999999991,
+ "end": 1022.8580000000002,
+ "text": "accountability."
+ },
+ {
+ "id": 2588,
+ "start": 1025.153,
+ "end": 1025.373,
+ "text": "In"
+ },
+ {
+ "id": 2589,
+ "start": 1025.373,
+ "end": 1025.793,
+ "text": "terms"
+ },
+ {
+ "id": 2590,
+ "start": 1025.793,
+ "end": 1026.943,
+ "text": "of"
+ },
+ {
+ "id": 2591,
+ "start": 1026.943,
+ "end": 1027.253,
+ "text": "these"
+ },
+ {
+ "id": 2592,
+ "start": 1027.253,
+ "end": 1027.793,
+ "text": "midterms"
+ },
+ {
+ "id": 2593,
+ "start": 1027.793,
+ "end": 1027.913,
+ "text": "that"
+ },
+ {
+ "id": 2594,
+ "start": 1027.888,
+ "end": 1028.118,
+ "text": "are"
+ },
+ {
+ "id": 2595,
+ "start": 1027.983,
+ "end": 1028.323,
+ "text": "coming"
+ },
+ {
+ "id": 2596,
+ "start": 1028.323,
+ "end": 1028.813,
+ "text": "up,"
+ },
+ {
+ "id": 2597,
+ "start": 1028.813,
+ "end": 1029.053,
+ "text": "how"
+ },
+ {
+ "id": 2598,
+ "start": 1029.053,
+ "end": 1029.673,
+ "text": "confident"
+ },
+ {
+ "id": 2599,
+ "start": 1029.673,
+ "end": 1029.803,
+ "text": "are"
+ },
+ {
+ "id": 2600,
+ "start": 1029.803,
+ "end": 1030.423,
+ "text": "you"
+ },
+ {
+ "id": 2601,
+ "start": 1030.423,
+ "end": 1031.353,
+ "text": "that"
+ },
+ {
+ "id": 2602,
+ "start": 1031.353,
+ "end": 1031.633,
+ "text": "you’ve"
+ },
+ {
+ "id": 2603,
+ "start": 1031.633,
+ "end": 1031.853,
+ "text": "really"
+ },
+ {
+ "id": 2604,
+ "start": 1031.853,
+ "end": 1032.173,
+ "text": "turned"
+ },
+ {
+ "id": 2605,
+ "start": 1032.173,
+ "end": 1032.453,
+ "text": "things"
+ },
+ {
+ "id": 2606,
+ "start": 1032.453,
+ "end": 1032.793,
+ "text": "around"
+ },
+ {
+ "id": 2607,
+ "start": 1032.793,
+ "end": 1033.063,
+ "text": "enough"
+ },
+ {
+ "id": 2608,
+ "start": 1033.108,
+ "end": 1033.4830000000002,
+ "text": "to"
+ },
+ {
+ "id": 2609,
+ "start": 1033.423,
+ "end": 1033.903,
+ "text": "say"
+ },
+ {
+ "id": 2610,
+ "start": 1033.903,
+ "end": 1034.653,
+ "text": "confidently"
+ },
+ {
+ "id": 2611,
+ "start": 1034.653,
+ "end": 1034.963,
+ "text": "that"
+ },
+ {
+ "id": 2612,
+ "start": 1035.6696666666664,
+ "end": 1035.923,
+ "text": "Facebook"
+ },
+ {
+ "id": 2613,
+ "start": 1036.6863333333329,
+ "end": 1036.883,
+ "text": "is"
+ },
+ {
+ "id": 2614,
+ "start": 1037.703,
+ "end": 1037.843,
+ "text": "on"
+ },
+ {
+ "id": 2615,
+ "start": 1037.843,
+ "end": 1038.163,
+ "text": "top"
+ },
+ {
+ "id": 2616,
+ "start": 1038.163,
+ "end": 1038.343,
+ "text": "of"
+ },
+ {
+ "id": 2617,
+ "start": 1038.343,
+ "end": 1039.043,
+ "text": "the"
+ },
+ {
+ "id": 2618,
+ "start": 1039.043,
+ "end": 1039.873,
+ "text": "misinformation"
+ },
+ {
+ "id": 2619,
+ "start": 1039.873,
+ "end": 1040.403,
+ "text": "problem,"
+ },
+ {
+ "id": 2620,
+ "start": 1040.403,
+ "end": 1040.483,
+ "text": "the"
+ },
+ {
+ "id": 2621,
+ "start": 1040.483,
+ "end": 1041.253,
+ "text": "disinformation"
+ },
+ {
+ "id": 2622,
+ "start": 1041.253,
+ "end": 1041.643,
+ "text": "problem,"
+ },
+ {
+ "id": 2623,
+ "start": 1041.643,
+ "end": 1041.823,
+ "text": "any"
+ },
+ {
+ "id": 2624,
+ "start": 1041.823,
+ "end": 1041.883,
+ "text": "of"
+ },
+ {
+ "id": 2625,
+ "start": 1041.883,
+ "end": 1041.973,
+ "text": "the"
+ },
+ {
+ "id": 2626,
+ "start": 1041.973,
+ "end": 1042.393,
+ "text": "problems"
+ },
+ {
+ "id": 2627,
+ "start": 1042.393,
+ "end": 1042.543,
+ "text": "with"
+ },
+ {
+ "id": 2628,
+ "start": 1042.543,
+ "end": 1042.903,
+ "text": "election"
+ },
+ {
+ "id": 2629,
+ "start": 1043.5379999999998,
+ "end": 1043.7830000000001,
+ "text": "integrity?"
+ },
+ {
+ "id": 2630,
+ "start": 1044.533,
+ "end": 1044.663,
+ "text": "You’re"
+ },
+ {
+ "id": 2631,
+ "start": 1044.663,
+ "end": 1044.883,
+ "text": "asking"
+ },
+ {
+ "id": 2632,
+ "start": 1044.883,
+ "end": 1045.043,
+ "text": "about"
+ },
+ {
+ "id": 2633,
+ "start": 1045.043,
+ "end": 1045.863,
+ "text": "midterm"
+ },
+ {
+ "id": 2634,
+ "start": 1045.863,
+ "end": 1046.563,
+ "text": "readiness,"
+ },
+ {
+ "id": 2635,
+ "start": 1046.563,
+ "end": 1046.793,
+ "text": "and"
+ },
+ {
+ "id": 2636,
+ "start": 1046.793,
+ "end": 1047.033,
+ "text": "Mark"
+ },
+ {
+ "id": 2637,
+ "start": 1047.033,
+ "end": 1047.353,
+ "text": "actually"
+ },
+ {
+ "id": 2638,
+ "start": 1047.353,
+ "end": 1047.543,
+ "text": "just"
+ },
+ {
+ "id": 2639,
+ "start": 1047.543,
+ "end": 1048.023,
+ "text": "published"
+ },
+ {
+ "id": 2640,
+ "start": 1048.023,
+ "end": 1048.213,
+ "text": "an"
+ },
+ {
+ "id": 2641,
+ "start": 1048.3629999999998,
+ "end": 1048.6380000000001,
+ "text": "op-ed"
+ },
+ {
+ "id": 2642,
+ "start": 1048.703,
+ "end": 1049.063,
+ "text": "in"
+ },
+ {
+ "id": 2643,
+ "start": 1049.063,
+ "end": 1049.143,
+ "text": "The"
+ },
+ {
+ "id": 2644,
+ "start": 1049.143,
+ "end": 1049.603,
+ "text": "Washington"
+ },
+ {
+ "id": 2645,
+ "start": 1049.603,
+ "end": 1049.883,
+ "text": "Post"
+ },
+ {
+ "id": 2646,
+ "start": 1049.883,
+ "end": 1050.383,
+ "text": "yesterday"
+ },
+ {
+ "id": 2647,
+ "start": 1050.383,
+ "end": 1050.653,
+ "text": "about"
+ },
+ {
+ "id": 2648,
+ "start": 1050.653,
+ "end": 1050.773,
+ "text": "our"
+ },
+ {
+ "id": 2649,
+ "start": 1050.773,
+ "end": 1051.253,
+ "text": "readiness"
+ },
+ {
+ "id": 2650,
+ "start": 1051.253,
+ "end": 1051.373,
+ "text": "for"
+ },
+ {
+ "id": 2651,
+ "start": 1051.373,
+ "end": 1051.463,
+ "text": "the"
+ },
+ {
+ "id": 2652,
+ "start": 1052.098,
+ "end": 1052.198,
+ "text": "midterms."
+ },
+ {
+ "id": 2653,
+ "start": 1052.823,
+ "end": 1052.933,
+ "text": "We"
+ },
+ {
+ "id": 2654,
+ "start": 1052.933,
+ "end": 1053.173,
+ "text": "feel"
+ },
+ {
+ "id": 2655,
+ "start": 1053.173,
+ "end": 1055.563,
+ "text": "ready."
+ },
+ {
+ "id": 2656,
+ "start": 1055.563,
+ "end": 1056.753,
+ "text": "Since"
+ },
+ {
+ "id": 2657,
+ "start": 1056.753,
+ "end": 1057.203,
+ "text": "we"
+ },
+ {
+ "id": 2658,
+ "start": 1057.203,
+ "end": 1057.563,
+ "text": "started"
+ },
+ {
+ "id": 2659,
+ "start": 1057.563,
+ "end": 1057.693,
+ "text": "this"
+ },
+ {
+ "id": 2660,
+ "start": 1057.693,
+ "end": 1057.893,
+ "text": "whole"
+ },
+ {
+ "id": 2661,
+ "start": 1057.893,
+ "end": 1058.483,
+ "text": "initiative,"
+ },
+ {
+ "id": 2662,
+ "start": 1058.483,
+ "end": 1058.693,
+ "text": "there’s"
+ },
+ {
+ "id": 2663,
+ "start": 1058.693,
+ "end": 1058.823,
+ "text": "been"
+ },
+ {
+ "id": 2664,
+ "start": 1058.823,
+ "end": 1058.903,
+ "text": "a"
+ },
+ {
+ "id": 2665,
+ "start": 1058.9830000000002,
+ "end": 1059.078,
+ "text": "ton"
+ },
+ {
+ "id": 2666,
+ "start": 1059.143,
+ "end": 1059.253,
+ "text": "of"
+ },
+ {
+ "id": 2667,
+ "start": 1059.253,
+ "end": 1059.483,
+ "text": "work"
+ },
+ {
+ "id": 2668,
+ "start": 1059.483,
+ "end": 1059.623,
+ "text": "that"
+ },
+ {
+ "id": 2669,
+ "start": 1059.623,
+ "end": 1059.793,
+ "text": "we’ve"
+ },
+ {
+ "id": 2670,
+ "start": 1059.793,
+ "end": 1059.993,
+ "text": "done"
+ },
+ {
+ "id": 2671,
+ "start": 1059.993,
+ "end": 1060.293,
+ "text": "here"
+ },
+ {
+ "id": 2672,
+ "start": 1060.293,
+ "end": 1061.153,
+ "text": "around"
+ },
+ {
+ "id": 2673,
+ "start": 1061.153,
+ "end": 1061.483,
+ "text": "fighting"
+ },
+ {
+ "id": 2674,
+ "start": 1061.483,
+ "end": 1061.673,
+ "text": "fake"
+ },
+ {
+ "id": 2675,
+ "start": 1061.673,
+ "end": 1062.203,
+ "text": "accounts,"
+ },
+ {
+ "id": 2676,
+ "start": 1062.203,
+ "end": 1063.143,
+ "text": "misinformation."
+ },
+ {
+ "id": 2677,
+ "start": 1063.143,
+ "end": 1063.283,
+ "text": "We’ve"
+ },
+ {
+ "id": 2678,
+ "start": 1063.283,
+ "end": 1063.443,
+ "text": "been"
+ },
+ {
+ "id": 2679,
+ "start": 1063.9129999999998,
+ "end": 1064.173,
+ "text": "practicing"
+ },
+ {
+ "id": 2680,
+ "start": 1064.543,
+ "end": 1064.903,
+ "text": "and"
+ },
+ {
+ "id": 2681,
+ "start": 1064.903,
+ "end": 1065.183,
+ "text": "running"
+ },
+ {
+ "id": 2682,
+ "start": 1065.183,
+ "end": 1065.303,
+ "text": "our"
+ },
+ {
+ "id": 2683,
+ "start": 1065.303,
+ "end": 1065.953,
+ "text": "drills"
+ },
+ {
+ "id": 2684,
+ "start": 1065.713,
+ "end": 1066.1680000000001,
+ "text": "in"
+ },
+ {
+ "id": 2685,
+ "start": 1066.123,
+ "end": 1066.383,
+ "text": "all"
+ },
+ {
+ "id": 2686,
+ "start": 1066.383,
+ "end": 1066.463,
+ "text": "of"
+ },
+ {
+ "id": 2687,
+ "start": 1066.463,
+ "end": 1066.593,
+ "text": "the"
+ },
+ {
+ "id": 2688,
+ "start": 1066.593,
+ "end": 1067.013,
+ "text": "upcoming"
+ },
+ {
+ "id": 2689,
+ "start": 1067.013,
+ "end": 1067.643,
+ "text": "primaries"
+ },
+ {
+ "id": 2690,
+ "start": 1067.643,
+ "end": 1068.063,
+ "text": "leading"
+ },
+ {
+ "id": 2691,
+ "start": 1068.063,
+ "end": 1068.213,
+ "text": "up"
+ },
+ {
+ "id": 2692,
+ "start": 1068.213,
+ "end": 1068.393,
+ "text": "to"
+ },
+ {
+ "id": 2693,
+ "start": 1068.393,
+ "end": 1068.803,
+ "text": "the"
+ },
+ {
+ "id": 2694,
+ "start": 1069.2430000000004,
+ "end": 1069.493,
+ "text": "midterms."
+ },
+ {
+ "id": 2695,
+ "start": 1070.093,
+ "end": 1070.183,
+ "text": "There"
+ },
+ {
+ "id": 2696,
+ "start": 1070.183,
+ "end": 1070.283,
+ "text": "have"
+ },
+ {
+ "id": 2697,
+ "start": 1070.283,
+ "end": 1070.543,
+ "text": "also"
+ },
+ {
+ "id": 2698,
+ "start": 1070.543,
+ "end": 1070.733,
+ "text": "been"
+ },
+ {
+ "id": 2699,
+ "start": 1070.733,
+ "end": 1071.103,
+ "text": "several"
+ },
+ {
+ "id": 2700,
+ "start": 1071.103,
+ "end": 1071.643,
+ "text": "elections"
+ },
+ {
+ "id": 2701,
+ "start": 1071.643,
+ "end": 1071.823,
+ "text": "in"
+ },
+ {
+ "id": 2702,
+ "start": 1071.823,
+ "end": 1072.083,
+ "text": "other"
+ },
+ {
+ "id": 2703,
+ "start": 1072.083,
+ "end": 1072.843,
+ "text": "countries"
+ },
+ {
+ "id": 2704,
+ "start": 1072.843,
+ "end": 1073.063,
+ "text": "that"
+ },
+ {
+ "id": 2705,
+ "start": 1073.063,
+ "end": 1074.463,
+ "text": "we’ve"
+ },
+ {
+ "id": 2706,
+ "start": 1074.463,
+ "end": 1074.903,
+ "text": "been"
+ },
+ {
+ "id": 2707,
+ "start": 1074.903,
+ "end": 1075.263,
+ "text": "working"
+ },
+ {
+ "id": 2708,
+ "start": 1075.263,
+ "end": 1075.373,
+ "text": "on"
+ },
+ {
+ "id": 2709,
+ "start": 1075.373,
+ "end": 1076.193,
+ "text": "defending,"
+ },
+ {
+ "id": 2710,
+ "start": 1076.193,
+ "end": 1077.543,
+ "text": "so"
+ },
+ {
+ "id": 2711,
+ "start": 1077.543,
+ "end": 1077.723,
+ "text": "I"
+ },
+ {
+ "id": 2712,
+ "start": 1077.723,
+ "end": 1077.933,
+ "text": "feel"
+ },
+ {
+ "id": 2713,
+ "start": 1077.933,
+ "end": 1078.123,
+ "text": "like"
+ },
+ {
+ "id": 2714,
+ "start": 1078.123,
+ "end": 1078.703,
+ "text": "we"
+ },
+ {
+ "id": 2715,
+ "start": 1078.703,
+ "end": 1078.823,
+ "text": "are"
+ },
+ {
+ "id": 2716,
+ "start": 1078.823,
+ "end": 1079.623,
+ "text": "ready."
+ },
+ {
+ "id": 2717,
+ "start": 1079.623,
+ "end": 1081.173,
+ "text": "And"
+ },
+ {
+ "id": 2718,
+ "start": 1081.173,
+ "end": 1081.473,
+ "text": "what"
+ },
+ {
+ "id": 2719,
+ "start": 1081.473,
+ "end": 1082.133,
+ "text": "happens"
+ },
+ {
+ "id": 2720,
+ "start": 1082.133,
+ "end": 1082.343,
+ "text": "if"
+ },
+ {
+ "id": 2721,
+ "start": 1082.343,
+ "end": 1082.703,
+ "text": "something"
+ },
+ {
+ "id": 2722,
+ "start": 1082.703,
+ "end": 1082.933,
+ "text": "goes"
+ },
+ {
+ "id": 2723,
+ "start": 1082.933,
+ "end": 1084.323,
+ "text": "wrong?"
+ },
+ {
+ "id": 2724,
+ "start": 1084.323,
+ "end": 1084.523,
+ "text": "It’s"
+ },
+ {
+ "id": 2725,
+ "start": 1084.523,
+ "end": 1084.583,
+ "text": "a"
+ },
+ {
+ "id": 2726,
+ "start": 1084.583,
+ "end": 1085.293,
+ "text": "hypothetical,"
+ },
+ {
+ "id": 2727,
+ "start": 1085.293,
+ "end": 1085.433,
+ "text": "but"
+ },
+ {
+ "id": 2728,
+ "start": 1085.433,
+ "end": 1085.553,
+ "text": "I’m"
+ },
+ {
+ "id": 2729,
+ "start": 1085.933,
+ "end": 1086.113,
+ "text": "curious."
+ },
+ {
+ "id": 2730,
+ "start": 1086.433,
+ "end": 1086.673,
+ "text": "If"
+ },
+ {
+ "id": 2731,
+ "start": 1086.673,
+ "end": 1086.773,
+ "text": "the"
+ },
+ {
+ "id": 2732,
+ "start": 1086.773,
+ "end": 1087.183,
+ "text": "election"
+ },
+ {
+ "id": 2733,
+ "start": 1087.183,
+ "end": 1087.623,
+ "text": "doesn’t"
+ },
+ {
+ "id": 2734,
+ "start": 1087.623,
+ "end": 1087.863,
+ "text": "go"
+ },
+ {
+ "id": 2735,
+ "start": 1087.863,
+ "end": 1088.213,
+ "text": "well,"
+ },
+ {
+ "id": 2736,
+ "start": 1088.213,
+ "end": 1088.483,
+ "text": "if"
+ },
+ {
+ "id": 2737,
+ "start": 1088.483,
+ "end": 1089.143,
+ "text": "there’s"
+ },
+ {
+ "id": 2738,
+ "start": 1089.143,
+ "end": 1089.793,
+ "text": "information"
+ },
+ {
+ "id": 2739,
+ "start": 1089.793,
+ "end": 1090.033,
+ "text": "that’s"
+ },
+ {
+ "id": 2740,
+ "start": 1090.033,
+ "end": 1090.913,
+ "text": "found,"
+ },
+ {
+ "id": 2741,
+ "start": 1090.913,
+ "end": 1092.243,
+ "text": "what"
+ },
+ {
+ "id": 2742,
+ "start": 1092.243,
+ "end": 1092.343,
+ "text": "are"
+ },
+ {
+ "id": 2743,
+ "start": 1092.343,
+ "end": 1092.523,
+ "text": "we"
+ },
+ {
+ "id": 2744,
+ "start": 1092.523,
+ "end": 1092.683,
+ "text": "to"
+ },
+ {
+ "id": 2745,
+ "start": 1092.683,
+ "end": 1093.333,
+ "text": "expect"
+ },
+ {
+ "id": 2746,
+ "start": 1093.333,
+ "end": 1093.643,
+ "text": "from"
+ },
+ {
+ "id": 2747,
+ "start": 1093.643,
+ "end": 1094.243,
+ "text": "Facebook"
+ },
+ {
+ "id": 2748,
+ "start": 1094.243,
+ "end": 1094.383,
+ "text": "if"
+ },
+ {
+ "id": 2749,
+ "start": 1094.383,
+ "end": 1095.003,
+ "text": "something"
+ },
+ {
+ "id": 2750,
+ "start": 1095.003,
+ "end": 1095.373,
+ "text": "doesn’t"
+ },
+ {
+ "id": 2751,
+ "start": 1095.373,
+ "end": 1095.593,
+ "text": "go"
+ },
+ {
+ "id": 2752,
+ "start": 1095.593,
+ "end": 1096.403,
+ "text": "right?"
+ },
+ {
+ "id": 2753,
+ "start": 1096.403,
+ "end": 1098.04,
+ "text": "And"
+ },
+ {
+ "id": 2754,
+ "start": 1098.04,
+ "end": 1098.35,
+ "text": "in"
+ },
+ {
+ "id": 2755,
+ "start": 1098.35,
+ "end": 1098.56,
+ "text": "what"
+ },
+ {
+ "id": 2756,
+ "start": 1098.56,
+ "end": 1098.83,
+ "text": "way"
+ },
+ {
+ "id": 2757,
+ "start": 1098.83,
+ "end": 1098.98,
+ "text": "is"
+ },
+ {
+ "id": 2758,
+ "start": 1099.3600000000001,
+ "end": 1099.5533333333335,
+ "text": "there"
+ },
+ {
+ "id": 2759,
+ "start": 1099.89,
+ "end": 1100.1266666666668,
+ "text": "to"
+ },
+ {
+ "id": 2760,
+ "start": 1100.42,
+ "end": 1100.7,
+ "text": "have,"
+ },
+ {
+ "id": 2761,
+ "start": 1100.7,
+ "end": 1101.15,
+ "text": "again,"
+ },
+ {
+ "id": 2762,
+ "start": 1101.15,
+ "end": 1102.43,
+ "text": "accountability"
+ },
+ {
+ "id": 2763,
+ "start": 1102.43,
+ "end": 1103.05,
+ "text": "for"
+ },
+ {
+ "id": 2764,
+ "start": 1103.05,
+ "end": 1103.43,
+ "text": "something"
+ },
+ {
+ "id": 2765,
+ "start": 1103.43,
+ "end": 1103.65,
+ "text": "going"
+ },
+ {
+ "id": 2766,
+ "start": 1104.5050000000003,
+ "end": 1104.7799999999997,
+ "text": "wrong?"
+ },
+ {
+ "id": 2767,
+ "start": 1105.58,
+ "end": 1105.91,
+ "text": "We"
+ },
+ {
+ "id": 2768,
+ "start": 1105.91,
+ "end": 1106.26,
+ "text": "don’t"
+ },
+ {
+ "id": 2769,
+ "start": 1106.26,
+ "end": 1106.37,
+ "text": "know"
+ },
+ {
+ "id": 2770,
+ "start": 1106.37,
+ "end": 1106.49,
+ "text": "what"
+ },
+ {
+ "id": 2771,
+ "start": 1106.49,
+ "end": 1106.61,
+ "text": "to"
+ },
+ {
+ "id": 2772,
+ "start": 1106.61,
+ "end": 1107.06,
+ "text": "expect"
+ },
+ {
+ "id": 2773,
+ "start": 1107.06,
+ "end": 1107.2,
+ "text": "for"
+ },
+ {
+ "id": 2774,
+ "start": 1107.2,
+ "end": 1107.29,
+ "text": "the"
+ },
+ {
+ "id": 2775,
+ "start": 1107.29,
+ "end": 1107.89,
+ "text": "midterm."
+ },
+ {
+ "id": 2776,
+ "start": 1107.89,
+ "end": 1107.99,
+ "text": "I"
+ },
+ {
+ "id": 2777,
+ "start": 1107.99,
+ "end": 1108.27,
+ "text": "think"
+ },
+ {
+ "id": 2778,
+ "start": 1108.27,
+ "end": 1108.67,
+ "text": "that’s"
+ },
+ {
+ "id": 2779,
+ "start": 1108.67,
+ "end": 1108.93,
+ "text": "why"
+ },
+ {
+ "id": 2780,
+ "start": 1108.93,
+ "end": 1109.08,
+ "text": "we"
+ },
+ {
+ "id": 2781,
+ "start": 1109.08,
+ "end": 1109.31,
+ "text": "put"
+ },
+ {
+ "id": 2782,
+ "start": 1109.1566666666665,
+ "end": 1109.33,
+ "text": "in"
+ },
+ {
+ "id": 2783,
+ "start": 1109.2333333333333,
+ "end": 1109.35,
+ "text": "place"
+ },
+ {
+ "id": 2784,
+ "start": 1109.31,
+ "end": 1109.37,
+ "text": "a"
+ },
+ {
+ "id": 2785,
+ "start": 1109.37,
+ "end": 1110.26,
+ "text": "lot"
+ },
+ {
+ "id": 2786,
+ "start": 1110.26,
+ "end": 1110.34,
+ "text": "of"
+ },
+ {
+ "id": 2787,
+ "start": 1110.34,
+ "end": 1111.3,
+ "text": "processes"
+ },
+ {
+ "id": 2788,
+ "start": 1111.3,
+ "end": 1111.66,
+ "text": "to"
+ },
+ {
+ "id": 2789,
+ "start": 1111.66,
+ "end": 1111.94,
+ "text": "try"
+ },
+ {
+ "id": 2790,
+ "start": 1111.94,
+ "end": 1112.06,
+ "text": "to"
+ },
+ {
+ "id": 2791,
+ "start": 1112.06,
+ "end": 1112.37,
+ "text": "react"
+ },
+ {
+ "id": 2792,
+ "start": 1112.56,
+ "end": 1112.8,
+ "text": "quickly."
+ },
+ {
+ "id": 2793,
+ "start": 1113.06,
+ "end": 1113.23,
+ "text": "Again,"
+ },
+ {
+ "id": 2794,
+ "start": 1113.56,
+ "end": 1113.66,
+ "text": "we"
+ },
+ {
+ "id": 2795,
+ "start": 1113.66,
+ "end": 1113.87,
+ "text": "can’t"
+ },
+ {
+ "id": 2796,
+ "start": 1113.87,
+ "end": 1114.41,
+ "text": "anticipate"
+ },
+ {
+ "id": 2797,
+ "start": 1114.41,
+ "end": 1115.11,
+ "text": "everything."
+ },
+ {
+ "id": 2798,
+ "start": 1115.11,
+ "end": 1115.26,
+ "text": "We"
+ },
+ {
+ "id": 2799,
+ "start": 1115.26,
+ "end": 1115.61,
+ "text": "have"
+ },
+ {
+ "id": 2800,
+ "start": 1115.61,
+ "end": 1115.76,
+ "text": "a"
+ },
+ {
+ "id": 2801,
+ "start": 1115.76,
+ "end": 1116.32,
+ "text": "dedicated"
+ },
+ {
+ "id": 2802,
+ "start": 1116.32,
+ "end": 1116.6,
+ "text": "war"
+ },
+ {
+ "id": 2803,
+ "start": 1116.6,
+ "end": 1117.08,
+ "text": "room"
+ },
+ {
+ "id": 2804,
+ "start": 1117.08,
+ "end": 1117.53,
+ "text": "of"
+ },
+ {
+ "id": 2805,
+ "start": 1117.53,
+ "end": 1118.11,
+ "text": "people"
+ },
+ {
+ "id": 2806,
+ "start": 1118.11,
+ "end": 1118.38,
+ "text": "that"
+ },
+ {
+ "id": 2807,
+ "start": 1118.38,
+ "end": 1118.75,
+ "text": "are"
+ },
+ {
+ "id": 2808,
+ "start": 1118.75,
+ "end": 1119.05,
+ "text": "working"
+ },
+ {
+ "id": 2809,
+ "start": 1119.05,
+ "end": 1119.18,
+ "text": "on"
+ },
+ {
+ "id": 2810,
+ "start": 1119.18,
+ "end": 1119.5,
+ "text": "safety"
+ },
+ {
+ "id": 2811,
+ "start": 1119.5,
+ "end": 1119.61,
+ "text": "and"
+ },
+ {
+ "id": 2812,
+ "start": 1119.61,
+ "end": 1120.2,
+ "text": "security"
+ },
+ {
+ "id": 2813,
+ "start": 1120.2,
+ "end": 1120.35,
+ "text": "that"
+ },
+ {
+ "id": 2814,
+ "start": 1120.35,
+ "end": 1120.47,
+ "text": "will"
+ },
+ {
+ "id": 2815,
+ "start": 1120.47,
+ "end": 1120.62,
+ "text": "be"
+ },
+ {
+ "id": 2816,
+ "start": 1120.62,
+ "end": 1120.78,
+ "text": "there"
+ },
+ {
+ "id": 2817,
+ "start": 1121.495,
+ "end": 1121.74,
+ "text": "24/7"
+ },
+ {
+ "id": 2818,
+ "start": 1122.37,
+ "end": 1122.7,
+ "text": "leading"
+ },
+ {
+ "id": 2819,
+ "start": 1122.7,
+ "end": 1122.81,
+ "text": "up"
+ },
+ {
+ "id": 2820,
+ "start": 1122.81,
+ "end": 1122.92,
+ "text": "to"
+ },
+ {
+ "id": 2821,
+ "start": 1122.92,
+ "end": 1123.01,
+ "text": "the"
+ },
+ {
+ "id": 2822,
+ "start": 1123.01,
+ "end": 1123.5,
+ "text": "midterm"
+ },
+ {
+ "id": 2823,
+ "start": 1123.5,
+ "end": 1123.63,
+ "text": "and"
+ },
+ {
+ "id": 2824,
+ "start": 1123.63,
+ "end": 1124.2,
+ "text": "after"
+ },
+ {
+ "id": 2825,
+ "start": 1124.2,
+ "end": 1124.52,
+ "text": "just"
+ },
+ {
+ "id": 2826,
+ "start": 1124.52,
+ "end": 1124.61,
+ "text": "to"
+ },
+ {
+ "id": 2827,
+ "start": 1124.61,
+ "end": 1125.18,
+ "text": "see"
+ },
+ {
+ "id": 2828,
+ "start": 1125.18,
+ "end": 1125.42,
+ "text": "all"
+ },
+ {
+ "id": 2829,
+ "start": 1125.42,
+ "end": 1125.64,
+ "text": "of"
+ },
+ {
+ "id": 2830,
+ "start": 1125.64,
+ "end": 1125.8,
+ "text": "the"
+ },
+ {
+ "id": 2831,
+ "start": 1125.8,
+ "end": 1126.09,
+ "text": "things"
+ },
+ {
+ "id": 2832,
+ "start": 1126.09,
+ "end": 1126.2,
+ "text": "that"
+ },
+ {
+ "id": 2833,
+ "start": 1126.2,
+ "end": 1126.26,
+ "text": "are"
+ },
+ {
+ "id": 2834,
+ "start": 1126.26,
+ "end": 1126.61,
+ "text": "going"
+ },
+ {
+ "id": 2835,
+ "start": 1126.61,
+ "end": 1126.76,
+ "text": "on"
+ },
+ {
+ "id": 2836,
+ "start": 1126.76,
+ "end": 1126.85,
+ "text": "and"
+ },
+ {
+ "id": 2837,
+ "start": 1126.85,
+ "end": 1127.23,
+ "text": "hopefully"
+ },
+ {
+ "id": 2838,
+ "start": 1127.04,
+ "end": 1127.455,
+ "text": "to"
+ },
+ {
+ "id": 2839,
+ "start": 1127.23,
+ "end": 1127.68,
+ "text": "respond"
+ },
+ {
+ "id": 2840,
+ "start": 1127.68,
+ "end": 1127.82,
+ "text": "to"
+ },
+ {
+ "id": 2841,
+ "start": 1127.82,
+ "end": 1127.95,
+ "text": "it"
+ },
+ {
+ "id": 2842,
+ "start": 1127.94,
+ "end": 1128.17,
+ "text": "really"
+ },
+ {
+ "id": 2843,
+ "start": 1128.75,
+ "end": 1129.045,
+ "text": "quickly."
+ },
+ {
+ "id": 2844,
+ "start": 1129.56,
+ "end": 1129.92,
+ "text": "Going"
+ },
+ {
+ "id": 2845,
+ "start": 1129.92,
+ "end": 1130.31,
+ "text": "back"
+ },
+ {
+ "id": 2846,
+ "start": 1130.31,
+ "end": 1130.53,
+ "text": "for"
+ },
+ {
+ "id": 2847,
+ "start": 1130.53,
+ "end": 1130.59,
+ "text": "a"
+ },
+ {
+ "id": 2848,
+ "start": 1131.5199999999998,
+ "end": 1131.6649999999997,
+ "text": "second,"
+ },
+ {
+ "id": 2849,
+ "start": 1132.51,
+ "end": 1132.74,
+ "text": "did"
+ },
+ {
+ "id": 2850,
+ "start": 1132.74,
+ "end": 1133.22,
+ "text": "growing"
+ },
+ {
+ "id": 2851,
+ "start": 1133.22,
+ "end": 1133.52,
+ "text": "so"
+ },
+ {
+ "id": 2852,
+ "start": 1133.52,
+ "end": 1134.46,
+ "text": "quickly"
+ },
+ {
+ "id": 2853,
+ "start": 1134.46,
+ "end": 1134.75,
+ "text": "get"
+ },
+ {
+ "id": 2854,
+ "start": 1134.75,
+ "end": 1134.92,
+ "text": "us"
+ },
+ {
+ "id": 2855,
+ "start": 1134.92,
+ "end": 1135.19,
+ "text": "into"
+ },
+ {
+ "id": 2856,
+ "start": 1135.19,
+ "end": 1135.37,
+ "text": "this"
+ },
+ {
+ "id": 2857,
+ "start": 1135.37,
+ "end": 1136.78,
+ "text": "problem,"
+ },
+ {
+ "id": 2858,
+ "start": 1136.78,
+ "end": 1137.01,
+ "text": "into"
+ },
+ {
+ "id": 2859,
+ "start": 1137.01,
+ "end": 1137.11,
+ "text": "the"
+ },
+ {
+ "id": 2860,
+ "start": 1137.11,
+ "end": 1137.54,
+ "text": "problems"
+ },
+ {
+ "id": 2861,
+ "start": 1137.8300000000002,
+ "end": 1138.2375,
+ "text": "that"
+ },
+ {
+ "id": 2862,
+ "start": 1138.55,
+ "end": 1138.935,
+ "text": "Facebook’s"
+ },
+ {
+ "id": 2863,
+ "start": 1139.2699999999998,
+ "end": 1139.6325,
+ "text": "seeing"
+ },
+ {
+ "id": 2864,
+ "start": 1139.99,
+ "end": 1140.33,
+ "text": "these"
+ },
+ {
+ "id": 2865,
+ "start": 1140.33,
+ "end": 1141.02,
+ "text": "days"
+ },
+ {
+ "id": 2866,
+ "start": 1140.6799999999998,
+ "end": 1141.195,
+ "text": "–"
+ },
+ {
+ "id": 2867,
+ "start": 1141.03,
+ "end": 1141.37,
+ "text": "be"
+ },
+ {
+ "id": 2868,
+ "start": 1141.37,
+ "end": 1141.68,
+ "text": "pretty"
+ },
+ {
+ "id": 2869,
+ "start": 1141.68,
+ "end": 1142.3,
+ "text": "intractable"
+ },
+ {
+ "id": 2870,
+ "start": 1143.460000000001,
+ "end": 1143.835,
+ "text": "problems?"
+ },
+ {
+ "id": 2871,
+ "start": 1145.24,
+ "end": 1145.37,
+ "text": "I"
+ },
+ {
+ "id": 2872,
+ "start": 1145.37,
+ "end": 1146,
+ "text": "don’t"
+ },
+ {
+ "id": 2873,
+ "start": 1146,
+ "end": 1146.99,
+ "text": "know."
+ },
+ {
+ "id": 2874,
+ "start": 1146.99,
+ "end": 1147.07,
+ "text": "I"
+ },
+ {
+ "id": 2875,
+ "start": 1147.07,
+ "end": 1147.21,
+ "text": "mean,"
+ },
+ {
+ "id": 2876,
+ "start": 1147.21,
+ "end": 1147.28,
+ "text": "I"
+ },
+ {
+ "id": 2877,
+ "start": 1147.28,
+ "end": 1147.52,
+ "text": "wouldn’t"
+ },
+ {
+ "id": 2878,
+ "start": 1147.52,
+ "end": 1148.02,
+ "text": "attribute"
+ },
+ {
+ "id": 2879,
+ "start": 1148.02,
+ "end": 1148.18,
+ "text": "it"
+ },
+ {
+ "id": 2880,
+ "start": 1148.18,
+ "end": 1148.31,
+ "text": "to"
+ },
+ {
+ "id": 2881,
+ "start": 1148.31,
+ "end": 1148.71,
+ "text": "growing"
+ },
+ {
+ "id": 2882,
+ "start": 1148.71,
+ "end": 1148.95,
+ "text": "so"
+ },
+ {
+ "id": 2883,
+ "start": 1148.95,
+ "end": 1150.05,
+ "text": "quickly."
+ },
+ {
+ "id": 2884,
+ "start": 1150.05,
+ "end": 1150.21,
+ "text": "I"
+ },
+ {
+ "id": 2885,
+ "start": 1150.21,
+ "end": 1150.47,
+ "text": "do"
+ },
+ {
+ "id": 2886,
+ "start": 1150.47,
+ "end": 1150.9,
+ "text": "think"
+ },
+ {
+ "id": 2887,
+ "start": 1150.9,
+ "end": 1152.44,
+ "text": "that"
+ },
+ {
+ "id": 2888,
+ "start": 1152.44,
+ "end": 1152.79,
+ "text": "we"
+ },
+ {
+ "id": 2889,
+ "start": 1152.79,
+ "end": 1153.02,
+ "text": "were"
+ },
+ {
+ "id": 2890,
+ "start": 1153.02,
+ "end": 1154.22,
+ "text": "idealistic."
+ },
+ {
+ "id": 2891,
+ "start": 1154.22,
+ "end": 1154.43,
+ "text": "We"
+ },
+ {
+ "id": 2892,
+ "start": 1154.43,
+ "end": 1154.57,
+ "text": "were"
+ },
+ {
+ "id": 2893,
+ "start": 1154.57,
+ "end": 1154.8,
+ "text": "really"
+ },
+ {
+ "id": 2894,
+ "start": 1154.8,
+ "end": 1155.37,
+ "text": "focused"
+ },
+ {
+ "id": 2895,
+ "start": 1155.37,
+ "end": 1156.07,
+ "text": "on"
+ },
+ {
+ "id": 2896,
+ "start": 1156.07,
+ "end": 1156.26,
+ "text": "the"
+ },
+ {
+ "id": 2897,
+ "start": 1156.26,
+ "end": 1157.23,
+ "text": "good"
+ },
+ {
+ "id": 2898,
+ "start": 1157.23,
+ "end": 1157.4,
+ "text": "and"
+ },
+ {
+ "id": 2899,
+ "start": 1157.4,
+ "end": 1158.01,
+ "text": "amplifying"
+ },
+ {
+ "id": 2900,
+ "start": 1158.01,
+ "end": 1158.4,
+ "text": "that,"
+ },
+ {
+ "id": 2901,
+ "start": 1158.4,
+ "end": 1159.41,
+ "text": "and"
+ },
+ {
+ "id": 2902,
+ "start": 1159.41,
+ "end": 1159.66,
+ "text": "we"
+ },
+ {
+ "id": 2903,
+ "start": 1159.66,
+ "end": 1159.8,
+ "text": "were"
+ },
+ {
+ "id": 2904,
+ "start": 1159.8,
+ "end": 1160.37,
+ "text": "slow"
+ },
+ {
+ "id": 2905,
+ "start": 1160.37,
+ "end": 1161.3,
+ "text": "to"
+ },
+ {
+ "id": 2906,
+ "start": 1161.3,
+ "end": 1162.31,
+ "text": "understand"
+ },
+ {
+ "id": 2907,
+ "start": 1162.31,
+ "end": 1162.73,
+ "text": "and"
+ },
+ {
+ "id": 2908,
+ "start": 1162.73,
+ "end": 1162.95,
+ "text": "really"
+ },
+ {
+ "id": 2909,
+ "start": 1162.95,
+ "end": 1163.36,
+ "text": "focus"
+ },
+ {
+ "id": 2910,
+ "start": 1163.36,
+ "end": 1164.22,
+ "text": "on"
+ },
+ {
+ "id": 2911,
+ "start": 1164.22,
+ "end": 1164.42,
+ "text": "the"
+ },
+ {
+ "id": 2912,
+ "start": 1164.42,
+ "end": 1164.66,
+ "text": "fake"
+ },
+ {
+ "id": 2913,
+ "start": 1164.66,
+ "end": 1165.04,
+ "text": "accounts"
+ },
+ {
+ "id": 2914,
+ "start": 1165.04,
+ "end": 1165.15,
+ "text": "and"
+ },
+ {
+ "id": 2915,
+ "start": 1165.15,
+ "end": 1165.35,
+ "text": "bad"
+ },
+ {
+ "id": 2916,
+ "start": 1165.35,
+ "end": 1165.95,
+ "text": "actors."
+ },
+ {
+ "id": 2917,
+ "start": 1166.0966666666668,
+ "end": 1166.5566666666668,
+ "text": "A"
+ },
+ {
+ "id": 2918,
+ "start": 1166.8433333333332,
+ "end": 1167.1633333333334,
+ "text": "skeptic"
+ },
+ {
+ "id": 2919,
+ "start": 1167.59,
+ "end": 1167.77,
+ "text": "would"
+ },
+ {
+ "id": 2920,
+ "start": 1167.77,
+ "end": 1168.38,
+ "text": "say"
+ },
+ {
+ "id": 2921,
+ "start": 1168.145,
+ "end": 1168.64,
+ "text": "that"
+ },
+ {
+ "id": 2922,
+ "start": 1168.52,
+ "end": 1168.9,
+ "text": "focused"
+ },
+ {
+ "id": 2923,
+ "start": 1168.9,
+ "end": 1169.01,
+ "text": "on"
+ },
+ {
+ "id": 2924,
+ "start": 1169.01,
+ "end": 1169.1,
+ "text": "the"
+ },
+ {
+ "id": 2925,
+ "start": 1169.1,
+ "end": 1169.28,
+ "text": "good"
+ },
+ {
+ "id": 2926,
+ "start": 1169.28,
+ "end": 1169.4,
+ "text": "is"
+ },
+ {
+ "id": 2927,
+ "start": 1169.4,
+ "end": 1169.64,
+ "text": "one"
+ },
+ {
+ "id": 2928,
+ "start": 1169.64,
+ "end": 1169.82,
+ "text": "thing,"
+ },
+ {
+ "id": 2929,
+ "start": 1169.82,
+ "end": 1169.98,
+ "text": "but"
+ },
+ {
+ "id": 2930,
+ "start": 1169.98,
+ "end": 1170.14,
+ "text": "you’re"
+ },
+ {
+ "id": 2931,
+ "start": 1170.14,
+ "end": 1170.21,
+ "text": "a"
+ },
+ {
+ "id": 2932,
+ "start": 1170.475,
+ "end": 1170.8000000000002,
+ "text": "for-profit"
+ },
+ {
+ "id": 2933,
+ "start": 1170.81,
+ "end": 1171.39,
+ "text": "company,"
+ },
+ {
+ "id": 2934,
+ "start": 1171.31,
+ "end": 1171.74,
+ "text": "right?"
+ },
+ {
+ "id": 2935,
+ "start": 1172.6799999999998,
+ "end": 1173.12,
+ "text": "For-profit"
+ },
+ {
+ "id": 2936,
+ "start": 1174.05,
+ "end": 1174.5,
+ "text": "companies"
+ },
+ {
+ "id": 2937,
+ "start": 1174.57,
+ "end": 1174.85,
+ "text": "optimize"
+ },
+ {
+ "id": 2938,
+ "start": 1175.09,
+ "end": 1175.2,
+ "text": "for"
+ },
+ {
+ "id": 2939,
+ "start": 1175.2,
+ "end": 1175.55,
+ "text": "different"
+ },
+ {
+ "id": 2940,
+ "start": 1175.55,
+ "end": 1176.46,
+ "text": "metrics,"
+ },
+ {
+ "id": 2941,
+ "start": 1176.46,
+ "end": 1176.77,
+ "text": "right,"
+ },
+ {
+ "id": 2942,
+ "start": 1176.77,
+ "end": 1176.93,
+ "text": "and"
+ },
+ {
+ "id": 2943,
+ "start": 1176.93,
+ "end": 1177.05,
+ "text": "they’re"
+ },
+ {
+ "id": 2944,
+ "start": 1177.6200000000001,
+ "end": 1177.8550000000002,
+ "text": "incentivized."
+ },
+ {
+ "id": 2945,
+ "start": 1178.31,
+ "end": 1178.66,
+ "text": "People"
+ },
+ {
+ "id": 2946,
+ "start": 1178.66,
+ "end": 1178.72,
+ "text": "are"
+ },
+ {
+ "id": 2947,
+ "start": 1179.135,
+ "end": 1179.1950000000002,
+ "text": "incentivized"
+ },
+ {
+ "id": 2948,
+ "start": 1179.61,
+ "end": 1179.67,
+ "text": "in"
+ },
+ {
+ "id": 2949,
+ "start": 1179.67,
+ "end": 1179.99,
+ "text": "different"
+ },
+ {
+ "id": 2950,
+ "start": 1179.99,
+ "end": 1180.74,
+ "text": "ways."
+ },
+ {
+ "id": 2951,
+ "start": 1180.74,
+ "end": 1180.93,
+ "text": "Do"
+ },
+ {
+ "id": 2952,
+ "start": 1180.93,
+ "end": 1181.06,
+ "text": "you"
+ },
+ {
+ "id": 2953,
+ "start": 1181.06,
+ "end": 1181.31,
+ "text": "not"
+ },
+ {
+ "id": 2954,
+ "start": 1181.31,
+ "end": 1181.72,
+ "text": "think"
+ },
+ {
+ "id": 2955,
+ "start": 1181.72,
+ "end": 1182.64,
+ "text": "that"
+ },
+ {
+ "id": 2956,
+ "start": 1182.64,
+ "end": 1182.76,
+ "text": "the"
+ },
+ {
+ "id": 2957,
+ "start": 1182.76,
+ "end": 1183.18,
+ "text": "profit"
+ },
+ {
+ "id": 2958,
+ "start": 1183.18,
+ "end": 1183.55,
+ "text": "motive"
+ },
+ {
+ "id": 2959,
+ "start": 1183.55,
+ "end": 1183.68,
+ "text": "in"
+ },
+ {
+ "id": 2960,
+ "start": 1183.68,
+ "end": 1183.92,
+ "text": "some"
+ },
+ {
+ "id": 2961,
+ "start": 1183.92,
+ "end": 1184.08,
+ "text": "way"
+ },
+ {
+ "id": 2962,
+ "start": 1184.08,
+ "end": 1184.35,
+ "text": "played"
+ },
+ {
+ "id": 2963,
+ "start": 1184.35,
+ "end": 1184.4,
+ "text": "a"
+ },
+ {
+ "id": 2964,
+ "start": 1184.4,
+ "end": 1184.72,
+ "text": "role"
+ },
+ {
+ "id": 2965,
+ "start": 1184.72,
+ "end": 1184.82,
+ "text": "in"
+ },
+ {
+ "id": 2966,
+ "start": 1184.82,
+ "end": 1185.1,
+ "text": "this?"
+ },
+ {
+ "id": 2967,
+ "start": 1185.1,
+ "end": 1185.26,
+ "text": "Do"
+ },
+ {
+ "id": 2968,
+ "start": 1185.1799999999998,
+ "end": 1185.37,
+ "text": "you"
+ },
+ {
+ "id": 2969,
+ "start": 1185.26,
+ "end": 1185.48,
+ "text": "not"
+ },
+ {
+ "id": 2970,
+ "start": 1185.48,
+ "end": 1185.82,
+ "text": "think"
+ },
+ {
+ "id": 2971,
+ "start": 1185.82,
+ "end": 1186.4,
+ "text": "that"
+ },
+ {
+ "id": 2972,
+ "start": 1186.4,
+ "end": 1186.9,
+ "text": "incentive"
+ },
+ {
+ "id": 2973,
+ "start": 1186.9,
+ "end": 1187.59,
+ "text": "structures"
+ },
+ {
+ "id": 2974,
+ "start": 1187.59,
+ "end": 1188.44,
+ "text": "for"
+ },
+ {
+ "id": 2975,
+ "start": 1188.44,
+ "end": 1188.95,
+ "text": "what"
+ },
+ {
+ "id": 2976,
+ "start": 1188.95,
+ "end": 1189.26,
+ "text": "people"
+ },
+ {
+ "id": 2977,
+ "start": 1189.26,
+ "end": 1189.38,
+ "text": "were"
+ },
+ {
+ "id": 2978,
+ "start": 1189.635,
+ "end": 1189.73,
+ "text": "incentivized"
+ },
+ {
+ "id": 2979,
+ "start": 1190.01,
+ "end": 1190.08,
+ "text": "to"
+ },
+ {
+ "id": 2980,
+ "start": 1190.08,
+ "end": 1190.33,
+ "text": "do"
+ },
+ {
+ "id": 2981,
+ "start": 1190.33,
+ "end": 1190.56,
+ "text": "played"
+ },
+ {
+ "id": 2982,
+ "start": 1190.56,
+ "end": 1190.6,
+ "text": "a"
+ },
+ {
+ "id": 2983,
+ "start": 1190.6,
+ "end": 1191.43,
+ "text": "motive"
+ },
+ {
+ "id": 2984,
+ "start": 1191.43,
+ "end": 1191.67,
+ "text": "or"
+ },
+ {
+ "id": 2985,
+ "start": 1191.67,
+ "end": 1191.88,
+ "text": "played"
+ },
+ {
+ "id": 2986,
+ "start": 1191.88,
+ "end": 1191.92,
+ "text": "a"
+ },
+ {
+ "id": 2987,
+ "start": 1191.92,
+ "end": 1192.17,
+ "text": "role"
+ },
+ {
+ "id": 2988,
+ "start": 1192.17,
+ "end": 1193.87,
+ "text": "here?"
+ },
+ {
+ "id": 2989,
+ "start": 1193.87,
+ "end": 1194.24,
+ "text": "No,"
+ },
+ {
+ "id": 2990,
+ "start": 1194.24,
+ "end": 1194.32,
+ "text": "I"
+ },
+ {
+ "id": 2991,
+ "start": 1194.32,
+ "end": 1194.75,
+ "text": "definitely"
+ },
+ {
+ "id": 2992,
+ "start": 1194.75,
+ "end": 1195.02,
+ "text": "don’t"
+ },
+ {
+ "id": 2993,
+ "start": 1195.02,
+ "end": 1195.21,
+ "text": "think"
+ },
+ {
+ "id": 2994,
+ "start": 1195.21,
+ "end": 1195.32,
+ "text": "the"
+ },
+ {
+ "id": 2995,
+ "start": 1195.32,
+ "end": 1195.76,
+ "text": "profit"
+ },
+ {
+ "id": 2996,
+ "start": 1195.76,
+ "end": 1196.57,
+ "text": "motive"
+ },
+ {
+ "id": 2997,
+ "start": 1196.57,
+ "end": 1196.82,
+ "text": "played"
+ },
+ {
+ "id": 2998,
+ "start": 1196.82,
+ "end": 1196.9,
+ "text": "a"
+ },
+ {
+ "id": 2999,
+ "start": 1196.9,
+ "end": 1197.15,
+ "text": "role"
+ },
+ {
+ "id": 3000,
+ "start": 1197.15,
+ "end": 1197.45,
+ "text": "here."
+ },
+ {
+ "id": 3001,
+ "start": 1197.45,
+ "end": 1197.84,
+ "text": "Even"
+ },
+ {
+ "id": 3002,
+ "start": 1197.84,
+ "end": 1198.05,
+ "text": "when"
+ },
+ {
+ "id": 3003,
+ "start": 1198.05,
+ "end": 1198.67,
+ "text": "we"
+ },
+ {
+ "id": 3004,
+ "start": 1198.67,
+ "end": 1198.99,
+ "text": "had"
+ },
+ {
+ "id": 3005,
+ "start": 1198.99,
+ "end": 1199.15,
+ "text": "our"
+ },
+ {
+ "id": 3006,
+ "start": 1199.355,
+ "end": 1199.655,
+ "text": "IPO,"
+ },
+ {
+ "id": 3007,
+ "start": 1199.72,
+ "end": 1200.16,
+ "text": "Mark"
+ },
+ {
+ "id": 3008,
+ "start": 1200.16,
+ "end": 1200.51,
+ "text": "wrote"
+ },
+ {
+ "id": 3009,
+ "start": 1200.51,
+ "end": 1200.72,
+ "text": "in"
+ },
+ {
+ "id": 3010,
+ "start": 1200.72,
+ "end": 1201.08,
+ "text": "his"
+ },
+ {
+ "id": 3011,
+ "start": 1201.0900000000001,
+ "end": 1201.68,
+ "text": "S-1"
+ },
+ {
+ "id": 3012,
+ "start": 1201.46,
+ "end": 1202.28,
+ "text": "documentation"
+ },
+ {
+ "id": 3013,
+ "start": 1202.28,
+ "end": 1202.42,
+ "text": "that"
+ },
+ {
+ "id": 3014,
+ "start": 1202.42,
+ "end": 1202.54,
+ "text": "when"
+ },
+ {
+ "id": 3015,
+ "start": 1202.54,
+ "end": 1202.68,
+ "text": "he"
+ },
+ {
+ "id": 3016,
+ "start": 1202.68,
+ "end": 1203.01,
+ "text": "started"
+ },
+ {
+ "id": 3017,
+ "start": 1203.01,
+ "end": 1203.64,
+ "text": "Facebook,"
+ },
+ {
+ "id": 3018,
+ "start": 1203.64,
+ "end": 1204.11,
+ "text": "he"
+ },
+ {
+ "id": 3019,
+ "start": 1204.11,
+ "end": 1204.31,
+ "text": "set"
+ },
+ {
+ "id": 3020,
+ "start": 1204.31,
+ "end": 1204.47,
+ "text": "out"
+ },
+ {
+ "id": 3021,
+ "start": 1204.47,
+ "end": 1204.57,
+ "text": "to"
+ },
+ {
+ "id": 3022,
+ "start": 1204.57,
+ "end": 1205.53,
+ "text": "make"
+ },
+ {
+ "id": 3023,
+ "start": 1205.53,
+ "end": 1205.87,
+ "text": "not"
+ },
+ {
+ "id": 3024,
+ "start": 1205.87,
+ "end": 1205.91,
+ "text": "a"
+ },
+ {
+ "id": 3025,
+ "start": 1205.91,
+ "end": 1206.91,
+ "text": "company"
+ },
+ {
+ "id": 3026,
+ "start": 1206.91,
+ "end": 1207.08,
+ "text": "but"
+ },
+ {
+ "id": 3027,
+ "start": 1207.08,
+ "end": 1207.19,
+ "text": "to"
+ },
+ {
+ "id": 3028,
+ "start": 1207.19,
+ "end": 1207.55,
+ "text": "pursue"
+ },
+ {
+ "id": 3029,
+ "start": 1207.55,
+ "end": 1207.62,
+ "text": "a"
+ },
+ {
+ "id": 3030,
+ "start": 1207.62,
+ "end": 1208.1,
+ "text": "mission."
+ },
+ {
+ "id": 3031,
+ "start": 1208.1,
+ "end": 1208.35,
+ "text": "We’ve"
+ },
+ {
+ "id": 3032,
+ "start": 1208.34,
+ "end": 1208.57,
+ "text": "been"
+ },
+ {
+ "id": 3033,
+ "start": 1209.5700000000002,
+ "end": 1209.7400000000002,
+ "text": "super-mission-oriented."
+ },
+ {
+ "id": 3034,
+ "start": 1210.8000000000002,
+ "end": 1210.9100000000003,
+ "text": "Again,"
+ },
+ {
+ "id": 3035,
+ "start": 1212.03,
+ "end": 1212.08,
+ "text": "I"
+ },
+ {
+ "id": 3036,
+ "start": 1212.08,
+ "end": 1212.27,
+ "text": "have"
+ },
+ {
+ "id": 3037,
+ "start": 1212.27,
+ "end": 1212.6,
+ "text": "a"
+ },
+ {
+ "id": 3038,
+ "start": 1212.6,
+ "end": 1213.03,
+ "text": "team"
+ },
+ {
+ "id": 3039,
+ "start": 1213.03,
+ "end": 1213.19,
+ "text": "that"
+ },
+ {
+ "id": 3040,
+ "start": 1213.19,
+ "end": 1213.35,
+ "text": "is"
+ },
+ {
+ "id": 3041,
+ "start": 1213.35,
+ "end": 1213.76,
+ "text": "focused"
+ },
+ {
+ "id": 3042,
+ "start": 1213.76,
+ "end": 1214.27,
+ "text": "entirely"
+ },
+ {
+ "id": 3043,
+ "start": 1214.27,
+ "end": 1214.55,
+ "text": "not"
+ },
+ {
+ "id": 3044,
+ "start": 1214.55,
+ "end": 1214.68,
+ "text": "on"
+ },
+ {
+ "id": 3045,
+ "start": 1214.68,
+ "end": 1214.85,
+ "text": "any"
+ },
+ {
+ "id": 3046,
+ "start": 1214.85,
+ "end": 1215.23,
+ "text": "company"
+ },
+ {
+ "id": 3047,
+ "start": 1215.23,
+ "end": 1215.83,
+ "text": "metrics,"
+ },
+ {
+ "id": 3048,
+ "start": 1215.83,
+ "end": 1216.05,
+ "text": "not"
+ },
+ {
+ "id": 3049,
+ "start": 1216.05,
+ "end": 1216.17,
+ "text": "on"
+ },
+ {
+ "id": 3050,
+ "start": 1216.17,
+ "end": 1216.91,
+ "text": "dollars,"
+ },
+ {
+ "id": 3051,
+ "start": 1216.91,
+ "end": 1217.25,
+ "text": "not"
+ },
+ {
+ "id": 3052,
+ "start": 1217.25,
+ "end": 1217.8,
+ "text": "on"
+ },
+ {
+ "id": 3053,
+ "start": 1217.58,
+ "end": 1218.41,
+ "text": "engagement"
+ },
+ {
+ "id": 3054,
+ "start": 1218.3215,
+ "end": 1218.8415,
+ "text": "metrics,"
+ },
+ {
+ "id": 3055,
+ "start": 1219.063,
+ "end": 1219.273,
+ "text": "not"
+ },
+ {
+ "id": 3056,
+ "start": 1219.273,
+ "end": 1219.393,
+ "text": "on"
+ },
+ {
+ "id": 3057,
+ "start": 1219.393,
+ "end": 1220.373,
+ "text": "growth,"
+ },
+ {
+ "id": 3058,
+ "start": 1220.373,
+ "end": 1220.883,
+ "text": "but"
+ },
+ {
+ "id": 3059,
+ "start": 1220.883,
+ "end": 1221.893,
+ "text": "simply"
+ },
+ {
+ "id": 3060,
+ "start": 1221.893,
+ "end": 1222.183,
+ "text": "on"
+ },
+ {
+ "id": 3061,
+ "start": 1222.183,
+ "end": 1222.733,
+ "text": "positive"
+ },
+ {
+ "id": 3062,
+ "start": 1222.678,
+ "end": 1223.233,
+ "text": "real-world"
+ },
+ {
+ "id": 3063,
+ "start": 1223.173,
+ "end": 1223.733,
+ "text": "actions,"
+ },
+ {
+ "id": 3064,
+ "start": 1223.733,
+ "end": 1223.973,
+ "text": "whether"
+ },
+ {
+ "id": 3065,
+ "start": 1223.973,
+ "end": 1224.373,
+ "text": "that’s"
+ },
+ {
+ "id": 3066,
+ "start": 1224.373,
+ "end": 1224.973,
+ "text": "generating"
+ },
+ {
+ "id": 3067,
+ "start": 1224.973,
+ "end": 1225.693,
+ "text": "donations"
+ },
+ {
+ "id": 3068,
+ "start": 1225.693,
+ "end": 1225.813,
+ "text": "for"
+ },
+ {
+ "id": 3069,
+ "start": 1226.2079999999999,
+ "end": 1226.603,
+ "text": "nonprofits"
+ },
+ {
+ "id": 3070,
+ "start": 1226.723,
+ "end": 1227.393,
+ "text": "or"
+ },
+ {
+ "id": 3071,
+ "start": 1227.393,
+ "end": 1228.073,
+ "text": "facilitating"
+ },
+ {
+ "id": 3072,
+ "start": 1228.073,
+ "end": 1228.273,
+ "text": "blood"
+ },
+ {
+ "id": 3073,
+ "start": 1228.273,
+ "end": 1229.833,
+ "text": "donations."
+ },
+ {
+ "id": 3074,
+ "start": 1229.833,
+ "end": 1230.103,
+ "text": "That"
+ },
+ {
+ "id": 3075,
+ "start": 1230.103,
+ "end": 1230.393,
+ "text": "really"
+ },
+ {
+ "id": 3076,
+ "start": 1230.393,
+ "end": 1230.543,
+ "text": "is"
+ },
+ {
+ "id": 3077,
+ "start": 1230.543,
+ "end": 1230.643,
+ "text": "the"
+ },
+ {
+ "id": 3078,
+ "start": 1230.993,
+ "end": 1231.1180000000002,
+ "text": "focus,"
+ },
+ {
+ "id": 3079,
+ "start": 1231.443,
+ "end": 1231.593,
+ "text": "and"
+ },
+ {
+ "id": 3080,
+ "start": 1231.593,
+ "end": 1231.713,
+ "text": "it’s"
+ },
+ {
+ "id": 3081,
+ "start": 1231.713,
+ "end": 1231.813,
+ "text": "on"
+ },
+ {
+ "id": 3082,
+ "start": 1231.813,
+ "end": 1231.883,
+ "text": "the"
+ },
+ {
+ "id": 3083,
+ "start": 1231.883,
+ "end": 1238.113,
+ "text": "mission."
+ },
+ {
+ "id": 3084,
+ "start": 1238.113,
+ "end": 1238.453,
+ "text": "Why"
+ },
+ {
+ "id": 3085,
+ "start": 1238.453,
+ "end": 1238.573,
+ "text": "the"
+ },
+ {
+ "id": 3086,
+ "start": 1238.573,
+ "end": 1238.933,
+ "text": "shift"
+ },
+ {
+ "id": 3087,
+ "start": 1238.933,
+ "end": 1239.043,
+ "text": "in"
+ },
+ {
+ "id": 3088,
+ "start": 1239.043,
+ "end": 1239.203,
+ "text": "your"
+ },
+ {
+ "id": 3089,
+ "start": 1239.203,
+ "end": 1239.703,
+ "text": "job?"
+ },
+ {
+ "id": 3090,
+ "start": 1239.703,
+ "end": 1240.553,
+ "text": "Why"
+ },
+ {
+ "id": 3091,
+ "start": 1240.553,
+ "end": 1240.773,
+ "text": "did"
+ },
+ {
+ "id": 3092,
+ "start": 1240.773,
+ "end": 1240.883,
+ "text": "you"
+ },
+ {
+ "id": 3093,
+ "start": 1240.883,
+ "end": 1242.023,
+ "text": "go"
+ },
+ {
+ "id": 3094,
+ "start": 1242.023,
+ "end": 1242.323,
+ "text": "from"
+ },
+ {
+ "id": 3095,
+ "start": 1242.323,
+ "end": 1242.453,
+ "text": "what"
+ },
+ {
+ "id": 3096,
+ "start": 1242.453,
+ "end": 1242.543,
+ "text": "you"
+ },
+ {
+ "id": 3097,
+ "start": 1242.543,
+ "end": 1242.633,
+ "text": "were"
+ },
+ {
+ "id": 3098,
+ "start": 1242.633,
+ "end": 1242.943,
+ "text": "doing"
+ },
+ {
+ "id": 3099,
+ "start": 1242.943,
+ "end": 1243.063,
+ "text": "to"
+ },
+ {
+ "id": 3100,
+ "start": 1243.063,
+ "end": 1243.243,
+ "text": "what"
+ },
+ {
+ "id": 3101,
+ "start": 1243.243,
+ "end": 1243.333,
+ "text": "you’re"
+ },
+ {
+ "id": 3102,
+ "start": 1243.333,
+ "end": 1243.603,
+ "text": "doing"
+ },
+ {
+ "id": 3103,
+ "start": 1243.603,
+ "end": 1244.913,
+ "text": "now?"
+ },
+ {
+ "id": 3104,
+ "start": 1244.913,
+ "end": 1245.023,
+ "text": "I’ve"
+ },
+ {
+ "id": 3105,
+ "start": 1245.023,
+ "end": 1245.223,
+ "text": "always"
+ },
+ {
+ "id": 3106,
+ "start": 1245.223,
+ "end": 1245.423,
+ "text": "wanted"
+ },
+ {
+ "id": 3107,
+ "start": 1245.423,
+ "end": 1245.493,
+ "text": "to"
+ },
+ {
+ "id": 3108,
+ "start": 1245.493,
+ "end": 1245.843,
+ "text": "focus"
+ },
+ {
+ "id": 3109,
+ "start": 1245.843,
+ "end": 1245.953,
+ "text": "on"
+ },
+ {
+ "id": 3110,
+ "start": 1245.953,
+ "end": 1246.063,
+ "text": "what"
+ },
+ {
+ "id": 3111,
+ "start": 1246.063,
+ "end": 1246.103,
+ "text": "I"
+ },
+ {
+ "id": 3112,
+ "start": 1246.103,
+ "end": 1246.323,
+ "text": "thought"
+ },
+ {
+ "id": 3113,
+ "start": 1246.323,
+ "end": 1246.473,
+ "text": "was"
+ },
+ {
+ "id": 3114,
+ "start": 1246.473,
+ "end": 1246.713,
+ "text": "most"
+ },
+ {
+ "id": 3115,
+ "start": 1246.713,
+ "end": 1247.533,
+ "text": "important."
+ },
+ {
+ "id": 3116,
+ "start": 1247.829666666667,
+ "end": 1248.4596666666666,
+ "text": "In"
+ },
+ {
+ "id": 3117,
+ "start": 1248.9463333333338,
+ "end": 1249.3863333333334,
+ "text": "2005,"
+ },
+ {
+ "id": 3118,
+ "start": 1250.063,
+ "end": 1250.313,
+ "text": "just"
+ },
+ {
+ "id": 3119,
+ "start": 1250.313,
+ "end": 1251.023,
+ "text": "expanding"
+ },
+ {
+ "id": 3120,
+ "start": 1251.023,
+ "end": 1251.563,
+ "text": "Facebook"
+ },
+ {
+ "id": 3121,
+ "start": 1251.563,
+ "end": 1251.793,
+ "text": "to"
+ },
+ {
+ "id": 3122,
+ "start": 1251.793,
+ "end": 1252.063,
+ "text": "people"
+ },
+ {
+ "id": 3123,
+ "start": 1252.063,
+ "end": 1252.163,
+ "text": "who"
+ },
+ {
+ "id": 3124,
+ "start": 1252.163,
+ "end": 1252.413,
+ "text": "wanted"
+ },
+ {
+ "id": 3125,
+ "start": 1252.413,
+ "end": 1252.483,
+ "text": "to"
+ },
+ {
+ "id": 3126,
+ "start": 1252.483,
+ "end": 1252.693,
+ "text": "use"
+ },
+ {
+ "id": 3127,
+ "start": 1252.798,
+ "end": 1252.933,
+ "text": "it—really,"
+ },
+ {
+ "id": 3128,
+ "start": 1253.113,
+ "end": 1253.173,
+ "text": "it"
+ },
+ {
+ "id": 3129,
+ "start": 1253.173,
+ "end": 1253.293,
+ "text": "was"
+ },
+ {
+ "id": 3130,
+ "start": 1253.293,
+ "end": 1253.493,
+ "text": "just"
+ },
+ {
+ "id": 3131,
+ "start": 1253.493,
+ "end": 1253.663,
+ "text": "other"
+ },
+ {
+ "id": 3132,
+ "start": 1253.663,
+ "end": 1255.473,
+ "text": "colleges."
+ },
+ {
+ "id": 3133,
+ "start": 1255.473,
+ "end": 1255.603,
+ "text": "It"
+ },
+ {
+ "id": 3134,
+ "start": 1255.603,
+ "end": 1255.723,
+ "text": "was"
+ },
+ {
+ "id": 3135,
+ "start": 1255.723,
+ "end": 1256.043,
+ "text": "initially"
+ },
+ {
+ "id": 3136,
+ "start": 1256.043,
+ "end": 1256.503,
+ "text": "available"
+ },
+ {
+ "id": 3137,
+ "start": 1256.2779999999998,
+ "end": 1256.628,
+ "text": "at"
+ },
+ {
+ "id": 3138,
+ "start": 1256.513,
+ "end": 1256.753,
+ "text": "like"
+ },
+ {
+ "id": 3139,
+ "start": 1256.8229999999999,
+ "end": 1256.993,
+ "text": "five,"
+ },
+ {
+ "id": 3140,
+ "start": 1257.133,
+ "end": 1257.233,
+ "text": "and"
+ },
+ {
+ "id": 3141,
+ "start": 1257.233,
+ "end": 1257.353,
+ "text": "then"
+ },
+ {
+ "id": 3142,
+ "start": 1257.353,
+ "end": 1257.543,
+ "text": "we"
+ },
+ {
+ "id": 3143,
+ "start": 1257.543,
+ "end": 1257.843,
+ "text": "opened"
+ },
+ {
+ "id": 3144,
+ "start": 1257.843,
+ "end": 1257.973,
+ "text": "it"
+ },
+ {
+ "id": 3145,
+ "start": 1257.973,
+ "end": 1258.053,
+ "text": "to"
+ },
+ {
+ "id": 3146,
+ "start": 1258.053,
+ "end": 1258.213,
+ "text": "all"
+ },
+ {
+ "id": 3147,
+ "start": 1258.213,
+ "end": 1258.303,
+ "text": "the"
+ },
+ {
+ "id": 3148,
+ "start": 1258.303,
+ "end": 1260.343,
+ "text": "colleges"
+ },
+ {
+ "id": 3149,
+ "start": 1260.343,
+ "end": 1260.513,
+ "text": "in"
+ },
+ {
+ "id": 3150,
+ "start": 1260.513,
+ "end": 1260.623,
+ "text": "the"
+ },
+ {
+ "id": 3151,
+ "start": 1260.818,
+ "end": 1260.943,
+ "text": "U.S."
+ },
+ {
+ "id": 3152,
+ "start": 1261.123,
+ "end": 1261.263,
+ "text": "and"
+ },
+ {
+ "id": 3153,
+ "start": 1261.263,
+ "end": 1261.413,
+ "text": "then"
+ },
+ {
+ "id": 3154,
+ "start": 1261.413,
+ "end": 1264.353,
+ "text": "beyond."
+ },
+ {
+ "id": 3155,
+ "start": 1264.353,
+ "end": 1264.443,
+ "text": "I"
+ },
+ {
+ "id": 3156,
+ "start": 1264.443,
+ "end": 1264.823,
+ "text": "think"
+ },
+ {
+ "id": 3157,
+ "start": 1264.823,
+ "end": 1264.953,
+ "text": "it"
+ },
+ {
+ "id": 3158,
+ "start": 1264.953,
+ "end": 1265.193,
+ "text": "was"
+ },
+ {
+ "id": 3159,
+ "start": 1265.193,
+ "end": 1265.303,
+ "text": "in"
+ },
+ {
+ "id": 3160,
+ "start": 1266.5080000000007,
+ "end": 1266.8829999999998,
+ "text": "2014"
+ },
+ {
+ "id": 3161,
+ "start": 1267.823,
+ "end": 1268.463,
+ "text": "Mark"
+ },
+ {
+ "id": 3162,
+ "start": 1268.463,
+ "end": 1268.953,
+ "text": "approached"
+ },
+ {
+ "id": 3163,
+ "start": 1268.953,
+ "end": 1269.173,
+ "text": "me,"
+ },
+ {
+ "id": 3164,
+ "start": 1269.173,
+ "end": 1269.313,
+ "text": "and"
+ },
+ {
+ "id": 3165,
+ "start": 1269.313,
+ "end": 1269.593,
+ "text": "he"
+ },
+ {
+ "id": 3166,
+ "start": 1269.593,
+ "end": 1270.513,
+ "text": "was"
+ },
+ {
+ "id": 3167,
+ "start": 1270.513,
+ "end": 1270.833,
+ "text": "just"
+ },
+ {
+ "id": 3168,
+ "start": 1270.833,
+ "end": 1271.443,
+ "text": "saying,"
+ },
+ {
+ "id": 3169,
+ "start": 1271.443,
+ "end": 1271.523,
+ "text": "“I"
+ },
+ {
+ "id": 3170,
+ "start": 1271.523,
+ "end": 1271.853,
+ "text": "feel"
+ },
+ {
+ "id": 3171,
+ "start": 1271.853,
+ "end": 1272.033,
+ "text": "like"
+ },
+ {
+ "id": 3172,
+ "start": 1272.033,
+ "end": 1272.143,
+ "text": "the"
+ },
+ {
+ "id": 3173,
+ "start": 1272.143,
+ "end": 1272.763,
+ "text": "time,"
+ },
+ {
+ "id": 3174,
+ "start": 1272.763,
+ "end": 1272.863,
+ "text": "the"
+ },
+ {
+ "id": 3175,
+ "start": 1272.863,
+ "end": 1273.593,
+ "text": "space,"
+ },
+ {
+ "id": 3176,
+ "start": 1273.593,
+ "end": 1274.263,
+ "text": "the"
+ },
+ {
+ "id": 3177,
+ "start": 1274.263,
+ "end": 1274.863,
+ "text": "bandwidth"
+ },
+ {
+ "id": 3178,
+ "start": 1274.863,
+ "end": 1275.093,
+ "text": "has"
+ },
+ {
+ "id": 3179,
+ "start": 1275.093,
+ "end": 1275.513,
+ "text": "come"
+ },
+ {
+ "id": 3180,
+ "start": 1275.513,
+ "end": 1275.643,
+ "text": "to"
+ },
+ {
+ "id": 3181,
+ "start": 1275.643,
+ "end": 1275.853,
+ "text": "have"
+ },
+ {
+ "id": 3182,
+ "start": 1275.853,
+ "end": 1275.913,
+ "text": "a"
+ },
+ {
+ "id": 3183,
+ "start": 1275.913,
+ "end": 1276.323,
+ "text": "team"
+ },
+ {
+ "id": 3184,
+ "start": 1276.323,
+ "end": 1276.553,
+ "text": "that"
+ },
+ {
+ "id": 3185,
+ "start": 1276.553,
+ "end": 1276.853,
+ "text": "is"
+ },
+ {
+ "id": 3186,
+ "start": 1276.853,
+ "end": 1277.353,
+ "text": "focused"
+ },
+ {
+ "id": 3187,
+ "start": 1277.353,
+ "end": 1278.343,
+ "text": "on"
+ },
+ {
+ "id": 3188,
+ "start": 1278.343,
+ "end": 1278.593,
+ "text": "just"
+ },
+ {
+ "id": 3189,
+ "start": 1278.593,
+ "end": 1279.013,
+ "text": "driving"
+ },
+ {
+ "id": 3190,
+ "start": 1279.013,
+ "end": 1279.433,
+ "text": "positive"
+ },
+ {
+ "id": 3191,
+ "start": 1279.4379999999999,
+ "end": 1280.1929999999998,
+ "text": "real-world"
+ },
+ {
+ "id": 3192,
+ "start": 1279.863,
+ "end": 1280.953,
+ "text": "actions.”"
+ },
+ {
+ "id": 3193,
+ "start": 1280.953,
+ "end": 1281.153,
+ "text": "It"
+ },
+ {
+ "id": 3194,
+ "start": 1281.153,
+ "end": 1281.413,
+ "text": "was"
+ },
+ {
+ "id": 3195,
+ "start": 1281.413,
+ "end": 1281.633,
+ "text": "just"
+ },
+ {
+ "id": 3196,
+ "start": 1281.633,
+ "end": 1282.383,
+ "text": "after"
+ },
+ {
+ "id": 3197,
+ "start": 1282.383,
+ "end": 1282.513,
+ "text": "I"
+ },
+ {
+ "id": 3198,
+ "start": 1282.513,
+ "end": 1282.863,
+ "text": "mentioned"
+ },
+ {
+ "id": 3199,
+ "start": 1282.863,
+ "end": 1283.183,
+ "text": "earlier"
+ },
+ {
+ "id": 3200,
+ "start": 1283.183,
+ "end": 1283.373,
+ "text": "the"
+ },
+ {
+ "id": 3201,
+ "start": 1283.483,
+ "end": 1283.6680000000001,
+ "text": "ALS"
+ },
+ {
+ "id": 3202,
+ "start": 1283.783,
+ "end": 1283.963,
+ "text": "Ice"
+ },
+ {
+ "id": 3203,
+ "start": 1283.963,
+ "end": 1284.243,
+ "text": "Bucket"
+ },
+ {
+ "id": 3204,
+ "start": 1284.243,
+ "end": 1284.693,
+ "text": "Challenge,"
+ },
+ {
+ "id": 3205,
+ "start": 1284.693,
+ "end": 1284.783,
+ "text": "and"
+ },
+ {
+ "id": 3206,
+ "start": 1284.783,
+ "end": 1284.863,
+ "text": "we"
+ },
+ {
+ "id": 3207,
+ "start": 1284.863,
+ "end": 1285.013,
+ "text": "were"
+ },
+ {
+ "id": 3208,
+ "start": 1285.013,
+ "end": 1285.303,
+ "text": "really"
+ },
+ {
+ "id": 3209,
+ "start": 1285.303,
+ "end": 1285.953,
+ "text": "inspired"
+ },
+ {
+ "id": 3210,
+ "start": 1285.953,
+ "end": 1286.133,
+ "text": "by"
+ },
+ {
+ "id": 3211,
+ "start": 1286.133,
+ "end": 1288.173,
+ "text": "that."
+ },
+ {
+ "id": 3212,
+ "start": 1288.173,
+ "end": 1288.363,
+ "text": "We"
+ },
+ {
+ "id": 3213,
+ "start": 1288.363,
+ "end": 1288.553,
+ "text": "see"
+ },
+ {
+ "id": 3214,
+ "start": 1288.553,
+ "end": 1288.783,
+ "text": "so"
+ },
+ {
+ "id": 3215,
+ "start": 1288.783,
+ "end": 1288.943,
+ "text": "many"
+ },
+ {
+ "id": 3216,
+ "start": 1288.943,
+ "end": 1289.103,
+ "text": "good"
+ },
+ {
+ "id": 3217,
+ "start": 1289.103,
+ "end": 1289.333,
+ "text": "things"
+ },
+ {
+ "id": 3218,
+ "start": 1289.333,
+ "end": 1289.723,
+ "text": "happening"
+ },
+ {
+ "id": 3219,
+ "start": 1289.723,
+ "end": 1289.813,
+ "text": "on"
+ },
+ {
+ "id": 3220,
+ "start": 1289.813,
+ "end": 1289.903,
+ "text": "the"
+ },
+ {
+ "id": 3221,
+ "start": 1290.163,
+ "end": 1290.268,
+ "text": "platform,"
+ },
+ {
+ "id": 3222,
+ "start": 1290.513,
+ "end": 1290.633,
+ "text": "and"
+ },
+ {
+ "id": 3223,
+ "start": 1290.633,
+ "end": 1290.883,
+ "text": "Mark"
+ },
+ {
+ "id": 3224,
+ "start": 1290.883,
+ "end": 1291.103,
+ "text": "just"
+ },
+ {
+ "id": 3225,
+ "start": 1291.103,
+ "end": 1291.333,
+ "text": "felt,"
+ },
+ {
+ "id": 3226,
+ "start": 1291.333,
+ "end": 1291.533,
+ "text": "I"
+ },
+ {
+ "id": 3227,
+ "start": 1291.533,
+ "end": 1291.863,
+ "text": "felt,"
+ },
+ {
+ "id": 3228,
+ "start": 1291.863,
+ "end": 1291.953,
+ "text": "the"
+ },
+ {
+ "id": 3229,
+ "start": 1291.953,
+ "end": 1292.283,
+ "text": "team"
+ },
+ {
+ "id": 3230,
+ "start": 1292.283,
+ "end": 1292.583,
+ "text": "felt"
+ },
+ {
+ "id": 3231,
+ "start": 1292.583,
+ "end": 1292.843,
+ "text": "that"
+ },
+ {
+ "id": 3232,
+ "start": 1292.843,
+ "end": 1293.063,
+ "text": "we"
+ },
+ {
+ "id": 3233,
+ "start": 1293.063,
+ "end": 1293.393,
+ "text": "could"
+ },
+ {
+ "id": 3234,
+ "start": 1293.393,
+ "end": 1293.563,
+ "text": "do"
+ },
+ {
+ "id": 3235,
+ "start": 1294.0829999999996,
+ "end": 1294.3880000000004,
+ "text": "more."
+ },
+ {
+ "id": 3236,
+ "start": 1294.773,
+ "end": 1295.213,
+ "text": "When"
+ },
+ {
+ "id": 3237,
+ "start": 1295.213,
+ "end": 1295.953,
+ "text": "we"
+ },
+ {
+ "id": 3238,
+ "start": 1295.953,
+ "end": 1296.553,
+ "text": "had"
+ },
+ {
+ "id": 3239,
+ "start": 1296.543,
+ "end": 1296.743,
+ "text": "the"
+ },
+ {
+ "id": 3240,
+ "start": 1296.868,
+ "end": 1297.0430000000001,
+ "text": "ALS"
+ },
+ {
+ "id": 3241,
+ "start": 1297.193,
+ "end": 1297.343,
+ "text": "Ice"
+ },
+ {
+ "id": 3242,
+ "start": 1297.343,
+ "end": 1297.623,
+ "text": "Bucket"
+ },
+ {
+ "id": 3243,
+ "start": 1297.728,
+ "end": 1298.0304999999998,
+ "text": "Challenge,"
+ },
+ {
+ "id": 3244,
+ "start": 1298.113,
+ "end": 1298.4379999999999,
+ "text": "the"
+ },
+ {
+ "id": 3245,
+ "start": 1298.498,
+ "end": 1298.8455,
+ "text": "ALS"
+ },
+ {
+ "id": 3246,
+ "start": 1298.883,
+ "end": 1299.253,
+ "text": "website"
+ },
+ {
+ "id": 3247,
+ "start": 1299.253,
+ "end": 1299.613,
+ "text": "actually"
+ },
+ {
+ "id": 3248,
+ "start": 1299.613,
+ "end": 1300.943,
+ "text": "crashed."
+ },
+ {
+ "id": 3249,
+ "start": 1300.943,
+ "end": 1301.153,
+ "text": "We"
+ },
+ {
+ "id": 3250,
+ "start": 1301.153,
+ "end": 1301.273,
+ "text": "can"
+ },
+ {
+ "id": 3251,
+ "start": 1301.273,
+ "end": 1301.433,
+ "text": "do"
+ },
+ {
+ "id": 3252,
+ "start": 1301.433,
+ "end": 1302.143,
+ "text": "more."
+ },
+ {
+ "id": 3253,
+ "start": 1302.143,
+ "end": 1302.333,
+ "text": "We"
+ },
+ {
+ "id": 3254,
+ "start": 1302.333,
+ "end": 1302.483,
+ "text": "can"
+ },
+ {
+ "id": 3255,
+ "start": 1302.483,
+ "end": 1302.773,
+ "text": "actually"
+ },
+ {
+ "id": 3256,
+ "start": 1302.773,
+ "end": 1303.263,
+ "text": "process"
+ },
+ {
+ "id": 3257,
+ "start": 1303.263,
+ "end": 1303.763,
+ "text": "that"
+ },
+ {
+ "id": 3258,
+ "start": 1303.763,
+ "end": 1304.463,
+ "text": "donation"
+ },
+ {
+ "id": 3259,
+ "start": 1304.463,
+ "end": 1304.723,
+ "text": "on"
+ },
+ {
+ "id": 3260,
+ "start": 1304.723,
+ "end": 1305.443,
+ "text": "Facebook"
+ },
+ {
+ "id": 3261,
+ "start": 1305.443,
+ "end": 1305.913,
+ "text": "because"
+ },
+ {
+ "id": 3262,
+ "start": 1305.913,
+ "end": 1306.033,
+ "text": "we"
+ },
+ {
+ "id": 3263,
+ "start": 1306.033,
+ "end": 1306.133,
+ "text": "have"
+ },
+ {
+ "id": 3264,
+ "start": 1306.133,
+ "end": 1306.183,
+ "text": "a"
+ },
+ {
+ "id": 3265,
+ "start": 1306.183,
+ "end": 1306.413,
+ "text": "great"
+ },
+ {
+ "id": 3266,
+ "start": 1306.413,
+ "end": 1306.783,
+ "text": "payment"
+ },
+ {
+ "id": 3267,
+ "start": 1306.783,
+ "end": 1307.273,
+ "text": "system."
+ },
+ {
+ "id": 3268,
+ "start": 1307.273,
+ "end": 1307.403,
+ "text": "The"
+ },
+ {
+ "id": 3269,
+ "start": 1307.513,
+ "end": 1307.7830000000001,
+ "text": "ALS"
+ },
+ {
+ "id": 3270,
+ "start": 1307.753,
+ "end": 1308.163,
+ "text": "website"
+ },
+ {
+ "id": 3271,
+ "start": 1308.163,
+ "end": 1308.273,
+ "text": "is"
+ },
+ {
+ "id": 3272,
+ "start": 1308.273,
+ "end": 1308.653,
+ "text": "not"
+ },
+ {
+ "id": 3273,
+ "start": 1308.943,
+ "end": 1309.163,
+ "text": "optimizing"
+ },
+ {
+ "id": 3274,
+ "start": 1309.613,
+ "end": 1309.673,
+ "text": "a"
+ },
+ {
+ "id": 3275,
+ "start": 1309.673,
+ "end": 1310.013,
+ "text": "global"
+ },
+ {
+ "id": 3276,
+ "start": 1310.013,
+ "end": 1310.623,
+ "text": "infrastructure"
+ },
+ {
+ "id": 3277,
+ "start": 1310.623,
+ "end": 1310.763,
+ "text": "for"
+ },
+ {
+ "id": 3278,
+ "start": 1310.763,
+ "end": 1311.643,
+ "text": "payments."
+ },
+ {
+ "id": 3279,
+ "start": 1311.303,
+ "end": 1311.843,
+ "text": "Those"
+ },
+ {
+ "id": 3280,
+ "start": 1311.6180000000002,
+ "end": 1312.0030000000002,
+ "text": "are"
+ },
+ {
+ "id": 3281,
+ "start": 1311.933,
+ "end": 1312.163,
+ "text": "just"
+ },
+ {
+ "id": 3282,
+ "start": 1312.163,
+ "end": 1312.753,
+ "text": "examples"
+ },
+ {
+ "id": 3283,
+ "start": 1312.753,
+ "end": 1312.853,
+ "text": "of"
+ },
+ {
+ "id": 3284,
+ "start": 1312.853,
+ "end": 1312.933,
+ "text": "the"
+ },
+ {
+ "id": 3285,
+ "start": 1312.933,
+ "end": 1313.673,
+ "text": "responsibility"
+ },
+ {
+ "id": 3286,
+ "start": 1313.673,
+ "end": 1313.823,
+ "text": "that"
+ },
+ {
+ "id": 3287,
+ "start": 1313.823,
+ "end": 1313.963,
+ "text": "we"
+ },
+ {
+ "id": 3288,
+ "start": 1313.963,
+ "end": 1314.953,
+ "text": "felt,"
+ },
+ {
+ "id": 3289,
+ "start": 1314.953,
+ "end": 1315.083,
+ "text": "the"
+ },
+ {
+ "id": 3290,
+ "start": 1315.083,
+ "end": 1315.593,
+ "text": "opportunity"
+ },
+ {
+ "id": 3291,
+ "start": 1315.593,
+ "end": 1315.783,
+ "text": "that"
+ },
+ {
+ "id": 3292,
+ "start": 1315.783,
+ "end": 1316.003,
+ "text": "we"
+ },
+ {
+ "id": 3293,
+ "start": 1316.003,
+ "end": 1317.263,
+ "text": "saw"
+ },
+ {
+ "id": 3294,
+ "start": 1317.263,
+ "end": 1317.503,
+ "text": "to"
+ },
+ {
+ "id": 3295,
+ "start": 1317.503,
+ "end": 1317.703,
+ "text": "make"
+ },
+ {
+ "id": 3296,
+ "start": 1317.703,
+ "end": 1317.913,
+ "text": "this"
+ },
+ {
+ "id": 3297,
+ "start": 1317.913,
+ "end": 1318.123,
+ "text": "even"
+ },
+ {
+ "id": 3298,
+ "start": 1318.123,
+ "end": 1318.493,
+ "text": "easier"
+ },
+ {
+ "id": 3299,
+ "start": 1318.493,
+ "end": 1318.603,
+ "text": "on"
+ },
+ {
+ "id": 3300,
+ "start": 1318.603,
+ "end": 1318.713,
+ "text": "our"
+ },
+ {
+ "id": 3301,
+ "start": 1319.4229999999998,
+ "end": 1319.7830000000004,
+ "text": "platform."
+ },
+ {
+ "id": 3302,
+ "start": 1320.243,
+ "end": 1320.853,
+ "text": "Has"
+ },
+ {
+ "id": 3303,
+ "start": 1320.853,
+ "end": 1321.033,
+ "text": "there"
+ },
+ {
+ "id": 3304,
+ "start": 1321.033,
+ "end": 1321.283,
+ "text": "ever"
+ },
+ {
+ "id": 3305,
+ "start": 1321.283,
+ "end": 1321.473,
+ "text": "been"
+ },
+ {
+ "id": 3306,
+ "start": 1321.473,
+ "end": 1321.523,
+ "text": "a"
+ },
+ {
+ "id": 3307,
+ "start": 1321.523,
+ "end": 1321.893,
+ "text": "minute"
+ },
+ {
+ "id": 3308,
+ "start": 1321.883,
+ "end": 1322.063,
+ "text": "where"
+ },
+ {
+ "id": 3309,
+ "start": 1322.093,
+ "end": 1322.468,
+ "text": "you"
+ },
+ {
+ "id": 3310,
+ "start": 1322.303,
+ "end": 1322.873,
+ "text": "questioned"
+ },
+ {
+ "id": 3311,
+ "start": 1322.873,
+ "end": 1322.953,
+ "text": "the"
+ },
+ {
+ "id": 3312,
+ "start": 1322.953,
+ "end": 1323.773,
+ "text": "mission,"
+ },
+ {
+ "id": 3313,
+ "start": 1323.773,
+ "end": 1324.043,
+ "text": "that"
+ },
+ {
+ "id": 3314,
+ "start": 1324.043,
+ "end": 1324.223,
+ "text": "this"
+ },
+ {
+ "id": 3315,
+ "start": 1324.223,
+ "end": 1324.373,
+ "text": "is"
+ },
+ {
+ "id": 3316,
+ "start": 1325.1129999999998,
+ "end": 1325.268,
+ "text": "actually—you"
+ },
+ {
+ "id": 3317,
+ "start": 1326.003,
+ "end": 1326.163,
+ "text": "know,"
+ },
+ {
+ "id": 3318,
+ "start": 1326.163,
+ "end": 1326.513,
+ "text": "in"
+ },
+ {
+ "id": 3319,
+ "start": 1326.513,
+ "end": 1326.853,
+ "text": "terms"
+ },
+ {
+ "id": 3320,
+ "start": 1326.853,
+ "end": 1327.223,
+ "text": "of"
+ },
+ {
+ "id": 3321,
+ "start": 1327.223,
+ "end": 1327.543,
+ "text": "what’s"
+ },
+ {
+ "id": 3322,
+ "start": 1327.543,
+ "end": 1327.933,
+ "text": "happened"
+ },
+ {
+ "id": 3323,
+ "start": 1327.933,
+ "end": 1328.083,
+ "text": "over"
+ },
+ {
+ "id": 3324,
+ "start": 1328.083,
+ "end": 1328.193,
+ "text": "the"
+ },
+ {
+ "id": 3325,
+ "start": 1328.193,
+ "end": 1328.483,
+ "text": "past"
+ },
+ {
+ "id": 3326,
+ "start": 1328.483,
+ "end": 1328.743,
+ "text": "couple"
+ },
+ {
+ "id": 3327,
+ "start": 1328.743,
+ "end": 1328.833,
+ "text": "of"
+ },
+ {
+ "id": 3328,
+ "start": 1328.833,
+ "end": 1329.203,
+ "text": "years?"
+ },
+ {
+ "id": 3329,
+ "start": 1329.203,
+ "end": 1329.373,
+ "text": "If"
+ },
+ {
+ "id": 3330,
+ "start": 1329.373,
+ "end": 1329.473,
+ "text": "you"
+ },
+ {
+ "id": 3331,
+ "start": 1329.473,
+ "end": 1329.733,
+ "text": "see"
+ },
+ {
+ "id": 3332,
+ "start": 1329.733,
+ "end": 1329.933,
+ "text": "what’s"
+ },
+ {
+ "id": 3333,
+ "start": 1329.933,
+ "end": 1330.763,
+ "text": "happened"
+ },
+ {
+ "id": 3334,
+ "start": 1330.763,
+ "end": 1331.013,
+ "text": "on"
+ },
+ {
+ "id": 3335,
+ "start": 1331.013,
+ "end": 1331.093,
+ "text": "the"
+ },
+ {
+ "id": 3336,
+ "start": 1331.093,
+ "end": 1331.663,
+ "text": "platform"
+ },
+ {
+ "id": 3337,
+ "start": 1331.663,
+ "end": 1331.753,
+ "text": "in"
+ },
+ {
+ "id": 3338,
+ "start": 1331.753,
+ "end": 1331.823,
+ "text": "a"
+ },
+ {
+ "id": 3339,
+ "start": 1331.823,
+ "end": 1332.123,
+ "text": "place"
+ },
+ {
+ "id": 3340,
+ "start": 1332.123,
+ "end": 1332.353,
+ "text": "like"
+ },
+ {
+ "id": 3341,
+ "start": 1332.353,
+ "end": 1333.203,
+ "text": "Myanmar"
+ },
+ {
+ "id": 3342,
+ "start": 1333.203,
+ "end": 1333.383,
+ "text": "or"
+ },
+ {
+ "id": 3343,
+ "start": 1333.383,
+ "end": 1333.503,
+ "text": "you"
+ },
+ {
+ "id": 3344,
+ "start": 1333.503,
+ "end": 1333.733,
+ "text": "see"
+ },
+ {
+ "id": 3345,
+ "start": 1333.733,
+ "end": 1333.863,
+ "text": "what"
+ },
+ {
+ "id": 3346,
+ "start": 1333.863,
+ "end": 1334.623,
+ "text": "happened"
+ },
+ {
+ "id": 3347,
+ "start": 1334.623,
+ "end": 1334.883,
+ "text": "during"
+ },
+ {
+ "id": 3348,
+ "start": 1334.883,
+ "end": 1334.963,
+ "text": "the"
+ },
+ {
+ "id": 3349,
+ "start": 1334.963,
+ "end": 1335.483,
+ "text": "elections"
+ },
+ {
+ "id": 3350,
+ "start": 1335.483,
+ "end": 1337.133,
+ "text": "here,"
+ },
+ {
+ "id": 3351,
+ "start": 1337.133,
+ "end": 1337.493,
+ "text": "there’s"
+ },
+ {
+ "id": 3352,
+ "start": 1337.493,
+ "end": 1337.803,
+ "text": "almost"
+ },
+ {
+ "id": 3353,
+ "start": 1337.803,
+ "end": 1337.963,
+ "text": "this"
+ },
+ {
+ "id": 3354,
+ "start": 1337.963,
+ "end": 1338.703,
+ "text": "evangelism"
+ },
+ {
+ "id": 3355,
+ "start": 1338.703,
+ "end": 1339.242,
+ "text": "around"
+ },
+ {
+ "id": 3356,
+ "start": 1339.193,
+ "end": 1339.732,
+ "text": "Mark’s"
+ },
+ {
+ "id": 3357,
+ "start": 1339.9175000000002,
+ "end": 1340.3220000000001,
+ "text": "mission,"
+ },
+ {
+ "id": 3358,
+ "start": 1340.642,
+ "end": 1340.912,
+ "text": "and"
+ },
+ {
+ "id": 3359,
+ "start": 1340.912,
+ "end": 1341.012,
+ "text": "I’m"
+ },
+ {
+ "id": 3360,
+ "start": 1341.012,
+ "end": 1341.262,
+ "text": "just"
+ },
+ {
+ "id": 3361,
+ "start": 1341.262,
+ "end": 1342.352,
+ "text": "wondering,"
+ },
+ {
+ "id": 3362,
+ "start": 1342.352,
+ "end": 1343.062,
+ "text": "internally"
+ },
+ {
+ "id": 3363,
+ "start": 1343.062,
+ "end": 1343.272,
+ "text": "for"
+ },
+ {
+ "id": 3364,
+ "start": 1343.272,
+ "end": 1343.552,
+ "text": "you"
+ },
+ {
+ "id": 3365,
+ "start": 1343.552,
+ "end": 1344.162,
+ "text": "personally"
+ },
+ {
+ "id": 3366,
+ "start": 1344.162,
+ "end": 1344.342,
+ "text": "or"
+ },
+ {
+ "id": 3367,
+ "start": 1344.567,
+ "end": 1345.1019999999999,
+ "text": "here,"
+ },
+ {
+ "id": 3368,
+ "start": 1344.972,
+ "end": 1345.862,
+ "text": "whether"
+ },
+ {
+ "id": 3369,
+ "start": 1345.862,
+ "end": 1346.232,
+ "text": "anyone"
+ },
+ {
+ "id": 3370,
+ "start": 1346.232,
+ "end": 1346.492,
+ "text": "has"
+ },
+ {
+ "id": 3371,
+ "start": 1346.9869999999996,
+ "end": 1347.1419999999996,
+ "text": "taken"
+ },
+ {
+ "id": 3372,
+ "start": 1347.742,
+ "end": 1347.792,
+ "text": "a"
+ },
+ {
+ "id": 3373,
+ "start": 1347.792,
+ "end": 1348.312,
+ "text": "second"
+ },
+ {
+ "id": 3374,
+ "start": 1348.312,
+ "end": 1348.422,
+ "text": "to"
+ },
+ {
+ "id": 3375,
+ "start": 1348.422,
+ "end": 1348.712,
+ "text": "step"
+ },
+ {
+ "id": 3376,
+ "start": 1348.712,
+ "end": 1348.992,
+ "text": "back"
+ },
+ {
+ "id": 3377,
+ "start": 1348.992,
+ "end": 1349.112,
+ "text": "and"
+ },
+ {
+ "id": 3378,
+ "start": 1349.112,
+ "end": 1349.352,
+ "text": "say:"
+ },
+ {
+ "id": 3379,
+ "start": 1349.352,
+ "end": 1349.412,
+ "text": "“All"
+ },
+ {
+ "id": 3380,
+ "start": 1349.412,
+ "end": 1350.432,
+ "text": "right,"
+ },
+ {
+ "id": 3381,
+ "start": 1350.432,
+ "end": 1350.582,
+ "text": "is"
+ },
+ {
+ "id": 3382,
+ "start": 1350.582,
+ "end": 1351.242,
+ "text": "this"
+ },
+ {
+ "id": 3383,
+ "start": 1351.242,
+ "end": 1351.442,
+ "text": "for"
+ },
+ {
+ "id": 3384,
+ "start": 1351.442,
+ "end": 1351.762,
+ "text": "real?"
+ },
+ {
+ "id": 3385,
+ "start": 1351.762,
+ "end": 1351.932,
+ "text": "Has"
+ },
+ {
+ "id": 3386,
+ "start": 1351.932,
+ "end": 1352.102,
+ "text": "this"
+ },
+ {
+ "id": 3387,
+ "start": 1352.102,
+ "end": 1352.592,
+ "text": "blinded"
+ },
+ {
+ "id": 3388,
+ "start": 1352.592,
+ "end": 1352.752,
+ "text": "us"
+ },
+ {
+ "id": 3389,
+ "start": 1352.752,
+ "end": 1352.872,
+ "text": "in"
+ },
+ {
+ "id": 3390,
+ "start": 1352.872,
+ "end": 1353.152,
+ "text": "some"
+ },
+ {
+ "id": 3391,
+ "start": 1353.152,
+ "end": 1354.042,
+ "text": "way?”"
+ },
+ {
+ "id": 3392,
+ "start": 1354.042,
+ "end": 1354.202,
+ "text": "Have"
+ },
+ {
+ "id": 3393,
+ "start": 1354.202,
+ "end": 1354.332,
+ "text": "you"
+ },
+ {
+ "id": 3394,
+ "start": 1354.332,
+ "end": 1354.522,
+ "text": "had"
+ },
+ {
+ "id": 3395,
+ "start": 1354.522,
+ "end": 1354.572,
+ "text": "a"
+ },
+ {
+ "id": 3396,
+ "start": 1354.572,
+ "end": 1354.932,
+ "text": "moment"
+ },
+ {
+ "id": 3397,
+ "start": 1354.932,
+ "end": 1355.132,
+ "text": "like"
+ },
+ {
+ "id": 3398,
+ "start": 1355.132,
+ "end": 1356.452,
+ "text": "that?"
+ },
+ {
+ "id": 3399,
+ "start": 1356.452,
+ "end": 1356.662,
+ "text": "I"
+ },
+ {
+ "id": 3400,
+ "start": 1356.662,
+ "end": 1358.492,
+ "text": "still"
+ },
+ {
+ "id": 3401,
+ "start": 1358.492,
+ "end": 1358.922,
+ "text": "continue"
+ },
+ {
+ "id": 3402,
+ "start": 1358.922,
+ "end": 1359.002,
+ "text": "to"
+ },
+ {
+ "id": 3403,
+ "start": 1359.002,
+ "end": 1359.332,
+ "text": "firmly"
+ },
+ {
+ "id": 3404,
+ "start": 1359.332,
+ "end": 1359.662,
+ "text": "believe"
+ },
+ {
+ "id": 3405,
+ "start": 1359.662,
+ "end": 1359.762,
+ "text": "in"
+ },
+ {
+ "id": 3406,
+ "start": 1359.762,
+ "end": 1359.832,
+ "text": "the"
+ },
+ {
+ "id": 3407,
+ "start": 1359.832,
+ "end": 1360.152,
+ "text": "mission."
+ },
+ {
+ "id": 3408,
+ "start": 1360.152,
+ "end": 1360.212,
+ "text": "I"
+ },
+ {
+ "id": 3409,
+ "start": 1360.212,
+ "end": 1360.402,
+ "text": "wouldn’t"
+ },
+ {
+ "id": 3410,
+ "start": 1360.402,
+ "end": 1360.542,
+ "text": "be"
+ },
+ {
+ "id": 3411,
+ "start": 1360.542,
+ "end": 1360.772,
+ "text": "here"
+ },
+ {
+ "id": 3412,
+ "start": 1360.772,
+ "end": 1360.962,
+ "text": "if"
+ },
+ {
+ "id": 3413,
+ "start": 1360.962,
+ "end": 1361.042,
+ "text": "I"
+ },
+ {
+ "id": 3414,
+ "start": 1361.042,
+ "end": 1362.652,
+ "text": "didn’t."
+ },
+ {
+ "id": 3415,
+ "start": 1362.652,
+ "end": 1362.772,
+ "text": "I"
+ },
+ {
+ "id": 3416,
+ "start": 1362.772,
+ "end": 1363.272,
+ "text": "don’t"
+ },
+ {
+ "id": 3417,
+ "start": 1363.272,
+ "end": 1363.462,
+ "text": "think"
+ },
+ {
+ "id": 3418,
+ "start": 1363.467,
+ "end": 1363.7069999999999,
+ "text": "there’s"
+ },
+ {
+ "id": 3419,
+ "start": 1363.662,
+ "end": 1363.952,
+ "text": "anywhere"
+ },
+ {
+ "id": 3420,
+ "start": 1363.952,
+ "end": 1364.152,
+ "text": "else"
+ },
+ {
+ "id": 3421,
+ "start": 1364.152,
+ "end": 1364.202,
+ "text": "I"
+ },
+ {
+ "id": 3422,
+ "start": 1364.202,
+ "end": 1364.392,
+ "text": "could"
+ },
+ {
+ "id": 3423,
+ "start": 1364.392,
+ "end": 1364.642,
+ "text": "go"
+ },
+ {
+ "id": 3424,
+ "start": 1364.642,
+ "end": 1364.732,
+ "text": "to"
+ },
+ {
+ "id": 3425,
+ "start": 1364.732,
+ "end": 1364.972,
+ "text": "have"
+ },
+ {
+ "id": 3426,
+ "start": 1364.972,
+ "end": 1365.082,
+ "text": "the"
+ },
+ {
+ "id": 3427,
+ "start": 1365.082,
+ "end": 1365.442,
+ "text": "kind"
+ },
+ {
+ "id": 3428,
+ "start": 1365.442,
+ "end": 1365.552,
+ "text": "of"
+ },
+ {
+ "id": 3429,
+ "start": 1365.552,
+ "end": 1366.022,
+ "text": "impact"
+ },
+ {
+ "id": 3430,
+ "start": 1366.022,
+ "end": 1366.142,
+ "text": "that"
+ },
+ {
+ "id": 3431,
+ "start": 1366.142,
+ "end": 1366.202,
+ "text": "I"
+ },
+ {
+ "id": 3432,
+ "start": 1366.202,
+ "end": 1366.622,
+ "text": "have"
+ },
+ {
+ "id": 3433,
+ "start": 1366.622,
+ "end": 1368.642,
+ "text": "here."
+ },
+ {
+ "id": 3434,
+ "start": 1368.642,
+ "end": 1369.002,
+ "text": "But"
+ },
+ {
+ "id": 3435,
+ "start": 1369.002,
+ "end": 1369.142,
+ "text": "in"
+ },
+ {
+ "id": 3436,
+ "start": 1369.142,
+ "end": 1369.512,
+ "text": "terms"
+ },
+ {
+ "id": 3437,
+ "start": 1369.512,
+ "end": 1369.702,
+ "text": "of"
+ },
+ {
+ "id": 3438,
+ "start": 1369.702,
+ "end": 1370.132,
+ "text": "stepping"
+ },
+ {
+ "id": 3439,
+ "start": 1370.132,
+ "end": 1370.522,
+ "text": "back,"
+ },
+ {
+ "id": 3440,
+ "start": 1370.522,
+ "end": 1370.692,
+ "text": "in"
+ },
+ {
+ "id": 3441,
+ "start": 1370.692,
+ "end": 1371.142,
+ "text": "terms"
+ },
+ {
+ "id": 3442,
+ "start": 1371.142,
+ "end": 1371.322,
+ "text": "of"
+ },
+ {
+ "id": 3443,
+ "start": 1371.322,
+ "end": 1372.512,
+ "text": "reflecting,"
+ },
+ {
+ "id": 3444,
+ "start": 1372.512,
+ "end": 1373.792,
+ "text": "absolutely."
+ },
+ {
+ "id": 3445,
+ "start": 1373.792,
+ "end": 1373.852,
+ "text": "I"
+ },
+ {
+ "id": 3446,
+ "start": 1373.852,
+ "end": 1374.112,
+ "text": "think"
+ },
+ {
+ "id": 3447,
+ "start": 1374.112,
+ "end": 1374.272,
+ "text": "I’ve"
+ },
+ {
+ "id": 3448,
+ "start": 1374.272,
+ "end": 1374.532,
+ "text": "done"
+ },
+ {
+ "id": 3449,
+ "start": 1374.862,
+ "end": 1375.1719999999998,
+ "text": "that;"
+ },
+ {
+ "id": 3450,
+ "start": 1375.452,
+ "end": 1375.812,
+ "text": "Mark’s"
+ },
+ {
+ "id": 3451,
+ "start": 1375.742,
+ "end": 1376.262,
+ "text": "done"
+ },
+ {
+ "id": 3452,
+ "start": 1376.032,
+ "end": 1376.712,
+ "text": "that;"
+ },
+ {
+ "id": 3453,
+ "start": 1376.712,
+ "end": 1377.332,
+ "text": "leadership"
+ },
+ {
+ "id": 3454,
+ "start": 1377.332,
+ "end": 1377.512,
+ "text": "team"
+ },
+ {
+ "id": 3455,
+ "start": 1377.512,
+ "end": 1377.642,
+ "text": "has"
+ },
+ {
+ "id": 3456,
+ "start": 1377.642,
+ "end": 1377.812,
+ "text": "done"
+ },
+ {
+ "id": 3457,
+ "start": 1377.812,
+ "end": 1377.942,
+ "text": "that."
+ },
+ {
+ "id": 3458,
+ "start": 1377.942,
+ "end": 1378.072,
+ "text": "We’ve"
+ },
+ {
+ "id": 3459,
+ "start": 1378.072,
+ "end": 1378.212,
+ "text": "all"
+ },
+ {
+ "id": 3460,
+ "start": 1378.212,
+ "end": 1378.392,
+ "text": "done"
+ },
+ {
+ "id": 3461,
+ "start": 1378.392,
+ "end": 1378.572,
+ "text": "that"
+ },
+ {
+ "id": 3462,
+ "start": 1378.572,
+ "end": 1379.282,
+ "text": "here,"
+ },
+ {
+ "id": 3463,
+ "start": 1379.282,
+ "end": 1379.502,
+ "text": "but"
+ },
+ {
+ "id": 3464,
+ "start": 1379.502,
+ "end": 1379.722,
+ "text": "that"
+ },
+ {
+ "id": 3465,
+ "start": 1379.722,
+ "end": 1380.102,
+ "text": "isn’t"
+ },
+ {
+ "id": 3466,
+ "start": 1380.102,
+ "end": 1380.272,
+ "text": "on"
+ },
+ {
+ "id": 3467,
+ "start": 1380.272,
+ "end": 1380.352,
+ "text": "the"
+ },
+ {
+ "id": 3468,
+ "start": 1380.352,
+ "end": 1380.912,
+ "text": "mission."
+ },
+ {
+ "id": 3469,
+ "start": 1380.912,
+ "end": 1381.002,
+ "text": "The"
+ },
+ {
+ "id": 3470,
+ "start": 1381.002,
+ "end": 1381.562,
+ "text": "reflection"
+ },
+ {
+ "id": 3471,
+ "start": 1381.562,
+ "end": 1381.772,
+ "text": "is"
+ },
+ {
+ "id": 3472,
+ "start": 1381.772,
+ "end": 1382.092,
+ "text": "really"
+ },
+ {
+ "id": 3473,
+ "start": 1382.3220000000001,
+ "end": 1382.7019999999998,
+ "text": "about"
+ },
+ {
+ "id": 3474,
+ "start": 1382.872,
+ "end": 1383.312,
+ "text": "how"
+ },
+ {
+ "id": 3475,
+ "start": 1383.312,
+ "end": 1383.572,
+ "text": "can"
+ },
+ {
+ "id": 3476,
+ "start": 1383.572,
+ "end": 1383.692,
+ "text": "we"
+ },
+ {
+ "id": 3477,
+ "start": 1383.692,
+ "end": 1383.822,
+ "text": "do"
+ },
+ {
+ "id": 3478,
+ "start": 1383.822,
+ "end": 1383.892,
+ "text": "a"
+ },
+ {
+ "id": 3479,
+ "start": 1383.892,
+ "end": 1384.102,
+ "text": "better"
+ },
+ {
+ "id": 3480,
+ "start": 1384.102,
+ "end": 1384.362,
+ "text": "job"
+ },
+ {
+ "id": 3481,
+ "start": 1384.4053333333334,
+ "end": 1384.642,
+ "text": "at"
+ },
+ {
+ "id": 3482,
+ "start": 1384.7086666666667,
+ "end": 1384.922,
+ "text": "minimizing"
+ },
+ {
+ "id": 3483,
+ "start": 1385.012,
+ "end": 1385.202,
+ "text": "bad"
+ },
+ {
+ "id": 3484,
+ "start": 1385.202,
+ "end": 1385.982,
+ "text": "experiences"
+ },
+ {
+ "id": 3485,
+ "start": 1385.982,
+ "end": 1386.132,
+ "text": "on"
+ },
+ {
+ "id": 3486,
+ "start": 1386.132,
+ "end": 1387.242,
+ "text": "Facebook."
+ },
+ {
+ "id": 3487,
+ "start": 1387.242,
+ "end": 1387.512,
+ "text": "And"
+ },
+ {
+ "id": 3488,
+ "start": 1387.512,
+ "end": 1387.712,
+ "text": "why"
+ },
+ {
+ "id": 3489,
+ "start": 1387.712,
+ "end": 1388.092,
+ "text": "wasn’t"
+ },
+ {
+ "id": 3490,
+ "start": 1388.092,
+ "end": 1388.322,
+ "text": "that"
+ },
+ {
+ "id": 3491,
+ "start": 1388.322,
+ "end": 1388.592,
+ "text": "part"
+ },
+ {
+ "id": 3492,
+ "start": 1388.592,
+ "end": 1388.672,
+ "text": "of"
+ },
+ {
+ "id": 3493,
+ "start": 1388.672,
+ "end": 1388.762,
+ "text": "the"
+ },
+ {
+ "id": 3494,
+ "start": 1388.762,
+ "end": 1389.212,
+ "text": "metric"
+ },
+ {
+ "id": 3495,
+ "start": 1389.212,
+ "end": 1390.172,
+ "text": "earlier"
+ },
+ {
+ "id": 3496,
+ "start": 1390.172,
+ "end": 1390.322,
+ "text": "in"
+ },
+ {
+ "id": 3497,
+ "start": 1390.322,
+ "end": 1390.632,
+ "text": "terms"
+ },
+ {
+ "id": 3498,
+ "start": 1390.632,
+ "end": 1390.742,
+ "text": "of"
+ },
+ {
+ "id": 3499,
+ "start": 1390.742,
+ "end": 1390.932,
+ "text": "how"
+ },
+ {
+ "id": 3500,
+ "start": 1390.932,
+ "end": 1391.042,
+ "text": "do"
+ },
+ {
+ "id": 3501,
+ "start": 1391.042,
+ "end": 1391.162,
+ "text": "you"
+ },
+ {
+ "id": 3502,
+ "start": 1391.3819999999998,
+ "end": 1391.497,
+ "text": "minimize"
+ },
+ {
+ "id": 3503,
+ "start": 1391.722,
+ "end": 1391.832,
+ "text": "the"
+ },
+ {
+ "id": 3504,
+ "start": 1391.832,
+ "end": 1396.092,
+ "text": "harm?"
+ },
+ {
+ "id": 3505,
+ "start": 1396.092,
+ "end": 1396.372,
+ "text": "As"
+ },
+ {
+ "id": 3506,
+ "start": 1396.372,
+ "end": 1396.462,
+ "text": "I"
+ },
+ {
+ "id": 3507,
+ "start": 1396.462,
+ "end": 1397.442,
+ "text": "said,"
+ },
+ {
+ "id": 3508,
+ "start": 1397.442,
+ "end": 1397.602,
+ "text": "it’s"
+ },
+ {
+ "id": 3509,
+ "start": 1397.602,
+ "end": 1398.092,
+ "text": "possible"
+ },
+ {
+ "id": 3510,
+ "start": 1398.092,
+ "end": 1399.142,
+ "text": "that"
+ },
+ {
+ "id": 3511,
+ "start": 1399.142,
+ "end": 1399.362,
+ "text": "we"
+ },
+ {
+ "id": 3512,
+ "start": 1399.362,
+ "end": 1399.532,
+ "text": "could"
+ },
+ {
+ "id": 3513,
+ "start": 1399.532,
+ "end": 1399.632,
+ "text": "have"
+ },
+ {
+ "id": 3514,
+ "start": 1399.632,
+ "end": 1399.792,
+ "text": "done"
+ },
+ {
+ "id": 3515,
+ "start": 1399.792,
+ "end": 1399.982,
+ "text": "more"
+ },
+ {
+ "id": 3516,
+ "start": 1399.982,
+ "end": 1401.002,
+ "text": "sooner,"
+ },
+ {
+ "id": 3517,
+ "start": 1401.002,
+ "end": 1401.172,
+ "text": "and"
+ },
+ {
+ "id": 3518,
+ "start": 1401.172,
+ "end": 1401.262,
+ "text": "we"
+ },
+ {
+ "id": 3519,
+ "start": 1401.262,
+ "end": 1401.512,
+ "text": "haven’t"
+ },
+ {
+ "id": 3520,
+ "start": 1401.512,
+ "end": 1401.632,
+ "text": "been"
+ },
+ {
+ "id": 3521,
+ "start": 1401.632,
+ "end": 1401.772,
+ "text": "as"
+ },
+ {
+ "id": 3522,
+ "start": 1401.772,
+ "end": 1402.122,
+ "text": "fast"
+ },
+ {
+ "id": 3523,
+ "start": 1402.122,
+ "end": 1402.252,
+ "text": "as"
+ },
+ {
+ "id": 3524,
+ "start": 1402.252,
+ "end": 1402.352,
+ "text": "we"
+ },
+ {
+ "id": 3525,
+ "start": 1402.352,
+ "end": 1402.582,
+ "text": "needed"
+ },
+ {
+ "id": 3526,
+ "start": 1402.582,
+ "end": 1402.682,
+ "text": "to"
+ },
+ {
+ "id": 3527,
+ "start": 1402.682,
+ "end": 1404.112,
+ "text": "be,"
+ },
+ {
+ "id": 3528,
+ "start": 1404.112,
+ "end": 1404.382,
+ "text": "but"
+ },
+ {
+ "id": 3529,
+ "start": 1404.382,
+ "end": 1404.522,
+ "text": "we’re"
+ },
+ {
+ "id": 3530,
+ "start": 1404.522,
+ "end": 1404.732,
+ "text": "really"
+ },
+ {
+ "id": 3531,
+ "start": 1404.732,
+ "end": 1405.172,
+ "text": "focused"
+ },
+ {
+ "id": 3532,
+ "start": 1405.172,
+ "end": 1405.302,
+ "text": "on"
+ },
+ {
+ "id": 3533,
+ "start": 1405.302,
+ "end": 1405.422,
+ "text": "it"
+ },
+ {
+ "id": 3534,
+ "start": 1405.422,
+ "end": 1406.062,
+ "text": "now."
+ },
+ {
+ "id": 3535,
+ "start": 1406.062,
+ "end": 1406.142,
+ "text": "I"
+ },
+ {
+ "id": 3536,
+ "start": 1406.142,
+ "end": 1406.472,
+ "text": "know,"
+ },
+ {
+ "id": 3537,
+ "start": 1406.472,
+ "end": 1406.512,
+ "text": "I"
+ },
+ {
+ "id": 3538,
+ "start": 1406.512,
+ "end": 1406.792,
+ "text": "know,"
+ },
+ {
+ "id": 3539,
+ "start": 1406.792,
+ "end": 1406.822,
+ "text": "I"
+ },
+ {
+ "id": 3540,
+ "start": 1406.822,
+ "end": 1407.002,
+ "text": "know."
+ },
+ {
+ "id": 3541,
+ "start": 1407.002,
+ "end": 1407.122,
+ "text": "But"
+ },
+ {
+ "id": 3542,
+ "start": 1407.122,
+ "end": 1407.222,
+ "text": "I’m"
+ },
+ {
+ "id": 3543,
+ "start": 1407.222,
+ "end": 1407.432,
+ "text": "just"
+ },
+ {
+ "id": 3544,
+ "start": 1407.432,
+ "end": 1407.792,
+ "text": "curious"
+ },
+ {
+ "id": 3545,
+ "start": 1407.792,
+ "end": 1408.062,
+ "text": "about"
+ },
+ {
+ "id": 3546,
+ "start": 1408.062,
+ "end": 1408.372,
+ "text": "going"
+ },
+ {
+ "id": 3547,
+ "start": 1408.372,
+ "end": 1408.932,
+ "text": "back,"
+ },
+ {
+ "id": 3548,
+ "start": 1408.932,
+ "end": 1409.072,
+ "text": "you"
+ },
+ {
+ "id": 3549,
+ "start": 1409.072,
+ "end": 1409.952,
+ "text": "know,"
+ },
+ {
+ "id": 3550,
+ "start": 1409.952,
+ "end": 1410.122,
+ "text": "an"
+ },
+ {
+ "id": 3551,
+ "start": 1410.122,
+ "end": 1410.552,
+ "text": "honest"
+ },
+ {
+ "id": 3552,
+ "start": 1410.552,
+ "end": 1411.062,
+ "text": "accounting,"
+ },
+ {
+ "id": 3553,
+ "start": 1411.062,
+ "end": 1411.462,
+ "text": "because"
+ },
+ {
+ "id": 3554,
+ "start": 1411.462,
+ "end": 1411.592,
+ "text": "the"
+ },
+ {
+ "id": 3555,
+ "start": 1411.592,
+ "end": 1411.782,
+ "text": "whole"
+ },
+ {
+ "id": 3556,
+ "start": 1411.782,
+ "end": 1412.142,
+ "text": "point"
+ },
+ {
+ "id": 3557,
+ "start": 1412.142,
+ "end": 1412.272,
+ "text": "of"
+ },
+ {
+ "id": 3558,
+ "start": 1412.272,
+ "end": 1412.482,
+ "text": "this"
+ },
+ {
+ "id": 3559,
+ "start": 1412.482,
+ "end": 1412.892,
+ "text": "is"
+ },
+ {
+ "id": 3560,
+ "start": 1412.892,
+ "end": 1413.352,
+ "text": "we’re"
+ },
+ {
+ "id": 3561,
+ "start": 1413.352,
+ "end": 1413.682,
+ "text": "going"
+ },
+ {
+ "id": 3562,
+ "start": 1413.682,
+ "end": 1413.932,
+ "text": "through"
+ },
+ {
+ "id": 3563,
+ "start": 1413.932,
+ "end": 1414.012,
+ "text": "a"
+ },
+ {
+ "id": 3564,
+ "start": 1414.012,
+ "end": 1414.452,
+ "text": "history"
+ },
+ {
+ "id": 3565,
+ "start": 1414.452,
+ "end": 1414.552,
+ "text": "of"
+ },
+ {
+ "id": 3566,
+ "start": 1414.552,
+ "end": 1414.732,
+ "text": "this"
+ },
+ {
+ "id": 3567,
+ "start": 1414.732,
+ "end": 1415.562,
+ "text": "company"
+ },
+ {
+ "id": 3568,
+ "start": 1415.562,
+ "end": 1415.682,
+ "text": "to"
+ },
+ {
+ "id": 3569,
+ "start": 1415.682,
+ "end": 1415.902,
+ "text": "some"
+ },
+ {
+ "id": 3570,
+ "start": 1415.902,
+ "end": 1416.442,
+ "text": "degree"
+ },
+ {
+ "id": 3571,
+ "start": 1416.442,
+ "end": 1417.002,
+ "text": "and"
+ },
+ {
+ "id": 3572,
+ "start": 1417.002,
+ "end": 1417.392,
+ "text": "trying"
+ },
+ {
+ "id": 3573,
+ "start": 1417.392,
+ "end": 1417.472,
+ "text": "to"
+ },
+ {
+ "id": 3574,
+ "start": 1417.472,
+ "end": 1419.942,
+ "text": "understand"
+ },
+ {
+ "id": 3575,
+ "start": 1419.942,
+ "end": 1420.502,
+ "text": "the"
+ },
+ {
+ "id": 3576,
+ "start": 1420.502,
+ "end": 1421.222,
+ "text": "choices"
+ },
+ {
+ "id": 3577,
+ "start": 1421.222,
+ "end": 1421.372,
+ "text": "that"
+ },
+ {
+ "id": 3578,
+ "start": 1421.372,
+ "end": 1421.462,
+ "text": "are"
+ },
+ {
+ "id": 3579,
+ "start": 1421.462,
+ "end": 1421.842,
+ "text": "made"
+ },
+ {
+ "id": 3580,
+ "start": 1421.842,
+ "end": 1422.372,
+ "text": "along"
+ },
+ {
+ "id": 3581,
+ "start": 1422.372,
+ "end": 1422.452,
+ "text": "the"
+ },
+ {
+ "id": 3582,
+ "start": 1422.452,
+ "end": 1422.752,
+ "text": "way,"
+ },
+ {
+ "id": 3583,
+ "start": 1422.752,
+ "end": 1424.342,
+ "text": "because"
+ },
+ {
+ "id": 3584,
+ "start": 1424.342,
+ "end": 1424.852,
+ "text": "it’s"
+ },
+ {
+ "id": 3585,
+ "start": 1424.852,
+ "end": 1425.072,
+ "text": "not"
+ },
+ {
+ "id": 3586,
+ "start": 1425.072,
+ "end": 1425.302,
+ "text": "just"
+ },
+ {
+ "id": 3587,
+ "start": 1425.302,
+ "end": 1425.502,
+ "text": "not"
+ },
+ {
+ "id": 3588,
+ "start": 1425.502,
+ "end": 1425.792,
+ "text": "paying"
+ },
+ {
+ "id": 3589,
+ "start": 1425.792,
+ "end": 1426.312,
+ "text": "attention"
+ },
+ {
+ "id": 3590,
+ "start": 1426.312,
+ "end": 1426.422,
+ "text": "to"
+ },
+ {
+ "id": 3591,
+ "start": 1426.552,
+ "end": 1426.687,
+ "text": "things;"
+ },
+ {
+ "id": 3592,
+ "start": 1426.792,
+ "end": 1426.952,
+ "text": "it’s"
+ },
+ {
+ "id": 3593,
+ "start": 1426.952,
+ "end": 1427.202,
+ "text": "not"
+ },
+ {
+ "id": 3594,
+ "start": 1427.202,
+ "end": 1427.452,
+ "text": "just"
+ },
+ {
+ "id": 3595,
+ "start": 1427.9619999999998,
+ "end": 1428.2170000000003,
+ "text": "naiveté."
+ },
+ {
+ "id": 3596,
+ "start": 1428.722,
+ "end": 1428.982,
+ "text": "There’s"
+ },
+ {
+ "id": 3597,
+ "start": 1428.982,
+ "end": 1429.572,
+ "text": "something"
+ },
+ {
+ "id": 3598,
+ "start": 1429.572,
+ "end": 1430.572,
+ "text": "that’s"
+ },
+ {
+ "id": 3599,
+ "start": 1430.572,
+ "end": 1431.142,
+ "text": "happened,"
+ },
+ {
+ "id": 3600,
+ "start": 1431.142,
+ "end": 1431.342,
+ "text": "and"
+ },
+ {
+ "id": 3601,
+ "start": 1431.342,
+ "end": 1431.532,
+ "text": "we"
+ },
+ {
+ "id": 3602,
+ "start": 1431.532,
+ "end": 1431.742,
+ "text": "need"
+ },
+ {
+ "id": 3603,
+ "start": 1431.742,
+ "end": 1431.832,
+ "text": "to"
+ },
+ {
+ "id": 3604,
+ "start": 1431.832,
+ "end": 1432.502,
+ "text": "understand"
+ },
+ {
+ "id": 3605,
+ "start": 1432.502,
+ "end": 1433.432,
+ "text": "that."
+ },
+ {
+ "id": 3606,
+ "start": 1433.432,
+ "end": 1433.632,
+ "text": "For"
+ },
+ {
+ "id": 3607,
+ "start": 1433.632,
+ "end": 1434.982,
+ "text": "instance,"
+ },
+ {
+ "id": 3608,
+ "start": 1434.982,
+ "end": 1435.112,
+ "text": "do"
+ },
+ {
+ "id": 3609,
+ "start": 1435.112,
+ "end": 1435.292,
+ "text": "you"
+ },
+ {
+ "id": 3610,
+ "start": 1435.292,
+ "end": 1435.772,
+ "text": "regret"
+ },
+ {
+ "id": 3611,
+ "start": 1435.772,
+ "end": 1436.412,
+ "text": "choices"
+ },
+ {
+ "id": 3612,
+ "start": 1436.412,
+ "end": 1436.732,
+ "text": "going"
+ },
+ {
+ "id": 3613,
+ "start": 1436.732,
+ "end": 1437.352,
+ "text": "backward"
+ },
+ {
+ "id": 3614,
+ "start": 1437.147,
+ "end": 1437.662,
+ "text": "and"
+ },
+ {
+ "id": 3615,
+ "start": 1437.562,
+ "end": 1437.972,
+ "text": "thinking"
+ },
+ {
+ "id": 3616,
+ "start": 1437.972,
+ "end": 1438.372,
+ "text": "about"
+ },
+ {
+ "id": 3617,
+ "start": 1438.4669999999999,
+ "end": 1438.707,
+ "text": "leading—you"
+ },
+ {
+ "id": 3618,
+ "start": 1438.962,
+ "end": 1439.042,
+ "text": "know,"
+ },
+ {
+ "id": 3619,
+ "start": 1439.042,
+ "end": 1439.242,
+ "text": "being"
+ },
+ {
+ "id": 3620,
+ "start": 1439.242,
+ "end": 1439.322,
+ "text": "a"
+ },
+ {
+ "id": 3621,
+ "start": 1439.322,
+ "end": 1439.622,
+ "text": "part"
+ },
+ {
+ "id": 3622,
+ "start": 1439.622,
+ "end": 1439.702,
+ "text": "of"
+ },
+ {
+ "id": 3623,
+ "start": 1439.702,
+ "end": 1439.792,
+ "text": "the"
+ },
+ {
+ "id": 3624,
+ "start": 1439.792,
+ "end": 1440.162,
+ "text": "Growth"
+ },
+ {
+ "id": 3625,
+ "start": 1440.8320000000003,
+ "end": 1441.3220000000001,
+ "text": "team"
+ },
+ {
+ "id": 3626,
+ "start": 1441.8720000000003,
+ "end": 1442.4820000000009,
+ "text": "and"
+ },
+ {
+ "id": 3627,
+ "start": 1442.912,
+ "end": 1443.642,
+ "text": "decisions"
+ },
+ {
+ "id": 3628,
+ "start": 1443.642,
+ "end": 1443.842,
+ "text": "that"
+ },
+ {
+ "id": 3629,
+ "start": 1443.842,
+ "end": 1443.972,
+ "text": "were"
+ },
+ {
+ "id": 3630,
+ "start": 1443.972,
+ "end": 1444.812,
+ "text": "made"
+ },
+ {
+ "id": 3631,
+ "start": 1444.812,
+ "end": 1445.562,
+ "text": "about"
+ },
+ {
+ "id": 3632,
+ "start": 1445.562,
+ "end": 1445.942,
+ "text": "not"
+ },
+ {
+ "id": 3633,
+ "start": 1445.942,
+ "end": 1446.422,
+ "text": "taking"
+ },
+ {
+ "id": 3634,
+ "start": 1446.422,
+ "end": 1446.722,
+ "text": "into"
+ },
+ {
+ "id": 3635,
+ "start": 1446.722,
+ "end": 1447.182,
+ "text": "account"
+ },
+ {
+ "id": 3636,
+ "start": 1447.182,
+ "end": 1447.552,
+ "text": "risks"
+ },
+ {
+ "id": 3637,
+ "start": 1447.552,
+ "end": 1447.642,
+ "text": "or"
+ },
+ {
+ "id": 3638,
+ "start": 1447.642,
+ "end": 1447.892,
+ "text": "not"
+ },
+ {
+ "id": 3639,
+ "start": 1447.892,
+ "end": 1448.402,
+ "text": "measuring"
+ },
+ {
+ "id": 3640,
+ "start": 1448.402,
+ "end": 1448.832,
+ "text": "risks"
+ },
+ {
+ "id": 3641,
+ "start": 1448.832,
+ "end": 1448.972,
+ "text": "and"
+ },
+ {
+ "id": 3642,
+ "start": 1448.972,
+ "end": 1449.212,
+ "text": "things"
+ },
+ {
+ "id": 3643,
+ "start": 1449.212,
+ "end": 1449.382,
+ "text": "like"
+ },
+ {
+ "id": 3644,
+ "start": 1449.522,
+ "end": 1449.772,
+ "text": "that?"
+ },
+ {
+ "id": 3645,
+ "start": 1449.832,
+ "end": 1450.162,
+ "text": "Yeah,"
+ },
+ {
+ "id": 3646,
+ "start": 1450.162,
+ "end": 1450.242,
+ "text": "I"
+ },
+ {
+ "id": 3647,
+ "start": 1450.242,
+ "end": 1450.702,
+ "text": "definitely"
+ },
+ {
+ "id": 3648,
+ "start": 1450.702,
+ "end": 1451.022,
+ "text": "think"
+ },
+ {
+ "id": 3649,
+ "start": 1451.022,
+ "end": 1451.202,
+ "text": "we"
+ },
+ {
+ "id": 3650,
+ "start": 1451.202,
+ "end": 1452.882,
+ "text": "regret"
+ },
+ {
+ "id": 3651,
+ "start": 1452.882,
+ "end": 1453.192,
+ "text": "not"
+ },
+ {
+ "id": 3652,
+ "start": 1453.192,
+ "end": 1453.422,
+ "text": "having"
+ },
+ {
+ "id": 3653,
+ "start": 1453.6219999999998,
+ "end": 1453.867,
+ "text": "20,000"
+ },
+ {
+ "id": 3654,
+ "start": 1454.052,
+ "end": 1454.312,
+ "text": "people"
+ },
+ {
+ "id": 3655,
+ "start": 1454.312,
+ "end": 1454.592,
+ "text": "working"
+ },
+ {
+ "id": 3656,
+ "start": 1454.592,
+ "end": 1454.702,
+ "text": "on"
+ },
+ {
+ "id": 3657,
+ "start": 1454.702,
+ "end": 1455.082,
+ "text": "safety,"
+ },
+ {
+ "id": 3658,
+ "start": 1455.137,
+ "end": 1455.4070000000002,
+ "text": "secur-,"
+ },
+ {
+ "id": 3659,
+ "start": 1455.572,
+ "end": 1455.732,
+ "text": "and"
+ },
+ {
+ "id": 3660,
+ "start": 1455.732,
+ "end": 1456.112,
+ "text": "security"
+ },
+ {
+ "id": 3661,
+ "start": 1456.112,
+ "end": 1456.342,
+ "text": "back"
+ },
+ {
+ "id": 3662,
+ "start": 1456.342,
+ "end": 1456.422,
+ "text": "in"
+ },
+ {
+ "id": 3663,
+ "start": 1456.422,
+ "end": 1456.512,
+ "text": "the"
+ },
+ {
+ "id": 3664,
+ "start": 1456.512,
+ "end": 1456.772,
+ "text": "day."
+ },
+ {
+ "id": 3665,
+ "start": 1457.077,
+ "end": 1457.402,
+ "text": "Yes."
+ },
+ {
+ "id": 3666,
+ "start": 1457.642,
+ "end": 1458.032,
+ "text": "So"
+ },
+ {
+ "id": 3667,
+ "start": 1458.032,
+ "end": 1458.072,
+ "text": "I"
+ },
+ {
+ "id": 3668,
+ "start": 1458.072,
+ "end": 1458.562,
+ "text": "regret"
+ },
+ {
+ "id": 3669,
+ "start": 1458.562,
+ "end": 1458.732,
+ "text": "that"
+ },
+ {
+ "id": 3670,
+ "start": 1458.732,
+ "end": 1458.892,
+ "text": "we"
+ },
+ {
+ "id": 3671,
+ "start": 1458.892,
+ "end": 1460.697,
+ "text": "were"
+ },
+ {
+ "id": 3672,
+ "start": 1460.697,
+ "end": 1460.957,
+ "text": "too"
+ },
+ {
+ "id": 3673,
+ "start": 1460.957,
+ "end": 1461.347,
+ "text": "slow,"
+ },
+ {
+ "id": 3674,
+ "start": 1461.347,
+ "end": 1461.487,
+ "text": "that"
+ },
+ {
+ "id": 3675,
+ "start": 1461.487,
+ "end": 1461.577,
+ "text": "it"
+ },
+ {
+ "id": 3676,
+ "start": 1461.577,
+ "end": 1461.997,
+ "text": "wasn’t"
+ },
+ {
+ "id": 3677,
+ "start": 1461.663,
+ "end": 1462.047,
+ "text": "our"
+ },
+ {
+ "id": 3678,
+ "start": 1461.749,
+ "end": 1462.0970000000002,
+ "text": "priority—"
+ },
+ {
+ "id": 3679,
+ "start": 1461.835,
+ "end": 1462.1470000000002,
+ "text": "But"
+ },
+ {
+ "id": 3680,
+ "start": 1461.921,
+ "end": 1462.1970000000001,
+ "text": "were"
+ },
+ {
+ "id": 3681,
+ "start": 1462.007,
+ "end": 1462.247,
+ "text": "those"
+ },
+ {
+ "id": 3682,
+ "start": 1462.247,
+ "end": 1462.567,
+ "text": "things"
+ },
+ {
+ "id": 3683,
+ "start": 1462.567,
+ "end": 1462.857,
+ "text": "even"
+ },
+ {
+ "id": 3684,
+ "start": 1462.857,
+ "end": 1463.447,
+ "text": "considered"
+ },
+ {
+ "id": 3685,
+ "start": 1463.447,
+ "end": 1463.567,
+ "text": "at"
+ },
+ {
+ "id": 3686,
+ "start": 1463.567,
+ "end": 1463.667,
+ "text": "the"
+ },
+ {
+ "id": 3687,
+ "start": 1463.667,
+ "end": 1464.157,
+ "text": "time,"
+ },
+ {
+ "id": 3688,
+ "start": 1464.157,
+ "end": 1464.307,
+ "text": "to"
+ },
+ {
+ "id": 3689,
+ "start": 1464.307,
+ "end": 1464.487,
+ "text": "kind"
+ },
+ {
+ "id": 3690,
+ "start": 1464.487,
+ "end": 1464.617,
+ "text": "of"
+ },
+ {
+ "id": 3691,
+ "start": 1464.617,
+ "end": 1464.947,
+ "text": "amp"
+ },
+ {
+ "id": 3692,
+ "start": 1464.947,
+ "end": 1465.157,
+ "text": "up"
+ },
+ {
+ "id": 3693,
+ "start": 1465.157,
+ "end": 1465.607,
+ "text": "safety"
+ },
+ {
+ "id": 3694,
+ "start": 1465.382,
+ "end": 1465.862,
+ "text": "and"
+ },
+ {
+ "id": 3695,
+ "start": 1465.607,
+ "end": 1466.117,
+ "text": "security"
+ },
+ {
+ "id": 3696,
+ "start": 1466.117,
+ "end": 1466.407,
+ "text": "back"
+ },
+ {
+ "id": 3697,
+ "start": 1466.407,
+ "end": 1466.467,
+ "text": "in"
+ },
+ {
+ "id": 3698,
+ "start": 1466.467,
+ "end": 1466.557,
+ "text": "the"
+ },
+ {
+ "id": 3699,
+ "start": 1466.647,
+ "end": 1467.017,
+ "text": "day,"
+ },
+ {
+ "id": 3700,
+ "start": 1466.827,
+ "end": 1467.477,
+ "text": "but"
+ },
+ {
+ "id": 3701,
+ "start": 1467.477,
+ "end": 1467.647,
+ "text": "there"
+ },
+ {
+ "id": 3702,
+ "start": 1467.647,
+ "end": 1467.827,
+ "text": "was"
+ },
+ {
+ "id": 3703,
+ "start": 1467.827,
+ "end": 1468.047,
+ "text": "some"
+ },
+ {
+ "id": 3704,
+ "start": 1468.047,
+ "end": 1468.377,
+ "text": "reason"
+ },
+ {
+ "id": 3705,
+ "start": 1468.377,
+ "end": 1468.627,
+ "text": "not"
+ },
+ {
+ "id": 3706,
+ "start": 1468.627,
+ "end": 1468.947,
+ "text": "to,"
+ },
+ {
+ "id": 3707,
+ "start": 1468.947,
+ "end": 1469.067,
+ "text": "or"
+ },
+ {
+ "id": 3708,
+ "start": 1469.067,
+ "end": 1469.137,
+ "text": "it"
+ },
+ {
+ "id": 3709,
+ "start": 1469.137,
+ "end": 1469.307,
+ "text": "was"
+ },
+ {
+ "id": 3710,
+ "start": 1469.257,
+ "end": 1469.4103333333333,
+ "text": "going"
+ },
+ {
+ "id": 3711,
+ "start": 1469.377,
+ "end": 1469.5136666666667,
+ "text": "to"
+ },
+ {
+ "id": 3712,
+ "start": 1469.497,
+ "end": 1469.617,
+ "text": "be"
+ },
+ {
+ "id": 3713,
+ "start": 1469.617,
+ "end": 1469.877,
+ "text": "too"
+ },
+ {
+ "id": 3714,
+ "start": 1469.877,
+ "end": 1470.437,
+ "text": "difficult"
+ },
+ {
+ "id": 3715,
+ "start": 1470.162,
+ "end": 1470.692,
+ "text": "a"
+ },
+ {
+ "id": 3716,
+ "start": 1470.447,
+ "end": 1470.947,
+ "text": "problem"
+ },
+ {
+ "id": 3717,
+ "start": 1470.947,
+ "end": 1471.077,
+ "text": "to"
+ },
+ {
+ "id": 3718,
+ "start": 1471.077,
+ "end": 1471.617,
+ "text": "contend"
+ },
+ {
+ "id": 3719,
+ "start": 1471.617,
+ "end": 1472.007,
+ "text": "with,"
+ },
+ {
+ "id": 3720,
+ "start": 1472.007,
+ "end": 1473.927,
+ "text": "or—?"
+ },
+ {
+ "id": 3721,
+ "start": 1473.927,
+ "end": 1474.637,
+ "text": "Not"
+ },
+ {
+ "id": 3722,
+ "start": 1474.637,
+ "end": 1474.927,
+ "text": "really."
+ },
+ {
+ "id": 3723,
+ "start": 1474.927,
+ "end": 1474.957,
+ "text": "I"
+ },
+ {
+ "id": 3724,
+ "start": 1474.957,
+ "end": 1475.107,
+ "text": "mean,"
+ },
+ {
+ "id": 3725,
+ "start": 1475.107,
+ "end": 1475.227,
+ "text": "we"
+ },
+ {
+ "id": 3726,
+ "start": 1475.227,
+ "end": 1475.597,
+ "text": "had"
+ },
+ {
+ "id": 3727,
+ "start": 1475.597,
+ "end": 1475.657,
+ "text": "a"
+ },
+ {
+ "id": 3728,
+ "start": 1475.657,
+ "end": 1476.037,
+ "text": "safety"
+ },
+ {
+ "id": 3729,
+ "start": 1476.037,
+ "end": 1476.167,
+ "text": "and"
+ },
+ {
+ "id": 3730,
+ "start": 1476.167,
+ "end": 1477.177,
+ "text": "security"
+ },
+ {
+ "id": 3731,
+ "start": 1477.177,
+ "end": 1477.707,
+ "text": "team."
+ },
+ {
+ "id": 3732,
+ "start": 1477.707,
+ "end": 1477.777,
+ "text": "I"
+ },
+ {
+ "id": 3733,
+ "start": 1477.777,
+ "end": 1478.017,
+ "text": "think"
+ },
+ {
+ "id": 3734,
+ "start": 1478.017,
+ "end": 1478.137,
+ "text": "we"
+ },
+ {
+ "id": 3735,
+ "start": 1478.137,
+ "end": 1478.387,
+ "text": "just"
+ },
+ {
+ "id": 3736,
+ "start": 1478.387,
+ "end": 1478.567,
+ "text": "thought"
+ },
+ {
+ "id": 3737,
+ "start": 1478.567,
+ "end": 1478.647,
+ "text": "it"
+ },
+ {
+ "id": 3738,
+ "start": 1478.647,
+ "end": 1478.807,
+ "text": "was"
+ },
+ {
+ "id": 3739,
+ "start": 1478.807,
+ "end": 1481.137,
+ "text": "sufficient."
+ },
+ {
+ "id": 3740,
+ "start": 1481.137,
+ "end": 1481.587,
+ "text": "It’s"
+ },
+ {
+ "id": 3741,
+ "start": 1481.587,
+ "end": 1481.757,
+ "text": "not"
+ },
+ {
+ "id": 3742,
+ "start": 1481.757,
+ "end": 1481.927,
+ "text": "that"
+ },
+ {
+ "id": 3743,
+ "start": 1481.842,
+ "end": 1482.022,
+ "text": "we"
+ },
+ {
+ "id": 3744,
+ "start": 1481.927,
+ "end": 1482.117,
+ "text": "were"
+ },
+ {
+ "id": 3745,
+ "start": 1482.117,
+ "end": 1482.397,
+ "text": "like,"
+ },
+ {
+ "id": 3746,
+ "start": 1482.397,
+ "end": 1482.897,
+ "text": "“Wow,"
+ },
+ {
+ "id": 3747,
+ "start": 1482.897,
+ "end": 1483.057,
+ "text": "we"
+ },
+ {
+ "id": 3748,
+ "start": 1483.057,
+ "end": 1483.187,
+ "text": "could"
+ },
+ {
+ "id": 3749,
+ "start": 1483.187,
+ "end": 1483.317,
+ "text": "do"
+ },
+ {
+ "id": 3750,
+ "start": 1483.317,
+ "end": 1483.537,
+ "text": "so"
+ },
+ {
+ "id": 3751,
+ "start": 1483.537,
+ "end": 1483.737,
+ "text": "much"
+ },
+ {
+ "id": 3752,
+ "start": 1483.737,
+ "end": 1483.987,
+ "text": "more"
+ },
+ {
+ "id": 3753,
+ "start": 1483.987,
+ "end": 1484.257,
+ "text": "here,”"
+ },
+ {
+ "id": 3754,
+ "start": 1484.257,
+ "end": 1484.357,
+ "text": "and"
+ },
+ {
+ "id": 3755,
+ "start": 1484.357,
+ "end": 1484.827,
+ "text": "decided"
+ },
+ {
+ "id": 3756,
+ "start": 1484.827,
+ "end": 1485.057,
+ "text": "not"
+ },
+ {
+ "id": 3757,
+ "start": 1485.057,
+ "end": 1486.077,
+ "text": "to."
+ },
+ {
+ "id": 3758,
+ "start": 1486.077,
+ "end": 1486.177,
+ "text": "I"
+ },
+ {
+ "id": 3759,
+ "start": 1486.177,
+ "end": 1486.577,
+ "text": "think"
+ },
+ {
+ "id": 3760,
+ "start": 1487.442,
+ "end": 1487.8519999999999,
+ "text": "we—we"
+ },
+ {
+ "id": 3761,
+ "start": 1488.707,
+ "end": 1489.127,
+ "text": "just"
+ },
+ {
+ "id": 3762,
+ "start": 1490.3869999999997,
+ "end": 1490.6669999999995,
+ "text": "didn’t—again,"
+ },
+ {
+ "id": 3763,
+ "start": 1492.067,
+ "end": 1492.207,
+ "text": "we"
+ },
+ {
+ "id": 3764,
+ "start": 1492.207,
+ "end": 1492.357,
+ "text": "were"
+ },
+ {
+ "id": 3765,
+ "start": 1492.357,
+ "end": 1492.757,
+ "text": "just"
+ },
+ {
+ "id": 3766,
+ "start": 1492.757,
+ "end": 1492.827,
+ "text": "a"
+ },
+ {
+ "id": 3767,
+ "start": 1492.827,
+ "end": 1493.037,
+ "text": "bit"
+ },
+ {
+ "id": 3768,
+ "start": 1493.037,
+ "end": 1494.947,
+ "text": "idealistic."
+ },
+ {
+ "id": 3769,
+ "start": 1494.947,
+ "end": 1495.117,
+ "text": "We"
+ },
+ {
+ "id": 3770,
+ "start": 1495.117,
+ "end": 1495.347,
+ "text": "didn’t"
+ },
+ {
+ "id": 3771,
+ "start": 1495.347,
+ "end": 1495.517,
+ "text": "see"
+ },
+ {
+ "id": 3772,
+ "start": 1495.517,
+ "end": 1495.647,
+ "text": "the"
+ },
+ {
+ "id": 3773,
+ "start": 1496.1070000000002,
+ "end": 1496.3269999999998,
+ "text": "need"
+ },
+ {
+ "id": 3774,
+ "start": 1496.697,
+ "end": 1497.007,
+ "text": "to"
+ },
+ {
+ "id": 3775,
+ "start": 1497.287,
+ "end": 1497.687,
+ "text": "go"
+ },
+ {
+ "id": 3776,
+ "start": 1497.687,
+ "end": 1497.927,
+ "text": "from"
+ },
+ {
+ "id": 3777,
+ "start": 1498.1119999999999,
+ "end": 1498.3594999999998,
+ "text": "10,000"
+ },
+ {
+ "id": 3778,
+ "start": 1498.5369999999998,
+ "end": 1498.792,
+ "text": "to"
+ },
+ {
+ "id": 3779,
+ "start": 1498.962,
+ "end": 1499.2245,
+ "text": "20,000"
+ },
+ {
+ "id": 3780,
+ "start": 1499.387,
+ "end": 1499.657,
+ "text": "back"
+ },
+ {
+ "id": 3781,
+ "start": 1499.657,
+ "end": 1499.947,
+ "text": "then."
+ },
+ {
+ "id": 3782,
+ "start": 1500.097,
+ "end": 1500.3319999999999,
+ "text": "…"
+ },
+ {
+ "id": 3783,
+ "start": 1500.537,
+ "end": 1500.717,
+ "text": "A"
+ },
+ {
+ "id": 3784,
+ "start": 1500.717,
+ "end": 1500.937,
+ "text": "lot"
+ },
+ {
+ "id": 3785,
+ "start": 1500.937,
+ "end": 1501.027,
+ "text": "of"
+ },
+ {
+ "id": 3786,
+ "start": 1501.027,
+ "end": 1501.117,
+ "text": "the"
+ },
+ {
+ "id": 3787,
+ "start": 1501.117,
+ "end": 1501.547,
+ "text": "problems"
+ },
+ {
+ "id": 3788,
+ "start": 1501.547,
+ "end": 1501.687,
+ "text": "that"
+ },
+ {
+ "id": 3789,
+ "start": 1501.687,
+ "end": 1501.847,
+ "text": "have"
+ },
+ {
+ "id": 3790,
+ "start": 1501.847,
+ "end": 1502.237,
+ "text": "reared"
+ },
+ {
+ "id": 3791,
+ "start": 1502.237,
+ "end": 1502.387,
+ "text": "their"
+ },
+ {
+ "id": 3792,
+ "start": 1502.387,
+ "end": 1503.107,
+ "text": "head"
+ },
+ {
+ "id": 3793,
+ "start": 1503.107,
+ "end": 1503.647,
+ "text": "recently"
+ },
+ {
+ "id": 3794,
+ "start": 1503.647,
+ "end": 1503.767,
+ "text": "and"
+ },
+ {
+ "id": 3795,
+ "start": 1503.767,
+ "end": 1503.927,
+ "text": "that"
+ },
+ {
+ "id": 3796,
+ "start": 1503.987,
+ "end": 1504.112,
+ "text": "seem"
+ },
+ {
+ "id": 3797,
+ "start": 1504.207,
+ "end": 1504.297,
+ "text": "to"
+ },
+ {
+ "id": 3798,
+ "start": 1504.297,
+ "end": 1504.417,
+ "text": "have"
+ },
+ {
+ "id": 3799,
+ "start": 1504.417,
+ "end": 1504.757,
+ "text": "taken"
+ },
+ {
+ "id": 3800,
+ "start": 1504.757,
+ "end": 1504.827,
+ "text": "the"
+ },
+ {
+ "id": 3801,
+ "start": 1504.827,
+ "end": 1505.467,
+ "text": "company"
+ },
+ {
+ "id": 3802,
+ "start": 1505.417,
+ "end": 1505.627,
+ "text": "by"
+ },
+ {
+ "id": 3803,
+ "start": 1505.912,
+ "end": 1506.127,
+ "text": "surprise,"
+ },
+ {
+ "id": 3804,
+ "start": 1506.407,
+ "end": 1506.627,
+ "text": "it’s"
+ },
+ {
+ "id": 3805,
+ "start": 1506.627,
+ "end": 1506.817,
+ "text": "not"
+ },
+ {
+ "id": 3806,
+ "start": 1506.817,
+ "end": 1506.947,
+ "text": "as"
+ },
+ {
+ "id": 3807,
+ "start": 1506.947,
+ "end": 1507.117,
+ "text": "if"
+ },
+ {
+ "id": 3808,
+ "start": 1507.117,
+ "end": 1507.257,
+ "text": "they’re"
+ },
+ {
+ "id": 3809,
+ "start": 1507.257,
+ "end": 1507.537,
+ "text": "very"
+ },
+ {
+ "id": 3810,
+ "start": 1507.537,
+ "end": 1508.237,
+ "text": "new."
+ },
+ {
+ "id": 3811,
+ "start": 1508.237,
+ "end": 1508.337,
+ "text": "I"
+ },
+ {
+ "id": 3812,
+ "start": 1508.337,
+ "end": 1508.527,
+ "text": "mean,"
+ },
+ {
+ "id": 3813,
+ "start": 1508.527,
+ "end": 1508.917,
+ "text": "yes,"
+ },
+ {
+ "id": 3814,
+ "start": 1508.917,
+ "end": 1509.057,
+ "text": "in"
+ },
+ {
+ "id": 3815,
+ "start": 1509.057,
+ "end": 1509.407,
+ "text": "terms"
+ },
+ {
+ "id": 3816,
+ "start": 1509.407,
+ "end": 1509.827,
+ "text": "of"
+ },
+ {
+ "id": 3817,
+ "start": 1509.827,
+ "end": 1510.167,
+ "text": "Russian"
+ },
+ {
+ "id": 3818,
+ "start": 1510.167,
+ "end": 1510.787,
+ "text": "interference"
+ },
+ {
+ "id": 3819,
+ "start": 1510.787,
+ "end": 1510.887,
+ "text": "in"
+ },
+ {
+ "id": 3820,
+ "start": 1510.887,
+ "end": 1511.027,
+ "text": "our"
+ },
+ {
+ "id": 3821,
+ "start": 1511.257,
+ "end": 1511.4036666666666,
+ "text": "elections,"
+ },
+ {
+ "id": 3822,
+ "start": 1511.627,
+ "end": 1511.7803333333334,
+ "text": "sure,"
+ },
+ {
+ "id": 3823,
+ "start": 1511.997,
+ "end": 1512.157,
+ "text": "but"
+ },
+ {
+ "id": 3824,
+ "start": 1512.157,
+ "end": 1512.237,
+ "text": "the"
+ },
+ {
+ "id": 3825,
+ "start": 1512.237,
+ "end": 1512.617,
+ "text": "Russians"
+ },
+ {
+ "id": 3826,
+ "start": 1512.617,
+ "end": 1512.747,
+ "text": "were"
+ },
+ {
+ "id": 3827,
+ "start": 1512.747,
+ "end": 1513.307,
+ "text": "interfering"
+ },
+ {
+ "id": 3828,
+ "start": 1513.307,
+ "end": 1513.437,
+ "text": "with"
+ },
+ {
+ "id": 3829,
+ "start": 1513.437,
+ "end": 1513.967,
+ "text": "elections"
+ },
+ {
+ "id": 3830,
+ "start": 1513.967,
+ "end": 1514.937,
+ "text": "abroad"
+ },
+ {
+ "id": 3831,
+ "start": 1514.937,
+ "end": 1515.297,
+ "text": "using"
+ },
+ {
+ "id": 3832,
+ "start": 1515.297,
+ "end": 1515.677,
+ "text": "social"
+ },
+ {
+ "id": 3833,
+ "start": 1515.677,
+ "end": 1516.057,
+ "text": "media,"
+ },
+ {
+ "id": 3834,
+ "start": 1516.057,
+ "end": 1516.387,
+ "text": "using"
+ },
+ {
+ "id": 3835,
+ "start": 1516.387,
+ "end": 1516.877,
+ "text": "Facebook"
+ },
+ {
+ "id": 3836,
+ "start": 1516.877,
+ "end": 1516.967,
+ "text": "in"
+ },
+ {
+ "id": 3837,
+ "start": 1516.967,
+ "end": 1517.187,
+ "text": "some"
+ },
+ {
+ "id": 3838,
+ "start": 1517.187,
+ "end": 1518.757,
+ "text": "cases."
+ },
+ {
+ "id": 3839,
+ "start": 1518.757,
+ "end": 1519.227,
+ "text": "It"
+ },
+ {
+ "id": 3840,
+ "start": 1519.227,
+ "end": 1519.527,
+ "text": "does"
+ },
+ {
+ "id": 3841,
+ "start": 1519.527,
+ "end": 1519.947,
+ "text": "seem"
+ },
+ {
+ "id": 3842,
+ "start": 1520.0970000000002,
+ "end": 1520.382,
+ "text": "naïve"
+ },
+ {
+ "id": 3843,
+ "start": 1520.667,
+ "end": 1520.817,
+ "text": "to"
+ },
+ {
+ "id": 3844,
+ "start": 1520.817,
+ "end": 1521.397,
+ "text": "say,"
+ },
+ {
+ "id": 3845,
+ "start": 1521.4120000000003,
+ "end": 1521.782,
+ "text": "“OK,"
+ },
+ {
+ "id": 3846,
+ "start": 1522.007,
+ "end": 1522.167,
+ "text": "all"
+ },
+ {
+ "id": 3847,
+ "start": 1522.167,
+ "end": 1522.247,
+ "text": "of"
+ },
+ {
+ "id": 3848,
+ "start": 1522.247,
+ "end": 1522.307,
+ "text": "a"
+ },
+ {
+ "id": 3849,
+ "start": 1522.307,
+ "end": 1522.707,
+ "text": "sudden"
+ },
+ {
+ "id": 3850,
+ "start": 1522.707,
+ "end": 1522.837,
+ "text": "we’re"
+ },
+ {
+ "id": 3851,
+ "start": 1522.813666666667,
+ "end": 1523.0336666666667,
+ "text": "going"
+ },
+ {
+ "id": 3852,
+ "start": 1522.9203333333335,
+ "end": 1523.2303333333334,
+ "text": "to"
+ },
+ {
+ "id": 3853,
+ "start": 1523.027,
+ "end": 1523.427,
+ "text": "ramp"
+ },
+ {
+ "id": 3854,
+ "start": 1523.427,
+ "end": 1523.677,
+ "text": "up;"
+ },
+ {
+ "id": 3855,
+ "start": 1523.677,
+ "end": 1523.807,
+ "text": "we’re"
+ },
+ {
+ "id": 3856,
+ "start": 1523.807,
+ "end": 1524.307,
+ "text": "changing"
+ },
+ {
+ "id": 3857,
+ "start": 1524.7569999999996,
+ "end": 1525.1670000000001,
+ "text": "everything.”"
+ },
+ {
+ "id": 3858,
+ "start": 1525.707,
+ "end": 1526.027,
+ "text": "I"
+ },
+ {
+ "id": 3859,
+ "start": 1526.027,
+ "end": 1527.337,
+ "text": "guess"
+ },
+ {
+ "id": 3860,
+ "start": 1527.337,
+ "end": 1527.787,
+ "text": "why"
+ },
+ {
+ "id": 3861,
+ "start": 1527.787,
+ "end": 1528.117,
+ "text": "didn’t"
+ },
+ {
+ "id": 3862,
+ "start": 1528.117,
+ "end": 1528.307,
+ "text": "this"
+ },
+ {
+ "id": 3863,
+ "start": 1528.307,
+ "end": 1528.737,
+ "text": "happen"
+ },
+ {
+ "id": 3864,
+ "start": 1528.737,
+ "end": 1530.907,
+ "text": "sooner?"
+ },
+ {
+ "id": 3865,
+ "start": 1530.907,
+ "end": 1531.217,
+ "text": "One"
+ },
+ {
+ "id": 3866,
+ "start": 1531.217,
+ "end": 1531.397,
+ "text": "thing"
+ },
+ {
+ "id": 3867,
+ "start": 1531.397,
+ "end": 1531.457,
+ "text": "I"
+ },
+ {
+ "id": 3868,
+ "start": 1531.457,
+ "end": 1531.617,
+ "text": "would"
+ },
+ {
+ "id": 3869,
+ "start": 1531.617,
+ "end": 1531.907,
+ "text": "say"
+ },
+ {
+ "id": 3870,
+ "start": 1531.907,
+ "end": 1532.047,
+ "text": "is"
+ },
+ {
+ "id": 3871,
+ "start": 1532.047,
+ "end": 1532.767,
+ "text": "that"
+ },
+ {
+ "id": 3872,
+ "start": 1532.767,
+ "end": 1532.957,
+ "text": "there"
+ },
+ {
+ "id": 3873,
+ "start": 1532.957,
+ "end": 1533.207,
+ "text": "were"
+ },
+ {
+ "id": 3874,
+ "start": 1533.207,
+ "end": 1533.597,
+ "text": "known"
+ },
+ {
+ "id": 3875,
+ "start": 1533.597,
+ "end": 1534.177,
+ "text": "problems,"
+ },
+ {
+ "id": 3876,
+ "start": 1534.177,
+ "end": 1534.277,
+ "text": "and"
+ },
+ {
+ "id": 3877,
+ "start": 1534.277,
+ "end": 1534.317,
+ "text": "I"
+ },
+ {
+ "id": 3878,
+ "start": 1534.317,
+ "end": 1534.577,
+ "text": "think"
+ },
+ {
+ "id": 3879,
+ "start": 1534.577,
+ "end": 1534.737,
+ "text": "we"
+ },
+ {
+ "id": 3880,
+ "start": 1534.737,
+ "end": 1534.947,
+ "text": "were"
+ },
+ {
+ "id": 3881,
+ "start": 1534.947,
+ "end": 1535.427,
+ "text": "focused"
+ },
+ {
+ "id": 3882,
+ "start": 1535.427,
+ "end": 1535.597,
+ "text": "on"
+ },
+ {
+ "id": 3883,
+ "start": 1535.597,
+ "end": 1535.847,
+ "text": "them."
+ },
+ {
+ "id": 3884,
+ "start": 1535.847,
+ "end": 1536.027,
+ "text": "It’s"
+ },
+ {
+ "id": 3885,
+ "start": 1536.027,
+ "end": 1536.237,
+ "text": "just"
+ },
+ {
+ "id": 3886,
+ "start": 1536.237,
+ "end": 1536.697,
+ "text": "possible"
+ },
+ {
+ "id": 3887,
+ "start": 1536.697,
+ "end": 1536.867,
+ "text": "that"
+ },
+ {
+ "id": 3888,
+ "start": 1536.867,
+ "end": 1536.987,
+ "text": "they"
+ },
+ {
+ "id": 3889,
+ "start": 1536.987,
+ "end": 1537.137,
+ "text": "were"
+ },
+ {
+ "id": 3890,
+ "start": 1537.137,
+ "end": 1537.937,
+ "text": "different."
+ },
+ {
+ "id": 3891,
+ "start": 1537.937,
+ "end": 1538.177,
+ "text": "We"
+ },
+ {
+ "id": 3892,
+ "start": 1538.177,
+ "end": 1538.317,
+ "text": "had"
+ },
+ {
+ "id": 3893,
+ "start": 1538.317,
+ "end": 1538.367,
+ "text": "a"
+ },
+ {
+ "id": 3894,
+ "start": 1538.367,
+ "end": 1538.657,
+ "text": "big"
+ },
+ {
+ "id": 3895,
+ "start": 1538.657,
+ "end": 1539.037,
+ "text": "effort"
+ },
+ {
+ "id": 3896,
+ "start": 1539.037,
+ "end": 1539.357,
+ "text": "around"
+ },
+ {
+ "id": 3897,
+ "start": 1539.357,
+ "end": 1540.227,
+ "text": "scams."
+ },
+ {
+ "id": 3898,
+ "start": 1540.227,
+ "end": 1540.367,
+ "text": "We"
+ },
+ {
+ "id": 3899,
+ "start": 1540.367,
+ "end": 1540.567,
+ "text": "had"
+ },
+ {
+ "id": 3900,
+ "start": 1540.567,
+ "end": 1540.627,
+ "text": "a"
+ },
+ {
+ "id": 3901,
+ "start": 1540.627,
+ "end": 1540.947,
+ "text": "big"
+ },
+ {
+ "id": 3902,
+ "start": 1540.947,
+ "end": 1541.437,
+ "text": "effort"
+ },
+ {
+ "id": 3903,
+ "start": 1541.437,
+ "end": 1541.897,
+ "text": "around"
+ },
+ {
+ "id": 3904,
+ "start": 1541.897,
+ "end": 1542.267,
+ "text": "bullying"
+ },
+ {
+ "id": 3905,
+ "start": 1542.267,
+ "end": 1542.387,
+ "text": "and"
+ },
+ {
+ "id": 3906,
+ "start": 1542.387,
+ "end": 1543.167,
+ "text": "harassment."
+ },
+ {
+ "id": 3907,
+ "start": 1543.167,
+ "end": 1543.327,
+ "text": "We"
+ },
+ {
+ "id": 3908,
+ "start": 1543.327,
+ "end": 1543.517,
+ "text": "had"
+ },
+ {
+ "id": 3909,
+ "start": 1543.517,
+ "end": 1543.567,
+ "text": "a"
+ },
+ {
+ "id": 3910,
+ "start": 1543.567,
+ "end": 1543.847,
+ "text": "big"
+ },
+ {
+ "id": 3911,
+ "start": 1543.847,
+ "end": 1544.347,
+ "text": "effort"
+ },
+ {
+ "id": 3912,
+ "start": 1544.347,
+ "end": 1544.877,
+ "text": "around"
+ },
+ {
+ "id": 3913,
+ "start": 1544.877,
+ "end": 1545.247,
+ "text": "nudity"
+ },
+ {
+ "id": 3914,
+ "start": 1545.247,
+ "end": 1545.407,
+ "text": "and"
+ },
+ {
+ "id": 3915,
+ "start": 1545.407,
+ "end": 1545.857,
+ "text": "porn"
+ },
+ {
+ "id": 3916,
+ "start": 1545.857,
+ "end": 1546.057,
+ "text": "on"
+ },
+ {
+ "id": 3917,
+ "start": 1546.612,
+ "end": 1547.1020000000003,
+ "text": "Facebook."
+ },
+ {
+ "id": 3918,
+ "start": 1547.367,
+ "end": 1548.147,
+ "text": "So"
+ },
+ {
+ "id": 3919,
+ "start": 1548.147,
+ "end": 1548.357,
+ "text": "there"
+ },
+ {
+ "id": 3920,
+ "start": 1548.357,
+ "end": 1548.607,
+ "text": "were"
+ },
+ {
+ "id": 3921,
+ "start": 1548.607,
+ "end": 1549.287,
+ "text": "investments"
+ },
+ {
+ "id": 3922,
+ "start": 1549.287,
+ "end": 1549.437,
+ "text": "in"
+ },
+ {
+ "id": 3923,
+ "start": 1549.437,
+ "end": 1549.907,
+ "text": "that."
+ },
+ {
+ "id": 3924,
+ "start": 1549.907,
+ "end": 1550.117,
+ "text": "This"
+ },
+ {
+ "id": 3925,
+ "start": 1550.117,
+ "end": 1550.307,
+ "text": "is"
+ },
+ {
+ "id": 3926,
+ "start": 1550.307,
+ "end": 1550.407,
+ "text": "an"
+ },
+ {
+ "id": 3927,
+ "start": 1550.407,
+ "end": 1551.167,
+ "text": "adversarial"
+ },
+ {
+ "id": 3928,
+ "start": 1551.167,
+ "end": 1551.767,
+ "text": "space."
+ },
+ {
+ "id": 3929,
+ "start": 1551.767,
+ "end": 1551.857,
+ "text": "You"
+ },
+ {
+ "id": 3930,
+ "start": 1551.857,
+ "end": 1551.977,
+ "text": "know,"
+ },
+ {
+ "id": 3931,
+ "start": 1551.977,
+ "end": 1552.087,
+ "text": "as"
+ },
+ {
+ "id": 3932,
+ "start": 1552.087,
+ "end": 1552.257,
+ "text": "soon"
+ },
+ {
+ "id": 3933,
+ "start": 1552.257,
+ "end": 1552.397,
+ "text": "as"
+ },
+ {
+ "id": 3934,
+ "start": 1552.397,
+ "end": 1552.537,
+ "text": "you"
+ },
+ {
+ "id": 3935,
+ "start": 1552.537,
+ "end": 1552.757,
+ "text": "take"
+ },
+ {
+ "id": 3936,
+ "start": 1552.757,
+ "end": 1552.927,
+ "text": "one"
+ },
+ {
+ "id": 3937,
+ "start": 1552.927,
+ "end": 1553.167,
+ "text": "step"
+ },
+ {
+ "id": 3938,
+ "start": 1553.167,
+ "end": 1553.817,
+ "text": "forward,"
+ },
+ {
+ "id": 3939,
+ "start": 1553.817,
+ "end": 1554.547,
+ "text": "your"
+ },
+ {
+ "id": 3940,
+ "start": 1554.547,
+ "end": 1555.367,
+ "text": "adversary"
+ },
+ {
+ "id": 3941,
+ "start": 1555.367,
+ "end": 1555.777,
+ "text": "is"
+ },
+ {
+ "id": 3942,
+ "start": 1555.777,
+ "end": 1556.467,
+ "text": "evolving"
+ },
+ {
+ "id": 3943,
+ "start": 1556.467,
+ "end": 1556.627,
+ "text": "as"
+ },
+ {
+ "id": 3944,
+ "start": 1556.627,
+ "end": 1556.927,
+ "text": "well,"
+ },
+ {
+ "id": 3945,
+ "start": 1556.927,
+ "end": 1557.147,
+ "text": "so"
+ },
+ {
+ "id": 3946,
+ "start": 1557.147,
+ "end": 1557.347,
+ "text": "it’s"
+ },
+ {
+ "id": 3947,
+ "start": 1557.347,
+ "end": 1557.947,
+ "text": "never"
+ },
+ {
+ "id": 3948,
+ "start": 1558.2369999999999,
+ "end": 1558.677,
+ "text": "fixed;"
+ },
+ {
+ "id": 3949,
+ "start": 1559.127,
+ "end": 1559.407,
+ "text": "it’s"
+ },
+ {
+ "id": 3950,
+ "start": 1559.407,
+ "end": 1559.737,
+ "text": "always"
+ },
+ {
+ "id": 3951,
+ "start": 1559.737,
+ "end": 1561.297,
+ "text": "ongoing."
+ },
+ {
+ "id": 3952,
+ "start": 1561.297,
+ "end": 1561.517,
+ "text": "Some"
+ },
+ {
+ "id": 3953,
+ "start": 1561.517,
+ "end": 1561.607,
+ "text": "of"
+ },
+ {
+ "id": 3954,
+ "start": 1561.607,
+ "end": 1561.807,
+ "text": "these"
+ },
+ {
+ "id": 3955,
+ "start": 1561.807,
+ "end": 1562.087,
+ "text": "threats"
+ },
+ {
+ "id": 3956,
+ "start": 1562.087,
+ "end": 1562.207,
+ "text": "and"
+ },
+ {
+ "id": 3957,
+ "start": 1562.207,
+ "end": 1562.747,
+ "text": "problems"
+ },
+ {
+ "id": 3958,
+ "start": 1562.747,
+ "end": 1563.277,
+ "text": "are"
+ },
+ {
+ "id": 3959,
+ "start": 1563.5020000000002,
+ "end": 1563.9320000000002,
+ "text": "new,"
+ },
+ {
+ "id": 3960,
+ "start": 1564.257,
+ "end": 1564.587,
+ "text": "and"
+ },
+ {
+ "id": 3961,
+ "start": 1564.587,
+ "end": 1564.637,
+ "text": "I"
+ },
+ {
+ "id": 3962,
+ "start": 1564.637,
+ "end": 1564.987,
+ "text": "think"
+ },
+ {
+ "id": 3963,
+ "start": 1564.987,
+ "end": 1565.207,
+ "text": "we’re"
+ },
+ {
+ "id": 3964,
+ "start": 1565.207,
+ "end": 1565.697,
+ "text": "grappling"
+ },
+ {
+ "id": 3965,
+ "start": 1565.697,
+ "end": 1565.867,
+ "text": "with"
+ },
+ {
+ "id": 3966,
+ "start": 1565.867,
+ "end": 1566.347,
+ "text": "that"
+ },
+ {
+ "id": 3967,
+ "start": 1566.347,
+ "end": 1566.527,
+ "text": "as"
+ },
+ {
+ "id": 3968,
+ "start": 1566.527,
+ "end": 1566.587,
+ "text": "a"
+ },
+ {
+ "id": 3969,
+ "start": 1566.587,
+ "end": 1567.267,
+ "text": "company"
+ },
+ {
+ "id": 3970,
+ "start": 1567.267,
+ "end": 1568.297,
+ "text": "with"
+ },
+ {
+ "id": 3971,
+ "start": 1568.297,
+ "end": 1568.537,
+ "text": "other"
+ },
+ {
+ "id": 3972,
+ "start": 1568.537,
+ "end": 1569.027,
+ "text": "companies"
+ },
+ {
+ "id": 3973,
+ "start": 1569.027,
+ "end": 1569.117,
+ "text": "in"
+ },
+ {
+ "id": 3974,
+ "start": 1569.1270000000002,
+ "end": 1569.4769999999999,
+ "text": "this"
+ },
+ {
+ "id": 3975,
+ "start": 1569.227,
+ "end": 1569.837,
+ "text": "space,"
+ },
+ {
+ "id": 3976,
+ "start": 1569.837,
+ "end": 1570.007,
+ "text": "with"
+ },
+ {
+ "id": 3977,
+ "start": 1570.007,
+ "end": 1570.517,
+ "text": "governments,"
+ },
+ {
+ "id": 3978,
+ "start": 1570.517,
+ "end": 1570.657,
+ "text": "with"
+ },
+ {
+ "id": 3979,
+ "start": 1570.647,
+ "end": 1570.857,
+ "text": "other"
+ },
+ {
+ "id": 3980,
+ "start": 1571.942,
+ "end": 1572.0770000000002,
+ "text": "organizations."
+ },
+ {
+ "id": 3981,
+ "start": 1573.237,
+ "end": 1573.297,
+ "text": "I"
+ },
+ {
+ "id": 3982,
+ "start": 1573.297,
+ "end": 1573.647,
+ "text": "wouldn’t"
+ },
+ {
+ "id": 3983,
+ "start": 1573.647,
+ "end": 1573.967,
+ "text": "say"
+ },
+ {
+ "id": 3984,
+ "start": 1573.967,
+ "end": 1574.807,
+ "text": "that"
+ },
+ {
+ "id": 3985,
+ "start": 1574.807,
+ "end": 1575.387,
+ "text": "everything"
+ },
+ {
+ "id": 3986,
+ "start": 1575.387,
+ "end": 1575.567,
+ "text": "is"
+ },
+ {
+ "id": 3987,
+ "start": 1575.592,
+ "end": 1575.777,
+ "text": "new;"
+ },
+ {
+ "id": 3988,
+ "start": 1575.797,
+ "end": 1575.987,
+ "text": "it’s"
+ },
+ {
+ "id": 3989,
+ "start": 1575.987,
+ "end": 1576.227,
+ "text": "just"
+ },
+ {
+ "id": 3990,
+ "start": 1576.227,
+ "end": 1576.557,
+ "text": "different"
+ },
+ {
+ "id": 3991,
+ "start": 1576.557,
+ "end": 1577.437,
+ "text": "problems."
+ },
+ {
+ "id": 3992,
+ "start": 1577.437,
+ "end": 1577.697,
+ "text": "And"
+ },
+ {
+ "id": 3993,
+ "start": 1577.697,
+ "end": 1578.347,
+ "text": "strangely"
+ },
+ {
+ "id": 3994,
+ "start": 1578.347,
+ "end": 1578.547,
+ "text": "does"
+ },
+ {
+ "id": 3995,
+ "start": 1578.547,
+ "end": 1578.677,
+ "text": "it"
+ },
+ {
+ "id": 3996,
+ "start": 1578.677,
+ "end": 1579.107,
+ "text": "put"
+ },
+ {
+ "id": 3997,
+ "start": 1578.987,
+ "end": 1579.677,
+ "text": "Facebook"
+ },
+ {
+ "id": 3998,
+ "start": 1579.5785,
+ "end": 1580.0335,
+ "text": "in"
+ },
+ {
+ "id": 3999,
+ "start": 1580.17,
+ "end": 1580.39,
+ "text": "kind"
+ },
+ {
+ "id": 4000,
+ "start": 1580.39,
+ "end": 1580.53,
+ "text": "of"
+ },
+ {
+ "id": 4001,
+ "start": 1580.53,
+ "end": 1580.62,
+ "text": "an"
+ },
+ {
+ "id": 4002,
+ "start": 1580.98,
+ "end": 1581.31,
+ "text": "untenably"
+ },
+ {
+ "id": 4003,
+ "start": 1581.43,
+ "end": 1582,
+ "text": "large"
+ },
+ {
+ "id": 4004,
+ "start": 1582,
+ "end": 1582.63,
+ "text": "position"
+ },
+ {
+ "id": 4005,
+ "start": 1582.63,
+ "end": 1582.73,
+ "text": "or"
+ },
+ {
+ "id": 4006,
+ "start": 1582.73,
+ "end": 1582.99,
+ "text": "too"
+ },
+ {
+ "id": 4007,
+ "start": 1582.99,
+ "end": 1583.51,
+ "text": "powerful"
+ },
+ {
+ "id": 4008,
+ "start": 1583.51,
+ "end": 1583.59,
+ "text": "a"
+ },
+ {
+ "id": 4009,
+ "start": 1584.03,
+ "end": 1584.22,
+ "text": "position"
+ },
+ {
+ "id": 4010,
+ "start": 1584.55,
+ "end": 1584.85,
+ "text": "now"
+ },
+ {
+ "id": 4011,
+ "start": 1584.85,
+ "end": 1585.14,
+ "text": "that"
+ },
+ {
+ "id": 4012,
+ "start": 1585.14,
+ "end": 1585.33,
+ "text": "you’re"
+ },
+ {
+ "id": 4013,
+ "start": 1585.33,
+ "end": 1585.61,
+ "text": "gonna"
+ },
+ {
+ "id": 4014,
+ "start": 1585.61,
+ "end": 1585.88,
+ "text": "have"
+ },
+ {
+ "id": 4015,
+ "start": 1585.88,
+ "end": 1585.99,
+ "text": "to"
+ },
+ {
+ "id": 4016,
+ "start": 1585.99,
+ "end": 1586.25,
+ "text": "take"
+ },
+ {
+ "id": 4017,
+ "start": 1586.25,
+ "end": 1587.11,
+ "text": "responsibility"
+ },
+ {
+ "id": 4018,
+ "start": 1587.11,
+ "end": 1587.97,
+ "text": "for"
+ },
+ {
+ "id": 4019,
+ "start": 1587.97,
+ "end": 1588.07,
+ "text": "the"
+ },
+ {
+ "id": 4020,
+ "start": 1588.07,
+ "end": 1588.62,
+ "text": "enormity"
+ },
+ {
+ "id": 4021,
+ "start": 1588.62,
+ "end": 1588.75,
+ "text": "of"
+ },
+ {
+ "id": 4022,
+ "start": 1588.8049999999998,
+ "end": 1589.3999999999996,
+ "text": "these"
+ },
+ {
+ "id": 4023,
+ "start": 1588.99,
+ "end": 1590.05,
+ "text": "issues?"
+ },
+ {
+ "id": 4024,
+ "start": 1590.05,
+ "end": 1590.13,
+ "text": "I"
+ },
+ {
+ "id": 4025,
+ "start": 1590.13,
+ "end": 1590.28,
+ "text": "mean,"
+ },
+ {
+ "id": 4026,
+ "start": 1590.28,
+ "end": 1590.4,
+ "text": "is"
+ },
+ {
+ "id": 4027,
+ "start": 1590.8999999999999,
+ "end": 1591.0966666666668,
+ "text": "it"
+ },
+ {
+ "id": 4028,
+ "start": 1591.5199999999998,
+ "end": 1591.793333333333,
+ "text": "something"
+ },
+ {
+ "id": 4029,
+ "start": 1592.14,
+ "end": 1592.49,
+ "text": "something"
+ },
+ {
+ "id": 4030,
+ "start": 1592.49,
+ "end": 1592.63,
+ "text": "that"
+ },
+ {
+ "id": 4031,
+ "start": 1592.63,
+ "end": 1592.71,
+ "text": "the"
+ },
+ {
+ "id": 4032,
+ "start": 1592.71,
+ "end": 1593.06,
+ "text": "company"
+ },
+ {
+ "id": 4033,
+ "start": 1593.06,
+ "end": 1593.32,
+ "text": "didn’t"
+ },
+ {
+ "id": 4034,
+ "start": 1593.32,
+ "end": 1593.61,
+ "text": "want"
+ },
+ {
+ "id": 4035,
+ "start": 1593.61,
+ "end": 1593.76,
+ "text": "for"
+ },
+ {
+ "id": 4036,
+ "start": 1593.76,
+ "end": 1593.82,
+ "text": "a"
+ },
+ {
+ "id": 4037,
+ "start": 1593.82,
+ "end": 1594.06,
+ "text": "long"
+ },
+ {
+ "id": 4038,
+ "start": 1594.06,
+ "end": 1594.38,
+ "text": "time"
+ },
+ {
+ "id": 4039,
+ "start": 1594.38,
+ "end": 1594.5,
+ "text": "and"
+ },
+ {
+ "id": 4040,
+ "start": 1594.5,
+ "end": 1594.77,
+ "text": "now"
+ },
+ {
+ "id": 4041,
+ "start": 1594.77,
+ "end": 1594.88,
+ "text": "it"
+ },
+ {
+ "id": 4042,
+ "start": 1594.88,
+ "end": 1595.09,
+ "text": "kind"
+ },
+ {
+ "id": 4043,
+ "start": 1595.09,
+ "end": 1595.41,
+ "text": "of"
+ },
+ {
+ "id": 4044,
+ "start": 1595.41,
+ "end": 1595.59,
+ "text": "is"
+ },
+ {
+ "id": 4045,
+ "start": 1595.59,
+ "end": 1596.03,
+ "text": "saddled"
+ },
+ {
+ "id": 4046,
+ "start": 1596.03,
+ "end": 1596.21,
+ "text": "with"
+ },
+ {
+ "id": 4047,
+ "start": 1596.21,
+ "end": 1596.32,
+ "text": "to"
+ },
+ {
+ "id": 4048,
+ "start": 1596.32,
+ "end": 1596.51,
+ "text": "some"
+ },
+ {
+ "id": 4049,
+ "start": 1596.51,
+ "end": 1597.57,
+ "text": "degree?"
+ },
+ {
+ "id": 4050,
+ "start": 1597.57,
+ "end": 1598.07,
+ "text": "Yeah,"
+ },
+ {
+ "id": 4051,
+ "start": 1598.07,
+ "end": 1599.08,
+ "text": "we-"
+ },
+ {
+ "id": 4052,
+ "start": 1599.08,
+ "end": 1599.31,
+ "text": "this"
+ },
+ {
+ "id": 4053,
+ "start": 1599.31,
+ "end": 1599.44,
+ "text": "is"
+ },
+ {
+ "id": 4054,
+ "start": 1599.44,
+ "end": 1599.5,
+ "text": "a"
+ },
+ {
+ "id": 4055,
+ "start": 1599.5,
+ "end": 1600.46,
+ "text": "responsibility"
+ },
+ {
+ "id": 4056,
+ "start": 1600.46,
+ "end": 1600.71,
+ "text": "like"
+ },
+ {
+ "id": 4057,
+ "start": 1600.71,
+ "end": 1600.77,
+ "text": "I"
+ },
+ {
+ "id": 4058,
+ "start": 1600.77,
+ "end": 1601.04,
+ "text": "said,"
+ },
+ {
+ "id": 4059,
+ "start": 1601.04,
+ "end": 1601.14,
+ "text": "to"
+ },
+ {
+ "id": 4060,
+ "start": 1601.14,
+ "end": 1601.38,
+ "text": "make-"
+ },
+ {
+ "id": 4061,
+ "start": 1601.4233333333334,
+ "end": 1601.73,
+ "text": "make"
+ },
+ {
+ "id": 4062,
+ "start": 1601.7066666666667,
+ "end": 1602.0800000000002,
+ "text": "sure"
+ },
+ {
+ "id": 4063,
+ "start": 1601.99,
+ "end": 1602.43,
+ "text": "Facebook’s"
+ },
+ {
+ "id": 4064,
+ "start": 1602.43,
+ "end": 1602.62,
+ "text": "used"
+ },
+ {
+ "id": 4065,
+ "start": 1602.62,
+ "end": 1602.76,
+ "text": "for"
+ },
+ {
+ "id": 4066,
+ "start": 1602.76,
+ "end": 1602.97,
+ "text": "good"
+ },
+ {
+ "id": 4067,
+ "start": 1602.865,
+ "end": 1603.0900000000001,
+ "text": "and"
+ },
+ {
+ "id": 4068,
+ "start": 1602.97,
+ "end": 1603.21,
+ "text": "not"
+ },
+ {
+ "id": 4069,
+ "start": 1603.21,
+ "end": 1603.67,
+ "text": "bad."
+ },
+ {
+ "id": 4070,
+ "start": 1603.67,
+ "end": 1604.15,
+ "text": "One"
+ },
+ {
+ "id": 4071,
+ "start": 1604.15,
+ "end": 1604.33,
+ "text": "thing"
+ },
+ {
+ "id": 4072,
+ "start": 1604.33,
+ "end": 1604.55,
+ "text": "that"
+ },
+ {
+ "id": 4073,
+ "start": 1604.55,
+ "end": 1605.12,
+ "text": "has"
+ },
+ {
+ "id": 4074,
+ "start": 1605.12,
+ "end": 1605.53,
+ "text": "really"
+ },
+ {
+ "id": 4075,
+ "start": 1605.53,
+ "end": 1605.69,
+ "text": "been"
+ },
+ {
+ "id": 4076,
+ "start": 1605.69,
+ "end": 1606.23,
+ "text": "highlighted"
+ },
+ {
+ "id": 4077,
+ "start": 1606.23,
+ "end": 1606.45,
+ "text": "for"
+ },
+ {
+ "id": 4078,
+ "start": 1606.45,
+ "end": 1607.25,
+ "text": "me"
+ },
+ {
+ "id": 4079,
+ "start": 1607.25,
+ "end": 1607.36,
+ "text": "that"
+ },
+ {
+ "id": 4080,
+ "start": 1607.36,
+ "end": 1607.68,
+ "text": "relates"
+ },
+ {
+ "id": 4081,
+ "start": 1607.68,
+ "end": 1607.8,
+ "text": "to"
+ },
+ {
+ "id": 4082,
+ "start": 1607.8,
+ "end": 1607.89,
+ "text": "the"
+ },
+ {
+ "id": 4083,
+ "start": 1607.89,
+ "end": 1608.27,
+ "text": "earlier"
+ },
+ {
+ "id": 4084,
+ "start": 1608.27,
+ "end": 1608.77,
+ "text": "question"
+ },
+ {
+ "id": 4085,
+ "start": 1608.77,
+ "end": 1609.57,
+ "text": "is"
+ },
+ {
+ "id": 4086,
+ "start": 1609.57,
+ "end": 1609.92,
+ "text": "we"
+ },
+ {
+ "id": 4087,
+ "start": 1609.92,
+ "end": 1610.86,
+ "text": "are"
+ },
+ {
+ "id": 4088,
+ "start": 1610.86,
+ "end": 1611.33,
+ "text": "working"
+ },
+ {
+ "id": 4089,
+ "start": 1611.33,
+ "end": 1611.66,
+ "text": "here"
+ },
+ {
+ "id": 4090,
+ "start": 1611.66,
+ "end": 1611.78,
+ "text": "in"
+ },
+ {
+ "id": 4091,
+ "start": 1611.78,
+ "end": 1612.09,
+ "text": "Menlo"
+ },
+ {
+ "id": 4092,
+ "start": 1612.09,
+ "end": 1612.47,
+ "text": "Park"
+ },
+ {
+ "id": 4093,
+ "start": 1612.47,
+ "end": 1612.6,
+ "text": "in"
+ },
+ {
+ "id": 4094,
+ "start": 1612.6,
+ "end": 1612.9,
+ "text": "Palo"
+ },
+ {
+ "id": 4095,
+ "start": 1612.9,
+ "end": 1613.22,
+ "text": "Alto,"
+ },
+ {
+ "id": 4096,
+ "start": 1613.22,
+ "end": 1614.45,
+ "text": "California"
+ },
+ {
+ "id": 4097,
+ "start": 1614.45,
+ "end": 1614.62,
+ "text": "to"
+ },
+ {
+ "id": 4098,
+ "start": 1614.62,
+ "end": 1614.73,
+ "text": "the"
+ },
+ {
+ "id": 4099,
+ "start": 1614.73,
+ "end": 1615.13,
+ "text": "extent"
+ },
+ {
+ "id": 4100,
+ "start": 1615.13,
+ "end": 1615.78,
+ "text": "that"
+ },
+ {
+ "id": 4101,
+ "start": 1615.78,
+ "end": 1616.01,
+ "text": "some"
+ },
+ {
+ "id": 4102,
+ "start": 1616.01,
+ "end": 1616.13,
+ "text": "of"
+ },
+ {
+ "id": 4103,
+ "start": 1616.13,
+ "end": 1616.59,
+ "text": "these"
+ },
+ {
+ "id": 4104,
+ "start": 1616.59,
+ "end": 1617.21,
+ "text": "issues"
+ },
+ {
+ "id": 4105,
+ "start": 1617.21,
+ "end": 1617.32,
+ "text": "and"
+ },
+ {
+ "id": 4106,
+ "start": 1617.32,
+ "end": 1617.85,
+ "text": "problems"
+ },
+ {
+ "id": 4107,
+ "start": 1617.85,
+ "end": 1618.51,
+ "text": "manifest"
+ },
+ {
+ "id": 4108,
+ "start": 1618.51,
+ "end": 1618.62,
+ "text": "in"
+ },
+ {
+ "id": 4109,
+ "start": 1618.62,
+ "end": 1618.87,
+ "text": "other"
+ },
+ {
+ "id": 4110,
+ "start": 1618.87,
+ "end": 1619.36,
+ "text": "countries"
+ },
+ {
+ "id": 4111,
+ "start": 1619.36,
+ "end": 1619.66,
+ "text": "around"
+ },
+ {
+ "id": 4112,
+ "start": 1619.66,
+ "end": 1619.75,
+ "text": "the"
+ },
+ {
+ "id": 4113,
+ "start": 1619.75,
+ "end": 1620.34,
+ "text": "world,"
+ },
+ {
+ "id": 4114,
+ "start": 1620.34,
+ "end": 1620.76,
+ "text": "we"
+ },
+ {
+ "id": 4115,
+ "start": 1620.76,
+ "end": 1620.96,
+ "text": "didn’t"
+ },
+ {
+ "id": 4116,
+ "start": 1620.96,
+ "end": 1621.42,
+ "text": "have"
+ },
+ {
+ "id": 4117,
+ "start": 1621.42,
+ "end": 1622.74,
+ "text": "sufficient"
+ },
+ {
+ "id": 4118,
+ "start": 1622.74,
+ "end": 1623.64,
+ "text": "information"
+ },
+ {
+ "id": 4119,
+ "start": 1623.64,
+ "end": 1624.05,
+ "text": "and"
+ },
+ {
+ "id": 4120,
+ "start": 1624.05,
+ "end": 1624.19,
+ "text": "a"
+ },
+ {
+ "id": 4121,
+ "start": 1624.19,
+ "end": 1625.25,
+ "text": "pulse"
+ },
+ {
+ "id": 4122,
+ "start": 1625.25,
+ "end": 1625.77,
+ "text": "on"
+ },
+ {
+ "id": 4123,
+ "start": 1625.77,
+ "end": 1625.94,
+ "text": "what"
+ },
+ {
+ "id": 4124,
+ "start": 1625.94,
+ "end": 1626.1,
+ "text": "was"
+ },
+ {
+ "id": 4125,
+ "start": 1626.1,
+ "end": 1626.74,
+ "text": "happening"
+ },
+ {
+ "id": 4126,
+ "start": 1626.74,
+ "end": 1627.21,
+ "text": "in"
+ },
+ {
+ "id": 4127,
+ "start": 1627.21,
+ "end": 1627.73,
+ "text": "Southeast"
+ },
+ {
+ "id": 4128,
+ "start": 1627.73,
+ "end": 1628.34,
+ "text": "Asia"
+ },
+ {
+ "id": 4129,
+ "start": 1628.34,
+ "end": 1628.86,
+ "text": "or"
+ },
+ {
+ "id": 4130,
+ "start": 1628.86,
+ "end": 1629.16,
+ "text": "what"
+ },
+ {
+ "id": 4131,
+ "start": 1629.16,
+ "end": 1629.28,
+ "text": "was"
+ },
+ {
+ "id": 4132,
+ "start": 1629.28,
+ "end": 1629.76,
+ "text": "happening"
+ },
+ {
+ "id": 4133,
+ "start": 1629.76,
+ "end": 1629.89,
+ "text": "in"
+ },
+ {
+ "id": 4134,
+ "start": 1629.89,
+ "end": 1630.13,
+ "text": "South"
+ },
+ {
+ "id": 4135,
+ "start": 1630.325,
+ "end": 1630.615,
+ "text": "America"
+ },
+ {
+ "id": 4136,
+ "start": 1630.76,
+ "end": 1631.1,
+ "text": "and"
+ },
+ {
+ "id": 4137,
+ "start": 1631.1,
+ "end": 1631.37,
+ "text": "so"
+ },
+ {
+ "id": 4138,
+ "start": 1631.37,
+ "end": 1631.59,
+ "text": "one"
+ },
+ {
+ "id": 4139,
+ "start": 1631.59,
+ "end": 1632.02,
+ "text": "change"
+ },
+ {
+ "id": 4140,
+ "start": 1632.02,
+ "end": 1632.15,
+ "text": "that"
+ },
+ {
+ "id": 4141,
+ "start": 1632.15,
+ "end": 1632.32,
+ "text": "we’ve"
+ },
+ {
+ "id": 4142,
+ "start": 1632.32,
+ "end": 1633.07,
+ "text": "made"
+ },
+ {
+ "id": 4143,
+ "start": 1633.07,
+ "end": 1633.39,
+ "text": "along"
+ },
+ {
+ "id": 4144,
+ "start": 1633.39,
+ "end": 1633.53,
+ "text": "with"
+ },
+ {
+ "id": 4145,
+ "start": 1633.53,
+ "end": 1633.83,
+ "text": "hiring"
+ },
+ {
+ "id": 4146,
+ "start": 1633.83,
+ "end": 1633.98,
+ "text": "so"
+ },
+ {
+ "id": 4147,
+ "start": 1633.98,
+ "end": 1634.15,
+ "text": "many"
+ },
+ {
+ "id": 4148,
+ "start": 1634.15,
+ "end": 1634.33,
+ "text": "more"
+ },
+ {
+ "id": 4149,
+ "start": 1634.33,
+ "end": 1634.7,
+ "text": "people"
+ },
+ {
+ "id": 4150,
+ "start": 1634.7,
+ "end": 1634.8,
+ "text": "is"
+ },
+ {
+ "id": 4151,
+ "start": 1634.8,
+ "end": 1634.94,
+ "text": "that"
+ },
+ {
+ "id": 4152,
+ "start": 1634.94,
+ "end": 1634.99,
+ "text": "a"
+ },
+ {
+ "id": 4153,
+ "start": 1634.99,
+ "end": 1635.19,
+ "text": "lot"
+ },
+ {
+ "id": 4154,
+ "start": 1635.19,
+ "end": 1635.25,
+ "text": "of"
+ },
+ {
+ "id": 4155,
+ "start": 1635.25,
+ "end": 1635.41,
+ "text": "these"
+ },
+ {
+ "id": 4156,
+ "start": 1635.41,
+ "end": 1635.68,
+ "text": "people"
+ },
+ {
+ "id": 4157,
+ "start": 1635.68,
+ "end": 1635.79,
+ "text": "are"
+ },
+ {
+ "id": 4158,
+ "start": 1635.79,
+ "end": 1636.08,
+ "text": "based"
+ },
+ {
+ "id": 4159,
+ "start": 1636.08,
+ "end": 1636.87,
+ "text": "internationally"
+ },
+ {
+ "id": 4160,
+ "start": 1636.87,
+ "end": 1637.03,
+ "text": "and"
+ },
+ {
+ "id": 4161,
+ "start": 1637.03,
+ "end": 1637.33,
+ "text": "can"
+ },
+ {
+ "id": 4162,
+ "start": 1637.33,
+ "end": 1637.59,
+ "text": "give"
+ },
+ {
+ "id": 4163,
+ "start": 1637.59,
+ "end": 1637.77,
+ "text": "us"
+ },
+ {
+ "id": 4164,
+ "start": 1637.77,
+ "end": 1637.95,
+ "text": "that"
+ },
+ {
+ "id": 4165,
+ "start": 1637.95,
+ "end": 1638.37,
+ "text": "insight"
+ },
+ {
+ "id": 4166,
+ "start": 1638.37,
+ "end": 1638.56,
+ "text": "that"
+ },
+ {
+ "id": 4167,
+ "start": 1638.56,
+ "end": 1638.76,
+ "text": "we"
+ },
+ {
+ "id": 4168,
+ "start": 1638.76,
+ "end": 1638.99,
+ "text": "may"
+ },
+ {
+ "id": 4169,
+ "start": 1638.99,
+ "end": 1639.28,
+ "text": "not"
+ },
+ {
+ "id": 4170,
+ "start": 1639.28,
+ "end": 1639.97,
+ "text": "get"
+ },
+ {
+ "id": 4171,
+ "start": 1639.97,
+ "end": 1640.23,
+ "text": "from"
+ },
+ {
+ "id": 4172,
+ "start": 1640.23,
+ "end": 1641.17,
+ "text": "being"
+ },
+ {
+ "id": 4173,
+ "start": 1641.17,
+ "end": 1641.62,
+ "text": "here"
+ },
+ {
+ "id": 4174,
+ "start": 1641.62,
+ "end": 1641.75,
+ "text": "at"
+ },
+ {
+ "id": 4175,
+ "start": 1641.75,
+ "end": 1642.61,
+ "text": "headquarters."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 1.44,
+ "end": 21.53,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 1,
+ "start": 21.53,
+ "end": 39.58,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 2,
+ "start": 39.58,
+ "end": 43.471428571428575,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 3,
+ "start": 43.9,
+ "end": 82.7,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 4,
+ "start": 82.7,
+ "end": 86.07333333333332,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 5,
+ "start": 86.59,
+ "end": 110.35,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 6,
+ "start": 110.35,
+ "end": 119.54,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 7,
+ "start": 119.54,
+ "end": 148.95,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 8,
+ "start": 148.25,
+ "end": 158.39,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 9,
+ "start": 159.36,
+ "end": 184.49666666666667,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 10,
+ "start": 185.22,
+ "end": 204.51500000000004,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 11,
+ "start": 204.97,
+ "end": 228.97,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 12,
+ "start": 228.97,
+ "end": 242.18,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 13,
+ "start": 242.18,
+ "end": 256.077,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 14,
+ "start": 256.077,
+ "end": 270.087,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 15,
+ "start": 270.087,
+ "end": 295.78700000000003,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 16,
+ "start": 296.137,
+ "end": 309.187,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 17,
+ "start": 309.687,
+ "end": 325.387,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 18,
+ "start": 325.387,
+ "end": 347.83699999999993,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 19,
+ "start": 348.227,
+ "end": 361.1970000000001,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 20,
+ "start": 362.777,
+ "end": 398.278,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 21,
+ "start": 398.71466666666663,
+ "end": 409.628,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 22,
+ "start": 407.388,
+ "end": 450.96799999999985,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 23,
+ "start": 450.848,
+ "end": 462.89799999999997,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 24,
+ "start": 462.9046666666666,
+ "end": 477.438,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 25,
+ "start": 477.438,
+ "end": 483.088,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 26,
+ "start": 483.088,
+ "end": 501.321,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 27,
+ "start": 501.321,
+ "end": 517.251,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 28,
+ "start": 517.251,
+ "end": 523.971,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 29,
+ "start": 523.971,
+ "end": 536.931,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 30,
+ "start": 536.931,
+ "end": 547.201,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 31,
+ "start": 547.761,
+ "end": 549.511,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 32,
+ "start": 550.1610000000001,
+ "end": 589.991,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 33,
+ "start": 590.291,
+ "end": 593.911,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 34,
+ "start": 593.911,
+ "end": 598.651,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 35,
+ "start": 598.651,
+ "end": 603.241,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 36,
+ "start": 604.711,
+ "end": 615.4599999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 37,
+ "start": 616.315,
+ "end": 621.34,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 38,
+ "start": 621.895,
+ "end": 659.4300000000001,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 39,
+ "start": 659.875,
+ "end": 664.3483333333334,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 40,
+ "start": 664.165,
+ "end": 665.135,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 41,
+ "start": 665.135,
+ "end": 689.105,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 42,
+ "start": 689.3616666666666,
+ "end": 726.03,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 43,
+ "start": 726.355,
+ "end": 759.3829999999998,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 44,
+ "start": 761.668,
+ "end": 793.768,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 45,
+ "start": 793.768,
+ "end": 823.088,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 46,
+ "start": 823.088,
+ "end": 830.808,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 47,
+ "start": 830.808,
+ "end": 842.558,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 48,
+ "start": 842.558,
+ "end": 881.2,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 49,
+ "start": 881.2,
+ "end": 898.17,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 50,
+ "start": 898.17,
+ "end": 907.6,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 51,
+ "start": 907.6,
+ "end": 923.07,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 52,
+ "start": 923.07,
+ "end": 931.4425,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 53,
+ "start": 932.01,
+ "end": 939.97,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 54,
+ "start": 939.97,
+ "end": 941.51,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 55,
+ "start": 941.51,
+ "end": 944.405,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 56,
+ "start": 944.27,
+ "end": 952.0939999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 57,
+ "start": 952.182,
+ "end": 952.482,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 58,
+ "start": 952.68,
+ "end": 966.7749999999996,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 59,
+ "start": 968.21,
+ "end": 997.153,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 60,
+ "start": 997.323,
+ "end": 1006.033,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 61,
+ "start": 1005.743,
+ "end": 1008.153,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 62,
+ "start": 1008.153,
+ "end": 1022.8580000000002,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 63,
+ "start": 1025.153,
+ "end": 1043.7830000000001,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 64,
+ "start": 1044.533,
+ "end": 1079.623,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 65,
+ "start": 1079.623,
+ "end": 1104.7799999999997,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 66,
+ "start": 1105.58,
+ "end": 1129.045,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 67,
+ "start": 1129.56,
+ "end": 1143.835,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 68,
+ "start": 1145.24,
+ "end": 1165.95,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 69,
+ "start": 1166.0966666666668,
+ "end": 1171.74,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 70,
+ "start": 1172.6799999999998,
+ "end": 1177.8550000000002,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 71,
+ "start": 1178.31,
+ "end": 1180.74,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 72,
+ "start": 1180.74,
+ "end": 1185.1,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 73,
+ "start": 1185.1,
+ "end": 1193.87,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 74,
+ "start": 1193.87,
+ "end": 1238.113,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 75,
+ "start": 1238.113,
+ "end": 1244.913,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 76,
+ "start": 1244.913,
+ "end": 1280.953,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 77,
+ "start": 1280.953,
+ "end": 1319.7830000000004,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 78,
+ "start": 1320.243,
+ "end": 1329.203,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 79,
+ "start": 1329.203,
+ "end": 1356.452,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 80,
+ "start": 1356.452,
+ "end": 1360.152,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 81,
+ "start": 1360.152,
+ "end": 1387.242,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 82,
+ "start": 1387.242,
+ "end": 1396.092,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 83,
+ "start": 1396.092,
+ "end": 1406.062,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 84,
+ "start": 1406.062,
+ "end": 1433.432,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 85,
+ "start": 1433.432,
+ "end": 1449.772,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 86,
+ "start": 1449.832,
+ "end": 1462.0970000000002,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 87,
+ "start": 1461.835,
+ "end": 1473.927,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 88,
+ "start": 1473.927,
+ "end": 1499.947,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 89,
+ "start": 1500.097,
+ "end": 1508.237,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 90,
+ "start": 1508.237,
+ "end": 1518.757,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 91,
+ "start": 1518.757,
+ "end": 1530.907,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 92,
+ "start": 1530.907,
+ "end": 1577.437,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 93,
+ "start": 1577.437,
+ "end": 1590.05,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 94,
+ "start": 1590.05,
+ "end": 1597.57,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 95,
+ "start": 1597.57,
+ "end": 1628.34,
+ "speaker": "Naomi Gleit"
+ },
+ {
+ "id": 96,
+ "start": 1628.34,
+ "end": 1642.61,
+ "speaker": "Naomi Gleit"
+ }
+ ]
+ }
+ },
+ {
+ "_id": "1003cjw29xii80000ird74yb19swa",
+ "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
+ "title": "Guy Rosen",
+ "description": "Guy Rosen, Facebook VP of Product Management. Interview for PBS Frontline, The Facebook Dilemma",
+ "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Guy+Rosen-4sGvc84tNik.mp4",
+ "clipName": "The Facebook Dilemma - Guy Rosen-4sGvc84tNik.mp4",
+ "status": "done",
+ "transcript": {
+ "words": [
+ {
+ "id": 0,
+ "start": 1.41,
+ "end": 1.64,
+ "text": "Bring"
+ },
+ {
+ "id": 1,
+ "start": 1.64,
+ "end": 1.75,
+ "text": "me"
+ },
+ {
+ "id": 2,
+ "start": 1.75,
+ "end": 2.01,
+ "text": "back"
+ },
+ {
+ "id": 3,
+ "start": 2.01,
+ "end": 2.12,
+ "text": "to"
+ },
+ {
+ "id": 4,
+ "start": 2.12,
+ "end": 2.21,
+ "text": "the"
+ },
+ {
+ "id": 5,
+ "start": 2.21,
+ "end": 2.59,
+ "text": "moment"
+ },
+ {
+ "id": 6,
+ "start": 2.59,
+ "end": 2.8,
+ "text": "when"
+ },
+ {
+ "id": 7,
+ "start": 2.8,
+ "end": 4.46,
+ "text": "you’re"
+ },
+ {
+ "id": 8,
+ "start": 4.46,
+ "end": 4.94,
+ "text": "basically"
+ },
+ {
+ "id": 9,
+ "start": 4.94,
+ "end": 5.2,
+ "text": "given"
+ },
+ {
+ "id": 10,
+ "start": 5.2,
+ "end": 5.26,
+ "text": "a"
+ },
+ {
+ "id": 11,
+ "start": 5.26,
+ "end": 5.93,
+ "text": "task"
+ },
+ {
+ "id": 12,
+ "start": 6.02,
+ "end": 6.82,
+ "text": "here"
+ },
+ {
+ "id": 13,
+ "start": 6.78,
+ "end": 7.71,
+ "text": "and"
+ },
+ {
+ "id": 14,
+ "start": 7.71,
+ "end": 8.25,
+ "text": "where"
+ },
+ {
+ "id": 15,
+ "start": 8.25,
+ "end": 8.46,
+ "text": "were"
+ },
+ {
+ "id": 16,
+ "start": 8.530000000000001,
+ "end": 8.775,
+ "text": "you."
+ },
+ {
+ "id": 17,
+ "start": 8.81,
+ "end": 9.09,
+ "text": "Who"
+ },
+ {
+ "id": 18,
+ "start": 9.09,
+ "end": 9.31,
+ "text": "gave"
+ },
+ {
+ "id": 19,
+ "start": 9.31,
+ "end": 9.4,
+ "text": "you"
+ },
+ {
+ "id": 20,
+ "start": 9.4,
+ "end": 9.51,
+ "text": "the"
+ },
+ {
+ "id": 21,
+ "start": 9.51,
+ "end": 9.96,
+ "text": "task?"
+ },
+ {
+ "id": 22,
+ "start": 9.96,
+ "end": 10.13,
+ "text": "Kind"
+ },
+ {
+ "id": 23,
+ "start": 10.13,
+ "end": 10.24,
+ "text": "of"
+ },
+ {
+ "id": 24,
+ "start": 10.24,
+ "end": 10.46,
+ "text": "bring"
+ },
+ {
+ "id": 25,
+ "start": 10.46,
+ "end": 10.58,
+ "text": "me"
+ },
+ {
+ "id": 26,
+ "start": 10.58,
+ "end": 10.77,
+ "text": "into"
+ },
+ {
+ "id": 27,
+ "start": 10.77,
+ "end": 10.87,
+ "text": "the"
+ },
+ {
+ "id": 28,
+ "start": 11.01,
+ "end": 11.375,
+ "text": "story"
+ },
+ {
+ "id": 29,
+ "start": 11.25,
+ "end": 11.88,
+ "text": "of"
+ },
+ {
+ "id": 30,
+ "start": 11.88,
+ "end": 12.22,
+ "text": "being"
+ },
+ {
+ "id": 31,
+ "start": 12.22,
+ "end": 13.25,
+ "text": "charged"
+ },
+ {
+ "id": 32,
+ "start": 13.25,
+ "end": 13.43,
+ "text": "with"
+ },
+ {
+ "id": 33,
+ "start": 13.43,
+ "end": 13.58,
+ "text": "this"
+ },
+ {
+ "id": 34,
+ "start": 13.58,
+ "end": 14.27,
+ "text": "enormous"
+ },
+ {
+ "id": 35,
+ "start": 14.27,
+ "end": 15.84,
+ "text": "responsibility."
+ },
+ {
+ "id": 36,
+ "start": 15.84,
+ "end": 16.71,
+ "text": "So"
+ },
+ {
+ "id": 37,
+ "start": 16.71,
+ "end": 16.95,
+ "text": "let"
+ },
+ {
+ "id": 38,
+ "start": 16.95,
+ "end": 17.08,
+ "text": "me"
+ },
+ {
+ "id": 39,
+ "start": 17.08,
+ "end": 17.28,
+ "text": "step"
+ },
+ {
+ "id": 40,
+ "start": 17.28,
+ "end": 17.56,
+ "text": "back"
+ },
+ {
+ "id": 41,
+ "start": 17.56,
+ "end": 17.65,
+ "text": "and"
+ },
+ {
+ "id": 42,
+ "start": 17.65,
+ "end": 18.17,
+ "text": "explain"
+ },
+ {
+ "id": 43,
+ "start": 18.17,
+ "end": 18.81,
+ "text": "how"
+ },
+ {
+ "id": 44,
+ "start": 18.81,
+ "end": 18.95,
+ "text": "my"
+ },
+ {
+ "id": 45,
+ "start": 18.95,
+ "end": 19.19,
+ "text": "role"
+ },
+ {
+ "id": 46,
+ "start": 19.310000000000002,
+ "end": 19.675,
+ "text": "works."
+ },
+ {
+ "id": 47,
+ "start": 19.67,
+ "end": 20.16,
+ "text": "So"
+ },
+ {
+ "id": 48,
+ "start": 20.03,
+ "end": 20.645,
+ "text": "I’m"
+ },
+ {
+ "id": 49,
+ "start": 20.39,
+ "end": 21.13,
+ "text": "responsible"
+ },
+ {
+ "id": 50,
+ "start": 21.13,
+ "end": 21.59,
+ "text": "overall"
+ },
+ {
+ "id": 51,
+ "start": 21.59,
+ "end": 21.74,
+ "text": "for"
+ },
+ {
+ "id": 52,
+ "start": 21.74,
+ "end": 22.04,
+ "text": "the"
+ },
+ {
+ "id": 53,
+ "start": 22.04,
+ "end": 22.39,
+ "text": "safety"
+ },
+ {
+ "id": 54,
+ "start": 22.39,
+ "end": 22.49,
+ "text": "and"
+ },
+ {
+ "id": 55,
+ "start": 22.49,
+ "end": 22.89,
+ "text": "security"
+ },
+ {
+ "id": 56,
+ "start": 22.89,
+ "end": 23.22,
+ "text": "work"
+ },
+ {
+ "id": 57,
+ "start": 23.22,
+ "end": 23.37,
+ "text": "at"
+ },
+ {
+ "id": 58,
+ "start": 23.37,
+ "end": 24.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 59,
+ "start": 23.93,
+ "end": 24.38,
+ "text": "and"
+ },
+ {
+ "id": 60,
+ "start": 24.155,
+ "end": 24.58,
+ "text": "I"
+ },
+ {
+ "id": 61,
+ "start": 24.38,
+ "end": 24.78,
+ "text": "approach"
+ },
+ {
+ "id": 62,
+ "start": 24.78,
+ "end": 24.97,
+ "text": "it"
+ },
+ {
+ "id": 63,
+ "start": 24.97,
+ "end": 25.22,
+ "text": "from"
+ },
+ {
+ "id": 64,
+ "start": 25.22,
+ "end": 25.31,
+ "text": "the"
+ },
+ {
+ "id": 65,
+ "start": 25.31,
+ "end": 26.16,
+ "text": "product"
+ },
+ {
+ "id": 66,
+ "start": 26.16,
+ "end": 26.34,
+ "text": "and"
+ },
+ {
+ "id": 67,
+ "start": 26.34,
+ "end": 26.49,
+ "text": "the"
+ },
+ {
+ "id": 68,
+ "start": 26.49,
+ "end": 26.98,
+ "text": "technical"
+ },
+ {
+ "id": 69,
+ "start": 26.98,
+ "end": 27.79,
+ "text": "side."
+ },
+ {
+ "id": 70,
+ "start": 27.79,
+ "end": 27.96,
+ "text": "So"
+ },
+ {
+ "id": 71,
+ "start": 27.96,
+ "end": 28.25,
+ "text": "working"
+ },
+ {
+ "id": 72,
+ "start": 28.25,
+ "end": 28.62,
+ "text": "very"
+ },
+ {
+ "id": 73,
+ "start": 28.62,
+ "end": 29.65,
+ "text": "closely"
+ },
+ {
+ "id": 74,
+ "start": 29.65,
+ "end": 29.84,
+ "text": "with"
+ },
+ {
+ "id": 75,
+ "start": 29.84,
+ "end": 30.86,
+ "text": "policy"
+ },
+ {
+ "id": 76,
+ "start": 30.86,
+ "end": 31.11,
+ "text": "and"
+ },
+ {
+ "id": 77,
+ "start": 31.11,
+ "end": 31.57,
+ "text": "with"
+ },
+ {
+ "id": 78,
+ "start": 31.57,
+ "end": 32.83,
+ "text": "operations,"
+ },
+ {
+ "id": 79,
+ "start": 32.83,
+ "end": 33.27,
+ "text": "because"
+ },
+ {
+ "id": 80,
+ "start": 33.27,
+ "end": 33.81,
+ "text": "fighting"
+ },
+ {
+ "id": 81,
+ "start": 33.81,
+ "end": 34.33,
+ "text": "abuse"
+ },
+ {
+ "id": 82,
+ "start": 34.33,
+ "end": 34.51,
+ "text": "on"
+ },
+ {
+ "id": 83,
+ "start": 34.51,
+ "end": 35.59,
+ "text": "Facebook"
+ },
+ {
+ "id": 84,
+ "start": 35.59,
+ "end": 35.74,
+ "text": "is"
+ },
+ {
+ "id": 85,
+ "start": 35.74,
+ "end": 36.05,
+ "text": "something"
+ },
+ {
+ "id": 86,
+ "start": 36.05,
+ "end": 36.22,
+ "text": "that"
+ },
+ {
+ "id": 87,
+ "start": 36.22,
+ "end": 36.81,
+ "text": "requires"
+ },
+ {
+ "id": 88,
+ "start": 36.81,
+ "end": 37.08,
+ "text": "all"
+ },
+ {
+ "id": 89,
+ "start": 37.08,
+ "end": 37.2,
+ "text": "of"
+ },
+ {
+ "id": 90,
+ "start": 37.2,
+ "end": 37.48,
+ "text": "those"
+ },
+ {
+ "id": 91,
+ "start": 37.48,
+ "end": 38.04,
+ "text": "three"
+ },
+ {
+ "id": 92,
+ "start": 38.04,
+ "end": 38.24,
+ "text": "to"
+ },
+ {
+ "id": 93,
+ "start": 38.24,
+ "end": 38.84,
+ "text": "constantly"
+ },
+ {
+ "id": 94,
+ "start": 38.84,
+ "end": 39.81,
+ "text": "work"
+ },
+ {
+ "id": 95,
+ "start": 39.36,
+ "end": 40.01,
+ "text": "in"
+ },
+ {
+ "id": 96,
+ "start": 40.55,
+ "end": 41.52499999999998,
+ "text": "lockstep."
+ },
+ {
+ "id": 97,
+ "start": 41.74,
+ "end": 43.04,
+ "text": "And"
+ },
+ {
+ "id": 98,
+ "start": 43.04,
+ "end": 43.17,
+ "text": "a"
+ },
+ {
+ "id": 99,
+ "start": 43.17,
+ "end": 43.36,
+ "text": "lot"
+ },
+ {
+ "id": 100,
+ "start": 43.36,
+ "end": 43.45,
+ "text": "of"
+ },
+ {
+ "id": 101,
+ "start": 43.45,
+ "end": 43.55,
+ "text": "the"
+ },
+ {
+ "id": 102,
+ "start": 43.55,
+ "end": 43.83,
+ "text": "work"
+ },
+ {
+ "id": 103,
+ "start": 43.83,
+ "end": 43.98,
+ "text": "that"
+ },
+ {
+ "id": 104,
+ "start": 43.98,
+ "end": 44.14,
+ "text": "we’ve"
+ },
+ {
+ "id": 105,
+ "start": 44.14,
+ "end": 44.31,
+ "text": "been"
+ },
+ {
+ "id": 106,
+ "start": 44.31,
+ "end": 45.19,
+ "text": "doing"
+ },
+ {
+ "id": 107,
+ "start": 45.19,
+ "end": 45.55,
+ "text": "is"
+ },
+ {
+ "id": 108,
+ "start": 45.55,
+ "end": 46.2,
+ "text": "understanding"
+ },
+ {
+ "id": 109,
+ "start": 46.2,
+ "end": 47.44,
+ "text": "how"
+ },
+ {
+ "id": 110,
+ "start": 47.44,
+ "end": 47.68,
+ "text": "we"
+ },
+ {
+ "id": 111,
+ "start": 47.68,
+ "end": 48.36,
+ "text": "move"
+ },
+ {
+ "id": 112,
+ "start": 48.36,
+ "end": 49.44,
+ "text": "from"
+ },
+ {
+ "id": 113,
+ "start": 49.44,
+ "end": 49.95,
+ "text": "being"
+ },
+ {
+ "id": 114,
+ "start": 49.95,
+ "end": 51.06,
+ "text": "reactive"
+ },
+ {
+ "id": 115,
+ "start": 51.06,
+ "end": 51.22,
+ "text": "to"
+ },
+ {
+ "id": 116,
+ "start": 51.22,
+ "end": 51.54,
+ "text": "being"
+ },
+ {
+ "id": 117,
+ "start": 51.54,
+ "end": 52.48,
+ "text": "proactive"
+ },
+ {
+ "id": 118,
+ "start": 52.195,
+ "end": 52.785,
+ "text": "and"
+ },
+ {
+ "id": 119,
+ "start": 52.85,
+ "end": 53.09,
+ "text": "how"
+ },
+ {
+ "id": 120,
+ "start": 53.09,
+ "end": 53.21,
+ "text": "we"
+ },
+ {
+ "id": 121,
+ "start": 53.21,
+ "end": 54.03,
+ "text": "approach"
+ },
+ {
+ "id": 122,
+ "start": 54.03,
+ "end": 54.16,
+ "text": "the"
+ },
+ {
+ "id": 123,
+ "start": 54.16,
+ "end": 54.64,
+ "text": "task"
+ },
+ {
+ "id": 124,
+ "start": 54.64,
+ "end": 54.92,
+ "text": "of"
+ },
+ {
+ "id": 125,
+ "start": 54.92,
+ "end": 55.65,
+ "text": "understanding"
+ },
+ {
+ "id": 126,
+ "start": 55.65,
+ "end": 55.79,
+ "text": "and"
+ },
+ {
+ "id": 127,
+ "start": 55.79,
+ "end": 56.45,
+ "text": "finding"
+ },
+ {
+ "id": 128,
+ "start": 56.32,
+ "end": 57.13000000000001,
+ "text": "bad"
+ },
+ {
+ "id": 129,
+ "start": 56.85,
+ "end": 57.81,
+ "text": "content."
+ },
+ {
+ "id": 130,
+ "start": 57.81,
+ "end": 59.53,
+ "text": "So"
+ },
+ {
+ "id": 131,
+ "start": 59.53,
+ "end": 60.41,
+ "text": "traditionally,"
+ },
+ {
+ "id": 132,
+ "start": 60.41,
+ "end": 60.56,
+ "text": "the"
+ },
+ {
+ "id": 133,
+ "start": 60.56,
+ "end": 60.7,
+ "text": "way"
+ },
+ {
+ "id": 134,
+ "start": 60.7,
+ "end": 60.83,
+ "text": "my"
+ },
+ {
+ "id": 135,
+ "start": 60.83,
+ "end": 61.07,
+ "text": "team"
+ },
+ {
+ "id": 136,
+ "start": 61.07,
+ "end": 61.41,
+ "text": "works"
+ },
+ {
+ "id": 137,
+ "start": 61.41,
+ "end": 61.78,
+ "text": "is"
+ },
+ {
+ "id": 138,
+ "start": 61.78,
+ "end": 61.97,
+ "text": "if"
+ },
+ {
+ "id": 139,
+ "start": 61.97,
+ "end": 62.09,
+ "text": "you"
+ },
+ {
+ "id": 140,
+ "start": 62.09,
+ "end": 62.24,
+ "text": "see"
+ },
+ {
+ "id": 141,
+ "start": 62.24,
+ "end": 62.91,
+ "text": "something"
+ },
+ {
+ "id": 142,
+ "start": 62.91,
+ "end": 63.3,
+ "text": "that"
+ },
+ {
+ "id": 143,
+ "start": 63.3,
+ "end": 63.4,
+ "text": "you"
+ },
+ {
+ "id": 144,
+ "start": 63.4,
+ "end": 63.57,
+ "text": "think"
+ },
+ {
+ "id": 145,
+ "start": 63.57,
+ "end": 63.79,
+ "text": "shouldn’t"
+ },
+ {
+ "id": 146,
+ "start": 63.79,
+ "end": 63.89,
+ "text": "be"
+ },
+ {
+ "id": 147,
+ "start": 63.89,
+ "end": 64.01,
+ "text": "on"
+ },
+ {
+ "id": 148,
+ "start": 64.01,
+ "end": 65.01,
+ "text": "Facebook,"
+ },
+ {
+ "id": 149,
+ "start": 65.01,
+ "end": 65.25,
+ "text": "we"
+ },
+ {
+ "id": 150,
+ "start": 65.25,
+ "end": 65.51,
+ "text": "build"
+ },
+ {
+ "id": 151,
+ "start": 65.51,
+ "end": 65.58,
+ "text": "the"
+ },
+ {
+ "id": 152,
+ "start": 65.58,
+ "end": 66.32,
+ "text": "tools"
+ },
+ {
+ "id": 153,
+ "start": 66.32,
+ "end": 66.99,
+ "text": "for"
+ },
+ {
+ "id": 154,
+ "start": 66.99,
+ "end": 67.2,
+ "text": "you"
+ },
+ {
+ "id": 155,
+ "start": 67.2,
+ "end": 67.31,
+ "text": "to"
+ },
+ {
+ "id": 156,
+ "start": 67.31,
+ "end": 67.62,
+ "text": "report"
+ },
+ {
+ "id": 157,
+ "start": 67.62,
+ "end": 67.78,
+ "text": "that"
+ },
+ {
+ "id": 158,
+ "start": 67.78,
+ "end": 68.18,
+ "text": "content"
+ },
+ {
+ "id": 159,
+ "start": 67.98,
+ "end": 68.45500000000001,
+ "text": "to"
+ },
+ {
+ "id": 160,
+ "start": 68.18,
+ "end": 68.73,
+ "text": "us."
+ },
+ {
+ "id": 161,
+ "start": 68.73,
+ "end": 68.9,
+ "text": "We"
+ },
+ {
+ "id": 162,
+ "start": 68.9,
+ "end": 69.13,
+ "text": "build"
+ },
+ {
+ "id": 163,
+ "start": 69.13,
+ "end": 69.2,
+ "text": "the"
+ },
+ {
+ "id": 164,
+ "start": 69.2,
+ "end": 69.89,
+ "text": "tools"
+ },
+ {
+ "id": 165,
+ "start": 69.89,
+ "end": 70.16,
+ "text": "for"
+ },
+ {
+ "id": 166,
+ "start": 70.16,
+ "end": 70.32,
+ "text": "our"
+ },
+ {
+ "id": 167,
+ "start": 70.32,
+ "end": 71,
+ "text": "reviewers"
+ },
+ {
+ "id": 168,
+ "start": 71,
+ "end": 71.18,
+ "text": "to"
+ },
+ {
+ "id": 169,
+ "start": 71.18,
+ "end": 71.44,
+ "text": "review"
+ },
+ {
+ "id": 170,
+ "start": 71.44,
+ "end": 71.6,
+ "text": "that"
+ },
+ {
+ "id": 171,
+ "start": 72.08999999999999,
+ "end": 72.255,
+ "text": "content."
+ },
+ {
+ "id": 172,
+ "start": 72.74,
+ "end": 72.91,
+ "text": "And"
+ },
+ {
+ "id": 173,
+ "start": 72.91,
+ "end": 73.49,
+ "text": "increasingly,"
+ },
+ {
+ "id": 174,
+ "start": 73.49,
+ "end": 73.63,
+ "text": "we’re"
+ },
+ {
+ "id": 175,
+ "start": 73.63,
+ "end": 74.14,
+ "text": "investing"
+ },
+ {
+ "id": 176,
+ "start": 74.035,
+ "end": 74.475,
+ "text": "more"
+ },
+ {
+ "id": 177,
+ "start": 74.44,
+ "end": 74.81,
+ "text": "and"
+ },
+ {
+ "id": 178,
+ "start": 74.845,
+ "end": 75.14500000000001,
+ "text": "more"
+ },
+ {
+ "id": 179,
+ "start": 75.25,
+ "end": 75.48,
+ "text": "in"
+ },
+ {
+ "id": 180,
+ "start": 75.48,
+ "end": 75.92,
+ "text": "tools"
+ },
+ {
+ "id": 181,
+ "start": 75.92,
+ "end": 76.09,
+ "text": "that"
+ },
+ {
+ "id": 182,
+ "start": 76.09,
+ "end": 76.28,
+ "text": "will"
+ },
+ {
+ "id": 183,
+ "start": 76.28,
+ "end": 77.23,
+ "text": "proactively"
+ },
+ {
+ "id": 184,
+ "start": 77.23,
+ "end": 77.44,
+ "text": "go"
+ },
+ {
+ "id": 185,
+ "start": 77.44,
+ "end": 77.68,
+ "text": "out"
+ },
+ {
+ "id": 186,
+ "start": 77.68,
+ "end": 77.86,
+ "text": "and"
+ },
+ {
+ "id": 187,
+ "start": 77.86,
+ "end": 78.7,
+ "text": "find"
+ },
+ {
+ "id": 188,
+ "start": 78.7,
+ "end": 78.86,
+ "text": "that"
+ },
+ {
+ "id": 189,
+ "start": 78.86,
+ "end": 79.06,
+ "text": "kind"
+ },
+ {
+ "id": 190,
+ "start": 79.06,
+ "end": 79.13,
+ "text": "of"
+ },
+ {
+ "id": 191,
+ "start": 79.455,
+ "end": 79.64999999999999,
+ "text": "content"
+ },
+ {
+ "id": 192,
+ "start": 79.85,
+ "end": 80.17,
+ "text": "because"
+ },
+ {
+ "id": 193,
+ "start": 80.17,
+ "end": 80.38,
+ "text": "as"
+ },
+ {
+ "id": 194,
+ "start": 80.38,
+ "end": 80.5,
+ "text": "we"
+ },
+ {
+ "id": 195,
+ "start": 80.5,
+ "end": 80.71,
+ "text": "get"
+ },
+ {
+ "id": 196,
+ "start": 80.71,
+ "end": 80.9,
+ "text": "more"
+ },
+ {
+ "id": 197,
+ "start": 80.9,
+ "end": 82.4,
+ "text": "proactive,"
+ },
+ {
+ "id": 198,
+ "start": 82.4,
+ "end": 82.54,
+ "text": "we"
+ },
+ {
+ "id": 199,
+ "start": 82.54,
+ "end": 82.77,
+ "text": "can"
+ },
+ {
+ "id": 200,
+ "start": 82.77,
+ "end": 83.23,
+ "text": "find"
+ },
+ {
+ "id": 201,
+ "start": 83.08999999999999,
+ "end": 83.51,
+ "text": "bad"
+ },
+ {
+ "id": 202,
+ "start": 83.41,
+ "end": 83.79,
+ "text": "content"
+ },
+ {
+ "id": 203,
+ "start": 83.79,
+ "end": 84.67,
+ "text": "faster,"
+ },
+ {
+ "id": 204,
+ "start": 84.67,
+ "end": 84.8,
+ "text": "which"
+ },
+ {
+ "id": 205,
+ "start": 84.8,
+ "end": 84.99,
+ "text": "means"
+ },
+ {
+ "id": 206,
+ "start": 84.99,
+ "end": 85.09,
+ "text": "we"
+ },
+ {
+ "id": 207,
+ "start": 85.09,
+ "end": 85.23,
+ "text": "can"
+ },
+ {
+ "id": 208,
+ "start": 85.23,
+ "end": 85.44,
+ "text": "get"
+ },
+ {
+ "id": 209,
+ "start": 85.44,
+ "end": 85.55,
+ "text": "to"
+ },
+ {
+ "id": 210,
+ "start": 85.55,
+ "end": 85.78,
+ "text": "it"
+ },
+ {
+ "id": 211,
+ "start": 85.78,
+ "end": 86.71,
+ "text": "before"
+ },
+ {
+ "id": 212,
+ "start": 86.71,
+ "end": 88.15,
+ "text": "anyone"
+ },
+ {
+ "id": 213,
+ "start": 88.15,
+ "end": 88.57,
+ "text": "reports"
+ },
+ {
+ "id": 214,
+ "start": 88.57,
+ "end": 89.18,
+ "text": "it."
+ },
+ {
+ "id": 215,
+ "start": 88.8,
+ "end": 89.32,
+ "text": "We"
+ },
+ {
+ "id": 216,
+ "start": 89.13,
+ "end": 89.46,
+ "text": "can"
+ },
+ {
+ "id": 217,
+ "start": 89.46,
+ "end": 89.6,
+ "text": "even"
+ },
+ {
+ "id": 218,
+ "start": 89.6,
+ "end": 89.77,
+ "text": "get"
+ },
+ {
+ "id": 219,
+ "start": 89.77,
+ "end": 89.86,
+ "text": "to"
+ },
+ {
+ "id": 220,
+ "start": 89.86,
+ "end": 89.94,
+ "text": "it"
+ },
+ {
+ "id": 221,
+ "start": 89.94,
+ "end": 90.22,
+ "text": "before"
+ },
+ {
+ "id": 222,
+ "start": 90.22,
+ "end": 90.59,
+ "text": "anyone"
+ },
+ {
+ "id": 223,
+ "start": 90.59,
+ "end": 90.94,
+ "text": "sees"
+ },
+ {
+ "id": 224,
+ "start": 91.185,
+ "end": 91.445,
+ "text": "it."
+ },
+ {
+ "id": 225,
+ "start": 91.78,
+ "end": 91.95,
+ "text": "And"
+ },
+ {
+ "id": 226,
+ "start": 91.95,
+ "end": 92.03,
+ "text": "we"
+ },
+ {
+ "id": 227,
+ "start": 92.03,
+ "end": 92.16,
+ "text": "can"
+ },
+ {
+ "id": 228,
+ "start": 92.16,
+ "end": 92.35,
+ "text": "just"
+ },
+ {
+ "id": 229,
+ "start": 92.35,
+ "end": 92.59,
+ "text": "take"
+ },
+ {
+ "id": 230,
+ "start": 92.59,
+ "end": 93.18,
+ "text": "down"
+ },
+ {
+ "id": 231,
+ "start": 93.18,
+ "end": 93.59,
+ "text": "more"
+ },
+ {
+ "id": 232,
+ "start": 93.59,
+ "end": 93.86,
+ "text": "bad"
+ },
+ {
+ "id": 233,
+ "start": 93.86,
+ "end": 95,
+ "text": "content."
+ },
+ {
+ "id": 234,
+ "start": 95,
+ "end": 95.28,
+ "text": "How"
+ },
+ {
+ "id": 235,
+ "start": 95.28,
+ "end": 95.51,
+ "text": "far"
+ },
+ {
+ "id": 236,
+ "start": 95.51,
+ "end": 95.8,
+ "text": "along"
+ },
+ {
+ "id": 237,
+ "start": 95.8,
+ "end": 95.86,
+ "text": "are"
+ },
+ {
+ "id": 238,
+ "start": 95.86,
+ "end": 96.04,
+ "text": "you"
+ },
+ {
+ "id": 239,
+ "start": 96.04,
+ "end": 96.12,
+ "text": "in"
+ },
+ {
+ "id": 240,
+ "start": 96.12,
+ "end": 96.68,
+ "text": "developing"
+ },
+ {
+ "id": 241,
+ "start": 96.68,
+ "end": 96.9,
+ "text": "that"
+ },
+ {
+ "id": 242,
+ "start": 96.9,
+ "end": 97.19,
+ "text": "tool"
+ },
+ {
+ "id": 243,
+ "start": 97.19,
+ "end": 97.37,
+ "text": "for"
+ },
+ {
+ "id": 244,
+ "start": 97.545,
+ "end": 97.69,
+ "text": "instance."
+ },
+ {
+ "id": 245,
+ "start": 97.9,
+ "end": 98.01,
+ "text": "The"
+ },
+ {
+ "id": 246,
+ "start": 98.01,
+ "end": 98.26,
+ "text": "tool"
+ },
+ {
+ "id": 247,
+ "start": 98.26,
+ "end": 98.35,
+ "text": "to"
+ },
+ {
+ "id": 248,
+ "start": 98.35,
+ "end": 99.44,
+ "text": "proactively"
+ },
+ {
+ "id": 249,
+ "start": 99.44,
+ "end": 99.81,
+ "text": "find"
+ },
+ {
+ "id": 250,
+ "start": 99.81,
+ "end": 100.03,
+ "text": "bad"
+ },
+ {
+ "id": 251,
+ "start": 100.42499999999998,
+ "end": 101.01000000000002,
+ "text": "content?"
+ },
+ {
+ "id": 252,
+ "start": 101.04,
+ "end": 101.99,
+ "text": "So"
+ },
+ {
+ "id": 253,
+ "start": 101.99,
+ "end": 102.23,
+ "text": "the"
+ },
+ {
+ "id": 254,
+ "start": 102.23,
+ "end": 102.36,
+ "text": "way"
+ },
+ {
+ "id": 255,
+ "start": 102.36,
+ "end": 102.86,
+ "text": "artificial"
+ },
+ {
+ "id": 256,
+ "start": 102.86,
+ "end": 103.86,
+ "text": "intelligence"
+ },
+ {
+ "id": 257,
+ "start": 103.86,
+ "end": 104.39,
+ "text": "works"
+ },
+ {
+ "id": 258,
+ "start": 104.39,
+ "end": 104.97,
+ "text": "broadly"
+ },
+ {
+ "id": 259,
+ "start": 104.97,
+ "end": 105.45,
+ "text": "is"
+ },
+ {
+ "id": 260,
+ "start": 105.45,
+ "end": 105.71,
+ "text": "it’s"
+ },
+ {
+ "id": 261,
+ "start": 105.71,
+ "end": 106.38,
+ "text": "a"
+ },
+ {
+ "id": 262,
+ "start": 106.38,
+ "end": 107.07,
+ "text": "system"
+ },
+ {
+ "id": 263,
+ "start": 107.07,
+ "end": 107.36,
+ "text": "that"
+ },
+ {
+ "id": 264,
+ "start": 107.36,
+ "end": 108.14,
+ "text": "learns"
+ },
+ {
+ "id": 265,
+ "start": 108.14,
+ "end": 108.33,
+ "text": "by"
+ },
+ {
+ "id": 266,
+ "start": 108.33,
+ "end": 109.49,
+ "text": "example."
+ },
+ {
+ "id": 267,
+ "start": 109.49,
+ "end": 110.24,
+ "text": "And"
+ },
+ {
+ "id": 268,
+ "start": 110.24,
+ "end": 110.86,
+ "text": "we’re"
+ },
+ {
+ "id": 269,
+ "start": 110.86,
+ "end": 111.13,
+ "text": "kind"
+ },
+ {
+ "id": 270,
+ "start": 111.13,
+ "end": 111.47,
+ "text": "of"
+ },
+ {
+ "id": 271,
+ "start": 111.47,
+ "end": 112.38,
+ "text": "fortunate,"
+ },
+ {
+ "id": 272,
+ "start": 112.3,
+ "end": 112.57,
+ "text": "in"
+ },
+ {
+ "id": 273,
+ "start": 112.485,
+ "end": 112.845,
+ "text": "a"
+ },
+ {
+ "id": 274,
+ "start": 112.67,
+ "end": 113.12,
+ "text": "sense,"
+ },
+ {
+ "id": 275,
+ "start": 113.12,
+ "end": 113.4,
+ "text": "that"
+ },
+ {
+ "id": 276,
+ "start": 113.4,
+ "end": 113.62,
+ "text": "we"
+ },
+ {
+ "id": 277,
+ "start": 113.62,
+ "end": 113.95,
+ "text": "have"
+ },
+ {
+ "id": 278,
+ "start": 113.95,
+ "end": 114.3,
+ "text": "millions"
+ },
+ {
+ "id": 279,
+ "start": 114.3,
+ "end": 114.42,
+ "text": "of"
+ },
+ {
+ "id": 280,
+ "start": 114.42,
+ "end": 114.86,
+ "text": "reports"
+ },
+ {
+ "id": 281,
+ "start": 114.86,
+ "end": 115.14,
+ "text": "coming"
+ },
+ {
+ "id": 282,
+ "start": 115.14,
+ "end": 115.41,
+ "text": "in"
+ },
+ {
+ "id": 283,
+ "start": 115.41,
+ "end": 115.74,
+ "text": "every"
+ },
+ {
+ "id": 284,
+ "start": 115.74,
+ "end": 116.24,
+ "text": "week"
+ },
+ {
+ "id": 285,
+ "start": 116.10333333333334,
+ "end": 116.64666666666666,
+ "text": "from"
+ },
+ {
+ "id": 286,
+ "start": 116.46666666666667,
+ "end": 117.05333333333333,
+ "text": "our"
+ },
+ {
+ "id": 287,
+ "start": 116.83,
+ "end": 117.46,
+ "text": "community"
+ },
+ {
+ "id": 288,
+ "start": 117.46,
+ "end": 117.6,
+ "text": "and"
+ },
+ {
+ "id": 289,
+ "start": 117.6,
+ "end": 117.7,
+ "text": "we"
+ },
+ {
+ "id": 290,
+ "start": 117.7,
+ "end": 117.85,
+ "text": "have"
+ },
+ {
+ "id": 291,
+ "start": 117.85,
+ "end": 117.91,
+ "text": "the"
+ },
+ {
+ "id": 292,
+ "start": 117.91,
+ "end": 118.76,
+ "text": "corresponding"
+ },
+ {
+ "id": 293,
+ "start": 118.76,
+ "end": 119.47,
+ "text": "decisions"
+ },
+ {
+ "id": 294,
+ "start": 119.47,
+ "end": 119.88,
+ "text": "made"
+ },
+ {
+ "id": 295,
+ "start": 119.88,
+ "end": 120.1,
+ "text": "by"
+ },
+ {
+ "id": 296,
+ "start": 120.1,
+ "end": 120.33,
+ "text": "our"
+ },
+ {
+ "id": 297,
+ "start": 120.33,
+ "end": 120.61,
+ "text": "review"
+ },
+ {
+ "id": 298,
+ "start": 120.61,
+ "end": 121.42,
+ "text": "team."
+ },
+ {
+ "id": 299,
+ "start": 121.42,
+ "end": 121.65,
+ "text": "And"
+ },
+ {
+ "id": 300,
+ "start": 121.65,
+ "end": 121.78,
+ "text": "so"
+ },
+ {
+ "id": 301,
+ "start": 121.78,
+ "end": 121.89,
+ "text": "we"
+ },
+ {
+ "id": 302,
+ "start": 121.89,
+ "end": 122.09,
+ "text": "can"
+ },
+ {
+ "id": 303,
+ "start": 122.09,
+ "end": 122.4,
+ "text": "use"
+ },
+ {
+ "id": 304,
+ "start": 122.4,
+ "end": 122.9,
+ "text": "those"
+ },
+ {
+ "id": 305,
+ "start": 122.9,
+ "end": 123.04,
+ "text": "to"
+ },
+ {
+ "id": 306,
+ "start": 123.04,
+ "end": 123.37,
+ "text": "try"
+ },
+ {
+ "id": 307,
+ "start": 123.37,
+ "end": 124.09,
+ "text": "and"
+ },
+ {
+ "id": 308,
+ "start": 124.09,
+ "end": 124.67,
+ "text": "train,"
+ },
+ {
+ "id": 309,
+ "start": 124.67,
+ "end": 125.34,
+ "text": "as"
+ },
+ {
+ "id": 310,
+ "start": 125.34,
+ "end": 125.46,
+ "text": "it’s"
+ },
+ {
+ "id": 311,
+ "start": 125.46,
+ "end": 125.88,
+ "text": "called,"
+ },
+ {
+ "id": 312,
+ "start": 125.88,
+ "end": 126.83,
+ "text": "train"
+ },
+ {
+ "id": 313,
+ "start": 126.83,
+ "end": 127.1,
+ "text": "the"
+ },
+ {
+ "id": 314,
+ "start": 127.1,
+ "end": 127.83,
+ "text": "system"
+ },
+ {
+ "id": 315,
+ "start": 127.83,
+ "end": 127.96,
+ "text": "to"
+ },
+ {
+ "id": 316,
+ "start": 127.96,
+ "end": 128.16,
+ "text": "try"
+ },
+ {
+ "id": 317,
+ "start": 128.16,
+ "end": 128.25,
+ "text": "to"
+ },
+ {
+ "id": 318,
+ "start": 128.25,
+ "end": 128.85,
+ "text": "proactively"
+ },
+ {
+ "id": 319,
+ "start": 128.85,
+ "end": 129.34,
+ "text": "detect"
+ },
+ {
+ "id": 320,
+ "start": 129.34,
+ "end": 129.75,
+ "text": "similar"
+ },
+ {
+ "id": 321,
+ "start": 129.75,
+ "end": 130,
+ "text": "kinds"
+ },
+ {
+ "id": 322,
+ "start": 130,
+ "end": 130.08,
+ "text": "of"
+ },
+ {
+ "id": 323,
+ "start": 130.08,
+ "end": 131.02,
+ "text": "content."
+ },
+ {
+ "id": 324,
+ "start": 131.02,
+ "end": 131.26,
+ "text": "And"
+ },
+ {
+ "id": 325,
+ "start": 131.26,
+ "end": 131.38,
+ "text": "we’re"
+ },
+ {
+ "id": 326,
+ "start": 131.38,
+ "end": 131.6,
+ "text": "seeing"
+ },
+ {
+ "id": 327,
+ "start": 131.6,
+ "end": 131.74,
+ "text": "that"
+ },
+ {
+ "id": 328,
+ "start": 131.74,
+ "end": 131.84,
+ "text": "in"
+ },
+ {
+ "id": 329,
+ "start": 131.84,
+ "end": 132.11,
+ "text": "some"
+ },
+ {
+ "id": 330,
+ "start": 132.11,
+ "end": 132.64,
+ "text": "areas"
+ },
+ {
+ "id": 331,
+ "start": 132.64,
+ "end": 132.78,
+ "text": "it"
+ },
+ {
+ "id": 332,
+ "start": 132.78,
+ "end": 132.9,
+ "text": "is"
+ },
+ {
+ "id": 333,
+ "start": 132.9,
+ "end": 133.33,
+ "text": "working"
+ },
+ {
+ "id": 334,
+ "start": 133.33,
+ "end": 133.58,
+ "text": "very"
+ },
+ {
+ "id": 335,
+ "start": 133.56666666666666,
+ "end": 133.7866666666667,
+ "text": "well"
+ },
+ {
+ "id": 336,
+ "start": 133.80333333333334,
+ "end": 133.99333333333334,
+ "text": "and"
+ },
+ {
+ "id": 337,
+ "start": 134.04,
+ "end": 134.2,
+ "text": "in"
+ },
+ {
+ "id": 338,
+ "start": 134.2,
+ "end": 134.48,
+ "text": "other"
+ },
+ {
+ "id": 339,
+ "start": 134.48,
+ "end": 135.51,
+ "text": "areas"
+ },
+ {
+ "id": 340,
+ "start": 135.51,
+ "end": 135.67,
+ "text": "we"
+ },
+ {
+ "id": 341,
+ "start": 135.67,
+ "end": 135.79,
+ "text": "have"
+ },
+ {
+ "id": 342,
+ "start": 135.79,
+ "end": 135.92,
+ "text": "been"
+ },
+ {
+ "id": 343,
+ "start": 135.92,
+ "end": 136.33,
+ "text": "making"
+ },
+ {
+ "id": 344,
+ "start": 136.33,
+ "end": 136.63,
+ "text": "steady"
+ },
+ {
+ "id": 345,
+ "start": 136.63,
+ "end": 137.39,
+ "text": "progress."
+ },
+ {
+ "id": 346,
+ "start": 137.39,
+ "end": 137.61,
+ "text": "So"
+ },
+ {
+ "id": 347,
+ "start": 137.61,
+ "end": 137.78,
+ "text": "for"
+ },
+ {
+ "id": 348,
+ "start": 137.78,
+ "end": 138.97,
+ "text": "example,"
+ },
+ {
+ "id": 349,
+ "start": 138.97,
+ "end": 139.37,
+ "text": "areas"
+ },
+ {
+ "id": 350,
+ "start": 139.37,
+ "end": 139.61,
+ "text": "such"
+ },
+ {
+ "id": 351,
+ "start": 139.61,
+ "end": 140.22,
+ "text": "as"
+ },
+ {
+ "id": 352,
+ "start": 140.22,
+ "end": 140.94,
+ "text": "nudity"
+ },
+ {
+ "id": 353,
+ "start": 140.94,
+ "end": 141.52,
+ "text": "or"
+ },
+ {
+ "id": 354,
+ "start": 141.52,
+ "end": 142.03,
+ "text": "graphic"
+ },
+ {
+ "id": 355,
+ "start": 142.03,
+ "end": 143.03,
+ "text": "violence,"
+ },
+ {
+ "id": 356,
+ "start": 143.03,
+ "end": 143.53,
+ "text": "where"
+ },
+ {
+ "id": 357,
+ "start": 143.53,
+ "end": 144.25,
+ "text": "years"
+ },
+ {
+ "id": 358,
+ "start": 144.25,
+ "end": 144.69,
+ "text": "of"
+ },
+ {
+ "id": 359,
+ "start": 144.69,
+ "end": 145.31,
+ "text": "research"
+ },
+ {
+ "id": 360,
+ "start": 145.31,
+ "end": 145.7,
+ "text": "into"
+ },
+ {
+ "id": 361,
+ "start": 145.7,
+ "end": 146.1,
+ "text": "computer"
+ },
+ {
+ "id": 362,
+ "start": 146.1,
+ "end": 146.98,
+ "text": "vision"
+ },
+ {
+ "id": 363,
+ "start": 146.98,
+ "end": 147.17,
+ "text": "are"
+ },
+ {
+ "id": 364,
+ "start": 147.17,
+ "end": 147.78,
+ "text": "actually"
+ },
+ {
+ "id": 365,
+ "start": 147.78,
+ "end": 148.16,
+ "text": "showing"
+ },
+ {
+ "id": 366,
+ "start": 148.16,
+ "end": 148.22,
+ "text": "a"
+ },
+ {
+ "id": 367,
+ "start": 148.22,
+ "end": 148.37,
+ "text": "lot"
+ },
+ {
+ "id": 368,
+ "start": 148.37,
+ "end": 148.47,
+ "text": "of"
+ },
+ {
+ "id": 369,
+ "start": 148.845,
+ "end": 149.155,
+ "text": "fruit."
+ },
+ {
+ "id": 370,
+ "start": 149.32,
+ "end": 149.84,
+ "text": "And"
+ },
+ {
+ "id": 371,
+ "start": 149.84,
+ "end": 150.14,
+ "text": "for"
+ },
+ {
+ "id": 372,
+ "start": 150.14,
+ "end": 150.91,
+ "text": "example,"
+ },
+ {
+ "id": 373,
+ "start": 150.76,
+ "end": 151.54,
+ "text": "on"
+ },
+ {
+ "id": 374,
+ "start": 151.38,
+ "end": 152.17000000000002,
+ "text": "nudity,"
+ },
+ {
+ "id": 375,
+ "start": 152,
+ "end": 152.8,
+ "text": "96"
+ },
+ {
+ "id": 376,
+ "start": 152.62,
+ "end": 153.43,
+ "text": "percent"
+ },
+ {
+ "id": 377,
+ "start": 153.43,
+ "end": 153.64,
+ "text": "of"
+ },
+ {
+ "id": 378,
+ "start": 153.64,
+ "end": 153.73,
+ "text": "the"
+ },
+ {
+ "id": 379,
+ "start": 153.73,
+ "end": 154.22,
+ "text": "nudity"
+ },
+ {
+ "id": 380,
+ "start": 154.22,
+ "end": 154.7,
+ "text": "that"
+ },
+ {
+ "id": 381,
+ "start": 154.7,
+ "end": 154.97,
+ "text": "we"
+ },
+ {
+ "id": 382,
+ "start": 154.97,
+ "end": 155.63,
+ "text": "remove"
+ },
+ {
+ "id": 383,
+ "start": 155.63,
+ "end": 155.8,
+ "text": "is"
+ },
+ {
+ "id": 384,
+ "start": 155.8,
+ "end": 156.13,
+ "text": "actually"
+ },
+ {
+ "id": 385,
+ "start": 156.13,
+ "end": 157.29,
+ "text": "identified"
+ },
+ {
+ "id": 386,
+ "start": 157.29,
+ "end": 157.44,
+ "text": "by"
+ },
+ {
+ "id": 387,
+ "start": 157.44,
+ "end": 157.56,
+ "text": "our"
+ },
+ {
+ "id": 388,
+ "start": 159.8449999999999,
+ "end": 160.115,
+ "text": "systems."
+ },
+ {
+ "id": 389,
+ "start": 162.25,
+ "end": 162.67,
+ "text": "Terrorist"
+ },
+ {
+ "id": 390,
+ "start": 162.67,
+ "end": 163.21,
+ "text": "propaganda,"
+ },
+ {
+ "id": 391,
+ "start": 162.73,
+ "end": 163.22444444444446,
+ "text": "over"
+ },
+ {
+ "id": 392,
+ "start": 162.79,
+ "end": 163.2388888888889,
+ "text": "99"
+ },
+ {
+ "id": 393,
+ "start": 162.85,
+ "end": 163.25333333333336,
+ "text": "percent"
+ },
+ {
+ "id": 394,
+ "start": 162.91,
+ "end": 163.26777777777778,
+ "text": "of"
+ },
+ {
+ "id": 395,
+ "start": 162.97,
+ "end": 163.28222222222223,
+ "text": "the"
+ },
+ {
+ "id": 396,
+ "start": 163.03,
+ "end": 163.29666666666668,
+ "text": "terrorist"
+ },
+ {
+ "id": 397,
+ "start": 163.09,
+ "end": 163.31111111111113,
+ "text": "propaganda"
+ },
+ {
+ "id": 398,
+ "start": 163.15,
+ "end": 163.32555555555558,
+ "text": "that"
+ },
+ {
+ "id": 399,
+ "start": 163.21,
+ "end": 163.34,
+ "text": "we"
+ },
+ {
+ "id": 400,
+ "start": 163.34,
+ "end": 163.57,
+ "text": "take"
+ },
+ {
+ "id": 401,
+ "start": 163.57,
+ "end": 164.34,
+ "text": "down"
+ },
+ {
+ "id": 402,
+ "start": 164.34,
+ "end": 164.52,
+ "text": "is"
+ },
+ {
+ "id": 403,
+ "start": 164.52,
+ "end": 165.35,
+ "text": "identified"
+ },
+ {
+ "id": 404,
+ "start": 165.35,
+ "end": 165.52,
+ "text": "by"
+ },
+ {
+ "id": 405,
+ "start": 165.52,
+ "end": 165.61,
+ "text": "our"
+ },
+ {
+ "id": 406,
+ "start": 165.935,
+ "end": 166.06,
+ "text": "systems."
+ },
+ {
+ "id": 407,
+ "start": 166.35,
+ "end": 166.51,
+ "text": "So"
+ },
+ {
+ "id": 408,
+ "start": 166.51,
+ "end": 166.7,
+ "text": "that’s"
+ },
+ {
+ "id": 409,
+ "start": 166.7,
+ "end": 167.24,
+ "text": "before"
+ },
+ {
+ "id": 410,
+ "start": 167.24,
+ "end": 167.66,
+ "text": "anyone"
+ },
+ {
+ "id": 411,
+ "start": 167.66,
+ "end": 167.91,
+ "text": "even"
+ },
+ {
+ "id": 412,
+ "start": 167.91,
+ "end": 168.32,
+ "text": "reports"
+ },
+ {
+ "id": 413,
+ "start": 168.32,
+ "end": 169.31,
+ "text": "it."
+ },
+ {
+ "id": 414,
+ "start": 169.31,
+ "end": 171.02,
+ "text": "The"
+ },
+ {
+ "id": 415,
+ "start": 171.02,
+ "end": 171.82,
+ "text": "areas"
+ },
+ {
+ "id": 416,
+ "start": 171.82,
+ "end": 172.31,
+ "text": "like"
+ },
+ {
+ "id": 417,
+ "start": 172.31,
+ "end": 172.59,
+ "text": "hate"
+ },
+ {
+ "id": 418,
+ "start": 172.59,
+ "end": 172.85,
+ "text": "speech,"
+ },
+ {
+ "id": 419,
+ "start": 172.85,
+ "end": 172.96,
+ "text": "for"
+ },
+ {
+ "id": 420,
+ "start": 172.96,
+ "end": 173.51,
+ "text": "example,"
+ },
+ {
+ "id": 421,
+ "start": 173.51,
+ "end": 174.14,
+ "text": "are"
+ },
+ {
+ "id": 422,
+ "start": 174.14,
+ "end": 174.34,
+ "text": "more"
+ },
+ {
+ "id": 423,
+ "start": 174.34,
+ "end": 175.02,
+ "text": "complex"
+ },
+ {
+ "id": 424,
+ "start": 175.02,
+ "end": 175.32,
+ "text": "because"
+ },
+ {
+ "id": 425,
+ "start": 175.32,
+ "end": 175.79,
+ "text": "machines"
+ },
+ {
+ "id": 426,
+ "start": 175.79,
+ "end": 176.06,
+ "text": "aren’t"
+ },
+ {
+ "id": 427,
+ "start": 176.06,
+ "end": 176.41,
+ "text": "always"
+ },
+ {
+ "id": 428,
+ "start": 176.41,
+ "end": 176.59,
+ "text": "that"
+ },
+ {
+ "id": 429,
+ "start": 176.59,
+ "end": 176.79,
+ "text": "good"
+ },
+ {
+ "id": 430,
+ "start": 176.79,
+ "end": 176.87,
+ "text": "at"
+ },
+ {
+ "id": 431,
+ "start": 176.87,
+ "end": 177.49,
+ "text": "understanding"
+ },
+ {
+ "id": 432,
+ "start": 177.49,
+ "end": 178.31,
+ "text": "the"
+ },
+ {
+ "id": 433,
+ "start": 177.69,
+ "end": 179.02,
+ "text": "nuances"
+ },
+ {
+ "id": 434,
+ "start": 178.40499999999997,
+ "end": 179.10999999999999,
+ "text": "and"
+ },
+ {
+ "id": 435,
+ "start": 179.12,
+ "end": 179.2,
+ "text": "the"
+ },
+ {
+ "id": 436,
+ "start": 179.2,
+ "end": 180.09,
+ "text": "context"
+ },
+ {
+ "id": 437,
+ "start": 180.09,
+ "end": 180.88,
+ "text": "of"
+ },
+ {
+ "id": 438,
+ "start": 180.88,
+ "end": 181.9,
+ "text": "language."
+ },
+ {
+ "id": 439,
+ "start": 181.9,
+ "end": 182.16,
+ "text": "And"
+ },
+ {
+ "id": 440,
+ "start": 182.16,
+ "end": 182.64,
+ "text": "so"
+ },
+ {
+ "id": 441,
+ "start": 182.64,
+ "end": 182.8,
+ "text": "we’re"
+ },
+ {
+ "id": 442,
+ "start": 182.8,
+ "end": 183.14,
+ "text": "certainly"
+ },
+ {
+ "id": 443,
+ "start": 183.14,
+ "end": 183.31,
+ "text": "more"
+ },
+ {
+ "id": 444,
+ "start": 183.31,
+ "end": 183.85,
+ "text": "dependent"
+ },
+ {
+ "id": 445,
+ "start": 183.85,
+ "end": 184.11,
+ "text": "on"
+ },
+ {
+ "id": 446,
+ "start": 184.11,
+ "end": 184.98,
+ "text": "people"
+ },
+ {
+ "id": 447,
+ "start": 184.98,
+ "end": 185.09,
+ "text": "to"
+ },
+ {
+ "id": 448,
+ "start": 185.09,
+ "end": 185.38,
+ "text": "help"
+ },
+ {
+ "id": 449,
+ "start": 185.38,
+ "end": 185.49,
+ "text": "us"
+ },
+ {
+ "id": 450,
+ "start": 185.49,
+ "end": 185.68,
+ "text": "do"
+ },
+ {
+ "id": 451,
+ "start": 185.68,
+ "end": 185.89,
+ "text": "that"
+ },
+ {
+ "id": 452,
+ "start": 185.89,
+ "end": 186.16,
+ "text": "work,"
+ },
+ {
+ "id": 453,
+ "start": 186.16,
+ "end": 186.37,
+ "text": "whether"
+ },
+ {
+ "id": 454,
+ "start": 186.37,
+ "end": 186.49,
+ "text": "it’s"
+ },
+ {
+ "id": 455,
+ "start": 186.49,
+ "end": 186.76,
+ "text": "people"
+ },
+ {
+ "id": 456,
+ "start": 186.76,
+ "end": 186.9,
+ "text": "who"
+ },
+ {
+ "id": 457,
+ "start": 186.9,
+ "end": 187.26,
+ "text": "report"
+ },
+ {
+ "id": 458,
+ "start": 187.26,
+ "end": 187.64,
+ "text": "content"
+ },
+ {
+ "id": 459,
+ "start": 187.64,
+ "end": 187.71,
+ "text": "to"
+ },
+ {
+ "id": 460,
+ "start": 187.71,
+ "end": 188.42,
+ "text": "us,"
+ },
+ {
+ "id": 461,
+ "start": 188.42,
+ "end": 188.7,
+ "text": "whether"
+ },
+ {
+ "id": 462,
+ "start": 188.7,
+ "end": 188.85,
+ "text": "it’s"
+ },
+ {
+ "id": 463,
+ "start": 188.85,
+ "end": 189.29,
+ "text": "people"
+ },
+ {
+ "id": 464,
+ "start": 189.29,
+ "end": 190.09,
+ "text": "who"
+ },
+ {
+ "id": 465,
+ "start": 190.09,
+ "end": 191.24,
+ "text": "review"
+ },
+ {
+ "id": 466,
+ "start": 191.24,
+ "end": 191.43,
+ "text": "that"
+ },
+ {
+ "id": 467,
+ "start": 191.43,
+ "end": 192.02,
+ "text": "content."
+ },
+ {
+ "id": 468,
+ "start": 192.02,
+ "end": 192.21,
+ "text": "So"
+ },
+ {
+ "id": 469,
+ "start": 192.21,
+ "end": 192.3,
+ "text": "on"
+ },
+ {
+ "id": 470,
+ "start": 192.3,
+ "end": 192.56,
+ "text": "hate"
+ },
+ {
+ "id": 471,
+ "start": 192.54500000000002,
+ "end": 192.74,
+ "text": "speech,"
+ },
+ {
+ "id": 472,
+ "start": 192.79,
+ "end": 192.92,
+ "text": "for"
+ },
+ {
+ "id": 473,
+ "start": 192.92,
+ "end": 193.98,
+ "text": "example,"
+ },
+ {
+ "id": 474,
+ "start": 193.98,
+ "end": 194.17,
+ "text": "in"
+ },
+ {
+ "id": 475,
+ "start": 194.17,
+ "end": 194.33,
+ "text": "the"
+ },
+ {
+ "id": 476,
+ "start": 194.33,
+ "end": 194.64,
+ "text": "last"
+ },
+ {
+ "id": 477,
+ "start": 194.64,
+ "end": 195.22,
+ "text": "quarter"
+ },
+ {
+ "id": 478,
+ "start": 195.21,
+ "end": 195.79,
+ "text": "of"
+ },
+ {
+ "id": 479,
+ "start": 196.51666666666665,
+ "end": 197.12666666666667,
+ "text": "2017,"
+ },
+ {
+ "id": 480,
+ "start": 197.82333333333338,
+ "end": 198.46333333333337,
+ "text": "23"
+ },
+ {
+ "id": 481,
+ "start": 199.13,
+ "end": 199.8,
+ "text": "percent"
+ },
+ {
+ "id": 482,
+ "start": 199.8,
+ "end": 200.14,
+ "text": "of"
+ },
+ {
+ "id": 483,
+ "start": 200.14,
+ "end": 201.53,
+ "text": "that"
+ },
+ {
+ "id": 484,
+ "start": 201.53,
+ "end": 201.92,
+ "text": "content"
+ },
+ {
+ "id": 485,
+ "start": 201.92,
+ "end": 202.06,
+ "text": "that"
+ },
+ {
+ "id": 486,
+ "start": 202.06,
+ "end": 202.17,
+ "text": "we"
+ },
+ {
+ "id": 487,
+ "start": 202.17,
+ "end": 202.38,
+ "text": "took"
+ },
+ {
+ "id": 488,
+ "start": 202.38,
+ "end": 203.22,
+ "text": "down"
+ },
+ {
+ "id": 489,
+ "start": 203.22,
+ "end": 203.45,
+ "text": "was"
+ },
+ {
+ "id": 490,
+ "start": 203.45,
+ "end": 203.88,
+ "text": "flagged"
+ },
+ {
+ "id": 491,
+ "start": 203.88,
+ "end": 204,
+ "text": "by"
+ },
+ {
+ "id": 492,
+ "start": 204,
+ "end": 204.09,
+ "text": "our"
+ },
+ {
+ "id": 493,
+ "start": 204.09,
+ "end": 205.28,
+ "text": "systems."
+ },
+ {
+ "id": 494,
+ "start": 205.28,
+ "end": 205.45,
+ "text": "In"
+ },
+ {
+ "id": 495,
+ "start": 205.45,
+ "end": 205.67,
+ "text": "the"
+ },
+ {
+ "id": 496,
+ "start": 205.67,
+ "end": 206,
+ "text": "first"
+ },
+ {
+ "id": 497,
+ "start": 206,
+ "end": 206.51,
+ "text": "quarter"
+ },
+ {
+ "id": 498,
+ "start": 206.5,
+ "end": 206.82,
+ "text": "of"
+ },
+ {
+ "id": 499,
+ "start": 207.125,
+ "end": 207.38,
+ "text": "2018,"
+ },
+ {
+ "id": 500,
+ "start": 207.75,
+ "end": 207.94,
+ "text": "that"
+ },
+ {
+ "id": 501,
+ "start": 207.94,
+ "end": 208.22,
+ "text": "number"
+ },
+ {
+ "id": 502,
+ "start": 208.22,
+ "end": 208.43,
+ "text": "went"
+ },
+ {
+ "id": 503,
+ "start": 208.43,
+ "end": 208.67,
+ "text": "up"
+ },
+ {
+ "id": 504,
+ "start": 208.66,
+ "end": 208.86,
+ "text": "to"
+ },
+ {
+ "id": 505,
+ "start": 209.01500000000001,
+ "end": 209.34,
+ "text": "38"
+ },
+ {
+ "id": 506,
+ "start": 209.37,
+ "end": 209.82,
+ "text": "percent."
+ },
+ {
+ "id": 507,
+ "start": 209.82,
+ "end": 209.96,
+ "text": "So"
+ },
+ {
+ "id": 508,
+ "start": 209.96,
+ "end": 210.12,
+ "text": "there"
+ },
+ {
+ "id": 509,
+ "start": 210.12,
+ "end": 210.25,
+ "text": "is"
+ },
+ {
+ "id": 510,
+ "start": 210.25,
+ "end": 210.61,
+ "text": "steady"
+ },
+ {
+ "id": 511,
+ "start": 210.61,
+ "end": 211.08,
+ "text": "progress"
+ },
+ {
+ "id": 512,
+ "start": 211.08,
+ "end": 211.8,
+ "text": "there."
+ },
+ {
+ "id": 513,
+ "start": 211.8,
+ "end": 211.94,
+ "text": "We"
+ },
+ {
+ "id": 514,
+ "start": 211.94,
+ "end": 212.17,
+ "text": "have"
+ },
+ {
+ "id": 515,
+ "start": 212.17,
+ "end": 212.38,
+ "text": "more"
+ },
+ {
+ "id": 516,
+ "start": 212.38,
+ "end": 212.58,
+ "text": "work"
+ },
+ {
+ "id": 517,
+ "start": 212.58,
+ "end": 212.7,
+ "text": "to"
+ },
+ {
+ "id": 518,
+ "start": 212.7,
+ "end": 212.91,
+ "text": "do"
+ },
+ {
+ "id": 519,
+ "start": 212.91,
+ "end": 213.08,
+ "text": "and"
+ },
+ {
+ "id": 520,
+ "start": 213.08,
+ "end": 213.18,
+ "text": "we"
+ },
+ {
+ "id": 521,
+ "start": 213.18,
+ "end": 213.36,
+ "text": "have"
+ },
+ {
+ "id": 522,
+ "start": 213.36,
+ "end": 213.49,
+ "text": "been"
+ },
+ {
+ "id": 523,
+ "start": 213.49,
+ "end": 213.77,
+ "text": "making"
+ },
+ {
+ "id": 524,
+ "start": 214.04333333333335,
+ "end": 214.33,
+ "text": "progress."
+ },
+ {
+ "id": 525,
+ "start": 214.5966666666667,
+ "end": 214.89000000000001,
+ "text": "And"
+ },
+ {
+ "id": 526,
+ "start": 215.15,
+ "end": 215.45,
+ "text": "that"
+ },
+ {
+ "id": 527,
+ "start": 215.45,
+ "end": 215.74,
+ "text": "means"
+ },
+ {
+ "id": 528,
+ "start": 215.74,
+ "end": 215.87,
+ "text": "if"
+ },
+ {
+ "id": 529,
+ "start": 215.87,
+ "end": 216.07,
+ "text": "only"
+ },
+ {
+ "id": 530,
+ "start": 216.17499999999998,
+ "end": 216.42499999999998,
+ "text": "38"
+ },
+ {
+ "id": 531,
+ "start": 216.48,
+ "end": 216.78,
+ "text": "percent"
+ },
+ {
+ "id": 532,
+ "start": 216.78,
+ "end": 216.84,
+ "text": "of"
+ },
+ {
+ "id": 533,
+ "start": 216.84,
+ "end": 216.91,
+ "text": "the"
+ },
+ {
+ "id": 534,
+ "start": 216.91,
+ "end": 217.45,
+ "text": "content’s"
+ },
+ {
+ "id": 535,
+ "start": 217.45,
+ "end": 217.62,
+ "text": "been"
+ },
+ {
+ "id": 536,
+ "start": 217.62,
+ "end": 217.98,
+ "text": "taken"
+ },
+ {
+ "id": 537,
+ "start": 217.98,
+ "end": 218.32,
+ "text": "down,"
+ },
+ {
+ "id": 538,
+ "start": 218.32,
+ "end": 218.94,
+ "text": "that"
+ },
+ {
+ "id": 539,
+ "start": 218.94,
+ "end": 219.08,
+ "text": "you"
+ },
+ {
+ "id": 540,
+ "start": 219.08,
+ "end": 219.29,
+ "text": "need"
+ },
+ {
+ "id": 541,
+ "start": 219.29,
+ "end": 220.42,
+ "text": "human"
+ },
+ {
+ "id": 542,
+ "start": 219.7,
+ "end": 221.13,
+ "text": "beings"
+ },
+ {
+ "id": 543,
+ "start": 220.58333333333331,
+ "end": 221.6033333333333,
+ "text": "then"
+ },
+ {
+ "id": 544,
+ "start": 221.46666666666664,
+ "end": 222.07666666666665,
+ "text": "to"
+ },
+ {
+ "id": 545,
+ "start": 222.35,
+ "end": 222.55,
+ "text": "deal"
+ },
+ {
+ "id": 546,
+ "start": 222.55,
+ "end": 222.7,
+ "text": "with"
+ },
+ {
+ "id": 547,
+ "start": 222.7,
+ "end": 222.78,
+ "text": "the"
+ },
+ {
+ "id": 548,
+ "start": 222.78,
+ "end": 223.07,
+ "text": "rest"
+ },
+ {
+ "id": 549,
+ "start": 223.07,
+ "end": 223.17,
+ "text": "of"
+ },
+ {
+ "id": 550,
+ "start": 223.36499999999998,
+ "end": 223.475,
+ "text": "it?"
+ },
+ {
+ "id": 551,
+ "start": 223.66,
+ "end": 223.78,
+ "text": "To"
+ },
+ {
+ "id": 552,
+ "start": 223.78,
+ "end": 223.87,
+ "text": "be"
+ },
+ {
+ "id": 553,
+ "start": 223.87,
+ "end": 224.78,
+ "text": "clear,"
+ },
+ {
+ "id": 554,
+ "start": 224.78,
+ "end": 224.98,
+ "text": "that"
+ },
+ {
+ "id": 555,
+ "start": 224.98,
+ "end": 225.27,
+ "text": "means"
+ },
+ {
+ "id": 556,
+ "start": 225.35,
+ "end": 225.675,
+ "text": "38"
+ },
+ {
+ "id": 557,
+ "start": 225.72,
+ "end": 226.08,
+ "text": "percent"
+ },
+ {
+ "id": 558,
+ "start": 226.08,
+ "end": 226.15,
+ "text": "of"
+ },
+ {
+ "id": 559,
+ "start": 226.15,
+ "end": 226.22,
+ "text": "the"
+ },
+ {
+ "id": 560,
+ "start": 226.22,
+ "end": 226.74,
+ "text": "content"
+ },
+ {
+ "id": 561,
+ "start": 226.74,
+ "end": 226.93,
+ "text": "that"
+ },
+ {
+ "id": 562,
+ "start": 226.93,
+ "end": 227.17,
+ "text": "was"
+ },
+ {
+ "id": 563,
+ "start": 227.17,
+ "end": 227.52,
+ "text": "taken"
+ },
+ {
+ "id": 564,
+ "start": 227.52,
+ "end": 228.17,
+ "text": "down"
+ },
+ {
+ "id": 565,
+ "start": 228.17,
+ "end": 228.46,
+ "text": "was"
+ },
+ {
+ "id": 566,
+ "start": 228.46,
+ "end": 228.9,
+ "text": "flagged"
+ },
+ {
+ "id": 567,
+ "start": 228.9,
+ "end": 229.04,
+ "text": "by"
+ },
+ {
+ "id": 568,
+ "start": 229.04,
+ "end": 229.16,
+ "text": "our"
+ },
+ {
+ "id": 569,
+ "start": 229.16,
+ "end": 230.19,
+ "text": "systems,"
+ },
+ {
+ "id": 570,
+ "start": 230.19,
+ "end": 230.34,
+ "text": "as"
+ },
+ {
+ "id": 571,
+ "start": 230.34,
+ "end": 230.67,
+ "text": "opposed"
+ },
+ {
+ "id": 572,
+ "start": 230.67,
+ "end": 230.74,
+ "text": "to"
+ },
+ {
+ "id": 573,
+ "start": 230.74,
+ "end": 230.84,
+ "text": "the"
+ },
+ {
+ "id": 574,
+ "start": 230.84,
+ "end": 231.13,
+ "text": "rest"
+ },
+ {
+ "id": 575,
+ "start": 231.13,
+ "end": 231.27,
+ "text": "which"
+ },
+ {
+ "id": 576,
+ "start": 231.27,
+ "end": 231.4,
+ "text": "was"
+ },
+ {
+ "id": 577,
+ "start": 231.4,
+ "end": 231.84,
+ "text": "reported"
+ },
+ {
+ "id": 578,
+ "start": 231.84,
+ "end": 231.99,
+ "text": "by"
+ },
+ {
+ "id": 579,
+ "start": 232.26,
+ "end": 232.425,
+ "text": "users."
+ },
+ {
+ "id": 580,
+ "start": 232.68,
+ "end": 232.86,
+ "text": "So"
+ },
+ {
+ "id": 581,
+ "start": 232.86,
+ "end": 233.07,
+ "text": "all"
+ },
+ {
+ "id": 582,
+ "start": 233.07,
+ "end": 233.14,
+ "text": "of"
+ },
+ {
+ "id": 583,
+ "start": 233.14,
+ "end": 233.21,
+ "text": "the"
+ },
+ {
+ "id": 584,
+ "start": 233.175,
+ "end": 233.56,
+ "text": "[problematic]"
+ },
+ {
+ "id": 585,
+ "start": 233.21,
+ "end": 233.91,
+ "text": "content"
+ },
+ {
+ "id": 586,
+ "start": 233.91,
+ "end": 234.09,
+ "text": "was"
+ },
+ {
+ "id": 587,
+ "start": 234.09,
+ "end": 234.41,
+ "text": "taken"
+ },
+ {
+ "id": 588,
+ "start": 234.41,
+ "end": 235.16,
+ "text": "down."
+ },
+ {
+ "id": 589,
+ "start": 235.16,
+ "end": 235.37,
+ "text": "And"
+ },
+ {
+ "id": 590,
+ "start": 235.37,
+ "end": 235.45,
+ "text": "the"
+ },
+ {
+ "id": 591,
+ "start": 235.45,
+ "end": 235.63,
+ "text": "way"
+ },
+ {
+ "id": 592,
+ "start": 235.63,
+ "end": 235.78,
+ "text": "we"
+ },
+ {
+ "id": 593,
+ "start": 235.78,
+ "end": 236.2,
+ "text": "measure"
+ },
+ {
+ "id": 594,
+ "start": 236.2,
+ "end": 236.35,
+ "text": "our"
+ },
+ {
+ "id": 595,
+ "start": 236.35,
+ "end": 237.29,
+ "text": "progress"
+ },
+ {
+ "id": 596,
+ "start": 237.29,
+ "end": 237.83,
+ "text": "on"
+ },
+ {
+ "id": 597,
+ "start": 237.83,
+ "end": 237.95,
+ "text": "the"
+ },
+ {
+ "id": 598,
+ "start": 237.95,
+ "end": 238.45,
+ "text": "artificial"
+ },
+ {
+ "id": 599,
+ "start": 238.45,
+ "end": 239.01,
+ "text": "intelligence"
+ },
+ {
+ "id": 600,
+ "start": 239.01,
+ "end": 239.51,
+ "text": "work"
+ },
+ {
+ "id": 601,
+ "start": 239.51,
+ "end": 239.67,
+ "text": "is"
+ },
+ {
+ "id": 602,
+ "start": 239.67,
+ "end": 239.75,
+ "text": "to"
+ },
+ {
+ "id": 603,
+ "start": 239.75,
+ "end": 240.24,
+ "text": "ask:"
+ },
+ {
+ "id": 604,
+ "start": 240.24,
+ "end": 240.5,
+ "text": "Of"
+ },
+ {
+ "id": 605,
+ "start": 240.5,
+ "end": 240.6,
+ "text": "the"
+ },
+ {
+ "id": 606,
+ "start": 240.6,
+ "end": 240.88,
+ "text": "things"
+ },
+ {
+ "id": 607,
+ "start": 240.88,
+ "end": 241,
+ "text": "that"
+ },
+ {
+ "id": 608,
+ "start": 241,
+ "end": 241.11,
+ "text": "we"
+ },
+ {
+ "id": 609,
+ "start": 241.11,
+ "end": 241.35,
+ "text": "take"
+ },
+ {
+ "id": 610,
+ "start": 241.675,
+ "end": 241.92,
+ "text": "down,"
+ },
+ {
+ "id": 611,
+ "start": 242.24,
+ "end": 242.49,
+ "text": "what"
+ },
+ {
+ "id": 612,
+ "start": 242.585,
+ "end": 242.77,
+ "text": "percentage"
+ },
+ {
+ "id": 613,
+ "start": 242.93,
+ "end": 243.05,
+ "text": "was"
+ },
+ {
+ "id": 614,
+ "start": 243.05,
+ "end": 243.82,
+ "text": "detected"
+ },
+ {
+ "id": 615,
+ "start": 243.82,
+ "end": 244.01,
+ "text": "by"
+ },
+ {
+ "id": 616,
+ "start": 244.01,
+ "end": 244.2,
+ "text": "our"
+ },
+ {
+ "id": 617,
+ "start": 244.2,
+ "end": 245.29,
+ "text": "systems"
+ },
+ {
+ "id": 618,
+ "start": 245.29,
+ "end": 245.58,
+ "text": "and"
+ },
+ {
+ "id": 619,
+ "start": 245.58,
+ "end": 245.82,
+ "text": "what"
+ },
+ {
+ "id": 620,
+ "start": 245.82,
+ "end": 246.22,
+ "text": "part"
+ },
+ {
+ "id": 621,
+ "start": 246.22,
+ "end": 246.38,
+ "text": "was"
+ },
+ {
+ "id": 622,
+ "start": 246.38,
+ "end": 246.58,
+ "text": "still"
+ },
+ {
+ "id": 623,
+ "start": 246.58,
+ "end": 247.18,
+ "text": "dependent"
+ },
+ {
+ "id": 624,
+ "start": 247.18,
+ "end": 247.34,
+ "text": "on"
+ },
+ {
+ "id": 625,
+ "start": 247.34,
+ "end": 247.9,
+ "text": "reports"
+ },
+ {
+ "id": 626,
+ "start": 247.9,
+ "end": 248.19,
+ "text": "coming"
+ },
+ {
+ "id": 627,
+ "start": 248.19,
+ "end": 248.31,
+ "text": "in"
+ },
+ {
+ "id": 628,
+ "start": 248.31,
+ "end": 248.5,
+ "text": "from"
+ },
+ {
+ "id": 629,
+ "start": 248.5,
+ "end": 249.44,
+ "text": "users?"
+ },
+ {
+ "id": 630,
+ "start": 249.44,
+ "end": 249.65,
+ "text": "And"
+ },
+ {
+ "id": 631,
+ "start": 249.65,
+ "end": 249.76,
+ "text": "we"
+ },
+ {
+ "id": 632,
+ "start": 249.76,
+ "end": 249.98,
+ "text": "know"
+ },
+ {
+ "id": 633,
+ "start": 249.98,
+ "end": 250.08,
+ "text": "we"
+ },
+ {
+ "id": 634,
+ "start": 250.08,
+ "end": 250.24,
+ "text": "need"
+ },
+ {
+ "id": 635,
+ "start": 250.24,
+ "end": 250.32,
+ "text": "to"
+ },
+ {
+ "id": 636,
+ "start": 250.32,
+ "end": 250.55,
+ "text": "keep"
+ },
+ {
+ "id": 637,
+ "start": 250.55,
+ "end": 250.82,
+ "text": "pushing"
+ },
+ {
+ "id": 638,
+ "start": 250.82,
+ "end": 250.97,
+ "text": "that"
+ },
+ {
+ "id": 639,
+ "start": 250.97,
+ "end": 251.27,
+ "text": "number"
+ },
+ {
+ "id": 640,
+ "start": 251.27,
+ "end": 251.65,
+ "text": "up"
+ },
+ {
+ "id": 641,
+ "start": 251.65,
+ "end": 251.94,
+ "text": "because"
+ },
+ {
+ "id": 642,
+ "start": 251.94,
+ "end": 252.11,
+ "text": "that"
+ },
+ {
+ "id": 643,
+ "start": 252.11,
+ "end": 252.31,
+ "text": "means"
+ },
+ {
+ "id": 644,
+ "start": 252.29333333333335,
+ "end": 252.56333333333333,
+ "text": "we"
+ },
+ {
+ "id": 645,
+ "start": 252.47666666666666,
+ "end": 252.81666666666666,
+ "text": "are"
+ },
+ {
+ "id": 646,
+ "start": 252.66,
+ "end": 253.07,
+ "text": "becoming"
+ },
+ {
+ "id": 647,
+ "start": 253.07,
+ "end": 253.27,
+ "text": "more"
+ },
+ {
+ "id": 648,
+ "start": 253.27,
+ "end": 254.37,
+ "text": "proactive"
+ },
+ {
+ "id": 649,
+ "start": 254.37,
+ "end": 254.54,
+ "text": "and"
+ },
+ {
+ "id": 650,
+ "start": 254.54,
+ "end": 254.63,
+ "text": "we"
+ },
+ {
+ "id": 651,
+ "start": 254.63,
+ "end": 254.75,
+ "text": "can"
+ },
+ {
+ "id": 652,
+ "start": 254.75,
+ "end": 254.9,
+ "text": "get"
+ },
+ {
+ "id": 653,
+ "start": 254.9,
+ "end": 255.17,
+ "text": "ahead"
+ },
+ {
+ "id": 654,
+ "start": 255.17,
+ "end": 255.26,
+ "text": "of"
+ },
+ {
+ "id": 655,
+ "start": 255.26,
+ "end": 256.24,
+ "text": "things."
+ },
+ {
+ "id": 656,
+ "start": 256.24,
+ "end": 256.5,
+ "text": "And"
+ },
+ {
+ "id": 657,
+ "start": 256.5,
+ "end": 256.57,
+ "text": "the"
+ },
+ {
+ "id": 658,
+ "start": 256.57,
+ "end": 256.76,
+ "text": "more"
+ },
+ {
+ "id": 659,
+ "start": 256.76,
+ "end": 257.26,
+ "text": "proactive"
+ },
+ {
+ "id": 660,
+ "start": 257.26,
+ "end": 257.39,
+ "text": "we"
+ },
+ {
+ "id": 661,
+ "start": 257.39,
+ "end": 257.86,
+ "text": "are"
+ },
+ {
+ "id": 662,
+ "start": 257.86,
+ "end": 257.98,
+ "text": "the"
+ },
+ {
+ "id": 663,
+ "start": 257.98,
+ "end": 258.4,
+ "text": "faster"
+ },
+ {
+ "id": 664,
+ "start": 258.4,
+ "end": 258.52,
+ "text": "we"
+ },
+ {
+ "id": 665,
+ "start": 258.52,
+ "end": 258.67,
+ "text": "can"
+ },
+ {
+ "id": 666,
+ "start": 258.67,
+ "end": 258.9,
+ "text": "take"
+ },
+ {
+ "id": 667,
+ "start": 258.9,
+ "end": 259.1,
+ "text": "down"
+ },
+ {
+ "id": 668,
+ "start": 259.1,
+ "end": 259.23,
+ "text": "that"
+ },
+ {
+ "id": 669,
+ "start": 259.23,
+ "end": 260.24,
+ "text": "content"
+ },
+ {
+ "id": 670,
+ "start": 260.24,
+ "end": 260.6,
+ "text": "before"
+ },
+ {
+ "id": 671,
+ "start": 260.6,
+ "end": 260.87,
+ "text": "anyone"
+ },
+ {
+ "id": 672,
+ "start": 260.87,
+ "end": 261.07,
+ "text": "else"
+ },
+ {
+ "id": 673,
+ "start": 261.07,
+ "end": 261.42,
+ "text": "reports"
+ },
+ {
+ "id": 674,
+ "start": 261.42,
+ "end": 261.92,
+ "text": "it,"
+ },
+ {
+ "id": 675,
+ "start": 261.92,
+ "end": 262.1,
+ "text": "and"
+ },
+ {
+ "id": 676,
+ "start": 262.1,
+ "end": 262.35,
+ "text": "even"
+ },
+ {
+ "id": 677,
+ "start": 262.35,
+ "end": 262.67,
+ "text": "before"
+ },
+ {
+ "id": 678,
+ "start": 262.67,
+ "end": 263.04,
+ "text": "anyone"
+ },
+ {
+ "id": 679,
+ "start": 263.04,
+ "end": 263.32,
+ "text": "sees"
+ },
+ {
+ "id": 680,
+ "start": 263.445,
+ "end": 263.67499999999995,
+ "text": "it."
+ },
+ {
+ "id": 681,
+ "start": 263.85,
+ "end": 264.03,
+ "text": "And"
+ },
+ {
+ "id": 682,
+ "start": 264.03,
+ "end": 264.12,
+ "text": "we"
+ },
+ {
+ "id": 683,
+ "start": 264.12,
+ "end": 264.26,
+ "text": "can"
+ },
+ {
+ "id": 684,
+ "start": 264.26,
+ "end": 264.49,
+ "text": "take"
+ },
+ {
+ "id": 685,
+ "start": 264.49,
+ "end": 264.73,
+ "text": "down"
+ },
+ {
+ "id": 686,
+ "start": 264.78999999999996,
+ "end": 265.03499999999997,
+ "text": "more"
+ },
+ {
+ "id": 687,
+ "start": 265.09,
+ "end": 265.34,
+ "text": "bad"
+ },
+ {
+ "id": 688,
+ "start": 265.61999999999995,
+ "end": 265.785,
+ "text": "content."
+ },
+ {
+ "id": 689,
+ "start": 266.15,
+ "end": 266.23,
+ "text": "I"
+ },
+ {
+ "id": 690,
+ "start": 266.23,
+ "end": 266.35,
+ "text": "mean"
+ },
+ {
+ "id": 691,
+ "start": 266.35,
+ "end": 266.42,
+ "text": "it"
+ },
+ {
+ "id": 692,
+ "start": 266.42,
+ "end": 266.54,
+ "text": "would"
+ },
+ {
+ "id": 693,
+ "start": 266.54,
+ "end": 267,
+ "text": "seem"
+ },
+ {
+ "id": 694,
+ "start": 267,
+ "end": 267.33,
+ "text": "rather"
+ },
+ {
+ "id": 695,
+ "start": 267.33,
+ "end": 267.82,
+ "text": "difficult,"
+ },
+ {
+ "id": 696,
+ "start": 267.82,
+ "end": 268.03,
+ "text": "even"
+ },
+ {
+ "id": 697,
+ "start": 268.03,
+ "end": 268.21,
+ "text": "for"
+ },
+ {
+ "id": 698,
+ "start": 268.21,
+ "end": 268.27,
+ "text": "a"
+ },
+ {
+ "id": 699,
+ "start": 268.27,
+ "end": 268.58,
+ "text": "human"
+ },
+ {
+ "id": 700,
+ "start": 268.58,
+ "end": 270.01,
+ "text": "being"
+ },
+ {
+ "id": 701,
+ "start": 270.01,
+ "end": 270.53,
+ "text": "content"
+ },
+ {
+ "id": 702,
+ "start": 270.53,
+ "end": 271.09,
+ "text": "moderator,"
+ },
+ {
+ "id": 703,
+ "start": 271.09,
+ "end": 271.22,
+ "text": "to"
+ },
+ {
+ "id": 704,
+ "start": 271.22,
+ "end": 271.57,
+ "text": "figure"
+ },
+ {
+ "id": 705,
+ "start": 271.57,
+ "end": 271.73,
+ "text": "out"
+ },
+ {
+ "id": 706,
+ "start": 271.73,
+ "end": 271.96,
+ "text": "what"
+ },
+ {
+ "id": 707,
+ "start": 271.96,
+ "end": 272.17,
+ "text": "is"
+ },
+ {
+ "id": 708,
+ "start": 272.17,
+ "end": 272.28,
+ "text": "or"
+ },
+ {
+ "id": 709,
+ "start": 272.28,
+ "end": 272.45,
+ "text": "what"
+ },
+ {
+ "id": 710,
+ "start": 272.45,
+ "end": 272.58,
+ "text": "is"
+ },
+ {
+ "id": 711,
+ "start": 272.58,
+ "end": 272.81,
+ "text": "not"
+ },
+ {
+ "id": 712,
+ "start": 272.81,
+ "end": 273.04,
+ "text": "hate"
+ },
+ {
+ "id": 713,
+ "start": 273.04,
+ "end": 273.84,
+ "text": "speech,"
+ },
+ {
+ "id": 714,
+ "start": 273.84,
+ "end": 274.42,
+ "text": "especially"
+ },
+ {
+ "id": 715,
+ "start": 274.42,
+ "end": 274.74,
+ "text": "when"
+ },
+ {
+ "id": 716,
+ "start": 274.74,
+ "end": 274.92,
+ "text": "you’re"
+ },
+ {
+ "id": 717,
+ "start": 274.92,
+ "end": 275.4,
+ "text": "operating"
+ },
+ {
+ "id": 718,
+ "start": 275.4,
+ "end": 275.67,
+ "text": "in"
+ },
+ {
+ "id": 719,
+ "start": 275.67,
+ "end": 275.93,
+ "text": "so"
+ },
+ {
+ "id": 720,
+ "start": 275.93,
+ "end": 276.11,
+ "text": "many"
+ },
+ {
+ "id": 721,
+ "start": 276.11,
+ "end": 276.52,
+ "text": "different"
+ },
+ {
+ "id": 722,
+ "start": 276.52,
+ "end": 277.41,
+ "text": "countries,"
+ },
+ {
+ "id": 723,
+ "start": 277.41,
+ "end": 277.61,
+ "text": "so"
+ },
+ {
+ "id": 724,
+ "start": 277.61,
+ "end": 277.76,
+ "text": "many"
+ },
+ {
+ "id": 725,
+ "start": 277.76,
+ "end": 278.08,
+ "text": "different"
+ },
+ {
+ "id": 726,
+ "start": 278.08,
+ "end": 278.63,
+ "text": "languages,"
+ },
+ {
+ "id": 727,
+ "start": 278.63,
+ "end": 278.78,
+ "text": "so"
+ },
+ {
+ "id": 728,
+ "start": 278.78,
+ "end": 278.91,
+ "text": "many"
+ },
+ {
+ "id": 729,
+ "start": 278.91,
+ "end": 279.8,
+ "text": "different"
+ },
+ {
+ "id": 730,
+ "start": 279.8,
+ "end": 280.47,
+ "text": "cultural"
+ },
+ {
+ "id": 731,
+ "start": 280.47,
+ "end": 281.16,
+ "text": "contextual"
+ },
+ {
+ "id": 732,
+ "start": 281.16,
+ "end": 281.85,
+ "text": "nuances"
+ },
+ {
+ "id": 733,
+ "start": 281.59499999999997,
+ "end": 282.295,
+ "text": "at"
+ },
+ {
+ "id": 734,
+ "start": 282.03,
+ "end": 282.74,
+ "text": "play."
+ },
+ {
+ "id": 735,
+ "start": 282.74,
+ "end": 282.87,
+ "text": "I"
+ },
+ {
+ "id": 736,
+ "start": 282.87,
+ "end": 283.22,
+ "text": "mean"
+ },
+ {
+ "id": 737,
+ "start": 283.22,
+ "end": 283.4,
+ "text": "is"
+ },
+ {
+ "id": 738,
+ "start": 283.4,
+ "end": 283.92,
+ "text": "that"
+ },
+ {
+ "id": 739,
+ "start": 283.76,
+ "end": 284.03,
+ "text": "a"
+ },
+ {
+ "id": 740,
+ "start": 284.36,
+ "end": 284.775,
+ "text": "near-impossible"
+ },
+ {
+ "id": 741,
+ "start": 284.96,
+ "end": 285.52,
+ "text": "task"
+ },
+ {
+ "id": 742,
+ "start": 285.35749999999996,
+ "end": 285.8825,
+ "text": "to"
+ },
+ {
+ "id": 743,
+ "start": 285.75499999999994,
+ "end": 286.245,
+ "text": "expect"
+ },
+ {
+ "id": 744,
+ "start": 286.1525,
+ "end": 286.6075,
+ "text": "a"
+ },
+ {
+ "id": 745,
+ "start": 286.55,
+ "end": 286.97,
+ "text": "human"
+ },
+ {
+ "id": 746,
+ "start": 286.97,
+ "end": 287.47,
+ "text": "being,"
+ },
+ {
+ "id": 747,
+ "start": 287.47,
+ "end": 287.57,
+ "text": "an"
+ },
+ {
+ "id": 748,
+ "start": 287.57,
+ "end": 287.91,
+ "text": "army"
+ },
+ {
+ "id": 749,
+ "start": 287.91,
+ "end": 288.01,
+ "text": "of"
+ },
+ {
+ "id": 750,
+ "start": 288.01,
+ "end": 288.33,
+ "text": "humans,"
+ },
+ {
+ "id": 751,
+ "start": 288.33,
+ "end": 288.42,
+ "text": "to"
+ },
+ {
+ "id": 752,
+ "start": 288.42,
+ "end": 288.5,
+ "text": "be"
+ },
+ {
+ "id": 753,
+ "start": 288.5,
+ "end": 288.64,
+ "text": "able"
+ },
+ {
+ "id": 754,
+ "start": 288.64,
+ "end": 288.7,
+ "text": "to"
+ },
+ {
+ "id": 755,
+ "start": 288.7,
+ "end": 288.84,
+ "text": "do"
+ },
+ {
+ "id": 756,
+ "start": 289.21999999999997,
+ "end": 289.44,
+ "text": "that?"
+ },
+ {
+ "id": 757,
+ "start": 289.74,
+ "end": 290.04,
+ "text": "One"
+ },
+ {
+ "id": 758,
+ "start": 290.04,
+ "end": 290.14,
+ "text": "of"
+ },
+ {
+ "id": 759,
+ "start": 290.09000000000003,
+ "end": 290.255,
+ "text": "the"
+ },
+ {
+ "id": 760,
+ "start": 290.14,
+ "end": 290.37,
+ "text": "things"
+ },
+ {
+ "id": 761,
+ "start": 290.37,
+ "end": 290.49,
+ "text": "we"
+ },
+ {
+ "id": 762,
+ "start": 290.49,
+ "end": 290.97,
+ "text": "do"
+ },
+ {
+ "id": 763,
+ "start": 290.97,
+ "end": 291.61,
+ "text": "is"
+ },
+ {
+ "id": 764,
+ "start": 291.61,
+ "end": 291.89,
+ "text": "try"
+ },
+ {
+ "id": 765,
+ "start": 291.89,
+ "end": 291.98,
+ "text": "to"
+ },
+ {
+ "id": 766,
+ "start": 291.98,
+ "end": 292.55,
+ "text": "define"
+ },
+ {
+ "id": 767,
+ "start": 292.55,
+ "end": 292.94,
+ "text": "very"
+ },
+ {
+ "id": 768,
+ "start": 292.94,
+ "end": 293.74,
+ "text": "clear"
+ },
+ {
+ "id": 769,
+ "start": 293.66,
+ "end": 294.21,
+ "text": "community"
+ },
+ {
+ "id": 770,
+ "start": 294.42,
+ "end": 295.04,
+ "text": "standards."
+ },
+ {
+ "id": 771,
+ "start": 295.18,
+ "end": 295.87,
+ "text": "So"
+ },
+ {
+ "id": 772,
+ "start": 295.87,
+ "end": 296.07,
+ "text": "the"
+ },
+ {
+ "id": 773,
+ "start": 296.07,
+ "end": 296.2,
+ "text": "way"
+ },
+ {
+ "id": 774,
+ "start": 296.2,
+ "end": 296.32,
+ "text": "we"
+ },
+ {
+ "id": 775,
+ "start": 296.32,
+ "end": 296.69,
+ "text": "approach"
+ },
+ {
+ "id": 776,
+ "start": 296.69,
+ "end": 296.96,
+ "text": "this"
+ },
+ {
+ "id": 777,
+ "start": 296.96,
+ "end": 297.47,
+ "text": "is"
+ },
+ {
+ "id": 778,
+ "start": 297.47,
+ "end": 297.69,
+ "text": "we"
+ },
+ {
+ "id": 779,
+ "start": 297.69,
+ "end": 298.25,
+ "text": "want"
+ },
+ {
+ "id": 780,
+ "start": 298.25,
+ "end": 298.37,
+ "text": "a"
+ },
+ {
+ "id": 781,
+ "start": 298.37,
+ "end": 299.43,
+ "text": "community"
+ },
+ {
+ "id": 782,
+ "start": 299.43,
+ "end": 299.65,
+ "text": "where"
+ },
+ {
+ "id": 783,
+ "start": 299.65,
+ "end": 300.03,
+ "text": "people"
+ },
+ {
+ "id": 784,
+ "start": 300.03,
+ "end": 300.36,
+ "text": "can"
+ },
+ {
+ "id": 785,
+ "start": 300.36,
+ "end": 300.71,
+ "text": "express"
+ },
+ {
+ "id": 786,
+ "start": 300.71,
+ "end": 301.53,
+ "text": "themselves"
+ },
+ {
+ "id": 787,
+ "start": 301.53,
+ "end": 301.98,
+ "text": "and"
+ },
+ {
+ "id": 788,
+ "start": 301.98,
+ "end": 302.14,
+ "text": "can"
+ },
+ {
+ "id": 789,
+ "start": 302.14,
+ "end": 303.05,
+ "text": "have"
+ },
+ {
+ "id": 790,
+ "start": 303.05,
+ "end": 303.42,
+ "text": "robust"
+ },
+ {
+ "id": 791,
+ "start": 303.42,
+ "end": 304.06,
+ "text": "discussion."
+ },
+ {
+ "id": 792,
+ "start": 304.06,
+ "end": 304.22,
+ "text": "It’s"
+ },
+ {
+ "id": 793,
+ "start": 304.22,
+ "end": 304.44,
+ "text": "really"
+ },
+ {
+ "id": 794,
+ "start": 304.88,
+ "end": 305.065,
+ "text": "important."
+ },
+ {
+ "id": 795,
+ "start": 305.54,
+ "end": 305.69,
+ "text": "But"
+ },
+ {
+ "id": 796,
+ "start": 305.69,
+ "end": 305.81,
+ "text": "we"
+ },
+ {
+ "id": 797,
+ "start": 305.81,
+ "end": 306.05,
+ "text": "also"
+ },
+ {
+ "id": 798,
+ "start": 306.05,
+ "end": 306.21,
+ "text": "need"
+ },
+ {
+ "id": 799,
+ "start": 306.21,
+ "end": 306.29,
+ "text": "to"
+ },
+ {
+ "id": 800,
+ "start": 306.29,
+ "end": 306.66,
+ "text": "balance"
+ },
+ {
+ "id": 801,
+ "start": 306.66,
+ "end": 306.89,
+ "text": "that"
+ },
+ {
+ "id": 802,
+ "start": 306.89,
+ "end": 307.12,
+ "text": "with"
+ },
+ {
+ "id": 803,
+ "start": 307.12,
+ "end": 307.6,
+ "text": "keeping"
+ },
+ {
+ "id": 804,
+ "start": 307.6,
+ "end": 307.88,
+ "text": "people"
+ },
+ {
+ "id": 805,
+ "start": 307.88,
+ "end": 309.22,
+ "text": "safe."
+ },
+ {
+ "id": 806,
+ "start": 309.22,
+ "end": 309.42,
+ "text": "That"
+ },
+ {
+ "id": 807,
+ "start": 309.42,
+ "end": 309.62,
+ "text": "means"
+ },
+ {
+ "id": 808,
+ "start": 309.62,
+ "end": 309.72,
+ "text": "we"
+ },
+ {
+ "id": 809,
+ "start": 309.72,
+ "end": 309.88,
+ "text": "need"
+ },
+ {
+ "id": 810,
+ "start": 309.88,
+ "end": 309.99,
+ "text": "to"
+ },
+ {
+ "id": 811,
+ "start": 309.99,
+ "end": 310.28,
+ "text": "draw"
+ },
+ {
+ "id": 812,
+ "start": 310.28,
+ "end": 310.78,
+ "text": "lines"
+ },
+ {
+ "id": 813,
+ "start": 310.78,
+ "end": 311.78,
+ "text": "somewhere,"
+ },
+ {
+ "id": 814,
+ "start": 311.78,
+ "end": 312.32,
+ "text": "and"
+ },
+ {
+ "id": 815,
+ "start": 312.32,
+ "end": 312.75,
+ "text": "honestly,"
+ },
+ {
+ "id": 816,
+ "start": 312.75,
+ "end": 313.02,
+ "text": "there’s"
+ },
+ {
+ "id": 817,
+ "start": 313.02,
+ "end": 313.3,
+ "text": "no"
+ },
+ {
+ "id": 818,
+ "start": 313.3,
+ "end": 313.53,
+ "text": "one"
+ },
+ {
+ "id": 819,
+ "start": 313.53,
+ "end": 313.76,
+ "text": "right"
+ },
+ {
+ "id": 820,
+ "start": 313.76,
+ "end": 314.24,
+ "text": "place"
+ },
+ {
+ "id": 821,
+ "start": 314.24,
+ "end": 314.4,
+ "text": "for"
+ },
+ {
+ "id": 822,
+ "start": 314.4,
+ "end": 314.64,
+ "text": "those"
+ },
+ {
+ "id": 823,
+ "start": 314.64,
+ "end": 314.91,
+ "text": "lines"
+ },
+ {
+ "id": 824,
+ "start": 314.91,
+ "end": 315.03,
+ "text": "to"
+ },
+ {
+ "id": 825,
+ "start": 315.03,
+ "end": 315.86,
+ "text": "be."
+ },
+ {
+ "id": 826,
+ "start": 315.86,
+ "end": 316.01,
+ "text": "But"
+ },
+ {
+ "id": 827,
+ "start": 316.01,
+ "end": 316.19,
+ "text": "we’ve"
+ },
+ {
+ "id": 828,
+ "start": 316.19,
+ "end": 316.53,
+ "text": "drawn"
+ },
+ {
+ "id": 829,
+ "start": 316.53,
+ "end": 316.63,
+ "text": "the"
+ },
+ {
+ "id": 830,
+ "start": 316.63,
+ "end": 317.32,
+ "text": "lines"
+ },
+ {
+ "id": 831,
+ "start": 317.23499999999996,
+ "end": 317.655,
+ "text": "with"
+ },
+ {
+ "id": 832,
+ "start": 317.84,
+ "end": 317.99,
+ "text": "what"
+ },
+ {
+ "id": 833,
+ "start": 317.99,
+ "end": 318.09,
+ "text": "we"
+ },
+ {
+ "id": 834,
+ "start": 318.09,
+ "end": 318.38,
+ "text": "call"
+ },
+ {
+ "id": 835,
+ "start": 318.38,
+ "end": 318.46,
+ "text": "the"
+ },
+ {
+ "id": 836,
+ "start": 318.46,
+ "end": 318.85,
+ "text": "community"
+ },
+ {
+ "id": 837,
+ "start": 318.85,
+ "end": 320.09,
+ "text": "standards."
+ },
+ {
+ "id": 838,
+ "start": 320.09,
+ "end": 320.54,
+ "text": "And"
+ },
+ {
+ "id": 839,
+ "start": 320.54,
+ "end": 320.76,
+ "text": "one"
+ },
+ {
+ "id": 840,
+ "start": 320.76,
+ "end": 320.82,
+ "text": "of"
+ },
+ {
+ "id": 841,
+ "start": 320.82,
+ "end": 320.88,
+ "text": "the"
+ },
+ {
+ "id": 842,
+ "start": 320.88,
+ "end": 321.13,
+ "text": "things"
+ },
+ {
+ "id": 843,
+ "start": 321.13,
+ "end": 321.25,
+ "text": "we"
+ },
+ {
+ "id": 844,
+ "start": 321.25,
+ "end": 321.95,
+ "text": "did"
+ },
+ {
+ "id": 845,
+ "start": 321.95,
+ "end": 322.13,
+ "text": "is"
+ },
+ {
+ "id": 846,
+ "start": 322.13,
+ "end": 322.51,
+ "text": "actually"
+ },
+ {
+ "id": 847,
+ "start": 322.60499999999996,
+ "end": 322.99,
+ "text": "publish"
+ },
+ {
+ "id": 848,
+ "start": 323.08,
+ "end": 323.47,
+ "text": "earlier"
+ },
+ {
+ "id": 849,
+ "start": 323.47,
+ "end": 323.71,
+ "text": "this"
+ },
+ {
+ "id": 850,
+ "start": 323.76,
+ "end": 323.95,
+ "text": "year"
+ },
+ {
+ "id": 851,
+ "start": 324.05,
+ "end": 324.19,
+ "text": "the"
+ },
+ {
+ "id": 852,
+ "start": 324.19,
+ "end": 324.65,
+ "text": "full"
+ },
+ {
+ "id": 853,
+ "start": 324.65,
+ "end": 325.32,
+ "text": "guidelines"
+ },
+ {
+ "id": 854,
+ "start": 325.32,
+ "end": 325.46,
+ "text": "we"
+ },
+ {
+ "id": 855,
+ "start": 325.46,
+ "end": 326.44,
+ "text": "use"
+ },
+ {
+ "id": 856,
+ "start": 326.44,
+ "end": 326.95,
+ "text": "for"
+ },
+ {
+ "id": 857,
+ "start": 326.95,
+ "end": 327.5,
+ "text": "enforcing"
+ },
+ {
+ "id": 858,
+ "start": 327.5,
+ "end": 327.58,
+ "text": "the"
+ },
+ {
+ "id": 859,
+ "start": 327.58,
+ "end": 327.99,
+ "text": "community"
+ },
+ {
+ "id": 860,
+ "start": 328.35999999999996,
+ "end": 328.92499999999995,
+ "text": "standards."
+ },
+ {
+ "id": 861,
+ "start": 329.14,
+ "end": 329.86,
+ "text": "And"
+ },
+ {
+ "id": 862,
+ "start": 329.86,
+ "end": 330.04,
+ "text": "if"
+ },
+ {
+ "id": 863,
+ "start": 330.04,
+ "end": 330.13,
+ "text": "you"
+ },
+ {
+ "id": 864,
+ "start": 330.13,
+ "end": 330.27,
+ "text": "look"
+ },
+ {
+ "id": 865,
+ "start": 330.27,
+ "end": 330.35,
+ "text": "at"
+ },
+ {
+ "id": 866,
+ "start": 330.35,
+ "end": 330.48,
+ "text": "them"
+ },
+ {
+ "id": 867,
+ "start": 330.48,
+ "end": 330.57,
+ "text": "you"
+ },
+ {
+ "id": 868,
+ "start": 330.57,
+ "end": 330.69,
+ "text": "can"
+ },
+ {
+ "id": 869,
+ "start": 330.69,
+ "end": 331.04,
+ "text": "actually"
+ },
+ {
+ "id": 870,
+ "start": 331.04,
+ "end": 331.43,
+ "text": "see"
+ },
+ {
+ "id": 871,
+ "start": 331.43,
+ "end": 331.68,
+ "text": "how"
+ },
+ {
+ "id": 872,
+ "start": 331.68,
+ "end": 332.07,
+ "text": "they"
+ },
+ {
+ "id": 873,
+ "start": 332.07,
+ "end": 332.89,
+ "text": "describe"
+ },
+ {
+ "id": 874,
+ "start": 332.89,
+ "end": 333.02,
+ "text": "in"
+ },
+ {
+ "id": 875,
+ "start": 333.02,
+ "end": 333.1,
+ "text": "a"
+ },
+ {
+ "id": 876,
+ "start": 333.1,
+ "end": 333.55,
+ "text": "very"
+ },
+ {
+ "id": 877,
+ "start": 333.55,
+ "end": 333.97,
+ "text": "crisp"
+ },
+ {
+ "id": 878,
+ "start": 333.97,
+ "end": 335.04,
+ "text": "way"
+ },
+ {
+ "id": 879,
+ "start": 335.04,
+ "end": 335.36,
+ "text": "where"
+ },
+ {
+ "id": 880,
+ "start": 335.36,
+ "end": 335.6,
+ "text": "those"
+ },
+ {
+ "id": 881,
+ "start": 335.6,
+ "end": 335.9,
+ "text": "lines"
+ },
+ {
+ "id": 882,
+ "start": 335.9,
+ "end": 336.16,
+ "text": "are."
+ },
+ {
+ "id": 883,
+ "start": 336.16,
+ "end": 336.34,
+ "text": "So"
+ },
+ {
+ "id": 884,
+ "start": 336.34,
+ "end": 336.51,
+ "text": "for"
+ },
+ {
+ "id": 885,
+ "start": 336.51,
+ "end": 336.95,
+ "text": "example,"
+ },
+ {
+ "id": 886,
+ "start": 336.95,
+ "end": 337.07,
+ "text": "in"
+ },
+ {
+ "id": 887,
+ "start": 337.07,
+ "end": 337.5,
+ "text": "areas"
+ },
+ {
+ "id": 888,
+ "start": 337.5,
+ "end": 338.05,
+ "text": "like"
+ },
+ {
+ "id": 889,
+ "start": 338.05,
+ "end": 338.7,
+ "text": "nudity"
+ },
+ {
+ "id": 890,
+ "start": 338.7,
+ "end": 338.84,
+ "text": "or"
+ },
+ {
+ "id": 891,
+ "start": 338.84,
+ "end": 339.27,
+ "text": "graphic"
+ },
+ {
+ "id": 892,
+ "start": 339.27,
+ "end": 340.75,
+ "text": "violence,"
+ },
+ {
+ "id": 893,
+ "start": 340.75,
+ "end": 340.9,
+ "text": "we"
+ },
+ {
+ "id": 894,
+ "start": 340.9,
+ "end": 341.17,
+ "text": "don’t"
+ },
+ {
+ "id": 895,
+ "start": 341.17,
+ "end": 341.42,
+ "text": "leave"
+ },
+ {
+ "id": 896,
+ "start": 341.42,
+ "end": 341.61,
+ "text": "that"
+ },
+ {
+ "id": 897,
+ "start": 341.61,
+ "end": 342.12,
+ "text": "up"
+ },
+ {
+ "id": 898,
+ "start": 342.12,
+ "end": 342.52,
+ "text": "to"
+ },
+ {
+ "id": 899,
+ "start": 342.51,
+ "end": 342.67,
+ "text": "the"
+ },
+ {
+ "id": 900,
+ "start": 342.815,
+ "end": 342.96,
+ "text": "judgment"
+ },
+ {
+ "id": 901,
+ "start": 343.12,
+ "end": 343.25,
+ "text": "of"
+ },
+ {
+ "id": 902,
+ "start": 343.25,
+ "end": 343.34,
+ "text": "an"
+ },
+ {
+ "id": 903,
+ "start": 343.34,
+ "end": 343.88,
+ "text": "individual"
+ },
+ {
+ "id": 904,
+ "start": 344.09,
+ "end": 344.445,
+ "text": "reviewer,"
+ },
+ {
+ "id": 905,
+ "start": 344.84,
+ "end": 345.01,
+ "text": "but"
+ },
+ {
+ "id": 906,
+ "start": 345.01,
+ "end": 345.14,
+ "text": "we"
+ },
+ {
+ "id": 907,
+ "start": 345.14,
+ "end": 345.52,
+ "text": "actually"
+ },
+ {
+ "id": 908,
+ "start": 345.52,
+ "end": 346.6,
+ "text": "specify"
+ },
+ {
+ "id": 909,
+ "start": 346.6,
+ "end": 347.13,
+ "text": "where"
+ },
+ {
+ "id": 910,
+ "start": 347.13,
+ "end": 347.67,
+ "text": "exactly"
+ },
+ {
+ "id": 911,
+ "start": 347.67,
+ "end": 347.84,
+ "text": "does"
+ },
+ {
+ "id": 912,
+ "start": 347.84,
+ "end": 348.03,
+ "text": "that"
+ },
+ {
+ "id": 913,
+ "start": 348.03,
+ "end": 348.27,
+ "text": "line"
+ },
+ {
+ "id": 914,
+ "start": 348.27,
+ "end": 348.52,
+ "text": "go,"
+ },
+ {
+ "id": 915,
+ "start": 348.52,
+ "end": 348.81,
+ "text": "down"
+ },
+ {
+ "id": 916,
+ "start": 348.81,
+ "end": 348.92,
+ "text": "to"
+ },
+ {
+ "id": 917,
+ "start": 348.92,
+ "end": 349.04,
+ "text": "the"
+ },
+ {
+ "id": 918,
+ "start": 349.04,
+ "end": 349.43,
+ "text": "gory"
+ },
+ {
+ "id": 919,
+ "start": 349.43,
+ "end": 350.19,
+ "text": "details"
+ },
+ {
+ "id": 920,
+ "start": 350.19,
+ "end": 350.61,
+ "text": "(literally"
+ },
+ {
+ "id": 921,
+ "start": 350.61,
+ "end": 351.06,
+ "text": "gory"
+ },
+ {
+ "id": 922,
+ "start": 351.06,
+ "end": 351.15,
+ "text": "in"
+ },
+ {
+ "id": 923,
+ "start": 351.15,
+ "end": 351.23,
+ "text": "the"
+ },
+ {
+ "id": 924,
+ "start": 351.23,
+ "end": 351.52,
+ "text": "case"
+ },
+ {
+ "id": 925,
+ "start": 351.52,
+ "end": 352.02,
+ "text": "of"
+ },
+ {
+ "id": 926,
+ "start": 352.02,
+ "end": 352.4,
+ "text": "areas"
+ },
+ {
+ "id": 927,
+ "start": 352.4,
+ "end": 352.53,
+ "text": "like"
+ },
+ {
+ "id": 928,
+ "start": 352.53,
+ "end": 352.88,
+ "text": "graphic"
+ },
+ {
+ "id": 929,
+ "start": 352.88,
+ "end": 353.94,
+ "text": "violence),"
+ },
+ {
+ "id": 930,
+ "start": 353.94,
+ "end": 354.19,
+ "text": "so"
+ },
+ {
+ "id": 931,
+ "start": 354.19,
+ "end": 354.35,
+ "text": "that"
+ },
+ {
+ "id": 932,
+ "start": 354.35,
+ "end": 354.46,
+ "text": "we"
+ },
+ {
+ "id": 933,
+ "start": 354.46,
+ "end": 354.59,
+ "text": "can"
+ },
+ {
+ "id": 934,
+ "start": 354.59,
+ "end": 354.73,
+ "text": "be"
+ },
+ {
+ "id": 935,
+ "start": 354.73,
+ "end": 355.45,
+ "text": "consistent"
+ },
+ {
+ "id": 936,
+ "start": 355.165,
+ "end": 355.645,
+ "text": "in"
+ },
+ {
+ "id": 937,
+ "start": 355.6,
+ "end": 355.84,
+ "text": "how"
+ },
+ {
+ "id": 938,
+ "start": 355.84,
+ "end": 355.96,
+ "text": "we"
+ },
+ {
+ "id": 939,
+ "start": 355.96,
+ "end": 356.23,
+ "text": "apply"
+ },
+ {
+ "id": 940,
+ "start": 356.23,
+ "end": 356.43,
+ "text": "those"
+ },
+ {
+ "id": 941,
+ "start": 356.985,
+ "end": 357.165,
+ "text": "policies."
+ },
+ {
+ "id": 942,
+ "start": 357.74,
+ "end": 357.9,
+ "text": "And"
+ },
+ {
+ "id": 943,
+ "start": 357.9,
+ "end": 357.96,
+ "text": "the"
+ },
+ {
+ "id": 944,
+ "start": 357.96,
+ "end": 358.14,
+ "text": "most"
+ },
+ {
+ "id": 945,
+ "start": 358.14,
+ "end": 358.51,
+ "text": "important"
+ },
+ {
+ "id": 946,
+ "start": 358.51,
+ "end": 359.64,
+ "text": "thing"
+ },
+ {
+ "id": 947,
+ "start": 359.64,
+ "end": 359.79,
+ "text": "in"
+ },
+ {
+ "id": 948,
+ "start": 359.79,
+ "end": 360.22,
+ "text": "releasing"
+ },
+ {
+ "id": 949,
+ "start": 360.22,
+ "end": 360.52,
+ "text": "those"
+ },
+ {
+ "id": 950,
+ "start": 360.52,
+ "end": 361.46,
+ "text": "is"
+ },
+ {
+ "id": 951,
+ "start": 361.46,
+ "end": 361.63,
+ "text": "to"
+ },
+ {
+ "id": 952,
+ "start": 361.63,
+ "end": 361.76,
+ "text": "be"
+ },
+ {
+ "id": 953,
+ "start": 361.76,
+ "end": 362.02,
+ "text": "able"
+ },
+ {
+ "id": 954,
+ "start": 362.02,
+ "end": 362.14,
+ "text": "to"
+ },
+ {
+ "id": 955,
+ "start": 362.14,
+ "end": 362.38,
+ "text": "have"
+ },
+ {
+ "id": 956,
+ "start": 362.38,
+ "end": 362.44,
+ "text": "a"
+ },
+ {
+ "id": 957,
+ "start": 362.44,
+ "end": 363.61,
+ "text": "discussion"
+ },
+ {
+ "id": 958,
+ "start": 363.61,
+ "end": 364.34,
+ "text": "with"
+ },
+ {
+ "id": 959,
+ "start": 364.34,
+ "end": 365.36,
+ "text": "people"
+ },
+ {
+ "id": 960,
+ "start": 365.36,
+ "end": 365.78,
+ "text": "outside"
+ },
+ {
+ "id": 961,
+ "start": 365.78,
+ "end": 365.85,
+ "text": "the"
+ },
+ {
+ "id": 962,
+ "start": 365.85,
+ "end": 366.46,
+ "text": "company"
+ },
+ {
+ "id": 963,
+ "start": 366.16,
+ "end": 366.7,
+ "text": "–"
+ },
+ {
+ "id": 964,
+ "start": 366.47,
+ "end": 366.94,
+ "text": "with"
+ },
+ {
+ "id": 965,
+ "start": 366.94,
+ "end": 367.42,
+ "text": "folks"
+ },
+ {
+ "id": 966,
+ "start": 367.42,
+ "end": 367.65,
+ "text": "in"
+ },
+ {
+ "id": 967,
+ "start": 367.65,
+ "end": 368.76,
+ "text": "academia,"
+ },
+ {
+ "id": 968,
+ "start": 368.76,
+ "end": 369.33,
+ "text": "with"
+ },
+ {
+ "id": 969,
+ "start": 369.17,
+ "end": 370.1,
+ "text": "NGOs"
+ },
+ {
+ "id": 970,
+ "start": 369.48,
+ "end": 370.15000000000003,
+ "text": "[nongovernmental"
+ },
+ {
+ "id": 971,
+ "start": 369.79,
+ "end": 370.2,
+ "text": "organizations],"
+ },
+ {
+ "id": 972,
+ "start": 370.1,
+ "end": 370.25,
+ "text": "with"
+ },
+ {
+ "id": 973,
+ "start": 370.25,
+ "end": 370.5,
+ "text": "human"
+ },
+ {
+ "id": 974,
+ "start": 370.5,
+ "end": 370.73,
+ "text": "rights"
+ },
+ {
+ "id": 975,
+ "start": 370.8666666666667,
+ "end": 371.0566666666667,
+ "text": "organizations"
+ },
+ {
+ "id": 976,
+ "start": 371.23333333333335,
+ "end": 371.3833333333333,
+ "text": "–"
+ },
+ {
+ "id": 977,
+ "start": 371.6,
+ "end": 371.71,
+ "text": "and"
+ },
+ {
+ "id": 978,
+ "start": 371.71,
+ "end": 371.77,
+ "text": "to"
+ },
+ {
+ "id": 979,
+ "start": 371.77,
+ "end": 371.96,
+ "text": "have"
+ },
+ {
+ "id": 980,
+ "start": 371.96,
+ "end": 372.01,
+ "text": "a"
+ },
+ {
+ "id": 981,
+ "start": 372.01,
+ "end": 372.52,
+ "text": "discussion"
+ },
+ {
+ "id": 982,
+ "start": 372.52,
+ "end": 373.36,
+ "text": "on"
+ },
+ {
+ "id": 983,
+ "start": 373.36,
+ "end": 373.66,
+ "text": "where"
+ },
+ {
+ "id": 984,
+ "start": 373.66,
+ "end": 373.84,
+ "text": "should"
+ },
+ {
+ "id": 985,
+ "start": 373.84,
+ "end": 374.03,
+ "text": "those"
+ },
+ {
+ "id": 986,
+ "start": 374.03,
+ "end": 374.26,
+ "text": "lines"
+ },
+ {
+ "id": 987,
+ "start": 374.26,
+ "end": 374.36,
+ "text": "be"
+ },
+ {
+ "id": 988,
+ "start": 374.93000000000006,
+ "end": 375.115,
+ "text": "drawn."
+ },
+ {
+ "id": 989,
+ "start": 375.6,
+ "end": 375.87,
+ "text": "They"
+ },
+ {
+ "id": 990,
+ "start": 375.87,
+ "end": 376.02,
+ "text": "will"
+ },
+ {
+ "id": 991,
+ "start": 376.02,
+ "end": 376.45,
+ "text": "continue"
+ },
+ {
+ "id": 992,
+ "start": 376.45,
+ "end": 376.56,
+ "text": "to"
+ },
+ {
+ "id": 993,
+ "start": 376.56,
+ "end": 377.31,
+ "text": "evolve"
+ },
+ {
+ "id": 994,
+ "start": 377.31,
+ "end": 377.52,
+ "text": "as"
+ },
+ {
+ "id": 995,
+ "start": 377.52,
+ "end": 377.66,
+ "text": "we"
+ },
+ {
+ "id": 996,
+ "start": 377.66,
+ "end": 378.46,
+ "text": "learn,"
+ },
+ {
+ "id": 997,
+ "start": 378.46,
+ "end": 378.58,
+ "text": "as"
+ },
+ {
+ "id": 998,
+ "start": 378.58,
+ "end": 378.66,
+ "text": "we"
+ },
+ {
+ "id": 999,
+ "start": 378.66,
+ "end": 378.83,
+ "text": "get"
+ },
+ {
+ "id": 1000,
+ "start": 378.83,
+ "end": 379.26,
+ "text": "feedback"
+ },
+ {
+ "id": 1001,
+ "start": 379.26,
+ "end": 379.39,
+ "text": "from"
+ },
+ {
+ "id": 1002,
+ "start": 379.39,
+ "end": 379.46,
+ "text": "the"
+ },
+ {
+ "id": 1003,
+ "start": 379.46,
+ "end": 380.44,
+ "text": "community."
+ },
+ {
+ "id": 1004,
+ "start": 380.44,
+ "end": 380.58,
+ "text": "But"
+ },
+ {
+ "id": 1005,
+ "start": 380.58,
+ "end": 380.64,
+ "text": "it"
+ },
+ {
+ "id": 1006,
+ "start": 380.64,
+ "end": 380.75,
+ "text": "is"
+ },
+ {
+ "id": 1007,
+ "start": 380.75,
+ "end": 380.97,
+ "text": "really"
+ },
+ {
+ "id": 1008,
+ "start": 380.97,
+ "end": 381.35,
+ "text": "important"
+ },
+ {
+ "id": 1009,
+ "start": 381.35,
+ "end": 381.48,
+ "text": "for"
+ },
+ {
+ "id": 1010,
+ "start": 381.48,
+ "end": 381.61,
+ "text": "us"
+ },
+ {
+ "id": 1011,
+ "start": 381.61,
+ "end": 381.71,
+ "text": "to"
+ },
+ {
+ "id": 1012,
+ "start": 381.71,
+ "end": 381.97,
+ "text": "have"
+ },
+ {
+ "id": 1013,
+ "start": 381.97,
+ "end": 382.19,
+ "text": "those"
+ },
+ {
+ "id": 1014,
+ "start": 382.19,
+ "end": 383.21,
+ "text": "lines"
+ },
+ {
+ "id": 1015,
+ "start": 383.21,
+ "end": 383.42,
+ "text": "and"
+ },
+ {
+ "id": 1016,
+ "start": 383.42,
+ "end": 383.88,
+ "text": "to"
+ },
+ {
+ "id": 1017,
+ "start": 383.88,
+ "end": 384.56,
+ "text": "transparently"
+ },
+ {
+ "id": 1018,
+ "start": 384.56,
+ "end": 385.05,
+ "text": "communicate"
+ },
+ {
+ "id": 1019,
+ "start": 385.05,
+ "end": 387.65,
+ "text": "those."
+ },
+ {
+ "id": 1020,
+ "start": 387.65,
+ "end": 389.3,
+ "text": "The"
+ },
+ {
+ "id": 1021,
+ "start": 389.3,
+ "end": 389.88,
+ "text": "situation"
+ },
+ {
+ "id": 1022,
+ "start": 389.88,
+ "end": 389.98,
+ "text": "in"
+ },
+ {
+ "id": 1023,
+ "start": 389.98,
+ "end": 390.6,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1024,
+ "start": 390.5325,
+ "end": 391.15250000000003,
+ "text": "–"
+ },
+ {
+ "id": 1025,
+ "start": 391.08500000000004,
+ "end": 391.70500000000004,
+ "text": "do"
+ },
+ {
+ "id": 1026,
+ "start": 391.63750000000005,
+ "end": 392.25750000000005,
+ "text": "you"
+ },
+ {
+ "id": 1027,
+ "start": 392.19,
+ "end": 392.81,
+ "text": "classify"
+ },
+ {
+ "id": 1028,
+ "start": 392.81,
+ "end": 392.97,
+ "text": "that"
+ },
+ {
+ "id": 1029,
+ "start": 392.97,
+ "end": 393.09,
+ "text": "as"
+ },
+ {
+ "id": 1030,
+ "start": 393.09,
+ "end": 393.21,
+ "text": "a"
+ },
+ {
+ "id": 1031,
+ "start": 393.21,
+ "end": 393.49,
+ "text": "hate"
+ },
+ {
+ "id": 1032,
+ "start": 393.49,
+ "end": 393.85,
+ "text": "speech"
+ },
+ {
+ "id": 1033,
+ "start": 393.85,
+ "end": 395.48,
+ "text": "situation,"
+ },
+ {
+ "id": 1034,
+ "start": 395.48,
+ "end": 395.73,
+ "text": "that"
+ },
+ {
+ "id": 1035,
+ "start": 395.73,
+ "end": 395.88,
+ "text": "in"
+ },
+ {
+ "id": 1036,
+ "start": 395.88,
+ "end": 396.13,
+ "text": "some"
+ },
+ {
+ "id": 1037,
+ "start": 396.13,
+ "end": 397.06,
+ "text": "ways"
+ },
+ {
+ "id": 1038,
+ "start": 397.06,
+ "end": 397.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 1039,
+ "start": 397.9,
+ "end": 398.06,
+ "text": "has"
+ },
+ {
+ "id": 1040,
+ "start": 398.06,
+ "end": 398.46,
+ "text": "played"
+ },
+ {
+ "id": 1041,
+ "start": 398.46,
+ "end": 398.53,
+ "text": "a"
+ },
+ {
+ "id": 1042,
+ "start": 398.53,
+ "end": 399.11,
+ "text": "role"
+ },
+ {
+ "id": 1043,
+ "start": 399.11,
+ "end": 399.35,
+ "text": "in"
+ },
+ {
+ "id": 1044,
+ "start": 399.35,
+ "end": 400.3,
+ "text": "the"
+ },
+ {
+ "id": 1045,
+ "start": 400.3,
+ "end": 400.94,
+ "text": "genocide"
+ },
+ {
+ "id": 1046,
+ "start": 400.94,
+ "end": 401.17,
+ "text": "there"
+ },
+ {
+ "id": 1047,
+ "start": 401.17,
+ "end": 401.32,
+ "text": "by"
+ },
+ {
+ "id": 1048,
+ "start": 401.32,
+ "end": 402.21,
+ "text": "amplifying"
+ },
+ {
+ "id": 1049,
+ "start": 402.21,
+ "end": 402.45,
+ "text": "hate"
+ },
+ {
+ "id": 1050,
+ "start": 402.45,
+ "end": 402.82,
+ "text": "speech"
+ },
+ {
+ "id": 1051,
+ "start": 402.82,
+ "end": 402.92,
+ "text": "and"
+ },
+ {
+ "id": 1052,
+ "start": 402.92,
+ "end": 403.27,
+ "text": "allowing"
+ },
+ {
+ "id": 1053,
+ "start": 403.27,
+ "end": 403.37,
+ "text": "it"
+ },
+ {
+ "id": 1054,
+ "start": 403.37,
+ "end": 403.47,
+ "text": "to"
+ },
+ {
+ "id": 1055,
+ "start": 403.47,
+ "end": 403.85,
+ "text": "spread"
+ },
+ {
+ "id": 1056,
+ "start": 403.78,
+ "end": 404.045,
+ "text": "there?"
+ },
+ {
+ "id": 1057,
+ "start": 404.09,
+ "end": 404.24,
+ "text": "Do"
+ },
+ {
+ "id": 1058,
+ "start": 404.24,
+ "end": 404.79,
+ "text": "you"
+ },
+ {
+ "id": 1059,
+ "start": 404.79,
+ "end": 405.05,
+ "text": "see"
+ },
+ {
+ "id": 1060,
+ "start": 405.05,
+ "end": 405.22,
+ "text": "that"
+ },
+ {
+ "id": 1061,
+ "start": 405.19,
+ "end": 405.31,
+ "text": "as"
+ },
+ {
+ "id": 1062,
+ "start": 405.33,
+ "end": 405.4,
+ "text": "a"
+ },
+ {
+ "id": 1063,
+ "start": 405.4,
+ "end": 405.6,
+ "text": "hate"
+ },
+ {
+ "id": 1064,
+ "start": 405.6,
+ "end": 405.86,
+ "text": "speech"
+ },
+ {
+ "id": 1065,
+ "start": 405.86,
+ "end": 407.31,
+ "text": "problem?"
+ },
+ {
+ "id": 1066,
+ "start": 407.31,
+ "end": 408.61,
+ "text": "The"
+ },
+ {
+ "id": 1067,
+ "start": 408.61,
+ "end": 409.02,
+ "text": "ethnic"
+ },
+ {
+ "id": 1068,
+ "start": 409.02,
+ "end": 409.68,
+ "text": "violence"
+ },
+ {
+ "id": 1069,
+ "start": 409.68,
+ "end": 410.41,
+ "text": "in"
+ },
+ {
+ "id": 1070,
+ "start": 410.41,
+ "end": 411.05,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1071,
+ "start": 411.05,
+ "end": 412.13,
+ "text": "is"
+ },
+ {
+ "id": 1072,
+ "start": 412.13,
+ "end": 413.16,
+ "text": "horrifying,"
+ },
+ {
+ "id": 1073,
+ "start": 413.16,
+ "end": 413.6,
+ "text": "and"
+ },
+ {
+ "id": 1074,
+ "start": 413.6,
+ "end": 413.98,
+ "text": "we"
+ },
+ {
+ "id": 1075,
+ "start": 413.98,
+ "end": 414.25,
+ "text": "were"
+ },
+ {
+ "id": 1076,
+ "start": 414.25,
+ "end": 414.46,
+ "text": "too"
+ },
+ {
+ "id": 1077,
+ "start": 414.46,
+ "end": 415.44,
+ "text": "slow"
+ },
+ {
+ "id": 1078,
+ "start": 415.44,
+ "end": 415.6,
+ "text": "to"
+ },
+ {
+ "id": 1079,
+ "start": 415.6,
+ "end": 415.96,
+ "text": "spot"
+ },
+ {
+ "id": 1080,
+ "start": 415.96,
+ "end": 416.29,
+ "text": "how"
+ },
+ {
+ "id": 1081,
+ "start": 416.29,
+ "end": 416.48,
+ "text": "this"
+ },
+ {
+ "id": 1082,
+ "start": 416.48,
+ "end": 416.61,
+ "text": "was"
+ },
+ {
+ "id": 1083,
+ "start": 416.61,
+ "end": 416.9,
+ "text": "playing"
+ },
+ {
+ "id": 1084,
+ "start": 416.9,
+ "end": 417.5,
+ "text": "out"
+ },
+ {
+ "id": 1085,
+ "start": 417.5,
+ "end": 417.69,
+ "text": "on"
+ },
+ {
+ "id": 1086,
+ "start": 417.69,
+ "end": 417.8,
+ "text": "our"
+ },
+ {
+ "id": 1087,
+ "start": 417.8,
+ "end": 419.24,
+ "text": "platform."
+ },
+ {
+ "id": 1088,
+ "start": 419.24,
+ "end": 419.39,
+ "text": "But"
+ },
+ {
+ "id": 1089,
+ "start": 419.39,
+ "end": 419.52,
+ "text": "we"
+ },
+ {
+ "id": 1090,
+ "start": 419.52,
+ "end": 419.71,
+ "text": "have"
+ },
+ {
+ "id": 1091,
+ "start": 419.71,
+ "end": 419.88,
+ "text": "made"
+ },
+ {
+ "id": 1092,
+ "start": 419.88,
+ "end": 421.06,
+ "text": "progress."
+ },
+ {
+ "id": 1093,
+ "start": 421.06,
+ "end": 421.28,
+ "text": "We’ve"
+ },
+ {
+ "id": 1094,
+ "start": 421.28,
+ "end": 421.45,
+ "text": "made"
+ },
+ {
+ "id": 1095,
+ "start": 421.45,
+ "end": 421.97,
+ "text": "progress"
+ },
+ {
+ "id": 1096,
+ "start": 421.97,
+ "end": 423.16,
+ "text": "on"
+ },
+ {
+ "id": 1097,
+ "start": 423.16,
+ "end": 423.46,
+ "text": "building"
+ },
+ {
+ "id": 1098,
+ "start": 423.46,
+ "end": 423.68,
+ "text": "better"
+ },
+ {
+ "id": 1099,
+ "start": 423.68,
+ "end": 424.1,
+ "text": "reporting"
+ },
+ {
+ "id": 1100,
+ "start": 424.1,
+ "end": 424.67,
+ "text": "flows."
+ },
+ {
+ "id": 1101,
+ "start": 424.67,
+ "end": 424.89,
+ "text": "We’ve"
+ },
+ {
+ "id": 1102,
+ "start": 424.89,
+ "end": 425.06,
+ "text": "made"
+ },
+ {
+ "id": 1103,
+ "start": 425.06,
+ "end": 425.61,
+ "text": "progress"
+ },
+ {
+ "id": 1104,
+ "start": 425.61,
+ "end": 426.32,
+ "text": "on"
+ },
+ {
+ "id": 1105,
+ "start": 426.32,
+ "end": 426.93,
+ "text": "working"
+ },
+ {
+ "id": 1106,
+ "start": 426.93,
+ "end": 427.09,
+ "text": "with"
+ },
+ {
+ "id": 1107,
+ "start": 427.4550000000001,
+ "end": 427.6050000000001,
+ "text": "organizations"
+ },
+ {
+ "id": 1108,
+ "start": 427.98,
+ "end": 428.12,
+ "text": "on"
+ },
+ {
+ "id": 1109,
+ "start": 428.12,
+ "end": 428.2,
+ "text": "the"
+ },
+ {
+ "id": 1110,
+ "start": 428.2,
+ "end": 429.14,
+ "text": "ground"
+ },
+ {
+ "id": 1111,
+ "start": 429.14,
+ "end": 429.31,
+ "text": "that"
+ },
+ {
+ "id": 1112,
+ "start": 429.31,
+ "end": 429.45,
+ "text": "can"
+ },
+ {
+ "id": 1113,
+ "start": 429.45,
+ "end": 429.71,
+ "text": "help"
+ },
+ {
+ "id": 1114,
+ "start": 429.71,
+ "end": 429.87,
+ "text": "us"
+ },
+ {
+ "id": 1115,
+ "start": 429.87,
+ "end": 430.88,
+ "text": "understand"
+ },
+ {
+ "id": 1116,
+ "start": 430.69,
+ "end": 431.23,
+ "text": "how"
+ },
+ {
+ "id": 1117,
+ "start": 430.96,
+ "end": 431.525,
+ "text": "a"
+ },
+ {
+ "id": 1118,
+ "start": 431.23,
+ "end": 431.82,
+ "text": "situation"
+ },
+ {
+ "id": 1119,
+ "start": 431.82,
+ "end": 431.93,
+ "text": "is"
+ },
+ {
+ "id": 1120,
+ "start": 431.93,
+ "end": 432.22,
+ "text": "playing"
+ },
+ {
+ "id": 1121,
+ "start": 432.22,
+ "end": 432.38,
+ "text": "out."
+ },
+ {
+ "id": 1122,
+ "start": 432.38,
+ "end": 432.51,
+ "text": "We’ve"
+ },
+ {
+ "id": 1123,
+ "start": 432.51,
+ "end": 432.66,
+ "text": "made"
+ },
+ {
+ "id": 1124,
+ "start": 432.66,
+ "end": 433.08,
+ "text": "progress"
+ },
+ {
+ "id": 1125,
+ "start": 433.08,
+ "end": 433.18,
+ "text": "in"
+ },
+ {
+ "id": 1126,
+ "start": 433.18,
+ "end": 433.58,
+ "text": "hiring"
+ },
+ {
+ "id": 1127,
+ "start": 433.58,
+ "end": 434.48,
+ "text": "reviewers"
+ },
+ {
+ "id": 1128,
+ "start": 434.48,
+ "end": 434.76,
+ "text": "who"
+ },
+ {
+ "id": 1129,
+ "start": 434.76,
+ "end": 435.02,
+ "text": "speak"
+ },
+ {
+ "id": 1130,
+ "start": 435.02,
+ "end": 435.12,
+ "text": "the"
+ },
+ {
+ "id": 1131,
+ "start": 435.12,
+ "end": 435.38,
+ "text": "local"
+ },
+ {
+ "id": 1132,
+ "start": 435.38,
+ "end": 435.82,
+ "text": "language"
+ },
+ {
+ "id": 1133,
+ "start": 435.82,
+ "end": 435.93,
+ "text": "and"
+ },
+ {
+ "id": 1134,
+ "start": 435.93,
+ "end": 436.36,
+ "text": "understand"
+ },
+ {
+ "id": 1135,
+ "start": 436.36,
+ "end": 436.42,
+ "text": "the"
+ },
+ {
+ "id": 1136,
+ "start": 436.86,
+ "end": 437.01000000000005,
+ "text": "context."
+ },
+ {
+ "id": 1137,
+ "start": 437.36,
+ "end": 437.6,
+ "text": "And"
+ },
+ {
+ "id": 1138,
+ "start": 437.6,
+ "end": 437.75,
+ "text": "we’ve"
+ },
+ {
+ "id": 1139,
+ "start": 437.75,
+ "end": 437.94,
+ "text": "made"
+ },
+ {
+ "id": 1140,
+ "start": 437.94,
+ "end": 438.66,
+ "text": "progress"
+ },
+ {
+ "id": 1141,
+ "start": 438.66,
+ "end": 439.3,
+ "text": "on"
+ },
+ {
+ "id": 1142,
+ "start": 439.3,
+ "end": 439.98,
+ "text": "technology"
+ },
+ {
+ "id": 1143,
+ "start": 439.98,
+ "end": 440.11,
+ "text": "to"
+ },
+ {
+ "id": 1144,
+ "start": 440.11,
+ "end": 440.75,
+ "text": "proactively"
+ },
+ {
+ "id": 1145,
+ "start": 440.75,
+ "end": 441.74,
+ "text": "identify"
+ },
+ {
+ "id": 1146,
+ "start": 441.74,
+ "end": 441.98,
+ "text": "hate"
+ },
+ {
+ "id": 1147,
+ "start": 441.98,
+ "end": 442.5,
+ "text": "speech."
+ },
+ {
+ "id": 1148,
+ "start": 442.5,
+ "end": 443.36,
+ "text": "So"
+ },
+ {
+ "id": 1149,
+ "start": 443.36,
+ "end": 443.58,
+ "text": "for"
+ },
+ {
+ "id": 1150,
+ "start": 443.58,
+ "end": 444.41,
+ "text": "example,"
+ },
+ {
+ "id": 1151,
+ "start": 444.41,
+ "end": 444.81,
+ "text": "last"
+ },
+ {
+ "id": 1152,
+ "start": 444.81,
+ "end": 447.68,
+ "text": "year"
+ },
+ {
+ "id": 1153,
+ "start": 447.68,
+ "end": 448.18,
+ "text": "13"
+ },
+ {
+ "id": 1154,
+ "start": 448.18,
+ "end": 448.85,
+ "text": "percent"
+ },
+ {
+ "id": 1155,
+ "start": 448.85,
+ "end": 448.98,
+ "text": "of"
+ },
+ {
+ "id": 1156,
+ "start": 448.98,
+ "end": 449.05,
+ "text": "the"
+ },
+ {
+ "id": 1157,
+ "start": 449.05,
+ "end": 449.33,
+ "text": "hate"
+ },
+ {
+ "id": 1158,
+ "start": 449.33,
+ "end": 449.66,
+ "text": "speech"
+ },
+ {
+ "id": 1159,
+ "start": 449.66,
+ "end": 449.8,
+ "text": "that"
+ },
+ {
+ "id": 1160,
+ "start": 449.8,
+ "end": 449.91,
+ "text": "we"
+ },
+ {
+ "id": 1161,
+ "start": 449.91,
+ "end": 450.15,
+ "text": "took"
+ },
+ {
+ "id": 1162,
+ "start": 450.15,
+ "end": 450.85,
+ "text": "down"
+ },
+ {
+ "id": 1163,
+ "start": 450.85,
+ "end": 451.02,
+ "text": "in"
+ },
+ {
+ "id": 1164,
+ "start": 451.02,
+ "end": 451.87,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1165,
+ "start": 451.87,
+ "end": 452.02,
+ "text": "was"
+ },
+ {
+ "id": 1166,
+ "start": 452.02,
+ "end": 452.68,
+ "text": "detected"
+ },
+ {
+ "id": 1167,
+ "start": 452.68,
+ "end": 452.83,
+ "text": "by"
+ },
+ {
+ "id": 1168,
+ "start": 452.83,
+ "end": 452.93,
+ "text": "our"
+ },
+ {
+ "id": 1169,
+ "start": 453.535,
+ "end": 453.9950000000001,
+ "text": "systems."
+ },
+ {
+ "id": 1170,
+ "start": 454.24,
+ "end": 455.06,
+ "text": "And"
+ },
+ {
+ "id": 1171,
+ "start": 455.06,
+ "end": 455.3,
+ "text": "as"
+ },
+ {
+ "id": 1172,
+ "start": 455.3,
+ "end": 455.44,
+ "text": "we"
+ },
+ {
+ "id": 1173,
+ "start": 455.44,
+ "end": 455.65,
+ "text": "made"
+ },
+ {
+ "id": 1174,
+ "start": 455.65,
+ "end": 456.53,
+ "text": "progress"
+ },
+ {
+ "id": 1175,
+ "start": 456.53,
+ "end": 456.7,
+ "text": "and"
+ },
+ {
+ "id": 1176,
+ "start": 456.7,
+ "end": 457,
+ "text": "as"
+ },
+ {
+ "id": 1177,
+ "start": 457,
+ "end": 457.51,
+ "text": "artificial"
+ },
+ {
+ "id": 1178,
+ "start": 457.51,
+ "end": 458.05,
+ "text": "intelligence"
+ },
+ {
+ "id": 1179,
+ "start": 458.05,
+ "end": 458.66,
+ "text": "technology"
+ },
+ {
+ "id": 1180,
+ "start": 458.66,
+ "end": 460.13,
+ "text": "advanced,"
+ },
+ {
+ "id": 1181,
+ "start": 460.13,
+ "end": 460.34,
+ "text": "we"
+ },
+ {
+ "id": 1182,
+ "start": 460.34,
+ "end": 460.86,
+ "text": "resolved"
+ },
+ {
+ "id": 1183,
+ "start": 460.86,
+ "end": 460.98,
+ "text": "that"
+ },
+ {
+ "id": 1184,
+ "start": 460.98,
+ "end": 461.1,
+ "text": "we"
+ },
+ {
+ "id": 1185,
+ "start": 461.1,
+ "end": 461.3,
+ "text": "would"
+ },
+ {
+ "id": 1186,
+ "start": 461.3,
+ "end": 461.57,
+ "text": "try"
+ },
+ {
+ "id": 1187,
+ "start": 461.57,
+ "end": 461.66,
+ "text": "to"
+ },
+ {
+ "id": 1188,
+ "start": 461.66,
+ "end": 461.87,
+ "text": "make"
+ },
+ {
+ "id": 1189,
+ "start": 461.87,
+ "end": 461.97,
+ "text": "it"
+ },
+ {
+ "id": 1190,
+ "start": 461.97,
+ "end": 462.31,
+ "text": "work"
+ },
+ {
+ "id": 1191,
+ "start": 462.31,
+ "end": 462.57,
+ "text": "in"
+ },
+ {
+ "id": 1192,
+ "start": 462.57,
+ "end": 463.29,
+ "text": "Burmese,"
+ },
+ {
+ "id": 1193,
+ "start": 463.29,
+ "end": 463.47,
+ "text": "which"
+ },
+ {
+ "id": 1194,
+ "start": 463.47,
+ "end": 463.57,
+ "text": "is"
+ },
+ {
+ "id": 1195,
+ "start": 463.57,
+ "end": 463.66,
+ "text": "the"
+ },
+ {
+ "id": 1196,
+ "start": 463.66,
+ "end": 463.9,
+ "text": "local"
+ },
+ {
+ "id": 1197,
+ "start": 463.9,
+ "end": 464.79,
+ "text": "language,"
+ },
+ {
+ "id": 1198,
+ "start": 464.79,
+ "end": 465.27,
+ "text": "despite"
+ },
+ {
+ "id": 1199,
+ "start": 465.27,
+ "end": 465.36,
+ "text": "a"
+ },
+ {
+ "id": 1200,
+ "start": 465.36,
+ "end": 465.64,
+ "text": "lot"
+ },
+ {
+ "id": 1201,
+ "start": 465.64,
+ "end": 466.41,
+ "text": "of"
+ },
+ {
+ "id": 1202,
+ "start": 466.41,
+ "end": 467.41,
+ "text": "complexity"
+ },
+ {
+ "id": 1203,
+ "start": 467.41,
+ "end": 467.57,
+ "text": "that"
+ },
+ {
+ "id": 1204,
+ "start": 467.57,
+ "end": 467.69,
+ "text": "is"
+ },
+ {
+ "id": 1205,
+ "start": 467.69,
+ "end": 467.91,
+ "text": "very"
+ },
+ {
+ "id": 1206,
+ "start": 467.91,
+ "end": 468.55,
+ "text": "unique"
+ },
+ {
+ "id": 1207,
+ "start": 468.55,
+ "end": 468.7,
+ "text": "to"
+ },
+ {
+ "id": 1208,
+ "start": 468.7,
+ "end": 468.79,
+ "text": "the"
+ },
+ {
+ "id": 1209,
+ "start": 468.79,
+ "end": 468.96,
+ "text": "way"
+ },
+ {
+ "id": 1210,
+ "start": 468.96,
+ "end": 469.15,
+ "text": "that"
+ },
+ {
+ "id": 1211,
+ "start": 469.15,
+ "end": 469.51,
+ "text": "language"
+ },
+ {
+ "id": 1212,
+ "start": 469.51,
+ "end": 471.16,
+ "text": "works."
+ },
+ {
+ "id": 1213,
+ "start": 471.16,
+ "end": 471.53,
+ "text": "And"
+ },
+ {
+ "id": 1214,
+ "start": 471.53,
+ "end": 472.28,
+ "text": "now"
+ },
+ {
+ "id": 1215,
+ "start": 472.04,
+ "end": 472.58,
+ "text": "over"
+ },
+ {
+ "id": 1216,
+ "start": 472.61500000000007,
+ "end": 473.31,
+ "text": "52"
+ },
+ {
+ "id": 1217,
+ "start": 473.19,
+ "end": 474.04,
+ "text": "percent"
+ },
+ {
+ "id": 1218,
+ "start": 474.04,
+ "end": 474.2,
+ "text": "of"
+ },
+ {
+ "id": 1219,
+ "start": 474.2,
+ "end": 474.26,
+ "text": "the"
+ },
+ {
+ "id": 1220,
+ "start": 474.26,
+ "end": 474.54,
+ "text": "hate"
+ },
+ {
+ "id": 1221,
+ "start": 474.54,
+ "end": 474.83,
+ "text": "speech"
+ },
+ {
+ "id": 1222,
+ "start": 474.83,
+ "end": 474.95,
+ "text": "that"
+ },
+ {
+ "id": 1223,
+ "start": 474.95,
+ "end": 475.06,
+ "text": "we"
+ },
+ {
+ "id": 1224,
+ "start": 475.06,
+ "end": 475.28,
+ "text": "take"
+ },
+ {
+ "id": 1225,
+ "start": 475.28,
+ "end": 475.5,
+ "text": "down"
+ },
+ {
+ "id": 1226,
+ "start": 475.5,
+ "end": 475.6,
+ "text": "in"
+ },
+ {
+ "id": 1227,
+ "start": 475.6,
+ "end": 476.56,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1228,
+ "start": 476.56,
+ "end": 476.76,
+ "text": "is"
+ },
+ {
+ "id": 1229,
+ "start": 476.76,
+ "end": 477.3,
+ "text": "flagged"
+ },
+ {
+ "id": 1230,
+ "start": 477.3,
+ "end": 477.5,
+ "text": "by"
+ },
+ {
+ "id": 1231,
+ "start": 477.5,
+ "end": 477.6,
+ "text": "our"
+ },
+ {
+ "id": 1232,
+ "start": 477.6,
+ "end": 478.15,
+ "text": "systems."
+ },
+ {
+ "id": 1233,
+ "start": 478.15,
+ "end": 478.34,
+ "text": "That’s"
+ },
+ {
+ "id": 1234,
+ "start": 478.34,
+ "end": 478.6,
+ "text": "over"
+ },
+ {
+ "id": 1235,
+ "start": 478.6,
+ "end": 479.38,
+ "text": "half."
+ },
+ {
+ "id": 1236,
+ "start": 479.38,
+ "end": 479.57,
+ "text": "And"
+ },
+ {
+ "id": 1237,
+ "start": 479.57,
+ "end": 479.78,
+ "text": "as"
+ },
+ {
+ "id": 1238,
+ "start": 479.78,
+ "end": 479.89,
+ "text": "we"
+ },
+ {
+ "id": 1239,
+ "start": 479.89,
+ "end": 480.22,
+ "text": "become"
+ },
+ {
+ "id": 1240,
+ "start": 480.22,
+ "end": 480.4,
+ "text": "more"
+ },
+ {
+ "id": 1241,
+ "start": 480.4,
+ "end": 480.82,
+ "text": "proactive"
+ },
+ {
+ "id": 1242,
+ "start": 480.995,
+ "end": 481.36499999999995,
+ "text": "in"
+ },
+ {
+ "id": 1243,
+ "start": 481.59,
+ "end": 481.91,
+ "text": "taking"
+ },
+ {
+ "id": 1244,
+ "start": 481.91,
+ "end": 482.08,
+ "text": "that"
+ },
+ {
+ "id": 1245,
+ "start": 482.08,
+ "end": 482.32,
+ "text": "stuff"
+ },
+ {
+ "id": 1246,
+ "start": 482.32,
+ "end": 482.6,
+ "text": "down,"
+ },
+ {
+ "id": 1247,
+ "start": 482.6,
+ "end": 482.69,
+ "text": "it"
+ },
+ {
+ "id": 1248,
+ "start": 482.69,
+ "end": 482.89,
+ "text": "means"
+ },
+ {
+ "id": 1249,
+ "start": 482.89,
+ "end": 483,
+ "text": "we"
+ },
+ {
+ "id": 1250,
+ "start": 483,
+ "end": 483.14,
+ "text": "can"
+ },
+ {
+ "id": 1251,
+ "start": 483.14,
+ "end": 483.36,
+ "text": "take"
+ },
+ {
+ "id": 1252,
+ "start": 483.36,
+ "end": 483.45,
+ "text": "it"
+ },
+ {
+ "id": 1253,
+ "start": 483.45,
+ "end": 483.7,
+ "text": "down"
+ },
+ {
+ "id": 1254,
+ "start": 483.7,
+ "end": 484.98,
+ "text": "faster,"
+ },
+ {
+ "id": 1255,
+ "start": 484.98,
+ "end": 485.21,
+ "text": "which"
+ },
+ {
+ "id": 1256,
+ "start": 485.21,
+ "end": 485.45,
+ "text": "means"
+ },
+ {
+ "id": 1257,
+ "start": 485.45,
+ "end": 485.55,
+ "text": "we"
+ },
+ {
+ "id": 1258,
+ "start": 485.55,
+ "end": 485.68,
+ "text": "can"
+ },
+ {
+ "id": 1259,
+ "start": 485.68,
+ "end": 485.89,
+ "text": "get"
+ },
+ {
+ "id": 1260,
+ "start": 485.89,
+ "end": 486.02,
+ "text": "to"
+ },
+ {
+ "id": 1261,
+ "start": 486.02,
+ "end": 486.42,
+ "text": "it"
+ },
+ {
+ "id": 1262,
+ "start": 486.42,
+ "end": 486.79,
+ "text": "before"
+ },
+ {
+ "id": 1263,
+ "start": 486.79,
+ "end": 487.07,
+ "text": "anyone"
+ },
+ {
+ "id": 1264,
+ "start": 487.07,
+ "end": 487.43,
+ "text": "reports"
+ },
+ {
+ "id": 1265,
+ "start": 487.43,
+ "end": 487.97,
+ "text": "it"
+ },
+ {
+ "id": 1266,
+ "start": 487.97,
+ "end": 488.12,
+ "text": "or"
+ },
+ {
+ "id": 1267,
+ "start": 488.12,
+ "end": 488.4,
+ "text": "even"
+ },
+ {
+ "id": 1268,
+ "start": 488.4,
+ "end": 489.43,
+ "text": "before"
+ },
+ {
+ "id": 1269,
+ "start": 489.43,
+ "end": 489.78,
+ "text": "anyone"
+ },
+ {
+ "id": 1270,
+ "start": 489.78,
+ "end": 490.07,
+ "text": "sees"
+ },
+ {
+ "id": 1271,
+ "start": 490.17,
+ "end": 490.4,
+ "text": "it,"
+ },
+ {
+ "id": 1272,
+ "start": 490.56,
+ "end": 490.73,
+ "text": "and"
+ },
+ {
+ "id": 1273,
+ "start": 490.73,
+ "end": 490.82,
+ "text": "we"
+ },
+ {
+ "id": 1274,
+ "start": 490.82,
+ "end": 490.97,
+ "text": "can"
+ },
+ {
+ "id": 1275,
+ "start": 490.97,
+ "end": 491.25,
+ "text": "take"
+ },
+ {
+ "id": 1276,
+ "start": 491.25,
+ "end": 491.5,
+ "text": "down"
+ },
+ {
+ "id": 1277,
+ "start": 491.575,
+ "end": 491.845,
+ "text": "more"
+ },
+ {
+ "id": 1278,
+ "start": 491.9,
+ "end": 492.19,
+ "text": "bad"
+ },
+ {
+ "id": 1279,
+ "start": 492.19,
+ "end": 493.63,
+ "text": "content."
+ },
+ {
+ "id": 1280,
+ "start": 492.79,
+ "end": 493.75,
+ "text": "You"
+ },
+ {
+ "id": 1281,
+ "start": 493.4800000000001,
+ "end": 494.01,
+ "text": "used"
+ },
+ {
+ "id": 1282,
+ "start": 494.17,
+ "end": 494.27,
+ "text": "the"
+ },
+ {
+ "id": 1283,
+ "start": 494.27,
+ "end": 494.5,
+ "text": "word"
+ },
+ {
+ "id": 1284,
+ "start": 494.5,
+ "end": 495,
+ "text": "“slow,”"
+ },
+ {
+ "id": 1285,
+ "start": 495,
+ "end": 495.13,
+ "text": "that"
+ },
+ {
+ "id": 1286,
+ "start": 495.13,
+ "end": 495.2,
+ "text": "it"
+ },
+ {
+ "id": 1287,
+ "start": 495.2,
+ "end": 495.35,
+ "text": "was"
+ },
+ {
+ "id": 1288,
+ "start": 495.35,
+ "end": 495.42,
+ "text": "a"
+ },
+ {
+ "id": 1289,
+ "start": 495.42,
+ "end": 495.77,
+ "text": "slow"
+ },
+ {
+ "id": 1290,
+ "start": 495.77,
+ "end": 496.28,
+ "text": "response"
+ },
+ {
+ "id": 1291,
+ "start": 496.28,
+ "end": 496.42,
+ "text": "by"
+ },
+ {
+ "id": 1292,
+ "start": 496.42,
+ "end": 496.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 1293,
+ "start": 496.9,
+ "end": 497.02,
+ "text": "to"
+ },
+ {
+ "id": 1294,
+ "start": 497.02,
+ "end": 497.25,
+ "text": "this."
+ },
+ {
+ "id": 1295,
+ "start": 497.25,
+ "end": 498.38,
+ "text": "But"
+ },
+ {
+ "id": 1296,
+ "start": 498.38,
+ "end": 498.64,
+ "text": "we’ve"
+ },
+ {
+ "id": 1297,
+ "start": 498.64,
+ "end": 499.03,
+ "text": "spoken"
+ },
+ {
+ "id": 1298,
+ "start": 499.03,
+ "end": 499.15,
+ "text": "to"
+ },
+ {
+ "id": 1299,
+ "start": 499.15,
+ "end": 499.48,
+ "text": "people"
+ },
+ {
+ "id": 1300,
+ "start": 499.48,
+ "end": 499.89,
+ "text": "that,"
+ },
+ {
+ "id": 1301,
+ "start": 499.89,
+ "end": 500.12,
+ "text": "as"
+ },
+ {
+ "id": 1302,
+ "start": 500.12,
+ "end": 500.36,
+ "text": "early"
+ },
+ {
+ "id": 1303,
+ "start": 500.36,
+ "end": 500.45,
+ "text": "as"
+ },
+ {
+ "id": 1304,
+ "start": 501.11,
+ "end": 501.31500000000005,
+ "text": "2015,"
+ },
+ {
+ "id": 1305,
+ "start": 501.86,
+ "end": 502.18,
+ "text": "had"
+ },
+ {
+ "id": 1306,
+ "start": 502.18,
+ "end": 502.68,
+ "text": "spoken"
+ },
+ {
+ "id": 1307,
+ "start": 502.68,
+ "end": 502.79,
+ "text": "to"
+ },
+ {
+ "id": 1308,
+ "start": 502.79,
+ "end": 503.36,
+ "text": "Facebook"
+ },
+ {
+ "id": 1309,
+ "start": 503.36,
+ "end": 503.86,
+ "text": "about"
+ },
+ {
+ "id": 1310,
+ "start": 503.86,
+ "end": 503.98,
+ "text": "the"
+ },
+ {
+ "id": 1311,
+ "start": 503.98,
+ "end": 504.48,
+ "text": "potential"
+ },
+ {
+ "id": 1312,
+ "start": 504.48,
+ "end": 505.31,
+ "text": "for"
+ },
+ {
+ "id": 1313,
+ "start": 505.31,
+ "end": 505.98,
+ "text": "a"
+ },
+ {
+ "id": 1314,
+ "start": 505.98,
+ "end": 506.8,
+ "text": "genocide,"
+ },
+ {
+ "id": 1315,
+ "start": 506.5633333333334,
+ "end": 507.43666666666667,
+ "text": "a"
+ },
+ {
+ "id": 1316,
+ "start": 507.14666666666676,
+ "end": 508.0733333333333,
+ "text": "Rwanda-type"
+ },
+ {
+ "id": 1317,
+ "start": 507.73,
+ "end": 508.71,
+ "text": "situation"
+ },
+ {
+ "id": 1318,
+ "start": 508.71,
+ "end": 509.11,
+ "text": "in"
+ },
+ {
+ "id": 1319,
+ "start": 509.11,
+ "end": 511.28,
+ "text": "Myanmar."
+ },
+ {
+ "id": 1320,
+ "start": 511.28,
+ "end": 511.57,
+ "text": "Be"
+ },
+ {
+ "id": 1321,
+ "start": 511.57,
+ "end": 511.82,
+ "text": "more"
+ },
+ {
+ "id": 1322,
+ "start": 511.82,
+ "end": 512.31,
+ "text": "explicit,"
+ },
+ {
+ "id": 1323,
+ "start": 512.31,
+ "end": 512.45,
+ "text": "if"
+ },
+ {
+ "id": 1324,
+ "start": 512.45,
+ "end": 512.55,
+ "text": "you"
+ },
+ {
+ "id": 1325,
+ "start": 512.55,
+ "end": 512.81,
+ "text": "could,"
+ },
+ {
+ "id": 1326,
+ "start": 512.81,
+ "end": 513.11,
+ "text": "about"
+ },
+ {
+ "id": 1327,
+ "start": 513.11,
+ "end": 513.42,
+ "text": "what"
+ },
+ {
+ "id": 1328,
+ "start": 513.42,
+ "end": 513.74,
+ "text": "“slow”"
+ },
+ {
+ "id": 1329,
+ "start": 513.74,
+ "end": 514.16,
+ "text": "means"
+ },
+ {
+ "id": 1330,
+ "start": 514.16,
+ "end": 514.29,
+ "text": "to"
+ },
+ {
+ "id": 1331,
+ "start": 514.29,
+ "end": 514.58,
+ "text": "you."
+ },
+ {
+ "id": 1332,
+ "start": 514.58,
+ "end": 515,
+ "text": "What"
+ },
+ {
+ "id": 1333,
+ "start": 515,
+ "end": 515.12,
+ "text": "did"
+ },
+ {
+ "id": 1334,
+ "start": 515.12,
+ "end": 515.35,
+ "text": "that"
+ },
+ {
+ "id": 1335,
+ "start": 515.35,
+ "end": 516.1,
+ "text": "mean"
+ },
+ {
+ "id": 1336,
+ "start": 516.1,
+ "end": 516.23,
+ "text": "in"
+ },
+ {
+ "id": 1337,
+ "start": 516.23,
+ "end": 516.5,
+ "text": "terms"
+ },
+ {
+ "id": 1338,
+ "start": 516.5,
+ "end": 516.62,
+ "text": "of"
+ },
+ {
+ "id": 1339,
+ "start": 516.62,
+ "end": 517.19,
+ "text": "responding"
+ },
+ {
+ "id": 1340,
+ "start": 517.19,
+ "end": 517.41,
+ "text": "to"
+ },
+ {
+ "id": 1341,
+ "start": 517.41,
+ "end": 517.75,
+ "text": "the"
+ },
+ {
+ "id": 1342,
+ "start": 517.75,
+ "end": 518.07,
+ "text": "issue"
+ },
+ {
+ "id": 1343,
+ "start": 518.07,
+ "end": 518.17,
+ "text": "of"
+ },
+ {
+ "id": 1344,
+ "start": 518.17,
+ "end": 518.39,
+ "text": "hate"
+ },
+ {
+ "id": 1345,
+ "start": 518.39,
+ "end": 518.82,
+ "text": "speech"
+ },
+ {
+ "id": 1346,
+ "start": 518.82,
+ "end": 520.48,
+ "text": "there?"
+ },
+ {
+ "id": 1347,
+ "start": 520.48,
+ "end": 520.6,
+ "text": "I"
+ },
+ {
+ "id": 1348,
+ "start": 520.6,
+ "end": 521.68,
+ "text": "think"
+ },
+ {
+ "id": 1349,
+ "start": 521.68,
+ "end": 522.11,
+ "text": "the"
+ },
+ {
+ "id": 1350,
+ "start": 522.1,
+ "end": 523.11,
+ "text": "situation"
+ },
+ {
+ "id": 1351,
+ "start": 522.715,
+ "end": 523.27,
+ "text": "and"
+ },
+ {
+ "id": 1352,
+ "start": 523.33,
+ "end": 523.43,
+ "text": "the"
+ },
+ {
+ "id": 1353,
+ "start": 523.43,
+ "end": 524.03,
+ "text": "violence"
+ },
+ {
+ "id": 1354,
+ "start": 524.03,
+ "end": 524.2,
+ "text": "in"
+ },
+ {
+ "id": 1355,
+ "start": 524.2,
+ "end": 525.09,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1356,
+ "start": 524.82,
+ "end": 525.56,
+ "text": "is"
+ },
+ {
+ "id": 1357,
+ "start": 525.805,
+ "end": 526.5699999999999,
+ "text": "horrifying."
+ },
+ {
+ "id": 1358,
+ "start": 526.79,
+ "end": 527.58,
+ "text": "And"
+ },
+ {
+ "id": 1359,
+ "start": 527.58,
+ "end": 528.37,
+ "text": "across"
+ },
+ {
+ "id": 1360,
+ "start": 528.37,
+ "end": 528.5,
+ "text": "the"
+ },
+ {
+ "id": 1361,
+ "start": 528.5,
+ "end": 528.79,
+ "text": "safety"
+ },
+ {
+ "id": 1362,
+ "start": 528.79,
+ "end": 528.88,
+ "text": "and"
+ },
+ {
+ "id": 1363,
+ "start": 528.88,
+ "end": 529.29,
+ "text": "security"
+ },
+ {
+ "id": 1364,
+ "start": 529.29,
+ "end": 529.79,
+ "text": "work,"
+ },
+ {
+ "id": 1365,
+ "start": 529.508,
+ "end": 529.9859999999999,
+ "text": "[Facebook"
+ },
+ {
+ "id": 1366,
+ "start": 529.726,
+ "end": 530.182,
+ "text": "founder"
+ },
+ {
+ "id": 1367,
+ "start": 529.944,
+ "end": 530.3779999999999,
+ "text": "and"
+ },
+ {
+ "id": 1368,
+ "start": 530.162,
+ "end": 530.574,
+ "text": "CEO]"
+ },
+ {
+ "id": 1369,
+ "start": 530.38,
+ "end": 530.77,
+ "text": "Mark"
+ },
+ {
+ "id": 1370,
+ "start": 530.575,
+ "end": 530.835,
+ "text": "[Zuckerberg]"
+ },
+ {
+ "id": 1371,
+ "start": 530.77,
+ "end": 530.9,
+ "text": "has"
+ },
+ {
+ "id": 1372,
+ "start": 531.035,
+ "end": 531.245,
+ "text": "said"
+ },
+ {
+ "id": 1373,
+ "start": 531.3,
+ "end": 531.59,
+ "text": "we"
+ },
+ {
+ "id": 1374,
+ "start": 531.59,
+ "end": 531.96,
+ "text": "didn’t"
+ },
+ {
+ "id": 1375,
+ "start": 531.96,
+ "end": 532.37,
+ "text": "invest"
+ },
+ {
+ "id": 1376,
+ "start": 532.37,
+ "end": 533.68,
+ "text": "enough"
+ },
+ {
+ "id": 1377,
+ "start": 533.68,
+ "end": 534.88,
+ "text": "and"
+ },
+ {
+ "id": 1378,
+ "start": 534.88,
+ "end": 535.13,
+ "text": "we’re"
+ },
+ {
+ "id": 1379,
+ "start": 535.13,
+ "end": 535.5,
+ "text": "changing"
+ },
+ {
+ "id": 1380,
+ "start": 535.5,
+ "end": 537.88,
+ "text": "that."
+ },
+ {
+ "id": 1381,
+ "start": 537.88,
+ "end": 538.08,
+ "text": "We"
+ },
+ {
+ "id": 1382,
+ "start": 538.08,
+ "end": 538.43,
+ "text": "believe"
+ },
+ {
+ "id": 1383,
+ "start": 538.43,
+ "end": 538.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 1384,
+ "start": 538.6949999999999,
+ "end": 539.0150000000001,
+ "text": "–"
+ },
+ {
+ "id": 1385,
+ "start": 538.96,
+ "end": 539.07,
+ "text": "and"
+ },
+ {
+ "id": 1386,
+ "start": 539.07,
+ "end": 539.12,
+ "text": "I"
+ },
+ {
+ "id": 1387,
+ "start": 539.12,
+ "end": 539.59,
+ "text": "firmly"
+ },
+ {
+ "id": 1388,
+ "start": 539.59,
+ "end": 539.96,
+ "text": "believe"
+ },
+ {
+ "id": 1389,
+ "start": 539.7750000000001,
+ "end": 540.24,
+ "text": "–"
+ },
+ {
+ "id": 1390,
+ "start": 539.96,
+ "end": 540.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 1391,
+ "start": 540.52,
+ "end": 540.97,
+ "text": "has"
+ },
+ {
+ "id": 1392,
+ "start": 540.97,
+ "end": 541.06,
+ "text": "a"
+ },
+ {
+ "id": 1393,
+ "start": 541.06,
+ "end": 541.23,
+ "text": "lot"
+ },
+ {
+ "id": 1394,
+ "start": 541.23,
+ "end": 541.38,
+ "text": "of"
+ },
+ {
+ "id": 1395,
+ "start": 541.38,
+ "end": 541.95,
+ "text": "good"
+ },
+ {
+ "id": 1396,
+ "start": 541.95,
+ "end": 542.09,
+ "text": "that"
+ },
+ {
+ "id": 1397,
+ "start": 542.09,
+ "end": 542.18,
+ "text": "it"
+ },
+ {
+ "id": 1398,
+ "start": 542.18,
+ "end": 542.46,
+ "text": "brings"
+ },
+ {
+ "id": 1399,
+ "start": 542.46,
+ "end": 542.68,
+ "text": "into"
+ },
+ {
+ "id": 1400,
+ "start": 542.68,
+ "end": 542.78,
+ "text": "the"
+ },
+ {
+ "id": 1401,
+ "start": 542.78,
+ "end": 543.21,
+ "text": "world."
+ },
+ {
+ "id": 1402,
+ "start": 543.21,
+ "end": 543.42,
+ "text": "But"
+ },
+ {
+ "id": 1403,
+ "start": 543.42,
+ "end": 543.58,
+ "text": "there"
+ },
+ {
+ "id": 1404,
+ "start": 543.58,
+ "end": 543.71,
+ "text": "is"
+ },
+ {
+ "id": 1405,
+ "start": 543.71,
+ "end": 544,
+ "text": "also"
+ },
+ {
+ "id": 1406,
+ "start": 544,
+ "end": 544.79,
+ "text": "abuse"
+ },
+ {
+ "id": 1407,
+ "start": 544.79,
+ "end": 544.9,
+ "text": "and"
+ },
+ {
+ "id": 1408,
+ "start": 544.9,
+ "end": 544.99,
+ "text": "there"
+ },
+ {
+ "id": 1409,
+ "start": 544.99,
+ "end": 545.09,
+ "text": "is"
+ },
+ {
+ "id": 1410,
+ "start": 545.09,
+ "end": 545.37,
+ "text": "also"
+ },
+ {
+ "id": 1411,
+ "start": 545.37,
+ "end": 545.55,
+ "text": "bad"
+ },
+ {
+ "id": 1412,
+ "start": 545.55,
+ "end": 546.34,
+ "text": "content,"
+ },
+ {
+ "id": 1413,
+ "start": 546.34,
+ "end": 546.63,
+ "text": "and"
+ },
+ {
+ "id": 1414,
+ "start": 546.63,
+ "end": 546.77,
+ "text": "it"
+ },
+ {
+ "id": 1415,
+ "start": 546.77,
+ "end": 546.94,
+ "text": "is"
+ },
+ {
+ "id": 1416,
+ "start": 546.94,
+ "end": 547.13,
+ "text": "our"
+ },
+ {
+ "id": 1417,
+ "start": 547.13,
+ "end": 548.58,
+ "text": "responsibility"
+ },
+ {
+ "id": 1418,
+ "start": 548.11,
+ "end": 549.05,
+ "text": "to"
+ },
+ {
+ "id": 1419,
+ "start": 548.89,
+ "end": 549.4499999999999,
+ "text": "minimize"
+ },
+ {
+ "id": 1420,
+ "start": 549.67,
+ "end": 549.85,
+ "text": "that"
+ },
+ {
+ "id": 1421,
+ "start": 549.85,
+ "end": 550.78,
+ "text": "bad"
+ },
+ {
+ "id": 1422,
+ "start": 550.78,
+ "end": 550.97,
+ "text": "and"
+ },
+ {
+ "id": 1423,
+ "start": 550.97,
+ "end": 551.06,
+ "text": "to"
+ },
+ {
+ "id": 1424,
+ "start": 551.4975000000001,
+ "end": 551.6775,
+ "text": "maximize"
+ },
+ {
+ "id": 1425,
+ "start": 552.0250000000001,
+ "end": 552.2950000000001,
+ "text": "the"
+ },
+ {
+ "id": 1426,
+ "start": 552.5525000000001,
+ "end": 552.9125,
+ "text": "good."
+ },
+ {
+ "id": 1427,
+ "start": 553.08,
+ "end": 553.53,
+ "text": "And"
+ },
+ {
+ "id": 1428,
+ "start": 553.53,
+ "end": 554.43,
+ "text": "we’re"
+ },
+ {
+ "id": 1429,
+ "start": 554.43,
+ "end": 555.98,
+ "text": "investing."
+ },
+ {
+ "id": 1430,
+ "start": 555.98,
+ "end": 556.17,
+ "text": "We’re"
+ },
+ {
+ "id": 1431,
+ "start": 556.17,
+ "end": 556.42,
+ "text": "going"
+ },
+ {
+ "id": 1432,
+ "start": 556.42,
+ "end": 556.64,
+ "text": "this"
+ },
+ {
+ "id": 1433,
+ "start": 556.64,
+ "end": 556.89,
+ "text": "year"
+ },
+ {
+ "id": 1434,
+ "start": 556.89,
+ "end": 557.15,
+ "text": "from"
+ },
+ {
+ "id": 1435,
+ "start": 557.3014285714286,
+ "end": 557.6128571428571,
+ "text": "10,000"
+ },
+ {
+ "id": 1436,
+ "start": 557.7128571428572,
+ "end": 558.0757142857143,
+ "text": "to"
+ },
+ {
+ "id": 1437,
+ "start": 558.1242857142856,
+ "end": 558.5385714285713,
+ "text": "20,000"
+ },
+ {
+ "id": 1438,
+ "start": 558.5357142857142,
+ "end": 559.0014285714285,
+ "text": "people"
+ },
+ {
+ "id": 1439,
+ "start": 558.9471428571428,
+ "end": 559.4642857142857,
+ "text": "that"
+ },
+ {
+ "id": 1440,
+ "start": 559.3585714285714,
+ "end": 559.9271428571428,
+ "text": "are"
+ },
+ {
+ "id": 1441,
+ "start": 559.77,
+ "end": 560.39,
+ "text": "working"
+ },
+ {
+ "id": 1442,
+ "start": 560.39,
+ "end": 560.86,
+ "text": "on"
+ },
+ {
+ "id": 1443,
+ "start": 560.86,
+ "end": 561.26,
+ "text": "safety"
+ },
+ {
+ "id": 1444,
+ "start": 561.26,
+ "end": 561.38,
+ "text": "and"
+ },
+ {
+ "id": 1445,
+ "start": 561.38,
+ "end": 562.86,
+ "text": "security."
+ },
+ {
+ "id": 1446,
+ "start": 562.86,
+ "end": 563.01,
+ "text": "It"
+ },
+ {
+ "id": 1447,
+ "start": 563.01,
+ "end": 563.18,
+ "text": "is"
+ },
+ {
+ "id": 1448,
+ "start": 563.18,
+ "end": 563.99,
+ "text": "a"
+ },
+ {
+ "id": 1449,
+ "start": 563.99,
+ "end": 564.64,
+ "text": "huge"
+ },
+ {
+ "id": 1450,
+ "start": 564.64,
+ "end": 565.68,
+ "text": "philosophical"
+ },
+ {
+ "id": 1451,
+ "start": 565.68,
+ "end": 566.09,
+ "text": "shift"
+ },
+ {
+ "id": 1452,
+ "start": 566.09,
+ "end": 566.23,
+ "text": "for"
+ },
+ {
+ "id": 1453,
+ "start": 566.23,
+ "end": 566.96,
+ "text": "us."
+ },
+ {
+ "id": 1454,
+ "start": 566.96,
+ "end": 567.28,
+ "text": "People"
+ },
+ {
+ "id": 1455,
+ "start": 567.28,
+ "end": 567.53,
+ "text": "talk"
+ },
+ {
+ "id": 1456,
+ "start": 567.53,
+ "end": 567.87,
+ "text": "about"
+ },
+ {
+ "id": 1457,
+ "start": 567.87,
+ "end": 568.21,
+ "text": "the"
+ },
+ {
+ "id": 1458,
+ "start": 568.2,
+ "end": 568.54,
+ "text": "shift"
+ },
+ {
+ "id": 1459,
+ "start": 568.4000000000001,
+ "end": 568.8599999999999,
+ "text": "to"
+ },
+ {
+ "id": 1460,
+ "start": 568.6,
+ "end": 569.18,
+ "text": "mobile"
+ },
+ {
+ "id": 1461,
+ "start": 569.18,
+ "end": 569.35,
+ "text": "that"
+ },
+ {
+ "id": 1462,
+ "start": 569.35,
+ "end": 569.42,
+ "text": "the"
+ },
+ {
+ "id": 1463,
+ "start": 569.42,
+ "end": 570.3,
+ "text": "company"
+ },
+ {
+ "id": 1464,
+ "start": 570.3,
+ "end": 571.23,
+ "text": "underwent"
+ },
+ {
+ "id": 1465,
+ "start": 571.23,
+ "end": 571.66,
+ "text": "five"
+ },
+ {
+ "id": 1466,
+ "start": 571.66,
+ "end": 571.75,
+ "text": "or"
+ },
+ {
+ "id": 1467,
+ "start": 571.75,
+ "end": 572.01,
+ "text": "six"
+ },
+ {
+ "id": 1468,
+ "start": 572.01,
+ "end": 572.2,
+ "text": "years"
+ },
+ {
+ "id": 1469,
+ "start": 572.2,
+ "end": 573.13,
+ "text": "ago,"
+ },
+ {
+ "id": 1470,
+ "start": 573.13,
+ "end": 573.38,
+ "text": "which"
+ },
+ {
+ "id": 1471,
+ "start": 573.38,
+ "end": 573.62,
+ "text": "really"
+ },
+ {
+ "id": 1472,
+ "start": 573.62,
+ "end": 574.19,
+ "text": "changed"
+ },
+ {
+ "id": 1473,
+ "start": 574.19,
+ "end": 574.4,
+ "text": "how"
+ },
+ {
+ "id": 1474,
+ "start": 574.4,
+ "end": 574.5,
+ "text": "the"
+ },
+ {
+ "id": 1475,
+ "start": 574.5,
+ "end": 574.86,
+ "text": "company"
+ },
+ {
+ "id": 1476,
+ "start": 574.86,
+ "end": 576.03,
+ "text": "operates."
+ },
+ {
+ "id": 1477,
+ "start": 576.03,
+ "end": 576.3,
+ "text": "This"
+ },
+ {
+ "id": 1478,
+ "start": 576.3,
+ "end": 576.48,
+ "text": "is"
+ },
+ {
+ "id": 1479,
+ "start": 576.48,
+ "end": 576.57,
+ "text": "a"
+ },
+ {
+ "id": 1480,
+ "start": 576.57,
+ "end": 577.14,
+ "text": "shift"
+ },
+ {
+ "id": 1481,
+ "start": 577.14,
+ "end": 577.94,
+ "text": "of"
+ },
+ {
+ "id": 1482,
+ "start": 577.94,
+ "end": 578.08,
+ "text": "a"
+ },
+ {
+ "id": 1483,
+ "start": 578.08,
+ "end": 578.44,
+ "text": "greater"
+ },
+ {
+ "id": 1484,
+ "start": 578.44,
+ "end": 578.97,
+ "text": "magnitude"
+ },
+ {
+ "id": 1485,
+ "start": 579.0350000000001,
+ "end": 579.39,
+ "text": "even."
+ },
+ {
+ "id": 1486,
+ "start": 579.63,
+ "end": 579.81,
+ "text": "And"
+ },
+ {
+ "id": 1487,
+ "start": 579.81,
+ "end": 579.9,
+ "text": "it"
+ },
+ {
+ "id": 1488,
+ "start": 579.9,
+ "end": 580.05,
+ "text": "is"
+ },
+ {
+ "id": 1489,
+ "start": 580.05,
+ "end": 580.99,
+ "text": "harder"
+ },
+ {
+ "id": 1490,
+ "start": 580.99,
+ "end": 581.14,
+ "text": "and"
+ },
+ {
+ "id": 1491,
+ "start": 581.14,
+ "end": 581.29,
+ "text": "more"
+ },
+ {
+ "id": 1492,
+ "start": 581.29,
+ "end": 581.88,
+ "text": "challenging"
+ },
+ {
+ "id": 1493,
+ "start": 581.88,
+ "end": 582.23,
+ "text": "because"
+ },
+ {
+ "id": 1494,
+ "start": 582.23,
+ "end": 582.43,
+ "text": "there"
+ },
+ {
+ "id": 1495,
+ "start": 582.43,
+ "end": 582.67,
+ "text": "are"
+ },
+ {
+ "id": 1496,
+ "start": 582.67,
+ "end": 583.34,
+ "text": "adversaries"
+ },
+ {
+ "id": 1497,
+ "start": 583.34,
+ "end": 583.44,
+ "text": "on"
+ },
+ {
+ "id": 1498,
+ "start": 583.44,
+ "end": 583.56,
+ "text": "the"
+ },
+ {
+ "id": 1499,
+ "start": 583.56,
+ "end": 583.74,
+ "text": "other"
+ },
+ {
+ "id": 1500,
+ "start": 583.74,
+ "end": 584.37,
+ "text": "side"
+ },
+ {
+ "id": 1501,
+ "start": 584.37,
+ "end": 584.62,
+ "text": "who"
+ },
+ {
+ "id": 1502,
+ "start": 584.62,
+ "end": 584.76,
+ "text": "will"
+ },
+ {
+ "id": 1503,
+ "start": 584.76,
+ "end": 584.96,
+ "text": "try"
+ },
+ {
+ "id": 1504,
+ "start": 584.96,
+ "end": 585.05,
+ "text": "to"
+ },
+ {
+ "id": 1505,
+ "start": 585.05,
+ "end": 585.82,
+ "text": "evade"
+ },
+ {
+ "id": 1506,
+ "start": 585.82,
+ "end": 586,
+ "text": "and"
+ },
+ {
+ "id": 1507,
+ "start": 586,
+ "end": 586.16,
+ "text": "try"
+ },
+ {
+ "id": 1508,
+ "start": 586.16,
+ "end": 586.24,
+ "text": "to"
+ },
+ {
+ "id": 1509,
+ "start": 586.24,
+ "end": 586.75,
+ "text": "exploit"
+ },
+ {
+ "id": 1510,
+ "start": 586.75,
+ "end": 586.91,
+ "text": "our"
+ },
+ {
+ "id": 1511,
+ "start": 586.91,
+ "end": 588.38,
+ "text": "systems."
+ },
+ {
+ "id": 1512,
+ "start": 588.38,
+ "end": 588.56,
+ "text": "And"
+ },
+ {
+ "id": 1513,
+ "start": 588.56,
+ "end": 588.7,
+ "text": "there"
+ },
+ {
+ "id": 1514,
+ "start": 588.7,
+ "end": 588.83,
+ "text": "will"
+ },
+ {
+ "id": 1515,
+ "start": 588.83,
+ "end": 588.95,
+ "text": "be"
+ },
+ {
+ "id": 1516,
+ "start": 588.95,
+ "end": 589.09,
+ "text": "new"
+ },
+ {
+ "id": 1517,
+ "start": 589.09,
+ "end": 589.62,
+ "text": "challenges"
+ },
+ {
+ "id": 1518,
+ "start": 589.62,
+ "end": 589.74,
+ "text": "all"
+ },
+ {
+ "id": 1519,
+ "start": 589.74,
+ "end": 589.83,
+ "text": "the"
+ },
+ {
+ "id": 1520,
+ "start": 589.83,
+ "end": 590.73,
+ "text": "time."
+ },
+ {
+ "id": 1521,
+ "start": 590.73,
+ "end": 590.89,
+ "text": "But"
+ },
+ {
+ "id": 1522,
+ "start": 590.89,
+ "end": 590.99,
+ "text": "it"
+ },
+ {
+ "id": 1523,
+ "start": 590.99,
+ "end": 591.21,
+ "text": "is"
+ },
+ {
+ "id": 1524,
+ "start": 591.21,
+ "end": 591.96,
+ "text": "our"
+ },
+ {
+ "id": 1525,
+ "start": 591.96,
+ "end": 592.93,
+ "text": "responsibility."
+ },
+ {
+ "id": 1526,
+ "start": 592.93,
+ "end": 593.05,
+ "text": "It’s"
+ },
+ {
+ "id": 1527,
+ "start": 593.05,
+ "end": 593.19,
+ "text": "our"
+ },
+ {
+ "id": 1528,
+ "start": 593.385,
+ "end": 593.5350000000001,
+ "text": "job,"
+ },
+ {
+ "id": 1529,
+ "start": 593.72,
+ "end": 593.88,
+ "text": "it’s"
+ },
+ {
+ "id": 1530,
+ "start": 593.88,
+ "end": 594.28,
+ "text": "literally"
+ },
+ {
+ "id": 1531,
+ "start": 594.28,
+ "end": 594.47,
+ "text": "my"
+ },
+ {
+ "id": 1532,
+ "start": 594.47,
+ "end": 595.16,
+ "text": "job,"
+ },
+ {
+ "id": 1533,
+ "start": 595.16,
+ "end": 595.28,
+ "text": "to"
+ },
+ {
+ "id": 1534,
+ "start": 595.28,
+ "end": 595.38,
+ "text": "be"
+ },
+ {
+ "id": 1535,
+ "start": 595.38,
+ "end": 596.58,
+ "text": "proactive"
+ },
+ {
+ "id": 1536,
+ "start": 596.58,
+ "end": 596.74,
+ "text": "and"
+ },
+ {
+ "id": 1537,
+ "start": 596.74,
+ "end": 596.87,
+ "text": "get"
+ },
+ {
+ "id": 1538,
+ "start": 596.87,
+ "end": 597.07,
+ "text": "ahead"
+ },
+ {
+ "id": 1539,
+ "start": 597.07,
+ "end": 597.16,
+ "text": "of"
+ },
+ {
+ "id": 1540,
+ "start": 597.16,
+ "end": 598.7,
+ "text": "it."
+ },
+ {
+ "id": 1541,
+ "start": 598.7,
+ "end": 598.96,
+ "text": "There’s"
+ },
+ {
+ "id": 1542,
+ "start": 598.96,
+ "end": 599.03,
+ "text": "a"
+ },
+ {
+ "id": 1543,
+ "start": 599.03,
+ "end": 599.68,
+ "text": "situation"
+ },
+ {
+ "id": 1544,
+ "start": 599.68,
+ "end": 599.79,
+ "text": "in"
+ },
+ {
+ "id": 1545,
+ "start": 599.79,
+ "end": 599.87,
+ "text": "the"
+ },
+ {
+ "id": 1546,
+ "start": 599.87,
+ "end": 600.49,
+ "text": "Philippines,"
+ },
+ {
+ "id": 1547,
+ "start": 600.49,
+ "end": 600.65,
+ "text": "for"
+ },
+ {
+ "id": 1548,
+ "start": 600.65,
+ "end": 601.12,
+ "text": "instance,"
+ },
+ {
+ "id": 1549,
+ "start": 601.12,
+ "end": 602.185,
+ "text": "where"
+ },
+ {
+ "id": 1550,
+ "start": 601.52,
+ "end": 602.825,
+ "text": "President"
+ },
+ {
+ "id": 1551,
+ "start": 602.1725,
+ "end": 603.3000000000001,
+ "text": "[Rodrigo]"
+ },
+ {
+ "id": 1552,
+ "start": 602.825,
+ "end": 603.775,
+ "text": "Duterte"
+ },
+ {
+ "id": 1553,
+ "start": 603.775,
+ "end": 604.245,
+ "text": "has"
+ },
+ {
+ "id": 1554,
+ "start": 604.245,
+ "end": 605.925,
+ "text": "been"
+ },
+ {
+ "id": 1555,
+ "start": 605.925,
+ "end": 606.495,
+ "text": "attacking"
+ },
+ {
+ "id": 1556,
+ "start": 606.495,
+ "end": 607.205,
+ "text": "critics,"
+ },
+ {
+ "id": 1557,
+ "start": 608.02,
+ "end": 608.5450000000001,
+ "text": "mobilizing"
+ },
+ {
+ "id": 1558,
+ "start": 609.545,
+ "end": 609.885,
+ "text": "large"
+ },
+ {
+ "id": 1559,
+ "start": 609.885,
+ "end": 610.265,
+ "text": "amounts"
+ },
+ {
+ "id": 1560,
+ "start": 610.265,
+ "end": 610.375,
+ "text": "of"
+ },
+ {
+ "id": 1561,
+ "start": 610.375,
+ "end": 611.325,
+ "text": "people"
+ },
+ {
+ "id": 1562,
+ "start": 611.325,
+ "end": 611.725,
+ "text": "on"
+ },
+ {
+ "id": 1563,
+ "start": 611.725,
+ "end": 612.665,
+ "text": "Facebook"
+ },
+ {
+ "id": 1564,
+ "start": 612.665,
+ "end": 613.405,
+ "text": "to"
+ },
+ {
+ "id": 1565,
+ "start": 613.405,
+ "end": 613.825,
+ "text": "attack"
+ },
+ {
+ "id": 1566,
+ "start": 613.825,
+ "end": 614.255,
+ "text": "critics"
+ },
+ {
+ "id": 1567,
+ "start": 614.255,
+ "end": 614.365,
+ "text": "of"
+ },
+ {
+ "id": 1568,
+ "start": 614.365,
+ "end": 614.885,
+ "text": "his"
+ },
+ {
+ "id": 1569,
+ "start": 615.315,
+ "end": 615.815,
+ "text": "and"
+ },
+ {
+ "id": 1570,
+ "start": 616.265,
+ "end": 616.745,
+ "text": "to"
+ },
+ {
+ "id": 1571,
+ "start": 616.745,
+ "end": 617.515,
+ "text": "basically"
+ },
+ {
+ "id": 1572,
+ "start": 617.515,
+ "end": 617.875,
+ "text": "threaten"
+ },
+ {
+ "id": 1573,
+ "start": 617.875,
+ "end": 618.735,
+ "text": "people."
+ },
+ {
+ "id": 1574,
+ "start": 618.735,
+ "end": 619.545,
+ "text": "And"
+ },
+ {
+ "id": 1575,
+ "start": 619.305,
+ "end": 619.805,
+ "text": "it’s"
+ },
+ {
+ "id": 1576,
+ "start": 620.0375,
+ "end": 620.5075,
+ "text": "organic"
+ },
+ {
+ "id": 1577,
+ "start": 620.7700000000001,
+ "end": 621.2100000000002,
+ "text": "to"
+ },
+ {
+ "id": 1578,
+ "start": 621.5025000000002,
+ "end": 621.9125,
+ "text": "Facebook."
+ },
+ {
+ "id": 1579,
+ "start": 622.235,
+ "end": 622.615,
+ "text": "There’s"
+ },
+ {
+ "id": 1580,
+ "start": 622.615,
+ "end": 622.835,
+ "text": "hate"
+ },
+ {
+ "id": 1581,
+ "start": 622.935,
+ "end": 623.1400000000001,
+ "text": "speech,"
+ },
+ {
+ "id": 1582,
+ "start": 623.255,
+ "end": 623.445,
+ "text": "there’s"
+ },
+ {
+ "id": 1583,
+ "start": 623.5799999999999,
+ "end": 623.7750000000001,
+ "text": "memes,"
+ },
+ {
+ "id": 1584,
+ "start": 623.905,
+ "end": 624.105,
+ "text": "there’s"
+ },
+ {
+ "id": 1585,
+ "start": 624.105,
+ "end": 624.225,
+ "text": "all"
+ },
+ {
+ "id": 1586,
+ "start": 624.225,
+ "end": 624.475,
+ "text": "sorts"
+ },
+ {
+ "id": 1587,
+ "start": 624.475,
+ "end": 624.575,
+ "text": "of"
+ },
+ {
+ "id": 1588,
+ "start": 624.575,
+ "end": 625.125,
+ "text": "things."
+ },
+ {
+ "id": 1589,
+ "start": 625.125,
+ "end": 627.975,
+ "text": "What"
+ },
+ {
+ "id": 1590,
+ "start": 627.975,
+ "end": 628.035,
+ "text": "are"
+ },
+ {
+ "id": 1591,
+ "start": 628.035,
+ "end": 628.145,
+ "text": "you"
+ },
+ {
+ "id": 1592,
+ "start": 628.145,
+ "end": 628.565,
+ "text": "doing"
+ },
+ {
+ "id": 1593,
+ "start": 628.5699999999999,
+ "end": 629.065,
+ "text": "to"
+ },
+ {
+ "id": 1594,
+ "start": 628.995,
+ "end": 629.565,
+ "text": "correct"
+ },
+ {
+ "id": 1595,
+ "start": 629.565,
+ "end": 629.785,
+ "text": "that"
+ },
+ {
+ "id": 1596,
+ "start": 629.785,
+ "end": 630.435,
+ "text": "issue"
+ },
+ {
+ "id": 1597,
+ "start": 630.435,
+ "end": 630.795,
+ "text": "in"
+ },
+ {
+ "id": 1598,
+ "start": 630.795,
+ "end": 630.875,
+ "text": "the"
+ },
+ {
+ "id": 1599,
+ "start": 630.875,
+ "end": 631.965,
+ "text": "Philippines?"
+ },
+ {
+ "id": 1600,
+ "start": 631.965,
+ "end": 632.155,
+ "text": "In"
+ },
+ {
+ "id": 1601,
+ "start": 632.155,
+ "end": 632.245,
+ "text": "the"
+ },
+ {
+ "id": 1602,
+ "start": 632.245,
+ "end": 632.885,
+ "text": "Philippines,"
+ },
+ {
+ "id": 1603,
+ "start": 632.885,
+ "end": 633.055,
+ "text": "we"
+ },
+ {
+ "id": 1604,
+ "start": 633.055,
+ "end": 633.195,
+ "text": "need"
+ },
+ {
+ "id": 1605,
+ "start": 633.195,
+ "end": 633.285,
+ "text": "to"
+ },
+ {
+ "id": 1606,
+ "start": 633.285,
+ "end": 633.585,
+ "text": "keep"
+ },
+ {
+ "id": 1607,
+ "start": 633.585,
+ "end": 634.085,
+ "text": "pushing"
+ },
+ {
+ "id": 1608,
+ "start": 634.085,
+ "end": 634.695,
+ "text": "on"
+ },
+ {
+ "id": 1609,
+ "start": 634.695,
+ "end": 635.165,
+ "text": "people"
+ },
+ {
+ "id": 1610,
+ "start": 635.165,
+ "end": 635.285,
+ "text": "and"
+ },
+ {
+ "id": 1611,
+ "start": 635.9183333333333,
+ "end": 636.0583333333333,
+ "text": "technology."
+ },
+ {
+ "id": 1612,
+ "start": 636.6716666666666,
+ "end": 636.8316666666666,
+ "text": "People—we"
+ },
+ {
+ "id": 1613,
+ "start": 637.425,
+ "end": 637.605,
+ "text": "have"
+ },
+ {
+ "id": 1614,
+ "start": 637.605,
+ "end": 638.445,
+ "text": "reviewers"
+ },
+ {
+ "id": 1615,
+ "start": 638.445,
+ "end": 638.925,
+ "text": "who"
+ },
+ {
+ "id": 1616,
+ "start": 638.925,
+ "end": 639.465,
+ "text": "understand"
+ },
+ {
+ "id": 1617,
+ "start": 639.465,
+ "end": 639.545,
+ "text": "the"
+ },
+ {
+ "id": 1618,
+ "start": 639.545,
+ "end": 639.835,
+ "text": "local"
+ },
+ {
+ "id": 1619,
+ "start": 639.835,
+ "end": 640.425,
+ "text": "context."
+ },
+ {
+ "id": 1620,
+ "start": 640.425,
+ "end": 640.555,
+ "text": "We"
+ },
+ {
+ "id": 1621,
+ "start": 640.555,
+ "end": 641.215,
+ "text": "have"
+ },
+ {
+ "id": 1622,
+ "start": 641.215,
+ "end": 641.585,
+ "text": "people"
+ },
+ {
+ "id": 1623,
+ "start": 641.585,
+ "end": 641.765,
+ "text": "on"
+ },
+ {
+ "id": 1624,
+ "start": 641.765,
+ "end": 641.855,
+ "text": "the"
+ },
+ {
+ "id": 1625,
+ "start": 641.855,
+ "end": 642.325,
+ "text": "ground"
+ },
+ {
+ "id": 1626,
+ "start": 642.325,
+ "end": 642.545,
+ "text": "who"
+ },
+ {
+ "id": 1627,
+ "start": 642.545,
+ "end": 642.715,
+ "text": "can"
+ },
+ {
+ "id": 1628,
+ "start": 642.715,
+ "end": 643.045,
+ "text": "work"
+ },
+ {
+ "id": 1629,
+ "start": 643.045,
+ "end": 643.235,
+ "text": "with"
+ },
+ {
+ "id": 1630,
+ "start": 643.235,
+ "end": 644.005,
+ "text": "NGOs"
+ },
+ {
+ "id": 1631,
+ "start": 644.005,
+ "end": 644.175,
+ "text": "and"
+ },
+ {
+ "id": 1632,
+ "start": 644.175,
+ "end": 644.335,
+ "text": "with"
+ },
+ {
+ "id": 1633,
+ "start": 644.335,
+ "end": 644.865,
+ "text": "journalists"
+ },
+ {
+ "id": 1634,
+ "start": 644.865,
+ "end": 645.025,
+ "text": "to"
+ },
+ {
+ "id": 1635,
+ "start": 645.025,
+ "end": 645.315,
+ "text": "better"
+ },
+ {
+ "id": 1636,
+ "start": 645.315,
+ "end": 645.935,
+ "text": "understand"
+ },
+ {
+ "id": 1637,
+ "start": 645.935,
+ "end": 646.115,
+ "text": "those"
+ },
+ {
+ "id": 1638,
+ "start": 646.2824999999999,
+ "end": 646.5374999999999,
+ "text": "experiences"
+ },
+ {
+ "id": 1639,
+ "start": 646.6299999999999,
+ "end": 646.9599999999999,
+ "text": "that"
+ },
+ {
+ "id": 1640,
+ "start": 646.9775,
+ "end": 647.3824999999999,
+ "text": "are"
+ },
+ {
+ "id": 1641,
+ "start": 647.325,
+ "end": 647.805,
+ "text": "happening"
+ },
+ {
+ "id": 1642,
+ "start": 647.805,
+ "end": 647.975,
+ "text": "through"
+ },
+ {
+ "id": 1643,
+ "start": 647.975,
+ "end": 648.095,
+ "text": "our"
+ },
+ {
+ "id": 1644,
+ "start": 648.2616666666668,
+ "end": 648.3883333333333,
+ "text": "platform"
+ },
+ {
+ "id": 1645,
+ "start": 648.5483333333334,
+ "end": 648.6816666666666,
+ "text": "so"
+ },
+ {
+ "id": 1646,
+ "start": 648.835,
+ "end": 648.975,
+ "text": "that"
+ },
+ {
+ "id": 1647,
+ "start": 648.975,
+ "end": 649.075,
+ "text": "we"
+ },
+ {
+ "id": 1648,
+ "start": 649.075,
+ "end": 649.215,
+ "text": "can"
+ },
+ {
+ "id": 1649,
+ "start": 649.215,
+ "end": 650.005,
+ "text": "build"
+ },
+ {
+ "id": 1650,
+ "start": 650.005,
+ "end": 650.135,
+ "text": "the"
+ },
+ {
+ "id": 1651,
+ "start": 650.135,
+ "end": 650.345,
+ "text": "right"
+ },
+ {
+ "id": 1652,
+ "start": 650.345,
+ "end": 651.405,
+ "text": "solutions"
+ },
+ {
+ "id": 1653,
+ "start": 651.405,
+ "end": 651.605,
+ "text": "and"
+ },
+ {
+ "id": 1654,
+ "start": 651.605,
+ "end": 652.825,
+ "text": "technologies,"
+ },
+ {
+ "id": 1655,
+ "start": 652.825,
+ "end": 653.215,
+ "text": "like"
+ },
+ {
+ "id": 1656,
+ "start": 653.215,
+ "end": 654.085,
+ "text": "proactively"
+ },
+ {
+ "id": 1657,
+ "start": 654.085,
+ "end": 654.815,
+ "text": "detecting"
+ },
+ {
+ "id": 1658,
+ "start": 654.815,
+ "end": 655.055,
+ "text": "fake"
+ },
+ {
+ "id": 1659,
+ "start": 655.055,
+ "end": 655.515,
+ "text": "accounts,"
+ },
+ {
+ "id": 1660,
+ "start": 655.515,
+ "end": 656.115,
+ "text": "proactively"
+ },
+ {
+ "id": 1661,
+ "start": 656.115,
+ "end": 656.975,
+ "text": "detecting"
+ },
+ {
+ "id": 1662,
+ "start": 656.975,
+ "end": 657.335,
+ "text": "hate"
+ },
+ {
+ "id": 1663,
+ "start": 657.335,
+ "end": 658.175,
+ "text": "speech,"
+ },
+ {
+ "id": 1664,
+ "start": 658.175,
+ "end": 658.495,
+ "text": "building"
+ },
+ {
+ "id": 1665,
+ "start": 658.495,
+ "end": 658.905,
+ "text": "tools"
+ },
+ {
+ "id": 1666,
+ "start": 658.905,
+ "end": 659.055,
+ "text": "for"
+ },
+ {
+ "id": 1667,
+ "start": 659.055,
+ "end": 659.855,
+ "text": "people"
+ },
+ {
+ "id": 1668,
+ "start": 659.855,
+ "end": 660.025,
+ "text": "to"
+ },
+ {
+ "id": 1669,
+ "start": 660.025,
+ "end": 660.385,
+ "text": "prevent"
+ },
+ {
+ "id": 1670,
+ "start": 660.385,
+ "end": 661.375,
+ "text": "harassment,"
+ },
+ {
+ "id": 1671,
+ "start": 661.375,
+ "end": 662.085,
+ "text": "and"
+ },
+ {
+ "id": 1672,
+ "start": 662.085,
+ "end": 662.195,
+ "text": "a"
+ },
+ {
+ "id": 1673,
+ "start": 662.195,
+ "end": 662.535,
+ "text": "lot"
+ },
+ {
+ "id": 1674,
+ "start": 662.535,
+ "end": 662.825,
+ "text": "of"
+ },
+ {
+ "id": 1675,
+ "start": 662.825,
+ "end": 663.465,
+ "text": "developments"
+ },
+ {
+ "id": 1676,
+ "start": 663.465,
+ "end": 663.635,
+ "text": "in"
+ },
+ {
+ "id": 1677,
+ "start": 663.635,
+ "end": 664.075,
+ "text": "our"
+ },
+ {
+ "id": 1678,
+ "start": 664.3600000000001,
+ "end": 664.65,
+ "text": "work"
+ },
+ {
+ "id": 1679,
+ "start": 665.085,
+ "end": 665.225,
+ "text": "on"
+ },
+ {
+ "id": 1680,
+ "start": 665.225,
+ "end": 666.115,
+ "text": "misinformation."
+ },
+ {
+ "id": 1681,
+ "start": 666.115,
+ "end": 666.315,
+ "text": "We"
+ },
+ {
+ "id": 1682,
+ "start": 666.315,
+ "end": 666.625,
+ "text": "work"
+ },
+ {
+ "id": 1683,
+ "start": 666.625,
+ "end": 666.905,
+ "text": "with"
+ },
+ {
+ "id": 1684,
+ "start": 666.905,
+ "end": 667.285,
+ "text": "three"
+ },
+ {
+ "id": 1685,
+ "start": 667.385,
+ "end": 668.055,
+ "text": "fact-checking"
+ },
+ {
+ "id": 1686,
+ "start": 667.865,
+ "end": 668.825,
+ "text": "partners"
+ },
+ {
+ "id": 1687,
+ "start": 668.825,
+ "end": 668.975,
+ "text": "in"
+ },
+ {
+ "id": 1688,
+ "start": 668.975,
+ "end": 669.055,
+ "text": "the"
+ },
+ {
+ "id": 1689,
+ "start": 669.055,
+ "end": 669.985,
+ "text": "Philippines."
+ },
+ {
+ "id": 1690,
+ "start": 669.985,
+ "end": 670.175,
+ "text": "We"
+ },
+ {
+ "id": 1691,
+ "start": 670.175,
+ "end": 670.395,
+ "text": "have"
+ },
+ {
+ "id": 1692,
+ "start": 670.523,
+ "end": 670.742,
+ "text": "Rappler;"
+ },
+ {
+ "id": 1693,
+ "start": 670.871,
+ "end": 671.0889999999999,
+ "text": "we"
+ },
+ {
+ "id": 1694,
+ "start": 671.2189999999999,
+ "end": 671.4359999999999,
+ "text": "have"
+ },
+ {
+ "id": 1695,
+ "start": 671.567,
+ "end": 671.7829999999999,
+ "text": "Verifile;"
+ },
+ {
+ "id": 1696,
+ "start": 671.915,
+ "end": 672.13,
+ "text": "we"
+ },
+ {
+ "id": 1697,
+ "start": 672.263,
+ "end": 672.477,
+ "text": "have"
+ },
+ {
+ "id": 1698,
+ "start": 672.611,
+ "end": 672.824,
+ "text": "AFP"
+ },
+ {
+ "id": 1699,
+ "start": 672.959,
+ "end": 673.1709999999999,
+ "text": "[Agence"
+ },
+ {
+ "id": 1700,
+ "start": 673.307,
+ "end": 673.5179999999999,
+ "text": "France-Presse]."
+ },
+ {
+ "id": 1701,
+ "start": 673.655,
+ "end": 673.865,
+ "text": "And"
+ },
+ {
+ "id": 1702,
+ "start": 673.865,
+ "end": 673.985,
+ "text": "the"
+ },
+ {
+ "id": 1703,
+ "start": 673.985,
+ "end": 674.315,
+ "text": "goal"
+ },
+ {
+ "id": 1704,
+ "start": 674.315,
+ "end": 674.465,
+ "text": "is"
+ },
+ {
+ "id": 1705,
+ "start": 674.465,
+ "end": 674.645,
+ "text": "for"
+ },
+ {
+ "id": 1706,
+ "start": 674.645,
+ "end": 676.335,
+ "text": "misinformation"
+ },
+ {
+ "id": 1707,
+ "start": 676.335,
+ "end": 676.495,
+ "text": "to"
+ },
+ {
+ "id": 1708,
+ "start": 676.495,
+ "end": 676.785,
+ "text": "not"
+ },
+ {
+ "id": 1709,
+ "start": 676.785,
+ "end": 677.145,
+ "text": "spread"
+ },
+ {
+ "id": 1710,
+ "start": 677.145,
+ "end": 677.375,
+ "text": "on"
+ },
+ {
+ "id": 1711,
+ "start": 677.375,
+ "end": 678.895,
+ "text": "Facebook."
+ },
+ {
+ "id": 1712,
+ "start": 678.895,
+ "end": 679.095,
+ "text": "One"
+ },
+ {
+ "id": 1713,
+ "start": 679.095,
+ "end": 679.165,
+ "text": "of"
+ },
+ {
+ "id": 1714,
+ "start": 679.165,
+ "end": 679.265,
+ "text": "the"
+ },
+ {
+ "id": 1715,
+ "start": 679.265,
+ "end": 679.555,
+ "text": "things"
+ },
+ {
+ "id": 1716,
+ "start": 679.555,
+ "end": 679.665,
+ "text": "that"
+ },
+ {
+ "id": 1717,
+ "start": 679.665,
+ "end": 679.835,
+ "text": "we’ve"
+ },
+ {
+ "id": 1718,
+ "start": 679.835,
+ "end": 680.085,
+ "text": "heard"
+ },
+ {
+ "id": 1719,
+ "start": 680.085,
+ "end": 680.285,
+ "text": "from"
+ },
+ {
+ "id": 1720,
+ "start": 680.285,
+ "end": 680.495,
+ "text": "some"
+ },
+ {
+ "id": 1721,
+ "start": 680.495,
+ "end": 680.605,
+ "text": "of"
+ },
+ {
+ "id": 1722,
+ "start": 680.605,
+ "end": 680.935,
+ "text": "those"
+ },
+ {
+ "id": 1723,
+ "start": 681.0500000000001,
+ "end": 681.41,
+ "text": "third-party"
+ },
+ {
+ "id": 1724,
+ "start": 681.495,
+ "end": 681.885,
+ "text": "groups"
+ },
+ {
+ "id": 1725,
+ "start": 681.885,
+ "end": 682.015,
+ "text": "is"
+ },
+ {
+ "id": 1726,
+ "start": 682.015,
+ "end": 682.185,
+ "text": "that"
+ },
+ {
+ "id": 1727,
+ "start": 682.185,
+ "end": 682.305,
+ "text": "they’re"
+ },
+ {
+ "id": 1728,
+ "start": 682.305,
+ "end": 682.665,
+ "text": "spending"
+ },
+ {
+ "id": 1729,
+ "start": 682.665,
+ "end": 682.715,
+ "text": "a"
+ },
+ {
+ "id": 1730,
+ "start": 682.715,
+ "end": 682.925,
+ "text": "lot"
+ },
+ {
+ "id": 1731,
+ "start": 682.925,
+ "end": 683.005,
+ "text": "of"
+ },
+ {
+ "id": 1732,
+ "start": 683.005,
+ "end": 683.765,
+ "text": "time"
+ },
+ {
+ "id": 1733,
+ "start": 683.765,
+ "end": 684.275,
+ "text": "helping"
+ },
+ {
+ "id": 1734,
+ "start": 684.275,
+ "end": 684.425,
+ "text": "you"
+ },
+ {
+ "id": 1735,
+ "start": 684.425,
+ "end": 685.315,
+ "text": "guys"
+ },
+ {
+ "id": 1736,
+ "start": 685.315,
+ "end": 685.675,
+ "text": "fix"
+ },
+ {
+ "id": 1737,
+ "start": 685.675,
+ "end": 685.885,
+ "text": "this"
+ },
+ {
+ "id": 1738,
+ "start": 686.1683333333333,
+ "end": 686.3583333333332,
+ "text": "mess"
+ },
+ {
+ "id": 1739,
+ "start": 686.6616666666666,
+ "end": 686.8316666666666,
+ "text": "while"
+ },
+ {
+ "id": 1740,
+ "start": 687.155,
+ "end": 687.305,
+ "text": "they"
+ },
+ {
+ "id": 1741,
+ "start": 687.305,
+ "end": 687.505,
+ "text": "should"
+ },
+ {
+ "id": 1742,
+ "start": 687.505,
+ "end": 687.695,
+ "text": "be"
+ },
+ {
+ "id": 1743,
+ "start": 687.6716666666666,
+ "end": 687.9616666666667,
+ "text": "spending"
+ },
+ {
+ "id": 1744,
+ "start": 687.8383333333334,
+ "end": 688.2283333333334,
+ "text": "time"
+ },
+ {
+ "id": 1745,
+ "start": 688.005,
+ "end": 688.495,
+ "text": "reporting"
+ },
+ {
+ "id": 1746,
+ "start": 688.495,
+ "end": 688.645,
+ "text": "on"
+ },
+ {
+ "id": 1747,
+ "start": 688.645,
+ "end": 688.855,
+ "text": "what’s"
+ },
+ {
+ "id": 1748,
+ "start": 688.855,
+ "end": 689.185,
+ "text": "going"
+ },
+ {
+ "id": 1749,
+ "start": 689.185,
+ "end": 690.225,
+ "text": "on."
+ },
+ {
+ "id": 1750,
+ "start": 690.225,
+ "end": 690.365,
+ "text": "Are"
+ },
+ {
+ "id": 1751,
+ "start": 690.365,
+ "end": 690.905,
+ "text": "you"
+ },
+ {
+ "id": 1752,
+ "start": 690.645,
+ "end": 691.615,
+ "text": "shifting"
+ },
+ {
+ "id": 1753,
+ "start": 691.23,
+ "end": 691.8299999999999,
+ "text": "too"
+ },
+ {
+ "id": 1754,
+ "start": 691.815,
+ "end": 692.045,
+ "text": "much"
+ },
+ {
+ "id": 1755,
+ "start": 692.045,
+ "end": 692.135,
+ "text": "of"
+ },
+ {
+ "id": 1756,
+ "start": 692.135,
+ "end": 692.215,
+ "text": "the"
+ },
+ {
+ "id": 1757,
+ "start": 692.215,
+ "end": 693.165,
+ "text": "responsibility"
+ },
+ {
+ "id": 1758,
+ "start": 693.0499999999998,
+ "end": 693.705,
+ "text": "onto"
+ },
+ {
+ "id": 1759,
+ "start": 693.885,
+ "end": 694.245,
+ "text": "third"
+ },
+ {
+ "id": 1760,
+ "start": 694.245,
+ "end": 694.695,
+ "text": "parties"
+ },
+ {
+ "id": 1761,
+ "start": 694.695,
+ "end": 694.825,
+ "text": "in"
+ },
+ {
+ "id": 1762,
+ "start": 694.825,
+ "end": 695.195,
+ "text": "places"
+ },
+ {
+ "id": 1763,
+ "start": 695.195,
+ "end": 695.345,
+ "text": "like"
+ },
+ {
+ "id": 1764,
+ "start": 695.345,
+ "end": 695.435,
+ "text": "the"
+ },
+ {
+ "id": 1765,
+ "start": 695.435,
+ "end": 696.015,
+ "text": "Philippines"
+ },
+ {
+ "id": 1766,
+ "start": 696.015,
+ "end": 696.095,
+ "text": "or"
+ },
+ {
+ "id": 1767,
+ "start": 696.095,
+ "end": 697.155,
+ "text": "Myanmar"
+ },
+ {
+ "id": 1768,
+ "start": 696.825,
+ "end": 697.365,
+ "text": "in"
+ },
+ {
+ "id": 1769,
+ "start": 697.3316666666667,
+ "end": 697.7783333333333,
+ "text": "order"
+ },
+ {
+ "id": 1770,
+ "start": 697.8383333333334,
+ "end": 698.1916666666666,
+ "text": "to"
+ },
+ {
+ "id": 1771,
+ "start": 698.345,
+ "end": 698.605,
+ "text": "fix"
+ },
+ {
+ "id": 1772,
+ "start": 698.605,
+ "end": 698.945,
+ "text": "something"
+ },
+ {
+ "id": 1773,
+ "start": 698.945,
+ "end": 699.205,
+ "text": "that"
+ },
+ {
+ "id": 1774,
+ "start": 699.205,
+ "end": 699.455,
+ "text": "should"
+ },
+ {
+ "id": 1775,
+ "start": 699.455,
+ "end": 699.585,
+ "text": "be"
+ },
+ {
+ "id": 1776,
+ "start": 699.585,
+ "end": 700.055,
+ "text": "inherently"
+ },
+ {
+ "id": 1777,
+ "start": 700.055,
+ "end": 700.215,
+ "text": "your"
+ },
+ {
+ "id": 1778,
+ "start": 700.4616666666666,
+ "end": 700.645,
+ "text": "problem?"
+ },
+ {
+ "id": 1779,
+ "start": 700.8683333333332,
+ "end": 701.0749999999999,
+ "text": "I"
+ },
+ {
+ "id": 1780,
+ "start": 701.275,
+ "end": 701.505,
+ "text": "think"
+ },
+ {
+ "id": 1781,
+ "start": 701.505,
+ "end": 701.885,
+ "text": "safety"
+ },
+ {
+ "id": 1782,
+ "start": 701.885,
+ "end": 701.985,
+ "text": "and"
+ },
+ {
+ "id": 1783,
+ "start": 701.985,
+ "end": 702.515,
+ "text": "security"
+ },
+ {
+ "id": 1784,
+ "start": 702.515,
+ "end": 703.165,
+ "text": "broadly"
+ },
+ {
+ "id": 1785,
+ "start": 703.165,
+ "end": 703.325,
+ "text": "is"
+ },
+ {
+ "id": 1786,
+ "start": 703.325,
+ "end": 703.945,
+ "text": "something"
+ },
+ {
+ "id": 1787,
+ "start": 703.945,
+ "end": 704.635,
+ "text": "where,"
+ },
+ {
+ "id": 1788,
+ "start": 704.635,
+ "end": 704.815,
+ "text": "as"
+ },
+ {
+ "id": 1789,
+ "start": 704.815,
+ "end": 704.945,
+ "text": "an"
+ },
+ {
+ "id": 1790,
+ "start": 704.945,
+ "end": 705.825,
+ "text": "industry,"
+ },
+ {
+ "id": 1791,
+ "start": 705.825,
+ "end": 705.995,
+ "text": "we"
+ },
+ {
+ "id": 1792,
+ "start": 705.995,
+ "end": 706.145,
+ "text": "need"
+ },
+ {
+ "id": 1793,
+ "start": 706.145,
+ "end": 706.225,
+ "text": "to"
+ },
+ {
+ "id": 1794,
+ "start": 706.225,
+ "end": 706.595,
+ "text": "partner"
+ },
+ {
+ "id": 1795,
+ "start": 706.595,
+ "end": 707.135,
+ "text": "together"
+ },
+ {
+ "id": 1796,
+ "start": 707.005,
+ "end": 707.4649999999999,
+ "text": "–"
+ },
+ {
+ "id": 1797,
+ "start": 707.415,
+ "end": 707.795,
+ "text": "whether"
+ },
+ {
+ "id": 1798,
+ "start": 707.795,
+ "end": 708.045,
+ "text": "it’s"
+ },
+ {
+ "id": 1799,
+ "start": 708.045,
+ "end": 708.385,
+ "text": "one"
+ },
+ {
+ "id": 1800,
+ "start": 708.385,
+ "end": 708.935,
+ "text": "technology"
+ },
+ {
+ "id": 1801,
+ "start": 708.935,
+ "end": 709.475,
+ "text": "company,"
+ },
+ {
+ "id": 1802,
+ "start": 709.475,
+ "end": 709.755,
+ "text": "whether"
+ },
+ {
+ "id": 1803,
+ "start": 709.755,
+ "end": 709.905,
+ "text": "it’s"
+ },
+ {
+ "id": 1804,
+ "start": 709.905,
+ "end": 709.975,
+ "text": "a"
+ },
+ {
+ "id": 1805,
+ "start": 710.13,
+ "end": 710.215,
+ "text": "series"
+ },
+ {
+ "id": 1806,
+ "start": 710.355,
+ "end": 710.455,
+ "text": "of"
+ },
+ {
+ "id": 1807,
+ "start": 710.455,
+ "end": 710.995,
+ "text": "technology"
+ },
+ {
+ "id": 1808,
+ "start": 711.205,
+ "end": 711.6250000000001,
+ "text": "companies."
+ },
+ {
+ "id": 1809,
+ "start": 711.955,
+ "end": 712.255,
+ "text": "There’s"
+ },
+ {
+ "id": 1810,
+ "start": 712.255,
+ "end": 712.585,
+ "text": "threats"
+ },
+ {
+ "id": 1811,
+ "start": 712.585,
+ "end": 712.845,
+ "text": "out"
+ },
+ {
+ "id": 1812,
+ "start": 712.845,
+ "end": 713.525,
+ "text": "there"
+ },
+ {
+ "id": 1813,
+ "start": 713.525,
+ "end": 713.705,
+ "text": "that"
+ },
+ {
+ "id": 1814,
+ "start": 713.705,
+ "end": 713.845,
+ "text": "are"
+ },
+ {
+ "id": 1815,
+ "start": 713.845,
+ "end": 714.345,
+ "text": "greater"
+ },
+ {
+ "id": 1816,
+ "start": 714.345,
+ "end": 714.505,
+ "text": "than"
+ },
+ {
+ "id": 1817,
+ "start": 714.505,
+ "end": 714.755,
+ "text": "any"
+ },
+ {
+ "id": 1818,
+ "start": 714.755,
+ "end": 715.075,
+ "text": "single"
+ },
+ {
+ "id": 1819,
+ "start": 715.3350000000002,
+ "end": 715.615,
+ "text": "platform"
+ },
+ {
+ "id": 1820,
+ "start": 715.915,
+ "end": 716.155,
+ "text": "and"
+ },
+ {
+ "id": 1821,
+ "start": 716.155,
+ "end": 716.255,
+ "text": "we"
+ },
+ {
+ "id": 1822,
+ "start": 716.255,
+ "end": 716.515,
+ "text": "need"
+ },
+ {
+ "id": 1823,
+ "start": 716.515,
+ "end": 716.735,
+ "text": "all"
+ },
+ {
+ "id": 1824,
+ "start": 716.735,
+ "end": 716.825,
+ "text": "the"
+ },
+ {
+ "id": 1825,
+ "start": 716.825,
+ "end": 717.195,
+ "text": "players"
+ },
+ {
+ "id": 1826,
+ "start": 717.195,
+ "end": 717.805,
+ "text": "involved"
+ },
+ {
+ "id": 1827,
+ "start": 717.75,
+ "end": 718.155,
+ "text": "to"
+ },
+ {
+ "id": 1828,
+ "start": 718.305,
+ "end": 718.505,
+ "text": "work"
+ },
+ {
+ "id": 1829,
+ "start": 718.505,
+ "end": 719.505,
+ "text": "together"
+ },
+ {
+ "id": 1830,
+ "start": 719.505,
+ "end": 719.635,
+ "text": "to"
+ },
+ {
+ "id": 1831,
+ "start": 719.635,
+ "end": 719.885,
+ "text": "help"
+ },
+ {
+ "id": 1832,
+ "start": 719.885,
+ "end": 720.495,
+ "text": "to"
+ },
+ {
+ "id": 1833,
+ "start": 720.495,
+ "end": 721.705,
+ "text": "understand"
+ },
+ {
+ "id": 1834,
+ "start": 721.385,
+ "end": 721.935,
+ "text": "bad"
+ },
+ {
+ "id": 1835,
+ "start": 721.7733333333333,
+ "end": 722.3199999999999,
+ "text": "actors,"
+ },
+ {
+ "id": 1836,
+ "start": 722.1616666666666,
+ "end": 722.7049999999999,
+ "text": "to"
+ },
+ {
+ "id": 1837,
+ "start": 722.55,
+ "end": 723.09,
+ "text": "identify"
+ },
+ {
+ "id": 1838,
+ "start": 723.09,
+ "end": 723.28,
+ "text": "where"
+ },
+ {
+ "id": 1839,
+ "start": 723.28,
+ "end": 723.41,
+ "text": "they’re"
+ },
+ {
+ "id": 1840,
+ "start": 723.41,
+ "end": 723.71,
+ "text": "coming"
+ },
+ {
+ "id": 1841,
+ "start": 723.71,
+ "end": 724.05,
+ "text": "from,"
+ },
+ {
+ "id": 1842,
+ "start": 724.05,
+ "end": 724.19,
+ "text": "so"
+ },
+ {
+ "id": 1843,
+ "start": 724.19,
+ "end": 724.34,
+ "text": "that"
+ },
+ {
+ "id": 1844,
+ "start": 724.34,
+ "end": 724.49,
+ "text": "we"
+ },
+ {
+ "id": 1845,
+ "start": 724.49,
+ "end": 725.09,
+ "text": "can"
+ },
+ {
+ "id": 1846,
+ "start": 725.09,
+ "end": 725.48,
+ "text": "go"
+ },
+ {
+ "id": 1847,
+ "start": 725.48,
+ "end": 725.93,
+ "text": "and"
+ },
+ {
+ "id": 1848,
+ "start": 725.93,
+ "end": 726.91,
+ "text": "proactively"
+ },
+ {
+ "id": 1849,
+ "start": 726.91,
+ "end": 727.13,
+ "text": "take"
+ },
+ {
+ "id": 1850,
+ "start": 727.13,
+ "end": 727.46,
+ "text": "action"
+ },
+ {
+ "id": 1851,
+ "start": 727.46,
+ "end": 727.58,
+ "text": "on"
+ },
+ {
+ "id": 1852,
+ "start": 727.58,
+ "end": 727.78,
+ "text": "them."
+ },
+ {
+ "id": 1853,
+ "start": 728.08,
+ "end": 728.2149999999999,
+ "text": "One"
+ },
+ {
+ "id": 1854,
+ "start": 728.58,
+ "end": 728.65,
+ "text": "of"
+ },
+ {
+ "id": 1855,
+ "start": 728.65,
+ "end": 728.72,
+ "text": "the"
+ },
+ {
+ "id": 1856,
+ "start": 728.72,
+ "end": 729.14,
+ "text": "strange"
+ },
+ {
+ "id": 1857,
+ "start": 729.14,
+ "end": 729.41,
+ "text": "things"
+ },
+ {
+ "id": 1858,
+ "start": 729.41,
+ "end": 729.88,
+ "text": "about"
+ },
+ {
+ "id": 1859,
+ "start": 729.88,
+ "end": 730,
+ "text": "the"
+ },
+ {
+ "id": 1860,
+ "start": 730,
+ "end": 730.82,
+ "text": "philosophical"
+ },
+ {
+ "id": 1861,
+ "start": 730.82,
+ "end": 731.48,
+ "text": "shift"
+ },
+ {
+ "id": 1862,
+ "start": 731.48,
+ "end": 731.86,
+ "text": "at"
+ },
+ {
+ "id": 1863,
+ "start": 731.86,
+ "end": 732.61,
+ "text": "Facebook"
+ },
+ {
+ "id": 1864,
+ "start": 732.61,
+ "end": 733.32,
+ "text": "of"
+ },
+ {
+ "id": 1865,
+ "start": 733.32,
+ "end": 733.66,
+ "text": "taking"
+ },
+ {
+ "id": 1866,
+ "start": 733.66,
+ "end": 734.55,
+ "text": "responsibility"
+ },
+ {
+ "id": 1867,
+ "start": 734.55,
+ "end": 734.72,
+ "text": "for"
+ },
+ {
+ "id": 1868,
+ "start": 734.72,
+ "end": 735.4,
+ "text": "content"
+ },
+ {
+ "id": 1869,
+ "start": 735.4750000000001,
+ "end": 735.975,
+ "text": "is,"
+ },
+ {
+ "id": 1870,
+ "start": 736.23,
+ "end": 736.55,
+ "text": "seems"
+ },
+ {
+ "id": 1871,
+ "start": 736.55,
+ "end": 736.68,
+ "text": "to"
+ },
+ {
+ "id": 1872,
+ "start": 736.68,
+ "end": 738.15,
+ "text": "me"
+ },
+ {
+ "id": 1873,
+ "start": 738.15,
+ "end": 738.75,
+ "text": "it"
+ },
+ {
+ "id": 1874,
+ "start": 738.75,
+ "end": 738.91,
+ "text": "may"
+ },
+ {
+ "id": 1875,
+ "start": 738.91,
+ "end": 739.14,
+ "text": "now"
+ },
+ {
+ "id": 1876,
+ "start": 739.14,
+ "end": 739.84,
+ "text": "be"
+ },
+ {
+ "id": 1877,
+ "start": 739.84,
+ "end": 739.94,
+ "text": "a"
+ },
+ {
+ "id": 1878,
+ "start": 739.94,
+ "end": 740.56,
+ "text": "situation"
+ },
+ {
+ "id": 1879,
+ "start": 740.56,
+ "end": 740.71,
+ "text": "where"
+ },
+ {
+ "id": 1880,
+ "start": 740.71,
+ "end": 741.02,
+ "text": "it’s:"
+ },
+ {
+ "id": 1881,
+ "start": 741.02,
+ "end": 741.43,
+ "text": "“careful"
+ },
+ {
+ "id": 1882,
+ "start": 741.43,
+ "end": 741.56,
+ "text": "what"
+ },
+ {
+ "id": 1883,
+ "start": 741.56,
+ "end": 741.66,
+ "text": "you"
+ },
+ {
+ "id": 1884,
+ "start": 741.66,
+ "end": 741.92,
+ "text": "wish"
+ },
+ {
+ "id": 1885,
+ "start": 741.92,
+ "end": 742.5,
+ "text": "for.”"
+ },
+ {
+ "id": 1886,
+ "start": 742.5,
+ "end": 742.7,
+ "text": "If"
+ },
+ {
+ "id": 1887,
+ "start": 742.7,
+ "end": 742.82,
+ "text": "we"
+ },
+ {
+ "id": 1888,
+ "start": 742.82,
+ "end": 743.08,
+ "text": "want"
+ },
+ {
+ "id": 1889,
+ "start": 743.08,
+ "end": 743.51,
+ "text": "Facebook"
+ },
+ {
+ "id": 1890,
+ "start": 743.51,
+ "end": 743.6,
+ "text": "to"
+ },
+ {
+ "id": 1891,
+ "start": 743.6,
+ "end": 743.85,
+ "text": "take"
+ },
+ {
+ "id": 1892,
+ "start": 743.85,
+ "end": 744.04,
+ "text": "more"
+ },
+ {
+ "id": 1893,
+ "start": 744.04,
+ "end": 745.27,
+ "text": "responsibility,"
+ },
+ {
+ "id": 1894,
+ "start": 745.27,
+ "end": 745.51,
+ "text": "it"
+ },
+ {
+ "id": 1895,
+ "start": 745.51,
+ "end": 745.85,
+ "text": "means"
+ },
+ {
+ "id": 1896,
+ "start": 745.85,
+ "end": 746.33,
+ "text": "essentially"
+ },
+ {
+ "id": 1897,
+ "start": 746.33,
+ "end": 746.92,
+ "text": "creating"
+ },
+ {
+ "id": 1898,
+ "start": 746.92,
+ "end": 746.99,
+ "text": "a"
+ },
+ {
+ "id": 1899,
+ "start": 746.99,
+ "end": 747.71,
+ "text": "larger"
+ },
+ {
+ "id": 1900,
+ "start": 747.71,
+ "end": 748.23,
+ "text": "army"
+ },
+ {
+ "id": 1901,
+ "start": 748.23,
+ "end": 748.87,
+ "text": "of"
+ },
+ {
+ "id": 1902,
+ "start": 748.87,
+ "end": 749.21,
+ "text": "people"
+ },
+ {
+ "id": 1903,
+ "start": 749.21,
+ "end": 749.42,
+ "text": "that"
+ },
+ {
+ "id": 1904,
+ "start": 749.42,
+ "end": 749.59,
+ "text": "are"
+ },
+ {
+ "id": 1905,
+ "start": 749.59,
+ "end": 750.07,
+ "text": "essentially"
+ },
+ {
+ "id": 1906,
+ "start": 750.07,
+ "end": 751.01,
+ "text": "censoring"
+ },
+ {
+ "id": 1907,
+ "start": 751.01,
+ "end": 751.68,
+ "text": "content"
+ },
+ {
+ "id": 1908,
+ "start": 751.68,
+ "end": 751.93,
+ "text": "that’s"
+ },
+ {
+ "id": 1909,
+ "start": 751.93,
+ "end": 752.14,
+ "text": "out"
+ },
+ {
+ "id": 1910,
+ "start": 752.13,
+ "end": 752.44,
+ "text": "there,"
+ },
+ {
+ "id": 1911,
+ "start": 752.44,
+ "end": 752.8850000000001,
+ "text": "or"
+ },
+ {
+ "id": 1912,
+ "start": 752.75,
+ "end": 753.33,
+ "text": "censoring"
+ },
+ {
+ "id": 1913,
+ "start": 753.4966666666667,
+ "end": 753.9233333333333,
+ "text": "the"
+ },
+ {
+ "id": 1914,
+ "start": 754.2433333333333,
+ "end": 754.5166666666665,
+ "text": "community."
+ },
+ {
+ "id": 1915,
+ "start": 754.99,
+ "end": 755.11,
+ "text": "Do"
+ },
+ {
+ "id": 1916,
+ "start": 755.11,
+ "end": 755.22,
+ "text": "you"
+ },
+ {
+ "id": 1917,
+ "start": 755.22,
+ "end": 755.54,
+ "text": "see"
+ },
+ {
+ "id": 1918,
+ "start": 755.54,
+ "end": 756.01,
+ "text": "yourself"
+ },
+ {
+ "id": 1919,
+ "start": 755.9699999999999,
+ "end": 756.595,
+ "text": "as"
+ },
+ {
+ "id": 1920,
+ "start": 756.4,
+ "end": 757.18,
+ "text": "building"
+ },
+ {
+ "id": 1921,
+ "start": 757.18,
+ "end": 757.86,
+ "text": "censorship"
+ },
+ {
+ "id": 1922,
+ "start": 757.86,
+ "end": 758.18,
+ "text": "tools"
+ },
+ {
+ "id": 1923,
+ "start": 758.18,
+ "end": 758.28,
+ "text": "to"
+ },
+ {
+ "id": 1924,
+ "start": 758.28,
+ "end": 758.46,
+ "text": "some"
+ },
+ {
+ "id": 1925,
+ "start": 758.46,
+ "end": 759.57,
+ "text": "degree?"
+ },
+ {
+ "id": 1926,
+ "start": 759.57,
+ "end": 759.87,
+ "text": "We"
+ },
+ {
+ "id": 1927,
+ "start": 759.87,
+ "end": 760.05,
+ "text": "see"
+ },
+ {
+ "id": 1928,
+ "start": 760.05,
+ "end": 760.46,
+ "text": "ourselves"
+ },
+ {
+ "id": 1929,
+ "start": 760.46,
+ "end": 761.09,
+ "text": "as"
+ },
+ {
+ "id": 1930,
+ "start": 761.09,
+ "end": 761.48,
+ "text": "trying"
+ },
+ {
+ "id": 1931,
+ "start": 761.48,
+ "end": 761.62,
+ "text": "to"
+ },
+ {
+ "id": 1932,
+ "start": 761.62,
+ "end": 763.56,
+ "text": "balance"
+ },
+ {
+ "id": 1933,
+ "start": 763.56,
+ "end": 763.86,
+ "text": "giving"
+ },
+ {
+ "id": 1934,
+ "start": 763.86,
+ "end": 764.21,
+ "text": "people"
+ },
+ {
+ "id": 1935,
+ "start": 764.21,
+ "end": 764.27,
+ "text": "a"
+ },
+ {
+ "id": 1936,
+ "start": 764.27,
+ "end": 765.13,
+ "text": "voice"
+ },
+ {
+ "id": 1937,
+ "start": 765.13,
+ "end": 765.33,
+ "text": "and"
+ },
+ {
+ "id": 1938,
+ "start": 765.33,
+ "end": 766.13,
+ "text": "creating"
+ },
+ {
+ "id": 1939,
+ "start": 766.13,
+ "end": 766.37,
+ "text": "that"
+ },
+ {
+ "id": 1940,
+ "start": 766.37,
+ "end": 766.84,
+ "text": "place"
+ },
+ {
+ "id": 1941,
+ "start": 766.84,
+ "end": 767.66,
+ "text": "for"
+ },
+ {
+ "id": 1942,
+ "start": 767.66,
+ "end": 768.87,
+ "text": "discussion"
+ },
+ {
+ "id": 1943,
+ "start": 768.87,
+ "end": 769.22,
+ "text": "with"
+ },
+ {
+ "id": 1944,
+ "start": 769.22,
+ "end": 769.6,
+ "text": "keeping"
+ },
+ {
+ "id": 1945,
+ "start": 769.6,
+ "end": 769.97,
+ "text": "people"
+ },
+ {
+ "id": 1946,
+ "start": 770.1899999999999,
+ "end": 770.99,
+ "text": "safe."
+ },
+ {
+ "id": 1947,
+ "start": 770.78,
+ "end": 772.01,
+ "text": "And"
+ },
+ {
+ "id": 1948,
+ "start": 772.01,
+ "end": 772.26,
+ "text": "there"
+ },
+ {
+ "id": 1949,
+ "start": 772.26,
+ "end": 772.39,
+ "text": "is"
+ },
+ {
+ "id": 1950,
+ "start": 772.39,
+ "end": 772.58,
+ "text": "no"
+ },
+ {
+ "id": 1951,
+ "start": 772.58,
+ "end": 772.76,
+ "text": "one"
+ },
+ {
+ "id": 1952,
+ "start": 772.76,
+ "end": 772.97,
+ "text": "right"
+ },
+ {
+ "id": 1953,
+ "start": 772.97,
+ "end": 773.11,
+ "text": "way"
+ },
+ {
+ "id": 1954,
+ "start": 773.11,
+ "end": 773.21,
+ "text": "to"
+ },
+ {
+ "id": 1955,
+ "start": 773.21,
+ "end": 773.39,
+ "text": "do"
+ },
+ {
+ "id": 1956,
+ "start": 773.39,
+ "end": 773.86,
+ "text": "this."
+ },
+ {
+ "id": 1957,
+ "start": 773.86,
+ "end": 774,
+ "text": "But"
+ },
+ {
+ "id": 1958,
+ "start": 774,
+ "end": 774.22,
+ "text": "that’s"
+ },
+ {
+ "id": 1959,
+ "start": 774.22,
+ "end": 774.69,
+ "text": "why"
+ },
+ {
+ "id": 1960,
+ "start": 774.69,
+ "end": 774.87,
+ "text": "we"
+ },
+ {
+ "id": 1961,
+ "start": 774.87,
+ "end": 775.11,
+ "text": "have"
+ },
+ {
+ "id": 1962,
+ "start": 775.11,
+ "end": 775.24,
+ "text": "to"
+ },
+ {
+ "id": 1963,
+ "start": 775.24,
+ "end": 775.54,
+ "text": "draw"
+ },
+ {
+ "id": 1964,
+ "start": 775.7433333333333,
+ "end": 775.9933333333333,
+ "text": "lines"
+ },
+ {
+ "id": 1965,
+ "start": 776.2466666666667,
+ "end": 776.4466666666667,
+ "text": "somewhere"
+ },
+ {
+ "id": 1966,
+ "start": 776.75,
+ "end": 776.9,
+ "text": "and"
+ },
+ {
+ "id": 1967,
+ "start": 776.9,
+ "end": 777.1,
+ "text": "that’s"
+ },
+ {
+ "id": 1968,
+ "start": 777.1,
+ "end": 777.44,
+ "text": "why"
+ },
+ {
+ "id": 1969,
+ "start": 777.44,
+ "end": 777.56,
+ "text": "we"
+ },
+ {
+ "id": 1970,
+ "start": 777.56,
+ "end": 777.72,
+ "text": "need"
+ },
+ {
+ "id": 1971,
+ "start": 777.72,
+ "end": 777.82,
+ "text": "to"
+ },
+ {
+ "id": 1972,
+ "start": 777.82,
+ "end": 777.92,
+ "text": "be"
+ },
+ {
+ "id": 1973,
+ "start": 777.92,
+ "end": 778.13,
+ "text": "very"
+ },
+ {
+ "id": 1974,
+ "start": 778.13,
+ "end": 779.28,
+ "text": "transparent"
+ },
+ {
+ "id": 1975,
+ "start": 779.28,
+ "end": 779.48,
+ "text": "about"
+ },
+ {
+ "id": 1976,
+ "start": 779.48,
+ "end": 779.74,
+ "text": "where"
+ },
+ {
+ "id": 1977,
+ "start": 779.74,
+ "end": 779.98,
+ "text": "those"
+ },
+ {
+ "id": 1978,
+ "start": 779.98,
+ "end": 780.27,
+ "text": "lines"
+ },
+ {
+ "id": 1979,
+ "start": 780.27,
+ "end": 780.74,
+ "text": "are"
+ },
+ {
+ "id": 1980,
+ "start": 780.74,
+ "end": 780.93,
+ "text": "so"
+ },
+ {
+ "id": 1981,
+ "start": 780.93,
+ "end": 781.1,
+ "text": "that"
+ },
+ {
+ "id": 1982,
+ "start": 781.1,
+ "end": 781.21,
+ "text": "we"
+ },
+ {
+ "id": 1983,
+ "start": 781.21,
+ "end": 781.37,
+ "text": "can"
+ },
+ {
+ "id": 1984,
+ "start": 781.37,
+ "end": 781.82,
+ "text": "evolve;"
+ },
+ {
+ "id": 1985,
+ "start": 781.82,
+ "end": 781.99,
+ "text": "so"
+ },
+ {
+ "id": 1986,
+ "start": 781.99,
+ "end": 782.16,
+ "text": "that"
+ },
+ {
+ "id": 1987,
+ "start": 782.16,
+ "end": 782.28,
+ "text": "we"
+ },
+ {
+ "id": 1988,
+ "start": 782.28,
+ "end": 782.49,
+ "text": "can"
+ },
+ {
+ "id": 1989,
+ "start": 782.81,
+ "end": 783.24,
+ "text": "learn."
+ },
+ {
+ "id": 1990,
+ "start": 783.34,
+ "end": 783.99,
+ "text": "And"
+ },
+ {
+ "id": 1991,
+ "start": 783.99,
+ "end": 784.3,
+ "text": "those"
+ },
+ {
+ "id": 1992,
+ "start": 784.3,
+ "end": 784.91,
+ "text": "manifest"
+ },
+ {
+ "id": 1993,
+ "start": 784.91,
+ "end": 785.05,
+ "text": "in"
+ },
+ {
+ "id": 1994,
+ "start": 785.05,
+ "end": 785.21,
+ "text": "our"
+ },
+ {
+ "id": 1995,
+ "start": 785.21,
+ "end": 785.64,
+ "text": "community"
+ },
+ {
+ "id": 1996,
+ "start": 785.64,
+ "end": 787.27,
+ "text": "standards"
+ },
+ {
+ "id": 1997,
+ "start": 787.27,
+ "end": 787.44,
+ "text": "where"
+ },
+ {
+ "id": 1998,
+ "start": 787.44,
+ "end": 787.55,
+ "text": "we"
+ },
+ {
+ "id": 1999,
+ "start": 787.55,
+ "end": 788.15,
+ "text": "articulate"
+ },
+ {
+ "id": 2000,
+ "start": 788.15,
+ "end": 789.09,
+ "text": "exactly"
+ },
+ {
+ "id": 2001,
+ "start": 789.09,
+ "end": 789.41,
+ "text": "where"
+ },
+ {
+ "id": 2002,
+ "start": 789.41,
+ "end": 789.53,
+ "text": "the"
+ },
+ {
+ "id": 2003,
+ "start": 789.53,
+ "end": 789.86,
+ "text": "lines"
+ },
+ {
+ "id": 2004,
+ "start": 789.86,
+ "end": 790.63,
+ "text": "are"
+ },
+ {
+ "id": 2005,
+ "start": 790.63,
+ "end": 791.18,
+ "text": "and"
+ },
+ {
+ "id": 2006,
+ "start": 791.18,
+ "end": 791.49,
+ "text": "what"
+ },
+ {
+ "id": 2007,
+ "start": 791.49,
+ "end": 791.7,
+ "text": "kind"
+ },
+ {
+ "id": 2008,
+ "start": 791.7,
+ "end": 791.79,
+ "text": "of"
+ },
+ {
+ "id": 2009,
+ "start": 791.79,
+ "end": 792.2,
+ "text": "content"
+ },
+ {
+ "id": 2010,
+ "start": 792.2,
+ "end": 792.31,
+ "text": "we"
+ },
+ {
+ "id": 2011,
+ "start": 792.31,
+ "end": 792.56,
+ "text": "take"
+ },
+ {
+ "id": 2012,
+ "start": 792.56,
+ "end": 793.32,
+ "text": "down."
+ },
+ {
+ "id": 2013,
+ "start": 793.32,
+ "end": 793.59,
+ "text": "And"
+ },
+ {
+ "id": 2014,
+ "start": 793.59,
+ "end": 793.82,
+ "text": "we"
+ },
+ {
+ "id": 2015,
+ "start": 793.82,
+ "end": 793.98,
+ "text": "will"
+ },
+ {
+ "id": 2016,
+ "start": 793.98,
+ "end": 794.52,
+ "text": "continue"
+ },
+ {
+ "id": 2017,
+ "start": 794.52,
+ "end": 794.63,
+ "text": "to"
+ },
+ {
+ "id": 2018,
+ "start": 794.63,
+ "end": 795.51,
+ "text": "evolve"
+ },
+ {
+ "id": 2019,
+ "start": 795.51,
+ "end": 796.17,
+ "text": "and"
+ },
+ {
+ "id": 2020,
+ "start": 796.17,
+ "end": 796.84,
+ "text": "learn"
+ },
+ {
+ "id": 2021,
+ "start": 796.84,
+ "end": 797.04,
+ "text": "the"
+ },
+ {
+ "id": 2022,
+ "start": 797.04,
+ "end": 797.27,
+ "text": "right"
+ },
+ {
+ "id": 2023,
+ "start": 797.27,
+ "end": 797.85,
+ "text": "place"
+ },
+ {
+ "id": 2024,
+ "start": 797.85,
+ "end": 798.06,
+ "text": "for"
+ },
+ {
+ "id": 2025,
+ "start": 798.06,
+ "end": 798.3,
+ "text": "those"
+ },
+ {
+ "id": 2026,
+ "start": 798.3,
+ "end": 798.52,
+ "text": "things"
+ },
+ {
+ "id": 2027,
+ "start": 798.52,
+ "end": 798.63,
+ "text": "to"
+ },
+ {
+ "id": 2028,
+ "start": 798.63,
+ "end": 798.93,
+ "text": "be"
+ },
+ {
+ "id": 2029,
+ "start": 798.93,
+ "end": 799.86,
+ "text": "because"
+ },
+ {
+ "id": 2030,
+ "start": 799.86,
+ "end": 800.06,
+ "text": "there"
+ },
+ {
+ "id": 2031,
+ "start": 800.06,
+ "end": 800.21,
+ "text": "is"
+ },
+ {
+ "id": 2032,
+ "start": 800.21,
+ "end": 800.41,
+ "text": "no"
+ },
+ {
+ "id": 2033,
+ "start": 800.41,
+ "end": 800.77,
+ "text": "one"
+ },
+ {
+ "id": 2034,
+ "start": 800.77,
+ "end": 801,
+ "text": "right"
+ },
+ {
+ "id": 2035,
+ "start": 801,
+ "end": 801.42,
+ "text": "solution"
+ },
+ {
+ "id": 2036,
+ "start": 801.42,
+ "end": 801.55,
+ "text": "for"
+ },
+ {
+ "id": 2037,
+ "start": 801.55,
+ "end": 802.18,
+ "text": "this."
+ },
+ {
+ "id": 2038,
+ "start": 802.18,
+ "end": 802.33,
+ "text": "But"
+ },
+ {
+ "id": 2039,
+ "start": 802.33,
+ "end": 802.43,
+ "text": "it"
+ },
+ {
+ "id": 2040,
+ "start": 802.43,
+ "end": 802.74,
+ "text": "has"
+ },
+ {
+ "id": 2041,
+ "start": 802.74,
+ "end": 802.85,
+ "text": "to"
+ },
+ {
+ "id": 2042,
+ "start": 802.85,
+ "end": 802.98,
+ "text": "be"
+ },
+ {
+ "id": 2043,
+ "start": 802.98,
+ "end": 803.05,
+ "text": "a"
+ },
+ {
+ "id": 2044,
+ "start": 803.05,
+ "end": 804.08,
+ "text": "balance"
+ },
+ {
+ "id": 2045,
+ "start": 804.08,
+ "end": 804.26,
+ "text": "and"
+ },
+ {
+ "id": 2046,
+ "start": 804.26,
+ "end": 804.36,
+ "text": "we"
+ },
+ {
+ "id": 2047,
+ "start": 804.36,
+ "end": 804.6,
+ "text": "have"
+ },
+ {
+ "id": 2048,
+ "start": 804.6,
+ "end": 804.71,
+ "text": "to"
+ },
+ {
+ "id": 2049,
+ "start": 804.71,
+ "end": 804.9,
+ "text": "give"
+ },
+ {
+ "id": 2050,
+ "start": 804.9,
+ "end": 805.21,
+ "text": "people"
+ },
+ {
+ "id": 2051,
+ "start": 805.21,
+ "end": 805.27,
+ "text": "a"
+ },
+ {
+ "id": 2052,
+ "start": 805.27,
+ "end": 805.94,
+ "text": "place"
+ },
+ {
+ "id": 2053,
+ "start": 805.94,
+ "end": 806.08,
+ "text": "to"
+ },
+ {
+ "id": 2054,
+ "start": 806.08,
+ "end": 806.71,
+ "text": "have,"
+ },
+ {
+ "id": 2055,
+ "start": 806.71,
+ "end": 806.81,
+ "text": "to"
+ },
+ {
+ "id": 2056,
+ "start": 806.81,
+ "end": 806.88,
+ "text": "be"
+ },
+ {
+ "id": 2057,
+ "start": 806.88,
+ "end": 807,
+ "text": "able"
+ },
+ {
+ "id": 2058,
+ "start": 807,
+ "end": 807.06,
+ "text": "to"
+ },
+ {
+ "id": 2059,
+ "start": 807.06,
+ "end": 807.43,
+ "text": "express"
+ },
+ {
+ "id": 2060,
+ "start": 807.43,
+ "end": 807.93,
+ "text": "themselves"
+ },
+ {
+ "id": 2061,
+ "start": 807.93,
+ "end": 808.03,
+ "text": "and"
+ },
+ {
+ "id": 2062,
+ "start": 808.03,
+ "end": 808.1,
+ "text": "to"
+ },
+ {
+ "id": 2063,
+ "start": 808.1,
+ "end": 808.41,
+ "text": "have"
+ },
+ {
+ "id": 2064,
+ "start": 808.41,
+ "end": 809.64,
+ "text": "conversation,"
+ },
+ {
+ "id": 2065,
+ "start": 809.64,
+ "end": 809.92,
+ "text": "while"
+ },
+ {
+ "id": 2066,
+ "start": 809.92,
+ "end": 810.32,
+ "text": "also"
+ },
+ {
+ "id": 2067,
+ "start": 810.32,
+ "end": 810.94,
+ "text": "watching"
+ },
+ {
+ "id": 2068,
+ "start": 810.94,
+ "end": 811.11,
+ "text": "for"
+ },
+ {
+ "id": 2069,
+ "start": 811.11,
+ "end": 811.25,
+ "text": "the"
+ },
+ {
+ "id": 2070,
+ "start": 811.25,
+ "end": 811.44,
+ "text": "edge"
+ },
+ {
+ "id": 2071,
+ "start": 811.44,
+ "end": 812.37,
+ "text": "cases"
+ },
+ {
+ "id": 2072,
+ "start": 812.37,
+ "end": 812.54,
+ "text": "and"
+ },
+ {
+ "id": 2073,
+ "start": 812.54,
+ "end": 812.65,
+ "text": "for"
+ },
+ {
+ "id": 2074,
+ "start": 812.65,
+ "end": 812.76,
+ "text": "the"
+ },
+ {
+ "id": 2075,
+ "start": 812.76,
+ "end": 813.08,
+ "text": "bad"
+ },
+ {
+ "id": 2076,
+ "start": 813.08,
+ "end": 813.63,
+ "text": "content,"
+ },
+ {
+ "id": 2077,
+ "start": 813.63,
+ "end": 813.72,
+ "text": "the"
+ },
+ {
+ "id": 2078,
+ "start": 813.72,
+ "end": 813.94,
+ "text": "bad"
+ },
+ {
+ "id": 2079,
+ "start": 813.94,
+ "end": 814.38,
+ "text": "actors"
+ },
+ {
+ "id": 2080,
+ "start": 814.205,
+ "end": 814.46,
+ "text": "and"
+ },
+ {
+ "id": 2081,
+ "start": 814.47,
+ "end": 814.54,
+ "text": "the"
+ },
+ {
+ "id": 2082,
+ "start": 814.54,
+ "end": 814.74,
+ "text": "bad"
+ },
+ {
+ "id": 2083,
+ "start": 814.9233333333334,
+ "end": 815.1166666666667,
+ "text": "behavior,"
+ },
+ {
+ "id": 2084,
+ "start": 815.3066666666667,
+ "end": 815.4933333333333,
+ "text": "so"
+ },
+ {
+ "id": 2085,
+ "start": 815.69,
+ "end": 815.87,
+ "text": "that"
+ },
+ {
+ "id": 2086,
+ "start": 815.87,
+ "end": 815.97,
+ "text": "we"
+ },
+ {
+ "id": 2087,
+ "start": 815.97,
+ "end": 816.13,
+ "text": "can"
+ },
+ {
+ "id": 2088,
+ "start": 816.13,
+ "end": 816.34,
+ "text": "keep"
+ },
+ {
+ "id": 2089,
+ "start": 816.34,
+ "end": 816.6,
+ "text": "people"
+ },
+ {
+ "id": 2090,
+ "start": 816.6,
+ "end": 817.09,
+ "text": "safe"
+ },
+ {
+ "id": 2091,
+ "start": 817.09,
+ "end": 817.34,
+ "text": "on"
+ },
+ {
+ "id": 2092,
+ "start": 817.34,
+ "end": 817.41,
+ "text": "the"
+ },
+ {
+ "id": 2093,
+ "start": 821.2250000000004,
+ "end": 821.3149999999996,
+ "text": "platform."
+ },
+ {
+ "id": 2094,
+ "start": 825.11,
+ "end": 825.22,
+ "text": "In"
+ },
+ {
+ "id": 2095,
+ "start": 825.22,
+ "end": 825.51,
+ "text": "terms"
+ },
+ {
+ "id": 2096,
+ "start": 825.51,
+ "end": 825.62,
+ "text": "of"
+ },
+ {
+ "id": 2097,
+ "start": 825.62,
+ "end": 825.68,
+ "text": "a"
+ },
+ {
+ "id": 2098,
+ "start": 825.68,
+ "end": 825.88,
+ "text": "kind"
+ },
+ {
+ "id": 2099,
+ "start": 825.88,
+ "end": 825.96,
+ "text": "of"
+ },
+ {
+ "id": 2100,
+ "start": 825.96,
+ "end": 826.37,
+ "text": "track"
+ },
+ {
+ "id": 2101,
+ "start": 826.37,
+ "end": 827.24,
+ "text": "record"
+ },
+ {
+ "id": 2102,
+ "start": 827.24,
+ "end": 827.72,
+ "text": "of"
+ },
+ {
+ "id": 2103,
+ "start": 827.72,
+ "end": 828.01,
+ "text": "being"
+ },
+ {
+ "id": 2104,
+ "start": 828.01,
+ "end": 828.42,
+ "text": "able"
+ },
+ {
+ "id": 2105,
+ "start": 828.42,
+ "end": 828.98,
+ "text": "to"
+ },
+ {
+ "id": 2106,
+ "start": 828.78,
+ "end": 829.105,
+ "text": "–"
+ },
+ {
+ "id": 2107,
+ "start": 829.14,
+ "end": 829.23,
+ "text": "the"
+ },
+ {
+ "id": 2108,
+ "start": 829.23,
+ "end": 829.75,
+ "text": "content"
+ },
+ {
+ "id": 2109,
+ "start": 829.75,
+ "end": 830.75,
+ "text": "moderation"
+ },
+ {
+ "id": 2110,
+ "start": 830.75,
+ "end": 832.12,
+ "text": "system"
+ },
+ {
+ "id": 2111,
+ "start": 832.12,
+ "end": 832.81,
+ "text": "that"
+ },
+ {
+ "id": 2112,
+ "start": 832.81,
+ "end": 833.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 2113,
+ "start": 833.3,
+ "end": 833.52,
+ "text": "had"
+ },
+ {
+ "id": 2114,
+ "start": 833.52,
+ "end": 833.64,
+ "text": "in"
+ },
+ {
+ "id": 2115,
+ "start": 833.64,
+ "end": 833.99,
+ "text": "place"
+ },
+ {
+ "id": 2116,
+ "start": 833.99,
+ "end": 834.14,
+ "text": "for"
+ },
+ {
+ "id": 2117,
+ "start": 834.14,
+ "end": 834.21,
+ "text": "a"
+ },
+ {
+ "id": 2118,
+ "start": 834.21,
+ "end": 834.44,
+ "text": "long"
+ },
+ {
+ "id": 2119,
+ "start": 834.58,
+ "end": 834.8950000000001,
+ "text": "time,"
+ },
+ {
+ "id": 2120,
+ "start": 834.95,
+ "end": 835.35,
+ "text": "people"
+ },
+ {
+ "id": 2121,
+ "start": 835.35,
+ "end": 835.81,
+ "text": "reporting"
+ },
+ {
+ "id": 2122,
+ "start": 835.81,
+ "end": 835.99,
+ "text": "that"
+ },
+ {
+ "id": 2123,
+ "start": 835.99,
+ "end": 836.82,
+ "text": "content,"
+ },
+ {
+ "id": 2124,
+ "start": 836.82,
+ "end": 836.95,
+ "text": "do"
+ },
+ {
+ "id": 2125,
+ "start": 836.95,
+ "end": 837.03,
+ "text": "you"
+ },
+ {
+ "id": 2126,
+ "start": 837.03,
+ "end": 837.3,
+ "text": "think"
+ },
+ {
+ "id": 2127,
+ "start": 837.3,
+ "end": 837.71,
+ "text": "that"
+ },
+ {
+ "id": 2128,
+ "start": 837.71,
+ "end": 838.08,
+ "text": "worked"
+ },
+ {
+ "id": 2129,
+ "start": 838.08,
+ "end": 839.37,
+ "text": "well?"
+ },
+ {
+ "id": 2130,
+ "start": 839.37,
+ "end": 839.52,
+ "text": "Did"
+ },
+ {
+ "id": 2131,
+ "start": 839.52,
+ "end": 839.79,
+ "text": "that"
+ },
+ {
+ "id": 2132,
+ "start": 839.79,
+ "end": 840.04,
+ "text": "work"
+ },
+ {
+ "id": 2133,
+ "start": 840.04,
+ "end": 840.29,
+ "text": "well"
+ },
+ {
+ "id": 2134,
+ "start": 840.29,
+ "end": 840.42,
+ "text": "as"
+ },
+ {
+ "id": 2135,
+ "start": 840.42,
+ "end": 840.49,
+ "text": "a"
+ },
+ {
+ "id": 2136,
+ "start": 840.49,
+ "end": 840.88,
+ "text": "model"
+ },
+ {
+ "id": 2137,
+ "start": 840.88,
+ "end": 841.44,
+ "text": "for"
+ },
+ {
+ "id": 2138,
+ "start": 841.44,
+ "end": 841.91,
+ "text": "people"
+ },
+ {
+ "id": 2139,
+ "start": 841.91,
+ "end": 842.06,
+ "text": "to"
+ },
+ {
+ "id": 2140,
+ "start": 842.06,
+ "end": 842.19,
+ "text": "be"
+ },
+ {
+ "id": 2141,
+ "start": 842.19,
+ "end": 842.34,
+ "text": "able"
+ },
+ {
+ "id": 2142,
+ "start": 842.34,
+ "end": 842.42,
+ "text": "to"
+ },
+ {
+ "id": 2143,
+ "start": 842.42,
+ "end": 842.8,
+ "text": "flag"
+ },
+ {
+ "id": 2144,
+ "start": 842.7146666666666,
+ "end": 843.208,
+ "text": "content"
+ },
+ {
+ "id": 2145,
+ "start": 843.0093333333333,
+ "end": 843.616,
+ "text": "and"
+ },
+ {
+ "id": 2146,
+ "start": 843.304,
+ "end": 844.024,
+ "text": "get"
+ },
+ {
+ "id": 2147,
+ "start": 844.024,
+ "end": 844.604,
+ "text": "problematic"
+ },
+ {
+ "id": 2148,
+ "start": 844.604,
+ "end": 845.044,
+ "text": "content"
+ },
+ {
+ "id": 2149,
+ "start": 845.044,
+ "end": 845.324,
+ "text": "taken"
+ },
+ {
+ "id": 2150,
+ "start": 845.8289999999998,
+ "end": 846.0189999999999,
+ "text": "down?"
+ },
+ {
+ "id": 2151,
+ "start": 846.614,
+ "end": 846.714,
+ "text": "I"
+ },
+ {
+ "id": 2152,
+ "start": 846.714,
+ "end": 847.034,
+ "text": "actually"
+ },
+ {
+ "id": 2153,
+ "start": 847.034,
+ "end": 847.284,
+ "text": "think"
+ },
+ {
+ "id": 2154,
+ "start": 847.284,
+ "end": 847.414,
+ "text": "for"
+ },
+ {
+ "id": 2155,
+ "start": 847.414,
+ "end": 847.564,
+ "text": "the"
+ },
+ {
+ "id": 2156,
+ "start": 847.564,
+ "end": 848.224,
+ "text": "foreseeable"
+ },
+ {
+ "id": 2157,
+ "start": 848.224,
+ "end": 848.654,
+ "text": "future"
+ },
+ {
+ "id": 2158,
+ "start": 848.654,
+ "end": 848.904,
+ "text": "this"
+ },
+ {
+ "id": 2159,
+ "start": 848.904,
+ "end": 849.204,
+ "text": "will"
+ },
+ {
+ "id": 2160,
+ "start": 849.204,
+ "end": 849.334,
+ "text": "be"
+ },
+ {
+ "id": 2161,
+ "start": 849.334,
+ "end": 849.394,
+ "text": "a"
+ },
+ {
+ "id": 2162,
+ "start": 849.394,
+ "end": 850.174,
+ "text": "combination"
+ },
+ {
+ "id": 2163,
+ "start": 850.174,
+ "end": 850.364,
+ "text": "of"
+ },
+ {
+ "id": 2164,
+ "start": 850.364,
+ "end": 851.194,
+ "text": "people"
+ },
+ {
+ "id": 2165,
+ "start": 851.194,
+ "end": 851.354,
+ "text": "and"
+ },
+ {
+ "id": 2166,
+ "start": 851.354,
+ "end": 852.614,
+ "text": "technology."
+ },
+ {
+ "id": 2167,
+ "start": 852.614,
+ "end": 853.154,
+ "text": "Artificial"
+ },
+ {
+ "id": 2168,
+ "start": 853.154,
+ "end": 853.784,
+ "text": "intelligence"
+ },
+ {
+ "id": 2169,
+ "start": 853.784,
+ "end": 853.914,
+ "text": "is"
+ },
+ {
+ "id": 2170,
+ "start": 853.914,
+ "end": 854.264,
+ "text": "making"
+ },
+ {
+ "id": 2171,
+ "start": 854.264,
+ "end": 854.354,
+ "text": "a"
+ },
+ {
+ "id": 2172,
+ "start": 854.354,
+ "end": 854.784,
+ "text": "lot"
+ },
+ {
+ "id": 2173,
+ "start": 854.784,
+ "end": 855.004,
+ "text": "of"
+ },
+ {
+ "id": 2174,
+ "start": 855.004,
+ "end": 856.094,
+ "text": "progress,"
+ },
+ {
+ "id": 2175,
+ "start": 856.094,
+ "end": 856.734,
+ "text": "but"
+ },
+ {
+ "id": 2176,
+ "start": 856.734,
+ "end": 856.914,
+ "text": "it"
+ },
+ {
+ "id": 2177,
+ "start": 856.914,
+ "end": 857.094,
+ "text": "will"
+ },
+ {
+ "id": 2178,
+ "start": 857.094,
+ "end": 857.484,
+ "text": "always"
+ },
+ {
+ "id": 2179,
+ "start": 857.484,
+ "end": 857.644,
+ "text": "be"
+ },
+ {
+ "id": 2180,
+ "start": 857.644,
+ "end": 858.224,
+ "text": "limited"
+ },
+ {
+ "id": 2181,
+ "start": 858.224,
+ "end": 858.414,
+ "text": "in"
+ },
+ {
+ "id": 2182,
+ "start": 858.414,
+ "end": 858.564,
+ "text": "what"
+ },
+ {
+ "id": 2183,
+ "start": 858.564,
+ "end": 858.664,
+ "text": "it"
+ },
+ {
+ "id": 2184,
+ "start": 858.664,
+ "end": 858.814,
+ "text": "can"
+ },
+ {
+ "id": 2185,
+ "start": 858.9839999999999,
+ "end": 859.1339999999999,
+ "text": "do"
+ },
+ {
+ "id": 2186,
+ "start": 859.304,
+ "end": 859.454,
+ "text": "and"
+ },
+ {
+ "id": 2187,
+ "start": 859.454,
+ "end": 859.564,
+ "text": "we"
+ },
+ {
+ "id": 2188,
+ "start": 859.564,
+ "end": 859.874,
+ "text": "will"
+ },
+ {
+ "id": 2189,
+ "start": 859.874,
+ "end": 860.824,
+ "text": "always"
+ },
+ {
+ "id": 2190,
+ "start": 860.824,
+ "end": 861.214,
+ "text": "need"
+ },
+ {
+ "id": 2191,
+ "start": 861.214,
+ "end": 861.844,
+ "text": "people"
+ },
+ {
+ "id": 2192,
+ "start": 861.844,
+ "end": 862.014,
+ "text": "to"
+ },
+ {
+ "id": 2193,
+ "start": 862.014,
+ "end": 862.394,
+ "text": "report"
+ },
+ {
+ "id": 2194,
+ "start": 862.394,
+ "end": 863.294,
+ "text": "content"
+ },
+ {
+ "id": 2195,
+ "start": 863.294,
+ "end": 863.484,
+ "text": "and"
+ },
+ {
+ "id": 2196,
+ "start": 863.484,
+ "end": 863.924,
+ "text": "people"
+ },
+ {
+ "id": 2197,
+ "start": 863.924,
+ "end": 864.064,
+ "text": "to"
+ },
+ {
+ "id": 2198,
+ "start": 864.064,
+ "end": 864.314,
+ "text": "help"
+ },
+ {
+ "id": 2199,
+ "start": 864.314,
+ "end": 864.624,
+ "text": "review"
+ },
+ {
+ "id": 2200,
+ "start": 864.624,
+ "end": 864.784,
+ "text": "that"
+ },
+ {
+ "id": 2201,
+ "start": 864.784,
+ "end": 865.514,
+ "text": "content."
+ },
+ {
+ "id": 2202,
+ "start": 865.514,
+ "end": 865.674,
+ "text": "And"
+ },
+ {
+ "id": 2203,
+ "start": 865.674,
+ "end": 865.914,
+ "text": "as"
+ },
+ {
+ "id": 2204,
+ "start": 865.914,
+ "end": 866.084,
+ "text": "we’ve"
+ },
+ {
+ "id": 2205,
+ "start": 866.084,
+ "end": 866.264,
+ "text": "made"
+ },
+ {
+ "id": 2206,
+ "start": 866.264,
+ "end": 867.414,
+ "text": "progress,"
+ },
+ {
+ "id": 2207,
+ "start": 867.414,
+ "end": 867.634,
+ "text": "we’ve"
+ },
+ {
+ "id": 2208,
+ "start": 867.634,
+ "end": 867.764,
+ "text": "been"
+ },
+ {
+ "id": 2209,
+ "start": 867.764,
+ "end": 867.984,
+ "text": "able"
+ },
+ {
+ "id": 2210,
+ "start": 867.984,
+ "end": 868.074,
+ "text": "to"
+ },
+ {
+ "id": 2211,
+ "start": 868.074,
+ "end": 868.174,
+ "text": "be"
+ },
+ {
+ "id": 2212,
+ "start": 868.174,
+ "end": 868.404,
+ "text": "more"
+ },
+ {
+ "id": 2213,
+ "start": 868.404,
+ "end": 869.374,
+ "text": "proactive"
+ },
+ {
+ "id": 2214,
+ "start": 869.374,
+ "end": 869.554,
+ "text": "and"
+ },
+ {
+ "id": 2215,
+ "start": 869.554,
+ "end": 869.704,
+ "text": "get"
+ },
+ {
+ "id": 2216,
+ "start": 869.704,
+ "end": 870.414,
+ "text": "ahead"
+ },
+ {
+ "id": 2217,
+ "start": 870.414,
+ "end": 870.594,
+ "text": "and"
+ },
+ {
+ "id": 2218,
+ "start": 870.594,
+ "end": 870.844,
+ "text": "take"
+ },
+ {
+ "id": 2219,
+ "start": 870.844,
+ "end": 871.054,
+ "text": "down"
+ },
+ {
+ "id": 2220,
+ "start": 871.054,
+ "end": 871.234,
+ "text": "more"
+ },
+ {
+ "id": 2221,
+ "start": 871.234,
+ "end": 871.434,
+ "text": "bad"
+ },
+ {
+ "id": 2222,
+ "start": 871.434,
+ "end": 871.984,
+ "text": "content"
+ },
+ {
+ "id": 2223,
+ "start": 871.984,
+ "end": 872.094,
+ "text": "and"
+ },
+ {
+ "id": 2224,
+ "start": 872.094,
+ "end": 872.324,
+ "text": "take"
+ },
+ {
+ "id": 2225,
+ "start": 872.324,
+ "end": 872.414,
+ "text": "it"
+ },
+ {
+ "id": 2226,
+ "start": 872.414,
+ "end": 872.644,
+ "text": "down"
+ },
+ {
+ "id": 2227,
+ "start": 872.644,
+ "end": 873.264,
+ "text": "faster."
+ },
+ {
+ "id": 2228,
+ "start": 873.264,
+ "end": 873.514,
+ "text": "But"
+ },
+ {
+ "id": 2229,
+ "start": 873.514,
+ "end": 873.894,
+ "text": "people"
+ },
+ {
+ "id": 2230,
+ "start": 873.894,
+ "end": 874.044,
+ "text": "will"
+ },
+ {
+ "id": 2231,
+ "start": 874.044,
+ "end": 874.504,
+ "text": "continue"
+ },
+ {
+ "id": 2232,
+ "start": 874.504,
+ "end": 874.574,
+ "text": "to"
+ },
+ {
+ "id": 2233,
+ "start": 874.574,
+ "end": 874.674,
+ "text": "be"
+ },
+ {
+ "id": 2234,
+ "start": 874.674,
+ "end": 875.024,
+ "text": "part"
+ },
+ {
+ "id": 2235,
+ "start": 875.024,
+ "end": 875.194,
+ "text": "of"
+ },
+ {
+ "id": 2236,
+ "start": 875.194,
+ "end": 875.294,
+ "text": "the"
+ },
+ {
+ "id": 2237,
+ "start": 875.294,
+ "end": 875.774,
+ "text": "equation."
+ },
+ {
+ "id": 2238,
+ "start": 875.774,
+ "end": 875.964,
+ "text": "And"
+ },
+ {
+ "id": 2239,
+ "start": 875.964,
+ "end": 876.104,
+ "text": "what"
+ },
+ {
+ "id": 2240,
+ "start": 876.104,
+ "end": 876.574,
+ "text": "about"
+ },
+ {
+ "id": 2241,
+ "start": 876.574,
+ "end": 877.484,
+ "text": "transparency"
+ },
+ {
+ "id": 2242,
+ "start": 877.484,
+ "end": 877.854,
+ "text": "about"
+ },
+ {
+ "id": 2243,
+ "start": 877.854,
+ "end": 878.124,
+ "text": "who"
+ },
+ {
+ "id": 2244,
+ "start": 878.124,
+ "end": 878.384,
+ "text": "those"
+ },
+ {
+ "id": 2245,
+ "start": 878.384,
+ "end": 878.784,
+ "text": "people"
+ },
+ {
+ "id": 2246,
+ "start": 878.784,
+ "end": 879.024,
+ "text": "are,"
+ },
+ {
+ "id": 2247,
+ "start": 879.024,
+ "end": 879.344,
+ "text": "where"
+ },
+ {
+ "id": 2248,
+ "start": 879.344,
+ "end": 879.524,
+ "text": "they"
+ },
+ {
+ "id": 2249,
+ "start": 879.524,
+ "end": 879.914,
+ "text": "are,"
+ },
+ {
+ "id": 2250,
+ "start": 879.914,
+ "end": 880.114,
+ "text": "how"
+ },
+ {
+ "id": 2251,
+ "start": 880.114,
+ "end": 880.304,
+ "text": "they’re"
+ },
+ {
+ "id": 2252,
+ "start": 880.304,
+ "end": 881.204,
+ "text": "trained,"
+ },
+ {
+ "id": 2253,
+ "start": 881.204,
+ "end": 881.534,
+ "text": "what"
+ },
+ {
+ "id": 2254,
+ "start": 881.534,
+ "end": 881.694,
+ "text": "their"
+ },
+ {
+ "id": 2255,
+ "start": 881.694,
+ "end": 882.354,
+ "text": "backgrounds"
+ },
+ {
+ "id": 2256,
+ "start": 882.1990000000001,
+ "end": 882.549,
+ "text": "are?"
+ },
+ {
+ "id": 2257,
+ "start": 882.704,
+ "end": 882.744,
+ "text": "I"
+ },
+ {
+ "id": 2258,
+ "start": 882.744,
+ "end": 882.934,
+ "text": "mean"
+ },
+ {
+ "id": 2259,
+ "start": 882.934,
+ "end": 883.124,
+ "text": "these"
+ },
+ {
+ "id": 2260,
+ "start": 883.124,
+ "end": 883.184,
+ "text": "are"
+ },
+ {
+ "id": 2261,
+ "start": 883.184,
+ "end": 883.294,
+ "text": "the"
+ },
+ {
+ "id": 2262,
+ "start": 883.294,
+ "end": 883.604,
+ "text": "people"
+ },
+ {
+ "id": 2263,
+ "start": 883.5606666666667,
+ "end": 883.8706666666667,
+ "text": "who"
+ },
+ {
+ "id": 2264,
+ "start": 883.8273333333334,
+ "end": 884.1373333333333,
+ "text": "are"
+ },
+ {
+ "id": 2265,
+ "start": 884.094,
+ "end": 884.404,
+ "text": "doing"
+ },
+ {
+ "id": 2266,
+ "start": 884.404,
+ "end": 884.614,
+ "text": "this"
+ },
+ {
+ "id": 2267,
+ "start": 884.614,
+ "end": 884.954,
+ "text": "work"
+ },
+ {
+ "id": 2268,
+ "start": 884.8340000000001,
+ "end": 885.059,
+ "text": "when"
+ },
+ {
+ "id": 2269,
+ "start": 885.054,
+ "end": 885.164,
+ "text": "you’re"
+ },
+ {
+ "id": 2270,
+ "start": 885.164,
+ "end": 885.664,
+ "text": "hiring"
+ },
+ {
+ "id": 2271,
+ "start": 885.664,
+ "end": 887.724,
+ "text": "up."
+ },
+ {
+ "id": 2272,
+ "start": 887.724,
+ "end": 887.844,
+ "text": "I"
+ },
+ {
+ "id": 2273,
+ "start": 887.844,
+ "end": 888.104,
+ "text": "think"
+ },
+ {
+ "id": 2274,
+ "start": 888.104,
+ "end": 888.224,
+ "text": "for"
+ },
+ {
+ "id": 2275,
+ "start": 888.224,
+ "end": 888.294,
+ "text": "a"
+ },
+ {
+ "id": 2276,
+ "start": 888.294,
+ "end": 888.484,
+ "text": "lot"
+ },
+ {
+ "id": 2277,
+ "start": 888.484,
+ "end": 888.604,
+ "text": "of"
+ },
+ {
+ "id": 2278,
+ "start": 888.604,
+ "end": 889.334,
+ "text": "people"
+ },
+ {
+ "id": 2279,
+ "start": 889.334,
+ "end": 889.564,
+ "text": "we’ve"
+ },
+ {
+ "id": 2280,
+ "start": 889.564,
+ "end": 890.014,
+ "text": "spoken"
+ },
+ {
+ "id": 2281,
+ "start": 890.014,
+ "end": 890.824,
+ "text": "to"
+ },
+ {
+ "id": 2282,
+ "start": 890.824,
+ "end": 891.064,
+ "text": "out"
+ },
+ {
+ "id": 2283,
+ "start": 891.064,
+ "end": 891.124,
+ "text": "in"
+ },
+ {
+ "id": 2284,
+ "start": 891.124,
+ "end": 891.214,
+ "text": "the"
+ },
+ {
+ "id": 2285,
+ "start": 891.214,
+ "end": 891.494,
+ "text": "world"
+ },
+ {
+ "id": 2286,
+ "start": 891.434,
+ "end": 891.8240000000001,
+ "text": "who’ve"
+ },
+ {
+ "id": 2287,
+ "start": 891.654,
+ "end": 892.154,
+ "text": "had"
+ },
+ {
+ "id": 2288,
+ "start": 892.154,
+ "end": 892.704,
+ "text": "problems"
+ },
+ {
+ "id": 2289,
+ "start": 892.704,
+ "end": 892.854,
+ "text": "with"
+ },
+ {
+ "id": 2290,
+ "start": 892.854,
+ "end": 894.654,
+ "text": "content,"
+ },
+ {
+ "id": 2291,
+ "start": 894.654,
+ "end": 894.934,
+ "text": "they’ve"
+ },
+ {
+ "id": 2292,
+ "start": 894.934,
+ "end": 895.144,
+ "text": "had"
+ },
+ {
+ "id": 2293,
+ "start": 895.344,
+ "end": 895.9639999999999,
+ "text": "difficulties"
+ },
+ {
+ "id": 2294,
+ "start": 895.754,
+ "end": 896.784,
+ "text": "locating"
+ },
+ {
+ "id": 2295,
+ "start": 896.784,
+ "end": 897.234,
+ "text": "who"
+ },
+ {
+ "id": 2296,
+ "start": 897.234,
+ "end": 897.324,
+ "text": "it"
+ },
+ {
+ "id": 2297,
+ "start": 897.324,
+ "end": 897.544,
+ "text": "is"
+ },
+ {
+ "id": 2298,
+ "start": 897.544,
+ "end": 897.754,
+ "text": "that’s"
+ },
+ {
+ "id": 2299,
+ "start": 897.754,
+ "end": 898.194,
+ "text": "actually"
+ },
+ {
+ "id": 2300,
+ "start": 898.194,
+ "end": 898.624,
+ "text": "judging"
+ },
+ {
+ "id": 2301,
+ "start": 898.624,
+ "end": 898.784,
+ "text": "this"
+ },
+ {
+ "id": 2302,
+ "start": 898.784,
+ "end": 899.344,
+ "text": "content"
+ },
+ {
+ "id": 2303,
+ "start": 899.0640000000001,
+ "end": 899.504,
+ "text": "–"
+ },
+ {
+ "id": 2304,
+ "start": 899.344,
+ "end": 899.664,
+ "text": "things"
+ },
+ {
+ "id": 2305,
+ "start": 899.664,
+ "end": 899.774,
+ "text": "that"
+ },
+ {
+ "id": 2306,
+ "start": 899.774,
+ "end": 899.884,
+ "text": "were"
+ },
+ {
+ "id": 2307,
+ "start": 899.884,
+ "end": 900.224,
+ "text": "taken"
+ },
+ {
+ "id": 2308,
+ "start": 900.224,
+ "end": 900.844,
+ "text": "down"
+ },
+ {
+ "id": 2309,
+ "start": 900.844,
+ "end": 901.004,
+ "text": "that"
+ },
+ {
+ "id": 2310,
+ "start": 901.004,
+ "end": 901.234,
+ "text": "maybe"
+ },
+ {
+ "id": 2311,
+ "start": 901.234,
+ "end": 901.484,
+ "text": "shouldn’t"
+ },
+ {
+ "id": 2312,
+ "start": 901.484,
+ "end": 901.584,
+ "text": "have"
+ },
+ {
+ "id": 2313,
+ "start": 901.584,
+ "end": 901.714,
+ "text": "been"
+ },
+ {
+ "id": 2314,
+ "start": 901.714,
+ "end": 902.024,
+ "text": "taken"
+ },
+ {
+ "id": 2315,
+ "start": 902.024,
+ "end": 902.644,
+ "text": "down;"
+ },
+ {
+ "id": 2316,
+ "start": 902.644,
+ "end": 902.974,
+ "text": "things"
+ },
+ {
+ "id": 2317,
+ "start": 902.974,
+ "end": 903.434,
+ "text": "that"
+ },
+ {
+ "id": 2318,
+ "start": 903.434,
+ "end": 903.664,
+ "text": "should"
+ },
+ {
+ "id": 2319,
+ "start": 903.664,
+ "end": 903.754,
+ "text": "have"
+ },
+ {
+ "id": 2320,
+ "start": 903.754,
+ "end": 903.894,
+ "text": "been"
+ },
+ {
+ "id": 2321,
+ "start": 903.894,
+ "end": 904.194,
+ "text": "taken"
+ },
+ {
+ "id": 2322,
+ "start": 904.194,
+ "end": 904.474,
+ "text": "down"
+ },
+ {
+ "id": 2323,
+ "start": 904.474,
+ "end": 904.594,
+ "text": "that"
+ },
+ {
+ "id": 2324,
+ "start": 904.594,
+ "end": 904.694,
+ "text": "were"
+ },
+ {
+ "id": 2325,
+ "start": 904.694,
+ "end": 904.964,
+ "text": "never"
+ },
+ {
+ "id": 2326,
+ "start": 904.964,
+ "end": 905.294,
+ "text": "taken"
+ },
+ {
+ "id": 2327,
+ "start": 905.294,
+ "end": 907.784,
+ "text": "down."
+ },
+ {
+ "id": 2328,
+ "start": 907.784,
+ "end": 908.284,
+ "text": "What"
+ },
+ {
+ "id": 2329,
+ "start": 908.284,
+ "end": 909.074,
+ "text": "transparency"
+ },
+ {
+ "id": 2330,
+ "start": 909.074,
+ "end": 909.144,
+ "text": "are"
+ },
+ {
+ "id": 2331,
+ "start": 909.144,
+ "end": 909.374,
+ "text": "you"
+ },
+ {
+ "id": 2332,
+ "start": 909.374,
+ "end": 909.674,
+ "text": "giving"
+ },
+ {
+ "id": 2333,
+ "start": 909.674,
+ "end": 909.784,
+ "text": "in"
+ },
+ {
+ "id": 2334,
+ "start": 909.784,
+ "end": 910.074,
+ "text": "terms"
+ },
+ {
+ "id": 2335,
+ "start": 910.074,
+ "end": 910.204,
+ "text": "of"
+ },
+ {
+ "id": 2336,
+ "start": 910.204,
+ "end": 910.404,
+ "text": "who"
+ },
+ {
+ "id": 2337,
+ "start": 910.404,
+ "end": 910.684,
+ "text": "the"
+ },
+ {
+ "id": 2338,
+ "start": 910.684,
+ "end": 911.094,
+ "text": "people"
+ },
+ {
+ "id": 2339,
+ "start": 911.094,
+ "end": 911.244,
+ "text": "are"
+ },
+ {
+ "id": 2340,
+ "start": 911.244,
+ "end": 911.394,
+ "text": "that"
+ },
+ {
+ "id": 2341,
+ "start": 911.394,
+ "end": 911.544,
+ "text": "are"
+ },
+ {
+ "id": 2342,
+ "start": 911.544,
+ "end": 912.554,
+ "text": "moderating"
+ },
+ {
+ "id": 2343,
+ "start": 912.554,
+ "end": 912.904,
+ "text": "and"
+ },
+ {
+ "id": 2344,
+ "start": 912.904,
+ "end": 913.144,
+ "text": "where"
+ },
+ {
+ "id": 2345,
+ "start": 913.144,
+ "end": 913.294,
+ "text": "they"
+ },
+ {
+ "id": 2346,
+ "start": 913.294,
+ "end": 913.684,
+ "text": "are"
+ },
+ {
+ "id": 2347,
+ "start": 913.684,
+ "end": 914.434,
+ "text": "and"
+ },
+ {
+ "id": 2348,
+ "start": 914.434,
+ "end": 914.724,
+ "text": "what"
+ },
+ {
+ "id": 2349,
+ "start": 914.724,
+ "end": 914.844,
+ "text": "their"
+ },
+ {
+ "id": 2350,
+ "start": 914.844,
+ "end": 915.674,
+ "text": "qualifications"
+ },
+ {
+ "id": 2351,
+ "start": 915.674,
+ "end": 915.794,
+ "text": "are"
+ },
+ {
+ "id": 2352,
+ "start": 915.794,
+ "end": 915.904,
+ "text": "to"
+ },
+ {
+ "id": 2353,
+ "start": 915.904,
+ "end": 916.104,
+ "text": "do"
+ },
+ {
+ "id": 2354,
+ "start": 916.104,
+ "end": 916.314,
+ "text": "this"
+ },
+ {
+ "id": 2355,
+ "start": 916.9589999999998,
+ "end": 917.1840000000002,
+ "text": "work?"
+ },
+ {
+ "id": 2356,
+ "start": 917.814,
+ "end": 918.054,
+ "text": "We"
+ },
+ {
+ "id": 2357,
+ "start": 918.054,
+ "end": 918.344,
+ "text": "employ"
+ },
+ {
+ "id": 2358,
+ "start": 918.344,
+ "end": 918.724,
+ "text": "people"
+ },
+ {
+ "id": 2359,
+ "start": 918.724,
+ "end": 919.084,
+ "text": "around"
+ },
+ {
+ "id": 2360,
+ "start": 919.084,
+ "end": 919.174,
+ "text": "the"
+ },
+ {
+ "id": 2361,
+ "start": 919.174,
+ "end": 919.564,
+ "text": "world"
+ },
+ {
+ "id": 2362,
+ "start": 919.564,
+ "end": 919.744,
+ "text": "who"
+ },
+ {
+ "id": 2363,
+ "start": 919.744,
+ "end": 920.124,
+ "text": "bring"
+ },
+ {
+ "id": 2364,
+ "start": 920.124,
+ "end": 920.774,
+ "text": "in"
+ },
+ {
+ "id": 2365,
+ "start": 920.774,
+ "end": 921.214,
+ "text": "the"
+ },
+ {
+ "id": 2366,
+ "start": 921.214,
+ "end": 921.754,
+ "text": "knowledge"
+ },
+ {
+ "id": 2367,
+ "start": 921.754,
+ "end": 921.944,
+ "text": "of"
+ },
+ {
+ "id": 2368,
+ "start": 921.944,
+ "end": 922.734,
+ "text": "languages,"
+ },
+ {
+ "id": 2369,
+ "start": 922.734,
+ "end": 922.854,
+ "text": "of"
+ },
+ {
+ "id": 2370,
+ "start": 922.854,
+ "end": 923.304,
+ "text": "cultural"
+ },
+ {
+ "id": 2371,
+ "start": 923.304,
+ "end": 923.944,
+ "text": "context,"
+ },
+ {
+ "id": 2372,
+ "start": 923.944,
+ "end": 924.154,
+ "text": "so"
+ },
+ {
+ "id": 2373,
+ "start": 924.154,
+ "end": 924.234,
+ "text": "they"
+ },
+ {
+ "id": 2374,
+ "start": 924.234,
+ "end": 924.384,
+ "text": "can"
+ },
+ {
+ "id": 2375,
+ "start": 924.384,
+ "end": 924.754,
+ "text": "better"
+ },
+ {
+ "id": 2376,
+ "start": 924.754,
+ "end": 926.214,
+ "text": "understand."
+ },
+ {
+ "id": 2377,
+ "start": 926.214,
+ "end": 926.364,
+ "text": "But"
+ },
+ {
+ "id": 2378,
+ "start": 926.364,
+ "end": 926.454,
+ "text": "the"
+ },
+ {
+ "id": 2379,
+ "start": 926.454,
+ "end": 927.094,
+ "text": "focus"
+ },
+ {
+ "id": 2380,
+ "start": 927.094,
+ "end": 927.264,
+ "text": "that"
+ },
+ {
+ "id": 2381,
+ "start": 927.264,
+ "end": 927.394,
+ "text": "we"
+ },
+ {
+ "id": 2382,
+ "start": 927.394,
+ "end": 927.854,
+ "text": "have"
+ },
+ {
+ "id": 2383,
+ "start": 927.854,
+ "end": 928.074,
+ "text": "is"
+ },
+ {
+ "id": 2384,
+ "start": 928.074,
+ "end": 928.284,
+ "text": "on"
+ },
+ {
+ "id": 2385,
+ "start": 928.284,
+ "end": 928.364,
+ "text": "the"
+ },
+ {
+ "id": 2386,
+ "start": 928.364,
+ "end": 929.224,
+ "text": "standards,"
+ },
+ {
+ "id": 2387,
+ "start": 929.224,
+ "end": 929.374,
+ "text": "on"
+ },
+ {
+ "id": 2388,
+ "start": 929.374,
+ "end": 929.734,
+ "text": "what"
+ },
+ {
+ "id": 2389,
+ "start": 929.734,
+ "end": 929.944,
+ "text": "are"
+ },
+ {
+ "id": 2390,
+ "start": 929.944,
+ "end": 930.554,
+ "text": "the"
+ },
+ {
+ "id": 2391,
+ "start": 930.554,
+ "end": 931.104,
+ "text": "rules"
+ },
+ {
+ "id": 2392,
+ "start": 931.104,
+ "end": 931.284,
+ "text": "that"
+ },
+ {
+ "id": 2393,
+ "start": 931.284,
+ "end": 931.464,
+ "text": "they"
+ },
+ {
+ "id": 2394,
+ "start": 931.464,
+ "end": 932.244,
+ "text": "use"
+ },
+ {
+ "id": 2395,
+ "start": 932.244,
+ "end": 932.454,
+ "text": "to"
+ },
+ {
+ "id": 2396,
+ "start": 932.454,
+ "end": 932.744,
+ "text": "make"
+ },
+ {
+ "id": 2397,
+ "start": 932.744,
+ "end": 932.944,
+ "text": "these"
+ },
+ {
+ "id": 2398,
+ "start": 933.159,
+ "end": 933.324,
+ "text": "decisions."
+ },
+ {
+ "id": 2399,
+ "start": 933.574,
+ "end": 933.704,
+ "text": "And"
+ },
+ {
+ "id": 2400,
+ "start": 933.704,
+ "end": 933.904,
+ "text": "that’s"
+ },
+ {
+ "id": 2401,
+ "start": 933.904,
+ "end": 934.744,
+ "text": "why"
+ },
+ {
+ "id": 2402,
+ "start": 934.744,
+ "end": 934.844,
+ "text": "it"
+ },
+ {
+ "id": 2403,
+ "start": 934.844,
+ "end": 934.984,
+ "text": "was"
+ },
+ {
+ "id": 2404,
+ "start": 934.984,
+ "end": 935.304,
+ "text": "really"
+ },
+ {
+ "id": 2405,
+ "start": 935.304,
+ "end": 935.774,
+ "text": "important"
+ },
+ {
+ "id": 2406,
+ "start": 935.774,
+ "end": 935.914,
+ "text": "for"
+ },
+ {
+ "id": 2407,
+ "start": 935.914,
+ "end": 936.344,
+ "text": "us"
+ },
+ {
+ "id": 2408,
+ "start": 936.344,
+ "end": 936.614,
+ "text": "to"
+ },
+ {
+ "id": 2409,
+ "start": 936.614,
+ "end": 937.144,
+ "text": "publish"
+ },
+ {
+ "id": 2410,
+ "start": 937.144,
+ "end": 937.224,
+ "text": "the"
+ },
+ {
+ "id": 2411,
+ "start": 937.224,
+ "end": 937.634,
+ "text": "community"
+ },
+ {
+ "id": 2412,
+ "start": 937.634,
+ "end": 938.754,
+ "text": "standards"
+ },
+ {
+ "id": 2413,
+ "start": 938.754,
+ "end": 938.904,
+ "text": "in"
+ },
+ {
+ "id": 2414,
+ "start": 938.904,
+ "end": 939.074,
+ "text": "their"
+ },
+ {
+ "id": 2415,
+ "start": 939.074,
+ "end": 939.594,
+ "text": "full"
+ },
+ {
+ "id": 2416,
+ "start": 939.594,
+ "end": 940.114,
+ "text": "internal"
+ },
+ {
+ "id": 2417,
+ "start": 940.114,
+ "end": 941.214,
+ "text": "guidelines"
+ },
+ {
+ "id": 2418,
+ "start": 941.214,
+ "end": 941.414,
+ "text": "so"
+ },
+ {
+ "id": 2419,
+ "start": 941.414,
+ "end": 941.814,
+ "text": "that"
+ },
+ {
+ "id": 2420,
+ "start": 941.814,
+ "end": 942.144,
+ "text": "people"
+ },
+ {
+ "id": 2421,
+ "start": 942.144,
+ "end": 942.294,
+ "text": "could"
+ },
+ {
+ "id": 2422,
+ "start": 942.294,
+ "end": 942.674,
+ "text": "actually"
+ },
+ {
+ "id": 2423,
+ "start": 942.674,
+ "end": 943.384,
+ "text": "look"
+ },
+ {
+ "id": 2424,
+ "start": 943.384,
+ "end": 943.564,
+ "text": "and"
+ },
+ {
+ "id": 2425,
+ "start": 943.564,
+ "end": 944.204,
+ "text": "understand"
+ },
+ {
+ "id": 2426,
+ "start": 944.204,
+ "end": 944.364,
+ "text": "what"
+ },
+ {
+ "id": 2427,
+ "start": 944.364,
+ "end": 944.854,
+ "text": "decisions"
+ },
+ {
+ "id": 2428,
+ "start": 944.854,
+ "end": 944.974,
+ "text": "were"
+ },
+ {
+ "id": 2429,
+ "start": 944.974,
+ "end": 945.204,
+ "text": "being"
+ },
+ {
+ "id": 2430,
+ "start": 945.4539999999998,
+ "end": 945.8890000000001,
+ "text": "made"
+ },
+ {
+ "id": 2431,
+ "start": 945.934,
+ "end": 946.574,
+ "text": "and"
+ },
+ {
+ "id": 2432,
+ "start": 946.574,
+ "end": 946.864,
+ "text": "when"
+ },
+ {
+ "id": 2433,
+ "start": 946.864,
+ "end": 946.984,
+ "text": "we"
+ },
+ {
+ "id": 2434,
+ "start": 946.984,
+ "end": 947.214,
+ "text": "make"
+ },
+ {
+ "id": 2435,
+ "start": 947.3389999999999,
+ "end": 947.8740000000001,
+ "text": "mistakes."
+ },
+ {
+ "id": 2436,
+ "start": 947.694,
+ "end": 948.534,
+ "text": "And"
+ },
+ {
+ "id": 2437,
+ "start": 948.534,
+ "end": 949.024,
+ "text": "mistakes"
+ },
+ {
+ "id": 2438,
+ "start": 949.024,
+ "end": 949.154,
+ "text": "will"
+ },
+ {
+ "id": 2439,
+ "start": 949.154,
+ "end": 949.264,
+ "text": "be"
+ },
+ {
+ "id": 2440,
+ "start": 949.799,
+ "end": 949.9440000000001,
+ "text": "made."
+ },
+ {
+ "id": 2441,
+ "start": 950.444,
+ "end": 950.624,
+ "text": "They"
+ },
+ {
+ "id": 2442,
+ "start": 950.624,
+ "end": 950.774,
+ "text": "can"
+ },
+ {
+ "id": 2443,
+ "start": 951.3690000000001,
+ "end": 951.534,
+ "text": "understand:"
+ },
+ {
+ "id": 2444,
+ "start": 952.114,
+ "end": 952.294,
+ "text": "Is"
+ },
+ {
+ "id": 2445,
+ "start": 952.294,
+ "end": 952.454,
+ "text": "it"
+ },
+ {
+ "id": 2446,
+ "start": 952.454,
+ "end": 952.704,
+ "text": "just"
+ },
+ {
+ "id": 2447,
+ "start": 952.7139999999999,
+ "end": 952.9273333333333,
+ "text": "a"
+ },
+ {
+ "id": 2448,
+ "start": 952.9739999999999,
+ "end": 953.1506666666667,
+ "text": "mistake"
+ },
+ {
+ "id": 2449,
+ "start": 953.234,
+ "end": 953.374,
+ "text": "that"
+ },
+ {
+ "id": 2450,
+ "start": 953.374,
+ "end": 953.544,
+ "text": "was"
+ },
+ {
+ "id": 2451,
+ "start": 953.544,
+ "end": 953.984,
+ "text": "made"
+ },
+ {
+ "id": 2452,
+ "start": 954.5990000000002,
+ "end": 954.9589999999998,
+ "text": "as"
+ },
+ {
+ "id": 2453,
+ "start": 955.654,
+ "end": 955.934,
+ "text": "part"
+ },
+ {
+ "id": 2454,
+ "start": 955.934,
+ "end": 956.034,
+ "text": "of"
+ },
+ {
+ "id": 2455,
+ "start": 956.034,
+ "end": 956.124,
+ "text": "the"
+ },
+ {
+ "id": 2456,
+ "start": 956.124,
+ "end": 956.624,
+ "text": "enforcement"
+ },
+ {
+ "id": 2457,
+ "start": 956.624,
+ "end": 957.194,
+ "text": "process,"
+ },
+ {
+ "id": 2458,
+ "start": 957.184,
+ "end": 957.654,
+ "text": "or"
+ },
+ {
+ "id": 2459,
+ "start": 957.644,
+ "end": 957.924,
+ "text": "am"
+ },
+ {
+ "id": 2460,
+ "start": 958.104,
+ "end": 958.194,
+ "text": "I"
+ },
+ {
+ "id": 2461,
+ "start": 958.194,
+ "end": 959.064,
+ "text": "disagreeing"
+ },
+ {
+ "id": 2462,
+ "start": 959.064,
+ "end": 959.594,
+ "text": "with"
+ },
+ {
+ "id": 2463,
+ "start": 959.594,
+ "end": 959.924,
+ "text": "the"
+ },
+ {
+ "id": 2464,
+ "start": 959.924,
+ "end": 960.394,
+ "text": "rules"
+ },
+ {
+ "id": 2465,
+ "start": 960.394,
+ "end": 960.514,
+ "text": "and"
+ },
+ {
+ "id": 2466,
+ "start": 960.514,
+ "end": 960.584,
+ "text": "the"
+ },
+ {
+ "id": 2467,
+ "start": 960.584,
+ "end": 960.754,
+ "text": "way"
+ },
+ {
+ "id": 2468,
+ "start": 960.754,
+ "end": 960.894,
+ "text": "that"
+ },
+ {
+ "id": 2469,
+ "start": 960.894,
+ "end": 961.044,
+ "text": "they’re"
+ },
+ {
+ "id": 2470,
+ "start": 961.044,
+ "end": 961.464,
+ "text": "written?"
+ },
+ {
+ "id": 2471,
+ "start": 961.464,
+ "end": 961.644,
+ "text": "And"
+ },
+ {
+ "id": 2472,
+ "start": 961.644,
+ "end": 961.754,
+ "text": "we"
+ },
+ {
+ "id": 2473,
+ "start": 961.754,
+ "end": 962.874,
+ "text": "welcome"
+ },
+ {
+ "id": 2474,
+ "start": 962.874,
+ "end": 962.974,
+ "text": "the"
+ },
+ {
+ "id": 2475,
+ "start": 962.974,
+ "end": 963.454,
+ "text": "continued"
+ },
+ {
+ "id": 2476,
+ "start": 963.454,
+ "end": 964.194,
+ "text": "conversation"
+ },
+ {
+ "id": 2477,
+ "start": 964.2204999999999,
+ "end": 964.7255,
+ "text": "about"
+ },
+ {
+ "id": 2478,
+ "start": 964.987,
+ "end": 965.257,
+ "text": "where"
+ },
+ {
+ "id": 2479,
+ "start": 965.257,
+ "end": 965.537,
+ "text": "those"
+ },
+ {
+ "id": 2480,
+ "start": 965.537,
+ "end": 965.827,
+ "text": "lines"
+ },
+ {
+ "id": 2481,
+ "start": 965.827,
+ "end": 967.287,
+ "text": "are."
+ },
+ {
+ "id": 2482,
+ "start": 967.287,
+ "end": 967.677,
+ "text": "So"
+ },
+ {
+ "id": 2483,
+ "start": 967.677,
+ "end": 967.827,
+ "text": "what"
+ },
+ {
+ "id": 2484,
+ "start": 967.827,
+ "end": 968.317,
+ "text": "assurance"
+ },
+ {
+ "id": 2485,
+ "start": 968.317,
+ "end": 968.517,
+ "text": "could"
+ },
+ {
+ "id": 2486,
+ "start": 968.517,
+ "end": 968.637,
+ "text": "you"
+ },
+ {
+ "id": 2487,
+ "start": 968.637,
+ "end": 968.837,
+ "text": "give,"
+ },
+ {
+ "id": 2488,
+ "start": 968.7036666666665,
+ "end": 968.867,
+ "text": "for"
+ },
+ {
+ "id": 2489,
+ "start": 968.7703333333333,
+ "end": 968.897,
+ "text": "instance,"
+ },
+ {
+ "id": 2490,
+ "start": 968.837,
+ "end": 968.927,
+ "text": "to"
+ },
+ {
+ "id": 2491,
+ "start": 968.927,
+ "end": 969.897,
+ "text": "someone"
+ },
+ {
+ "id": 2492,
+ "start": 969.897,
+ "end": 970.057,
+ "text": "in"
+ },
+ {
+ "id": 2493,
+ "start": 970.057,
+ "end": 970.967,
+ "text": "Ukraine"
+ },
+ {
+ "id": 2494,
+ "start": 970.967,
+ "end": 971.407,
+ "text": "that"
+ },
+ {
+ "id": 2495,
+ "start": 971.407,
+ "end": 971.667,
+ "text": "his"
+ },
+ {
+ "id": 2496,
+ "start": 971.667,
+ "end": 971.747,
+ "text": "or"
+ },
+ {
+ "id": 2497,
+ "start": 971.747,
+ "end": 971.957,
+ "text": "her"
+ },
+ {
+ "id": 2498,
+ "start": 971.957,
+ "end": 972.617,
+ "text": "content"
+ },
+ {
+ "id": 2499,
+ "start": 972.617,
+ "end": 972.817,
+ "text": "that"
+ },
+ {
+ "id": 2500,
+ "start": 972.817,
+ "end": 973.057,
+ "text": "either"
+ },
+ {
+ "id": 2501,
+ "start": 973.057,
+ "end": 973.197,
+ "text": "has"
+ },
+ {
+ "id": 2502,
+ "start": 973.197,
+ "end": 973.357,
+ "text": "been"
+ },
+ {
+ "id": 2503,
+ "start": 973.357,
+ "end": 973.697,
+ "text": "taken"
+ },
+ {
+ "id": 2504,
+ "start": 973.697,
+ "end": 974.117,
+ "text": "down"
+ },
+ {
+ "id": 2505,
+ "start": 974.117,
+ "end": 976.307,
+ "text": "or"
+ },
+ {
+ "id": 2506,
+ "start": 976.307,
+ "end": 976.867,
+ "text": "was"
+ },
+ {
+ "id": 2507,
+ "start": 976.867,
+ "end": 977.457,
+ "text": "reported"
+ },
+ {
+ "id": 2508,
+ "start": 977.162,
+ "end": 977.747,
+ "text": "as"
+ },
+ {
+ "id": 2509,
+ "start": 977.457,
+ "end": 978.037,
+ "text": "problematic"
+ },
+ {
+ "id": 2510,
+ "start": 978.037,
+ "end": 978.897,
+ "text": "content,"
+ },
+ {
+ "id": 2511,
+ "start": 978.897,
+ "end": 979.907,
+ "text": "that"
+ },
+ {
+ "id": 2512,
+ "start": 979.907,
+ "end": 980.027,
+ "text": "the"
+ },
+ {
+ "id": 2513,
+ "start": 980.027,
+ "end": 980.477,
+ "text": "person"
+ },
+ {
+ "id": 2514,
+ "start": 980.397,
+ "end": 980.927,
+ "text": "who’s"
+ },
+ {
+ "id": 2515,
+ "start": 980.767,
+ "end": 981.377,
+ "text": "doing"
+ },
+ {
+ "id": 2516,
+ "start": 981.377,
+ "end": 981.707,
+ "text": "the"
+ },
+ {
+ "id": 2517,
+ "start": 981.707,
+ "end": 983.147,
+ "text": "moderating,"
+ },
+ {
+ "id": 2518,
+ "start": 983.147,
+ "end": 983.617,
+ "text": "the"
+ },
+ {
+ "id": 2519,
+ "start": 983.617,
+ "end": 983.947,
+ "text": "people"
+ },
+ {
+ "id": 2520,
+ "start": 983.947,
+ "end": 984.077,
+ "text": "that"
+ },
+ {
+ "id": 2521,
+ "start": 984.077,
+ "end": 984.137,
+ "text": "are"
+ },
+ {
+ "id": 2522,
+ "start": 984.137,
+ "end": 984.447,
+ "text": "doing"
+ },
+ {
+ "id": 2523,
+ "start": 984.447,
+ "end": 984.747,
+ "text": "it,"
+ },
+ {
+ "id": 2524,
+ "start": 984.747,
+ "end": 985.547,
+ "text": "are"
+ },
+ {
+ "id": 2525,
+ "start": 985.547,
+ "end": 985.877,
+ "text": "either"
+ },
+ {
+ "id": 2526,
+ "start": 985.877,
+ "end": 986.937,
+ "text": "Ukrainian"
+ },
+ {
+ "id": 2527,
+ "start": 986.937,
+ "end": 987.467,
+ "text": "or"
+ },
+ {
+ "id": 2528,
+ "start": 987.467,
+ "end": 988.287,
+ "text": "Russian"
+ },
+ {
+ "id": 2529,
+ "start": 988.287,
+ "end": 988.997,
+ "text": "or"
+ },
+ {
+ "id": 2530,
+ "start": 988.997,
+ "end": 989.347,
+ "text": "what’s"
+ },
+ {
+ "id": 2531,
+ "start": 989.347,
+ "end": 989.537,
+ "text": "their"
+ },
+ {
+ "id": 2532,
+ "start": 989.537,
+ "end": 990.397,
+ "text": "background?"
+ },
+ {
+ "id": 2533,
+ "start": 990.397,
+ "end": 990.807,
+ "text": "Because"
+ },
+ {
+ "id": 2534,
+ "start": 990.807,
+ "end": 991.267,
+ "text": "everyone’s"
+ },
+ {
+ "id": 2535,
+ "start": 991.037,
+ "end": 991.452,
+ "text": "going"
+ },
+ {
+ "id": 2536,
+ "start": 991.267,
+ "end": 991.637,
+ "text": "to"
+ },
+ {
+ "id": 2537,
+ "start": 991.4970000000001,
+ "end": 991.8219999999999,
+ "text": "–"
+ },
+ {
+ "id": 2538,
+ "start": 991.727,
+ "end": 992.007,
+ "text": "any"
+ },
+ {
+ "id": 2539,
+ "start": 992.007,
+ "end": 992.997,
+ "text": "individual,"
+ },
+ {
+ "id": 2540,
+ "start": 992.997,
+ "end": 993.437,
+ "text": "despite"
+ },
+ {
+ "id": 2541,
+ "start": 993.437,
+ "end": 993.527,
+ "text": "the"
+ },
+ {
+ "id": 2542,
+ "start": 993.527,
+ "end": 993.837,
+ "text": "rules"
+ },
+ {
+ "id": 2543,
+ "start": 993.837,
+ "end": 993.917,
+ "text": "you"
+ },
+ {
+ "id": 2544,
+ "start": 993.917,
+ "end": 994.077,
+ "text": "might"
+ },
+ {
+ "id": 2545,
+ "start": 994.077,
+ "end": 994.227,
+ "text": "have"
+ },
+ {
+ "id": 2546,
+ "start": 994.227,
+ "end": 994.347,
+ "text": "in"
+ },
+ {
+ "id": 2547,
+ "start": 994.347,
+ "end": 995.107,
+ "text": "place,"
+ },
+ {
+ "id": 2548,
+ "start": 995.107,
+ "end": 995.297,
+ "text": "could"
+ },
+ {
+ "id": 2549,
+ "start": 995.297,
+ "end": 995.757,
+ "text": "probably"
+ },
+ {
+ "id": 2550,
+ "start": 995.757,
+ "end": 995.987,
+ "text": "bring"
+ },
+ {
+ "id": 2551,
+ "start": 995.987,
+ "end": 996.197,
+ "text": "some"
+ },
+ {
+ "id": 2552,
+ "start": 996.197,
+ "end": 996.657,
+ "text": "bias"
+ },
+ {
+ "id": 2553,
+ "start": 996.657,
+ "end": 997.527,
+ "text": "to"
+ },
+ {
+ "id": 2554,
+ "start": 997.527,
+ "end": 998.147,
+ "text": "what"
+ },
+ {
+ "id": 2555,
+ "start": 998.147,
+ "end": 998.227,
+ "text": "it"
+ },
+ {
+ "id": 2556,
+ "start": 998.227,
+ "end": 998.437,
+ "text": "is"
+ },
+ {
+ "id": 2557,
+ "start": 998.437,
+ "end": 998.617,
+ "text": "that"
+ },
+ {
+ "id": 2558,
+ "start": 999.092,
+ "end": 999.517,
+ "text": "they’re"
+ },
+ {
+ "id": 2559,
+ "start": 999.747,
+ "end": 1000.417,
+ "text": "reviewing"
+ },
+ {
+ "id": 2560,
+ "start": 1000.417,
+ "end": 1001.027,
+ "text": "or"
+ },
+ {
+ "id": 2561,
+ "start": 1001.027,
+ "end": 1001.247,
+ "text": "they"
+ },
+ {
+ "id": 2562,
+ "start": 1001.247,
+ "end": 1001.667,
+ "text": "could"
+ },
+ {
+ "id": 2563,
+ "start": 1001.667,
+ "end": 1002.097,
+ "text": "come"
+ },
+ {
+ "id": 2564,
+ "start": 1002.087,
+ "end": 1002.517,
+ "text": "from"
+ },
+ {
+ "id": 2565,
+ "start": 1002.302,
+ "end": 1002.6120000000001,
+ "text": "–"
+ },
+ {
+ "id": 2566,
+ "start": 1002.517,
+ "end": 1002.707,
+ "text": "and"
+ },
+ {
+ "id": 2567,
+ "start": 1002.707,
+ "end": 1002.937,
+ "text": "think"
+ },
+ {
+ "id": 2568,
+ "start": 1002.937,
+ "end": 1003.217,
+ "text": "one"
+ },
+ {
+ "id": 2569,
+ "start": 1003.217,
+ "end": 1003.897,
+ "text": "word"
+ },
+ {
+ "id": 2570,
+ "start": 1003.897,
+ "end": 1004.207,
+ "text": "means"
+ },
+ {
+ "id": 2571,
+ "start": 1004.207,
+ "end": 1004.557,
+ "text": "something"
+ },
+ {
+ "id": 2572,
+ "start": 1004.557,
+ "end": 1004.657,
+ "text": "in"
+ },
+ {
+ "id": 2573,
+ "start": 1004.657,
+ "end": 1005.977,
+ "text": "Ukrainian"
+ },
+ {
+ "id": 2574,
+ "start": 1005.977,
+ "end": 1006.257,
+ "text": "that"
+ },
+ {
+ "id": 2575,
+ "start": 1006.257,
+ "end": 1006.327,
+ "text": "it"
+ },
+ {
+ "id": 2576,
+ "start": 1006.327,
+ "end": 1006.587,
+ "text": "doesn’t"
+ },
+ {
+ "id": 2577,
+ "start": 1006.587,
+ "end": 1006.707,
+ "text": "mean"
+ },
+ {
+ "id": 2578,
+ "start": 1006.707,
+ "end": 1006.817,
+ "text": "in"
+ },
+ {
+ "id": 2579,
+ "start": 1006.817,
+ "end": 1007.157,
+ "text": "Russian,"
+ },
+ {
+ "id": 2580,
+ "start": 1007.157,
+ "end": 1007.317,
+ "text": "for"
+ },
+ {
+ "id": 2581,
+ "start": 1007.317,
+ "end": 1008.947,
+ "text": "instance."
+ },
+ {
+ "id": 2582,
+ "start": 1008.947,
+ "end": 1009.477,
+ "text": "We"
+ },
+ {
+ "id": 2583,
+ "start": 1009.477,
+ "end": 1009.877,
+ "text": "employ"
+ },
+ {
+ "id": 2584,
+ "start": 1009.877,
+ "end": 1010.267,
+ "text": "people"
+ },
+ {
+ "id": 2585,
+ "start": 1010.267,
+ "end": 1010.647,
+ "text": "who"
+ },
+ {
+ "id": 2586,
+ "start": 1010.647,
+ "end": 1011.037,
+ "text": "bring"
+ },
+ {
+ "id": 2587,
+ "start": 1011.037,
+ "end": 1011.277,
+ "text": "in"
+ },
+ {
+ "id": 2588,
+ "start": 1011.277,
+ "end": 1011.357,
+ "text": "a"
+ },
+ {
+ "id": 2589,
+ "start": 1011.357,
+ "end": 1011.957,
+ "text": "variety"
+ },
+ {
+ "id": 2590,
+ "start": 1011.957,
+ "end": 1012.107,
+ "text": "of"
+ },
+ {
+ "id": 2591,
+ "start": 1012.107,
+ "end": 1012.217,
+ "text": "the"
+ },
+ {
+ "id": 2592,
+ "start": 1012.217,
+ "end": 1012.517,
+ "text": "local"
+ },
+ {
+ "id": 2593,
+ "start": 1013.2470000000003,
+ "end": 1013.5020000000002,
+ "text": "context."
+ },
+ {
+ "id": 2594,
+ "start": 1014.277,
+ "end": 1014.487,
+ "text": "How"
+ },
+ {
+ "id": 2595,
+ "start": 1014.487,
+ "end": 1014.577,
+ "text": "can"
+ },
+ {
+ "id": 2596,
+ "start": 1014.607,
+ "end": 1014.722,
+ "text": "people"
+ },
+ {
+ "id": 2597,
+ "start": 1014.727,
+ "end": 1014.867,
+ "text": "be"
+ },
+ {
+ "id": 2598,
+ "start": 1014.867,
+ "end": 1015.377,
+ "text": "assured"
+ },
+ {
+ "id": 2599,
+ "start": 1015.377,
+ "end": 1015.487,
+ "text": "of"
+ },
+ {
+ "id": 2600,
+ "start": 1015.487,
+ "end": 1018.157,
+ "text": "that?"
+ },
+ {
+ "id": 2601,
+ "start": 1018.157,
+ "end": 1018.187,
+ "text": "I"
+ },
+ {
+ "id": 2602,
+ "start": 1018.187,
+ "end": 1018.327,
+ "text": "mean"
+ },
+ {
+ "id": 2603,
+ "start": 1018.327,
+ "end": 1018.497,
+ "text": "what"
+ },
+ {
+ "id": 2604,
+ "start": 1018.497,
+ "end": 1019.247,
+ "text": "transparency"
+ },
+ {
+ "id": 2605,
+ "start": 1019.247,
+ "end": 1019.447,
+ "text": "could"
+ },
+ {
+ "id": 2606,
+ "start": 1019.447,
+ "end": 1019.567,
+ "text": "you"
+ },
+ {
+ "id": 2607,
+ "start": 1019.567,
+ "end": 1020.447,
+ "text": "offer"
+ },
+ {
+ "id": 2608,
+ "start": 1020.447,
+ "end": 1020.967,
+ "text": "to"
+ },
+ {
+ "id": 2609,
+ "start": 1020.967,
+ "end": 1021.687,
+ "text": "us"
+ },
+ {
+ "id": 2610,
+ "start": 1021.687,
+ "end": 1022.027,
+ "text": "or"
+ },
+ {
+ "id": 2611,
+ "start": 1022.027,
+ "end": 1022.437,
+ "text": "to"
+ },
+ {
+ "id": 2612,
+ "start": 1022.437,
+ "end": 1022.777,
+ "text": "people"
+ },
+ {
+ "id": 2613,
+ "start": 1022.777,
+ "end": 1022.947,
+ "text": "that"
+ },
+ {
+ "id": 2614,
+ "start": 1022.947,
+ "end": 1023.977,
+ "text": "are"
+ },
+ {
+ "id": 2615,
+ "start": 1023.977,
+ "end": 1024.437,
+ "text": "affected"
+ },
+ {
+ "id": 2616,
+ "start": 1024.437,
+ "end": 1024.797,
+ "text": "by"
+ },
+ {
+ "id": 2617,
+ "start": 1024.727,
+ "end": 1025.397,
+ "text": "content"
+ },
+ {
+ "id": 2618,
+ "start": 1025.062,
+ "end": 1025.5169999999998,
+ "text": "–"
+ },
+ {
+ "id": 2619,
+ "start": 1025.397,
+ "end": 1025.637,
+ "text": "either"
+ },
+ {
+ "id": 2620,
+ "start": 1025.637,
+ "end": 1025.837,
+ "text": "good"
+ },
+ {
+ "id": 2621,
+ "start": 1025.837,
+ "end": 1025.927,
+ "text": "or"
+ },
+ {
+ "id": 2622,
+ "start": 1025.927,
+ "end": 1026.227,
+ "text": "bad"
+ },
+ {
+ "id": 2623,
+ "start": 1026.227,
+ "end": 1026.767,
+ "text": "content"
+ },
+ {
+ "id": 2624,
+ "start": 1026.612,
+ "end": 1027.257,
+ "text": "–"
+ },
+ {
+ "id": 2625,
+ "start": 1026.997,
+ "end": 1027.747,
+ "text": "that"
+ },
+ {
+ "id": 2626,
+ "start": 1027.747,
+ "end": 1028.147,
+ "text": "these"
+ },
+ {
+ "id": 2627,
+ "start": 1028.147,
+ "end": 1028.497,
+ "text": "people"
+ },
+ {
+ "id": 2628,
+ "start": 1028.497,
+ "end": 1029.257,
+ "text": "actually"
+ },
+ {
+ "id": 2629,
+ "start": 1029.257,
+ "end": 1029.567,
+ "text": "do"
+ },
+ {
+ "id": 2630,
+ "start": 1029.567,
+ "end": 1030.037,
+ "text": "reflect"
+ },
+ {
+ "id": 2631,
+ "start": 1030.037,
+ "end": 1030.497,
+ "text": "something"
+ },
+ {
+ "id": 2632,
+ "start": 1030.497,
+ "end": 1031.077,
+ "text": "that’s"
+ },
+ {
+ "id": 2633,
+ "start": 1031.077,
+ "end": 1031.287,
+ "text": "more"
+ },
+ {
+ "id": 2634,
+ "start": 1031.287,
+ "end": 1032.387,
+ "text": "nuanced"
+ },
+ {
+ "id": 2635,
+ "start": 1032.387,
+ "end": 1032.577,
+ "text": "if"
+ },
+ {
+ "id": 2636,
+ "start": 1032.577,
+ "end": 1032.697,
+ "text": "we"
+ },
+ {
+ "id": 2637,
+ "start": 1032.697,
+ "end": 1032.917,
+ "text": "don’t"
+ },
+ {
+ "id": 2638,
+ "start": 1032.917,
+ "end": 1033.177,
+ "text": "know"
+ },
+ {
+ "id": 2639,
+ "start": 1033.177,
+ "end": 1033.337,
+ "text": "who"
+ },
+ {
+ "id": 2640,
+ "start": 1033.337,
+ "end": 1033.527,
+ "text": "they"
+ },
+ {
+ "id": 2641,
+ "start": 1034.037,
+ "end": 1034.277,
+ "text": "are?"
+ },
+ {
+ "id": 2642,
+ "start": 1034.737,
+ "end": 1035.027,
+ "text": "One"
+ },
+ {
+ "id": 2643,
+ "start": 1035.027,
+ "end": 1035.097,
+ "text": "of"
+ },
+ {
+ "id": 2644,
+ "start": 1035.097,
+ "end": 1035.187,
+ "text": "the"
+ },
+ {
+ "id": 2645,
+ "start": 1035.187,
+ "end": 1035.397,
+ "text": "things"
+ },
+ {
+ "id": 2646,
+ "start": 1035.397,
+ "end": 1035.617,
+ "text": "that’s"
+ },
+ {
+ "id": 2647,
+ "start": 1035.617,
+ "end": 1036.097,
+ "text": "really"
+ },
+ {
+ "id": 2648,
+ "start": 1036.097,
+ "end": 1036.677,
+ "text": "important"
+ },
+ {
+ "id": 2649,
+ "start": 1036.677,
+ "end": 1036.837,
+ "text": "that"
+ },
+ {
+ "id": 2650,
+ "start": 1036.837,
+ "end": 1037.017,
+ "text": "we’ve"
+ },
+ {
+ "id": 2651,
+ "start": 1037.017,
+ "end": 1037.177,
+ "text": "been"
+ },
+ {
+ "id": 2652,
+ "start": 1037.177,
+ "end": 1037.527,
+ "text": "rolling"
+ },
+ {
+ "id": 2653,
+ "start": 1037.527,
+ "end": 1037.687,
+ "text": "out"
+ },
+ {
+ "id": 2654,
+ "start": 1037.687,
+ "end": 1037.907,
+ "text": "this"
+ },
+ {
+ "id": 2655,
+ "start": 1037.907,
+ "end": 1038.257,
+ "text": "year"
+ },
+ {
+ "id": 2656,
+ "start": 1038.257,
+ "end": 1038.377,
+ "text": "is"
+ },
+ {
+ "id": 2657,
+ "start": 1038.377,
+ "end": 1038.487,
+ "text": "the"
+ },
+ {
+ "id": 2658,
+ "start": 1038.487,
+ "end": 1038.937,
+ "text": "ability"
+ },
+ {
+ "id": 2659,
+ "start": 1038.937,
+ "end": 1039.377,
+ "text": "to"
+ },
+ {
+ "id": 2660,
+ "start": 1039.377,
+ "end": 1040.247,
+ "text": "appeal."
+ },
+ {
+ "id": 2661,
+ "start": 1040.247,
+ "end": 1040.617,
+ "text": "So"
+ },
+ {
+ "id": 2662,
+ "start": 1040.617,
+ "end": 1040.767,
+ "text": "if"
+ },
+ {
+ "id": 2663,
+ "start": 1040.767,
+ "end": 1040.807,
+ "text": "a"
+ },
+ {
+ "id": 2664,
+ "start": 1040.807,
+ "end": 1041.047,
+ "text": "piece"
+ },
+ {
+ "id": 2665,
+ "start": 1041.047,
+ "end": 1041.137,
+ "text": "of"
+ },
+ {
+ "id": 2666,
+ "start": 1041.137,
+ "end": 1041.597,
+ "text": "content"
+ },
+ {
+ "id": 2667,
+ "start": 1041.4270000000001,
+ "end": 1041.817,
+ "text": "is"
+ },
+ {
+ "id": 2668,
+ "start": 1041.717,
+ "end": 1042.037,
+ "text": "taken"
+ },
+ {
+ "id": 2669,
+ "start": 1042.037,
+ "end": 1042.377,
+ "text": "down,"
+ },
+ {
+ "id": 2670,
+ "start": 1042.377,
+ "end": 1042.477,
+ "text": "if"
+ },
+ {
+ "id": 2671,
+ "start": 1042.477,
+ "end": 1042.517,
+ "text": "a"
+ },
+ {
+ "id": 2672,
+ "start": 1042.517,
+ "end": 1042.787,
+ "text": "certain"
+ },
+ {
+ "id": 2673,
+ "start": 1042.787,
+ "end": 1043.227,
+ "text": "decision"
+ },
+ {
+ "id": 2674,
+ "start": 1043.227,
+ "end": 1043.377,
+ "text": "is"
+ },
+ {
+ "id": 2675,
+ "start": 1043.377,
+ "end": 1044.447,
+ "text": "made,"
+ },
+ {
+ "id": 2676,
+ "start": 1044.447,
+ "end": 1045.037,
+ "text": "people"
+ },
+ {
+ "id": 2677,
+ "start": 1045.037,
+ "end": 1045.357,
+ "text": "should"
+ },
+ {
+ "id": 2678,
+ "start": 1045.357,
+ "end": 1045.567,
+ "text": "have"
+ },
+ {
+ "id": 2679,
+ "start": 1045.567,
+ "end": 1045.677,
+ "text": "the"
+ },
+ {
+ "id": 2680,
+ "start": 1045.677,
+ "end": 1046.327,
+ "text": "ability"
+ },
+ {
+ "id": 2681,
+ "start": 1046.327,
+ "end": 1046.497,
+ "text": "to"
+ },
+ {
+ "id": 2682,
+ "start": 1046.497,
+ "end": 1046.957,
+ "text": "ask"
+ },
+ {
+ "id": 2683,
+ "start": 1046.957,
+ "end": 1047.127,
+ "text": "for"
+ },
+ {
+ "id": 2684,
+ "start": 1047.127,
+ "end": 1047.197,
+ "text": "an"
+ },
+ {
+ "id": 2685,
+ "start": 1047.197,
+ "end": 1047.637,
+ "text": "additional"
+ },
+ {
+ "id": 2686,
+ "start": 1047.637,
+ "end": 1048.647,
+ "text": "review"
+ },
+ {
+ "id": 2687,
+ "start": 1048.647,
+ "end": 1049.057,
+ "text": "and"
+ },
+ {
+ "id": 2688,
+ "start": 1049.057,
+ "end": 1049.417,
+ "text": "provide"
+ },
+ {
+ "id": 2689,
+ "start": 1049.417,
+ "end": 1049.837,
+ "text": "additional"
+ },
+ {
+ "id": 2690,
+ "start": 1050.1119999999999,
+ "end": 1050.477,
+ "text": "context."
+ },
+ {
+ "id": 2691,
+ "start": 1050.807,
+ "end": 1051.117,
+ "text": "And"
+ },
+ {
+ "id": 2692,
+ "start": 1051.117,
+ "end": 1051.257,
+ "text": "we"
+ },
+ {
+ "id": 2693,
+ "start": 1051.257,
+ "end": 1051.587,
+ "text": "use"
+ },
+ {
+ "id": 2694,
+ "start": 1051.587,
+ "end": 1052.457,
+ "text": "those,"
+ },
+ {
+ "id": 2695,
+ "start": 1052.457,
+ "end": 1052.817,
+ "text": "first"
+ },
+ {
+ "id": 2696,
+ "start": 1052.817,
+ "end": 1052.897,
+ "text": "of"
+ },
+ {
+ "id": 2697,
+ "start": 1052.897,
+ "end": 1053.127,
+ "text": "all,"
+ },
+ {
+ "id": 2698,
+ "start": 1053.127,
+ "end": 1053.267,
+ "text": "to"
+ },
+ {
+ "id": 2699,
+ "start": 1053.267,
+ "end": 1053.547,
+ "text": "help"
+ },
+ {
+ "id": 2700,
+ "start": 1053.547,
+ "end": 1053.777,
+ "text": "to"
+ },
+ {
+ "id": 2701,
+ "start": 1053.777,
+ "end": 1054.257,
+ "text": "correct"
+ },
+ {
+ "id": 2702,
+ "start": 1054.257,
+ "end": 1054.787,
+ "text": "mistakes"
+ },
+ {
+ "id": 2703,
+ "start": 1054.787,
+ "end": 1055.087,
+ "text": "that"
+ },
+ {
+ "id": 2704,
+ "start": 1055.087,
+ "end": 1055.317,
+ "text": "may"
+ },
+ {
+ "id": 2705,
+ "start": 1055.317,
+ "end": 1055.447,
+ "text": "be"
+ },
+ {
+ "id": 2706,
+ "start": 1055.447,
+ "end": 1056.247,
+ "text": "made,"
+ },
+ {
+ "id": 2707,
+ "start": 1056.247,
+ "end": 1056.457,
+ "text": "but"
+ },
+ {
+ "id": 2708,
+ "start": 1056.457,
+ "end": 1056.817,
+ "text": "also"
+ },
+ {
+ "id": 2709,
+ "start": 1056.817,
+ "end": 1056.977,
+ "text": "to"
+ },
+ {
+ "id": 2710,
+ "start": 1056.977,
+ "end": 1057.347,
+ "text": "provide"
+ },
+ {
+ "id": 2711,
+ "start": 1057.347,
+ "end": 1057.397,
+ "text": "a"
+ },
+ {
+ "id": 2712,
+ "start": 1057.397,
+ "end": 1058.377,
+ "text": "signal"
+ },
+ {
+ "id": 2713,
+ "start": 1058.377,
+ "end": 1058.567,
+ "text": "that"
+ },
+ {
+ "id": 2714,
+ "start": 1058.567,
+ "end": 1058.697,
+ "text": "we"
+ },
+ {
+ "id": 2715,
+ "start": 1058.697,
+ "end": 1058.877,
+ "text": "can"
+ },
+ {
+ "id": 2716,
+ "start": 1058.877,
+ "end": 1059.847,
+ "text": "see"
+ },
+ {
+ "id": 2717,
+ "start": 1059.847,
+ "end": 1060.507,
+ "text": "where"
+ },
+ {
+ "id": 2718,
+ "start": 1060.507,
+ "end": 1061.107,
+ "text": "and"
+ },
+ {
+ "id": 2719,
+ "start": 1061.107,
+ "end": 1061.367,
+ "text": "what"
+ },
+ {
+ "id": 2720,
+ "start": 1061.367,
+ "end": 1061.607,
+ "text": "kind"
+ },
+ {
+ "id": 2721,
+ "start": 1061.607,
+ "end": 1061.707,
+ "text": "of"
+ },
+ {
+ "id": 2722,
+ "start": 1061.707,
+ "end": 1062.457,
+ "text": "mistakes"
+ },
+ {
+ "id": 2723,
+ "start": 1062.457,
+ "end": 1063.097,
+ "text": "maybe"
+ },
+ {
+ "id": 2724,
+ "start": 1063.097,
+ "end": 1063.347,
+ "text": "are"
+ },
+ {
+ "id": 2725,
+ "start": 1063.347,
+ "end": 1063.567,
+ "text": "being"
+ },
+ {
+ "id": 2726,
+ "start": 1063.567,
+ "end": 1064.127,
+ "text": "made"
+ },
+ {
+ "id": 2727,
+ "start": 1064.127,
+ "end": 1064.287,
+ "text": "so"
+ },
+ {
+ "id": 2728,
+ "start": 1064.287,
+ "end": 1064.407,
+ "text": "that"
+ },
+ {
+ "id": 2729,
+ "start": 1064.407,
+ "end": 1064.517,
+ "text": "we"
+ },
+ {
+ "id": 2730,
+ "start": 1064.517,
+ "end": 1064.677,
+ "text": "can"
+ },
+ {
+ "id": 2731,
+ "start": 1064.677,
+ "end": 1065.147,
+ "text": "continue"
+ },
+ {
+ "id": 2732,
+ "start": 1065.147,
+ "end": 1065.237,
+ "text": "to"
+ },
+ {
+ "id": 2733,
+ "start": 1065.237,
+ "end": 1066.267,
+ "text": "improve"
+ },
+ {
+ "id": 2734,
+ "start": 1065.997,
+ "end": 1066.527,
+ "text": "those"
+ },
+ {
+ "id": 2735,
+ "start": 1066.5703333333333,
+ "end": 1067.0136666666667,
+ "text": "systems."
+ },
+ {
+ "id": 2736,
+ "start": 1067.1436666666666,
+ "end": 1067.5003333333334,
+ "text": "Now,"
+ },
+ {
+ "id": 2737,
+ "start": 1067.717,
+ "end": 1067.987,
+ "text": "more"
+ },
+ {
+ "id": 2738,
+ "start": 1067.987,
+ "end": 1069.747,
+ "text": "broadly"
+ },
+ {
+ "id": 2739,
+ "start": 1068.627,
+ "end": 1069.987,
+ "text": "we"
+ },
+ {
+ "id": 2740,
+ "start": 1069.217,
+ "end": 1070.1703333333335,
+ "text": "are"
+ },
+ {
+ "id": 2741,
+ "start": 1069.807,
+ "end": 1070.3536666666666,
+ "text": "–"
+ },
+ {
+ "id": 2742,
+ "start": 1070.397,
+ "end": 1070.537,
+ "text": "we"
+ },
+ {
+ "id": 2743,
+ "start": 1070.537,
+ "end": 1070.627,
+ "text": "have"
+ },
+ {
+ "id": 2744,
+ "start": 1070.627,
+ "end": 1070.747,
+ "text": "been"
+ },
+ {
+ "id": 2745,
+ "start": 1070.747,
+ "end": 1071.007,
+ "text": "very"
+ },
+ {
+ "id": 2746,
+ "start": 1071.007,
+ "end": 1071.527,
+ "text": "focused"
+ },
+ {
+ "id": 2747,
+ "start": 1071.527,
+ "end": 1071.857,
+ "text": "on"
+ },
+ {
+ "id": 2748,
+ "start": 1071.857,
+ "end": 1072.607,
+ "text": "sharing"
+ },
+ {
+ "id": 2749,
+ "start": 1072.607,
+ "end": 1073.647,
+ "text": "and"
+ },
+ {
+ "id": 2750,
+ "start": 1073.647,
+ "end": 1074.947,
+ "text": "publishing"
+ },
+ {
+ "id": 2751,
+ "start": 1074.947,
+ "end": 1075.597,
+ "text": "metrics"
+ },
+ {
+ "id": 2752,
+ "start": 1075.597,
+ "end": 1076.137,
+ "text": "that"
+ },
+ {
+ "id": 2753,
+ "start": 1076.137,
+ "end": 1076.387,
+ "text": "can"
+ },
+ {
+ "id": 2754,
+ "start": 1076.387,
+ "end": 1076.607,
+ "text": "help"
+ },
+ {
+ "id": 2755,
+ "start": 1076.607,
+ "end": 1076.767,
+ "text": "give"
+ },
+ {
+ "id": 2756,
+ "start": 1076.767,
+ "end": 1076.817,
+ "text": "a"
+ },
+ {
+ "id": 2757,
+ "start": 1076.817,
+ "end": 1077.157,
+ "text": "sense"
+ },
+ {
+ "id": 2758,
+ "start": 1077.157,
+ "end": 1077.267,
+ "text": "of"
+ },
+ {
+ "id": 2759,
+ "start": 1077.267,
+ "end": 1077.367,
+ "text": "the"
+ },
+ {
+ "id": 2760,
+ "start": 1077.367,
+ "end": 1078.267,
+ "text": "progress"
+ },
+ {
+ "id": 2761,
+ "start": 1078.267,
+ "end": 1078.427,
+ "text": "that"
+ },
+ {
+ "id": 2762,
+ "start": 1078.427,
+ "end": 1078.557,
+ "text": "is"
+ },
+ {
+ "id": 2763,
+ "start": 1078.557,
+ "end": 1078.787,
+ "text": "being"
+ },
+ {
+ "id": 2764,
+ "start": 1078.787,
+ "end": 1079.547,
+ "text": "made."
+ },
+ {
+ "id": 2765,
+ "start": 1079.547,
+ "end": 1080.197,
+ "text": "So"
+ },
+ {
+ "id": 2766,
+ "start": 1080.197,
+ "end": 1080.507,
+ "text": "taking"
+ },
+ {
+ "id": 2767,
+ "start": 1080.507,
+ "end": 1080.557,
+ "text": "a"
+ },
+ {
+ "id": 2768,
+ "start": 1080.557,
+ "end": 1080.777,
+ "text": "step"
+ },
+ {
+ "id": 2769,
+ "start": 1080.777,
+ "end": 1082.047,
+ "text": "back,"
+ },
+ {
+ "id": 2770,
+ "start": 1082.047,
+ "end": 1082.197,
+ "text": "one"
+ },
+ {
+ "id": 2771,
+ "start": 1082.197,
+ "end": 1082.267,
+ "text": "of"
+ },
+ {
+ "id": 2772,
+ "start": 1082.267,
+ "end": 1082.327,
+ "text": "the"
+ },
+ {
+ "id": 2773,
+ "start": 1082.327,
+ "end": 1082.517,
+ "text": "most"
+ },
+ {
+ "id": 2774,
+ "start": 1082.517,
+ "end": 1082.967,
+ "text": "important"
+ },
+ {
+ "id": 2775,
+ "start": 1082.967,
+ "end": 1083.717,
+ "text": "things"
+ },
+ {
+ "id": 2776,
+ "start": 1083.717,
+ "end": 1083.877,
+ "text": "in"
+ },
+ {
+ "id": 2777,
+ "start": 1083.877,
+ "end": 1085.193,
+ "text": "approaching"
+ },
+ {
+ "id": 2778,
+ "start": 1085.193,
+ "end": 1085.433,
+ "text": "a"
+ },
+ {
+ "id": 2779,
+ "start": 1085.433,
+ "end": 1085.833,
+ "text": "system"
+ },
+ {
+ "id": 2780,
+ "start": 1085.833,
+ "end": 1085.973,
+ "text": "of"
+ },
+ {
+ "id": 2781,
+ "start": 1085.948,
+ "end": 1086.393,
+ "text": "this"
+ },
+ {
+ "id": 2782,
+ "start": 1086.063,
+ "end": 1086.813,
+ "text": "scale"
+ },
+ {
+ "id": 2783,
+ "start": 1086.813,
+ "end": 1087.013,
+ "text": "has"
+ },
+ {
+ "id": 2784,
+ "start": 1087.013,
+ "end": 1087.153,
+ "text": "been"
+ },
+ {
+ "id": 2785,
+ "start": 1087.153,
+ "end": 1087.273,
+ "text": "to"
+ },
+ {
+ "id": 2786,
+ "start": 1087.273,
+ "end": 1087.793,
+ "text": "take"
+ },
+ {
+ "id": 2787,
+ "start": 1087.793,
+ "end": 1087.913,
+ "text": "a"
+ },
+ {
+ "id": 2788,
+ "start": 1087.913,
+ "end": 1088.533,
+ "text": "methodical"
+ },
+ {
+ "id": 2789,
+ "start": 1088.533,
+ "end": 1089.553,
+ "text": "approach."
+ },
+ {
+ "id": 2790,
+ "start": 1089.553,
+ "end": 1089.883,
+ "text": "And"
+ },
+ {
+ "id": 2791,
+ "start": 1089.883,
+ "end": 1090.043,
+ "text": "the"
+ },
+ {
+ "id": 2792,
+ "start": 1090.043,
+ "end": 1090.263,
+ "text": "most"
+ },
+ {
+ "id": 2793,
+ "start": 1090.263,
+ "end": 1090.743,
+ "text": "important"
+ },
+ {
+ "id": 2794,
+ "start": 1090.743,
+ "end": 1091.603,
+ "text": "thing"
+ },
+ {
+ "id": 2795,
+ "start": 1091.603,
+ "end": 1091.753,
+ "text": "in"
+ },
+ {
+ "id": 2796,
+ "start": 1091.753,
+ "end": 1091.803,
+ "text": "a"
+ },
+ {
+ "id": 2797,
+ "start": 1091.803,
+ "end": 1092.373,
+ "text": "methodical"
+ },
+ {
+ "id": 2798,
+ "start": 1092.373,
+ "end": 1093.383,
+ "text": "approach"
+ },
+ {
+ "id": 2799,
+ "start": 1093.383,
+ "end": 1093.533,
+ "text": "is"
+ },
+ {
+ "id": 2800,
+ "start": 1093.533,
+ "end": 1093.613,
+ "text": "to"
+ },
+ {
+ "id": 2801,
+ "start": 1093.613,
+ "end": 1093.853,
+ "text": "have"
+ },
+ {
+ "id": 2802,
+ "start": 1093.853,
+ "end": 1094.513,
+ "text": "measurement,"
+ },
+ {
+ "id": 2803,
+ "start": 1094.358,
+ "end": 1094.783,
+ "text": "to"
+ },
+ {
+ "id": 2804,
+ "start": 1094.863,
+ "end": 1095.053,
+ "text": "have"
+ },
+ {
+ "id": 2805,
+ "start": 1095.053,
+ "end": 1095.473,
+ "text": "metrics,"
+ },
+ {
+ "id": 2806,
+ "start": 1095.473,
+ "end": 1095.733,
+ "text": "because"
+ },
+ {
+ "id": 2807,
+ "start": 1095.733,
+ "end": 1096.133,
+ "text": "metrics"
+ },
+ {
+ "id": 2808,
+ "start": 1096.133,
+ "end": 1096.273,
+ "text": "will"
+ },
+ {
+ "id": 2809,
+ "start": 1096.273,
+ "end": 1096.493,
+ "text": "help"
+ },
+ {
+ "id": 2810,
+ "start": 1096.493,
+ "end": 1096.603,
+ "text": "us"
+ },
+ {
+ "id": 2811,
+ "start": 1097.1505,
+ "end": 1097.3155,
+ "text": "understand"
+ },
+ {
+ "id": 2812,
+ "start": 1097.808,
+ "end": 1098.028,
+ "text": "the"
+ },
+ {
+ "id": 2813,
+ "start": 1098.4655,
+ "end": 1098.7405,
+ "text": "experiences"
+ },
+ {
+ "id": 2814,
+ "start": 1099.123,
+ "end": 1099.453,
+ "text": "that"
+ },
+ {
+ "id": 2815,
+ "start": 1099.453,
+ "end": 1099.643,
+ "text": "2"
+ },
+ {
+ "id": 2816,
+ "start": 1099.643,
+ "end": 1099.973,
+ "text": "billion"
+ },
+ {
+ "id": 2817,
+ "start": 1099.973,
+ "end": 1101.053,
+ "text": "people"
+ },
+ {
+ "id": 2818,
+ "start": 1101.053,
+ "end": 1101.503,
+ "text": "in"
+ },
+ {
+ "id": 2819,
+ "start": 1101.503,
+ "end": 1102.093,
+ "text": "various"
+ },
+ {
+ "id": 2820,
+ "start": 1102.093,
+ "end": 1102.543,
+ "text": "countries"
+ },
+ {
+ "id": 2821,
+ "start": 1102.543,
+ "end": 1102.643,
+ "text": "are"
+ },
+ {
+ "id": 2822,
+ "start": 1102.643,
+ "end": 1103.063,
+ "text": "actually"
+ },
+ {
+ "id": 2823,
+ "start": 1103.063,
+ "end": 1103.853,
+ "text": "having."
+ },
+ {
+ "id": 2824,
+ "start": 1103.853,
+ "end": 1103.973,
+ "text": "They"
+ },
+ {
+ "id": 2825,
+ "start": 1103.973,
+ "end": 1104.133,
+ "text": "will"
+ },
+ {
+ "id": 2826,
+ "start": 1104.133,
+ "end": 1104.333,
+ "text": "help"
+ },
+ {
+ "id": 2827,
+ "start": 1104.333,
+ "end": 1104.473,
+ "text": "us"
+ },
+ {
+ "id": 2828,
+ "start": 1104.473,
+ "end": 1105.753,
+ "text": "identify"
+ },
+ {
+ "id": 2829,
+ "start": 1105.753,
+ "end": 1106.003,
+ "text": "where"
+ },
+ {
+ "id": 2830,
+ "start": 1106.003,
+ "end": 1106.103,
+ "text": "the"
+ },
+ {
+ "id": 2831,
+ "start": 1106.103,
+ "end": 1106.473,
+ "text": "gaps"
+ },
+ {
+ "id": 2832,
+ "start": 1106.473,
+ "end": 1107.383,
+ "text": "are"
+ },
+ {
+ "id": 2833,
+ "start": 1107.383,
+ "end": 1107.543,
+ "text": "and"
+ },
+ {
+ "id": 2834,
+ "start": 1107.543,
+ "end": 1107.693,
+ "text": "where"
+ },
+ {
+ "id": 2835,
+ "start": 1107.693,
+ "end": 1107.793,
+ "text": "we"
+ },
+ {
+ "id": 2836,
+ "start": 1107.793,
+ "end": 1107.923,
+ "text": "need"
+ },
+ {
+ "id": 2837,
+ "start": 1107.923,
+ "end": 1108.013,
+ "text": "to"
+ },
+ {
+ "id": 2838,
+ "start": 1108.013,
+ "end": 1108.183,
+ "text": "put"
+ },
+ {
+ "id": 2839,
+ "start": 1108.183,
+ "end": 1108.363,
+ "text": "more"
+ },
+ {
+ "id": 2840,
+ "start": 1108.363,
+ "end": 1108.843,
+ "text": "attention"
+ },
+ {
+ "id": 2841,
+ "start": 1108.843,
+ "end": 1108.973,
+ "text": "and"
+ },
+ {
+ "id": 2842,
+ "start": 1108.973,
+ "end": 1109.693,
+ "text": "focus,"
+ },
+ {
+ "id": 2843,
+ "start": 1109.693,
+ "end": 1109.843,
+ "text": "and"
+ },
+ {
+ "id": 2844,
+ "start": 1109.843,
+ "end": 1109.943,
+ "text": "they"
+ },
+ {
+ "id": 2845,
+ "start": 1109.943,
+ "end": 1110.143,
+ "text": "will"
+ },
+ {
+ "id": 2846,
+ "start": 1110.143,
+ "end": 1110.363,
+ "text": "help"
+ },
+ {
+ "id": 2847,
+ "start": 1110.363,
+ "end": 1110.703,
+ "text": "us"
+ },
+ {
+ "id": 2848,
+ "start": 1110.703,
+ "end": 1111.313,
+ "text": "measure"
+ },
+ {
+ "id": 2849,
+ "start": 1111.313,
+ "end": 1111.463,
+ "text": "and"
+ },
+ {
+ "id": 2850,
+ "start": 1111.463,
+ "end": 1111.933,
+ "text": "track"
+ },
+ {
+ "id": 2851,
+ "start": 1111.933,
+ "end": 1112.013,
+ "text": "the"
+ },
+ {
+ "id": 2852,
+ "start": 1112.013,
+ "end": 1112.523,
+ "text": "progress"
+ },
+ {
+ "id": 2853,
+ "start": 1112.523,
+ "end": 1112.693,
+ "text": "that"
+ },
+ {
+ "id": 2854,
+ "start": 1112.693,
+ "end": 1112.863,
+ "text": "we’ve"
+ },
+ {
+ "id": 2855,
+ "start": 1113.523,
+ "end": 1113.713,
+ "text": "made."
+ },
+ {
+ "id": 2856,
+ "start": 1114.353,
+ "end": 1114.563,
+ "text": "As"
+ },
+ {
+ "id": 2857,
+ "start": 1114.563,
+ "end": 1114.753,
+ "text": "we’ve"
+ },
+ {
+ "id": 2858,
+ "start": 1114.753,
+ "end": 1115.313,
+ "text": "developed"
+ },
+ {
+ "id": 2859,
+ "start": 1115.313,
+ "end": 1116.283,
+ "text": "those"
+ },
+ {
+ "id": 2860,
+ "start": 1116.283,
+ "end": 1117.263,
+ "text": "metrics"
+ },
+ {
+ "id": 2861,
+ "start": 1117.263,
+ "end": 1119.293,
+ "text": "internally"
+ },
+ {
+ "id": 2862,
+ "start": 1119.293,
+ "end": 1119.403,
+ "text": "to"
+ },
+ {
+ "id": 2863,
+ "start": 1119.403,
+ "end": 1119.653,
+ "text": "help"
+ },
+ {
+ "id": 2864,
+ "start": 1119.653,
+ "end": 1119.763,
+ "text": "our"
+ },
+ {
+ "id": 2865,
+ "start": 1119.763,
+ "end": 1120.193,
+ "text": "teams"
+ },
+ {
+ "id": 2866,
+ "start": 1120.5929999999998,
+ "end": 1121.023,
+ "text": "operate,"
+ },
+ {
+ "id": 2867,
+ "start": 1121.423,
+ "end": 1121.853,
+ "text": "last"
+ },
+ {
+ "id": 2868,
+ "start": 1121.853,
+ "end": 1122.443,
+ "text": "year"
+ },
+ {
+ "id": 2869,
+ "start": 1122.443,
+ "end": 1123.033,
+ "text": "we"
+ },
+ {
+ "id": 2870,
+ "start": 1123.033,
+ "end": 1123.833,
+ "text": "resolved"
+ },
+ {
+ "id": 2871,
+ "start": 1123.833,
+ "end": 1124.613,
+ "text": "to"
+ },
+ {
+ "id": 2872,
+ "start": 1124.613,
+ "end": 1125.113,
+ "text": "publish"
+ },
+ {
+ "id": 2873,
+ "start": 1125.113,
+ "end": 1125.323,
+ "text": "those"
+ },
+ {
+ "id": 2874,
+ "start": 1125.323,
+ "end": 1125.793,
+ "text": "metrics"
+ },
+ {
+ "id": 2875,
+ "start": 1125.558,
+ "end": 1125.853,
+ "text": "so"
+ },
+ {
+ "id": 2876,
+ "start": 1125.793,
+ "end": 1125.913,
+ "text": "that"
+ },
+ {
+ "id": 2877,
+ "start": 1125.913,
+ "end": 1126.003,
+ "text": "we"
+ },
+ {
+ "id": 2878,
+ "start": 1126.003,
+ "end": 1126.143,
+ "text": "could"
+ },
+ {
+ "id": 2879,
+ "start": 1126.143,
+ "end": 1126.433,
+ "text": "also"
+ },
+ {
+ "id": 2880,
+ "start": 1126.433,
+ "end": 1126.603,
+ "text": "have"
+ },
+ {
+ "id": 2881,
+ "start": 1126.603,
+ "end": 1126.673,
+ "text": "a"
+ },
+ {
+ "id": 2882,
+ "start": 1126.673,
+ "end": 1127.883,
+ "text": "conversation"
+ },
+ {
+ "id": 2883,
+ "start": 1127.613,
+ "end": 1128.103,
+ "text": "with"
+ },
+ {
+ "id": 2884,
+ "start": 1127.883,
+ "end": 1128.3380000000002,
+ "text": "the"
+ },
+ {
+ "id": 2885,
+ "start": 1128.153,
+ "end": 1128.573,
+ "text": "world"
+ },
+ {
+ "id": 2886,
+ "start": 1128.573,
+ "end": 1129.753,
+ "text": "about"
+ },
+ {
+ "id": 2887,
+ "start": 1129.753,
+ "end": 1130.023,
+ "text": "what"
+ },
+ {
+ "id": 2888,
+ "start": 1130.023,
+ "end": 1130.133,
+ "text": "is"
+ },
+ {
+ "id": 2889,
+ "start": 1130.133,
+ "end": 1130.243,
+ "text": "the"
+ },
+ {
+ "id": 2890,
+ "start": 1130.243,
+ "end": 1130.423,
+ "text": "right"
+ },
+ {
+ "id": 2891,
+ "start": 1130.423,
+ "end": 1130.613,
+ "text": "way"
+ },
+ {
+ "id": 2892,
+ "start": 1130.613,
+ "end": 1130.713,
+ "text": "to"
+ },
+ {
+ "id": 2893,
+ "start": 1130.713,
+ "end": 1131.343,
+ "text": "measure"
+ },
+ {
+ "id": 2894,
+ "start": 1131.343,
+ "end": 1131.903,
+ "text": "systems"
+ },
+ {
+ "id": 2895,
+ "start": 1131.903,
+ "end": 1132.103,
+ "text": "such"
+ },
+ {
+ "id": 2896,
+ "start": 1132.103,
+ "end": 1132.213,
+ "text": "as"
+ },
+ {
+ "id": 2897,
+ "start": 1132.213,
+ "end": 1132.493,
+ "text": "this."
+ },
+ {
+ "id": 2898,
+ "start": 1132.493,
+ "end": 1132.683,
+ "text": "How"
+ },
+ {
+ "id": 2899,
+ "start": 1132.6779999999999,
+ "end": 1132.858,
+ "text": "does"
+ },
+ {
+ "id": 2900,
+ "start": 1132.863,
+ "end": 1133.033,
+ "text": "the"
+ },
+ {
+ "id": 2901,
+ "start": 1133.033,
+ "end": 1133.783,
+ "text": "industry"
+ },
+ {
+ "id": 2902,
+ "start": 1133.783,
+ "end": 1134.093,
+ "text": "be"
+ },
+ {
+ "id": 2903,
+ "start": 1134.093,
+ "end": 1135.253,
+ "text": "benchmarking"
+ },
+ {
+ "id": 2904,
+ "start": 1135.253,
+ "end": 1135.593,
+ "text": "these"
+ },
+ {
+ "id": 2905,
+ "start": 1135.593,
+ "end": 1135.903,
+ "text": "kinds"
+ },
+ {
+ "id": 2906,
+ "start": 1135.903,
+ "end": 1136.023,
+ "text": "of"
+ },
+ {
+ "id": 2907,
+ "start": 1136.023,
+ "end": 1136.693,
+ "text": "systems"
+ },
+ {
+ "id": 2908,
+ "start": 1136.693,
+ "end": 1137.553,
+ "text": "and"
+ },
+ {
+ "id": 2909,
+ "start": 1137.553,
+ "end": 1137.773,
+ "text": "how"
+ },
+ {
+ "id": 2910,
+ "start": 1137.773,
+ "end": 1137.863,
+ "text": "do"
+ },
+ {
+ "id": 2911,
+ "start": 1137.863,
+ "end": 1137.963,
+ "text": "we"
+ },
+ {
+ "id": 2912,
+ "start": 1137.963,
+ "end": 1138.413,
+ "text": "track"
+ },
+ {
+ "id": 2913,
+ "start": 1138.413,
+ "end": 1138.493,
+ "text": "the"
+ },
+ {
+ "id": 2914,
+ "start": 1138.493,
+ "end": 1139.243,
+ "text": "progress"
+ },
+ {
+ "id": 2915,
+ "start": 1139.243,
+ "end": 1139.423,
+ "text": "that"
+ },
+ {
+ "id": 2916,
+ "start": 1139.423,
+ "end": 1139.713,
+ "text": "is"
+ },
+ {
+ "id": 2917,
+ "start": 1139.713,
+ "end": 1140.043,
+ "text": "being"
+ },
+ {
+ "id": 2918,
+ "start": 1140.043,
+ "end": 1140.753,
+ "text": "made?"
+ },
+ {
+ "id": 2919,
+ "start": 1140.753,
+ "end": 1140.933,
+ "text": "In"
+ },
+ {
+ "id": 2920,
+ "start": 1140.933,
+ "end": 1141.793,
+ "text": "May,"
+ },
+ {
+ "id": 2921,
+ "start": 1141.793,
+ "end": 1141.943,
+ "text": "we"
+ },
+ {
+ "id": 2922,
+ "start": 1141.943,
+ "end": 1142.333,
+ "text": "published"
+ },
+ {
+ "id": 2923,
+ "start": 1142.333,
+ "end": 1142.433,
+ "text": "our"
+ },
+ {
+ "id": 2924,
+ "start": 1142.433,
+ "end": 1142.883,
+ "text": "first"
+ },
+ {
+ "id": 2925,
+ "start": 1142.883,
+ "end": 1143.223,
+ "text": "community"
+ },
+ {
+ "id": 2926,
+ "start": 1143.223,
+ "end": 1143.633,
+ "text": "standards"
+ },
+ {
+ "id": 2927,
+ "start": 1143.633,
+ "end": 1144.113,
+ "text": "enforcement"
+ },
+ {
+ "id": 2928,
+ "start": 1144.113,
+ "end": 1145.053,
+ "text": "report."
+ },
+ {
+ "id": 2929,
+ "start": 1145.053,
+ "end": 1145.333,
+ "text": "There"
+ },
+ {
+ "id": 2930,
+ "start": 1145.333,
+ "end": 1145.543,
+ "text": "will"
+ },
+ {
+ "id": 2931,
+ "start": 1145.543,
+ "end": 1145.683,
+ "text": "be"
+ },
+ {
+ "id": 2932,
+ "start": 1145.683,
+ "end": 1146.113,
+ "text": "more."
+ },
+ {
+ "id": 2933,
+ "start": 1146.113,
+ "end": 1146.233,
+ "text": "We"
+ },
+ {
+ "id": 2934,
+ "start": 1146.233,
+ "end": 1146.363,
+ "text": "will"
+ },
+ {
+ "id": 2935,
+ "start": 1146.363,
+ "end": 1146.823,
+ "text": "continue"
+ },
+ {
+ "id": 2936,
+ "start": 1146.823,
+ "end": 1146.903,
+ "text": "to"
+ },
+ {
+ "id": 2937,
+ "start": 1146.903,
+ "end": 1147.313,
+ "text": "publish"
+ },
+ {
+ "id": 2938,
+ "start": 1147.313,
+ "end": 1147.963,
+ "text": "those,"
+ },
+ {
+ "id": 2939,
+ "start": 1147.963,
+ "end": 1148.673,
+ "text": "which"
+ },
+ {
+ "id": 2940,
+ "start": 1148.673,
+ "end": 1149.103,
+ "text": "lays"
+ },
+ {
+ "id": 2941,
+ "start": 1149.103,
+ "end": 1149.703,
+ "text": "out"
+ },
+ {
+ "id": 2942,
+ "start": 1149.703,
+ "end": 1149.853,
+ "text": "a"
+ },
+ {
+ "id": 2943,
+ "start": 1149.853,
+ "end": 1150.393,
+ "text": "number"
+ },
+ {
+ "id": 2944,
+ "start": 1150.393,
+ "end": 1150.643,
+ "text": "of"
+ },
+ {
+ "id": 2945,
+ "start": 1150.643,
+ "end": 1151.343,
+ "text": "measures"
+ },
+ {
+ "id": 2946,
+ "start": 1151.343,
+ "end": 1152.263,
+ "text": "across"
+ },
+ {
+ "id": 2947,
+ "start": 1152.263,
+ "end": 1152.633,
+ "text": "different"
+ },
+ {
+ "id": 2948,
+ "start": 1152.633,
+ "end": 1152.973,
+ "text": "types"
+ },
+ {
+ "id": 2949,
+ "start": 1152.973,
+ "end": 1153.073,
+ "text": "of"
+ },
+ {
+ "id": 2950,
+ "start": 1153.073,
+ "end": 1154.453,
+ "text": "violations"
+ },
+ {
+ "id": 2951,
+ "start": 1154.453,
+ "end": 1154.663,
+ "text": "to"
+ },
+ {
+ "id": 2952,
+ "start": 1154.663,
+ "end": 1155.493,
+ "text": "reflect"
+ },
+ {
+ "id": 2953,
+ "start": 1155.493,
+ "end": 1155.623,
+ "text": "the"
+ },
+ {
+ "id": 2954,
+ "start": 1155.623,
+ "end": 1156.213,
+ "text": "state"
+ },
+ {
+ "id": 2955,
+ "start": 1156.213,
+ "end": 1156.923,
+ "text": "of"
+ },
+ {
+ "id": 2956,
+ "start": 1156.923,
+ "end": 1157.203,
+ "text": "how"
+ },
+ {
+ "id": 2957,
+ "start": 1157.203,
+ "end": 1157.453,
+ "text": "things"
+ },
+ {
+ "id": 2958,
+ "start": 1157.373,
+ "end": 1157.818,
+ "text": "are"
+ },
+ {
+ "id": 2959,
+ "start": 1157.543,
+ "end": 1158.183,
+ "text": "going"
+ },
+ {
+ "id": 2960,
+ "start": 1158.183,
+ "end": 1158.453,
+ "text": "and"
+ },
+ {
+ "id": 2961,
+ "start": 1158.453,
+ "end": 1158.663,
+ "text": "where"
+ },
+ {
+ "id": 2962,
+ "start": 1158.663,
+ "end": 1158.753,
+ "text": "the"
+ },
+ {
+ "id": 2963,
+ "start": 1159.093,
+ "end": 1159.5196666666668,
+ "text": "progress"
+ },
+ {
+ "id": 2964,
+ "start": 1159.523,
+ "end": 1160.2863333333332,
+ "text": "is."
+ },
+ {
+ "id": 2965,
+ "start": 1159.953,
+ "end": 1161.053,
+ "text": "And"
+ },
+ {
+ "id": 2966,
+ "start": 1161.053,
+ "end": 1161.263,
+ "text": "we"
+ },
+ {
+ "id": 2967,
+ "start": 1161.263,
+ "end": 1161.543,
+ "text": "really"
+ },
+ {
+ "id": 2968,
+ "start": 1161.543,
+ "end": 1161.733,
+ "text": "think"
+ },
+ {
+ "id": 2969,
+ "start": 1161.733,
+ "end": 1161.883,
+ "text": "that"
+ },
+ {
+ "id": 2970,
+ "start": 1161.883,
+ "end": 1162.023,
+ "text": "by"
+ },
+ {
+ "id": 2971,
+ "start": 1162.023,
+ "end": 1163.063,
+ "text": "having"
+ },
+ {
+ "id": 2972,
+ "start": 1163.063,
+ "end": 1163.413,
+ "text": "those"
+ },
+ {
+ "id": 2973,
+ "start": 1163.413,
+ "end": 1163.803,
+ "text": "numbers"
+ },
+ {
+ "id": 2974,
+ "start": 1163.803,
+ "end": 1164.093,
+ "text": "out"
+ },
+ {
+ "id": 2975,
+ "start": 1164.093,
+ "end": 1164.183,
+ "text": "and"
+ },
+ {
+ "id": 2976,
+ "start": 1164.183,
+ "end": 1164.263,
+ "text": "by"
+ },
+ {
+ "id": 2977,
+ "start": 1164.263,
+ "end": 1164.543,
+ "text": "having"
+ },
+ {
+ "id": 2978,
+ "start": 1164.543,
+ "end": 1164.593,
+ "text": "a"
+ },
+ {
+ "id": 2979,
+ "start": 1164.593,
+ "end": 1165.563,
+ "text": "conversation"
+ },
+ {
+ "id": 2980,
+ "start": 1165.563,
+ "end": 1165.863,
+ "text": "about"
+ },
+ {
+ "id": 2981,
+ "start": 1165.863,
+ "end": 1166.103,
+ "text": "what"
+ },
+ {
+ "id": 2982,
+ "start": 1166.103,
+ "end": 1166.213,
+ "text": "is"
+ },
+ {
+ "id": 2983,
+ "start": 1166.213,
+ "end": 1166.323,
+ "text": "the"
+ },
+ {
+ "id": 2984,
+ "start": 1166.323,
+ "end": 1166.613,
+ "text": "right"
+ },
+ {
+ "id": 2985,
+ "start": 1166.613,
+ "end": 1167.113,
+ "text": "way"
+ },
+ {
+ "id": 2986,
+ "start": 1167.113,
+ "end": 1167.293,
+ "text": "to"
+ },
+ {
+ "id": 2987,
+ "start": 1167.293,
+ "end": 1167.793,
+ "text": "reflect"
+ },
+ {
+ "id": 2988,
+ "start": 1167.793,
+ "end": 1168.103,
+ "text": "the"
+ },
+ {
+ "id": 2989,
+ "start": 1168.103,
+ "end": 1168.873,
+ "text": "progress,"
+ },
+ {
+ "id": 2990,
+ "start": 1168.873,
+ "end": 1168.993,
+ "text": "we"
+ },
+ {
+ "id": 2991,
+ "start": 1168.993,
+ "end": 1170.493,
+ "text": "can"
+ },
+ {
+ "id": 2992,
+ "start": 1170.493,
+ "end": 1171.153,
+ "text": "understand"
+ },
+ {
+ "id": 2993,
+ "start": 1171.153,
+ "end": 1171.293,
+ "text": "and"
+ },
+ {
+ "id": 2994,
+ "start": 1171.293,
+ "end": 1171.393,
+ "text": "be"
+ },
+ {
+ "id": 2995,
+ "start": 1171.393,
+ "end": 1171.963,
+ "text": "accountable"
+ },
+ {
+ "id": 2996,
+ "start": 1171.963,
+ "end": 1172.073,
+ "text": "to"
+ },
+ {
+ "id": 2997,
+ "start": 1172.073,
+ "end": 1172.173,
+ "text": "the"
+ },
+ {
+ "id": 2998,
+ "start": 1172.173,
+ "end": 1172.453,
+ "text": "world,"
+ },
+ {
+ "id": 2999,
+ "start": 1172.453,
+ "end": 1172.923,
+ "text": "frankly,"
+ },
+ {
+ "id": 3000,
+ "start": 1172.923,
+ "end": 1173.843,
+ "text": "for"
+ },
+ {
+ "id": 3001,
+ "start": 1173.843,
+ "end": 1173.973,
+ "text": "the"
+ },
+ {
+ "id": 3002,
+ "start": 1173.973,
+ "end": 1174.153,
+ "text": "kind"
+ },
+ {
+ "id": 3003,
+ "start": 1174.153,
+ "end": 1174.213,
+ "text": "of"
+ },
+ {
+ "id": 3004,
+ "start": 1174.213,
+ "end": 1174.613,
+ "text": "progress"
+ },
+ {
+ "id": 3005,
+ "start": 1174.613,
+ "end": 1174.803,
+ "text": "that’s"
+ },
+ {
+ "id": 3006,
+ "start": 1174.803,
+ "end": 1175.013,
+ "text": "being"
+ },
+ {
+ "id": 3007,
+ "start": 1175.013,
+ "end": 1175.593,
+ "text": "made"
+ },
+ {
+ "id": 3008,
+ "start": 1175.593,
+ "end": 1176.043,
+ "text": "and"
+ },
+ {
+ "id": 3009,
+ "start": 1176.043,
+ "end": 1176.963,
+ "text": "understand"
+ },
+ {
+ "id": 3010,
+ "start": 1176.963,
+ "end": 1177.213,
+ "text": "where"
+ },
+ {
+ "id": 3011,
+ "start": 1177.213,
+ "end": 1177.303,
+ "text": "the"
+ },
+ {
+ "id": 3012,
+ "start": 1177.303,
+ "end": 1177.623,
+ "text": "gaps"
+ },
+ {
+ "id": 3013,
+ "start": 1177.623,
+ "end": 1178.023,
+ "text": "are"
+ },
+ {
+ "id": 3014,
+ "start": 1178.023,
+ "end": 1178.403,
+ "text": "and"
+ },
+ {
+ "id": 3015,
+ "start": 1178.403,
+ "end": 1178.613,
+ "text": "where"
+ },
+ {
+ "id": 3016,
+ "start": 1178.613,
+ "end": 1178.713,
+ "text": "we"
+ },
+ {
+ "id": 3017,
+ "start": 1178.713,
+ "end": 1178.873,
+ "text": "need"
+ },
+ {
+ "id": 3018,
+ "start": 1178.873,
+ "end": 1178.963,
+ "text": "to"
+ },
+ {
+ "id": 3019,
+ "start": 1178.963,
+ "end": 1179.073,
+ "text": "do"
+ },
+ {
+ "id": 3020,
+ "start": 1179.073,
+ "end": 1179.263,
+ "text": "more"
+ },
+ {
+ "id": 3021,
+ "start": 1179.713,
+ "end": 1179.908,
+ "text": "work."
+ },
+ {
+ "id": 3022,
+ "start": 1180.353,
+ "end": 1180.553,
+ "text": "In"
+ },
+ {
+ "id": 3023,
+ "start": 1180.553,
+ "end": 1180.953,
+ "text": "terms"
+ },
+ {
+ "id": 3024,
+ "start": 1180.953,
+ "end": 1183.113,
+ "text": "of"
+ },
+ {
+ "id": 3025,
+ "start": 1183.113,
+ "end": 1183.353,
+ "text": "the"
+ },
+ {
+ "id": 3026,
+ "start": 1183.353,
+ "end": 1183.613,
+ "text": "ad"
+ },
+ {
+ "id": 3027,
+ "start": 1183.613,
+ "end": 1184.693,
+ "text": "review,"
+ },
+ {
+ "id": 3028,
+ "start": 1184.693,
+ "end": 1184.963,
+ "text": "that’s"
+ },
+ {
+ "id": 3029,
+ "start": 1184.963,
+ "end": 1185.113,
+ "text": "your"
+ },
+ {
+ "id": 3030,
+ "start": 1185.113,
+ "end": 1185.583,
+ "text": "purview,"
+ },
+ {
+ "id": 3031,
+ "start": 1185.583,
+ "end": 1185.813,
+ "text": "right,"
+ },
+ {
+ "id": 3032,
+ "start": 1185.813,
+ "end": 1186.563,
+ "text": "is"
+ },
+ {
+ "id": 3033,
+ "start": 1186.563,
+ "end": 1186.663,
+ "text": "the"
+ },
+ {
+ "id": 3034,
+ "start": 1186.663,
+ "end": 1186.803,
+ "text": "new"
+ },
+ {
+ "id": 3035,
+ "start": 1186.803,
+ "end": 1187.203,
+ "text": "tools"
+ },
+ {
+ "id": 3036,
+ "start": 1187.203,
+ "end": 1187.353,
+ "text": "that"
+ },
+ {
+ "id": 3037,
+ "start": 1187.548,
+ "end": 1188.0030000000002,
+ "text": "you’re…"
+ },
+ {
+ "id": 3038,
+ "start": 1187.893,
+ "end": 1188.653,
+ "text": "Transparency"
+ },
+ {
+ "id": 3039,
+ "start": 1188.653,
+ "end": 1188.823,
+ "text": "and"
+ },
+ {
+ "id": 3040,
+ "start": 1189.248,
+ "end": 1189.6029999999998,
+ "text": "verification."
+ },
+ {
+ "id": 3041,
+ "start": 1189.843,
+ "end": 1190.383,
+ "text": "So"
+ },
+ {
+ "id": 3042,
+ "start": 1190.383,
+ "end": 1190.533,
+ "text": "one"
+ },
+ {
+ "id": 3043,
+ "start": 1190.533,
+ "end": 1190.593,
+ "text": "of"
+ },
+ {
+ "id": 3044,
+ "start": 1190.593,
+ "end": 1190.663,
+ "text": "the"
+ },
+ {
+ "id": 3045,
+ "start": 1190.663,
+ "end": 1190.943,
+ "text": "main"
+ },
+ {
+ "id": 3046,
+ "start": 1190.943,
+ "end": 1191.343,
+ "text": "issues"
+ },
+ {
+ "id": 3047,
+ "start": 1191.343,
+ "end": 1191.433,
+ "text": "in"
+ },
+ {
+ "id": 3048,
+ "start": 1191.433,
+ "end": 1191.513,
+ "text": "the"
+ },
+ {
+ "id": 3049,
+ "start": 1191.813,
+ "end": 1192.088,
+ "text": "2016"
+ },
+ {
+ "id": 3050,
+ "start": 1192.193,
+ "end": 1192.663,
+ "text": "election"
+ },
+ {
+ "id": 3051,
+ "start": 1192.663,
+ "end": 1195.323,
+ "text": "was"
+ },
+ {
+ "id": 3052,
+ "start": 1195.323,
+ "end": 1195.883,
+ "text": "malicious"
+ },
+ {
+ "id": 3053,
+ "start": 1195.883,
+ "end": 1196.563,
+ "text": "advertising"
+ },
+ {
+ "id": 3054,
+ "start": 1196.563,
+ "end": 1196.703,
+ "text": "on"
+ },
+ {
+ "id": 3055,
+ "start": 1196.703,
+ "end": 1198.113,
+ "text": "Facebook."
+ },
+ {
+ "id": 3056,
+ "start": 1198.113,
+ "end": 1198.393,
+ "text": "What"
+ },
+ {
+ "id": 3057,
+ "start": 1198.393,
+ "end": 1199.253,
+ "text": "assurances"
+ },
+ {
+ "id": 3058,
+ "start": 1199.253,
+ "end": 1199.513,
+ "text": "are"
+ },
+ {
+ "id": 3059,
+ "start": 1199.513,
+ "end": 1199.763,
+ "text": "there"
+ },
+ {
+ "id": 3060,
+ "start": 1199.763,
+ "end": 1200.023,
+ "text": "that"
+ },
+ {
+ "id": 3061,
+ "start": 1200.023,
+ "end": 1200.283,
+ "text": "that’s"
+ },
+ {
+ "id": 3062,
+ "start": 1200.283,
+ "end": 1200.493,
+ "text": "not"
+ },
+ {
+ "id": 3063,
+ "start": 1200.4029999999998,
+ "end": 1200.663,
+ "text": "going"
+ },
+ {
+ "id": 3064,
+ "start": 1200.523,
+ "end": 1200.833,
+ "text": "to"
+ },
+ {
+ "id": 3065,
+ "start": 1200.643,
+ "end": 1201.003,
+ "text": "happen"
+ },
+ {
+ "id": 3066,
+ "start": 1201.003,
+ "end": 1201.073,
+ "text": "in"
+ },
+ {
+ "id": 3067,
+ "start": 1201.7030000000002,
+ "end": 1201.8530000000003,
+ "text": "the"
+ },
+ {
+ "id": 3068,
+ "start": 1202.403,
+ "end": 1202.633,
+ "text": "2018"
+ },
+ {
+ "id": 3069,
+ "start": 1203.1029999999998,
+ "end": 1203.4129999999998,
+ "text": "midterms?"
+ },
+ {
+ "id": 3070,
+ "start": 1203.803,
+ "end": 1204.193,
+ "text": "We’ve"
+ },
+ {
+ "id": 3071,
+ "start": 1204.193,
+ "end": 1204.928,
+ "text": "built"
+ },
+ {
+ "id": 3072,
+ "start": 1204.928,
+ "end": 1205.018,
+ "text": "a"
+ },
+ {
+ "id": 3073,
+ "start": 1205.018,
+ "end": 1205.178,
+ "text": "lot"
+ },
+ {
+ "id": 3074,
+ "start": 1205.178,
+ "end": 1205.268,
+ "text": "of"
+ },
+ {
+ "id": 3075,
+ "start": 1205.268,
+ "end": 1206.108,
+ "text": "systems"
+ },
+ {
+ "id": 3076,
+ "start": 1206.108,
+ "end": 1206.268,
+ "text": "to"
+ },
+ {
+ "id": 3077,
+ "start": 1206.268,
+ "end": 1206.888,
+ "text": "help"
+ },
+ {
+ "id": 3078,
+ "start": 1206.888,
+ "end": 1207.158,
+ "text": "to"
+ },
+ {
+ "id": 3079,
+ "start": 1207.158,
+ "end": 1207.568,
+ "text": "provide"
+ },
+ {
+ "id": 3080,
+ "start": 1207.568,
+ "end": 1208.358,
+ "text": "transparency"
+ },
+ {
+ "id": 3081,
+ "start": 1208.358,
+ "end": 1208.458,
+ "text": "to"
+ },
+ {
+ "id": 3082,
+ "start": 1208.458,
+ "end": 1209.258,
+ "text": "people"
+ },
+ {
+ "id": 3083,
+ "start": 1209.258,
+ "end": 1210.228,
+ "text": "on"
+ },
+ {
+ "id": 3084,
+ "start": 1210.228,
+ "end": 1211.018,
+ "text": "ads."
+ },
+ {
+ "id": 3085,
+ "start": 1211.018,
+ "end": 1211.198,
+ "text": "And"
+ },
+ {
+ "id": 3086,
+ "start": 1211.198,
+ "end": 1211.348,
+ "text": "so"
+ },
+ {
+ "id": 3087,
+ "start": 1211.348,
+ "end": 1211.678,
+ "text": "first"
+ },
+ {
+ "id": 3088,
+ "start": 1211.678,
+ "end": 1211.768,
+ "text": "of"
+ },
+ {
+ "id": 3089,
+ "start": 1211.768,
+ "end": 1212.158,
+ "text": "all,"
+ },
+ {
+ "id": 3090,
+ "start": 1212.158,
+ "end": 1212.338,
+ "text": "on"
+ },
+ {
+ "id": 3091,
+ "start": 1212.338,
+ "end": 1212.638,
+ "text": "any"
+ },
+ {
+ "id": 3092,
+ "start": 1212.638,
+ "end": 1213.138,
+ "text": "page"
+ },
+ {
+ "id": 3093,
+ "start": 1213.138,
+ "end": 1213.278,
+ "text": "you"
+ },
+ {
+ "id": 3094,
+ "start": 1213.278,
+ "end": 1213.428,
+ "text": "can"
+ },
+ {
+ "id": 3095,
+ "start": 1213.428,
+ "end": 1213.738,
+ "text": "click"
+ },
+ {
+ "id": 3096,
+ "start": 1213.738,
+ "end": 1213.828,
+ "text": "and"
+ },
+ {
+ "id": 3097,
+ "start": 1213.828,
+ "end": 1213.908,
+ "text": "you"
+ },
+ {
+ "id": 3098,
+ "start": 1213.908,
+ "end": 1214.038,
+ "text": "can"
+ },
+ {
+ "id": 3099,
+ "start": 1214.038,
+ "end": 1214.348,
+ "text": "see"
+ },
+ {
+ "id": 3100,
+ "start": 1214.348,
+ "end": 1214.598,
+ "text": "all"
+ },
+ {
+ "id": 3101,
+ "start": 1214.598,
+ "end": 1214.668,
+ "text": "of"
+ },
+ {
+ "id": 3102,
+ "start": 1214.668,
+ "end": 1214.798,
+ "text": "the"
+ },
+ {
+ "id": 3103,
+ "start": 1214.798,
+ "end": 1215.008,
+ "text": "ads"
+ },
+ {
+ "id": 3104,
+ "start": 1215.008,
+ "end": 1215.108,
+ "text": "that"
+ },
+ {
+ "id": 3105,
+ "start": 1215.108,
+ "end": 1215.168,
+ "text": "are"
+ },
+ {
+ "id": 3106,
+ "start": 1215.168,
+ "end": 1215.548,
+ "text": "running"
+ },
+ {
+ "id": 3107,
+ "start": 1215.548,
+ "end": 1215.698,
+ "text": "on"
+ },
+ {
+ "id": 3108,
+ "start": 1215.698,
+ "end": 1215.858,
+ "text": "that"
+ },
+ {
+ "id": 3109,
+ "start": 1215.858,
+ "end": 1216.658,
+ "text": "page,"
+ },
+ {
+ "id": 3110,
+ "start": 1216.658,
+ "end": 1216.878,
+ "text": "which"
+ },
+ {
+ "id": 3111,
+ "start": 1216.878,
+ "end": 1217.158,
+ "text": "gives"
+ },
+ {
+ "id": 3112,
+ "start": 1217.158,
+ "end": 1217.598,
+ "text": "anyone"
+ },
+ {
+ "id": 3113,
+ "start": 1217.598,
+ "end": 1217.958,
+ "text": "full"
+ },
+ {
+ "id": 3114,
+ "start": 1217.958,
+ "end": 1219.208,
+ "text": "transparency"
+ },
+ {
+ "id": 3115,
+ "start": 1219.208,
+ "end": 1220.098,
+ "text": "into"
+ },
+ {
+ "id": 3116,
+ "start": 1220.098,
+ "end": 1220.378,
+ "text": "any"
+ },
+ {
+ "id": 3117,
+ "start": 1220.378,
+ "end": 1220.818,
+ "text": "ads"
+ },
+ {
+ "id": 3118,
+ "start": 1220.818,
+ "end": 1221.408,
+ "text": "that"
+ },
+ {
+ "id": 3119,
+ "start": 1221.408,
+ "end": 1221.768,
+ "text": "people"
+ },
+ {
+ "id": 3120,
+ "start": 1221.768,
+ "end": 1222.058,
+ "text": "are"
+ },
+ {
+ "id": 3121,
+ "start": 1222.058,
+ "end": 1222.628,
+ "text": "actually"
+ },
+ {
+ "id": 3122,
+ "start": 1222.628,
+ "end": 1223.238,
+ "text": "running,"
+ },
+ {
+ "id": 3123,
+ "start": 1223.238,
+ "end": 1223.548,
+ "text": "even"
+ },
+ {
+ "id": 3124,
+ "start": 1223.548,
+ "end": 1223.648,
+ "text": "if"
+ },
+ {
+ "id": 3125,
+ "start": 1223.648,
+ "end": 1223.788,
+ "text": "they’re"
+ },
+ {
+ "id": 3126,
+ "start": 1223.788,
+ "end": 1224.008,
+ "text": "not"
+ },
+ {
+ "id": 3127,
+ "start": 1224.008,
+ "end": 1224.458,
+ "text": "targeted"
+ },
+ {
+ "id": 3128,
+ "start": 1224.458,
+ "end": 1225.148,
+ "text": "specifically"
+ },
+ {
+ "id": 3129,
+ "start": 1225.148,
+ "end": 1225.258,
+ "text": "at"
+ },
+ {
+ "id": 3130,
+ "start": 1225.258,
+ "end": 1225.708,
+ "text": "me"
+ },
+ {
+ "id": 3131,
+ "start": 1225.698,
+ "end": 1226.018,
+ "text": "or"
+ },
+ {
+ "id": 3132,
+ "start": 1225.863,
+ "end": 1226.138,
+ "text": "at"
+ },
+ {
+ "id": 3133,
+ "start": 1226.028,
+ "end": 1226.258,
+ "text": "any"
+ },
+ {
+ "id": 3134,
+ "start": 1226.258,
+ "end": 1226.718,
+ "text": "specific"
+ },
+ {
+ "id": 3135,
+ "start": 1226.718,
+ "end": 1227.818,
+ "text": "person."
+ },
+ {
+ "id": 3136,
+ "start": 1227.818,
+ "end": 1228.048,
+ "text": "The"
+ },
+ {
+ "id": 3137,
+ "start": 1228.048,
+ "end": 1228.328,
+ "text": "other"
+ },
+ {
+ "id": 3138,
+ "start": 1228.328,
+ "end": 1228.708,
+ "text": "very"
+ },
+ {
+ "id": 3139,
+ "start": 1228.708,
+ "end": 1229.128,
+ "text": "important"
+ },
+ {
+ "id": 3140,
+ "start": 1229.128,
+ "end": 1229.948,
+ "text": "thing"
+ },
+ {
+ "id": 3141,
+ "start": 1229.948,
+ "end": 1230.558,
+ "text": "is"
+ },
+ {
+ "id": 3142,
+ "start": 1230.558,
+ "end": 1231.048,
+ "text": "political"
+ },
+ {
+ "id": 3143,
+ "start": 1231.048,
+ "end": 1231.768,
+ "text": "advertising."
+ },
+ {
+ "id": 3144,
+ "start": 1231.768,
+ "end": 1231.948,
+ "text": "We"
+ },
+ {
+ "id": 3145,
+ "start": 1231.948,
+ "end": 1232.108,
+ "text": "need"
+ },
+ {
+ "id": 3146,
+ "start": 1232.108,
+ "end": 1232.188,
+ "text": "to"
+ },
+ {
+ "id": 3147,
+ "start": 1232.188,
+ "end": 1232.378,
+ "text": "make"
+ },
+ {
+ "id": 3148,
+ "start": 1232.378,
+ "end": 1232.648,
+ "text": "sure"
+ },
+ {
+ "id": 3149,
+ "start": 1232.648,
+ "end": 1232.788,
+ "text": "that"
+ },
+ {
+ "id": 3150,
+ "start": 1232.788,
+ "end": 1232.918,
+ "text": "there"
+ },
+ {
+ "id": 3151,
+ "start": 1232.918,
+ "end": 1233.048,
+ "text": "is"
+ },
+ {
+ "id": 3152,
+ "start": 1233.048,
+ "end": 1234.308,
+ "text": "authenticity"
+ },
+ {
+ "id": 3153,
+ "start": 1234.308,
+ "end": 1234.458,
+ "text": "in"
+ },
+ {
+ "id": 3154,
+ "start": 1234.458,
+ "end": 1234.958,
+ "text": "political"
+ },
+ {
+ "id": 3155,
+ "start": 1234.958,
+ "end": 1236.148,
+ "text": "advertising."
+ },
+ {
+ "id": 3156,
+ "start": 1236.148,
+ "end": 1236.368,
+ "text": "And"
+ },
+ {
+ "id": 3157,
+ "start": 1236.368,
+ "end": 1236.658,
+ "text": "so"
+ },
+ {
+ "id": 3158,
+ "start": 1236.658,
+ "end": 1236.988,
+ "text": "any"
+ },
+ {
+ "id": 3159,
+ "start": 1236.988,
+ "end": 1237.868,
+ "text": "ad"
+ },
+ {
+ "id": 3160,
+ "start": 1237.868,
+ "end": 1238.328,
+ "text": "that"
+ },
+ {
+ "id": 3161,
+ "start": 1238.328,
+ "end": 1238.538,
+ "text": "is"
+ },
+ {
+ "id": 3162,
+ "start": 1238.538,
+ "end": 1239.498,
+ "text": "political,"
+ },
+ {
+ "id": 3163,
+ "start": 1239.498,
+ "end": 1239.738,
+ "text": "or"
+ },
+ {
+ "id": 3164,
+ "start": 1239.738,
+ "end": 1239.928,
+ "text": "even"
+ },
+ {
+ "id": 3165,
+ "start": 1239.928,
+ "end": 1240.198,
+ "text": "around"
+ },
+ {
+ "id": 3166,
+ "start": 1240.198,
+ "end": 1240.238,
+ "text": "a"
+ },
+ {
+ "id": 3167,
+ "start": 1240.238,
+ "end": 1240.748,
+ "text": "political"
+ },
+ {
+ "id": 3168,
+ "start": 1240.748,
+ "end": 1241.418,
+ "text": "issue,"
+ },
+ {
+ "id": 3169,
+ "start": 1241.418,
+ "end": 1241.788,
+ "text": "goes"
+ },
+ {
+ "id": 3170,
+ "start": 1241.788,
+ "end": 1241.938,
+ "text": "through"
+ },
+ {
+ "id": 3171,
+ "start": 1241.938,
+ "end": 1241.998,
+ "text": "a"
+ },
+ {
+ "id": 3172,
+ "start": 1241.998,
+ "end": 1242.668,
+ "text": "verification"
+ },
+ {
+ "id": 3173,
+ "start": 1242.668,
+ "end": 1243.218,
+ "text": "process"
+ },
+ {
+ "id": 3174,
+ "start": 1243.218,
+ "end": 1243.358,
+ "text": "where"
+ },
+ {
+ "id": 3175,
+ "start": 1243.358,
+ "end": 1243.488,
+ "text": "we"
+ },
+ {
+ "id": 3176,
+ "start": 1243.488,
+ "end": 1244.108,
+ "text": "verify"
+ },
+ {
+ "id": 3177,
+ "start": 1244.108,
+ "end": 1244.278,
+ "text": "the"
+ },
+ {
+ "id": 3178,
+ "start": 1244.278,
+ "end": 1245.168,
+ "text": "identity"
+ },
+ {
+ "id": 3179,
+ "start": 1245.168,
+ "end": 1245.328,
+ "text": "of"
+ },
+ {
+ "id": 3180,
+ "start": 1245.328,
+ "end": 1245.418,
+ "text": "the"
+ },
+ {
+ "id": 3181,
+ "start": 1245.418,
+ "end": 1245.828,
+ "text": "person"
+ },
+ {
+ "id": 3182,
+ "start": 1245.828,
+ "end": 1245.928,
+ "text": "who"
+ },
+ {
+ "id": 3183,
+ "start": 1245.928,
+ "end": 1246.078,
+ "text": "is"
+ },
+ {
+ "id": 3184,
+ "start": 1246.078,
+ "end": 1246.348,
+ "text": "running"
+ },
+ {
+ "id": 3185,
+ "start": 1246.348,
+ "end": 1246.508,
+ "text": "the"
+ },
+ {
+ "id": 3186,
+ "start": 1246.508,
+ "end": 1246.798,
+ "text": "ad."
+ },
+ {
+ "id": 3187,
+ "start": 1246.798,
+ "end": 1246.898,
+ "text": "We"
+ },
+ {
+ "id": 3188,
+ "start": 1246.898,
+ "end": 1247.508,
+ "text": "verify"
+ },
+ {
+ "id": 3189,
+ "start": 1247.508,
+ "end": 1247.638,
+ "text": "that"
+ },
+ {
+ "id": 3190,
+ "start": 1247.638,
+ "end": 1247.828,
+ "text": "they’re"
+ },
+ {
+ "id": 3191,
+ "start": 1247.828,
+ "end": 1248.018,
+ "text": "in"
+ },
+ {
+ "id": 3192,
+ "start": 1248.018,
+ "end": 1248.108,
+ "text": "the"
+ },
+ {
+ "id": 3193,
+ "start": 1248.108,
+ "end": 1248.498,
+ "text": "United"
+ },
+ {
+ "id": 3194,
+ "start": 1248.498,
+ "end": 1249.628,
+ "text": "States"
+ },
+ {
+ "id": 3195,
+ "start": 1249.628,
+ "end": 1249.768,
+ "text": "and"
+ },
+ {
+ "id": 3196,
+ "start": 1249.768,
+ "end": 1249.898,
+ "text": "we"
+ },
+ {
+ "id": 3197,
+ "start": 1249.898,
+ "end": 1250.148,
+ "text": "added"
+ },
+ {
+ "id": 3198,
+ "start": 1250.023,
+ "end": 1250.598,
+ "text": "a"
+ },
+ {
+ "id": 3199,
+ "start": 1250.148,
+ "end": 1251.048,
+ "text": "label"
+ },
+ {
+ "id": 3200,
+ "start": 1251.048,
+ "end": 1251.248,
+ "text": "that"
+ },
+ {
+ "id": 3201,
+ "start": 1251.248,
+ "end": 1252.208,
+ "text": "shows"
+ },
+ {
+ "id": 3202,
+ "start": 1252.208,
+ "end": 1252.388,
+ "text": "that"
+ },
+ {
+ "id": 3203,
+ "start": 1252.388,
+ "end": 1252.558,
+ "text": "this"
+ },
+ {
+ "id": 3204,
+ "start": 1252.558,
+ "end": 1252.678,
+ "text": "is"
+ },
+ {
+ "id": 3205,
+ "start": 1252.678,
+ "end": 1252.798,
+ "text": "an"
+ },
+ {
+ "id": 3206,
+ "start": 1252.798,
+ "end": 1253.748,
+ "text": "ad"
+ },
+ {
+ "id": 3207,
+ "start": 1253.748,
+ "end": 1254.108,
+ "text": "taken"
+ },
+ {
+ "id": 3208,
+ "start": 1254.108,
+ "end": 1254.618,
+ "text": "out"
+ },
+ {
+ "id": 3209,
+ "start": 1254.378,
+ "end": 1254.8813333333333,
+ "text": "–"
+ },
+ {
+ "id": 3210,
+ "start": 1254.648,
+ "end": 1255.1446666666666,
+ "text": "a"
+ },
+ {
+ "id": 3211,
+ "start": 1254.918,
+ "end": 1255.408,
+ "text": "disclosure"
+ },
+ {
+ "id": 3212,
+ "start": 1255.408,
+ "end": 1255.708,
+ "text": "label"
+ },
+ {
+ "id": 3213,
+ "start": 1255.708,
+ "end": 1255.948,
+ "text": "kind"
+ },
+ {
+ "id": 3214,
+ "start": 1255.948,
+ "end": 1256.178,
+ "text": "of"
+ },
+ {
+ "id": 3215,
+ "start": 1256.178,
+ "end": 1256.498,
+ "text": "like"
+ },
+ {
+ "id": 3216,
+ "start": 1256.498,
+ "end": 1256.658,
+ "text": "what"
+ },
+ {
+ "id": 3217,
+ "start": 1256.658,
+ "end": 1256.768,
+ "text": "we"
+ },
+ {
+ "id": 3218,
+ "start": 1256.768,
+ "end": 1257.028,
+ "text": "have"
+ },
+ {
+ "id": 3219,
+ "start": 1257.028,
+ "end": 1257.158,
+ "text": "on"
+ },
+ {
+ "id": 3220,
+ "start": 1257.158,
+ "end": 1257.868,
+ "text": "TV"
+ },
+ {
+ "id": 3221,
+ "start": 1257.868,
+ "end": 1258.008,
+ "text": "but"
+ },
+ {
+ "id": 3222,
+ "start": 1258.008,
+ "end": 1258.318,
+ "text": "actually"
+ },
+ {
+ "id": 3223,
+ "start": 1258.318,
+ "end": 1258.458,
+ "text": "with"
+ },
+ {
+ "id": 3224,
+ "start": 1258.458,
+ "end": 1258.648,
+ "text": "even"
+ },
+ {
+ "id": 3225,
+ "start": 1258.648,
+ "end": 1258.898,
+ "text": "more"
+ },
+ {
+ "id": 3226,
+ "start": 1259.086,
+ "end": 1259.316,
+ "text": "verification."
+ },
+ {
+ "id": 3227,
+ "start": 1259.5240000000001,
+ "end": 1259.7340000000002,
+ "text": "And"
+ },
+ {
+ "id": 3228,
+ "start": 1259.962,
+ "end": 1260.152,
+ "text": "the"
+ },
+ {
+ "id": 3229,
+ "start": 1260.4,
+ "end": 1260.5700000000002,
+ "text": "goal"
+ },
+ {
+ "id": 3230,
+ "start": 1260.838,
+ "end": 1260.988,
+ "text": "is"
+ },
+ {
+ "id": 3231,
+ "start": 1260.988,
+ "end": 1261.308,
+ "text": "really"
+ },
+ {
+ "id": 3232,
+ "start": 1261.308,
+ "end": 1261.488,
+ "text": "for"
+ },
+ {
+ "id": 3233,
+ "start": 1261.488,
+ "end": 1261.988,
+ "text": "political"
+ },
+ {
+ "id": 3234,
+ "start": 1261.988,
+ "end": 1263.208,
+ "text": "ads"
+ },
+ {
+ "id": 3235,
+ "start": 1263.208,
+ "end": 1263.848,
+ "text": "to"
+ },
+ {
+ "id": 3236,
+ "start": 1263.848,
+ "end": 1264.078,
+ "text": "be"
+ },
+ {
+ "id": 3237,
+ "start": 1264.078,
+ "end": 1264.588,
+ "text": "something"
+ },
+ {
+ "id": 3238,
+ "start": 1264.588,
+ "end": 1264.808,
+ "text": "that"
+ },
+ {
+ "id": 3239,
+ "start": 1264.808,
+ "end": 1265.128,
+ "text": "people"
+ },
+ {
+ "id": 3240,
+ "start": 1265.128,
+ "end": 1265.298,
+ "text": "can"
+ },
+ {
+ "id": 3241,
+ "start": 1265.298,
+ "end": 1265.898,
+ "text": "trust"
+ },
+ {
+ "id": 3242,
+ "start": 1265.898,
+ "end": 1266.058,
+ "text": "and"
+ },
+ {
+ "id": 3243,
+ "start": 1266.058,
+ "end": 1266.188,
+ "text": "can"
+ },
+ {
+ "id": 3244,
+ "start": 1266.188,
+ "end": 1266.928,
+ "text": "understand"
+ },
+ {
+ "id": 3245,
+ "start": 1266.928,
+ "end": 1267.078,
+ "text": "when"
+ },
+ {
+ "id": 3246,
+ "start": 1267.078,
+ "end": 1267.228,
+ "text": "they"
+ },
+ {
+ "id": 3247,
+ "start": 1267.228,
+ "end": 1267.388,
+ "text": "see"
+ },
+ {
+ "id": 3248,
+ "start": 1267.388,
+ "end": 1267.548,
+ "text": "them"
+ },
+ {
+ "id": 3249,
+ "start": 1267.548,
+ "end": 1267.628,
+ "text": "in"
+ },
+ {
+ "id": 3250,
+ "start": 1267.628,
+ "end": 1267.748,
+ "text": "their"
+ },
+ {
+ "id": 3251,
+ "start": 1267.748,
+ "end": 1267.938,
+ "text": "News"
+ },
+ {
+ "id": 3252,
+ "start": 1267.9313333333334,
+ "end": 1268.1213333333335,
+ "text": "Feed."
+ },
+ {
+ "id": 3253,
+ "start": 1268.1146666666668,
+ "end": 1268.304666666667,
+ "text": "Are"
+ },
+ {
+ "id": 3254,
+ "start": 1268.298,
+ "end": 1268.488,
+ "text": "people"
+ },
+ {
+ "id": 3255,
+ "start": 1268.4813333333334,
+ "end": 1268.6713333333335,
+ "text": "going"
+ },
+ {
+ "id": 3256,
+ "start": 1268.6646666666666,
+ "end": 1268.8546666666666,
+ "text": "to"
+ },
+ {
+ "id": 3257,
+ "start": 1268.848,
+ "end": 1269.038,
+ "text": "have"
+ },
+ {
+ "id": 3258,
+ "start": 1269.038,
+ "end": 1269.248,
+ "text": "any"
+ },
+ {
+ "id": 3259,
+ "start": 1269.266,
+ "end": 1269.47,
+ "text": "idea"
+ },
+ {
+ "id": 3260,
+ "start": 1269.4940000000001,
+ "end": 1269.692,
+ "text": "as"
+ },
+ {
+ "id": 3261,
+ "start": 1269.7220000000002,
+ "end": 1269.914,
+ "text": "to"
+ },
+ {
+ "id": 3262,
+ "start": 1269.9500000000003,
+ "end": 1270.136,
+ "text": "who’s"
+ },
+ {
+ "id": 3263,
+ "start": 1270.178,
+ "end": 1270.358,
+ "text": "been"
+ },
+ {
+ "id": 3264,
+ "start": 1270.358,
+ "end": 1270.878,
+ "text": "targeted"
+ },
+ {
+ "id": 3265,
+ "start": 1270.878,
+ "end": 1271.058,
+ "text": "by"
+ },
+ {
+ "id": 3266,
+ "start": 1271.058,
+ "end": 1271.278,
+ "text": "those"
+ },
+ {
+ "id": 3267,
+ "start": 1271.278,
+ "end": 1272.048,
+ "text": "ads?"
+ },
+ {
+ "id": 3268,
+ "start": 1272.048,
+ "end": 1272.548,
+ "text": "So"
+ },
+ {
+ "id": 3269,
+ "start": 1272.548,
+ "end": 1272.778,
+ "text": "we"
+ },
+ {
+ "id": 3270,
+ "start": 1272.778,
+ "end": 1273.048,
+ "text": "have"
+ },
+ {
+ "id": 3271,
+ "start": 1273.048,
+ "end": 1273.678,
+ "text": "a"
+ },
+ {
+ "id": 3272,
+ "start": 1273.678,
+ "end": 1274.538,
+ "text": "political"
+ },
+ {
+ "id": 3273,
+ "start": 1274.538,
+ "end": 1275.208,
+ "text": "archive"
+ },
+ {
+ "id": 3274,
+ "start": 1275.208,
+ "end": 1275.408,
+ "text": "where"
+ },
+ {
+ "id": 3275,
+ "start": 1275.408,
+ "end": 1275.728,
+ "text": "all"
+ },
+ {
+ "id": 3276,
+ "start": 1275.728,
+ "end": 1275.818,
+ "text": "of"
+ },
+ {
+ "id": 3277,
+ "start": 1275.818,
+ "end": 1275.978,
+ "text": "the"
+ },
+ {
+ "id": 3278,
+ "start": 1275.978,
+ "end": 1276.678,
+ "text": "ads,"
+ },
+ {
+ "id": 3279,
+ "start": 1276.678,
+ "end": 1277.268,
+ "text": "including"
+ },
+ {
+ "id": 3280,
+ "start": 1277.268,
+ "end": 1277.468,
+ "text": "some"
+ },
+ {
+ "id": 3281,
+ "start": 1277.468,
+ "end": 1277.568,
+ "text": "of"
+ },
+ {
+ "id": 3282,
+ "start": 1277.568,
+ "end": 1277.658,
+ "text": "the"
+ },
+ {
+ "id": 3283,
+ "start": 1277.658,
+ "end": 1278.498,
+ "text": "details"
+ },
+ {
+ "id": 3284,
+ "start": 1278.498,
+ "end": 1279.158,
+ "text": "on"
+ },
+ {
+ "id": 3285,
+ "start": 1279.158,
+ "end": 1279.368,
+ "text": "their"
+ },
+ {
+ "id": 3286,
+ "start": 1279.368,
+ "end": 1279.938,
+ "text": "settings,"
+ },
+ {
+ "id": 3287,
+ "start": 1279.938,
+ "end": 1280.198,
+ "text": "will"
+ },
+ {
+ "id": 3288,
+ "start": 1280.198,
+ "end": 1280.318,
+ "text": "be"
+ },
+ {
+ "id": 3289,
+ "start": 1280.318,
+ "end": 1281.268,
+ "text": "available."
+ },
+ {
+ "id": 3290,
+ "start": 1281.268,
+ "end": 1281.808,
+ "text": "And"
+ },
+ {
+ "id": 3291,
+ "start": 1281.808,
+ "end": 1282.028,
+ "text": "we’ve"
+ },
+ {
+ "id": 3292,
+ "start": 1282.028,
+ "end": 1282.348,
+ "text": "already"
+ },
+ {
+ "id": 3293,
+ "start": 1282.348,
+ "end": 1283.248,
+ "text": "seen"
+ },
+ {
+ "id": 3294,
+ "start": 1283.248,
+ "end": 1284.018,
+ "text": "researchers"
+ },
+ {
+ "id": 3295,
+ "start": 1284.018,
+ "end": 1284.138,
+ "text": "and"
+ },
+ {
+ "id": 3296,
+ "start": 1284.138,
+ "end": 1284.718,
+ "text": "journalists"
+ },
+ {
+ "id": 3297,
+ "start": 1284.718,
+ "end": 1285.128,
+ "text": "use"
+ },
+ {
+ "id": 3298,
+ "start": 1285.128,
+ "end": 1285.338,
+ "text": "our"
+ },
+ {
+ "id": 3299,
+ "start": 1285.328,
+ "end": 1285.818,
+ "text": "political"
+ },
+ {
+ "id": 3300,
+ "start": 1285.673,
+ "end": 1286.433,
+ "text": "ad"
+ },
+ {
+ "id": 3301,
+ "start": 1286.018,
+ "end": 1287.048,
+ "text": "archive"
+ },
+ {
+ "id": 3302,
+ "start": 1287.048,
+ "end": 1287.238,
+ "text": "to"
+ },
+ {
+ "id": 3303,
+ "start": 1287.238,
+ "end": 1287.588,
+ "text": "go"
+ },
+ {
+ "id": 3304,
+ "start": 1287.588,
+ "end": 1287.728,
+ "text": "and"
+ },
+ {
+ "id": 3305,
+ "start": 1287.728,
+ "end": 1287.868,
+ "text": "to"
+ },
+ {
+ "id": 3306,
+ "start": 1287.868,
+ "end": 1288.338,
+ "text": "look"
+ },
+ {
+ "id": 3307,
+ "start": 1288.338,
+ "end": 1288.628,
+ "text": "at"
+ },
+ {
+ "id": 3308,
+ "start": 1288.628,
+ "end": 1288.858,
+ "text": "what"
+ },
+ {
+ "id": 3309,
+ "start": 1288.858,
+ "end": 1288.928,
+ "text": "are"
+ },
+ {
+ "id": 3310,
+ "start": 1288.928,
+ "end": 1289.068,
+ "text": "the"
+ },
+ {
+ "id": 3311,
+ "start": 1289.068,
+ "end": 1289.578,
+ "text": "trends."
+ },
+ {
+ "id": 3312,
+ "start": 1289.578,
+ "end": 1289.708,
+ "text": "So"
+ },
+ {
+ "id": 3313,
+ "start": 1289.708,
+ "end": 1289.888,
+ "text": "for"
+ },
+ {
+ "id": 3314,
+ "start": 1289.888,
+ "end": 1290.388,
+ "text": "example,"
+ },
+ {
+ "id": 3315,
+ "start": 1290.388,
+ "end": 1290.628,
+ "text": "even"
+ },
+ {
+ "id": 3316,
+ "start": 1290.628,
+ "end": 1291.038,
+ "text": "around"
+ },
+ {
+ "id": 3317,
+ "start": 1291.038,
+ "end": 1291.638,
+ "text": "the"
+ },
+ {
+ "id": 3318,
+ "start": 1291.638,
+ "end": 1292.108,
+ "text": "Supreme"
+ },
+ {
+ "id": 3319,
+ "start": 1292.108,
+ "end": 1292.418,
+ "text": "Court"
+ },
+ {
+ "id": 3320,
+ "start": 1292.418,
+ "end": 1293.648,
+ "text": "nominations,"
+ },
+ {
+ "id": 3321,
+ "start": 1293.648,
+ "end": 1294.018,
+ "text": "different"
+ },
+ {
+ "id": 3322,
+ "start": 1294.018,
+ "end": 1294.578,
+ "text": "groups"
+ },
+ {
+ "id": 3323,
+ "start": 1294.578,
+ "end": 1294.808,
+ "text": "took"
+ },
+ {
+ "id": 3324,
+ "start": 1294.808,
+ "end": 1295.038,
+ "text": "out"
+ },
+ {
+ "id": 3325,
+ "start": 1295.038,
+ "end": 1295.358,
+ "text": "different"
+ },
+ {
+ "id": 3326,
+ "start": 1295.358,
+ "end": 1296.698,
+ "text": "ads"
+ },
+ {
+ "id": 3327,
+ "start": 1296.698,
+ "end": 1297.138,
+ "text": "promoting"
+ },
+ {
+ "id": 3328,
+ "start": 1297.138,
+ "end": 1297.458,
+ "text": "different"
+ },
+ {
+ "id": 3329,
+ "start": 1297.458,
+ "end": 1298.078,
+ "text": "viewpoints"
+ },
+ {
+ "id": 3330,
+ "start": 1298.078,
+ "end": 1298.178,
+ "text": "on"
+ },
+ {
+ "id": 3331,
+ "start": 1298.178,
+ "end": 1298.258,
+ "text": "the"
+ },
+ {
+ "id": 3332,
+ "start": 1298.258,
+ "end": 1298.978,
+ "text": "candidates."
+ },
+ {
+ "id": 3333,
+ "start": 1298.978,
+ "end": 1299.438,
+ "text": "And"
+ },
+ {
+ "id": 3334,
+ "start": 1299.438,
+ "end": 1299.628,
+ "text": "there"
+ },
+ {
+ "id": 3335,
+ "start": 1299.628,
+ "end": 1299.718,
+ "text": "were"
+ },
+ {
+ "id": 3336,
+ "start": 1299.718,
+ "end": 1300.138,
+ "text": "multiple"
+ },
+ {
+ "id": 3337,
+ "start": 1300.2030000000002,
+ "end": 1300.4679999999998,
+ "text": "stories"
+ },
+ {
+ "id": 3338,
+ "start": 1300.688,
+ "end": 1300.798,
+ "text": "in"
+ },
+ {
+ "id": 3339,
+ "start": 1300.798,
+ "end": 1300.868,
+ "text": "the"
+ },
+ {
+ "id": 3340,
+ "start": 1300.868,
+ "end": 1301.628,
+ "text": "media"
+ },
+ {
+ "id": 3341,
+ "start": 1301.628,
+ "end": 1302.298,
+ "text": "using"
+ },
+ {
+ "id": 3342,
+ "start": 1302.298,
+ "end": 1302.788,
+ "text": "our"
+ },
+ {
+ "id": 3343,
+ "start": 1302.788,
+ "end": 1303.268,
+ "text": "political"
+ },
+ {
+ "id": 3344,
+ "start": 1303.268,
+ "end": 1303.438,
+ "text": "ad"
+ },
+ {
+ "id": 3345,
+ "start": 1303.438,
+ "end": 1304.538,
+ "text": "archive"
+ },
+ {
+ "id": 3346,
+ "start": 1304.538,
+ "end": 1304.738,
+ "text": "that"
+ },
+ {
+ "id": 3347,
+ "start": 1304.738,
+ "end": 1304.868,
+ "text": "were"
+ },
+ {
+ "id": 3348,
+ "start": 1304.868,
+ "end": 1305.558,
+ "text": "reflecting"
+ },
+ {
+ "id": 3349,
+ "start": 1305.558,
+ "end": 1306.078,
+ "text": "on"
+ },
+ {
+ "id": 3350,
+ "start": 1306.078,
+ "end": 1306.298,
+ "text": "what"
+ },
+ {
+ "id": 3351,
+ "start": 1306.298,
+ "end": 1306.528,
+ "text": "those"
+ },
+ {
+ "id": 3352,
+ "start": 1306.528,
+ "end": 1306.988,
+ "text": "messages"
+ },
+ {
+ "id": 3353,
+ "start": 1306.988,
+ "end": 1307.608,
+ "text": "are"
+ },
+ {
+ "id": 3354,
+ "start": 1307.608,
+ "end": 1307.928,
+ "text": "and"
+ },
+ {
+ "id": 3355,
+ "start": 1307.928,
+ "end": 1308.198,
+ "text": "what"
+ },
+ {
+ "id": 3356,
+ "start": 1308.198,
+ "end": 1308.588,
+ "text": "groups"
+ },
+ {
+ "id": 3357,
+ "start": 1308.588,
+ "end": 1308.708,
+ "text": "were"
+ },
+ {
+ "id": 3358,
+ "start": 1308.833,
+ "end": 1308.993,
+ "text": "running"
+ },
+ {
+ "id": 3359,
+ "start": 1309.078,
+ "end": 1309.278,
+ "text": "which"
+ },
+ {
+ "id": 3360,
+ "start": 1309.278,
+ "end": 1309.488,
+ "text": "kind"
+ },
+ {
+ "id": 3361,
+ "start": 1309.488,
+ "end": 1309.558,
+ "text": "of"
+ },
+ {
+ "id": 3362,
+ "start": 1312.5229999999992,
+ "end": 1312.6579999999994,
+ "text": "directions."
+ },
+ {
+ "id": 3363,
+ "start": 1315.558,
+ "end": 1315.758,
+ "text": "In"
+ },
+ {
+ "id": 3364,
+ "start": 1315.758,
+ "end": 1316.118,
+ "text": "terms"
+ },
+ {
+ "id": 3365,
+ "start": 1316.118,
+ "end": 1316.468,
+ "text": "of"
+ },
+ {
+ "id": 3366,
+ "start": 1316.468,
+ "end": 1316.778,
+ "text": "the"
+ },
+ {
+ "id": 3367,
+ "start": 1316.778,
+ "end": 1317.108,
+ "text": "bigger"
+ },
+ {
+ "id": 3368,
+ "start": 1317.108,
+ "end": 1317.518,
+ "text": "picture"
+ },
+ {
+ "id": 3369,
+ "start": 1317.518,
+ "end": 1317.748,
+ "text": "here,"
+ },
+ {
+ "id": 3370,
+ "start": 1317.748,
+ "end": 1317.848,
+ "text": "in"
+ },
+ {
+ "id": 3371,
+ "start": 1317.848,
+ "end": 1318.148,
+ "text": "terms"
+ },
+ {
+ "id": 3372,
+ "start": 1318.148,
+ "end": 1318.228,
+ "text": "of"
+ },
+ {
+ "id": 3373,
+ "start": 1318.228,
+ "end": 1318.428,
+ "text": "what"
+ },
+ {
+ "id": 3374,
+ "start": 1318.428,
+ "end": 1318.578,
+ "text": "your"
+ },
+ {
+ "id": 3375,
+ "start": 1318.578,
+ "end": 1319.068,
+ "text": "task"
+ },
+ {
+ "id": 3376,
+ "start": 1319.068,
+ "end": 1320.788,
+ "text": "is,"
+ },
+ {
+ "id": 3377,
+ "start": 1320.788,
+ "end": 1320.988,
+ "text": "is"
+ },
+ {
+ "id": 3378,
+ "start": 1320.988,
+ "end": 1321.088,
+ "text": "it"
+ },
+ {
+ "id": 3379,
+ "start": 1321.088,
+ "end": 1321.178,
+ "text": "an"
+ },
+ {
+ "id": 3380,
+ "start": 1321.178,
+ "end": 1321.868,
+ "text": "impossible"
+ },
+ {
+ "id": 3381,
+ "start": 1321.868,
+ "end": 1322.858,
+ "text": "task?"
+ },
+ {
+ "id": 3382,
+ "start": 1322.858,
+ "end": 1322.958,
+ "text": "You’re"
+ },
+ {
+ "id": 3383,
+ "start": 1322.958,
+ "end": 1323.318,
+ "text": "talking"
+ },
+ {
+ "id": 3384,
+ "start": 1323.318,
+ "end": 1323.658,
+ "text": "about"
+ },
+ {
+ "id": 3385,
+ "start": 1323.658,
+ "end": 1323.828,
+ "text": "more"
+ },
+ {
+ "id": 3386,
+ "start": 1323.828,
+ "end": 1323.928,
+ "text": "than"
+ },
+ {
+ "id": 3387,
+ "start": 1323.928,
+ "end": 1324.108,
+ "text": "2"
+ },
+ {
+ "id": 3388,
+ "start": 1324.108,
+ "end": 1324.438,
+ "text": "billion"
+ },
+ {
+ "id": 3389,
+ "start": 1324.438,
+ "end": 1325.258,
+ "text": "people"
+ },
+ {
+ "id": 3390,
+ "start": 1325.258,
+ "end": 1325.418,
+ "text": "that"
+ },
+ {
+ "id": 3391,
+ "start": 1325.418,
+ "end": 1325.478,
+ "text": "are"
+ },
+ {
+ "id": 3392,
+ "start": 1325.478,
+ "end": 1325.918,
+ "text": "connected"
+ },
+ {
+ "id": 3393,
+ "start": 1325.918,
+ "end": 1326.028,
+ "text": "to"
+ },
+ {
+ "id": 3394,
+ "start": 1326.028,
+ "end": 1326.098,
+ "text": "a"
+ },
+ {
+ "id": 3395,
+ "start": 1326.098,
+ "end": 1326.478,
+ "text": "single"
+ },
+ {
+ "id": 3396,
+ "start": 1326.478,
+ "end": 1327.348,
+ "text": "platform."
+ },
+ {
+ "id": 3397,
+ "start": 1327.348,
+ "end": 1327.478,
+ "text": "You’re"
+ },
+ {
+ "id": 3398,
+ "start": 1327.478,
+ "end": 1327.798,
+ "text": "talking"
+ },
+ {
+ "id": 3399,
+ "start": 1327.798,
+ "end": 1328.768,
+ "text": "about"
+ },
+ {
+ "id": 3400,
+ "start": 1328.768,
+ "end": 1329.328,
+ "text": "dozens"
+ },
+ {
+ "id": 3401,
+ "start": 1329.328,
+ "end": 1329.448,
+ "text": "of"
+ },
+ {
+ "id": 3402,
+ "start": 1329.448,
+ "end": 1331.068,
+ "text": "countries,"
+ },
+ {
+ "id": 3403,
+ "start": 1331.068,
+ "end": 1331.558,
+ "text": "multiple"
+ },
+ {
+ "id": 3404,
+ "start": 1331.558,
+ "end": 1335.368,
+ "text": "languages."
+ },
+ {
+ "id": 3405,
+ "start": 1335.368,
+ "end": 1336.598,
+ "text": "Given"
+ },
+ {
+ "id": 3406,
+ "start": 1336.598,
+ "end": 1336.808,
+ "text": "the"
+ },
+ {
+ "id": 3407,
+ "start": 1336.808,
+ "end": 1337.448,
+ "text": "magnitude"
+ },
+ {
+ "id": 3408,
+ "start": 1337.448,
+ "end": 1337.568,
+ "text": "of"
+ },
+ {
+ "id": 3409,
+ "start": 1337.568,
+ "end": 1337.978,
+ "text": "that"
+ },
+ {
+ "id": 3410,
+ "start": 1337.978,
+ "end": 1338.178,
+ "text": "and"
+ },
+ {
+ "id": 3411,
+ "start": 1338.178,
+ "end": 1339.168,
+ "text": "given,"
+ },
+ {
+ "id": 3412,
+ "start": 1339.168,
+ "end": 1339.888,
+ "text": "frankly,"
+ },
+ {
+ "id": 3413,
+ "start": 1339.888,
+ "end": 1340.048,
+ "text": "a"
+ },
+ {
+ "id": 3414,
+ "start": 1340.048,
+ "end": 1340.438,
+ "text": "track"
+ },
+ {
+ "id": 3415,
+ "start": 1340.438,
+ "end": 1340.758,
+ "text": "record"
+ },
+ {
+ "id": 3416,
+ "start": 1340.758,
+ "end": 1340.878,
+ "text": "of"
+ },
+ {
+ "id": 3417,
+ "start": 1340.878,
+ "end": 1341.158,
+ "text": "this"
+ },
+ {
+ "id": 3418,
+ "start": 1341.158,
+ "end": 1341.618,
+ "text": "company"
+ },
+ {
+ "id": 3419,
+ "start": 1341.618,
+ "end": 1341.718,
+ "text": "and"
+ },
+ {
+ "id": 3420,
+ "start": 1341.718,
+ "end": 1341.968,
+ "text": "its"
+ },
+ {
+ "id": 3421,
+ "start": 1341.968,
+ "end": 1343.378,
+ "text": "responsibilities,"
+ },
+ {
+ "id": 3422,
+ "start": 1343.158,
+ "end": 1343.648,
+ "text": "I’m"
+ },
+ {
+ "id": 3423,
+ "start": 1344.058,
+ "end": 1344.4079999999997,
+ "text": "skeptical"
+ },
+ {
+ "id": 3424,
+ "start": 1344.958,
+ "end": 1345.168,
+ "text": "that"
+ },
+ {
+ "id": 3425,
+ "start": 1345.168,
+ "end": 1345.398,
+ "text": "that"
+ },
+ {
+ "id": 3426,
+ "start": 1345.398,
+ "end": 1345.688,
+ "text": "could"
+ },
+ {
+ "id": 3427,
+ "start": 1345.688,
+ "end": 1346.468,
+ "text": "work"
+ },
+ {
+ "id": 3428,
+ "start": 1346.468,
+ "end": 1346.638,
+ "text": "in"
+ },
+ {
+ "id": 3429,
+ "start": 1346.638,
+ "end": 1346.898,
+ "text": "some"
+ },
+ {
+ "id": 3430,
+ "start": 1346.898,
+ "end": 1347.788,
+ "text": "way."
+ },
+ {
+ "id": 3431,
+ "start": 1347.788,
+ "end": 1348.418,
+ "text": "What"
+ },
+ {
+ "id": 3432,
+ "start": 1348.418,
+ "end": 1348.478,
+ "text": "do"
+ },
+ {
+ "id": 3433,
+ "start": 1348.478,
+ "end": 1348.608,
+ "text": "you"
+ },
+ {
+ "id": 3434,
+ "start": 1348.608,
+ "end": 1348.768,
+ "text": "have"
+ },
+ {
+ "id": 3435,
+ "start": 1348.768,
+ "end": 1348.858,
+ "text": "to"
+ },
+ {
+ "id": 3436,
+ "start": 1348.858,
+ "end": 1349.088,
+ "text": "say"
+ },
+ {
+ "id": 3437,
+ "start": 1349.088,
+ "end": 1349.178,
+ "text": "to"
+ },
+ {
+ "id": 3438,
+ "start": 1349.178,
+ "end": 1349.578,
+ "text": "me"
+ },
+ {
+ "id": 3439,
+ "start": 1349.603,
+ "end": 1350.118,
+ "text": "–"
+ },
+ {
+ "id": 3440,
+ "start": 1350.028,
+ "end": 1350.658,
+ "text": "what"
+ },
+ {
+ "id": 3441,
+ "start": 1350.343,
+ "end": 1350.688,
+ "text": "do"
+ },
+ {
+ "id": 3442,
+ "start": 1350.658,
+ "end": 1350.718,
+ "text": "you"
+ },
+ {
+ "id": 3443,
+ "start": 1350.718,
+ "end": 1350.818,
+ "text": "have"
+ },
+ {
+ "id": 3444,
+ "start": 1350.818,
+ "end": 1350.908,
+ "text": "to"
+ },
+ {
+ "id": 3445,
+ "start": 1350.908,
+ "end": 1351.188,
+ "text": "say"
+ },
+ {
+ "id": 3446,
+ "start": 1351.2846666666667,
+ "end": 1351.5446666666667,
+ "text": "to"
+ },
+ {
+ "id": 3447,
+ "start": 1351.6613333333335,
+ "end": 1351.9013333333335,
+ "text": "a"
+ },
+ {
+ "id": 3448,
+ "start": 1352.038,
+ "end": 1352.258,
+ "text": "skeptic"
+ },
+ {
+ "id": 3449,
+ "start": 1352.4146666666666,
+ "end": 1352.6146666666666,
+ "text": "who"
+ },
+ {
+ "id": 3450,
+ "start": 1352.7913333333333,
+ "end": 1352.9713333333334,
+ "text": "says"
+ },
+ {
+ "id": 3451,
+ "start": 1353.168,
+ "end": 1353.328,
+ "text": "this"
+ },
+ {
+ "id": 3452,
+ "start": 1353.328,
+ "end": 1353.518,
+ "text": "just"
+ },
+ {
+ "id": 3453,
+ "start": 1353.518,
+ "end": 1353.778,
+ "text": "sounds"
+ },
+ {
+ "id": 3454,
+ "start": 1353.778,
+ "end": 1353.908,
+ "text": "like"
+ },
+ {
+ "id": 3455,
+ "start": 1353.908,
+ "end": 1353.968,
+ "text": "an"
+ },
+ {
+ "id": 3456,
+ "start": 1353.968,
+ "end": 1354.548,
+ "text": "impossible"
+ },
+ {
+ "id": 3457,
+ "start": 1354.818,
+ "end": 1355.213,
+ "text": "task?"
+ },
+ {
+ "id": 3458,
+ "start": 1355.668,
+ "end": 1355.878,
+ "text": "We"
+ },
+ {
+ "id": 3459,
+ "start": 1355.878,
+ "end": 1356.308,
+ "text": "clearly"
+ },
+ {
+ "id": 3460,
+ "start": 1356.308,
+ "end": 1356.778,
+ "text": "have"
+ },
+ {
+ "id": 3461,
+ "start": 1356.778,
+ "end": 1356.878,
+ "text": "a"
+ },
+ {
+ "id": 3462,
+ "start": 1356.878,
+ "end": 1357.098,
+ "text": "lot"
+ },
+ {
+ "id": 3463,
+ "start": 1357.098,
+ "end": 1357.288,
+ "text": "of"
+ },
+ {
+ "id": 3464,
+ "start": 1357.288,
+ "end": 1357.598,
+ "text": "work"
+ },
+ {
+ "id": 3465,
+ "start": 1357.598,
+ "end": 1357.818,
+ "text": "ahead"
+ },
+ {
+ "id": 3466,
+ "start": 1357.818,
+ "end": 1357.908,
+ "text": "of"
+ },
+ {
+ "id": 3467,
+ "start": 1357.908,
+ "end": 1358.588,
+ "text": "us."
+ },
+ {
+ "id": 3468,
+ "start": 1358.588,
+ "end": 1358.758,
+ "text": "But"
+ },
+ {
+ "id": 3469,
+ "start": 1358.758,
+ "end": 1358.988,
+ "text": "when"
+ },
+ {
+ "id": 3470,
+ "start": 1358.988,
+ "end": 1359.098,
+ "text": "we"
+ },
+ {
+ "id": 3471,
+ "start": 1359.098,
+ "end": 1359.268,
+ "text": "have"
+ },
+ {
+ "id": 3472,
+ "start": 1359.268,
+ "end": 1359.438,
+ "text": "put"
+ },
+ {
+ "id": 3473,
+ "start": 1359.438,
+ "end": 1359.548,
+ "text": "our"
+ },
+ {
+ "id": 3474,
+ "start": 1359.548,
+ "end": 1359.908,
+ "text": "minds"
+ },
+ {
+ "id": 3475,
+ "start": 1359.908,
+ "end": 1360.018,
+ "text": "to"
+ },
+ {
+ "id": 3476,
+ "start": 1360.018,
+ "end": 1361.018,
+ "text": "things,"
+ },
+ {
+ "id": 3477,
+ "start": 1361.018,
+ "end": 1361.578,
+ "text": "then"
+ },
+ {
+ "id": 3478,
+ "start": 1361.578,
+ "end": 1361.798,
+ "text": "we"
+ },
+ {
+ "id": 3479,
+ "start": 1361.798,
+ "end": 1361.948,
+ "text": "have"
+ },
+ {
+ "id": 3480,
+ "start": 1361.948,
+ "end": 1362.098,
+ "text": "been"
+ },
+ {
+ "id": 3481,
+ "start": 1362.098,
+ "end": 1362.878,
+ "text": "able"
+ },
+ {
+ "id": 3482,
+ "start": 1362.878,
+ "end": 1363.028,
+ "text": "to"
+ },
+ {
+ "id": 3483,
+ "start": 1363.028,
+ "end": 1363.238,
+ "text": "turn"
+ },
+ {
+ "id": 3484,
+ "start": 1363.238,
+ "end": 1363.328,
+ "text": "the"
+ },
+ {
+ "id": 3485,
+ "start": 1363.328,
+ "end": 1363.768,
+ "text": "tide."
+ },
+ {
+ "id": 3486,
+ "start": 1363.768,
+ "end": 1363.928,
+ "text": "And"
+ },
+ {
+ "id": 3487,
+ "start": 1363.928,
+ "end": 1364.028,
+ "text": "we"
+ },
+ {
+ "id": 3488,
+ "start": 1364.028,
+ "end": 1364.208,
+ "text": "have"
+ },
+ {
+ "id": 3489,
+ "start": 1364.208,
+ "end": 1364.358,
+ "text": "been"
+ },
+ {
+ "id": 3490,
+ "start": 1364.358,
+ "end": 1364.678,
+ "text": "able"
+ },
+ {
+ "id": 3491,
+ "start": 1364.678,
+ "end": 1364.818,
+ "text": "to"
+ },
+ {
+ "id": 3492,
+ "start": 1364.818,
+ "end": 1365.668,
+ "text": "move"
+ },
+ {
+ "id": 3493,
+ "start": 1365.668,
+ "end": 1365.868,
+ "text": "in"
+ },
+ {
+ "id": 3494,
+ "start": 1365.868,
+ "end": 1365.958,
+ "text": "the"
+ },
+ {
+ "id": 3495,
+ "start": 1365.958,
+ "end": 1366.248,
+ "text": "case"
+ },
+ {
+ "id": 3496,
+ "start": 1366.248,
+ "end": 1366.338,
+ "text": "of"
+ },
+ {
+ "id": 3497,
+ "start": 1366.338,
+ "end": 1366.638,
+ "text": "safety"
+ },
+ {
+ "id": 3498,
+ "start": 1366.638,
+ "end": 1366.738,
+ "text": "and"
+ },
+ {
+ "id": 3499,
+ "start": 1366.738,
+ "end": 1368.038,
+ "text": "security"
+ },
+ {
+ "id": 3500,
+ "start": 1368.038,
+ "end": 1368.218,
+ "text": "to"
+ },
+ {
+ "id": 3501,
+ "start": 1368.218,
+ "end": 1368.478,
+ "text": "being"
+ },
+ {
+ "id": 3502,
+ "start": 1368.478,
+ "end": 1369.138,
+ "text": "proactive,"
+ },
+ {
+ "id": 3503,
+ "start": 1369.138,
+ "end": 1369.248,
+ "text": "to"
+ },
+ {
+ "id": 3504,
+ "start": 1369.248,
+ "end": 1369.518,
+ "text": "getting"
+ },
+ {
+ "id": 3505,
+ "start": 1369.518,
+ "end": 1369.808,
+ "text": "ahead"
+ },
+ {
+ "id": 3506,
+ "start": 1369.808,
+ "end": 1369.918,
+ "text": "of"
+ },
+ {
+ "id": 3507,
+ "start": 1370.0529999999999,
+ "end": 1370.173,
+ "text": "threats,"
+ },
+ {
+ "id": 3508,
+ "start": 1370.298,
+ "end": 1370.428,
+ "text": "to"
+ },
+ {
+ "id": 3509,
+ "start": 1370.428,
+ "end": 1370.808,
+ "text": "taking"
+ },
+ {
+ "id": 3510,
+ "start": 1370.808,
+ "end": 1371.098,
+ "text": "down"
+ },
+ {
+ "id": 3511,
+ "start": 1371.098,
+ "end": 1371.318,
+ "text": "bad"
+ },
+ {
+ "id": 3512,
+ "start": 1371.318,
+ "end": 1371.858,
+ "text": "actors,"
+ },
+ {
+ "id": 3513,
+ "start": 1371.858,
+ "end": 1372.408,
+ "text": "to"
+ },
+ {
+ "id": 3514,
+ "start": 1372.148,
+ "end": 1372.968,
+ "text": "finding"
+ },
+ {
+ "id": 3515,
+ "start": 1372.9529999999997,
+ "end": 1373.4830000000002,
+ "text": "more"
+ },
+ {
+ "id": 3516,
+ "start": 1373.758,
+ "end": 1373.998,
+ "text": "bad"
+ },
+ {
+ "id": 3517,
+ "start": 1373.998,
+ "end": 1374.718,
+ "text": "content."
+ },
+ {
+ "id": 3518,
+ "start": 1374.718,
+ "end": 1375.018,
+ "text": "And"
+ },
+ {
+ "id": 3519,
+ "start": 1375.018,
+ "end": 1375.208,
+ "text": "this"
+ },
+ {
+ "id": 3520,
+ "start": 1375.208,
+ "end": 1375.318,
+ "text": "is"
+ },
+ {
+ "id": 3521,
+ "start": 1375.318,
+ "end": 1375.378,
+ "text": "a"
+ },
+ {
+ "id": 3522,
+ "start": 1375.378,
+ "end": 1375.668,
+ "text": "huge"
+ },
+ {
+ "id": 3523,
+ "start": 1375.668,
+ "end": 1376.588,
+ "text": "investment."
+ },
+ {
+ "id": 3524,
+ "start": 1376.588,
+ "end": 1377.428,
+ "text": "So"
+ },
+ {
+ "id": 3525,
+ "start": 1377.428,
+ "end": 1377.828,
+ "text": "last"
+ },
+ {
+ "id": 3526,
+ "start": 1377.828,
+ "end": 1378.118,
+ "text": "year,"
+ },
+ {
+ "id": 3527,
+ "start": 1378.118,
+ "end": 1378.248,
+ "text": "for"
+ },
+ {
+ "id": 3528,
+ "start": 1378.808,
+ "end": 1379.458,
+ "text": "example—every"
+ },
+ {
+ "id": 3529,
+ "start": 1379.498,
+ "end": 1380.668,
+ "text": "year,"
+ },
+ {
+ "id": 3530,
+ "start": 1380.668,
+ "end": 1381.188,
+ "text": "Facebook"
+ },
+ {
+ "id": 3531,
+ "start": 1381.188,
+ "end": 1381.468,
+ "text": "goes"
+ },
+ {
+ "id": 3532,
+ "start": 1381.468,
+ "end": 1381.898,
+ "text": "through"
+ },
+ {
+ "id": 3533,
+ "start": 1381.898,
+ "end": 1382.328,
+ "text": "a"
+ },
+ {
+ "id": 3534,
+ "start": 1382.328,
+ "end": 1382.708,
+ "text": "planning"
+ },
+ {
+ "id": 3535,
+ "start": 1382.708,
+ "end": 1383.308,
+ "text": "process"
+ },
+ {
+ "id": 3536,
+ "start": 1383.308,
+ "end": 1383.978,
+ "text": "where"
+ },
+ {
+ "id": 3537,
+ "start": 1383.978,
+ "end": 1384.248,
+ "text": "every"
+ },
+ {
+ "id": 3538,
+ "start": 1384.248,
+ "end": 1384.468,
+ "text": "team"
+ },
+ {
+ "id": 3539,
+ "start": 1384.468,
+ "end": 1384.768,
+ "text": "across"
+ },
+ {
+ "id": 3540,
+ "start": 1384.768,
+ "end": 1384.838,
+ "text": "the"
+ },
+ {
+ "id": 3541,
+ "start": 1384.838,
+ "end": 1385.718,
+ "text": "company"
+ },
+ {
+ "id": 3542,
+ "start": 1385.718,
+ "end": 1386.008,
+ "text": "lays"
+ },
+ {
+ "id": 3543,
+ "start": 1386.008,
+ "end": 1386.148,
+ "text": "out"
+ },
+ {
+ "id": 3544,
+ "start": 1386.148,
+ "end": 1386.198,
+ "text": "a"
+ },
+ {
+ "id": 3545,
+ "start": 1386.198,
+ "end": 1386.448,
+ "text": "number"
+ },
+ {
+ "id": 3546,
+ "start": 1386.448,
+ "end": 1386.528,
+ "text": "of"
+ },
+ {
+ "id": 3547,
+ "start": 1386.528,
+ "end": 1387.058,
+ "text": "plans"
+ },
+ {
+ "id": 3548,
+ "start": 1387.058,
+ "end": 1387.188,
+ "text": "and"
+ },
+ {
+ "id": 3549,
+ "start": 1387.188,
+ "end": 1387.638,
+ "text": "ultimately"
+ },
+ {
+ "id": 3550,
+ "start": 1387.638,
+ "end": 1388.488,
+ "text": "Mark"
+ },
+ {
+ "id": 3551,
+ "start": 1388.488,
+ "end": 1389.458,
+ "text": "decides"
+ },
+ {
+ "id": 3552,
+ "start": 1389.458,
+ "end": 1389.718,
+ "text": "which"
+ },
+ {
+ "id": 3553,
+ "start": 1389.718,
+ "end": 1390.208,
+ "text": "teams"
+ },
+ {
+ "id": 3554,
+ "start": 1390.208,
+ "end": 1390.398,
+ "text": "get"
+ },
+ {
+ "id": 3555,
+ "start": 1390.398,
+ "end": 1390.658,
+ "text": "which"
+ },
+ {
+ "id": 3556,
+ "start": 1390.658,
+ "end": 1390.938,
+ "text": "kind"
+ },
+ {
+ "id": 3557,
+ "start": 1390.938,
+ "end": 1391.498,
+ "text": "of"
+ },
+ {
+ "id": 3558,
+ "start": 1391.498,
+ "end": 1392.828,
+ "text": "resources."
+ },
+ {
+ "id": 3559,
+ "start": 1392.828,
+ "end": 1393.228,
+ "text": "Last"
+ },
+ {
+ "id": 3560,
+ "start": 1393.228,
+ "end": 1393.568,
+ "text": "year,"
+ },
+ {
+ "id": 3561,
+ "start": 1393.568,
+ "end": 1393.688,
+ "text": "as"
+ },
+ {
+ "id": 3562,
+ "start": 1393.688,
+ "end": 1393.798,
+ "text": "we"
+ },
+ {
+ "id": 3563,
+ "start": 1393.798,
+ "end": 1393.908,
+ "text": "were"
+ },
+ {
+ "id": 3564,
+ "start": 1393.908,
+ "end": 1394.128,
+ "text": "just"
+ },
+ {
+ "id": 3565,
+ "start": 1394.128,
+ "end": 1394.548,
+ "text": "starting"
+ },
+ {
+ "id": 3566,
+ "start": 1394.548,
+ "end": 1394.708,
+ "text": "this"
+ },
+ {
+ "id": 3567,
+ "start": 1394.708,
+ "end": 1396.098,
+ "text": "process,"
+ },
+ {
+ "id": 3568,
+ "start": 1396.098,
+ "end": 1396.408,
+ "text": "Mark"
+ },
+ {
+ "id": 3569,
+ "start": 1396.408,
+ "end": 1396.598,
+ "text": "sent"
+ },
+ {
+ "id": 3570,
+ "start": 1396.598,
+ "end": 1396.678,
+ "text": "me"
+ },
+ {
+ "id": 3571,
+ "start": 1396.678,
+ "end": 1396.758,
+ "text": "an"
+ },
+ {
+ "id": 3572,
+ "start": 1396.758,
+ "end": 1397.638,
+ "text": "email"
+ },
+ {
+ "id": 3573,
+ "start": 1397.638,
+ "end": 1397.808,
+ "text": "and"
+ },
+ {
+ "id": 3574,
+ "start": 1397.808,
+ "end": 1397.918,
+ "text": "he"
+ },
+ {
+ "id": 3575,
+ "start": 1397.918,
+ "end": 1398.688,
+ "text": "said,"
+ },
+ {
+ "id": 3576,
+ "start": 1398.688,
+ "end": 1399.058,
+ "text": "“Before"
+ },
+ {
+ "id": 3577,
+ "start": 1399.058,
+ "end": 1399.098,
+ "text": "I"
+ },
+ {
+ "id": 3578,
+ "start": 1399.098,
+ "end": 1399.338,
+ "text": "even"
+ },
+ {
+ "id": 3579,
+ "start": 1399.348,
+ "end": 1399.5646666666667,
+ "text": "start"
+ },
+ {
+ "id": 3580,
+ "start": 1399.598,
+ "end": 1399.7913333333333,
+ "text": "it"
+ },
+ {
+ "id": 3581,
+ "start": 1399.848,
+ "end": 1400.018,
+ "text": "with"
+ },
+ {
+ "id": 3582,
+ "start": 1400.018,
+ "end": 1400.358,
+ "text": "anyone"
+ },
+ {
+ "id": 3583,
+ "start": 1400.358,
+ "end": 1401.118,
+ "text": "else,"
+ },
+ {
+ "id": 3584,
+ "start": 1401.118,
+ "end": 1401.308,
+ "text": "how"
+ },
+ {
+ "id": 3585,
+ "start": 1401.308,
+ "end": 1401.488,
+ "text": "much"
+ },
+ {
+ "id": 3586,
+ "start": 1401.488,
+ "end": 1401.598,
+ "text": "do"
+ },
+ {
+ "id": 3587,
+ "start": 1401.598,
+ "end": 1401.798,
+ "text": "you"
+ },
+ {
+ "id": 3588,
+ "start": 1401.798,
+ "end": 1402.868,
+ "text": "need?”"
+ },
+ {
+ "id": 3589,
+ "start": 1402.868,
+ "end": 1403.108,
+ "text": "And"
+ },
+ {
+ "id": 3590,
+ "start": 1403.108,
+ "end": 1403.218,
+ "text": "to"
+ },
+ {
+ "id": 3591,
+ "start": 1403.218,
+ "end": 1403.438,
+ "text": "me"
+ },
+ {
+ "id": 3592,
+ "start": 1403.438,
+ "end": 1405.528,
+ "text": "that"
+ },
+ {
+ "id": 3593,
+ "start": 1405.528,
+ "end": 1405.738,
+ "text": "made"
+ },
+ {
+ "id": 3594,
+ "start": 1405.738,
+ "end": 1406.268,
+ "text": "crystal"
+ },
+ {
+ "id": 3595,
+ "start": 1406.268,
+ "end": 1407.268,
+ "text": "clear"
+ },
+ {
+ "id": 3596,
+ "start": 1407.268,
+ "end": 1408.268,
+ "text": "that"
+ },
+ {
+ "id": 3597,
+ "start": 1408.268,
+ "end": 1408.648,
+ "text": "this"
+ },
+ {
+ "id": 3598,
+ "start": 1408.648,
+ "end": 1408.788,
+ "text": "is"
+ },
+ {
+ "id": 3599,
+ "start": 1408.788,
+ "end": 1408.878,
+ "text": "the"
+ },
+ {
+ "id": 3600,
+ "start": 1408.878,
+ "end": 1409.178,
+ "text": "most"
+ },
+ {
+ "id": 3601,
+ "start": 1409.178,
+ "end": 1409.648,
+ "text": "important"
+ },
+ {
+ "id": 3602,
+ "start": 1409.648,
+ "end": 1409.828,
+ "text": "thing"
+ },
+ {
+ "id": 3603,
+ "start": 1409.828,
+ "end": 1410.008,
+ "text": "for"
+ },
+ {
+ "id": 3604,
+ "start": 1410.008,
+ "end": 1410.468,
+ "text": "us"
+ },
+ {
+ "id": 3605,
+ "start": 1410.468,
+ "end": 1410.848,
+ "text": "as"
+ },
+ {
+ "id": 3606,
+ "start": 1410.838,
+ "end": 1410.908,
+ "text": "a"
+ },
+ {
+ "id": 3607,
+ "start": 1411.353,
+ "end": 1411.603,
+ "text": "company."
+ },
+ {
+ "id": 3608,
+ "start": 1411.868,
+ "end": 1412.298,
+ "text": "And"
+ },
+ {
+ "id": 3609,
+ "start": 1412.298,
+ "end": 1412.428,
+ "text": "as"
+ },
+ {
+ "id": 3610,
+ "start": 1412.428,
+ "end": 1412.498,
+ "text": "a"
+ },
+ {
+ "id": 3611,
+ "start": 1412.498,
+ "end": 1412.938,
+ "text": "result,"
+ },
+ {
+ "id": 3612,
+ "start": 1412.938,
+ "end": 1413.068,
+ "text": "we’re"
+ },
+ {
+ "id": 3613,
+ "start": 1413.068,
+ "end": 1413.488,
+ "text": "growing"
+ },
+ {
+ "id": 3614,
+ "start": 1413.488,
+ "end": 1413.698,
+ "text": "this"
+ },
+ {
+ "id": 3615,
+ "start": 1413.698,
+ "end": 1413.888,
+ "text": "year"
+ },
+ {
+ "id": 3616,
+ "start": 1413.888,
+ "end": 1414.118,
+ "text": "from"
+ },
+ {
+ "id": 3617,
+ "start": 1414.2955,
+ "end": 1414.663,
+ "text": "10,000"
+ },
+ {
+ "id": 3618,
+ "start": 1414.703,
+ "end": 1415.208,
+ "text": "to"
+ },
+ {
+ "id": 3619,
+ "start": 1415.1105,
+ "end": 1415.753,
+ "text": "20,000"
+ },
+ {
+ "id": 3620,
+ "start": 1415.518,
+ "end": 1416.298,
+ "text": "people"
+ },
+ {
+ "id": 3621,
+ "start": 1416.298,
+ "end": 1416.708,
+ "text": "working"
+ },
+ {
+ "id": 3622,
+ "start": 1416.708,
+ "end": 1416.818,
+ "text": "on"
+ },
+ {
+ "id": 3623,
+ "start": 1416.818,
+ "end": 1417.108,
+ "text": "safety"
+ },
+ {
+ "id": 3624,
+ "start": 1417.108,
+ "end": 1417.198,
+ "text": "and"
+ },
+ {
+ "id": 3625,
+ "start": 1417.198,
+ "end": 1418.508,
+ "text": "security"
+ },
+ {
+ "id": 3626,
+ "start": 1418.508,
+ "end": 1418.688,
+ "text": "and"
+ },
+ {
+ "id": 3627,
+ "start": 1418.688,
+ "end": 1418.798,
+ "text": "we’re"
+ },
+ {
+ "id": 3628,
+ "start": 1418.798,
+ "end": 1419.098,
+ "text": "making"
+ },
+ {
+ "id": 3629,
+ "start": 1419.098,
+ "end": 1419.778,
+ "text": "progress"
+ },
+ {
+ "id": 3630,
+ "start": 1419.778,
+ "end": 1419.888,
+ "text": "in"
+ },
+ {
+ "id": 3631,
+ "start": 1419.888,
+ "end": 1419.938,
+ "text": "a"
+ },
+ {
+ "id": 3632,
+ "start": 1419.938,
+ "end": 1420.198,
+ "text": "number"
+ },
+ {
+ "id": 3633,
+ "start": 1420.198,
+ "end": 1420.288,
+ "text": "of"
+ },
+ {
+ "id": 3634,
+ "start": 1420.288,
+ "end": 1420.638,
+ "text": "areas."
+ },
+ {
+ "id": 3635,
+ "start": 1420.638,
+ "end": 1420.738,
+ "text": "We"
+ },
+ {
+ "id": 3636,
+ "start": 1420.738,
+ "end": 1420.878,
+ "text": "have"
+ },
+ {
+ "id": 3637,
+ "start": 1420.878,
+ "end": 1420.918,
+ "text": "a"
+ },
+ {
+ "id": 3638,
+ "start": 1420.918,
+ "end": 1421.198,
+ "text": "lot"
+ },
+ {
+ "id": 3639,
+ "start": 1421.198,
+ "end": 1421.278,
+ "text": "of"
+ },
+ {
+ "id": 3640,
+ "start": 1421.278,
+ "end": 1421.468,
+ "text": "work"
+ },
+ {
+ "id": 3641,
+ "start": 1421.468,
+ "end": 1421.678,
+ "text": "ahead"
+ },
+ {
+ "id": 3642,
+ "start": 1421.678,
+ "end": 1421.768,
+ "text": "of"
+ },
+ {
+ "id": 3643,
+ "start": 1421.768,
+ "end": 1422.768,
+ "text": "us"
+ },
+ {
+ "id": 3644,
+ "start": 1422.768,
+ "end": 1422.938,
+ "text": "but"
+ },
+ {
+ "id": 3645,
+ "start": 1422.938,
+ "end": 1423.138,
+ "text": "there’s"
+ },
+ {
+ "id": 3646,
+ "start": 1423.138,
+ "end": 1423.208,
+ "text": "a"
+ },
+ {
+ "id": 3647,
+ "start": 1423.208,
+ "end": 1423.378,
+ "text": "lot"
+ },
+ {
+ "id": 3648,
+ "start": 1423.378,
+ "end": 1423.448,
+ "text": "of"
+ },
+ {
+ "id": 3649,
+ "start": 1423.448,
+ "end": 1423.818,
+ "text": "progress"
+ },
+ {
+ "id": 3650,
+ "start": 1423.818,
+ "end": 1424.008,
+ "text": "that’s"
+ },
+ {
+ "id": 3651,
+ "start": 1424.008,
+ "end": 1424.158,
+ "text": "been"
+ },
+ {
+ "id": 3652,
+ "start": 1424.158,
+ "end": 1424.458,
+ "text": "made"
+ },
+ {
+ "id": 3653,
+ "start": 1424.458,
+ "end": 1424.898,
+ "text": "and"
+ },
+ {
+ "id": 3654,
+ "start": 1424.898,
+ "end": 1425.088,
+ "text": "there"
+ },
+ {
+ "id": 3655,
+ "start": 1425.088,
+ "end": 1425.248,
+ "text": "will"
+ },
+ {
+ "id": 3656,
+ "start": 1425.248,
+ "end": 1425.368,
+ "text": "be"
+ },
+ {
+ "id": 3657,
+ "start": 1425.798,
+ "end": 1425.938,
+ "text": "challenges."
+ },
+ {
+ "id": 3658,
+ "start": 1426.348,
+ "end": 1426.508,
+ "text": "But"
+ },
+ {
+ "id": 3659,
+ "start": 1426.508,
+ "end": 1426.608,
+ "text": "it"
+ },
+ {
+ "id": 3660,
+ "start": 1426.608,
+ "end": 1426.798,
+ "text": "is"
+ },
+ {
+ "id": 3661,
+ "start": 1426.798,
+ "end": 1427.178,
+ "text": "our"
+ },
+ {
+ "id": 3662,
+ "start": 1427.178,
+ "end": 1428.448,
+ "text": "responsibility"
+ },
+ {
+ "id": 3663,
+ "start": 1428.448,
+ "end": 1428.848,
+ "text": "and"
+ },
+ {
+ "id": 3664,
+ "start": 1428.848,
+ "end": 1429.098,
+ "text": "it’s"
+ },
+ {
+ "id": 3665,
+ "start": 1429.098,
+ "end": 1429.378,
+ "text": "my"
+ },
+ {
+ "id": 3666,
+ "start": 1429.378,
+ "end": 1430.158,
+ "text": "job"
+ },
+ {
+ "id": 3667,
+ "start": 1430.158,
+ "end": 1430.288,
+ "text": "to"
+ },
+ {
+ "id": 3668,
+ "start": 1430.288,
+ "end": 1430.428,
+ "text": "be"
+ },
+ {
+ "id": 3669,
+ "start": 1430.428,
+ "end": 1430.668,
+ "text": "ready"
+ },
+ {
+ "id": 3670,
+ "start": 1430.668,
+ "end": 1430.828,
+ "text": "for"
+ },
+ {
+ "id": 3671,
+ "start": 1430.828,
+ "end": 1431.158,
+ "text": "them"
+ },
+ {
+ "id": 3672,
+ "start": 1431.158,
+ "end": 1431.308,
+ "text": "and"
+ },
+ {
+ "id": 3673,
+ "start": 1431.308,
+ "end": 1431.388,
+ "text": "to"
+ },
+ {
+ "id": 3674,
+ "start": 1431.388,
+ "end": 1431.528,
+ "text": "get"
+ },
+ {
+ "id": 3675,
+ "start": 1431.528,
+ "end": 1431.728,
+ "text": "ahead"
+ },
+ {
+ "id": 3676,
+ "start": 1431.728,
+ "end": 1431.828,
+ "text": "of"
+ },
+ {
+ "id": 3677,
+ "start": 1431.828,
+ "end": 1431.998,
+ "text": "them."
+ },
+ {
+ "id": 3678,
+ "start": 1431.998,
+ "end": 1432.228,
+ "text": "So"
+ },
+ {
+ "id": 3679,
+ "start": 1432.228,
+ "end": 1432.418,
+ "text": "what"
+ },
+ {
+ "id": 3680,
+ "start": 1432.418,
+ "end": 1432.588,
+ "text": "is"
+ },
+ {
+ "id": 3681,
+ "start": 1432.588,
+ "end": 1432.738,
+ "text": "your"
+ },
+ {
+ "id": 3682,
+ "start": 1432.738,
+ "end": 1433.088,
+ "text": "biggest"
+ },
+ {
+ "id": 3683,
+ "start": 1433.088,
+ "end": 1434.568,
+ "text": "challenge?"
+ },
+ {
+ "id": 3684,
+ "start": 1434.568,
+ "end": 1434.858,
+ "text": "There"
+ },
+ {
+ "id": 3685,
+ "start": 1434.858,
+ "end": 1435.048,
+ "text": "is"
+ },
+ {
+ "id": 3686,
+ "start": 1435.048,
+ "end": 1435.198,
+ "text": "a"
+ },
+ {
+ "id": 3687,
+ "start": 1435.198,
+ "end": 1435.578,
+ "text": "lot"
+ },
+ {
+ "id": 3688,
+ "start": 1436.688,
+ "end": 1436.9379999999996,
+ "text": "of–sorry"
+ },
+ {
+ "id": 3689,
+ "start": 1438.178,
+ "end": 1438.298,
+ "text": "let"
+ },
+ {
+ "id": 3690,
+ "start": 1438.298,
+ "end": 1438.378,
+ "text": "me"
+ },
+ {
+ "id": 3691,
+ "start": 1438.378,
+ "end": 1438.728,
+ "text": "reframe"
+ },
+ {
+ "id": 3692,
+ "start": 1438.728,
+ "end": 1440.468,
+ "text": "that."
+ },
+ {
+ "id": 3693,
+ "start": 1440.468,
+ "end": 1440.648,
+ "text": "We"
+ },
+ {
+ "id": 3694,
+ "start": 1440.648,
+ "end": 1441.028,
+ "text": "have"
+ },
+ {
+ "id": 3695,
+ "start": 1441.028,
+ "end": 1441.118,
+ "text": "a"
+ },
+ {
+ "id": 3696,
+ "start": 1441.118,
+ "end": 1441.308,
+ "text": "lot"
+ },
+ {
+ "id": 3697,
+ "start": 1441.308,
+ "end": 1441.398,
+ "text": "of"
+ },
+ {
+ "id": 3698,
+ "start": 1441.398,
+ "end": 1441.568,
+ "text": "work"
+ },
+ {
+ "id": 3699,
+ "start": 1441.568,
+ "end": 1441.768,
+ "text": "ahead"
+ },
+ {
+ "id": 3700,
+ "start": 1441.768,
+ "end": 1441.858,
+ "text": "of"
+ },
+ {
+ "id": 3701,
+ "start": 1441.858,
+ "end": 1442.538,
+ "text": "us."
+ },
+ {
+ "id": 3702,
+ "start": 1442.238,
+ "end": 1442.868,
+ "text": "And—"
+ },
+ {
+ "id": 3703,
+ "start": 1442.5529999999999,
+ "end": 1442.978,
+ "text": "Like"
+ },
+ {
+ "id": 3704,
+ "start": 1442.868,
+ "end": 1443.088,
+ "text": "what,"
+ },
+ {
+ "id": 3705,
+ "start": 1443.088,
+ "end": 1443.248,
+ "text": "for"
+ },
+ {
+ "id": 3706,
+ "start": 1443.248,
+ "end": 1444.158,
+ "text": "instance?"
+ },
+ {
+ "id": 3707,
+ "start": 1444.158,
+ "end": 1444.368,
+ "text": "What"
+ },
+ {
+ "id": 3708,
+ "start": 1444.368,
+ "end": 1444.568,
+ "text": "work"
+ },
+ {
+ "id": 3709,
+ "start": 1444.568,
+ "end": 1444.638,
+ "text": "do"
+ },
+ {
+ "id": 3710,
+ "start": 1444.638,
+ "end": 1444.728,
+ "text": "you"
+ },
+ {
+ "id": 3711,
+ "start": 1444.728,
+ "end": 1444.898,
+ "text": "have"
+ },
+ {
+ "id": 3712,
+ "start": 1445.158,
+ "end": 1445.348,
+ "text": "ahead?"
+ },
+ {
+ "id": 3713,
+ "start": 1445.588,
+ "end": 1445.798,
+ "text": "And"
+ },
+ {
+ "id": 3714,
+ "start": 1445.798,
+ "end": 1445.928,
+ "text": "how"
+ },
+ {
+ "id": 3715,
+ "start": 1445.928,
+ "end": 1446.288,
+ "text": "quickly"
+ },
+ {
+ "id": 3716,
+ "start": 1446.288,
+ "end": 1446.468,
+ "text": "can"
+ },
+ {
+ "id": 3717,
+ "start": 1446.468,
+ "end": 1446.558,
+ "text": "you"
+ },
+ {
+ "id": 3718,
+ "start": 1446.558,
+ "end": 1446.748,
+ "text": "do"
+ },
+ {
+ "id": 3719,
+ "start": 1446.748,
+ "end": 1447.738,
+ "text": "it?"
+ },
+ {
+ "id": 3720,
+ "start": 1446.898,
+ "end": 1448.078,
+ "text": "This"
+ },
+ {
+ "id": 3721,
+ "start": 1448.3613333333333,
+ "end": 1449.2013333333339,
+ "text": "is"
+ },
+ {
+ "id": 3722,
+ "start": 1449.8246666666664,
+ "end": 1450.3246666666669,
+ "text": "a—this"
+ },
+ {
+ "id": 3723,
+ "start": 1451.288,
+ "end": 1451.448,
+ "text": "is"
+ },
+ {
+ "id": 3724,
+ "start": 1451.448,
+ "end": 1451.528,
+ "text": "the"
+ },
+ {
+ "id": 3725,
+ "start": 1451.528,
+ "end": 1451.778,
+ "text": "kind"
+ },
+ {
+ "id": 3726,
+ "start": 1451.778,
+ "end": 1451.928,
+ "text": "of"
+ },
+ {
+ "id": 3727,
+ "start": 1451.928,
+ "end": 1452.378,
+ "text": "work"
+ },
+ {
+ "id": 3728,
+ "start": 1452.378,
+ "end": 1452.708,
+ "text": "that"
+ },
+ {
+ "id": 3729,
+ "start": 1452.708,
+ "end": 1453.078,
+ "text": "never"
+ },
+ {
+ "id": 3730,
+ "start": 1453.078,
+ "end": 1453.348,
+ "text": "really"
+ },
+ {
+ "id": 3731,
+ "start": 1453.348,
+ "end": 1453.678,
+ "text": "ends"
+ },
+ {
+ "id": 3732,
+ "start": 1453.678,
+ "end": 1454.008,
+ "text": "because"
+ },
+ {
+ "id": 3733,
+ "start": 1454.008,
+ "end": 1454.158,
+ "text": "we"
+ },
+ {
+ "id": 3734,
+ "start": 1454.158,
+ "end": 1454.318,
+ "text": "will"
+ },
+ {
+ "id": 3735,
+ "start": 1454.318,
+ "end": 1455.418,
+ "text": "have"
+ },
+ {
+ "id": 3736,
+ "start": 1455.418,
+ "end": 1456.128,
+ "text": "adversaries"
+ },
+ {
+ "id": 3737,
+ "start": 1456.128,
+ "end": 1456.228,
+ "text": "on"
+ },
+ {
+ "id": 3738,
+ "start": 1456.228,
+ "end": 1456.348,
+ "text": "the"
+ },
+ {
+ "id": 3739,
+ "start": 1456.348,
+ "end": 1456.538,
+ "text": "other"
+ },
+ {
+ "id": 3740,
+ "start": 1456.538,
+ "end": 1456.958,
+ "text": "side"
+ },
+ {
+ "id": 3741,
+ "start": 1456.958,
+ "end": 1457.108,
+ "text": "who"
+ },
+ {
+ "id": 3742,
+ "start": 1457.108,
+ "end": 1457.228,
+ "text": "are"
+ },
+ {
+ "id": 3743,
+ "start": 1457.228,
+ "end": 1457.608,
+ "text": "trying"
+ },
+ {
+ "id": 3744,
+ "start": 1457.608,
+ "end": 1457.928,
+ "text": "to"
+ },
+ {
+ "id": 3745,
+ "start": 1457.928,
+ "end": 1458.798,
+ "text": "evade"
+ },
+ {
+ "id": 3746,
+ "start": 1458.798,
+ "end": 1458.988,
+ "text": "or"
+ },
+ {
+ "id": 3747,
+ "start": 1458.988,
+ "end": 1459.398,
+ "text": "exploit"
+ },
+ {
+ "id": 3748,
+ "start": 1459.398,
+ "end": 1459.498,
+ "text": "our"
+ },
+ {
+ "id": 3749,
+ "start": 1459.498,
+ "end": 1460.488,
+ "text": "systems."
+ },
+ {
+ "id": 3750,
+ "start": 1460.488,
+ "end": 1460.668,
+ "text": "And"
+ },
+ {
+ "id": 3751,
+ "start": 1460.668,
+ "end": 1461.198,
+ "text": "so"
+ },
+ {
+ "id": 3752,
+ "start": 1461.198,
+ "end": 1461.348,
+ "text": "we"
+ },
+ {
+ "id": 3753,
+ "start": 1461.348,
+ "end": 1461.538,
+ "text": "have"
+ },
+ {
+ "id": 3754,
+ "start": 1461.538,
+ "end": 1461.618,
+ "text": "to"
+ },
+ {
+ "id": 3755,
+ "start": 1461.618,
+ "end": 1462.858,
+ "text": "constantly"
+ },
+ {
+ "id": 3756,
+ "start": 1462.858,
+ "end": 1463.028,
+ "text": "be"
+ },
+ {
+ "id": 3757,
+ "start": 1463.028,
+ "end": 1463.678,
+ "text": "ready"
+ },
+ {
+ "id": 3758,
+ "start": 1463.678,
+ "end": 1463.888,
+ "text": "and"
+ },
+ {
+ "id": 3759,
+ "start": 1463.888,
+ "end": 1464.008,
+ "text": "be"
+ },
+ {
+ "id": 3760,
+ "start": 1464.008,
+ "end": 1464.698,
+ "text": "proactive"
+ },
+ {
+ "id": 3761,
+ "start": 1464.698,
+ "end": 1464.838,
+ "text": "and"
+ },
+ {
+ "id": 3762,
+ "start": 1464.838,
+ "end": 1465.098,
+ "text": "keep"
+ },
+ {
+ "id": 3763,
+ "start": 1465.098,
+ "end": 1465.678,
+ "text": "learning"
+ },
+ {
+ "id": 3764,
+ "start": 1465.678,
+ "end": 1465.888,
+ "text": "so"
+ },
+ {
+ "id": 3765,
+ "start": 1465.888,
+ "end": 1466.088,
+ "text": "that"
+ },
+ {
+ "id": 3766,
+ "start": 1466.088,
+ "end": 1466.228,
+ "text": "we"
+ },
+ {
+ "id": 3767,
+ "start": 1466.228,
+ "end": 1466.388,
+ "text": "can"
+ },
+ {
+ "id": 3768,
+ "start": 1466.388,
+ "end": 1466.588,
+ "text": "get"
+ },
+ {
+ "id": 3769,
+ "start": 1466.588,
+ "end": 1467.538,
+ "text": "ahead"
+ },
+ {
+ "id": 3770,
+ "start": 1467.538,
+ "end": 1467.998,
+ "text": "of"
+ },
+ {
+ "id": 3771,
+ "start": 1467.998,
+ "end": 1468.128,
+ "text": "the"
+ },
+ {
+ "id": 3772,
+ "start": 1468.128,
+ "end": 1468.378,
+ "text": "next"
+ },
+ {
+ "id": 3773,
+ "start": 1468.378,
+ "end": 1468.868,
+ "text": "challenges"
+ },
+ {
+ "id": 3774,
+ "start": 1468.868,
+ "end": 1469.048,
+ "text": "that"
+ },
+ {
+ "id": 3775,
+ "start": 1469.048,
+ "end": 1469.598,
+ "text": "come"
+ },
+ {
+ "id": 3776,
+ "start": 1469.598,
+ "end": 1469.888,
+ "text": "ahead"
+ },
+ {
+ "id": 3777,
+ "start": 1469.888,
+ "end": 1469.988,
+ "text": "of"
+ },
+ {
+ "id": 3778,
+ "start": 1470.088,
+ "end": 1470.383,
+ "text": "us,"
+ },
+ {
+ "id": 3779,
+ "start": 1470.288,
+ "end": 1470.778,
+ "text": "and"
+ },
+ {
+ "id": 3780,
+ "start": 1470.778,
+ "end": 1471.078,
+ "text": "that"
+ },
+ {
+ "id": 3781,
+ "start": 1471.078,
+ "end": 1471.418,
+ "text": "is"
+ },
+ {
+ "id": 3782,
+ "start": 1471.418,
+ "end": 1471.728,
+ "text": "our"
+ },
+ {
+ "id": 3783,
+ "start": 1471.728,
+ "end": 1472.088,
+ "text": "job"
+ },
+ {
+ "id": 3784,
+ "start": 1472.088,
+ "end": 1472.198,
+ "text": "to"
+ },
+ {
+ "id": 3785,
+ "start": 1472.198,
+ "end": 1476.628,
+ "text": "do."
+ },
+ {
+ "id": 3786,
+ "start": 1476.628,
+ "end": 1477.088,
+ "text": "Do"
+ },
+ {
+ "id": 3787,
+ "start": 1477.088,
+ "end": 1477.168,
+ "text": "you"
+ },
+ {
+ "id": 3788,
+ "start": 1477.168,
+ "end": 1477.428,
+ "text": "think"
+ },
+ {
+ "id": 3789,
+ "start": 1477.428,
+ "end": 1477.578,
+ "text": "when"
+ },
+ {
+ "id": 3790,
+ "start": 1477.578,
+ "end": 1477.988,
+ "text": "Mark"
+ },
+ {
+ "id": 3791,
+ "start": 1477.988,
+ "end": 1478.438,
+ "text": "gave"
+ },
+ {
+ "id": 3792,
+ "start": 1478.438,
+ "end": 1478.908,
+ "text": "you"
+ },
+ {
+ "id": 3793,
+ "start": 1478.908,
+ "end": 1479.458,
+ "text": "essentially"
+ },
+ {
+ "id": 3794,
+ "start": 1479.458,
+ "end": 1479.538,
+ "text": "a"
+ },
+ {
+ "id": 3795,
+ "start": 1479.538,
+ "end": 1479.828,
+ "text": "blank"
+ },
+ {
+ "id": 3796,
+ "start": 1480.6280000000002,
+ "end": 1480.8229999999999,
+ "text": "check"
+ },
+ {
+ "id": 3797,
+ "start": 1481.718,
+ "end": 1481.818,
+ "text": "to"
+ },
+ {
+ "id": 3798,
+ "start": 1481.818,
+ "end": 1482.008,
+ "text": "do"
+ },
+ {
+ "id": 3799,
+ "start": 1482.008,
+ "end": 1482.108,
+ "text": "the"
+ },
+ {
+ "id": 3800,
+ "start": 1482.108,
+ "end": 1482.348,
+ "text": "work"
+ },
+ {
+ "id": 3801,
+ "start": 1482.348,
+ "end": 1482.518,
+ "text": "that"
+ },
+ {
+ "id": 3802,
+ "start": 1482.518,
+ "end": 1482.638,
+ "text": "you’re"
+ },
+ {
+ "id": 3803,
+ "start": 1482.638,
+ "end": 1483.448,
+ "text": "doing,"
+ },
+ {
+ "id": 3804,
+ "start": 1483.448,
+ "end": 1483.708,
+ "text": "was"
+ },
+ {
+ "id": 3805,
+ "start": 1483.708,
+ "end": 1483.858,
+ "text": "he"
+ },
+ {
+ "id": 3806,
+ "start": 1483.858,
+ "end": 1483.978,
+ "text": "in"
+ },
+ {
+ "id": 3807,
+ "start": 1483.978,
+ "end": 1484.278,
+ "text": "some"
+ },
+ {
+ "id": 3808,
+ "start": 1484.278,
+ "end": 1486.698,
+ "text": "way"
+ },
+ {
+ "id": 3809,
+ "start": 1486.698,
+ "end": 1487.068,
+ "text": "trying"
+ },
+ {
+ "id": 3810,
+ "start": 1487.068,
+ "end": 1487.168,
+ "text": "to"
+ },
+ {
+ "id": 3811,
+ "start": 1487.168,
+ "end": 1487.988,
+ "text": "salvage"
+ },
+ {
+ "id": 3812,
+ "start": 1487.988,
+ "end": 1488.448,
+ "text": "the"
+ },
+ {
+ "id": 3813,
+ "start": 1488.448,
+ "end": 1489.018,
+ "text": "essential"
+ },
+ {
+ "id": 3814,
+ "start": 1489.018,
+ "end": 1489.528,
+ "text": "idea"
+ },
+ {
+ "id": 3815,
+ "start": 1489.528,
+ "end": 1489.698,
+ "text": "of"
+ },
+ {
+ "id": 3816,
+ "start": 1489.698,
+ "end": 1489.888,
+ "text": "what"
+ },
+ {
+ "id": 3817,
+ "start": 1489.888,
+ "end": 1490.098,
+ "text": "he’s"
+ },
+ {
+ "id": 3818,
+ "start": 1490.098,
+ "end": 1490.558,
+ "text": "created,"
+ },
+ {
+ "id": 3819,
+ "start": 1490.558,
+ "end": 1490.758,
+ "text": "which"
+ },
+ {
+ "id": 3820,
+ "start": 1490.758,
+ "end": 1490.918,
+ "text": "is"
+ },
+ {
+ "id": 3821,
+ "start": 1490.918,
+ "end": 1491.138,
+ "text": "this"
+ },
+ {
+ "id": 3822,
+ "start": 1491.138,
+ "end": 1492.078,
+ "text": "idea"
+ },
+ {
+ "id": 3823,
+ "start": 1492.078,
+ "end": 1492.298,
+ "text": "of"
+ },
+ {
+ "id": 3824,
+ "start": 1492.298,
+ "end": 1493.588,
+ "text": "connecting"
+ },
+ {
+ "id": 3825,
+ "start": 1493.588,
+ "end": 1494.128,
+ "text": "everyone"
+ },
+ {
+ "id": 3826,
+ "start": 1494.128,
+ "end": 1494.328,
+ "text": "on"
+ },
+ {
+ "id": 3827,
+ "start": 1494.328,
+ "end": 1494.578,
+ "text": "earth"
+ },
+ {
+ "id": 3828,
+ "start": 1494.578,
+ "end": 1495.098,
+ "text": "to"
+ },
+ {
+ "id": 3829,
+ "start": 1495.098,
+ "end": 1495.438,
+ "text": "his"
+ },
+ {
+ "id": 3830,
+ "start": 1495.438,
+ "end": 1495.848,
+ "text": "single"
+ },
+ {
+ "id": 3831,
+ "start": 1495.848,
+ "end": 1496.888,
+ "text": "platform?"
+ },
+ {
+ "id": 3832,
+ "start": 1496.888,
+ "end": 1498.458,
+ "text": "Because"
+ },
+ {
+ "id": 3833,
+ "start": 1498.458,
+ "end": 1498.708,
+ "text": "it"
+ },
+ {
+ "id": 3834,
+ "start": 1498.708,
+ "end": 1499.178,
+ "text": "seems"
+ },
+ {
+ "id": 3835,
+ "start": 1499.178,
+ "end": 1499.408,
+ "text": "like"
+ },
+ {
+ "id": 3836,
+ "start": 1499.408,
+ "end": 1499.768,
+ "text": "almost"
+ },
+ {
+ "id": 3837,
+ "start": 1499.768,
+ "end": 1499.828,
+ "text": "a"
+ },
+ {
+ "id": 3838,
+ "start": 1499.828,
+ "end": 1500.078,
+ "text": "Hail"
+ },
+ {
+ "id": 3839,
+ "start": 1500.078,
+ "end": 1500.468,
+ "text": "Mary"
+ },
+ {
+ "id": 3840,
+ "start": 1500.468,
+ "end": 1502.798,
+ "text": "pass"
+ },
+ {
+ "id": 3841,
+ "start": 1502.798,
+ "end": 1502.978,
+ "text": "for"
+ },
+ {
+ "id": 3842,
+ "start": 1502.978,
+ "end": 1503.298,
+ "text": "the"
+ },
+ {
+ "id": 3843,
+ "start": 1503.298,
+ "end": 1503.828,
+ "text": "beauty"
+ },
+ {
+ "id": 3844,
+ "start": 1503.828,
+ "end": 1503.988,
+ "text": "of"
+ },
+ {
+ "id": 3845,
+ "start": 1503.988,
+ "end": 1504.208,
+ "text": "that"
+ },
+ {
+ "id": 3846,
+ "start": 1504.208,
+ "end": 1504.598,
+ "text": "idea,"
+ },
+ {
+ "id": 3847,
+ "start": 1504.598,
+ "end": 1504.768,
+ "text": "the"
+ },
+ {
+ "id": 3848,
+ "start": 1504.768,
+ "end": 1505.368,
+ "text": "idealism"
+ },
+ {
+ "id": 3849,
+ "start": 1505.368,
+ "end": 1505.518,
+ "text": "of"
+ },
+ {
+ "id": 3850,
+ "start": 1505.518,
+ "end": 1505.718,
+ "text": "that"
+ },
+ {
+ "id": 3851,
+ "start": 1505.718,
+ "end": 1506.688,
+ "text": "idea."
+ },
+ {
+ "id": 3852,
+ "start": 1506.688,
+ "end": 1506.998,
+ "text": "We"
+ },
+ {
+ "id": 3853,
+ "start": 1506.998,
+ "end": 1507.258,
+ "text": "know"
+ },
+ {
+ "id": 3854,
+ "start": 1507.258,
+ "end": 1507.398,
+ "text": "we"
+ },
+ {
+ "id": 3855,
+ "start": 1507.398,
+ "end": 1507.608,
+ "text": "have"
+ },
+ {
+ "id": 3856,
+ "start": 1507.608,
+ "end": 1507.668,
+ "text": "a"
+ },
+ {
+ "id": 3857,
+ "start": 1507.668,
+ "end": 1508.578,
+ "text": "responsibility."
+ },
+ {
+ "id": 3858,
+ "start": 1508.578,
+ "end": 1509.388,
+ "text": "Facebook"
+ },
+ {
+ "id": 3859,
+ "start": 1509.388,
+ "end": 1510.278,
+ "text": "brings"
+ },
+ {
+ "id": 3860,
+ "start": 1510.278,
+ "end": 1510.758,
+ "text": "many"
+ },
+ {
+ "id": 3861,
+ "start": 1510.758,
+ "end": 1511.008,
+ "text": "good"
+ },
+ {
+ "id": 3862,
+ "start": 1511.008,
+ "end": 1511.448,
+ "text": "things"
+ },
+ {
+ "id": 3863,
+ "start": 1511.448,
+ "end": 1511.698,
+ "text": "into"
+ },
+ {
+ "id": 3864,
+ "start": 1511.698,
+ "end": 1511.808,
+ "text": "the"
+ },
+ {
+ "id": 3865,
+ "start": 1512.343,
+ "end": 1512.4879999999998,
+ "text": "world."
+ },
+ {
+ "id": 3866,
+ "start": 1512.988,
+ "end": 1513.168,
+ "text": "But"
+ },
+ {
+ "id": 3867,
+ "start": 1513.168,
+ "end": 1513.298,
+ "text": "there"
+ },
+ {
+ "id": 3868,
+ "start": 1513.298,
+ "end": 1513.428,
+ "text": "is"
+ },
+ {
+ "id": 3869,
+ "start": 1513.428,
+ "end": 1514.208,
+ "text": "also"
+ },
+ {
+ "id": 3870,
+ "start": 1514.208,
+ "end": 1515.388,
+ "text": "abuse"
+ },
+ {
+ "id": 3871,
+ "start": 1515.388,
+ "end": 1515.788,
+ "text": "and"
+ },
+ {
+ "id": 3872,
+ "start": 1515.788,
+ "end": 1515.948,
+ "text": "we"
+ },
+ {
+ "id": 3873,
+ "start": 1515.948,
+ "end": 1516.188,
+ "text": "have"
+ },
+ {
+ "id": 3874,
+ "start": 1516.188,
+ "end": 1516.308,
+ "text": "to"
+ },
+ {
+ "id": 3875,
+ "start": 1516.488,
+ "end": 1516.588,
+ "text": "minimize"
+ },
+ {
+ "id": 3876,
+ "start": 1516.788,
+ "end": 1516.868,
+ "text": "the"
+ },
+ {
+ "id": 3877,
+ "start": 1516.868,
+ "end": 1517.568,
+ "text": "bad"
+ },
+ {
+ "id": 3878,
+ "start": 1517.288,
+ "end": 1517.728,
+ "text": "and"
+ },
+ {
+ "id": 3879,
+ "start": 1517.8980000000001,
+ "end": 1518.173,
+ "text": "maximize"
+ },
+ {
+ "id": 3880,
+ "start": 1518.508,
+ "end": 1518.618,
+ "text": "the"
+ },
+ {
+ "id": 3881,
+ "start": 1518.618,
+ "end": 1519.028,
+ "text": "good."
+ },
+ {
+ "id": 3882,
+ "start": 1519.028,
+ "end": 1519.278,
+ "text": "That"
+ },
+ {
+ "id": 3883,
+ "start": 1519.278,
+ "end": 1519.488,
+ "text": "is"
+ },
+ {
+ "id": 3884,
+ "start": 1519.488,
+ "end": 1519.688,
+ "text": "our"
+ },
+ {
+ "id": 3885,
+ "start": 1519.688,
+ "end": 1520.588,
+ "text": "job"
+ },
+ {
+ "id": 3886,
+ "start": 1520.588,
+ "end": 1520.988,
+ "text": "and"
+ },
+ {
+ "id": 3887,
+ "start": 1520.988,
+ "end": 1521.148,
+ "text": "there"
+ },
+ {
+ "id": 3888,
+ "start": 1521.148,
+ "end": 1521.318,
+ "text": "will"
+ },
+ {
+ "id": 3889,
+ "start": 1521.318,
+ "end": 1521.438,
+ "text": "be"
+ },
+ {
+ "id": 3890,
+ "start": 1521.438,
+ "end": 1522.068,
+ "text": "challenges."
+ },
+ {
+ "id": 3891,
+ "start": 1522.068,
+ "end": 1522.198,
+ "text": "There"
+ },
+ {
+ "id": 3892,
+ "start": 1522.198,
+ "end": 1522.348,
+ "text": "will"
+ },
+ {
+ "id": 3893,
+ "start": 1522.348,
+ "end": 1522.488,
+ "text": "be"
+ },
+ {
+ "id": 3894,
+ "start": 1522.488,
+ "end": 1523.238,
+ "text": "adversaries"
+ },
+ {
+ "id": 3895,
+ "start": 1523.238,
+ "end": 1523.398,
+ "text": "who"
+ },
+ {
+ "id": 3896,
+ "start": 1523.398,
+ "end": 1523.538,
+ "text": "will"
+ },
+ {
+ "id": 3897,
+ "start": 1523.538,
+ "end": 1523.748,
+ "text": "try"
+ },
+ {
+ "id": 3898,
+ "start": 1523.748,
+ "end": 1523.838,
+ "text": "to"
+ },
+ {
+ "id": 3899,
+ "start": 1523.838,
+ "end": 1524.188,
+ "text": "evade"
+ },
+ {
+ "id": 3900,
+ "start": 1524.188,
+ "end": 1524.278,
+ "text": "our"
+ },
+ {
+ "id": 3901,
+ "start": 1524.278,
+ "end": 1525.688,
+ "text": "systems."
+ },
+ {
+ "id": 3902,
+ "start": 1525.688,
+ "end": 1525.978,
+ "text": "We"
+ },
+ {
+ "id": 3903,
+ "start": 1525.978,
+ "end": 1526.238,
+ "text": "have"
+ },
+ {
+ "id": 3904,
+ "start": 1526.238,
+ "end": 1526.348,
+ "text": "to"
+ },
+ {
+ "id": 3905,
+ "start": 1526.348,
+ "end": 1526.508,
+ "text": "be"
+ },
+ {
+ "id": 3906,
+ "start": 1526.508,
+ "end": 1527.258,
+ "text": "ready"
+ },
+ {
+ "id": 3907,
+ "start": 1527.258,
+ "end": 1527.478,
+ "text": "and"
+ },
+ {
+ "id": 3908,
+ "start": 1527.478,
+ "end": 1527.568,
+ "text": "it"
+ },
+ {
+ "id": 3909,
+ "start": 1527.568,
+ "end": 1527.728,
+ "text": "is"
+ },
+ {
+ "id": 3910,
+ "start": 1527.728,
+ "end": 1527.918,
+ "text": "our"
+ },
+ {
+ "id": 3911,
+ "start": 1527.918,
+ "end": 1528.808,
+ "text": "responsibility."
+ },
+ {
+ "id": 3912,
+ "start": 1528.808,
+ "end": 1529.108,
+ "text": "It’s"
+ },
+ {
+ "id": 3913,
+ "start": 1529.108,
+ "end": 1529.538,
+ "text": "literally"
+ },
+ {
+ "id": 3914,
+ "start": 1529.538,
+ "end": 1529.708,
+ "text": "my"
+ },
+ {
+ "id": 3915,
+ "start": 1529.708,
+ "end": 1530.228,
+ "text": "job"
+ },
+ {
+ "id": 3916,
+ "start": 1530.228,
+ "end": 1530.358,
+ "text": "to"
+ },
+ {
+ "id": 3917,
+ "start": 1530.358,
+ "end": 1530.818,
+ "text": "continue"
+ },
+ {
+ "id": 3918,
+ "start": 1530.818,
+ "end": 1530.908,
+ "text": "to"
+ },
+ {
+ "id": 3919,
+ "start": 1530.908,
+ "end": 1531.048,
+ "text": "get"
+ },
+ {
+ "id": 3920,
+ "start": 1531.048,
+ "end": 1531.238,
+ "text": "ahead"
+ },
+ {
+ "id": 3921,
+ "start": 1531.238,
+ "end": 1531.348,
+ "text": "of"
+ },
+ {
+ "id": 3922,
+ "start": 1531.338,
+ "end": 1531.698,
+ "text": "those."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 1.41,
+ "end": 8.775,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 1,
+ "start": 8.81,
+ "end": 9.96,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 2,
+ "start": 9.96,
+ "end": 15.84,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 3,
+ "start": 15.84,
+ "end": 19.675,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 4,
+ "start": 19.67,
+ "end": 27.79,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 5,
+ "start": 27.79,
+ "end": 41.52499999999998,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 6,
+ "start": 41.74,
+ "end": 57.81,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 7,
+ "start": 57.81,
+ "end": 68.73,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 8,
+ "start": 68.73,
+ "end": 72.255,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 9,
+ "start": 72.74,
+ "end": 89.18,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 10,
+ "start": 88.8,
+ "end": 91.445,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 11,
+ "start": 91.78,
+ "end": 95,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 12,
+ "start": 95,
+ "end": 97.69,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 13,
+ "start": 97.9,
+ "end": 101.01000000000002,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 14,
+ "start": 101.04,
+ "end": 109.49,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 15,
+ "start": 109.49,
+ "end": 121.42,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 16,
+ "start": 121.42,
+ "end": 131.02,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 17,
+ "start": 131.02,
+ "end": 137.39,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 18,
+ "start": 137.39,
+ "end": 149.155,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 19,
+ "start": 149.32,
+ "end": 160.115,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 20,
+ "start": 162.25,
+ "end": 166.06,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 21,
+ "start": 166.35,
+ "end": 169.31,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 22,
+ "start": 169.31,
+ "end": 181.9,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 23,
+ "start": 181.9,
+ "end": 192.02,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 24,
+ "start": 192.02,
+ "end": 205.28,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 25,
+ "start": 205.28,
+ "end": 209.82,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 26,
+ "start": 209.82,
+ "end": 211.8,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 27,
+ "start": 211.8,
+ "end": 214.33,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 28,
+ "start": 214.5966666666667,
+ "end": 223.475,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 29,
+ "start": 223.66,
+ "end": 232.425,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 30,
+ "start": 232.68,
+ "end": 235.16,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 31,
+ "start": 235.16,
+ "end": 249.44,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 32,
+ "start": 249.44,
+ "end": 256.24,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 33,
+ "start": 256.24,
+ "end": 263.67499999999995,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 34,
+ "start": 263.85,
+ "end": 265.785,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 35,
+ "start": 266.15,
+ "end": 282.74,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 36,
+ "start": 282.74,
+ "end": 289.44,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 37,
+ "start": 289.74,
+ "end": 295.04,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 38,
+ "start": 295.18,
+ "end": 304.06,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 39,
+ "start": 304.06,
+ "end": 305.065,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 40,
+ "start": 305.54,
+ "end": 309.22,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 41,
+ "start": 309.22,
+ "end": 315.86,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 42,
+ "start": 315.86,
+ "end": 320.09,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 43,
+ "start": 320.09,
+ "end": 328.92499999999995,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 44,
+ "start": 329.14,
+ "end": 336.16,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 45,
+ "start": 336.16,
+ "end": 357.165,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 46,
+ "start": 357.74,
+ "end": 375.115,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 47,
+ "start": 375.6,
+ "end": 380.44,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 48,
+ "start": 380.44,
+ "end": 387.65,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 49,
+ "start": 387.65,
+ "end": 404.045,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 50,
+ "start": 404.09,
+ "end": 407.31,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 51,
+ "start": 407.31,
+ "end": 419.24,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 52,
+ "start": 419.24,
+ "end": 421.06,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 53,
+ "start": 421.06,
+ "end": 424.67,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 54,
+ "start": 424.67,
+ "end": 432.38,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 55,
+ "start": 432.38,
+ "end": 437.01000000000005,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 56,
+ "start": 437.36,
+ "end": 442.5,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 57,
+ "start": 442.5,
+ "end": 453.9950000000001,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 58,
+ "start": 454.24,
+ "end": 471.16,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 59,
+ "start": 471.16,
+ "end": 478.15,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 60,
+ "start": 478.15,
+ "end": 479.38,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 61,
+ "start": 479.38,
+ "end": 493.63,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 62,
+ "start": 492.79,
+ "end": 497.25,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 63,
+ "start": 497.25,
+ "end": 511.28,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 64,
+ "start": 511.28,
+ "end": 514.58,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 65,
+ "start": 514.58,
+ "end": 520.48,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 66,
+ "start": 520.48,
+ "end": 526.5699999999999,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 67,
+ "start": 526.79,
+ "end": 537.88,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 68,
+ "start": 537.88,
+ "end": 543.21,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 69,
+ "start": 543.21,
+ "end": 552.9125,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 70,
+ "start": 553.08,
+ "end": 555.98,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 71,
+ "start": 555.98,
+ "end": 562.86,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 72,
+ "start": 562.86,
+ "end": 566.96,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 73,
+ "start": 566.96,
+ "end": 576.03,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 74,
+ "start": 576.03,
+ "end": 579.39,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 75,
+ "start": 579.63,
+ "end": 588.38,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 76,
+ "start": 588.38,
+ "end": 590.73,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 77,
+ "start": 590.73,
+ "end": 592.93,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 78,
+ "start": 592.93,
+ "end": 598.7,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 79,
+ "start": 598.7,
+ "end": 618.735,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 80,
+ "start": 618.735,
+ "end": 621.9125,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 81,
+ "start": 622.235,
+ "end": 625.125,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 82,
+ "start": 625.125,
+ "end": 631.965,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 83,
+ "start": 631.965,
+ "end": 636.0583333333333,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 84,
+ "start": 636.6716666666666,
+ "end": 640.425,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 85,
+ "start": 640.425,
+ "end": 666.115,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 86,
+ "start": 666.115,
+ "end": 669.985,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 87,
+ "start": 669.985,
+ "end": 673.5179999999999,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 88,
+ "start": 673.655,
+ "end": 678.895,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 89,
+ "start": 678.895,
+ "end": 690.225,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 90,
+ "start": 690.225,
+ "end": 700.645,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 91,
+ "start": 700.8683333333332,
+ "end": 711.6250000000001,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 92,
+ "start": 711.955,
+ "end": 727.78,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 93,
+ "start": 728.08,
+ "end": 742.5,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 94,
+ "start": 742.5,
+ "end": 754.5166666666665,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 95,
+ "start": 754.99,
+ "end": 759.57,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 96,
+ "start": 759.57,
+ "end": 770.99,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 97,
+ "start": 770.78,
+ "end": 773.86,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 98,
+ "start": 773.86,
+ "end": 783.24,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 99,
+ "start": 783.34,
+ "end": 793.32,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 100,
+ "start": 793.32,
+ "end": 802.18,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 101,
+ "start": 802.18,
+ "end": 821.3149999999996,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 102,
+ "start": 825.11,
+ "end": 839.37,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 103,
+ "start": 839.37,
+ "end": 846.0189999999999,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 104,
+ "start": 846.614,
+ "end": 852.614,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 105,
+ "start": 852.614,
+ "end": 865.514,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 106,
+ "start": 865.514,
+ "end": 873.264,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 107,
+ "start": 873.264,
+ "end": 875.774,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 108,
+ "start": 875.774,
+ "end": 882.549,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 109,
+ "start": 882.704,
+ "end": 887.724,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 110,
+ "start": 887.724,
+ "end": 907.784,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 111,
+ "start": 907.784,
+ "end": 917.1840000000002,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 112,
+ "start": 917.814,
+ "end": 926.214,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 113,
+ "start": 926.214,
+ "end": 933.324,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 114,
+ "start": 933.574,
+ "end": 947.8740000000001,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 115,
+ "start": 947.694,
+ "end": 949.9440000000001,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 116,
+ "start": 950.444,
+ "end": 961.464,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 117,
+ "start": 961.464,
+ "end": 967.287,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 118,
+ "start": 967.287,
+ "end": 990.397,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 119,
+ "start": 990.397,
+ "end": 1008.947,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 120,
+ "start": 1008.947,
+ "end": 1013.5020000000002,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 121,
+ "start": 1014.277,
+ "end": 1018.157,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 122,
+ "start": 1018.157,
+ "end": 1034.277,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 123,
+ "start": 1034.737,
+ "end": 1040.247,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 124,
+ "start": 1040.247,
+ "end": 1050.477,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 125,
+ "start": 1050.807,
+ "end": 1067.0136666666667,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 126,
+ "start": 1067.1436666666666,
+ "end": 1079.547,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 127,
+ "start": 1079.547,
+ "end": 1089.553,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 128,
+ "start": 1089.553,
+ "end": 1103.853,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 129,
+ "start": 1103.853,
+ "end": 1113.713,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 130,
+ "start": 1114.353,
+ "end": 1132.493,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 131,
+ "start": 1132.493,
+ "end": 1140.753,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 132,
+ "start": 1140.753,
+ "end": 1145.053,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 133,
+ "start": 1145.053,
+ "end": 1146.113,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 134,
+ "start": 1146.113,
+ "end": 1160.2863333333332,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 135,
+ "start": 1159.953,
+ "end": 1179.908,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 136,
+ "start": 1180.353,
+ "end": 1188.0030000000002,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 137,
+ "start": 1187.893,
+ "end": 1189.6029999999998,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 138,
+ "start": 1189.843,
+ "end": 1198.113,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 139,
+ "start": 1198.113,
+ "end": 1203.4129999999998,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 140,
+ "start": 1203.803,
+ "end": 1211.018,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 141,
+ "start": 1211.018,
+ "end": 1227.818,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 142,
+ "start": 1227.818,
+ "end": 1231.768,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 143,
+ "start": 1231.768,
+ "end": 1236.148,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 144,
+ "start": 1236.148,
+ "end": 1246.798,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 145,
+ "start": 1246.798,
+ "end": 1259.316,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 146,
+ "start": 1259.5240000000001,
+ "end": 1268.1213333333335,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 147,
+ "start": 1268.1146666666668,
+ "end": 1272.048,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 148,
+ "start": 1272.048,
+ "end": 1281.268,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 149,
+ "start": 1281.268,
+ "end": 1289.578,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 150,
+ "start": 1289.578,
+ "end": 1298.978,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 151,
+ "start": 1298.978,
+ "end": 1312.6579999999994,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 152,
+ "start": 1315.558,
+ "end": 1322.858,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 153,
+ "start": 1322.858,
+ "end": 1327.348,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 154,
+ "start": 1327.348,
+ "end": 1335.368,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 155,
+ "start": 1335.368,
+ "end": 1347.788,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 156,
+ "start": 1347.788,
+ "end": 1355.213,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 157,
+ "start": 1355.668,
+ "end": 1358.588,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 158,
+ "start": 1358.588,
+ "end": 1363.768,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 159,
+ "start": 1363.768,
+ "end": 1374.718,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 160,
+ "start": 1374.718,
+ "end": 1376.588,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 161,
+ "start": 1376.588,
+ "end": 1392.828,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 162,
+ "start": 1392.828,
+ "end": 1402.868,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 163,
+ "start": 1402.868,
+ "end": 1411.603,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 164,
+ "start": 1411.868,
+ "end": 1420.638,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 165,
+ "start": 1420.638,
+ "end": 1425.938,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 166,
+ "start": 1426.348,
+ "end": 1431.998,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 167,
+ "start": 1431.998,
+ "end": 1434.568,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 168,
+ "start": 1434.568,
+ "end": 1440.468,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 169,
+ "start": 1440.468,
+ "end": 1442.538,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 170,
+ "start": 1442.238,
+ "end": 1442.868,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 171,
+ "start": 1442.5529999999999,
+ "end": 1444.158,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 172,
+ "start": 1444.158,
+ "end": 1445.348,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 173,
+ "start": 1445.588,
+ "end": 1447.738,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 174,
+ "start": 1446.898,
+ "end": 1460.488,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 175,
+ "start": 1460.488,
+ "end": 1476.628,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 176,
+ "start": 1476.628,
+ "end": 1496.888,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 177,
+ "start": 1496.888,
+ "end": 1506.688,
+ "speaker": "James Jacoby"
+ },
+ {
+ "id": 178,
+ "start": 1506.688,
+ "end": 1508.578,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 179,
+ "start": 1508.578,
+ "end": 1512.4879999999998,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 180,
+ "start": 1512.988,
+ "end": 1519.028,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 181,
+ "start": 1519.028,
+ "end": 1522.068,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 182,
+ "start": 1522.068,
+ "end": 1525.688,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 183,
+ "start": 1525.688,
+ "end": 1528.808,
+ "speaker": "Guy Rosen"
+ },
+ {
+ "id": 184,
+ "start": 1528.808,
+ "end": 1531.698,
+ "speaker": "Guy Rosen"
+ }
+ ]
+ }
+ }
+
+]
\ No newline at end of file
diff --git a/packages/Helpers/which-js-env/index.js b/packages/Helpers/which-js-env/index.js
new file mode 100644
index 0000000..166f332
--- /dev/null
+++ b/packages/Helpers/which-js-env/index.js
@@ -0,0 +1,61 @@
+/**
+ * Determines the enviroment Javascript is being run on
+ * @returns - 'browser', 'electron', 'cep'. where cep stands for adobe CEP panel
+ */
+function whichJsEnv() {
+ // Is browser Eg client side app
+ if (window.process === undefined) {
+ // console.debug('In browser Environment');
+ if (process.env.REACT_APP_NODE_ENV === 'demo') {
+ return 'demo';
+ }
+
+ return 'browser';
+ } else {
+ if (window.process.versions.electron !== undefined) {
+ // console.debug('In Electron Enviroment');
+ // console.info('In Electron v: ', window.process.versions.electron);
+ // console.info('Using chrome v: ', window.process.versions.chrome);
+ return 'electron';
+ }
+ else if (window.process.versions.cep !== undefined) {
+ // console.debug('In Adobe CEP Environment');
+ // console.info('In Chromium v: ', window.process.versions.chromium);
+ // console.info('In CEP (Adobe Common Extensibility Platform ) v: ', window.process.versions.cep);
+ // console.info('adjusting current working directory for Adobe CEP');
+ // console.log('Starting directory: ' + process.cwd());
+ try {
+ process.chdir(__dirname);
+ // process.chdir('..');
+ // console.log('New directory: ' + process.cwd());
+ }
+ catch (err) {
+ console.log('chdir: ' + err);
+ }
+
+ return 'cep';
+
+ }
+ else {
+ console.error("couldn't determine the js environment");
+
+ return undefined;
+ }
+ }
+}
+
+function isBrowser() {
+ return whichJsEnv() === 'browser';
+}
+
+function isElectron() {
+ return whichJsEnv() === 'electron';
+}
+
+function isCep() {
+ return whichJsEnv() === 'isCep';
+}
+
+export default whichJsEnv;
+
+export { isElectron, isBrowser, isCep, whichJsEnv };
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/TranscriptWrapper/index.js b/packages/components/TranscriptForm/TranscriptWrapper/index.js
new file mode 100644
index 0000000..be8b5a6
--- /dev/null
+++ b/packages/components/TranscriptForm/TranscriptWrapper/index.js
@@ -0,0 +1,48 @@
+import ApiWrapper from '../../../Helpers/ApiWrapper';
+
+const newTranscriptWrapper = async (form, projectId) => {
+
+ try {
+ console.log('inside try');
+
+ const tester = await ApiWrapper.createTranscript(projectId, form)
+ .then(response => {
+ if (response.status === true) {
+ console.log('YAY SUCCESS');
+ const tempObj = {
+ success: true,
+ response: response,
+ transcriptId: response.transcriptId,
+ transcript: response.transcript
+ };
+
+ console.log(tempObj);
+
+ return (tempObj);
+
+ } else if (response.status === false) {
+ console.log('BOO');
+ const tempObj = {
+ success: false,
+ };
+
+ return tempObj;
+ }
+ }).catch(() => {
+ const tempObj = {
+ success: false
+ };
+
+ console.log(tempObj);
+
+ return tempObj;
+ });
+
+ return tester;
+
+ } catch (e) {
+ console.error('error submitting:::', e);
+ }
+};
+
+export default newTranscriptWrapper;
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index 312e989..e939d94 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -2,13 +2,32 @@ import React, { useState } from 'react';
import Form from 'react-bootstrap/Form';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
+import TranscriptWrapper from './TranscriptWrapper/index.js';
+import CustomAlert from './CustomAlert';
const TranscriptForm = ({ ...props }) => {
const [ title, setTitle ] = useState(props.title);
const [ description, setDescription ] = useState(props.description);
const [ isValidated, setValidationStatus ] = useState(false);
- var [ formData, setFormData ] = useState({});
+ const [ formData, setFormData ] = useState({});
+ const [ isUploading, setIsUploading ] = useState(false);
+ const [ uploadCompleted, setUploadCompletion ] = useState(null);
+ const [ redirect, setShouldRedirect ] = useState(false);
+ const [ transcriptId, setNewTranscriptId ] = useState(null);
+ const [ notificationMessage, updateNotificationMessage ] = useState(null);
+
+ const setNotificationMessage = () => {
+ if (!uploadCompleted) {
+ const alert = There was an error trying to create this transcript on the server }
+ />;
+ updateNotificationMessage(alert);
+ }
+ };
const handleTitleChange = event => {
setTitle(event.target.value);
@@ -48,17 +67,40 @@ const TranscriptForm = ({ ...props }) => {
setFormData(tmpObj);
props.handleSaveForm(formData);
props.handleSubmitForm(formData);
+
+ await TranscriptWrapper(formData, props.projectId)
+ .then((response) => {
+ console.log('inside then');
+ if (response.success === true) {
+ console.log('inside where success is true');
+ setIsUploading(false);
+ setUploadCompletion(true);
+ setShouldRedirect(true);
+ setNewTranscriptId(response.transcriptId);
+ props.handleSaveForm(response.transcript);
+
+ return;
+ } else {
+ console.log('response.success not true');
+ setIsUploading(false);
+ setShouldRedirect(false);
+ setNotificationMessage();
+
+ return;
+ }
+ });
};
- const handleSubmit = (event) => {
+ const handleSubmit = async (event) => {
const form = event.currentTarget;
event.preventDefault();
event.stopPropagation();
- return (!form.checkValidity()) ? setValidationStatus(true) : sendRequest();
+ return (!form.checkValidity()) ? setValidationStatus(true) : await sendRequest();
};
- return (
+ return (<>
+ {/* { notificationMessage } */}
+ >
);
};
From 610cfda81347cbeb3747e8f9ef76d1e65eb3e760 Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Tue, 10 Sep 2019 11:22:40 +0100
Subject: [PATCH 04/11] Refactors TranscriptItemForm to remove API, reduce
props
---
.../ApiWrapper/DemoAPIWrapper/index.js | 343 -
packages/Helpers/ApiWrapper/index.js | 30 -
packages/Helpers/db/annotations.json | 1 -
packages/Helpers/db/labels.json | 65 -
packages/Helpers/db/paperedits.json | 1 -
packages/Helpers/db/projects.json | 12 -
packages/Helpers/db/transcripts.json | 135603 ---------------
packages/Helpers/which-js-env/index.js | 61 -
.../TranscriptForm/CustomAlert/index.js | 2 +-
.../TranscriptForm/TranscriptWrapper/index.js | 48 -
packages/components/TranscriptForm/index.js | 109 +-
.../TranscriptForm/stories/index.stories.js | 6 +-
12 files changed, 55 insertions(+), 136226 deletions(-)
delete mode 100644 packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
delete mode 100644 packages/Helpers/ApiWrapper/index.js
delete mode 100644 packages/Helpers/db/annotations.json
delete mode 100644 packages/Helpers/db/labels.json
delete mode 100644 packages/Helpers/db/paperedits.json
delete mode 100644 packages/Helpers/db/projects.json
delete mode 100644 packages/Helpers/db/transcripts.json
delete mode 100644 packages/Helpers/which-js-env/index.js
delete mode 100644 packages/components/TranscriptForm/TranscriptWrapper/index.js
diff --git a/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js b/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
deleted file mode 100644
index 95d798b..0000000
--- a/packages/Helpers/ApiWrapper/DemoAPIWrapper/index.js
+++ /dev/null
@@ -1,343 +0,0 @@
-class DemoApiWrapper {
- /**
- * Projects
- */
- // eslint-disable-next-line class-methods-use-this
- async getAllProjects() {
- const response = await fetch('db/projects.json');
- const projects = await response.json();
- let results = 0;
- if (projects.length !== 0) {
- results = projects.map((project) => {
- project.id = project._id;
-
- return project;
- });
-
- return results;
- }
- }
-
- // eslint-disable-next-line class-methods-use-this
- async getProject(id) {
- const response = await fetch('db/projects.json');
- const projects = await response.json();
- const project = projects.find((project) => {
- return project._id === id;
- });
-
- return { status: 'ok', project: project };
- }
-
- async createProject(data) {
- alert('Not implemented in demo mode');
-
- return { status: 'false' };
- }
-
- async updateProject(id, data) {
- alert('Not implemented in demo mode');
-
- return { status: 'false' };
- }
-
- async deleteProject(id) {
- alert('Not implemented in demo mode');
-
- return { ok: false, status: 'false', project: {} };
- }
-
- /**
- * Transcripts
- */
- // eslint-disable-next-line class-methods-use-this
- async getTranscripts(projectId) {
- const response = await fetch('db/transcripts.json');
- let transcripts = await response.json();
- transcripts = transcripts.filter((transcript) => {
- return transcript.projectId === projectId;
- });
-
- transcripts = transcripts.map((transcript) => {
- transcript.id = transcript._id;
-
- return transcript;
- });
-
- return { transcripts: transcripts };
- }
-
- async createTranscript(projectId, formData, data) {
- alert('Not implemented in demo mode');
-
- return { status: 'false' };
- }
-
- async getTranscript(projectId, transcriptId, queryParamsOptions) {
- const response = await fetch('db/transcripts.json');
- const transcripts = await response.json();
- const transcript = transcripts.find((transcript) => {
- return transcript._id === transcriptId;
- });
-
- transcript.id = transcript._id;
- const resProject = await this.getProject(projectId);
- transcript.projectTitle = resProject.project.title;
- transcript.transcriptTitle = transcript.title;
-
- return transcript;
- }
-
- async updateTranscript(projectId, transcriptId, queryParamsOptions, data) {
- alert('Not implemented in demo mode');
-
- return { ok: false };
- }
-
- async deleteTranscript(projectId, transcriptId) {
- alert('Not implemented in demo mode');
-
- return { ok: false, status: 'false' };
- }
-
- /**
- * Annotations
- */
- // eslint-disable-next-line class-methods-use-this
- async getAllAnnotations(projectId, transcriptId) {
-
- const response = await fetch('db/annotations.json');
- let annotations = await response.json();
-
- annotations = annotations.filter((annotation) => {
- return annotation.transcriptId === transcriptId;
- });
-
- if (annotations) {
- annotations = annotations
- .map((annotation) => {
- annotation.id = annotation._id;
-
- return annotation;
- });
- } else {
- annotations = [];
- }
-
- return { annotations };
- }
-
- // not used
- async getAnnotation(projectId, transcriptId, annotationId) {
- const response = await fetch('db/annotations.json');
- const annotations = await response.json();
- const annotation = annotations[0];
-
- return { annotation };
- }
-
- async createAnnotation(projectId, transcriptId, data) {
- alert('Not implemented in demo mode');
-
- return { 'ok': false, status: 'false', annotation: [] };
- }
-
- async deleteAnnotation(projectId, transcriptId, annotationId) {
- alert('Not implemented in demo mode');
-
- return { 'ok': false, status: 'false' };
- }
-
- /**
- * Labels
- */
-
- // Get All Labels
- // eslint-disable-next-line class-methods-use-this
- async getAllLabels(projectId) {
- const response = await fetch('db/labels.json');
- let labels = await response.json();
- const defaultLabel = labels[0];
- labels = labels.filter((label) => {
- return label.projectId === projectId;
- });
- labels.unshift(defaultLabel);
-
- if (!labels) {
- labels = [];
- }
-
- return { ok: true, status: 'ok', labels };
- }
- // Get Label - not used
- async getLabel(projectId, labelId) {
- const response = await fetch('db/labels.json');
- const labels = await response.json();
- const label = labels[0];
-
- return { ok: true, status: 'ok', label };
- }
-
- // Create Label
- async createLabel(projectId, data) {
- alert('Not implemented in demo mode');
-
- return ({ ok: false, status: 'false' });
- }
-
- // Update Label
- async updateLabel(projectId, labelId, data) {
- alert('Not implemented in demo mode');
-
- return { ok: false, status: 'false' };
- }
- // Delete Label
- async deleteLabel(projectId, labelId) {
- alert('Not implemented in demo mode');
-
- return { status: 'false' };
- }
- /**
- * PaperEdits
- */
- // eslint-disable-next-line class-methods-use-this
- async getAllPaperEdits(projectId) {
- const response = await fetch('db/paperedits.json');
- let paperedits = await response.json();
- paperedits = paperedits.filter((paperedit) => {
- return paperedit.projectId === projectId;
- });
- const data = {};
- data.paperedits = [];
- data.paperedits = paperedits;
- if (data.paperedits) {
- data.paperedits = data.paperedits
- .map((paperedit) => {
- paperedit.id = paperedit._id;
-
- return paperedit;
- });
- }
-
- return data.paperedits;
- }
-
- // eslint-disable-next-line class-methods-use-this
- async getPaperEdit(projectId, id) {
- const paperEditId = id;
- const response = await fetch('db/paperedits.json');
- const paperedits = await response.json();
- const paperEdit = paperedits.find((paperedit) => {
- return paperedit.id === paperEditId;
- });
- if (!paperEdit) {
- const err = new Error('No paper edit found');
- err.statusCode = 404;
- }
-
- return { ok: true, status: 'ok', programmeScript: paperEdit };
- }
-
- async createPaperEdit(projectId, data) {
- alert('Not implemented in demo mode');
-
- return { ok: false, status: 'false' };
- }
-
- async updatePaperEdit(projectId, id, data) {
- alert('Not implemented in demo mode');
-
- return { ok: true, status: 'false' };
- }
-
- async deletePaperEdit(projectId, id) {
- alert('Not implemented in demo mode');
-
- return { ok: false, status: 'false' };
- }
-
- /**
- * Helper SDK function to avoid making multiple calls client side when in Annotated Transcript view
- * Transcript + Annotations for that transcript + Labels for the project
- */
- async get_TranscriptLabelsAnnotations(projectId, transcriptId) {
- // GET Transcripts
- const transcriptResult = await this.getTranscript(projectId, transcriptId);
- // GET Labels for Project <-- or separate request in label component
- const labelsResults = await this.getAllLabels(projectId, transcriptId);
- // GET Annotation for Transcript
- const annotationsResult = await this.getAllAnnotations(projectId, transcriptId);
-
- // Combine results
- const results = {
- transcriptId: transcriptId,
- projectId: projectId,
- projectTitle: transcriptResult.projectTitle,
- transcriptTitle: transcriptResult.transcriptTitle,
- url: transcriptResult.url,
- labels: labelsResults.labels,
- transcript: transcriptResult.transcript,
- annotations: annotationsResult.annotations
- };
-
- return results;
- }
-
- // Helper function to get program script & associated transcript
- // https://flaviocopes.com/javascript-async-await-array-map/
- async get_ProgrammeScriptAndTranscripts(projectId, papereditId) { // // get transcripts list, this contain id, title, description only
- const transcriptsResult = await this.getTranscripts(projectId);
- // use that list of ids to loop through and get json payload for each individual transcript
- // as separate request
-
- const transcriptsJson = await Promise.all(transcriptsResult.transcripts.map((transcript) => {
- const transcriptTmp = this.getTranscript(projectId, transcript.id);
-
- return transcriptTmp;
- }));
-
- const annotationsJson = await Promise.all(transcriptsResult.transcripts.map((transcript) => {
- const annotations = this.getAllAnnotations(projectId, transcript.id);
-
- return annotations;
- }));
-
- // add annotations to transcript
- transcriptsJson.forEach((tr) => {
- // get annotations for transcript
- const currentAnnotationsSet = annotationsJson.find((a) => {
-
- return a.transcriptId === tr.id;
- });
- // if there are annotations for this transcript add them to it
- if (currentAnnotationsSet) {
- tr.annotations = currentAnnotationsSet.annotations;
-
- return;
- }
- else {
- tr.annotations = [];
- }
- });
-
- // getting program script for paperEdit
- const paperEditResult = await this.getPaperEdit(projectId, papereditId);
- // getting project info - eg to get tile and description
- const projectResult = await this.getProject(projectId);
- // Get labels
- const labelsResults = await this.getAllLabels(projectId);
- // package results
- const results = {
- programmeScript: paperEditResult.programmeScript,
- project: projectResult.project,
- // each transcript contains its annotations
- transcripts: transcriptsJson,
- labels: labelsResults.labels
- };
-
- return results;
- }
-}
-
-// module.exports = DemoApiWrapper;
-export default DemoApiWrapper;
\ No newline at end of file
diff --git a/packages/Helpers/ApiWrapper/index.js b/packages/Helpers/ApiWrapper/index.js
deleted file mode 100644
index 3b2695e..0000000
--- a/packages/Helpers/ApiWrapper/index.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// import ApiWrapper from './ApiWrapper';
-import DemoApiWrapper from './DemoAPIWrapper/index.js';
-import whichJsEnv from '../which-js-env';
-
-const jsENV = whichJsEnv();
-
-export default ( () => {
-
- if (jsENV === 'demo') {
- console.log('API Wrapper demo time!');
- const demoApiWrapper = new DemoApiWrapper();
- Object.freeze(demoApiWrapper);
-
- return demoApiWrapper;
- }
- if (jsENV === 'browser') {
- // const apiWrapper = new ApiWrapper();
- // Object.freeze(apiWrapper);
-
- // return apiWrapper;
- console.log('nope');
- }
- if (jsENV === 'electron') {
- const ElectronWrapper = window.ElectronWrapper;
- const electronWrapper = new ElectronWrapper();
- Object.freeze(electronWrapper);
-
- return electronWrapper;
- }
-})();
\ No newline at end of file
diff --git a/packages/Helpers/db/annotations.json b/packages/Helpers/db/annotations.json
deleted file mode 100644
index 1323623..0000000
--- a/packages/Helpers/db/annotations.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":246.58,"end":249.34,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"example note on this annotation","_id":"72d4ac9d0f16481eac83946a0384d12d","id":"72d4ac9d0f16481eac83946a0384d12d"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":585.66,"end":596.03,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"4de867b1f8694235b01f64e4b5628cc1"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":13.86,"end":19.58,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"ac440b482b5842a2aa36050ed74cc132"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"29cjw29xii80000ird74yb19swa","start":19.3,"end":24.3,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"9d78e7fa69274497956f2efbd39351c6"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":116.26,"end":122.62,"labelId":"default","note":"","_id":"c75da56b01aa4f2ab571abcec8b9da92"},{"projectId":"10046281c4ad4938b7d0ae6fa9899bec","transcriptId":"1000cjw29xii80000ird74yb19swa","start":9.48,"end":13.72,"labelId":"default","note":"","_id":"00dd43dbcdd8419e9177784158aac9fa"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":109.41,"end":119.2,"labelId":"default","note":"","_id":"1de06f64ea5a4dd4a7f4b68dfb917d53"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":366.26,"end":368.95,"labelId":"cb10e79c20af4a7f8b3fe8a4c789d43e","note":"","_id":"ef8a71a6ec684c9295b97ded19ebd383"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":55.36,"end":66.47,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"5c48fb82cfa9416baf480b5bab432521"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":89.86,"end":101.84,"labelId":"920fa8f97acc43b5bc0694b2e5648080","note":"","_id":"139d1ecc3c1c496892955cab9d8d0714"},{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","transcriptId":"19cjw29xii80000ird74yb19swa","start":86.66,"end":100.87,"labelId":"db055983fabd40ef84dc35fbd3dfb40b","note":"","_id":"2a3e18369d9f497289730ad291ba34b8"}]
\ No newline at end of file
diff --git a/packages/Helpers/db/labels.json b/packages/Helpers/db/labels.json
deleted file mode 100644
index 9e6ff49..0000000
--- a/packages/Helpers/db/labels.json
+++ /dev/null
@@ -1,65 +0,0 @@
-[
- {
- "_id": "default",
- "id": "default",
- "projectId": "default",
- "value": "default",
- "label": "Default",
- "color": "orange",
- "description": "A default label"
- },
- {
- "value": "darkblue",
- "label": "Computer vision",
- "color": "darkblue",
- "description": "Talking about computer vision in robotics",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "_id": "db055983fabd40ef84dc35fbd3dfb40b",
- "id": "db055983fabd40ef84dc35fbd3dfb40b"
- },
- {
- "value": "greenyellow",
- "label": "Bacteria",
- "color": "greenyellow",
- "description": "Talking about Bacteria and technology",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "_id": "920fa8f97acc43b5bc0694b2e5648080",
- "id": "920fa8f97acc43b5bc0694b2e5648080"
- },
- {
- "value": "deepskyblue",
- "label": "Test",
- "color": "deepskyblue",
- "description": "Test blue",
- "projectId": "54bae8166afc4b379de5d4e10b77218d",
- "_id": "64b071fefa394b5b968c56f8b14149b7",
- "id": "64b071fefa394b5b968c56f8b14149b7"
- },
- {
- "value": "crimson",
- "label": "Robotics",
- "color": "crimson",
- "description": "when they speak about robotics",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "_id": "cb10e79c20af4a7f8b3fe8a4c789d43e",
- "id": "cb10e79c20af4a7f8b3fe8a4c789d43e"
- },
- {
- "value": "yellow",
- "label": "D",
- "color": "yellow",
- "description": "",
- "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
- "_id": "eab94271d5894c3a8800ee59cc03d7be",
- "id": "eab94271d5894c3a8800ee59cc03d7be"
- },
- {
- "value": "yellow",
- "label": "Test",
- "color": "yellow",
- "description": "",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "_id": "bddffe16cf024b2dbe74be4d64eb0ed4",
- "id": "bddffe16cf024b2dbe74be4d64eb0ed4"
- }
-]
diff --git a/packages/Helpers/db/paperedits.json b/packages/Helpers/db/paperedits.json
deleted file mode 100644
index b6629b9..0000000
--- a/packages/Helpers/db/paperedits.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"projectId":"94346281c4ad4938b7d0ae6fa9899bec","title":"Example programme script","description":"An example programme script","elements":[{"id":"cjy1gxwtn00003h5v51deh5li","index":4,"type":"title","text":"Introduction"},{"id":"cjy3hbk6100003h5vjhnkfp9e","index":7,"type":"paper-cut","start":55.51,"end":64.47,"speaker":"TBC 11","words":[{"start":"55.51","end":"55.93","text":"hing ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"55.93","end":"56.01","text":"the ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"56.01","end":"56.92","text":"theatrics ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"56.92","end":"57.01","text":"of ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.01","end":"57.25","text":"this ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.25","end":"57.52","text":"robe ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"57.53","end":"58.02","text":"that ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"58.88","end":"59.84","text":"struggle ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"59.89","end":"60.08","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"60.08","end":"60.71","text":"cry ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"60.71","end":"61.07","text":"out ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"61.86","end":"61.9","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"62.77","end":"63.06","text":"and ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.25","end":"63.53","text":"after ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.53","end":"63.57","text":"a ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.57","end":"63.73","text":"few ","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"63.73","end":"64.47","text":"second","speaker":"TBC 11","transcriptId":"19cjw29xii80000ird74yb19swa"}],"transcriptId":"19cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gy4gi00013h5v0vcrule9","index":5,"type":"voice-over","text":"Some voice over / links notes"},{"id":"cjy1gwn4i00023h5vavkq9o55","index":2,"type":"paper-cut","start":317.32,"end":320.44,"speaker":"TBC 38","words":[{"start":"317.32","end":"318","text":"enzymes ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"317.98","end":"318.18","text":"are ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"318.14","end":"318.52","text":"simply ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"318.54","end":"319.14","text":"compounds ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.12","end":"319.3","text":"that ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.26","end":"319.58","text":"exist ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.58","end":"319.74","text":"in ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.72","end":"319.9","text":"all ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"319.88","end":"320.22","text":"living ","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"},{"start":"320.2","end":"320.44","text":"things.","speaker":"TBC 38","transcriptId":"29cjw29xii80000ird74yb19swa"}],"transcriptId":"29cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gwgyn00013h5vsfyqrfik","index":1,"type":"paper-cut","start":575.49,"end":583.79,"speaker":"TBC 115","words":[{"start":"575.49","end":"575.72","text":"it's ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"575.74","end":"575.97","text":"part ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"575.97","end":"576.07","text":"of ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.07","end":"576.12","text":"a ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.12","end":"576.48","text":"large ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.48","end":"576.77","text":"body ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.77","end":"576.88","text":"of ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"576.88","end":"577.56","text":"research ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"577.56","end":"577.9","text":"that ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.02","end":"578.25","text":"is ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.25","end":"578.61","text":"starting ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.61","end":"578.73","text":"to ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"578.76","end":"579.2","text":"indicate ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.2","end":"579.3","text":"that ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.3","end":"579.4","text":"there ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.4","end":"579.62","text":"may ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.62","end":"579.84","text":"be ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.87","end":"579.95","text":"a ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"579.95","end":"580.53","text":"connection ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"580.53","end":"580.87","text":"between ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"580.87","end":"581.3","text":"people's ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.3","end":"581.81","text":"tendencies ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.81","end":"581.9","text":"for ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"581.9","end":"582.61","text":"empathy ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"582.86","end":"582.99","text":"and ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"583.03","end":"583.15","text":"their ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"},{"start":"583.15","end":"583.79","text":"behaviour ","speaker":"TBC 115","transcriptId":"19cjw29xii80000ird74yb19swa"}],"transcriptId":"19cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy1gyhrx00023h5vyrhw2kgh","index":6,"type":"note","text":"some notes for the edit"},{"id":"cjy1gxazs00033h5vr5niy7y4","index":3,"type":"paper-cut","start":153.46,"end":162.24,"speaker":"TBC 31","words":[{"start":"153.46","end":"153.6","text":"I ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.58","end":"153.78","text":"read ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.76","end":"153.9","text":"when ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.88","end":"153.96","text":"I ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"153.94","end":"154.1","text":"was ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.06","end":"154.14","text":"a ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.16","end":"154.58","text":"teenager ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"154.88","end":"155.38","text":"and ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.34","end":"155.5","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.5","end":"155.86","text":"central ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"155.84","end":"156.18","text":"idea ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.16","end":"156.28","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.28","end":"156.44","text":"this ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"156.46","end":"156.7","text":"book, ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.08","end":"157.46","text":"one ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.42","end":"157.56","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.54","end":"157.68","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"157.64","end":"158.06","text":"essential ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.02","end":"158.32","text":"ideas ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.32","end":"158.46","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.42","end":"158.58","text":"this ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"158.58","end":"158.82","text":"book ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"159.32","end":"159.5","text":"is ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"159.52","end":"159.68","text":"that ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.08","end":"160.38","text":"you ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.36","end":"160.56","text":"can ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.54","end":"160.98","text":"change ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"160.94","end":"161.18","text":"the ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.16","end":"161.68","text":"purpose ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.64","end":"161.82","text":"of ","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"},{"start":"161.82","end":"162.24","text":"things","speaker":"TBC 31","transcriptId":"39cjw29xii80000ird74yb19swa"}],"transcriptId":"39cjw29xii80000ird74yb19swa","labelId":[]}],"created":"Sat Jul 13 2019 12:48:53 GMT+0100 (BST)","_id":"c0dbe6136424483a887b28bb51936ade","id":"c0dbe6136424483a887b28bb51936ade"},{"projectId":"10046281c4ad4938b7d0ae6fa9899bec","title":"Test","description":"","elements":[{"id":"cjy6do3x600003h5v1ewqq9ni","index":1,"type":"paper-cut","start":25.43,"end":35.64,"speaker":"Soleio Cuervo","words":[{"start":"25.43","end":"25.57","text":"And ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.57","end":"25.68","text":"so ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.68","end":"25.76","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"25.76","end":"26.05","text":"reached ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"26.05","end":"27.17","text":"out, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.17","end":"27.59","text":"because ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.59","end":"27.74","text":"the ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.74","end":"27.93","text":"web ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"27.93","end":"28.15","text":"being ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.15","end":"28.22","text":"the ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.22","end":"28.59","text":"web ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.59","end":"28.73","text":"as ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.73","end":"28.8","text":"it ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.8","end":"28.97","text":"was ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"28.97","end":"29.18","text":"back ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.18","end":"29.48","text":"then, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.486666666666665","end":"29.756666666666664","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"29.793333333333333","end":"30.03333333333333","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.1","end":"30.31","text":"reached ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.25","end":"30.490000000000002","text":"out ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.4","end":"30.67","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.55","end":"30.85","text":"they ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.700000000000003","end":"31.03","text":"asked, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"30.85","end":"31.21","text":"“Hey, ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.185000000000002","end":"31.445","text":"you ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.52","end":"31.68","text":"live ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.68","end":"31.75","text":"in ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.75","end":"31.9","text":"San ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"31.9","end":"32.64","text":"Francisco. ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.64","end":"32.82","text":"Would ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.82","end":"32.89","text":"you ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.89","end":"32.98","text":"be ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"32.98","end":"33.26","text":"interested ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.26","end":"33.33","text":"in ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.33","end":"33.52","text":"coming ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.52","end":"33.63","text":"down ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.63","end":"33.7","text":"to ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.803333333333335","end":"33.92","text":"Palo ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"33.97666666666667","end":"34.14","text":"Alto ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.15","end":"34.36","text":"and ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.36","end":"34.64","text":"meeting ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.64","end":"34.77","text":"with ","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"},{"start":"34.77","end":"35.64","text":"us?”","speaker":"Soleio Cuervo","transcriptId":"1000cjw29xii80000ird74yb19swa"}],"transcriptId":"1000cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dod0500013h5v3302rr6f","index":2,"type":"paper-cut","start":23.71,"end":33.39,"speaker":"Nathan Gleicher","words":[{"start":"23.71","end":"23.85","text":"d ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"23.85","end":"23.93","text":"how ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"23.93","end":"24","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24","end":"24.07","text":"we ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.07","end":"24.22","text":"make ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.22","end":"24.29","text":"it ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.29","end":"24.48","text":"much ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"24.48","end":"25.4","text":"harder? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"25.4","end":"26.31","text":"And ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.31","end":"26.58","text":"how ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.58","end":"26.91","text":"actually ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.91","end":"26.99","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"26.99","end":"27.05","text":"you ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"27.05","end":"27.22","text":"do ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"27.22","end":"29.8","text":"that? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"28.32","end":"30.46","text":"So ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"29.635000000000005","end":"31.004999999999995","text":"two ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"30.95","end":"31.55","text":"pieces, ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.55","end":"31.81","text":"right? ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.81","end":"31.9","text":"The ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"31.9","end":"32.45","text":"first ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"32.45","end":"33.09","text":"is ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"},{"start":"33.09","end":"33.39","text":"we ","speaker":"Nathan Gleicher","transcriptId":"1001cjw29xii80000ird74yb19swa"}],"transcriptId":"1001cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dojc400023h5vk6kmz0cg","index":3,"type":"paper-cut","start":21.53,"end":31.87,"speaker":"Naomi Gleit","words":[{"start":"21.53","end":"21.66","text":"I’ve ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.66","end":"21.78","text":"been ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.78","end":"21.91","text":"at ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"21.91","end":"22.37","text":"Facebook, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.37","end":"22.61","text":"just ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.61","end":"22.76","text":"as ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.76","end":"22.96","text":"some ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"22.96","end":"23.54","text":"background, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"23.54","end":"24.05","text":"for ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.05","end":"24.35","text":"almost ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.35","end":"24.7","text":"13 ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"24.7","end":"26.16","text":"years. ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.16","end":"26.29","text":"I ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.29","end":"26.54","text":"started ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.54","end":"26.64","text":"when ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.64","end":"26.69","text":"I ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"26.69","end":"26.82","text":"was ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.095000000000002","end":"27.2825","text":"21 ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.500000000000004","end":"27.744999999999997","text":"in ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"27.905","end":"28.207500000000003","text":"2005, ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.31","end":"28.67","text":"and ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.67","end":"28.85","text":"there ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"28.85","end":"29.06","text":"have ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.06","end":"29.39","text":"been ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.39","end":"29.51","text":"a ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.51","end":"29.92","text":"lot ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"29.92","end":"31.04","text":"of ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.04","end":"31.31","text":"ups ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.31","end":"31.41","text":"and ","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"},{"start":"31.41","end":"31.87","text":"do","speaker":"Naomi Gleit","transcriptId":"1002cjw29xii80000ird74yb19swa"}],"transcriptId":"1002cjw29xii80000ird74yb19swa","labelId":[]},{"id":"cjy6dor2c00033h5vb6eegd7y","index":4,"type":"paper-cut","start":15.84,"end":24.78,"speaker":"Guy Rosen","words":[{"start":"15.84","end":"16.71","text":"So ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"16.71","end":"16.95","text":"let ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"16.95","end":"17.08","text":"me ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.08","end":"17.28","text":"step ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.28","end":"17.56","text":"back ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.56","end":"17.65","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"17.65","end":"18.17","text":"explain ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.17","end":"18.81","text":"how ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.81","end":"18.95","text":"my ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"18.95","end":"19.19","text":"role ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"19.310000000000002","end":"19.675","text":"works. ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"19.67","end":"20.16","text":"So ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"20.03","end":"20.645","text":"I’m ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"20.39","end":"21.13","text":"responsible ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.13","end":"21.59","text":"overall ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.59","end":"21.74","text":"for ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"21.74","end":"22.04","text":"the ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.04","end":"22.39","text":"safety ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.39","end":"22.49","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.49","end":"22.89","text":"security ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"22.89","end":"23.22","text":"work ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.22","end":"23.37","text":"at ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.37","end":"24.24","text":"Facebook ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"23.93","end":"24.38","text":"and ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"24.155","end":"24.58","text":"I ","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"},{"start":"24.38","end":"24.78","text":"appr","speaker":"Guy Rosen","transcriptId":"1003cjw29xii80000ird74yb19swa"}],"transcriptId":"1003cjw29xii80000ird74yb19swa","labelId":[]}],"created":"Sat Jul 13 2019 18:30:23 GMT+0100 (BST)","_id":"86e938c468de4b0cb873c6e97a3a25f8","id":"86e938c468de4b0cb873c6e97a3a25f8"}]
\ No newline at end of file
diff --git a/packages/Helpers/db/projects.json b/packages/Helpers/db/projects.json
deleted file mode 100644
index ea0a73d..0000000
--- a/packages/Helpers/db/projects.json
+++ /dev/null
@@ -1,12 +0,0 @@
-[
- {
- "title": "Ted Talks",
- "description": "Ted Talks - sample project",
- "_id": "94346281c4ad4938b7d0ae6fa9899bec"
- },
- {
- "title": "PBS Frontline - The Facebook Dilemma",
- "description": "Interviews from PBS Frontline documentary, The Facebook Dilemma - sample project.",
- "_id": "10046281c4ad4938b7d0ae6fa9899bec"
- }
-]
diff --git a/packages/Helpers/db/transcripts.json b/packages/Helpers/db/transcripts.json
deleted file mode 100644
index 428bf77..0000000
--- a/packages/Helpers/db/transcripts.json
+++ /dev/null
@@ -1,135603 +0,0 @@
-[
- {
- "_id": "19cjw29xii80000ird74yb19swa",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "title": "Kate Darling Ted Talk",
- "description": "Ted Talk by Kate Darling ",
- "url": "https://download.ted.com/talks/KateDarling_2018S-950k.mp4",
- "clipName": "KateDarling_2018S-950k.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "id": 0,
- "start": 13.02,
- "end": 13.17,
- "text": "There"
- },
- {
- "id": 1,
- "start": 13.17,
- "end": 13.38,
- "text": "is"
- },
- {
- "id": 2,
- "start": 13.38,
- "end": 13.44,
- "text": "a"
- },
- {
- "id": 3,
- "start": 13.44,
- "end": 13.86,
- "text": "day."
- },
- {
- "id": 4,
- "start": 13.86,
- "end": 14.13,
- "text": "About"
- },
- {
- "id": 5,
- "start": 14.13,
- "end": 14.38,
- "text": "ten"
- },
- {
- "id": 6,
- "start": 14.38,
- "end": 14.61,
- "text": "years"
- },
- {
- "id": 7,
- "start": 14.61,
- "end": 15.15,
- "text": "ago"
- },
- {
- "id": 8,
- "start": 15.47,
- "end": 15.59,
- "text": "when"
- },
- {
- "id": 9,
- "start": 15.68,
- "end": 15.84,
- "text": "I"
- },
- {
- "id": 10,
- "start": 15.86,
- "end": 16.19,
- "text": "asked"
- },
- {
- "id": 11,
- "start": 16.19,
- "end": 16.28,
- "text": "a"
- },
- {
- "id": 12,
- "start": 16.28,
- "end": 16.65,
- "text": "friend"
- },
- {
- "id": 13,
- "start": 16.65,
- "end": 16.74,
- "text": "to"
- },
- {
- "id": 14,
- "start": 16.74,
- "end": 17.2,
- "text": "hold"
- },
- {
- "id": 15,
- "start": 17.23,
- "end": 17.33,
- "text": "a"
- },
- {
- "id": 16,
- "start": 17.33,
- "end": 17.63,
- "text": "baby"
- },
- {
- "id": 17,
- "start": 17.63,
- "end": 18.14,
- "text": "dinosaur"
- },
- {
- "id": 18,
- "start": 18.14,
- "end": 18.59,
- "text": "robot"
- },
- {
- "id": 19,
- "start": 18.72,
- "end": 19.17,
- "text": "upside"
- },
- {
- "id": 20,
- "start": 19.17,
- "end": 19.58,
- "text": "down."
- },
- {
- "id": 21,
- "start": 21.83,
- "end": 21.9,
- "text": "It"
- },
- {
- "id": 22,
- "start": 21.95,
- "end": 22.09,
- "text": "was"
- },
- {
- "id": 23,
- "start": 22.1,
- "end": 22.22,
- "text": "a"
- },
- {
- "id": 24,
- "start": 22.23,
- "end": 22.68,
- "text": "toy"
- },
- {
- "id": 25,
- "start": 22.72,
- "end": 22.99,
- "text": "called"
- },
- {
- "id": 26,
- "start": 23.03,
- "end": 23.39,
- "text": "plea."
- },
- {
- "id": 27,
- "start": 23.45,
- "end": 23.82,
- "text": "All"
- },
- {
- "id": 28,
- "start": 24.2,
- "end": 24.6,
- "text": "that"
- },
- {
- "id": 29,
- "start": 24.65,
- "end": 24.84,
- "text": "he'd"
- },
- {
- "id": 30,
- "start": 24.86,
- "end": 25.3,
- "text": "ordered"
- },
- {
- "id": 31,
- "start": 25.3,
- "end": 25.42,
- "text": "and"
- },
- {
- "id": 32,
- "start": 25.42,
- "end": 25.49,
- "text": "I"
- },
- {
- "id": 33,
- "start": 25.49,
- "end": 25.66,
- "text": "was"
- },
- {
- "id": 34,
- "start": 25.66,
- "end": 25.88,
- "text": "really"
- },
- {
- "id": 35,
- "start": 25.88,
- "end": 26.49,
- "text": "excited"
- },
- {
- "id": 36,
- "start": 26.49,
- "end": 26.82,
- "text": "about"
- },
- {
- "id": 37,
- "start": 26.82,
- "end": 27.04,
- "text": "it"
- },
- {
- "id": 38,
- "start": 27.04,
- "end": 27.77,
- "text": "because"
- },
- {
- "id": 39,
- "start": 28.35,
- "end": 28.47,
- "text": "I've"
- },
- {
- "id": 40,
- "start": 28.59,
- "end": 28.79,
- "text": "always"
- },
- {
- "id": 41,
- "start": 28.79,
- "end": 29.03,
- "text": "loved"
- },
- {
- "id": 42,
- "start": 29.09,
- "end": 29.6,
- "text": "about"
- },
- {
- "id": 43,
- "start": 29.8,
- "end": 30.04,
- "text": "this"
- },
- {
- "id": 44,
- "start": 30.04,
- "end": 30.2,
- "text": "one"
- },
- {
- "id": 45,
- "start": 30.2,
- "end": 30.46,
- "text": "has"
- },
- {
- "id": 46,
- "start": 30.46,
- "end": 30.76,
- "text": "really"
- },
- {
- "id": 47,
- "start": 30.76,
- "end": 30.96,
- "text": "caught"
- },
- {
- "id": 48,
- "start": 30.96,
- "end": 31.34,
- "text": "technical"
- },
- {
- "id": 49,
- "start": 31.34,
- "end": 31.8,
- "text": "features."
- },
- {
- "id": 50,
- "start": 31.8,
- "end": 31.93,
- "text": "It"
- },
- {
- "id": 51,
- "start": 31.93,
- "end": 32.12,
- "text": "had"
- },
- {
- "id": 52,
- "start": 32.12,
- "end": 32.45,
- "text": "more"
- },
- {
- "id": 53,
- "start": 32.45,
- "end": 32.76,
- "text": "orders"
- },
- {
- "id": 54,
- "start": 32.76,
- "end": 32.92,
- "text": "and"
- },
- {
- "id": 55,
- "start": 32.92,
- "end": 33.18,
- "text": "touch"
- },
- {
- "id": 56,
- "start": 33.18,
- "end": 33.88,
- "text": "sensors."
- },
- {
- "id": 57,
- "start": 34.27,
- "end": 34.51,
- "text": "It"
- },
- {
- "id": 58,
- "start": 34.51,
- "end": 34.7,
- "text": "had"
- },
- {
- "id": 59,
- "start": 34.7,
- "end": 34.81,
- "text": "an"
- },
- {
- "id": 60,
- "start": 34.81,
- "end": 34.97,
- "text": "infra"
- },
- {
- "id": 61,
- "start": 34.97,
- "end": 35.32,
- "text": "red"
- },
- {
- "id": 62,
- "start": 35.31,
- "end": 35.97,
- "text": "camera"
- },
- {
- "id": 63,
- "start": 36.45,
- "end": 36.61,
- "text": "and"
- },
- {
- "id": 64,
- "start": 36.64,
- "end": 36.79,
- "text": "one"
- },
- {
- "id": 65,
- "start": 36.79,
- "end": 36.87,
- "text": "of"
- },
- {
- "id": 66,
- "start": 36.87,
- "end": 36.98,
- "text": "the"
- },
- {
- "id": 67,
- "start": 36.98,
- "end": 37.22,
- "text": "things"
- },
- {
- "id": 68,
- "start": 37.22,
- "end": 37.33,
- "text": "that"
- },
- {
- "id": 69,
- "start": 37.33,
- "end": 37.53,
- "text": "had"
- },
- {
- "id": 70,
- "start": 37.53,
- "end": 37.69,
- "text": "was"
- },
- {
- "id": 71,
- "start": 37.69,
- "end": 37.83,
- "text": "a"
- },
- {
- "id": 72,
- "start": 37.95,
- "end": 38.39,
- "text": "tilt"
- },
- {
- "id": 73,
- "start": 38.39,
- "end": 39.01,
- "text": "sensor"
- },
- {
- "id": 74,
- "start": 39.24,
- "end": 39.51,
- "text": "so"
- },
- {
- "id": 75,
- "start": 39.51,
- "end": 39.61,
- "text": "it."
- },
- {
- "id": 76,
- "start": 39.62,
- "end": 39.82,
- "text": "Knew"
- },
- {
- "id": 77,
- "start": 39.82,
- "end": 39.96,
- "text": "what"
- },
- {
- "id": 78,
- "start": 39.96,
- "end": 40.54,
- "text": "direction."
- },
- {
- "id": 79,
- "start": 40.54,
- "end": 40.65,
- "text": "It"
- },
- {
- "id": 80,
- "start": 40.65,
- "end": 40.94,
- "text": "was"
- },
- {
- "id": 81,
- "start": 40.97,
- "end": 41.55,
- "text": "facing."
- },
- {
- "id": 82,
- "start": 41.68,
- "end": 42,
- "text": "If"
- },
- {
- "id": 83,
- "start": 42.04,
- "end": 42.14,
- "text": "and"
- },
- {
- "id": 84,
- "start": 42.14,
- "end": 42.22,
- "text": "when"
- },
- {
- "id": 85,
- "start": 42.27,
- "end": 42.42,
- "text": "you"
- },
- {
- "id": 86,
- "start": 42.42,
- "end": 42.62,
- "text": "held"
- },
- {
- "id": 87,
- "start": 42.63,
- "end": 42.73,
- "text": "it"
- },
- {
- "id": 88,
- "start": 42.73,
- "end": 43.05,
- "text": "upside"
- },
- {
- "id": 89,
- "start": 43.05,
- "end": 43.61,
- "text": "down."
- },
- {
- "id": 90,
- "start": 46.53,
- "end": 46.68,
- "text": "I"
- },
- {
- "id": 91,
- "start": 46.69,
- "end": 46.89,
- "text": "thought."
- },
- {
- "id": 92,
- "start": 46.9,
- "end": 47.1,
- "text": "It's"
- },
- {
- "id": 93,
- "start": 47.12,
- "end": 47.21,
- "text": "a"
- },
- {
- "id": 94,
- "start": 47.21,
- "end": 47.65,
- "text": "super"
- },
- {
- "id": 95,
- "start": 47.65,
- "end": 48.09,
- "text": "courts"
- },
- {
- "id": 96,
- "start": 48.11,
- "end": 48.26,
- "text": "are"
- },
- {
- "id": 97,
- "start": 48.28,
- "end": 48.67,
- "text": "showing"
- },
- {
- "id": 98,
- "start": 48.66,
- "end": 48.79,
- "text": "off"
- },
- {
- "id": 99,
- "start": 48.79,
- "end": 48.94,
- "text": "to"
- },
- {
- "id": 100,
- "start": 48.94,
- "end": 49.04,
- "text": "my"
- },
- {
- "id": 101,
- "start": 49.04,
- "end": 49.56,
- "text": "friend"
- },
- {
- "id": 102,
- "start": 50,
- "end": 50.14,
- "text": "and"
- },
- {
- "id": 103,
- "start": 50.15,
- "end": 50.21,
- "text": "I"
- },
- {
- "id": 104,
- "start": 50.21,
- "end": 50.42,
- "text": "said"
- },
- {
- "id": 105,
- "start": 50.42,
- "end": 50.58,
- "text": "to"
- },
- {
- "id": 106,
- "start": 50.58,
- "end": 50.83,
- "text": "hold"
- },
- {
- "id": 107,
- "start": 50.83,
- "end": 50.97,
- "text": "it,"
- },
- {
- "id": 108,
- "start": 50.97,
- "end": 51.16,
- "text": "but"
- },
- {
- "id": 109,
- "start": 51.22,
- "end": 51.49,
- "text": "he'll"
- },
- {
- "id": 110,
- "start": 51.48,
- "end": 51.65,
- "text": "see"
- },
- {
- "id": 111,
- "start": 51.66,
- "end": 51.79,
- "text": "what"
- },
- {
- "id": 112,
- "start": 51.82,
- "end": 52.31,
- "text": "debts."
- },
- {
- "id": 113,
- "start": 55.22,
- "end": 55.29,
- "text": "We"
- },
- {
- "id": 114,
- "start": 55.36,
- "end": 55.51,
- "text": "were"
- },
- {
- "id": 115,
- "start": 55.51,
- "end": 55.93,
- "text": "watching"
- },
- {
- "id": 116,
- "start": 55.93,
- "end": 56.01,
- "text": "the"
- },
- {
- "id": 117,
- "start": 56.01,
- "end": 56.92,
- "text": "theatrics"
- },
- {
- "id": 118,
- "start": 56.92,
- "end": 57.01,
- "text": "of"
- },
- {
- "id": 119,
- "start": 57.01,
- "end": 57.25,
- "text": "this"
- },
- {
- "id": 120,
- "start": 57.25,
- "end": 57.52,
- "text": "robe"
- },
- {
- "id": 121,
- "start": 57.53,
- "end": 58.02,
- "text": "that"
- },
- {
- "id": 122,
- "start": 58.88,
- "end": 59.84,
- "text": "struggle"
- },
- {
- "id": 123,
- "start": 59.89,
- "end": 60.08,
- "text": "and"
- },
- {
- "id": 124,
- "start": 60.08,
- "end": 60.71,
- "text": "cry"
- },
- {
- "id": 125,
- "start": 60.71,
- "end": 61.07,
- "text": "out"
- },
- {
- "id": 126,
- "start": 61.86,
- "end": 61.9,
- "text": "and"
- },
- {
- "id": 127,
- "start": 62.77,
- "end": 63.06,
- "text": "and"
- },
- {
- "id": 128,
- "start": 63.25,
- "end": 63.53,
- "text": "after"
- },
- {
- "id": 129,
- "start": 63.53,
- "end": 63.57,
- "text": "a"
- },
- {
- "id": 130,
- "start": 63.57,
- "end": 63.73,
- "text": "few"
- },
- {
- "id": 131,
- "start": 63.73,
- "end": 64.47,
- "text": "seconds."
- },
- {
- "id": 132,
- "start": 64.73,
- "end": 64.92,
- "text": "The"
- },
- {
- "id": 133,
- "start": 64.94,
- "end": 65.33,
- "text": "first."
- },
- {
- "id": 134,
- "start": 65.42,
- "end": 65.78,
- "text": "After"
- },
- {
- "id": 135,
- "start": 65.79,
- "end": 66,
- "text": "my"
- },
- {
- "id": 136,
- "start": 66.01,
- "end": 66.47,
- "text": "little"
- },
- {
- "id": 137,
- "start": 67.66,
- "end": 67.79,
- "text": "and"
- },
- {
- "id": 138,
- "start": 67.87,
- "end": 67.96,
- "text": "I"
- },
- {
- "id": 139,
- "start": 67.96,
- "end": 68.22,
- "text": "said"
- },
- {
- "id": 140,
- "start": 68.22,
- "end": 68.9,
- "text": "o.k."
- },
- {
- "id": 141,
- "start": 69.99,
- "end": 70.22,
- "text": "That's"
- },
- {
- "id": 142,
- "start": 70.22,
- "end": 70.58,
- "text": "enough."
- },
- {
- "id": 143,
- "start": 70.58,
- "end": 71.11,
- "text": "Now,"
- },
- {
- "id": 144,
- "start": 71.81,
- "end": 71.98,
- "text": "let's"
- },
- {
- "id": 145,
- "start": 72.12,
- "end": 72.25,
- "text": "put"
- },
- {
- "id": 146,
- "start": 72.25,
- "end": 72.33,
- "text": "him"
- },
- {
- "id": 147,
- "start": 72.33,
- "end": 72.55,
- "text": "back"
- },
- {
- "id": 148,
- "start": 72.55,
- "end": 73.12,
- "text": "down"
- },
- {
- "id": 149,
- "start": 74.27,
- "end": 74.59,
- "text": "and"
- },
- {
- "id": 150,
- "start": 74.64,
- "end": 75.03,
- "text": "pepper,"
- },
- {
- "id": 151,
- "start": 75.04,
- "end": 75.31,
- "text": "about"
- },
- {
- "id": 152,
- "start": 75.34,
- "end": 75.43,
- "text": "to"
- },
- {
- "id": 153,
- "start": 75.44,
- "end": 75.57,
- "text": "make"
- },
- {
- "id": 154,
- "start": 75.57,
- "end": 75.66,
- "text": "it."
- },
- {
- "id": 155,
- "start": 75.67,
- "end": 75.92,
- "text": "Stop"
- },
- {
- "id": 156,
- "start": 75.92,
- "end": 76.47,
- "text": "crying"
- },
- {
- "id": 157,
- "start": 76.75,
- "end": 76.8,
- "text": "and"
- },
- {
- "id": 158,
- "start": 77.75,
- "end": 77.79,
- "text": "I"
- },
- {
- "id": 159,
- "start": 79.1,
- "end": 79.29,
- "text": "was"
- },
- {
- "id": 160,
- "start": 79.29,
- "end": 79.44,
- "text": "kind"
- },
- {
- "id": 161,
- "start": 79.44,
- "end": 79.51,
- "text": "of"
- },
- {
- "id": 162,
- "start": 79.51,
- "end": 79.65,
- "text": "a"
- },
- {
- "id": 163,
- "start": 79.65,
- "end": 79.93,
- "text": "weird"
- },
- {
- "id": 164,
- "start": 79.93,
- "end": 80.65,
- "text": "experience"
- },
- {
- "id": 165,
- "start": 80.65,
- "end": 80.78,
- "text": "for"
- },
- {
- "id": 166,
- "start": 80.78,
- "end": 81.18,
- "text": "me"
- },
- {
- "id": 167,
- "start": 82.09,
- "end": 82.33,
- "text": "one"
- },
- {
- "id": 168,
- "start": 82.35,
- "end": 82.7,
- "text": "thing,"
- },
- {
- "id": 169,
- "start": 83.02,
- "end": 83.28,
- "text": "wasn't"
- },
- {
- "id": 170,
- "start": 83.31,
- "end": 83.38,
- "text": "the"
- },
- {
- "id": 171,
- "start": 83.38,
- "end": 83.75,
- "text": "most"
- },
- {
- "id": 172,
- "start": 83.78,
- "end": 84.39,
- "text": "maternal"
- },
- {
- "id": 173,
- "start": 84.39,
- "end": 84.94,
- "text": "person"
- },
- {
- "id": 174,
- "start": 84.94,
- "end": 85.08,
- "text": "at"
- },
- {
- "id": 175,
- "start": 85.08,
- "end": 85.15,
- "text": "the"
- },
- {
- "id": 176,
- "start": 85.15,
- "end": 85.81,
- "text": "time."
- },
- {
- "id": 177,
- "start": 86.66,
- "end": 86.9,
- "text": "Although,"
- },
- {
- "id": 178,
- "start": 86.94,
- "end": 87.16,
- "text": "since"
- },
- {
- "id": 179,
- "start": 87.16,
- "end": 87.27,
- "text": "then"
- },
- {
- "id": 180,
- "start": 87.27,
- "end": 87.38,
- "text": "I've"
- },
- {
- "id": 181,
- "start": 87.38,
- "end": 87.62,
- "text": "become"
- },
- {
- "id": 182,
- "start": 87.61,
- "end": 87.67,
- "text": "a"
- },
- {
- "id": 183,
- "start": 87.67,
- "end": 87.95,
- "text": "mother"
- },
- {
- "id": 184,
- "start": 87.96,
- "end": 88.04,
- "text": "and"
- },
- {
- "id": 185,
- "start": 88.05,
- "end": 88.26,
- "text": "nine"
- },
- {
- "id": 186,
- "start": 88.26,
- "end": 88.49,
- "text": "months"
- },
- {
- "id": 187,
- "start": 88.49,
- "end": 88.91,
- "text": "ago."
- },
- {
- "id": 188,
- "start": 89.46,
- "end": 89.64,
- "text": "And"
- },
- {
- "id": 189,
- "start": 89.86,
- "end": 90.1,
- "text": "that"
- },
- {
- "id": 190,
- "start": 90.14,
- "end": 90.45,
- "text": "is"
- },
- {
- "id": 191,
- "start": 90.49,
- "end": 90.71,
- "text": "a"
- },
- {
- "id": 192,
- "start": 90.71,
- "end": 91,
- "text": "score"
- },
- {
- "id": 193,
- "start": 91.05,
- "end": 91.21,
- "text": "when"
- },
- {
- "id": 194,
- "start": 91.24,
- "end": 91.41,
- "text": "hold"
- },
- {
- "id": 195,
- "start": 91.41,
- "end": 91.53,
- "text": "them"
- },
- {
- "id": 196,
- "start": 91.53,
- "end": 91.65,
- "text": "up"
- },
- {
- "id": 197,
- "start": 91.65,
- "end": 91.79,
- "text": "to"
- },
- {
- "id": 198,
- "start": 91.8,
- "end": 92.1,
- "text": "now,"
- },
- {
- "id": 199,
- "start": 95.03,
- "end": 95.27,
- "text": "but"
- },
- {
- "id": 200,
- "start": 95.27,
- "end": 95.49,
- "text": "my"
- },
- {
- "id": 201,
- "start": 95.49,
- "end": 95.88,
- "text": "response"
- },
- {
- "id": 202,
- "start": 95.88,
- "end": 95.91,
- "text": "to"
- },
- {
- "id": 203,
- "start": 95.92,
- "end": 96.12,
- "text": "this"
- },
- {
- "id": 204,
- "start": 96.12,
- "end": 96.43,
- "text": "robot"
- },
- {
- "id": 205,
- "start": 96.43,
- "end": 96.57,
- "text": "was"
- },
- {
- "id": 206,
- "start": 96.57,
- "end": 96.85,
- "text": "also"
- },
- {
- "id": 207,
- "start": 96.85,
- "end": 97.26,
- "text": "interesting"
- },
- {
- "id": 208,
- "start": 97.26,
- "end": 97.7,
- "text": "because"
- },
- {
- "id": 209,
- "start": 97.87,
- "end": 97.98,
- "text": "I"
- },
- {
- "id": 210,
- "start": 98.01,
- "end": 98.17,
- "text": "knew"
- },
- {
- "id": 211,
- "start": 98.17,
- "end": 98.91,
- "text": "exactly"
- },
- {
- "id": 212,
- "start": 98.91,
- "end": 99.18,
- "text": "how"
- },
- {
- "id": 213,
- "start": 99.18,
- "end": 99.4,
- "text": "this"
- },
- {
- "id": 214,
- "start": 99.4,
- "end": 100.03,
- "text": "machine"
- },
- {
- "id": 215,
- "start": 100.07,
- "end": 100.54,
- "text": "work"
- },
- {
- "id": 216,
- "start": 100.57,
- "end": 100.87,
- "text": "it."
- },
- {
- "id": 217,
- "start": 101.49,
- "end": 101.64,
- "text": "And"
- },
- {
- "id": 218,
- "start": 101.67,
- "end": 101.84,
- "text": "yet."
- },
- {
- "id": 219,
- "start": 101.87,
- "end": 101.97,
- "text": "I"
- },
- {
- "id": 220,
- "start": 101.97,
- "end": 102.37,
- "text": "still"
- },
- {
- "id": 221,
- "start": 102.37,
- "end": 102.65,
- "text": "felt"
- },
- {
- "id": 222,
- "start": 102.65,
- "end": 103.39,
- "text": "compelled"
- },
- {
- "id": 223,
- "start": 103.39,
- "end": 103.51,
- "text": "to"
- },
- {
- "id": 224,
- "start": 103.51,
- "end": 103.67,
- "text": "be"
- },
- {
- "id": 225,
- "start": 103.67,
- "end": 104.38,
- "text": "kind"
- },
- {
- "id": 226,
- "start": 104.41,
- "end": 104.59,
- "text": "to"
- },
- {
- "id": 227,
- "start": 104.59,
- "end": 104.79,
- "text": "it."
- },
- {
- "id": 228,
- "start": 106.41,
- "end": 106.61,
- "text": "And"
- },
- {
- "id": 229,
- "start": 106.62,
- "end": 106.9,
- "text": "that"
- },
- {
- "id": 230,
- "start": 106.93,
- "end": 107.71,
- "text": "observation"
- },
- {
- "id": 231,
- "start": 107.71,
- "end": 108.1,
- "text": "sparked"
- },
- {
- "id": 232,
- "start": 108.1,
- "end": 108.17,
- "text": "that"
- },
- {
- "id": 233,
- "start": 108.18,
- "end": 109.13,
- "text": "curiosity"
- },
- {
- "id": 234,
- "start": 109.13,
- "end": 109.32,
- "text": "that"
- },
- {
- "id": 235,
- "start": 109.32,
- "end": 109.41,
- "text": "I"
- },
- {
- "id": 236,
- "start": 109.41,
- "end": 109.74,
- "text": "spent"
- },
- {
- "id": 237,
- "start": 109.74,
- "end": 109.81,
- "text": "the"
- },
- {
- "id": 238,
- "start": 109.81,
- "end": 110.27,
- "text": "fat,"
- },
- {
- "id": 239,
- "start": 110.27,
- "end": 110.36,
- "text": "the"
- },
- {
- "id": 240,
- "start": 110.36,
- "end": 110.7,
- "text": "past"
- },
- {
- "id": 241,
- "start": 110.75,
- "end": 111.28,
- "text": "decade"
- },
- {
- "id": 242,
- "start": 111.28,
- "end": 112.01,
- "text": "pursuing"
- },
- {
- "id": 243,
- "start": 112.48,
- "end": 112.52,
- "text": "it."
- },
- {
- "id": 244,
- "start": 112.93,
- "end": 113.18,
- "text": "Why"
- },
- {
- "id": 245,
- "start": 113.18,
- "end": 113.33,
- "text": "did"
- },
- {
- "id": 246,
- "start": 113.33,
- "end": 113.44,
- "text": "they"
- },
- {
- "id": 247,
- "start": 113.45,
- "end": 113.84,
- "text": "comfort"
- },
- {
- "id": 248,
- "start": 113.92,
- "end": 114.17,
- "text": "this"
- },
- {
- "id": 249,
- "start": 114.17,
- "end": 114.6,
- "text": "robe."
- },
- {
- "id": 250,
- "start": 116.26,
- "end": 116.48,
- "text": "One"
- },
- {
- "id": 251,
- "start": 116.48,
- "end": 116.57,
- "text": "of"
- },
- {
- "id": 252,
- "start": 116.57,
- "end": 116.65,
- "text": "the"
- },
- {
- "id": 253,
- "start": 116.65,
- "end": 116.87,
- "text": "things"
- },
- {
- "id": 254,
- "start": 116.87,
- "end": 116.93,
- "text": "I"
- },
- {
- "id": 255,
- "start": 116.93,
- "end": 117.57,
- "text": "discovered"
- },
- {
- "id": 256,
- "start": 117.57,
- "end": 117.77,
- "text": "was"
- },
- {
- "id": 257,
- "start": 117.77,
- "end": 118.22,
- "text": "that"
- },
- {
- "id": 258,
- "start": 118.45,
- "end": 118.61,
- "text": "my"
- },
- {
- "id": 259,
- "start": 118.61,
- "end": 119.2,
- "text": "treatment"
- },
- {
- "id": 260,
- "start": 119.2,
- "end": 119.26,
- "text": "of"
- },
- {
- "id": 261,
- "start": 119.26,
- "end": 119.45,
- "text": "this"
- },
- {
- "id": 262,
- "start": 119.45,
- "end": 119.8,
- "text": "machine"
- },
- {
- "id": 263,
- "start": 119.8,
- "end": 119.95,
- "text": "was"
- },
- {
- "id": 264,
- "start": 119.95,
- "end": 120.21,
- "text": "more"
- },
- {
- "id": 265,
- "start": 120.21,
- "end": 120.36,
- "text": "than"
- },
- {
- "id": 266,
- "start": 120.36,
- "end": 120.86,
- "text": "just"
- },
- {
- "id": 267,
- "start": 120.98,
- "end": 121.16,
- "text": "an"
- },
- {
- "id": 268,
- "start": 121.19,
- "end": 121.6,
- "text": "awkward"
- },
- {
- "id": 269,
- "start": 121.6,
- "end": 122.08,
- "text": "moment"
- },
- {
- "id": 270,
- "start": 122.08,
- "end": 122.16,
- "text": "in"
- },
- {
- "id": 271,
- "start": 122.16,
- "end": 122.3,
- "text": "my"
- },
- {
- "id": 272,
- "start": 122.3,
- "end": 122.62,
- "text": "living"
- },
- {
- "id": 273,
- "start": 122.62,
- "end": 123,
- "text": "room"
- },
- {
- "id": 274,
- "start": 123.45,
- "end": 123.63,
- "text": "that"
- },
- {
- "id": 275,
- "start": 123.74,
- "end": 123.81,
- "text": "in"
- },
- {
- "id": 276,
- "start": 123.81,
- "end": 123.95,
- "text": "a"
- },
- {
- "id": 277,
- "start": 123.95,
- "end": 124.42,
- "text": "world"
- },
- {
- "id": 278,
- "start": 124.45,
- "end": 124.63,
- "text": "were"
- },
- {
- "id": 279,
- "start": 124.64,
- "end": 125.43,
- "text": "increasingly"
- },
- {
- "id": 280,
- "start": 125.46,
- "end": 126.07,
- "text": "integrating"
- },
- {
- "id": 281,
- "start": 126.21,
- "end": 127.02,
- "text": "robots"
- },
- {
- "id": 282,
- "start": 127.22,
- "end": 127.57,
- "text": "into"
- },
- {
- "id": 283,
- "start": 127.57,
- "end": 127.66,
- "text": "our"
- },
- {
- "id": 284,
- "start": 127.66,
- "end": 128.54,
- "text": "lives"
- },
- {
- "id": 285,
- "start": 128.85,
- "end": 128.96,
- "text": "and"
- },
- {
- "id": 286,
- "start": 129.1,
- "end": 129.36,
- "text": "things"
- },
- {
- "id": 287,
- "start": 129.39,
- "end": 129.75,
- "text": "like"
- },
- {
- "id": 288,
- "start": 129.75,
- "end": 130.04,
- "text": "that"
- },
- {
- "id": 289,
- "start": 130.04,
- "end": 130.29,
- "text": "might"
- },
- {
- "id": 290,
- "start": 130.39,
- "end": 130.75,
- "text": "actually"
- },
- {
- "id": 291,
- "start": 130.75,
- "end": 130.89,
- "text": "have"
- },
- {
- "id": 292,
- "start": 130.89,
- "end": 132.15,
- "text": "consequences"
- },
- {
- "id": 293,
- "start": 133.44,
- "end": 133.68,
- "text": "because"
- },
- {
- "id": 294,
- "start": 133.68,
- "end": 133.76,
- "text": "the"
- },
- {
- "id": 295,
- "start": 133.76,
- "end": 134.02,
- "text": "first"
- },
- {
- "id": 296,
- "start": 134.02,
- "end": 134.17,
- "text": "thing"
- },
- {
- "id": 297,
- "start": 134.17,
- "end": 134.23,
- "text": "that"
- },
- {
- "id": 298,
- "start": 134.23,
- "end": 134.33,
- "text": "I"
- },
- {
- "id": 299,
- "start": 134.33,
- "end": 135.12,
- "text": "discovered"
- },
- {
- "id": 300,
- "start": 135.16,
- "end": 135.35,
- "text": "is"
- },
- {
- "id": 301,
- "start": 135.35,
- "end": 135.53,
- "text": "that."
- },
- {
- "id": 302,
- "start": 135.56,
- "end": 135.8,
- "text": "It's"
- },
- {
- "id": 303,
- "start": 135.8,
- "end": 136.05,
- "text": "not"
- },
- {
- "id": 304,
- "start": 136.05,
- "end": 136.39,
- "text": "just"
- },
- {
- "id": 305,
- "start": 136.39,
- "end": 136.9,
- "text": "me"
- },
- {
- "id": 306,
- "start": 139.25,
- "end": 139.42,
- "text": "in"
- },
- {
- "id": 307,
- "start": 139.42,
- "end": 139.58,
- "text": "two"
- },
- {
- "id": 308,
- "start": 139.58,
- "end": 140.08,
- "text": "thousand"
- },
- {
- "id": 309,
- "start": 140.08,
- "end": 140.69,
- "text": "seven."
- },
- {
- "id": 310,
- "start": 140.75,
- "end": 140.88,
- "text": "The"
- },
- {
- "id": 311,
- "start": 140.88,
- "end": 141.4,
- "text": "Washington"
- },
- {
- "id": 312,
- "start": 141.4,
- "end": 141.74,
- "text": "Post"
- },
- {
- "id": 313,
- "start": 141.74,
- "end": 142.27,
- "text": "reported"
- },
- {
- "id": 314,
- "start": 142.27,
- "end": 142.42,
- "text": "that"
- },
- {
- "id": 315,
- "start": 142.42,
- "end": 142.51,
- "text": "the"
- },
- {
- "id": 316,
- "start": 142.51,
- "end": 142.94,
- "text": "United"
- },
- {
- "id": 317,
- "start": 142.94,
- "end": 143.21,
- "text": "States"
- },
- {
- "id": 318,
- "start": 143.21,
- "end": 144.05,
- "text": "military"
- },
- {
- "id": 319,
- "start": 144.08,
- "end": 144.28,
- "text": "was"
- },
- {
- "id": 320,
- "start": 144.28,
- "end": 144.82,
- "text": "testing"
- },
- {
- "id": 321,
- "start": 144.82,
- "end": 145.12,
- "text": "this"
- },
- {
- "id": 322,
- "start": 145.33,
- "end": 145.86,
- "text": "robot"
- },
- {
- "id": 323,
- "start": 145.91,
- "end": 146.46,
- "text": "diffused"
- },
- {
- "id": 324,
- "start": 146.6,
- "end": 147.31,
- "text": "landmines."
- },
- {
- "id": 325,
- "start": 147.42,
- "end": 147.67,
- "text": "We"
- },
- {
- "id": 326,
- "start": 147.74,
- "end": 148.11,
- "text": "workers"
- },
- {
- "id": 327,
- "start": 148.35,
- "end": 148.52,
- "text": "were"
- },
- {
- "id": 328,
- "start": 148.57,
- "end": 148.95,
- "text": "shaped"
- },
- {
- "id": 329,
- "start": 148.95,
- "end": 149.09,
- "text": "like"
- },
- {
- "id": 330,
- "start": 149.09,
- "end": 149.16,
- "text": "a"
- },
- {
- "id": 331,
- "start": 149.16,
- "end": 149.56,
- "text": "stick"
- },
- {
- "id": 332,
- "start": 149.56,
- "end": 150.1,
- "text": "insect"
- },
- {
- "id": 333,
- "start": 150.16,
- "end": 150.68,
- "text": "would"
- },
- {
- "id": 334,
- "start": 150.7,
- "end": 150.94,
- "text": "walk"
- },
- {
- "id": 335,
- "start": 150.94,
- "end": 151.16,
- "text": "around"
- },
- {
- "id": 336,
- "start": 151.16,
- "end": 151.2,
- "text": "a"
- },
- {
- "id": 337,
- "start": 151.2,
- "end": 151.8,
- "text": "minefield"
- },
- {
- "id": 338,
- "start": 151.8,
- "end": 151.9,
- "text": "on"
- },
- {
- "id": 339,
- "start": 151.9,
- "end": 152.06,
- "text": "its"
- },
- {
- "id": 340,
- "start": 152.06,
- "end": 152.57,
- "text": "legs"
- },
- {
- "id": 341,
- "start": 152.82,
- "end": 152.93,
- "text": "and"
- },
- {
- "id": 342,
- "start": 153.07,
- "end": 153.29,
- "text": "every"
- },
- {
- "id": 343,
- "start": 153.29,
- "end": 153.47,
- "text": "time"
- },
- {
- "id": 344,
- "start": 153.47,
- "end": 153.55,
- "text": "he"
- },
- {
- "id": 345,
- "start": 153.55,
- "end": 153.9,
- "text": "stepped"
- },
- {
- "id": 346,
- "start": 153.9,
- "end": 153.98,
- "text": "on"
- },
- {
- "id": 347,
- "start": 153.98,
- "end": 154.04,
- "text": "a"
- },
- {
- "id": 348,
- "start": 154.04,
- "end": 154.45,
- "text": "mine."
- },
- {
- "id": 349,
- "start": 154.48,
- "end": 154.64,
- "text": "One"
- },
- {
- "id": 350,
- "start": 154.64,
- "end": 154.73,
- "text": "of"
- },
- {
- "id": 351,
- "start": 154.73,
- "end": 154.83,
- "text": "the"
- },
- {
- "id": 352,
- "start": 154.83,
- "end": 155.09,
- "text": "legs"
- },
- {
- "id": 353,
- "start": 155.09,
- "end": 155.21,
- "text": "would"
- },
- {
- "id": 354,
- "start": 155.21,
- "end": 155.47,
- "text": "blow"
- },
- {
- "id": 355,
- "start": 155.47,
- "end": 155.76,
- "text": "up"
- },
- {
- "id": 356,
- "start": 155.82,
- "end": 155.99,
- "text": "would"
- },
- {
- "id": 357,
- "start": 156.01,
- "end": 156.53,
- "text": "continue"
- },
- {
- "id": 358,
- "start": 156.53,
- "end": 156.63,
- "text": "on"
- },
- {
- "id": 359,
- "start": 156.63,
- "end": 156.72,
- "text": "the"
- },
- {
- "id": 360,
- "start": 156.72,
- "end": 156.93,
- "text": "other"
- },
- {
- "id": 361,
- "start": 156.93,
- "end": 157.28,
- "text": "legs"
- },
- {
- "id": 362,
- "start": 157.28,
- "end": 157.39,
- "text": "to"
- },
- {
- "id": 363,
- "start": 157.39,
- "end": 157.71,
- "text": "block"
- },
- {
- "id": 364,
- "start": 157.71,
- "end": 157.9,
- "text": "your"
- },
- {
- "id": 365,
- "start": 157.9,
- "end": 158.45,
- "text": "minds"
- },
- {
- "id": 366,
- "start": 159.23,
- "end": 159.5,
- "text": "in"
- },
- {
- "id": 367,
- "start": 159.53,
- "end": 159.68,
- "text": "the"
- },
- {
- "id": 368,
- "start": 159.68,
- "end": 160.16,
- "text": "colonel"
- },
- {
- "id": 369,
- "start": 160.16,
- "end": 160.34,
- "text": "was"
- },
- {
- "id": 370,
- "start": 160.36,
- "end": 160.45,
- "text": "in"
- },
- {
- "id": 371,
- "start": 160.45,
- "end": 160.94,
- "text": "charge"
- },
- {
- "id": 372,
- "start": 160.94,
- "end": 161.03,
- "text": "of"
- },
- {
- "id": 373,
- "start": 161.03,
- "end": 161.19,
- "text": "this"
- },
- {
- "id": 374,
- "start": 161.2,
- "end": 161.72,
- "text": "testing"
- },
- {
- "id": 375,
- "start": 161.72,
- "end": 162.68,
- "text": "exercise"
- },
- {
- "id": 376,
- "start": 163.09,
- "end": 163.23,
- "text": "for"
- },
- {
- "id": 377,
- "start": 163.32,
- "end": 163.8,
- "text": "calling"
- },
- {
- "id": 378,
- "start": 163.8,
- "end": 163.9,
- "text": "it"
- },
- {
- "id": 379,
- "start": 163.9,
- "end": 164.42,
- "text": "off"
- },
- {
- "id": 380,
- "start": 165.19,
- "end": 165.61,
- "text": "because"
- },
- {
- "id": 381,
- "start": 165.61,
- "end": 165.74,
- "text": "he"
- },
- {
- "id": 382,
- "start": 165.74,
- "end": 166.16,
- "text": "says"
- },
- {
- "id": 383,
- "start": 166.19,
- "end": 166.49,
- "text": "it's"
- },
- {
- "id": 384,
- "start": 166.49,
- "end": 166.78,
- "text": "too"
- },
- {
- "id": 385,
- "start": 166.78,
- "end": 167.63,
- "text": "inhumane"
- },
- {
- "id": 386,
- "start": 167.63,
- "end": 167.82,
- "text": "to"
- },
- {
- "id": 387,
- "start": 167.82,
- "end": 168.37,
- "text": "watch"
- },
- {
- "id": 388,
- "start": 168.37,
- "end": 168.6,
- "text": "this"
- },
- {
- "id": 389,
- "start": 168.6,
- "end": 169.13,
- "text": "damage"
- },
- {
- "id": 390,
- "start": 169.14,
- "end": 169.55,
- "text": "robot"
- },
- {
- "id": 391,
- "start": 169.6,
- "end": 170.06,
- "text": "drag"
- },
- {
- "id": 392,
- "start": 170.09,
- "end": 170.46,
- "text": "itself"
- },
- {
- "id": 393,
- "start": 170.46,
- "end": 170.98,
- "text": "along"
- },
- {
- "id": 394,
- "start": 171.34,
- "end": 171.43,
- "text": "the"
- },
- {
- "id": 395,
- "start": 171.44,
- "end": 172.15,
- "text": "minefield."
- },
- {
- "id": 396,
- "start": 175.1,
- "end": 175.41,
- "text": "What"
- },
- {
- "id": 397,
- "start": 175.41,
- "end": 175.54,
- "text": "would"
- },
- {
- "id": 398,
- "start": 175.54,
- "end": 176.17,
- "text": "cause"
- },
- {
- "id": 399,
- "start": 176.23,
- "end": 176.4,
- "text": "a"
- },
- {
- "id": 400,
- "start": 176.42,
- "end": 176.96,
- "text": "hardened"
- },
- {
- "id": 401,
- "start": 176.96,
- "end": 177.67,
- "text": "military"
- },
- {
- "id": 402,
- "start": 177.67,
- "end": 178.51,
- "text": "officer"
- },
- {
- "id": 403,
- "start": 178.75,
- "end": 178.85,
- "text": "and"
- },
- {
- "id": 404,
- "start": 179.04,
- "end": 179.44,
- "text": "someone"
- },
- {
- "id": 405,
- "start": 179.44,
- "end": 179.6,
- "text": "like"
- },
- {
- "id": 406,
- "start": 179.6,
- "end": 180.33,
- "text": "myself"
- },
- {
- "id": 407,
- "start": 180.95,
- "end": 181.1,
- "text": "to"
- },
- {
- "id": 408,
- "start": 181.1,
- "end": 181.29,
- "text": "have"
- },
- {
- "id": 409,
- "start": 181.29,
- "end": 181.44,
- "text": "this"
- },
- {
- "id": 410,
- "start": 181.44,
- "end": 181.94,
- "text": "response"
- },
- {
- "id": 411,
- "start": 181.94,
- "end": 182.07,
- "text": "to"
- },
- {
- "id": 412,
- "start": 182.07,
- "end": 182.25,
- "text": "row."
- },
- {
- "id": 413,
- "start": 182.25,
- "end": 182.77,
- "text": "But"
- },
- {
- "id": 414,
- "start": 183.53,
- "end": 183.99,
- "text": "what."
- },
- {
- "id": 415,
- "start": 184.07,
- "end": 184.22,
- "text": "Of"
- },
- {
- "id": 416,
- "start": 184.22,
- "end": 184.51,
- "text": "course"
- },
- {
- "id": 417,
- "start": 184.51,
- "end": 184.62,
- "text": "for"
- },
- {
- "id": 418,
- "start": 184.62,
- "end": 185.08,
- "text": "prime"
- },
- {
- "id": 419,
- "start": 185.2,
- "end": 185.35,
- "text": "for"
- },
- {
- "id": 420,
- "start": 185.35,
- "end": 185.78,
- "text": "science"
- },
- {
- "id": 421,
- "start": 185.78,
- "end": 186.09,
- "text": "fiction,"
- },
- {
- "id": 422,
- "start": 186.09,
- "end": 186.44,
- "text": "pop"
- },
- {
- "id": 423,
- "start": 186.44,
- "end": 186.87,
- "text": "culture"
- },
- {
- "id": 424,
- "start": 186.91,
- "end": 187.17,
- "text": "really"
- },
- {
- "id": 425,
- "start": 187.17,
- "end": 187.27,
- "text": "want"
- },
- {
- "id": 426,
- "start": 187.27,
- "end": 187.38,
- "text": "to"
- },
- {
- "id": 427,
- "start": 187.38,
- "end": 188.05,
- "text": "personify"
- },
- {
- "id": 428,
- "start": 188.05,
- "end": 188.28,
- "text": "these"
- },
- {
- "id": 429,
- "start": 188.29,
- "end": 188.94,
- "text": "things,"
- },
- {
- "id": 430,
- "start": 189.45,
- "end": 189.72,
- "text": "but"
- },
- {
- "id": 431,
- "start": 189.74,
- "end": 189.87,
- "text": "it"
- },
- {
- "id": 432,
- "start": 189.88,
- "end": 190.07,
- "text": "goes"
- },
- {
- "id": 433,
- "start": 190.07,
- "end": 190.15,
- "text": "a"
- },
- {
- "id": 434,
- "start": 190.15,
- "end": 190.34,
- "text": "little"
- },
- {
- "id": 435,
- "start": 190.34,
- "end": 190.48,
- "text": "bit"
- },
- {
- "id": 436,
- "start": 190.48,
- "end": 190.8,
- "text": "deeper"
- },
- {
- "id": 437,
- "start": 190.8,
- "end": 190.94,
- "text": "than"
- },
- {
- "id": 438,
- "start": 190.94,
- "end": 191.27,
- "text": "that"
- },
- {
- "id": 439,
- "start": 192.25,
- "end": 192.38,
- "text": "it"
- },
- {
- "id": 440,
- "start": 192.38,
- "end": 192.7,
- "text": "turns"
- },
- {
- "id": 441,
- "start": 192.7,
- "end": 192.81,
- "text": "out"
- },
- {
- "id": 442,
- "start": 192.81,
- "end": 192.95,
- "text": "that"
- },
- {
- "id": 443,
- "start": 192.95,
- "end": 193.03,
- "text": "we"
- },
- {
- "id": 444,
- "start": 193.03,
- "end": 193.08,
- "text": "are"
- },
- {
- "id": 445,
- "start": 193.08,
- "end": 193.95,
- "text": "biologically"
- },
- {
- "id": 446,
- "start": 193.95,
- "end": 194.49,
- "text": "hard"
- },
- {
- "id": 447,
- "start": 194.49,
- "end": 194.96,
- "text": "wired"
- },
- {
- "id": 448,
- "start": 194.96,
- "end": 195.09,
- "text": "to"
- },
- {
- "id": 449,
- "start": 195.09,
- "end": 195.84,
- "text": "project"
- },
- {
- "id": 450,
- "start": 196.1,
- "end": 196.89,
- "text": "intent"
- },
- {
- "id": 451,
- "start": 196.92,
- "end": 197.17,
- "text": "and"
- },
- {
- "id": 452,
- "start": 197.19,
- "end": 197.63,
- "text": "life"
- },
- {
- "id": 453,
- "start": 197.69,
- "end": 198.27,
- "text": "onto"
- },
- {
- "id": 454,
- "start": 198.58,
- "end": 198.81,
- "text": "any"
- },
- {
- "id": 455,
- "start": 198.81,
- "end": 199.38,
- "text": "movement"
- },
- {
- "id": 456,
- "start": 199.38,
- "end": 199.49,
- "text": "in"
- },
- {
- "id": 457,
- "start": 199.49,
- "end": 199.57,
- "text": "a"
- },
- {
- "id": 458,
- "start": 199.58,
- "end": 200.12,
- "text": "physical"
- },
- {
- "id": 459,
- "start": 200.12,
- "end": 200.52,
- "text": "space."
- },
- {
- "id": 460,
- "start": 200.52,
- "end": 200.68,
- "text": "It"
- },
- {
- "id": 461,
- "start": 200.68,
- "end": 201.15,
- "text": "seems"
- },
- {
- "id": 462,
- "start": 201.15,
- "end": 201.23,
- "text": "I"
- },
- {
- "id": 463,
- "start": 201.28,
- "end": 201.86,
- "text": "promised"
- },
- {
- "id": 464,
- "start": 201.92,
- "end": 202.37,
- "text": "us"
- },
- {
- "id": 465,
- "start": 202.96,
- "end": 203.14,
- "text": "some"
- },
- {
- "id": 466,
- "start": 203.37,
- "end": 203.74,
- "text": "people"
- },
- {
- "id": 467,
- "start": 203.75,
- "end": 204,
- "text": "treat"
- },
- {
- "id": 468,
- "start": 204.03,
- "end": 204.23,
- "text": "all"
- },
- {
- "id": 469,
- "start": 204.23,
- "end": 204.47,
- "text": "sort"
- },
- {
- "id": 470,
- "start": 204.47,
- "end": 204.59,
- "text": "of"
- },
- {
- "id": 471,
- "start": 204.59,
- "end": 204.95,
- "text": "robots"
- },
- {
- "id": 472,
- "start": 204.95,
- "end": 205.13,
- "text": "like"
- },
- {
- "id": 473,
- "start": 205.13,
- "end": 205.3,
- "text": "their"
- },
- {
- "id": 474,
- "start": 205.31,
- "end": 205.86,
- "text": "life."
- },
- {
- "id": 475,
- "start": 206.65,
- "end": 206.9,
- "text": "These"
- },
- {
- "id": 476,
- "start": 206.93,
- "end": 207.25,
- "text": "bomb"
- },
- {
- "id": 477,
- "start": 207.25,
- "end": 208.02,
- "text": "disposal"
- },
- {
- "id": 478,
- "start": 208.05,
- "end": 208.58,
- "text": "units"
- },
- {
- "id": 479,
- "start": 208.58,
- "end": 208.77,
- "text": "get"
- },
- {
- "id": 480,
- "start": 208.77,
- "end": 209.4,
- "text": "names."
- },
- {
- "id": 481,
- "start": 209.44,
- "end": 209.54,
- "text": "They"
- },
- {
- "id": 482,
- "start": 209.54,
- "end": 209.73,
- "text": "get"
- },
- {
- "id": 483,
- "start": 209.73,
- "end": 210.18,
- "text": "medals"
- },
- {
- "id": 484,
- "start": 210.18,
- "end": 210.27,
- "text": "of"
- },
- {
- "id": 485,
- "start": 210.27,
- "end": 210.67,
- "text": "honour"
- },
- {
- "id": 486,
- "start": 211.13,
- "end": 211.4,
- "text": "had"
- },
- {
- "id": 487,
- "start": 211.4,
- "end": 211.97,
- "text": "funeral"
- },
- {
- "id": 488,
- "start": 211.98,
- "end": 212.18,
- "text": "for"
- },
- {
- "id": 489,
- "start": 212.19,
- "end": 212.37,
- "text": "them"
- },
- {
- "id": 490,
- "start": 212.37,
- "end": 212.49,
- "text": "with"
- },
- {
- "id": 491,
- "start": 212.52,
- "end": 212.79,
- "text": "gun"
- },
- {
- "id": 492,
- "start": 212.78,
- "end": 213.28,
- "text": "salutes."
- },
- {
- "id": 493,
- "start": 214.85,
- "end": 215.08,
- "text": "Research"
- },
- {
- "id": 494,
- "start": 215.16,
- "end": 215.53,
- "text": "shows"
- },
- {
- "id": 495,
- "start": 215.55,
- "end": 215.67,
- "text": "that"
- },
- {
- "id": 496,
- "start": 215.67,
- "end": 215.76,
- "text": "we"
- },
- {
- "id": 497,
- "start": 215.76,
- "end": 215.88,
- "text": "do"
- },
- {
- "id": 498,
- "start": 215.88,
- "end": 216.06,
- "text": "this."
- },
- {
- "id": 499,
- "start": 216.09,
- "end": 216.33,
- "text": "Even"
- },
- {
- "id": 500,
- "start": 216.33,
- "end": 216.49,
- "text": "with"
- },
- {
- "id": 501,
- "start": 216.5,
- "end": 216.8,
- "text": "very"
- },
- {
- "id": 502,
- "start": 216.8,
- "end": 217.22,
- "text": "simple"
- },
- {
- "id": 503,
- "start": 217.22,
- "end": 217.77,
- "text": "household"
- },
- {
- "id": 504,
- "start": 217.77,
- "end": 218.27,
- "text": "robots"
- },
- {
- "id": 505,
- "start": 218.27,
- "end": 218.57,
- "text": "like"
- },
- {
- "id": 506,
- "start": 218.84,
- "end": 219.02,
- "text": "the"
- },
- {
- "id": 507,
- "start": 219.02,
- "end": 219.3,
- "text": "room."
- },
- {
- "id": 508,
- "start": 219.3,
- "end": 219.4,
- "text": "A"
- },
- {
- "id": 509,
- "start": 219.4,
- "end": 219.85,
- "text": "vacuum"
- },
- {
- "id": 510,
- "start": 219.85,
- "end": 220.31,
- "text": "cleaner."
- },
- {
- "id": 511,
- "start": 221.68,
- "end": 221.94,
- "text": "Just"
- },
- {
- "id": 512,
- "start": 221.94,
- "end": 222,
- "text": "a"
- },
- {
- "id": 513,
- "start": 222,
- "end": 222.53,
- "text": "desk"
- },
- {
- "id": 514,
- "start": 222.53,
- "end": 222.69,
- "text": "that"
- },
- {
- "id": 515,
- "start": 222.69,
- "end": 222.99,
- "text": "runs"
- },
- {
- "id": 516,
- "start": 222.99,
- "end": 223.28,
- "text": "around"
- },
- {
- "id": 517,
- "start": 223.28,
- "end": 223.36,
- "text": "the"
- },
- {
- "id": 518,
- "start": 223.36,
- "end": 223.74,
- "text": "floor"
- },
- {
- "id": 519,
- "start": 223.74,
- "end": 223.83,
- "text": "and"
- },
- {
- "id": 520,
- "start": 223.86,
- "end": 224.23,
- "text": "clean"
- },
- {
- "id": 521,
- "start": 224.23,
- "end": 224.46,
- "text": "it"
- },
- {
- "id": 522,
- "start": 224.83,
- "end": 225,
- "text": "just"
- },
- {
- "id": 523,
- "start": 225.02,
- "end": 225.1,
- "text": "the"
- },
- {
- "id": 524,
- "start": 225.1,
- "end": 225.45,
- "text": "fact"
- },
- {
- "id": 525,
- "start": 225.45,
- "end": 225.57,
- "text": "that"
- },
- {
- "id": 526,
- "start": 225.57,
- "end": 225.75,
- "text": "it's"
- },
- {
- "id": 527,
- "start": 225.75,
- "end": 226.23,
- "text": "moving"
- },
- {
- "id": 528,
- "start": 226.23,
- "end": 226.56,
- "text": "around"
- },
- {
- "id": 529,
- "start": 226.56,
- "end": 226.67,
- "text": "on"
- },
- {
- "id": 530,
- "start": 226.67,
- "end": 226.81,
- "text": "his"
- },
- {
- "id": 531,
- "start": 226.84,
- "end": 227.12,
- "text": "own"
- },
- {
- "id": 532,
- "start": 227.12,
- "end": 227.21,
- "text": "will"
- },
- {
- "id": 533,
- "start": 227.21,
- "end": 227.56,
- "text": "cause"
- },
- {
- "id": 534,
- "start": 227.56,
- "end": 227.8,
- "text": "people"
- },
- {
- "id": 535,
- "start": 227.8,
- "end": 227.97,
- "text": "to"
- },
- {
- "id": 536,
- "start": 227.97,
- "end": 228.43,
- "text": "name"
- },
- {
- "id": 537,
- "start": 228.43,
- "end": 228.62,
- "text": "the"
- },
- {
- "id": 538,
- "start": 228.62,
- "end": 229.02,
- "text": "marimba"
- },
- {
- "id": 539,
- "start": 229.27,
- "end": 229.42,
- "text": "and"
- },
- {
- "id": 540,
- "start": 229.47,
- "end": 229.7,
- "text": "feel"
- },
- {
- "id": 541,
- "start": 229.7,
- "end": 230.13,
- "text": "bad"
- },
- {
- "id": 542,
- "start": 230.13,
- "end": 230.29,
- "text": "for"
- },
- {
- "id": 543,
- "start": 230.29,
- "end": 230.4,
- "text": "the"
- },
- {
- "id": 544,
- "start": 230.4,
- "end": 230.62,
- "text": "room."
- },
- {
- "id": 545,
- "start": 230.61,
- "end": 230.74,
- "text": "But"
- },
- {
- "id": 546,
- "start": 230.75,
- "end": 230.85,
- "text": "when"
- },
- {
- "id": 547,
- "start": 230.85,
- "end": 230.91,
- "text": "he"
- },
- {
- "id": 548,
- "start": 230.92,
- "end": 231.12,
- "text": "gets"
- },
- {
- "id": 549,
- "start": 231.12,
- "end": 231.45,
- "text": "stuck"
- },
- {
- "id": 550,
- "start": 231.44,
- "end": 231.62,
- "text": "under"
- },
- {
- "id": 551,
- "start": 231.63,
- "end": 231.73,
- "text": "the"
- },
- {
- "id": 552,
- "start": 231.73,
- "end": 232.57,
- "text": "couch."
- },
- {
- "id": 553,
- "start": 234.54,
- "end": 234.71,
- "text": "We"
- },
- {
- "id": 554,
- "start": 234.71,
- "end": 234.86,
- "text": "can"
- },
- {
- "id": 555,
- "start": 234.86,
- "end": 235.36,
- "text": "design"
- },
- {
- "id": 556,
- "start": 235.38,
- "end": 235.67,
- "text": "about"
- },
- {
- "id": 557,
- "start": 235.67,
- "end": 236.49,
- "text": "specifically"
- },
- {
- "id": 558,
- "start": 236.49,
- "end": 236.66,
- "text": "to"
- },
- {
- "id": 559,
- "start": 236.66,
- "end": 236.96,
- "text": "invoke"
- },
- {
- "id": 560,
- "start": 237,
- "end": 237.21,
- "text": "this"
- },
- {
- "id": 561,
- "start": 237.21,
- "end": 237.78,
- "text": "response"
- },
- {
- "id": 562,
- "start": 237.78,
- "end": 238.15,
- "text": "using"
- },
- {
- "id": 563,
- "start": 238.24,
- "end": 238.91,
- "text": "eyes"
- },
- {
- "id": 564,
- "start": 239.16,
- "end": 239.33,
- "text": "and"
- },
- {
- "id": 565,
- "start": 239.34,
- "end": 240.23,
- "text": "faces"
- },
- {
- "id": 566,
- "start": 240.44,
- "end": 240.62,
- "text": "were"
- },
- {
- "id": 567,
- "start": 240.66,
- "end": 241.28,
- "text": "movement."
- },
- {
- "id": 568,
- "start": 241.32,
- "end": 241.71,
- "text": "People"
- },
- {
- "id": 569,
- "start": 241.74,
- "end": 241.97,
- "text": "are"
- },
- {
- "id": 570,
- "start": 241.97,
- "end": 242.53,
- "text": "magically"
- },
- {
- "id": 571,
- "start": 242.53,
- "end": 243.47,
- "text": "subconsciously"
- },
- {
- "id": 572,
- "start": 243.48,
- "end": 244.36,
- "text": "associate"
- },
- {
- "id": 573,
- "start": 244.56,
- "end": 244.72,
- "text": "with"
- },
- {
- "id": 574,
- "start": 244.73,
- "end": 245.08,
- "text": "state"
- },
- {
- "id": 575,
- "start": 245.08,
- "end": 245.17,
- "text": "of"
- },
- {
- "id": 576,
- "start": 245.17,
- "end": 245.86,
- "text": "mind."
- },
- {
- "id": 577,
- "start": 246.58,
- "end": 246.77,
- "text": "There's"
- },
- {
- "id": 578,
- "start": 246.83,
- "end": 246.94,
- "text": "an"
- },
- {
- "id": 579,
- "start": 246.94,
- "end": 247.36,
- "text": "entire"
- },
- {
- "id": 580,
- "start": 247.36,
- "end": 247.58,
- "text": "body"
- },
- {
- "id": 581,
- "start": 247.58,
- "end": 247.69,
- "text": "of"
- },
- {
- "id": 582,
- "start": 247.69,
- "end": 248.1,
- "text": "research"
- },
- {
- "id": 583,
- "start": 248.11,
- "end": 248.35,
- "text": "called"
- },
- {
- "id": 584,
- "start": 248.34,
- "end": 248.58,
- "text": "Human"
- },
- {
- "id": 585,
- "start": 248.59,
- "end": 248.86,
- "text": "robot"
- },
- {
- "id": 586,
- "start": 248.87,
- "end": 249.34,
- "text": "interaction"
- },
- {
- "id": 587,
- "start": 249.36,
- "end": 249.59,
- "text": "that"
- },
- {
- "id": 588,
- "start": 249.66,
- "end": 249.92,
- "text": "really"
- },
- {
- "id": 589,
- "start": 249.92,
- "end": 250.4,
- "text": "shows"
- },
- {
- "id": 590,
- "start": 250.4,
- "end": 250.61,
- "text": "how"
- },
- {
- "id": 591,
- "start": 250.61,
- "end": 250.7,
- "text": "all"
- },
- {
- "id": 592,
- "start": 250.7,
- "end": 250.89,
- "text": "this"
- },
- {
- "id": 593,
- "start": 250.89,
- "end": 251.33,
- "text": "works"
- },
- {
- "id": 594,
- "start": 251.65,
- "end": 251.88,
- "text": "so."
- },
- {
- "id": 595,
- "start": 251.88,
- "end": 252.01,
- "text": "For"
- },
- {
- "id": 596,
- "start": 252.01,
- "end": 252.58,
- "text": "example."
- },
- {
- "id": 597,
- "start": 252.58,
- "end": 253.13,
- "text": "Researchers"
- },
- {
- "id": 598,
- "start": 253.13,
- "end": 253.38,
- "text": "at"
- },
- {
- "id": 599,
- "start": 253.44,
- "end": 253.98,
- "text": "Stamford"
- },
- {
- "id": 600,
- "start": 253.98,
- "end": 254.48,
- "text": "University"
- },
- {
- "id": 601,
- "start": 254.48,
- "end": 254.77,
- "text": "found"
- },
- {
- "id": 602,
- "start": 254.77,
- "end": 254.94,
- "text": "out"
- },
- {
- "id": 603,
- "start": 254.94,
- "end": 255.08,
- "text": "that"
- },
- {
- "id": 604,
- "start": 255.1,
- "end": 255.32,
- "text": "makes"
- },
- {
- "id": 605,
- "start": 255.32,
- "end": 255.66,
- "text": "people"
- },
- {
- "id": 606,
- "start": 255.66,
- "end": 255.92,
- "text": "really"
- },
- {
- "id": 607,
- "start": 255.92,
- "end": 256.6,
- "text": "uncomfortable"
- },
- {
- "id": 608,
- "start": 256.63,
- "end": 256.76,
- "text": "and"
- },
- {
- "id": 609,
- "start": 256.79,
- "end": 257.05,
- "text": "asked"
- },
- {
- "id": 610,
- "start": 257.05,
- "end": 257.17,
- "text": "them"
- },
- {
- "id": 611,
- "start": 257.17,
- "end": 257.27,
- "text": "to"
- },
- {
- "id": 612,
- "start": 257.27,
- "end": 257.54,
- "text": "touch"
- },
- {
- "id": 613,
- "start": 257.54,
- "end": 257.66,
- "text": "her"
- },
- {
- "id": 614,
- "start": 257.66,
- "end": 257.87,
- "text": "about"
- },
- {
- "id": 615,
- "start": 257.86,
- "end": 257.95,
- "text": "his"
- },
- {
- "id": 616,
- "start": 257.96,
- "end": 258.37,
- "text": "private"
- },
- {
- "id": 617,
- "start": 258.37,
- "end": 258.94,
- "text": "parts"
- },
- {
- "id": 618,
- "start": 261.63,
- "end": 261.93,
- "text": "from"
- },
- {
- "id": 619,
- "start": 261.93,
- "end": 262.11,
- "text": "this"
- },
- {
- "id": 620,
- "start": 262.18,
- "end": 262.48,
- "text": "from"
- },
- {
- "id": 621,
- "start": 262.48,
- "end": 262.71,
- "text": "any"
- },
- {
- "id": 622,
- "start": 262.8,
- "end": 262.99,
- "text": "other"
- },
- {
- "id": 623,
- "start": 262.99,
- "end": 263.39,
- "text": "studies."
- },
- {
- "id": 624,
- "start": 263.39,
- "end": 263.55,
- "text": "We"
- },
- {
- "id": 625,
- "start": 263.55,
- "end": 264.09,
- "text": "know."
- },
- {
- "id": 626,
- "start": 264.48,
- "end": 264.67,
- "text": "We"
- },
- {
- "id": 627,
- "start": 264.67,
- "end": 265.1,
- "text": "know"
- },
- {
- "id": 628,
- "start": 265.1,
- "end": 265.25,
- "text": "that"
- },
- {
- "id": 629,
- "start": 265.25,
- "end": 265.79,
- "text": "people"
- },
- {
- "id": 630,
- "start": 265.79,
- "end": 266.42,
- "text": "respond"
- },
- {
- "id": 631,
- "start": 266.42,
- "end": 266.52,
- "text": "to"
- },
- {
- "id": 632,
- "start": 266.52,
- "end": 266.65,
- "text": "the"
- },
- {
- "id": 633,
- "start": 266.65,
- "end": 267.28,
- "text": "cues"
- },
- {
- "id": 634,
- "start": 267.28,
- "end": 267.56,
- "text": "given"
- },
- {
- "id": 635,
- "start": 267.56,
- "end": 267.67,
- "text": "to"
- },
- {
- "id": 636,
- "start": 267.67,
- "end": 267.88,
- "text": "them"
- },
- {
- "id": 637,
- "start": 267.88,
- "end": 268,
- "text": "by"
- },
- {
- "id": 638,
- "start": 268,
- "end": 268.17,
- "text": "the"
- },
- {
- "id": 639,
- "start": 268.19,
- "end": 268.67,
- "text": "lifelike"
- },
- {
- "id": 640,
- "start": 268.69,
- "end": 269.46,
- "text": "machines."
- },
- {
- "id": 641,
- "start": 269.9,
- "end": 270.19,
- "text": "Even"
- },
- {
- "id": 642,
- "start": 270.19,
- "end": 270.29,
- "text": "if"
- },
- {
- "id": 643,
- "start": 270.29,
- "end": 270.43,
- "text": "they"
- },
- {
- "id": 644,
- "start": 270.43,
- "end": 270.68,
- "text": "know"
- },
- {
- "id": 645,
- "start": 270.68,
- "end": 270.82,
- "text": "that"
- },
- {
- "id": 646,
- "start": 270.82,
- "end": 270.99,
- "text": "they're"
- },
- {
- "id": 647,
- "start": 270.99,
- "end": 271.28,
- "text": "not"
- },
- {
- "id": 648,
- "start": 271.3,
- "end": 271.58,
- "text": "real."
- },
- {
- "id": 649,
- "start": 274.49,
- "end": 274.69,
- "text": "We're"
- },
- {
- "id": 650,
- "start": 274.69,
- "end": 274.96,
- "text": "heading"
- },
- {
- "id": 651,
- "start": 274.96,
- "end": 275.21,
- "text": "towards"
- },
- {
- "id": 652,
- "start": 275.21,
- "end": 275.28,
- "text": "a"
- },
- {
- "id": 653,
- "start": 275.28,
- "end": 275.71,
- "text": "world"
- },
- {
- "id": 654,
- "start": 275.71,
- "end": 275.9,
- "text": "where"
- },
- {
- "id": 655,
- "start": 275.9,
- "end": 276.33,
- "text": "robots"
- },
- {
- "id": 656,
- "start": 276.34,
- "end": 276.52,
- "text": "are"
- },
- {
- "id": 657,
- "start": 276.55,
- "end": 277.18,
- "text": "everywhere"
- },
- {
- "id": 658,
- "start": 277.71,
- "end": 277.96,
- "text": "about"
- },
- {
- "id": 659,
- "start": 277.96,
- "end": 278.02,
- "text": "the"
- },
- {
- "id": 660,
- "start": 278.02,
- "end": 278.61,
- "text": "technology"
- },
- {
- "id": 661,
- "start": 278.61,
- "end": 278.81,
- "text": "is"
- },
- {
- "id": 662,
- "start": 278.84,
- "end": 279.24,
- "text": "moving"
- },
- {
- "id": 663,
- "start": 279.24,
- "end": 279.41,
- "text": "out"
- },
- {
- "id": 664,
- "start": 279.41,
- "end": 279.57,
- "text": "from"
- },
- {
- "id": 665,
- "start": 279.57,
- "end": 279.84,
- "text": "behind"
- },
- {
- "id": 666,
- "start": 279.84,
- "end": 280.26,
- "text": "factory"
- },
- {
- "id": 667,
- "start": 280.26,
- "end": 280.81,
- "text": "was"
- },
- {
- "id": 668,
- "start": 280.88,
- "end": 281.36,
- "text": "entering"
- },
- {
- "id": 669,
- "start": 281.4,
- "end": 282.33,
- "text": "workplaces"
- },
- {
- "id": 670,
- "start": 282.34,
- "end": 283.29,
- "text": "households"
- },
- {
- "id": 671,
- "start": 283.61,
- "end": 283.81,
- "text": "and"
- },
- {
- "id": 672,
- "start": 284.11,
- "end": 284.34,
- "text": "as"
- },
- {
- "id": 673,
- "start": 284.34,
- "end": 284.55,
- "text": "these"
- },
- {
- "id": 674,
- "start": 284.55,
- "end": 285.22,
- "text": "machines."
- },
- {
- "id": 675,
- "start": 285.22,
- "end": 285.32,
- "text": "They"
- },
- {
- "id": 676,
- "start": 285.33,
- "end": 285.89,
- "text": "can"
- },
- {
- "id": 677,
- "start": 285.92,
- "end": 286.63,
- "text": "sense"
- },
- {
- "id": 678,
- "start": 286.63,
- "end": 286.99,
- "text": "and"
- },
- {
- "id": 679,
- "start": 287.21,
- "end": 287.45,
- "text": "make"
- },
- {
- "id": 680,
- "start": 287.45,
- "end": 287.48,
- "text": "a"
- },
- {
- "id": 681,
- "start": 287.49,
- "end": 287.78,
- "text": "ton"
- },
- {
- "id": 682,
- "start": 287.77,
- "end": 287.89,
- "text": "of"
- },
- {
- "id": 683,
- "start": 287.89,
- "end": 288.02,
- "text": "my"
- },
- {
- "id": 684,
- "start": 288.04,
- "end": 288.69,
- "text": "decisions"
- },
- {
- "id": 685,
- "start": 288.69,
- "end": 288.92,
- "text": "and"
- },
- {
- "id": 686,
- "start": 288.99,
- "end": 289.54,
- "text": "learn"
- },
- {
- "id": 687,
- "start": 290.05,
- "end": 290.37,
- "text": "enter"
- },
- {
- "id": 688,
- "start": 290.37,
- "end": 290.58,
- "text": "into"
- },
- {
- "id": 689,
- "start": 290.58,
- "end": 290.72,
- "text": "the"
- },
- {
- "id": 690,
- "start": 290.72,
- "end": 291.09,
- "text": "shared"
- },
- {
- "id": 691,
- "start": 291.09,
- "end": 292.16,
- "text": "spaces."
- },
- {
- "id": 692,
- "start": 292.68,
- "end": 292.77,
- "text": "I"
- },
- {
- "id": 693,
- "start": 292.78,
- "end": 293.01,
- "text": "think"
- },
- {
- "id": 694,
- "start": 293.01,
- "end": 293.19,
- "text": "that"
- },
- {
- "id": 695,
- "start": 293.19,
- "end": 293.39,
- "text": "maybe"
- },
- {
- "id": 696,
- "start": 293.42,
- "end": 293.51,
- "text": "the"
- },
- {
- "id": 697,
- "start": 293.51,
- "end": 293.76,
- "text": "best"
- },
- {
- "id": 698,
- "start": 293.76,
- "end": 294.32,
- "text": "analogy."
- },
- {
- "id": 699,
- "start": 294.32,
- "end": 294.45,
- "text": "We"
- },
- {
- "id": 700,
- "start": 294.45,
- "end": 294.76,
- "text": "have"
- },
- {
- "id": 701,
- "start": 294.76,
- "end": 294.84,
- "text": "for"
- },
- {
- "id": 702,
- "start": 294.84,
- "end": 295.08,
- "text": "this"
- },
- {
- "id": 703,
- "start": 295.08,
- "end": 295.21,
- "text": "is"
- },
- {
- "id": 704,
- "start": 295.2,
- "end": 295.32,
- "text": "our"
- },
- {
- "id": 705,
- "start": 295.32,
- "end": 296.04,
- "text": "relationship"
- },
- {
- "id": 706,
- "start": 296.04,
- "end": 296.21,
- "text": "with"
- },
- {
- "id": 707,
- "start": 296.34,
- "end": 297.08,
- "text": "animals."
- },
- {
- "id": 708,
- "start": 297.49,
- "end": 297.99,
- "text": "Thousands"
- },
- {
- "id": 709,
- "start": 297.99,
- "end": 298.08,
- "text": "of"
- },
- {
- "id": 710,
- "start": 298.08,
- "end": 298.32,
- "text": "years"
- },
- {
- "id": 711,
- "start": 298.32,
- "end": 298.82,
- "text": "ago,"
- },
- {
- "id": 712,
- "start": 299.29,
- "end": 299.44,
- "text": "we"
- },
- {
- "id": 713,
- "start": 299.44,
- "end": 299.76,
- "text": "started"
- },
- {
- "id": 714,
- "start": 299.76,
- "end": 299.86,
- "text": "to"
- },
- {
- "id": 715,
- "start": 299.86,
- "end": 300.54,
- "text": "domesticate"
- },
- {
- "id": 716,
- "start": 300.54,
- "end": 301.15,
- "text": "animals"
- },
- {
- "id": 717,
- "start": 301.3,
- "end": 301.37,
- "text": "and"
- },
- {
- "id": 718,
- "start": 301.51,
- "end": 301.64,
- "text": "we"
- },
- {
- "id": 719,
- "start": 301.64,
- "end": 301.99,
- "text": "train"
- },
- {
- "id": 720,
- "start": 301.99,
- "end": 302.15,
- "text": "them"
- },
- {
- "id": 721,
- "start": 302.15,
- "end": 302.34,
- "text": "for"
- },
- {
- "id": 722,
- "start": 302.34,
- "end": 302.89,
- "text": "work"
- },
- {
- "id": 723,
- "start": 302.92,
- "end": 303.14,
- "text": "and"
- },
- {
- "id": 724,
- "start": 303.14,
- "end": 303.83,
- "text": "weaponry"
- },
- {
- "id": 725,
- "start": 303.86,
- "end": 303.95,
- "text": "and"
- },
- {
- "id": 726,
- "start": 303.94,
- "end": 305,
- "text": "companionship."
- },
- {
- "id": 727,
- "start": 305.64,
- "end": 305.91,
- "text": "Throughout"
- },
- {
- "id": 728,
- "start": 305.91,
- "end": 306.43,
- "text": "history."
- },
- {
- "id": 729,
- "start": 306.43,
- "end": 306.58,
- "text": "We've"
- },
- {
- "id": 730,
- "start": 306.6,
- "end": 306.92,
- "text": "treated."
- },
- {
- "id": 731,
- "start": 306.94,
- "end": 307.2,
- "text": "Some"
- },
- {
- "id": 732,
- "start": 307.24,
- "end": 307.75,
- "text": "animals"
- },
- {
- "id": 733,
- "start": 307.75,
- "end": 307.93,
- "text": "like"
- },
- {
- "id": 734,
- "start": 307.96,
- "end": 308.67,
- "text": "tools"
- },
- {
- "id": 735,
- "start": 308.82,
- "end": 309.03,
- "text": "are"
- },
- {
- "id": 736,
- "start": 309.05,
- "end": 309.16,
- "text": "the"
- },
- {
- "id": 737,
- "start": 309.17,
- "end": 310.11,
- "text": "products"
- },
- {
- "id": 738,
- "start": 310.52,
- "end": 310.74,
- "text": "and"
- },
- {
- "id": 739,
- "start": 310.77,
- "end": 310.99,
- "text": "other"
- },
- {
- "id": 740,
- "start": 310.99,
- "end": 311.33,
- "text": "animals."
- },
- {
- "id": 741,
- "start": 311.33,
- "end": 311.45,
- "text": "We"
- },
- {
- "id": 742,
- "start": 311.45,
- "end": 311.73,
- "text": "treated"
- },
- {
- "id": 743,
- "start": 311.73,
- "end": 311.87,
- "text": "with"
- },
- {
- "id": 744,
- "start": 311.87,
- "end": 312.58,
- "text": "kindness"
- },
- {
- "id": 745,
- "start": 312.61,
- "end": 312.79,
- "text": "and"
- },
- {
- "id": 746,
- "start": 312.87,
- "end": 313.09,
- "text": "given"
- },
- {
- "id": 747,
- "start": 313.09,
- "end": 313.16,
- "text": "a"
- },
- {
- "id": 748,
- "start": 313.16,
- "end": 313.56,
- "text": "place"
- },
- {
- "id": 749,
- "start": 313.56,
- "end": 313.64,
- "text": "in"
- },
- {
- "id": 750,
- "start": 313.64,
- "end": 314.12,
- "text": "society"
- },
- {
- "id": 751,
- "start": 314.12,
- "end": 314.24,
- "text": "as"
- },
- {
- "id": 752,
- "start": 314.24,
- "end": 314.3,
- "text": "our"
- },
- {
- "id": 753,
- "start": 314.31,
- "end": 315.18,
- "text": "companions."
- },
- {
- "id": 754,
- "start": 315.81,
- "end": 315.94,
- "text": "I"
- },
- {
- "id": 755,
- "start": 315.94,
- "end": 316.1,
- "text": "think"
- },
- {
- "id": 756,
- "start": 316.1,
- "end": 316.23,
- "text": "it's"
- },
- {
- "id": 757,
- "start": 316.23,
- "end": 316.7,
- "text": "possible."
- },
- {
- "id": 758,
- "start": 316.7,
- "end": 316.82,
- "text": "We"
- },
- {
- "id": 759,
- "start": 316.82,
- "end": 317.04,
- "text": "might"
- },
- {
- "id": 760,
- "start": 317.04,
- "end": 317.26,
- "text": "start"
- },
- {
- "id": 761,
- "start": 317.26,
- "end": 317.33,
- "text": "to"
- },
- {
- "id": 762,
- "start": 317.36,
- "end": 317.78,
- "text": "integrate"
- },
- {
- "id": 763,
- "start": 317.78,
- "end": 318.16,
- "text": "Robartes,"
- },
- {
- "id": 764,
- "start": 318.16,
- "end": 318.45,
- "text": "but"
- },
- {
- "id": 765,
- "start": 318.47,
- "end": 318.91,
- "text": "similar"
- },
- {
- "id": 766,
- "start": 318.91,
- "end": 319.62,
- "text": "weights"
- },
- {
- "id": 767,
- "start": 323.05,
- "end": 323.52,
- "text": "animals"
- },
- {
- "id": 768,
- "start": 323.52,
- "end": 323.71,
- "text": "are"
- },
- {
- "id": 769,
- "start": 323.71,
- "end": 324.18,
- "text": "alive."
- },
- {
- "id": 770,
- "start": 324.57,
- "end": 325.02,
- "text": "Robert"
- },
- {
- "id": 771,
- "start": 325.03,
- "end": 325.17,
- "text": "and"
- },
- {
- "id": 772,
- "start": 325.16,
- "end": 325.43,
- "text": "that."
- },
- {
- "id": 773,
- "start": 327.58,
- "end": 327.73,
- "text": "And"
- },
- {
- "id": 774,
- "start": 327.81,
- "end": 327.89,
- "text": "I"
- },
- {
- "id": 775,
- "start": 327.89,
- "end": 328.03,
- "text": "can"
- },
- {
- "id": 776,
- "start": 328.03,
- "end": 328.25,
- "text": "tell"
- },
- {
- "id": 777,
- "start": 328.25,
- "end": 328.35,
- "text": "you"
- },
- {
- "id": 778,
- "start": 328.35,
- "end": 328.62,
- "text": "from"
- },
- {
- "id": 779,
- "start": 328.62,
- "end": 328.94,
- "text": "working."
- },
- {
- "id": 780,
- "start": 328.94,
- "end": 329.07,
- "text": "What"
- },
- {
- "id": 781,
- "start": 329.07,
- "end": 329.32,
- "text": "about"
- },
- {
- "id": 782,
- "start": 329.33,
- "end": 329.44,
- "text": "the"
- },
- {
- "id": 783,
- "start": 329.44,
- "end": 329.8,
- "text": "sister"
- },
- {
- "id": 784,
- "start": 329.82,
- "end": 330.03,
- "text": "were"
- },
- {
- "id": 785,
- "start": 330.22,
- "end": 330.52,
- "text": "pretty"
- },
- {
- "id": 786,
- "start": 330.52,
- "end": 330.73,
- "text": "far"
- },
- {
- "id": 787,
- "start": 330.73,
- "end": 331.02,
- "text": "away"
- },
- {
- "id": 788,
- "start": 331.02,
- "end": 331.24,
- "text": "from"
- },
- {
- "id": 789,
- "start": 331.24,
- "end": 331.72,
- "text": "developing"
- },
- {
- "id": 790,
- "start": 331.72,
- "end": 332.04,
- "text": "robots."
- },
- {
- "id": 791,
- "start": 332.04,
- "end": 332.11,
- "text": "They"
- },
- {
- "id": 792,
- "start": 332.11,
- "end": 332.28,
- "text": "can"
- },
- {
- "id": 793,
- "start": 332.28,
- "end": 332.69,
- "text": "feel"
- },
- {
- "id": 794,
- "start": 332.69,
- "end": 333.21,
- "text": "anything"
- },
- {
- "id": 795,
- "start": 334.13,
- "end": 334.17,
- "text": "there,"
- },
- {
- "id": 796,
- "start": 334.9,
- "end": 335.1,
- "text": "but"
- },
- {
- "id": 797,
- "start": 335.24,
- "end": 335.53,
- "text": "we"
- },
- {
- "id": 798,
- "start": 335.53,
- "end": 335.78,
- "text": "feel"
- },
- {
- "id": 799,
- "start": 335.78,
- "end": 335.97,
- "text": "for"
- },
- {
- "id": 800,
- "start": 335.97,
- "end": 336.22,
- "text": "that."
- },
- {
- "id": 801,
- "start": 337.77,
- "end": 337.9,
- "text": "And"
- },
- {
- "id": 802,
- "start": 337.97,
- "end": 338.22,
- "text": "that"
- },
- {
- "id": 803,
- "start": 338.22,
- "end": 339,
- "text": "matters"
- },
- {
- "id": 804,
- "start": 339.03,
- "end": 339.55,
- "text": "because"
- },
- {
- "id": 805,
- "start": 339.58,
- "end": 339.78,
- "text": "if"
- },
- {
- "id": 806,
- "start": 339.78,
- "end": 339.86,
- "text": "we're"
- },
- {
- "id": 807,
- "start": 339.86,
- "end": 340.17,
- "text": "trying"
- },
- {
- "id": 808,
- "start": 340.17,
- "end": 340.29,
- "text": "to"
- },
- {
- "id": 809,
- "start": 340.32,
- "end": 340.94,
- "text": "integrate"
- },
- {
- "id": 810,
- "start": 340.94,
- "end": 341.41,
- "text": "robots"
- },
- {
- "id": 811,
- "start": 341.41,
- "end": 341.54,
- "text": "into"
- },
- {
- "id": 812,
- "start": 341.55,
- "end": 341.7,
- "text": "the"
- },
- {
- "id": 813,
- "start": 341.7,
- "end": 342.05,
- "text": "shared"
- },
- {
- "id": 814,
- "start": 342.05,
- "end": 342.68,
- "text": "spaces"
- },
- {
- "id": 815,
- "start": 342.73,
- "end": 342.96,
- "text": "need"
- },
- {
- "id": 816,
- "start": 342.96,
- "end": 343.05,
- "text": "to"
- },
- {
- "id": 817,
- "start": 343.08,
- "end": 343.81,
- "text": "understand"
- },
- {
- "id": 818,
- "start": 343.81,
- "end": 343.93,
- "text": "that"
- },
- {
- "id": 819,
- "start": 343.93,
- "end": 344.35,
- "text": "people"
- },
- {
- "id": 820,
- "start": 344.37,
- "end": 344.63,
- "text": "treat"
- },
- {
- "id": 821,
- "start": 344.63,
- "end": 344.78,
- "text": "them"
- },
- {
- "id": 822,
- "start": 344.78,
- "end": 345.38,
- "text": "differently"
- },
- {
- "id": 823,
- "start": 345.38,
- "end": 345.53,
- "text": "than"
- },
- {
- "id": 824,
- "start": 345.53,
- "end": 345.73,
- "text": "other"
- },
- {
- "id": 825,
- "start": 345.74,
- "end": 346.6,
- "text": "devices"
- },
- {
- "id": 826,
- "start": 347.39,
- "end": 347.64,
- "text": "that"
- },
- {
- "id": 827,
- "start": 347.65,
- "end": 347.77,
- "text": "in"
- },
- {
- "id": 828,
- "start": 347.77,
- "end": 348.08,
- "text": "some"
- },
- {
- "id": 829,
- "start": 348.08,
- "end": 348.94,
- "text": "cases."
- },
- {
- "id": 830,
- "start": 349.19,
- "end": 349.36,
- "text": "For"
- },
- {
- "id": 831,
- "start": 349.36,
- "end": 349.98,
- "text": "example,"
- },
- {
- "id": 832,
- "start": 349.98,
- "end": 350.1,
- "text": "the"
- },
- {
- "id": 833,
- "start": 350.1,
- "end": 350.39,
- "text": "case"
- },
- {
- "id": 834,
- "start": 350.39,
- "end": 350.47,
- "text": "of"
- },
- {
- "id": 835,
- "start": 350.47,
- "end": 350.53,
- "text": "a"
- },
- {
- "id": 836,
- "start": 350.53,
- "end": 351.02,
- "text": "soldier"
- },
- {
- "id": 837,
- "start": 351.02,
- "end": 351.08,
- "text": "who"
- },
- {
- "id": 838,
- "start": 351.09,
- "end": 351.42,
- "text": "becomes"
- },
- {
- "id": 839,
- "start": 351.42,
- "end": 351.99,
- "text": "emotionally"
- },
- {
- "id": 840,
- "start": 351.99,
- "end": 352.52,
- "text": "attached"
- },
- {
- "id": 841,
- "start": 352.52,
- "end": 352.62,
- "text": "to"
- },
- {
- "id": 842,
- "start": 352.62,
- "end": 352.75,
- "text": "the"
- },
- {
- "id": 843,
- "start": 352.75,
- "end": 353.1,
- "text": "robot."
- },
- {
- "id": 844,
- "start": 353.14,
- "end": 353.34,
- "text": "They"
- },
- {
- "id": 845,
- "start": 353.34,
- "end": 353.59,
- "text": "work."
- },
- {
- "id": 846,
- "start": 353.61,
- "end": 353.81,
- "text": "Well,"
- },
- {
- "id": 847,
- "start": 353.84,
- "end": 354.41,
- "text": "if"
- },
- {
- "id": 848,
- "start": 354.45,
- "end": 354.64,
- "text": "that"
- },
- {
- "id": 849,
- "start": 354.65,
- "end": 354.8,
- "text": "can"
- },
- {
- "id": 850,
- "start": 354.8,
- "end": 354.92,
- "text": "be"
- },
- {
- "id": 851,
- "start": 354.95,
- "end": 355.31,
- "text": "anything"
- },
- {
- "id": 852,
- "start": 355.31,
- "end": 355.46,
- "text": "from"
- },
- {
- "id": 853,
- "start": 355.49,
- "end": 355.93,
- "text": "inefficient"
- },
- {
- "id": 854,
- "start": 355.96,
- "end": 356.12,
- "text": "to"
- },
- {
- "id": 855,
- "start": 356.14,
- "end": 356.98,
- "text": "dangerous."
- },
- {
- "id": 856,
- "start": 358.5,
- "end": 358.63,
- "text": "But"
- },
- {
- "id": 857,
- "start": 358.67,
- "end": 358.8,
- "text": "in"
- },
- {
- "id": 858,
- "start": 358.8,
- "end": 359.02,
- "text": "other"
- },
- {
- "id": 859,
- "start": 359.02,
- "end": 359.43,
- "text": "cases."
- },
- {
- "id": 860,
- "start": 359.43,
- "end": 359.49,
- "text": "It"
- },
- {
- "id": 861,
- "start": 359.49,
- "end": 359.63,
- "text": "can"
- },
- {
- "id": 862,
- "start": 359.63,
- "end": 359.94,
- "text": "actually"
- },
- {
- "id": 863,
- "start": 359.94,
- "end": 360.16,
- "text": "be"
- },
- {
- "id": 864,
- "start": 360.16,
- "end": 360.49,
- "text": "used"
- },
- {
- "id": 865,
- "start": 360.49,
- "end": 360.67,
- "text": "for"
- },
- {
- "id": 866,
- "start": 360.68,
- "end": 360.77,
- "text": "the"
- },
- {
- "id": 867,
- "start": 360.77,
- "end": 361.34,
- "text": "faster"
- },
- {
- "id": 868,
- "start": 361.35,
- "end": 361.51,
- "text": "this"
- },
- {
- "id": 869,
- "start": 361.51,
- "end": 361.92,
- "text": "emotional"
- },
- {
- "id": 870,
- "start": 361.92,
- "end": 362.45,
- "text": "connection"
- },
- {
- "id": 871,
- "start": 362.45,
- "end": 362.56,
- "text": "to,"
- },
- {
- "id": 872,
- "start": 362.61,
- "end": 363.28,
- "text": "but"
- },
- {
- "id": 873,
- "start": 364.16,
- "end": 364.38,
- "text": "we're"
- },
- {
- "id": 874,
- "start": 364.38,
- "end": 364.63,
- "text": "really"
- },
- {
- "id": 875,
- "start": 364.63,
- "end": 364.96,
- "text": "seeing"
- },
- {
- "id": 876,
- "start": 364.96,
- "end": 365.15,
- "text": "some"
- },
- {
- "id": 877,
- "start": 365.15,
- "end": 365.5,
- "text": "great"
- },
- {
- "id": 878,
- "start": 365.5,
- "end": 365.75,
- "text": "use"
- },
- {
- "id": 879,
- "start": 365.75,
- "end": 366.26,
- "text": "cases."
- },
- {
- "id": 880,
- "start": 366.26,
- "end": 366.38,
- "text": "For"
- },
- {
- "id": 881,
- "start": 366.38,
- "end": 366.87,
- "text": "example,"
- },
- {
- "id": 882,
- "start": 366.87,
- "end": 367.29,
- "text": "robots"
- },
- {
- "id": 883,
- "start": 367.29,
- "end": 367.59,
- "text": "working"
- },
- {
- "id": 884,
- "start": 367.59,
- "end": 367.78,
- "text": "with"
- },
- {
- "id": 885,
- "start": 367.81,
- "end": 368.41,
- "text": "autistic"
- },
- {
- "id": 886,
- "start": 368.41,
- "end": 368.95,
- "text": "children"
- },
- {
- "id": 887,
- "start": 368.95,
- "end": 369.1,
- "text": "to"
- },
- {
- "id": 888,
- "start": 369.13,
- "end": 369.67,
- "text": "engage"
- },
- {
- "id": 889,
- "start": 369.67,
- "end": 369.93,
- "text": "them"
- },
- {
- "id": 890,
- "start": 369.93,
- "end": 370.1,
- "text": "in"
- },
- {
- "id": 891,
- "start": 370.1,
- "end": 370.39,
- "text": "ways"
- },
- {
- "id": 892,
- "start": 370.39,
- "end": 370.48,
- "text": "that"
- },
- {
- "id": 893,
- "start": 370.48,
- "end": 370.58,
- "text": "we"
- },
- {
- "id": 894,
- "start": 370.58,
- "end": 370.96,
- "text": "haven't"
- },
- {
- "id": 895,
- "start": 370.96,
- "end": 371.18,
- "text": "seen"
- },
- {
- "id": 896,
- "start": 371.18,
- "end": 372.03,
- "text": "previously"
- },
- {
- "id": 897,
- "start": 372.7,
- "end": 373.1,
- "text": "robot's"
- },
- {
- "id": 898,
- "start": 373.17,
- "end": 373.51,
- "text": "working"
- },
- {
- "id": 899,
- "start": 373.51,
- "end": 373.64,
- "text": "with"
- },
- {
- "id": 900,
- "start": 373.64,
- "end": 374.23,
- "text": "teachers"
- },
- {
- "id": 901,
- "start": 374.23,
- "end": 374.35,
- "text": "to"
- },
- {
- "id": 902,
- "start": 374.35,
- "end": 374.75,
- "text": "engage"
- },
- {
- "id": 903,
- "start": 374.75,
- "end": 375.03,
- "text": "kids"
- },
- {
- "id": 904,
- "start": 375.03,
- "end": 375.21,
- "text": "and"
- },
- {
- "id": 905,
- "start": 375.2,
- "end": 375.55,
- "text": "learning"
- },
- {
- "id": 906,
- "start": 375.61,
- "end": 375.76,
- "text": "with"
- },
- {
- "id": 907,
- "start": 375.76,
- "end": 375.89,
- "text": "new"
- },
- {
- "id": 908,
- "start": 375.89,
- "end": 376.65,
- "text": "results"
- },
- {
- "id": 909,
- "start": 377.34,
- "end": 377.45,
- "text": "and"
- },
- {
- "id": 910,
- "start": 377.52,
- "end": 377.7,
- "text": "it's"
- },
- {
- "id": 911,
- "start": 377.7,
- "end": 377.88,
- "text": "not"
- },
- {
- "id": 912,
- "start": 377.88,
- "end": 378.07,
- "text": "just"
- },
- {
- "id": 913,
- "start": 378.07,
- "end": 378.18,
- "text": "for"
- },
- {
- "id": 914,
- "start": 378.18,
- "end": 378.87,
- "text": "kids"
- },
- {
- "id": 915,
- "start": 379.75,
- "end": 380.04,
- "text": "early"
- },
- {
- "id": 916,
- "start": 380.04,
- "end": 380.42,
- "text": "studies"
- },
- {
- "id": 917,
- "start": 380.42,
- "end": 380.74,
- "text": "show"
- },
- {
- "id": 918,
- "start": 380.74,
- "end": 381.05,
- "text": "that"
- },
- {
- "id": 919,
- "start": 381.07,
- "end": 381.26,
- "text": "we"
- },
- {
- "id": 920,
- "start": 381.38,
- "end": 381.54,
- "text": "can"
- },
- {
- "id": 921,
- "start": 381.54,
- "end": 381.75,
- "text": "help"
- },
- {
- "id": 922,
- "start": 381.75,
- "end": 382.27,
- "text": "doctors"
- },
- {
- "id": 923,
- "start": 382.27,
- "end": 382.41,
- "text": "and"
- },
- {
- "id": 924,
- "start": 382.41,
- "end": 383.01,
- "text": "patients"
- },
- {
- "id": 925,
- "start": 383.01,
- "end": 383.07,
- "text": "and"
- },
- {
- "id": 926,
- "start": 383.07,
- "end": 383.37,
- "text": "health"
- },
- {
- "id": 927,
- "start": 383.38,
- "end": 383.66,
- "text": "care"
- },
- {
- "id": 928,
- "start": 383.66,
- "end": 384.4,
- "text": "settings"
- },
- {
- "id": 929,
- "start": 384.94,
- "end": 385,
- "text": "and"
- },
- {
- "id": 930,
- "start": 385.54,
- "end": 385.74,
- "text": "this"
- },
- {
- "id": 931,
- "start": 385.74,
- "end": 385.9,
- "text": "is"
- },
- {
- "id": 932,
- "start": 385.9,
- "end": 385.98,
- "text": "the"
- },
- {
- "id": 933,
- "start": 385.98,
- "end": 386.41,
- "text": "pirate"
- },
- {
- "id": 934,
- "start": 386.41,
- "end": 386.59,
- "text": "b."
- },
- {
- "id": 935,
- "start": 386.59,
- "end": 386.76,
- "text": "b."
- },
- {
- "id": 936,
- "start": 386.76,
- "end": 386.91,
- "text": "c."
- },
- {
- "id": 937,
- "start": 387.01,
- "end": 387.33,
- "text": "But"
- },
- {
- "id": 938,
- "start": 387.36,
- "end": 387.56,
- "text": "it's"
- },
- {
- "id": 939,
- "start": 387.56,
- "end": 387.9,
- "text": "used"
- },
- {
- "id": 940,
- "start": 387.93,
- "end": 388.05,
- "text": "in"
- },
- {
- "id": 941,
- "start": 388.05,
- "end": 388.47,
- "text": "nursing"
- },
- {
- "id": 942,
- "start": 388.47,
- "end": 388.94,
- "text": "homes"
- },
- {
- "id": 943,
- "start": 388.97,
- "end": 389.16,
- "text": "with"
- },
- {
- "id": 944,
- "start": 389.16,
- "end": 389.63,
- "text": "dementia"
- },
- {
- "id": 945,
- "start": 389.63,
- "end": 390.37,
- "text": "patients"
- },
- {
- "id": 946,
- "start": 390.53,
- "end": 390.66,
- "text": "has"
- },
- {
- "id": 947,
- "start": 390.65,
- "end": 390.78,
- "text": "been"
- },
- {
- "id": 948,
- "start": 390.78,
- "end": 391.08,
- "text": "around"
- },
- {
- "id": 949,
- "start": 391.08,
- "end": 391.22,
- "text": "for"
- },
- {
- "id": 950,
- "start": 391.22,
- "end": 391.31,
- "text": "a"
- },
- {
- "id": 951,
- "start": 391.31,
- "end": 391.83,
- "text": "while"
- },
- {
- "id": 952,
- "start": 392.3,
- "end": 392.47,
- "text": "I"
- },
- {
- "id": 953,
- "start": 392.48,
- "end": 393.08,
- "text": "remember"
- },
- {
- "id": 954,
- "start": 393.37,
- "end": 393.81,
- "text": "years"
- },
- {
- "id": 955,
- "start": 393.81,
- "end": 394.06,
- "text": "ago."
- },
- {
- "id": 956,
- "start": 394.06,
- "end": 394.25,
- "text": "Being"
- },
- {
- "id": 957,
- "start": 394.28,
- "end": 394.37,
- "text": "a"
- },
- {
- "id": 958,
- "start": 394.37,
- "end": 395.1,
- "text": "party"
- },
- {
- "id": 959,
- "start": 395.59,
- "end": 395.73,
- "text": "and"
- },
- {
- "id": 960,
- "start": 395.75,
- "end": 396.19,
- "text": "telling"
- },
- {
- "id": 961,
- "start": 396.19,
- "end": 396.44,
- "text": "someone"
- },
- {
- "id": 962,
- "start": 396.44,
- "end": 396.7,
- "text": "about"
- },
- {
- "id": 963,
- "start": 396.7,
- "end": 396.81,
- "text": "this"
- },
- {
- "id": 964,
- "start": 396.84,
- "end": 397.34,
- "text": "throwback"
- },
- {
- "id": 965,
- "start": 397.78,
- "end": 397.97,
- "text": "and"
- },
- {
- "id": 966,
- "start": 398.32,
- "end": 398.54,
- "text": "her"
- },
- {
- "id": 967,
- "start": 398.54,
- "end": 399.06,
- "text": "response"
- },
- {
- "id": 968,
- "start": 399.06,
- "end": 399.65,
- "text": "was"
- },
- {
- "id": 969,
- "start": 400.28,
- "end": 400.5,
- "text": "on"
- },
- {
- "id": 970,
- "start": 400.5,
- "end": 400.63,
- "text": "my"
- },
- {
- "id": 971,
- "start": 400.64,
- "end": 401.24,
- "text": "cart."
- },
- {
- "id": 972,
- "start": 405.04,
- "end": 405.11,
- "text": "I"
- },
- {
- "id": 973,
- "start": 405.13,
- "end": 405.45,
- "text": "can't"
- },
- {
- "id": 974,
- "start": 405.45,
- "end": 405.78,
- "text": "believe"
- },
- {
- "id": 975,
- "start": 405.78,
- "end": 405.89,
- "text": "we're"
- },
- {
- "id": 976,
- "start": 405.89,
- "end": 406.17,
- "text": "giving"
- },
- {
- "id": 977,
- "start": 406.17,
- "end": 406.5,
- "text": "people"
- },
- {
- "id": 978,
- "start": 406.51,
- "end": 407.09,
- "text": "robots"
- },
- {
- "id": 979,
- "start": 407.11,
- "end": 407.45,
- "text": "instead"
- },
- {
- "id": 980,
- "start": 407.45,
- "end": 407.54,
- "text": "of"
- },
- {
- "id": 981,
- "start": 407.54,
- "end": 407.89,
- "text": "human"
- },
- {
- "id": 982,
- "start": 407.89,
- "end": 408.49,
- "text": "care."
- },
- {
- "id": 983,
- "start": 410.45,
- "end": 410.53,
- "text": "And"
- },
- {
- "id": 984,
- "start": 410.64,
- "end": 410.83,
- "text": "this"
- },
- {
- "id": 985,
- "start": 410.83,
- "end": 410.94,
- "text": "is"
- },
- {
- "id": 986,
- "start": 410.94,
- "end": 411.03,
- "text": "a"
- },
- {
- "id": 987,
- "start": 411.03,
- "end": 411.35,
- "text": "really"
- },
- {
- "id": 988,
- "start": 411.35,
- "end": 411.68,
- "text": "common"
- },
- {
- "id": 989,
- "start": 411.68,
- "end": 412.39,
- "text": "response"
- },
- {
- "id": 990,
- "start": 412.42,
- "end": 412.68,
- "text": "and"
- },
- {
- "id": 991,
- "start": 412.71,
- "end": 412.81,
- "text": "I"
- },
- {
- "id": 992,
- "start": 412.81,
- "end": 413.01,
- "text": "think"
- },
- {
- "id": 993,
- "start": 413.01,
- "end": 413.17,
- "text": "it's"
- },
- {
- "id": 994,
- "start": 413.26,
- "end": 414.05,
- "text": "absolutely"
- },
- {
- "id": 995,
- "start": 414.05,
- "end": 414.72,
- "text": "correct"
- },
- {
- "id": 996,
- "start": 414.93,
- "end": 415.3,
- "text": "because"
- },
- {
- "id": 997,
- "start": 415.3,
- "end": 415.61,
- "text": "that"
- },
- {
- "id": 998,
- "start": 415.61,
- "end": 415.91,
- "text": "would"
- },
- {
- "id": 999,
- "start": 415.91,
- "end": 416.15,
- "text": "be"
- },
- {
- "id": 1000,
- "start": 416.18,
- "end": 417.01,
- "text": "terrible."
- },
- {
- "id": 1001,
- "start": 417.44,
- "end": 417.49,
- "text": "And"
- },
- {
- "id": 1002,
- "start": 417.89,
- "end": 418.05,
- "text": "in"
- },
- {
- "id": 1003,
- "start": 418.05,
- "end": 418.24,
- "text": "this"
- },
- {
- "id": 1004,
- "start": 418.24,
- "end": 418.46,
- "text": "case."
- },
- {
- "id": 1005,
- "start": 418.46,
- "end": 418.6,
- "text": "It's"
- },
- {
- "id": 1006,
- "start": 418.6,
- "end": 418.81,
- "text": "not"
- },
- {
- "id": 1007,
- "start": 418.81,
- "end": 418.9,
- "text": "with"
- },
- {
- "id": 1008,
- "start": 418.9,
- "end": 419.08,
- "text": "this"
- },
- {
- "id": 1009,
- "start": 419.08,
- "end": 419.41,
- "text": "robot"
- },
- {
- "id": 1010,
- "start": 419.41,
- "end": 419.93,
- "text": "replace"
- },
- {
- "id": 1011,
- "start": 419.97,
- "end": 420.27,
- "text": "it"
- },
- {
- "id": 1012,
- "start": 420.83,
- "end": 420.99,
- "text": "with"
- },
- {
- "id": 1013,
- "start": 420.99,
- "end": 421.18,
- "text": "this"
- },
- {
- "id": 1014,
- "start": 421.18,
- "end": 421.54,
- "text": "robot"
- },
- {
- "id": 1015,
- "start": 421.54,
- "end": 422.25,
- "text": "replaces"
- },
- {
- "id": 1016,
- "start": 422.28,
- "end": 422.49,
- "text": "his"
- },
- {
- "id": 1017,
- "start": 422.55,
- "end": 422.9,
- "text": "animal"
- },
- {
- "id": 1018,
- "start": 422.9,
- "end": 423.62,
- "text": "therapy"
- },
- {
- "id": 1019,
- "start": 423.98,
- "end": 424.14,
- "text": "in"
- },
- {
- "id": 1020,
- "start": 424.14,
- "end": 424.84,
- "text": "context"
- },
- {
- "id": 1021,
- "start": 424.86,
- "end": 425.16,
- "text": "which"
- },
- {
- "id": 1022,
- "start": 425.19,
- "end": 425.61,
- "text": "he"
- },
- {
- "id": 1023,
- "start": 425.61,
- "end": 425.82,
- "text": "was"
- },
- {
- "id": 1024,
- "start": 425.83,
- "end": 426.14,
- "text": "real"
- },
- {
- "id": 1025,
- "start": 426.14,
- "end": 426.87,
- "text": "animals."
- },
- {
- "id": 1026,
- "start": 427.23,
- "end": 427.44,
- "text": "We"
- },
- {
- "id": 1027,
- "start": 427.44,
- "end": 427.78,
- "text": "can"
- },
- {
- "id": 1028,
- "start": 427.78,
- "end": 427.95,
- "text": "use"
- },
- {
- "id": 1029,
- "start": 427.98,
- "end": 428.38,
- "text": "robots"
- },
- {
- "id": 1030,
- "start": 428.38,
- "end": 428.66,
- "text": "because"
- },
- {
- "id": 1031,
- "start": 428.66,
- "end": 428.98,
- "text": "people"
- },
- {
- "id": 1032,
- "start": 429.04,
- "end": 429.96,
- "text": "consistently"
- },
- {
- "id": 1033,
- "start": 429.96,
- "end": 430.32,
- "text": "treat"
- },
- {
- "id": 1034,
- "start": 430.32,
- "end": 430.63,
- "text": "them"
- },
- {
- "id": 1035,
- "start": 430.66,
- "end": 430.87,
- "text": "like"
- },
- {
- "id": 1036,
- "start": 430.87,
- "end": 431.33,
- "text": "more."
- },
- {
- "id": 1037,
- "start": 431.72,
- "end": 431.99,
- "text": "More"
- },
- {
- "id": 1038,
- "start": 431.99,
- "end": 432.23,
- "text": "like"
- },
- {
- "id": 1039,
- "start": 432.23,
- "end": 432.3,
- "text": "an"
- },
- {
- "id": 1040,
- "start": 432.34,
- "end": 432.88,
- "text": "animal"
- },
- {
- "id": 1041,
- "start": 432.91,
- "end": 433.12,
- "text": "and"
- },
- {
- "id": 1042,
- "start": 433.14,
- "end": 433.32,
- "text": "have"
- },
- {
- "id": 1043,
- "start": 433.41,
- "end": 433.67,
- "text": "it"
- },
- {
- "id": 1044,
- "start": 435.5,
- "end": 436.19,
- "text": "acknowledging"
- },
- {
- "id": 1045,
- "start": 436.19,
- "end": 436.35,
- "text": "this"
- },
- {
- "id": 1046,
- "start": 436.36,
- "end": 436.74,
- "text": "emotional"
- },
- {
- "id": 1047,
- "start": 436.74,
- "end": 437.21,
- "text": "connection."
- },
- {
- "id": 1048,
- "start": 437.23,
- "end": 437.52,
- "text": "Robert,"
- },
- {
- "id": 1049,
- "start": 437.58,
- "end": 437.73,
- "text": "can"
- },
- {
- "id": 1050,
- "start": 437.73,
- "end": 438.02,
- "text": "also"
- },
- {
- "id": 1051,
- "start": 438.02,
- "end": 438.24,
- "text": "help"
- },
- {
- "id": 1052,
- "start": 438.24,
- "end": 438.41,
- "text": "us"
- },
- {
- "id": 1053,
- "start": 438.41,
- "end": 438.93,
- "text": "anticipate"
- },
- {
- "id": 1054,
- "start": 438.93,
- "end": 439.85,
- "text": "challenges"
- },
- {
- "id": 1055,
- "start": 439.88,
- "end": 440.13,
- "text": "as"
- },
- {
- "id": 1056,
- "start": 440.13,
- "end": 440.28,
- "text": "these"
- },
- {
- "id": 1057,
- "start": 440.28,
- "end": 440.87,
- "text": "devices."
- },
- {
- "id": 1058,
- "start": 440.87,
- "end": 441.23,
- "text": "Move"
- },
- {
- "id": 1059,
- "start": 441.23,
- "end": 441.42,
- "text": "into"
- },
- {
- "id": 1060,
- "start": 441.43,
- "end": 441.57,
- "text": "more"
- },
- {
- "id": 1061,
- "start": 441.6,
- "end": 442,
- "text": "intimate"
- },
- {
- "id": 1062,
- "start": 442,
- "end": 442.34,
- "text": "areas"
- },
- {
- "id": 1063,
- "start": 442.34,
- "end": 442.43,
- "text": "of"
- },
- {
- "id": 1064,
- "start": 442.43,
- "end": 442.78,
- "text": "people's"
- },
- {
- "id": 1065,
- "start": 442.78,
- "end": 443.4,
- "text": "lives"
- },
- {
- "id": 1066,
- "start": 443.74,
- "end": 443.79,
- "text": "and"
- },
- {
- "id": 1067,
- "start": 444.1,
- "end": 444.23,
- "text": "for"
- },
- {
- "id": 1068,
- "start": 444.23,
- "end": 444.8,
- "text": "example"
- },
- {
- "id": 1069,
- "start": 444.83,
- "end": 444.98,
- "text": "is"
- },
- {
- "id": 1070,
- "start": 444.98,
- "end": 445.07,
- "text": "it."
- },
- {
- "id": 1071,
- "start": 445.07,
- "end": 445.49,
- "text": "o.k."
- },
- {
- "id": 1072,
- "start": 445.5,
- "end": 445.63,
- "text": "If"
- },
- {
- "id": 1073,
- "start": 445.63,
- "end": 445.74,
- "text": "your"
- },
- {
- "id": 1074,
- "start": 445.74,
- "end": 446.43,
- "text": "child's"
- },
- {
- "id": 1075,
- "start": 446.68,
- "end": 447,
- "text": "teddy"
- },
- {
- "id": 1076,
- "start": 446.99,
- "end": 447.2,
- "text": "bear"
- },
- {
- "id": 1077,
- "start": 447.21,
- "end": 447.54,
- "text": "robot"
- },
- {
- "id": 1078,
- "start": 447.54,
- "end": 447.87,
- "text": "records"
- },
- {
- "id": 1079,
- "start": 447.87,
- "end": 448.19,
- "text": "private"
- },
- {
- "id": 1080,
- "start": 448.19,
- "end": 449.18,
- "text": "conversations."
- },
- {
- "id": 1081,
- "start": 449.76,
- "end": 449.89,
- "text": "Is"
- },
- {
- "id": 1082,
- "start": 449.89,
- "end": 449.98,
- "text": "it."
- },
- {
- "id": 1083,
- "start": 449.98,
- "end": 450.29,
- "text": "o.k."
- },
- {
- "id": 1084,
- "start": 450.29,
- "end": 450.41,
- "text": "If"
- },
- {
- "id": 1085,
- "start": 450.41,
- "end": 450.58,
- "text": "your"
- },
- {
- "id": 1086,
- "start": 450.59,
- "end": 451.04,
- "text": "sex"
- },
- {
- "id": 1087,
- "start": 451.04,
- "end": 451.47,
- "text": "robot"
- },
- {
- "id": 1088,
- "start": 451.47,
- "end": 451.65,
- "text": "has"
- },
- {
- "id": 1089,
- "start": 451.65,
- "end": 452.31,
- "text": "compelling"
- },
- {
- "id": 1090,
- "start": 452.34,
- "end": 452.54,
- "text": "in"
- },
- {
- "id": 1091,
- "start": 452.58,
- "end": 452.86,
- "text": "our"
- },
- {
- "id": 1092,
- "start": 452.88,
- "end": 453.79,
- "text": "purchasers"
- },
- {
- "id": 1093,
- "start": 455.26,
- "end": 455.67,
- "text": "because"
- },
- {
- "id": 1094,
- "start": 455.73,
- "end": 456.02,
- "text": "rope."
- },
- {
- "id": 1095,
- "start": 456.02,
- "end": 456.32,
- "text": "That's"
- },
- {
- "id": 1096,
- "start": 456.32,
- "end": 456.65,
- "text": "plus"
- },
- {
- "id": 1097,
- "start": 456.66,
- "end": 457.78,
- "text": "capitalism"
- },
- {
- "id": 1098,
- "start": 457.81,
- "end": 458.17,
- "text": "equals"
- },
- {
- "id": 1099,
- "start": 458.17,
- "end": 458.91,
- "text": "questions"
- },
- {
- "id": 1100,
- "start": 458.94,
- "end": 459.52,
- "text": "around"
- },
- {
- "id": 1101,
- "start": 459.72,
- "end": 460.18,
- "text": "consumer"
- },
- {
- "id": 1102,
- "start": 460.18,
- "end": 460.79,
- "text": "protection"
- },
- {
- "id": 1103,
- "start": 460.79,
- "end": 460.89,
- "text": "and"
- },
- {
- "id": 1104,
- "start": 460.89,
- "end": 461.58,
- "text": "privacy"
- },
- {
- "id": 1105,
- "start": 462.47,
- "end": 462.59,
- "text": "and"
- },
- {
- "id": 1106,
- "start": 462.68,
- "end": 462.9,
- "text": "those"
- },
- {
- "id": 1107,
- "start": 462.9,
- "end": 463.14,
- "text": "aren't"
- },
- {
- "id": 1108,
- "start": 463.14,
- "end": 463.27,
- "text": "the"
- },
- {
- "id": 1109,
- "start": 463.27,
- "end": 463.54,
- "text": "only"
- },
- {
- "id": 1110,
- "start": 463.54,
- "end": 463.9,
- "text": "reason,"
- },
- {
- "id": 1111,
- "start": 463.9,
- "end": 464.08,
- "text": "said"
- },
- {
- "id": 1112,
- "start": 464.08,
- "end": 464.17,
- "text": "her"
- },
- {
- "id": 1113,
- "start": 464.16,
- "end": 464.76,
- "text": "behaviour"
- },
- {
- "id": 1114,
- "start": 464.76,
- "end": 465.04,
- "text": "around"
- },
- {
- "id": 1115,
- "start": 465.04,
- "end": 465.21,
- "text": "these"
- },
- {
- "id": 1116,
- "start": 465.21,
- "end": 465.65,
- "text": "machines"
- },
- {
- "id": 1117,
- "start": 465.65,
- "end": 465.82,
- "text": "could,"
- },
- {
- "id": 1118,
- "start": 465.82,
- "end": 466.25,
- "text": "madam."
- },
- {
- "id": 1119,
- "start": 468.75,
- "end": 468.83,
- "text": "A"
- },
- {
- "id": 1120,
- "start": 468.83,
- "end": 469.09,
- "text": "few"
- },
- {
- "id": 1121,
- "start": 469.09,
- "end": 469.36,
- "text": "years"
- },
- {
- "id": 1122,
- "start": 469.36,
- "end": 470.12,
- "text": "after"
- },
- {
- "id": 1123,
- "start": 470.15,
- "end": 470.36,
- "text": "that"
- },
- {
- "id": 1124,
- "start": 470.36,
- "end": 470.7,
- "text": "first"
- },
- {
- "id": 1125,
- "start": 470.7,
- "end": 471.09,
- "text": "initial"
- },
- {
- "id": 1126,
- "start": 471.09,
- "end": 471.71,
- "text": "experience."
- },
- {
- "id": 1127,
- "start": 471.71,
- "end": 471.8,
- "text": "I"
- },
- {
- "id": 1128,
- "start": 471.8,
- "end": 472.07,
- "text": "had"
- },
- {
- "id": 1129,
- "start": 472.07,
- "end": 472.21,
- "text": "with"
- },
- {
- "id": 1130,
- "start": 472.21,
- "end": 472.42,
- "text": "this"
- },
- {
- "id": 1131,
- "start": 472.42,
- "end": 472.67,
- "text": "baby"
- },
- {
- "id": 1132,
- "start": 472.67,
- "end": 473.13,
- "text": "dinosaur"
- },
- {
- "id": 1133,
- "start": 473.13,
- "end": 473.58,
- "text": "robot"
- },
- {
- "id": 1134,
- "start": 474.43,
- "end": 474.69,
- "text": "do"
- },
- {
- "id": 1135,
- "start": 474.7,
- "end": 475.16,
- "text": "workshop"
- },
- {
- "id": 1136,
- "start": 475.16,
- "end": 475.29,
- "text": "with"
- },
- {
- "id": 1137,
- "start": 475.29,
- "end": 475.4,
- "text": "her"
- },
- {
- "id": 1138,
- "start": 475.39,
- "end": 475.7,
- "text": "friend"
- },
- {
- "id": 1139,
- "start": 475.7,
- "end": 475.93,
- "text": "Hannah"
- },
- {
- "id": 1140,
- "start": 475.93,
- "end": 476.19,
- "text": "Scott."
- },
- {
- "id": 1141,
- "start": 476.2,
- "end": 476.62,
- "text": "Scott,"
- },
- {
- "id": 1142,
- "start": 476.9,
- "end": 477.27,
- "text": "then"
- },
- {
- "id": 1143,
- "start": 477.55,
- "end": 477.68,
- "text": "we"
- },
- {
- "id": 1144,
- "start": 477.68,
- "end": 477.89,
- "text": "took"
- },
- {
- "id": 1145,
- "start": 477.89,
- "end": 478.27,
- "text": "five"
- },
- {
- "id": 1146,
- "start": 478.27,
- "end": 478.36,
- "text": "of"
- },
- {
- "id": 1147,
- "start": 478.36,
- "end": 478.67,
- "text": "these"
- },
- {
- "id": 1148,
- "start": 478.67,
- "end": 478.9,
- "text": "baby"
- },
- {
- "id": 1149,
- "start": 478.9,
- "end": 479.32,
- "text": "dinosaur"
- },
- {
- "id": 1150,
- "start": 479.33,
- "end": 479.79,
- "text": "about"
- },
- {
- "id": 1151,
- "start": 479.84,
- "end": 480,
- "text": "we"
- },
- {
- "id": 1152,
- "start": 480,
- "end": 480.2,
- "text": "give"
- },
- {
- "id": 1153,
- "start": 480.2,
- "end": 480.33,
- "text": "them."
- },
- {
- "id": 1154,
- "start": 480.33,
- "end": 480.4,
- "text": "The"
- },
- {
- "id": 1155,
- "start": 480.39,
- "end": 480.75,
- "text": "five"
- },
- {
- "id": 1156,
- "start": 480.75,
- "end": 481.08,
- "text": "teams"
- },
- {
- "id": 1157,
- "start": 481.08,
- "end": 481.18,
- "text": "of"
- },
- {
- "id": 1158,
- "start": 481.18,
- "end": 481.72,
- "text": "people."
- },
- {
- "id": 1159,
- "start": 482.31,
- "end": 482.5,
- "text": "We"
- },
- {
- "id": 1160,
- "start": 482.5,
- "end": 482.7,
- "text": "had"
- },
- {
- "id": 1161,
- "start": 482.7,
- "end": 482.79,
- "text": "the"
- },
- {
- "id": 1162,
- "start": 482.79,
- "end": 483.22,
- "text": "name"
- },
- {
- "id": 1163,
- "start": 483.22,
- "end": 483.68,
- "text": "them"
- },
- {
- "id": 1164,
- "start": 483.96,
- "end": 484.12,
- "text": "and"
- },
- {
- "id": 1165,
- "start": 484.12,
- "end": 484.44,
- "text": "play"
- },
- {
- "id": 1166,
- "start": 484.44,
- "end": 484.6,
- "text": "with"
- },
- {
- "id": 1167,
- "start": 484.6,
- "end": 485.11,
- "text": "them"
- },
- {
- "id": 1168,
- "start": 485.14,
- "end": 485.24,
- "text": "and"
- },
- {
- "id": 1169,
- "start": 485.24,
- "end": 485.79,
- "text": "interact"
- },
- {
- "id": 1170,
- "start": 485.79,
- "end": 485.92,
- "text": "with"
- },
- {
- "id": 1171,
- "start": 485.92,
- "end": 486.31,
- "text": "them"
- },
- {
- "id": 1172,
- "start": 486.31,
- "end": 486.75,
- "text": "for"
- },
- {
- "id": 1173,
- "start": 486.83,
- "end": 487.17,
- "text": "about"
- },
- {
- "id": 1174,
- "start": 487.17,
- "end": 487.28,
- "text": "an"
- },
- {
- "id": 1175,
- "start": 487.28,
- "end": 487.74,
- "text": "hour."
- },
- {
- "id": 1176,
- "start": 488.8,
- "end": 489.07,
- "text": "Then"
- },
- {
- "id": 1177,
- "start": 489.07,
- "end": 489.19,
- "text": "we"
- },
- {
- "id": 1178,
- "start": 489.19,
- "end": 489.7,
- "text": "unveiled"
- },
- {
- "id": 1179,
- "start": 489.73,
- "end": 489.81,
- "text": "a"
- },
- {
- "id": 1180,
- "start": 489.81,
- "end": 490.06,
- "text": "him"
- },
- {
- "id": 1181,
- "start": 490.06,
- "end": 490.22,
- "text": "or"
- },
- {
- "id": 1182,
- "start": 490.23,
- "end": 490.33,
- "text": "a"
- },
- {
- "id": 1183,
- "start": 490.34,
- "end": 490.9,
- "text": "hatchet"
- },
- {
- "id": 1184,
- "start": 490.92,
- "end": 491.01,
- "text": "and"
- },
- {
- "id": 1185,
- "start": 491.01,
- "end": 491.14,
- "text": "we"
- },
- {
- "id": 1186,
- "start": 491.14,
- "end": 491.39,
- "text": "told"
- },
- {
- "id": 1187,
- "start": 491.39,
- "end": 491.51,
- "text": "them"
- },
- {
- "id": 1188,
- "start": 491.51,
- "end": 491.61,
- "text": "to"
- },
- {
- "id": 1189,
- "start": 491.61,
- "end": 492.01,
- "text": "torture"
- },
- {
- "id": 1190,
- "start": 492.01,
- "end": 492.1,
- "text": "and"
- },
- {
- "id": 1191,
- "start": 492.1,
- "end": 492.42,
- "text": "kill"
- },
- {
- "id": 1192,
- "start": 492.42,
- "end": 492.54,
- "text": "the"
- },
- {
- "id": 1193,
- "start": 492.62,
- "end": 493.03,
- "text": "row"
- },
- {
- "id": 1194,
- "start": 496.18,
- "end": 496.25,
- "text": "and"
- },
- {
- "id": 1195,
- "start": 496.78,
- "end": 496.98,
- "text": "then"
- },
- {
- "id": 1196,
- "start": 497.21,
- "end": 497.42,
- "text": "this"
- },
- {
- "id": 1197,
- "start": 497.42,
- "end": 497.67,
- "text": "turned"
- },
- {
- "id": 1198,
- "start": 497.67,
- "end": 497.78,
- "text": "out"
- },
- {
- "id": 1199,
- "start": 497.78,
- "end": 497.91,
- "text": "to"
- },
- {
- "id": 1200,
- "start": 497.91,
- "end": 498.03,
- "text": "be"
- },
- {
- "id": 1201,
- "start": 498.03,
- "end": 498.1,
- "text": "a"
- },
- {
- "id": 1202,
- "start": 498.1,
- "end": 498.29,
- "text": "little"
- },
- {
- "id": 1203,
- "start": 498.29,
- "end": 498.41,
- "text": "more"
- },
- {
- "id": 1204,
- "start": 498.41,
- "end": 499.01,
- "text": "dramatic"
- },
- {
- "id": 1205,
- "start": 499.01,
- "end": 499.13,
- "text": "than"
- },
- {
- "id": 1206,
- "start": 499.13,
- "end": 499.24,
- "text": "we"
- },
- {
- "id": 1207,
- "start": 499.24,
- "end": 499.9,
- "text": "expected"
- },
- {
- "id": 1208,
- "start": 499.9,
- "end": 500,
- "text": "it"
- },
- {
- "id": 1209,
- "start": 500,
- "end": 500.12,
- "text": "to"
- },
- {
- "id": 1210,
- "start": 500.12,
- "end": 500.3,
- "text": "be"
- },
- {
- "id": 1211,
- "start": 500.3,
- "end": 500.6,
- "text": "because"
- },
- {
- "id": 1212,
- "start": 500.6,
- "end": 500.9,
- "text": "none"
- },
- {
- "id": 1213,
- "start": 500.9,
- "end": 501.02,
- "text": "of"
- },
- {
- "id": 1214,
- "start": 501.02,
- "end": 501.1,
- "text": "the"
- },
- {
- "id": 1215,
- "start": 501.1,
- "end": 501.86,
- "text": "participants"
- },
- {
- "id": 1216,
- "start": 501.86,
- "end": 502.15,
- "text": "wouldn't"
- },
- {
- "id": 1217,
- "start": 502.44,
- "end": 502.71,
- "text": "even"
- },
- {
- "id": 1218,
- "start": 502.71,
- "end": 502.83,
- "text": "so"
- },
- {
- "id": 1219,
- "start": 502.83,
- "end": 503.01,
- "text": "much"
- },
- {
- "id": 1220,
- "start": 503.01,
- "end": 503.11,
- "text": "as"
- },
- {
- "id": 1221,
- "start": 503.11,
- "end": 503.56,
- "text": "straight."
- },
- {
- "id": 1222,
- "start": 504.21,
- "end": 504.36,
- "text": "A"
- },
- {
- "id": 1223,
- "start": 504.36,
- "end": 504.74,
- "text": "robot."
- },
- {
- "id": 1224,
- "start": 504.76,
- "end": 505.11,
- "text": "So"
- },
- {
- "id": 1225,
- "start": 505.42,
- "end": 505.57,
- "text": "we"
- },
- {
- "id": 1226,
- "start": 505.57,
- "end": 505.65,
- "text": "had"
- },
- {
- "id": 1227,
- "start": 505.65,
- "end": 505.75,
- "text": "to"
- },
- {
- "id": 1228,
- "start": 505.76,
- "end": 506.26,
- "text": "improvise."
- },
- {
- "id": 1229,
- "start": 507.35,
- "end": 507.77,
- "text": "End"
- },
- {
- "id": 1230,
- "start": 507.8,
- "end": 507.98,
- "text": "at"
- },
- {
- "id": 1231,
- "start": 507.99,
- "end": 508.16,
- "text": "some"
- },
- {
- "id": 1232,
- "start": 508.15,
- "end": 508.33,
- "text": "point."
- },
- {
- "id": 1233,
- "start": 508.33,
- "end": 508.42,
- "text": "He"
- },
- {
- "id": 1234,
- "start": 508.42,
- "end": 508.72,
- "text": "said"
- },
- {
- "id": 1235,
- "start": 508.73,
- "end": 509.38,
- "text": "o.k."
- },
- {
- "id": 1236,
- "start": 510.07,
- "end": 510.34,
- "text": "You"
- },
- {
- "id": 1237,
- "start": 510.34,
- "end": 510.51,
- "text": "can"
- },
- {
- "id": 1238,
- "start": 510.51,
- "end": 510.84,
- "text": "save"
- },
- {
- "id": 1239,
- "start": 510.84,
- "end": 511.17,
- "text": "your"
- },
- {
- "id": 1240,
- "start": 511.17,
- "end": 511.61,
- "text": "team's"
- },
- {
- "id": 1241,
- "start": 511.7,
- "end": 512.08,
- "text": "robot."
- },
- {
- "id": 1242,
- "start": 512.11,
- "end": 512.33,
- "text": "If"
- },
- {
- "id": 1243,
- "start": 512.33,
- "end": 512.45,
- "text": "you"
- },
- {
- "id": 1244,
- "start": 512.45,
- "end": 513.03,
- "text": "destroy"
- },
- {
- "id": 1245,
- "start": 513.06,
- "end": 513.63,
- "text": "another"
- },
- {
- "id": 1246,
- "start": 513.63,
- "end": 513.89,
- "text": "team"
- },
- {
- "id": 1247,
- "start": 513.9,
- "end": 514.21,
- "text": "throw."
- },
- {
- "id": 1248,
- "start": 514.23,
- "end": 514.6,
- "text": "I"
- },
- {
- "id": 1249,
- "start": 514.77,
- "end": 515.58,
- "text": "I."
- },
- {
- "id": 1250,
- "start": 516.52,
- "end": 516.6,
- "text": "And"
- },
- {
- "id": 1251,
- "start": 516.86,
- "end": 517.17,
- "text": "anyone"
- },
- {
- "id": 1252,
- "start": 517.17,
- "end": 517.34,
- "text": "that"
- },
- {
- "id": 1253,
- "start": 517.34,
- "end": 517.59,
- "text": "didn't"
- },
- {
- "id": 1254,
- "start": 517.59,
- "end": 517.84,
- "text": "work."
- },
- {
- "id": 1255,
- "start": 517.87,
- "end": 517.94,
- "text": "They"
- },
- {
- "id": 1256,
- "start": 517.94,
- "end": 518.21,
- "text": "couldn't"
- },
- {
- "id": 1257,
- "start": 518.22,
- "end": 518.35,
- "text": "do"
- },
- {
- "id": 1258,
- "start": 518.35,
- "end": 518.57,
- "text": "it."
- },
- {
- "id": 1259,
- "start": 518.61,
- "end": 518.76,
- "text": "So"
- },
- {
- "id": 1260,
- "start": 518.79,
- "end": 519.3,
- "text": "finally"
- },
- {
- "id": 1261,
- "start": 519.33,
- "end": 519.75,
- "text": "said,"
- },
- {
- "id": 1262,
- "start": 520.05,
- "end": 520.24,
- "text": "We're"
- },
- {
- "id": 1263,
- "start": 520.24,
- "end": 520.4,
- "text": "gonna"
- },
- {
- "id": 1264,
- "start": 520.41,
- "end": 520.88,
- "text": "destroy"
- },
- {
- "id": 1265,
- "start": 520.91,
- "end": 521.24,
- "text": "all"
- },
- {
- "id": 1266,
- "start": 521.28,
- "end": 521.39,
- "text": "the"
- },
- {
- "id": 1267,
- "start": 521.45,
- "end": 521.93,
- "text": "robots"
- },
- {
- "id": 1268,
- "start": 521.94,
- "end": 522.16,
- "text": "are"
- },
- {
- "id": 1269,
- "start": 522.17,
- "end": 522.5,
- "text": "someone"
- },
- {
- "id": 1270,
- "start": 522.5,
- "end": 522.7,
- "text": "takes"
- },
- {
- "id": 1271,
- "start": 522.7,
- "end": 522.78,
- "text": "a"
- },
- {
- "id": 1272,
- "start": 522.78,
- "end": 523.22,
- "text": "hatchet"
- },
- {
- "id": 1273,
- "start": 523.23,
- "end": 523.36,
- "text": "to"
- },
- {
- "id": 1274,
- "start": 523.36,
- "end": 523.57,
- "text": "one"
- },
- {
- "id": 1275,
- "start": 523.57,
- "end": 523.72,
- "text": "of"
- },
- {
- "id": 1276,
- "start": 523.72,
- "end": 524,
- "text": "them."
- },
- {
- "id": 1277,
- "start": 525.74,
- "end": 525.98,
- "text": "This"
- },
- {
- "id": 1278,
- "start": 525.98,
- "end": 526.24,
- "text": "guy"
- },
- {
- "id": 1279,
- "start": 526.24,
- "end": 526.51,
- "text": "stood"
- },
- {
- "id": 1280,
- "start": 526.51,
- "end": 526.8,
- "text": "up"
- },
- {
- "id": 1281,
- "start": 526.83,
- "end": 527.05,
- "text": "and"
- },
- {
- "id": 1282,
- "start": 527.05,
- "end": 527.29,
- "text": "he"
- },
- {
- "id": 1283,
- "start": 527.29,
- "end": 527.64,
- "text": "took"
- },
- {
- "id": 1284,
- "start": 527.64,
- "end": 527.73,
- "text": "the"
- },
- {
- "id": 1285,
- "start": 527.8,
- "end": 528.37,
- "text": "hatchet"
- },
- {
- "id": 1286,
- "start": 528.72,
- "end": 528.76,
- "text": "and"
- },
- {
- "id": 1287,
- "start": 529.32,
- "end": 529.45,
- "text": "the"
- },
- {
- "id": 1288,
- "start": 529.45,
- "end": 529.74,
- "text": "whole"
- },
- {
- "id": 1289,
- "start": 529.74,
- "end": 530.09,
- "text": "room,"
- },
- {
- "id": 1290,
- "start": 530.09,
- "end": 530.52,
- "text": "Winston."
- },
- {
- "id": 1291,
- "start": 530.53,
- "end": 530.72,
- "text": "See"
- },
- {
- "id": 1292,
- "start": 530.75,
- "end": 531.1,
- "text": "brother"
- },
- {
- "id": 1293,
- "start": 531.1,
- "end": 531.37,
- "text": "had"
- },
- {
- "id": 1294,
- "start": 531.36,
- "end": 531.44,
- "text": "to"
- },
- {
- "id": 1295,
- "start": 531.45,
- "end": 531.77,
- "text": "down"
- },
- {
- "id": 1296,
- "start": 531.76,
- "end": 531.83,
- "text": "on"
- },
- {
- "id": 1297,
- "start": 531.83,
- "end": 531.95,
- "text": "the"
- },
- {
- "id": 1298,
- "start": 531.95,
- "end": 532.43,
- "text": "robot's"
- },
- {
- "id": 1299,
- "start": 532.43,
- "end": 533.06,
- "text": "neck"
- },
- {
- "id": 1300,
- "start": 533.7,
- "end": 533.99,
- "text": "and"
- },
- {
- "id": 1301,
- "start": 534.07,
- "end": 534.31,
- "text": "there"
- },
- {
- "id": 1302,
- "start": 534.31,
- "end": 534.52,
- "text": "was"
- },
- {
- "id": 1303,
- "start": 534.52,
- "end": 534.69,
- "text": "this"
- },
- {
- "id": 1304,
- "start": 534.69,
- "end": 535.14,
- "text": "half"
- },
- {
- "id": 1305,
- "start": 535.14,
- "end": 535.87,
- "text": "joking."
- },
- {
- "id": 1306,
- "start": 536.02,
- "end": 536.66,
- "text": "Half"
- },
- {
- "id": 1307,
- "start": 536.69,
- "end": 537.43,
- "text": "serious"
- },
- {
- "id": 1308,
- "start": 537.43,
- "end": 537.81,
- "text": "moment"
- },
- {
- "id": 1309,
- "start": 537.81,
- "end": 537.88,
- "text": "of"
- },
- {
- "id": 1310,
- "start": 537.88,
- "end": 538.57,
- "text": "silence"
- },
- {
- "id": 1311,
- "start": 538.57,
- "end": 538.81,
- "text": "in"
- },
- {
- "id": 1312,
- "start": 538.81,
- "end": 538.91,
- "text": "the"
- },
- {
- "id": 1313,
- "start": 538.91,
- "end": 539.54,
- "text": "room"
- },
- {
- "id": 1314,
- "start": 540.03,
- "end": 540.29,
- "text": "from"
- },
- {
- "id": 1315,
- "start": 540.29,
- "end": 540.49,
- "text": "this"
- },
- {
- "id": 1316,
- "start": 540.49,
- "end": 540.86,
- "text": "farm"
- },
- {
- "id": 1317,
- "start": 540.86,
- "end": 541.06,
- "text": "and"
- },
- {
- "id": 1318,
- "start": 541.11,
- "end": 541.58,
- "text": "but"
- },
- {
- "id": 1319,
- "start": 543.21,
- "end": 543.59,
- "text": "so"
- },
- {
- "id": 1320,
- "start": 543.65,
- "end": 543.89,
- "text": "that"
- },
- {
- "id": 1321,
- "start": 543.89,
- "end": 544.05,
- "text": "was"
- },
- {
- "id": 1322,
- "start": 544.05,
- "end": 544.17,
- "text": "a"
- },
- {
- "id": 1323,
- "start": 544.17,
- "end": 544.52,
- "text": "really"
- },
- {
- "id": 1324,
- "start": 544.55,
- "end": 545.37,
- "text": "interesting"
- },
- {
- "id": 1325,
- "start": 545.37,
- "end": 546.54,
- "text": "experience."
- },
- {
- "id": 1326,
- "start": 547.04,
- "end": 547.27,
- "text": "It"
- },
- {
- "id": 1327,
- "start": 547.27,
- "end": 547.54,
- "text": "wasn't"
- },
- {
- "id": 1328,
- "start": 547.54,
- "end": 547.59,
- "text": "a"
- },
- {
- "id": 1329,
- "start": 547.59,
- "end": 548.26,
- "text": "controlled"
- },
- {
- "id": 1330,
- "start": 548.26,
- "end": 548.74,
- "text": "study"
- },
- {
- "id": 1331,
- "start": 548.74,
- "end": 548.94,
- "text": "up"
- },
- {
- "id": 1332,
- "start": 548.94,
- "end": 549.08,
- "text": "your"
- },
- {
- "id": 1333,
- "start": 549.08,
- "end": 549.4,
- "text": "sleeve,"
- },
- {
- "id": 1334,
- "start": 549.4,
- "end": 549.57,
- "text": "but"
- },
- {
- "id": 1335,
- "start": 549.57,
- "end": 549.69,
- "text": "it"
- },
- {
- "id": 1336,
- "start": 549.69,
- "end": 549.93,
- "text": "did"
- },
- {
- "id": 1337,
- "start": 549.93,
- "end": 550.13,
- "text": "lead"
- },
- {
- "id": 1338,
- "start": 550.13,
- "end": 550.23,
- "text": "to"
- },
- {
- "id": 1339,
- "start": 550.23,
- "end": 550.44,
- "text": "some"
- },
- {
- "id": 1340,
- "start": 550.44,
- "end": 550.72,
- "text": "leader"
- },
- {
- "id": 1341,
- "start": 550.72,
- "end": 551.2,
- "text": "research"
- },
- {
- "id": 1342,
- "start": 551.2,
- "end": 551.32,
- "text": "that"
- },
- {
- "id": 1343,
- "start": 551.32,
- "end": 551.43,
- "text": "I"
- },
- {
- "id": 1344,
- "start": 551.43,
- "end": 551.76,
- "text": "did."
- },
- {
- "id": 1345,
- "start": 551.78,
- "end": 552.01,
- "text": "i."
- },
- {
- "id": 1346,
- "start": 552.01,
- "end": 552.25,
- "text": "t."
- },
- {
- "id": 1347,
- "start": 552.27,
- "end": 552.46,
- "text": "With"
- },
- {
- "id": 1348,
- "start": 552.46,
- "end": 552.87,
- "text": "plush,"
- },
- {
- "id": 1349,
- "start": 552.87,
- "end": 553.26,
- "text": "London."
- },
- {
- "id": 1350,
- "start": 553.27,
- "end": 553.59,
- "text": "Cynthia"
- },
- {
- "id": 1351,
- "start": 553.63,
- "end": 553.93,
- "text": "busy."
- },
- {
- "id": 1352,
- "start": 553.93,
- "end": 554.23,
- "text": "Or"
- },
- {
- "id": 1353,
- "start": 554.52,
- "end": 554.96,
- "text": "we"
- },
- {
- "id": 1354,
- "start": 554.97,
- "end": 555.11,
- "text": "had"
- },
- {
- "id": 1355,
- "start": 555.11,
- "end": 555.33,
- "text": "people"
- },
- {
- "id": 1356,
- "start": 555.33,
- "end": 555.54,
- "text": "come"
- },
- {
- "id": 1357,
- "start": 555.54,
- "end": 555.71,
- "text": "into"
- },
- {
- "id": 1358,
- "start": 555.71,
- "end": 555.82,
- "text": "the"
- },
- {
- "id": 1359,
- "start": 555.82,
- "end": 556.3,
- "text": "lab"
- },
- {
- "id": 1360,
- "start": 556.67,
- "end": 556.9,
- "text": "and"
- },
- {
- "id": 1361,
- "start": 556.9,
- "end": 557.25,
- "text": "smash"
- },
- {
- "id": 1362,
- "start": 557.25,
- "end": 557.43,
- "text": "these"
- },
- {
- "id": 1363,
- "start": 557.43,
- "end": 557.85,
- "text": "Hex"
- },
- {
- "id": 1364,
- "start": 557.85,
- "end": 558.21,
- "text": "bugs"
- },
- {
- "id": 1365,
- "start": 558.21,
- "end": 558.32,
- "text": "that"
- },
- {
- "id": 1366,
- "start": 558.32,
- "end": 558.6,
- "text": "move"
- },
- {
- "id": 1367,
- "start": 558.6,
- "end": 559.1,
- "text": "around"
- },
- {
- "id": 1368,
- "start": 559.1,
- "end": 559.24,
- "text": "in"
- },
- {
- "id": 1369,
- "start": 559.24,
- "end": 559.3,
- "text": "a"
- },
- {
- "id": 1370,
- "start": 559.29,
- "end": 559.5,
- "text": "really"
- },
- {
- "id": 1371,
- "start": 559.5,
- "end": 559.9,
- "text": "lifelike"
- },
- {
- "id": 1372,
- "start": 559.92,
- "end": 560.1,
- "text": "way,"
- },
- {
- "id": 1373,
- "start": 560.1,
- "end": 560.31,
- "text": "like"
- },
- {
- "id": 1374,
- "start": 560.31,
- "end": 561.16,
- "text": "insects."
- },
- {
- "id": 1375,
- "start": 561.28,
- "end": 561.48,
- "text": "So"
- },
- {
- "id": 1376,
- "start": 561.48,
- "end": 561.71,
- "text": "instead"
- },
- {
- "id": 1377,
- "start": 561.71,
- "end": 561.8,
- "text": "of"
- },
- {
- "id": 1378,
- "start": 561.8,
- "end": 562.09,
- "text": "choosing"
- },
- {
- "id": 1379,
- "start": 562.09,
- "end": 562.36,
- "text": "something"
- },
- {
- "id": 1380,
- "start": 562.39,
- "end": 562.75,
- "text": "huge."
- },
- {
- "id": 1381,
- "start": 562.81,
- "end": 563.33,
- "text": "People"
- },
- {
- "id": 1382,
- "start": 563.69,
- "end": 563.83,
- "text": "are"
- },
- {
- "id": 1383,
- "start": 563.86,
- "end": 564.23,
- "text": "trying"
- },
- {
- "id": 1384,
- "start": 564.23,
- "end": 564.48,
- "text": "to"
- },
- {
- "id": 1385,
- "start": 564.48,
- "end": 564.65,
- "text": "reach"
- },
- {
- "id": 1386,
- "start": 564.65,
- "end": 564.76,
- "text": "for"
- },
- {
- "id": 1387,
- "start": 564.76,
- "end": 565.06,
- "text": "something"
- },
- {
- "id": 1388,
- "start": 565.06,
- "end": 565.23,
- "text": "more"
- },
- {
- "id": 1389,
- "start": 565.23,
- "end": 566.05,
- "text": "basic."
- },
- {
- "id": 1390,
- "start": 566.59,
- "end": 567.04,
- "text": "And"
- },
- {
- "id": 1391,
- "start": 567.23,
- "end": 567.41,
- "text": "what"
- },
- {
- "id": 1392,
- "start": 567.41,
- "end": 567.53,
- "text": "we"
- },
- {
- "id": 1393,
- "start": 567.53,
- "end": 568.18,
- "text": "found"
- },
- {
- "id": 1394,
- "start": 568.18,
- "end": 568.55,
- "text": "was"
- },
- {
- "id": 1395,
- "start": 568.55,
- "end": 568.77,
- "text": "that"
- },
- {
- "id": 1396,
- "start": 568.8,
- "end": 569.22,
- "text": "high"
- },
- {
- "id": 1397,
- "start": 569.22,
- "end": 569.65,
- "text": "embassy"
- },
- {
- "id": 1398,
- "start": 569.65,
- "end": 570.1,
- "text": "people"
- },
- {
- "id": 1399,
- "start": 570.1,
- "end": 570.25,
- "text": "would"
- },
- {
- "id": 1400,
- "start": 570.25,
- "end": 570.77,
- "text": "hesitate,"
- },
- {
- "id": 1401,
- "start": 570.78,
- "end": 570.97,
- "text": "more"
- },
- {
- "id": 1402,
- "start": 570.99,
- "end": 571.24,
- "text": "hit"
- },
- {
- "id": 1403,
- "start": 571.25,
- "end": 571.35,
- "text": "the"
- },
- {
- "id": 1404,
- "start": 571.35,
- "end": 571.69,
- "text": "heck's"
- },
- {
- "id": 1405,
- "start": 571.7,
- "end": 572.22,
- "text": "bucks."
- },
- {
- "id": 1406,
- "start": 573.62,
- "end": 573.81,
- "text": "This"
- },
- {
- "id": 1407,
- "start": 573.82,
- "end": 573.92,
- "text": "is"
- },
- {
- "id": 1408,
- "start": 573.92,
- "end": 574.1,
- "text": "just"
- },
- {
- "id": 1409,
- "start": 574.1,
- "end": 574.16,
- "text": "a"
- },
- {
- "id": 1410,
- "start": 574.16,
- "end": 574.4,
- "text": "little"
- },
- {
- "id": 1411,
- "start": 574.4,
- "end": 574.91,
- "text": "study,"
- },
- {
- "id": 1412,
- "start": 574.91,
- "end": 575.27,
- "text": "but"
- },
- {
- "id": 1413,
- "start": 575.49,
- "end": 575.72,
- "text": "it's"
- },
- {
- "id": 1414,
- "start": 575.74,
- "end": 575.97,
- "text": "part"
- },
- {
- "id": 1415,
- "start": 575.97,
- "end": 576.07,
- "text": "of"
- },
- {
- "id": 1416,
- "start": 576.07,
- "end": 576.12,
- "text": "a"
- },
- {
- "id": 1417,
- "start": 576.12,
- "end": 576.48,
- "text": "large"
- },
- {
- "id": 1418,
- "start": 576.48,
- "end": 576.77,
- "text": "body"
- },
- {
- "id": 1419,
- "start": 576.77,
- "end": 576.88,
- "text": "of"
- },
- {
- "id": 1420,
- "start": 576.88,
- "end": 577.56,
- "text": "research"
- },
- {
- "id": 1421,
- "start": 577.56,
- "end": 577.9,
- "text": "that"
- },
- {
- "id": 1422,
- "start": 578.02,
- "end": 578.25,
- "text": "is"
- },
- {
- "id": 1423,
- "start": 578.25,
- "end": 578.61,
- "text": "starting"
- },
- {
- "id": 1424,
- "start": 578.61,
- "end": 578.73,
- "text": "to"
- },
- {
- "id": 1425,
- "start": 578.76,
- "end": 579.2,
- "text": "indicate"
- },
- {
- "id": 1426,
- "start": 579.2,
- "end": 579.3,
- "text": "that"
- },
- {
- "id": 1427,
- "start": 579.3,
- "end": 579.4,
- "text": "there"
- },
- {
- "id": 1428,
- "start": 579.4,
- "end": 579.62,
- "text": "may"
- },
- {
- "id": 1429,
- "start": 579.62,
- "end": 579.84,
- "text": "be"
- },
- {
- "id": 1430,
- "start": 579.87,
- "end": 579.95,
- "text": "a"
- },
- {
- "id": 1431,
- "start": 579.95,
- "end": 580.53,
- "text": "connection"
- },
- {
- "id": 1432,
- "start": 580.53,
- "end": 580.87,
- "text": "between"
- },
- {
- "id": 1433,
- "start": 580.87,
- "end": 581.3,
- "text": "people's"
- },
- {
- "id": 1434,
- "start": 581.3,
- "end": 581.81,
- "text": "tendencies"
- },
- {
- "id": 1435,
- "start": 581.81,
- "end": 581.9,
- "text": "for"
- },
- {
- "id": 1436,
- "start": 581.9,
- "end": 582.61,
- "text": "empathy"
- },
- {
- "id": 1437,
- "start": 582.86,
- "end": 582.99,
- "text": "and"
- },
- {
- "id": 1438,
- "start": 583.03,
- "end": 583.15,
- "text": "their"
- },
- {
- "id": 1439,
- "start": 583.15,
- "end": 583.79,
- "text": "behaviour"
- },
- {
- "id": 1440,
- "start": 583.79,
- "end": 584.19,
- "text": "around,"
- },
- {
- "id": 1441,
- "start": 584.2,
- "end": 584.63,
- "text": "Rover."
- },
- {
- "id": 1442,
- "start": 585.66,
- "end": 585.8,
- "text": "But"
- },
- {
- "id": 1443,
- "start": 585.84,
- "end": 586.09,
- "text": "my"
- },
- {
- "id": 1444,
- "start": 586.09,
- "end": 586.85,
- "text": "question"
- },
- {
- "id": 1445,
- "start": 586.88,
- "end": 587.01,
- "text": "for"
- },
- {
- "id": 1446,
- "start": 587.01,
- "end": 587.1,
- "text": "the"
- },
- {
- "id": 1447,
- "start": 587.1,
- "end": 587.61,
- "text": "coming"
- },
- {
- "id": 1448,
- "start": 587.61,
- "end": 587.94,
- "text": "era"
- },
- {
- "id": 1449,
- "start": 587.97,
- "end": 588.09,
- "text": "of"
- },
- {
- "id": 1450,
- "start": 588.09,
- "end": 588.39,
- "text": "human"
- },
- {
- "id": 1451,
- "start": 588.39,
- "end": 588.68,
- "text": "robot"
- },
- {
- "id": 1452,
- "start": 588.69,
- "end": 589.27,
- "text": "interaction"
- },
- {
- "id": 1453,
- "start": 589.37,
- "end": 589.54,
- "text": "is"
- },
- {
- "id": 1454,
- "start": 589.55,
- "end": 589.99,
- "text": "not"
- },
- {
- "id": 1455,
- "start": 590.35,
- "end": 590.47,
- "text": "to."
- },
- {
- "id": 1456,
- "start": 590.57,
- "end": 590.76,
- "text": "We"
- },
- {
- "id": 1457,
- "start": 590.76,
- "end": 591.42,
- "text": "empathise"
- },
- {
- "id": 1458,
- "start": 591.42,
- "end": 591.57,
- "text": "with"
- },
- {
- "id": 1459,
- "start": 591.57,
- "end": 591.78,
- "text": "throw,"
- },
- {
- "id": 1460,
- "start": 591.78,
- "end": 592.4,
- "text": "but"
- },
- {
- "id": 1461,
- "start": 593.2,
- "end": 593.41,
- "text": "it."
- },
- {
- "id": 1462,
- "start": 593.41,
- "end": 593.85,
- "text": "Can"
- },
- {
- "id": 1463,
- "start": 593.86,
- "end": 594.36,
- "text": "robots"
- },
- {
- "id": 1464,
- "start": 594.37,
- "end": 595.01,
- "text": "change"
- },
- {
- "id": 1465,
- "start": 595.03,
- "end": 595.41,
- "text": "people's"
- },
- {
- "id": 1466,
- "start": 595.63,
- "end": 596.03,
- "text": "thinking,"
- },
- {
- "id": 1467,
- "start": 597.48,
- "end": 597.69,
- "text": "Is"
- },
- {
- "id": 1468,
- "start": 597.69,
- "end": 597.85,
- "text": "there"
- },
- {
- "id": 1469,
- "start": 597.86,
- "end": 598.27,
- "text": "reason"
- },
- {
- "id": 1470,
- "start": 598.27,
- "end": 598.49,
- "text": "to."
- },
- {
- "id": 1471,
- "start": 598.49,
- "end": 598.65,
- "text": "For"
- },
- {
- "id": 1472,
- "start": 598.65,
- "end": 599.47,
- "text": "example,"
- },
- {
- "id": 1473,
- "start": 599.79,
- "end": 600.15,
- "text": "prevent"
- },
- {
- "id": 1474,
- "start": 600.15,
- "end": 600.25,
- "text": "the"
- },
- {
- "id": 1475,
- "start": 600.25,
- "end": 600.7,
- "text": "child"
- },
- {
- "id": 1476,
- "start": 600.7,
- "end": 600.85,
- "text": "from"
- },
- {
- "id": 1477,
- "start": 600.85,
- "end": 601.25,
- "text": "kicking"
- },
- {
- "id": 1478,
- "start": 601.3,
- "end": 601.62,
- "text": "about"
- },
- {
- "id": 1479,
- "start": 601.69,
- "end": 602.1,
- "text": "Doc"
- },
- {
- "id": 1480,
- "start": 603.2,
- "end": 603.51,
- "text": "That"
- },
- {
- "id": 1481,
- "start": 603.55,
- "end": 603.92,
- "text": "just"
- },
- {
- "id": 1482,
- "start": 603.95,
- "end": 604.06,
- "text": "out"
- },
- {
- "id": 1483,
- "start": 604.06,
- "end": 604.16,
- "text": "of"
- },
- {
- "id": 1484,
- "start": 604.16,
- "end": 604.66,
- "text": "respect"
- },
- {
- "id": 1485,
- "start": 604.66,
- "end": 604.8,
- "text": "for"
- },
- {
- "id": 1486,
- "start": 604.8,
- "end": 605.53,
- "text": "property"
- },
- {
- "id": 1487,
- "start": 606.15,
- "end": 606.83,
- "text": "because"
- },
- {
- "id": 1488,
- "start": 606.83,
- "end": 606.93,
- "text": "the"
- },
- {
- "id": 1489,
- "start": 606.93,
- "end": 607.25,
- "text": "child"
- },
- {
- "id": 1490,
- "start": 607.25,
- "end": 607.35,
- "text": "may"
- },
- {
- "id": 1491,
- "start": 607.35,
- "end": 607.47,
- "text": "be"
- },
- {
- "id": 1492,
- "start": 607.47,
- "end": 607.6,
- "text": "more"
- },
- {
- "id": 1493,
- "start": 607.6,
- "end": 607.97,
- "text": "likely"
- },
- {
- "id": 1494,
- "start": 607.97,
- "end": 608.07,
- "text": "to"
- },
- {
- "id": 1495,
- "start": 608.07,
- "end": 608.28,
- "text": "take"
- },
- {
- "id": 1496,
- "start": 608.28,
- "end": 608.35,
- "text": "a"
- },
- {
- "id": 1497,
- "start": 608.35,
- "end": 608.55,
- "text": "real"
- },
- {
- "id": 1498,
- "start": 608.55,
- "end": 609.03,
- "text": "dark"
- },
- {
- "id": 1499,
- "start": 610.49,
- "end": 610.63,
- "text": "and"
- },
- {
- "id": 1500,
- "start": 610.65,
- "end": 610.96,
- "text": "again."
- },
- {
- "id": 1501,
- "start": 610.96,
- "end": 611.17,
- "text": "It's"
- },
- {
- "id": 1502,
- "start": 611.17,
- "end": 611.46,
- "text": "not"
- },
- {
- "id": 1503,
- "start": 611.46,
- "end": 611.72,
- "text": "just"
- },
- {
- "id": 1504,
- "start": 611.72,
- "end": 612.38,
- "text": "kids"
- },
- {
- "id": 1505,
- "start": 612.96,
- "end": 613.14,
- "text": "and"
- },
- {
- "id": 1506,
- "start": 613.54,
- "end": 613.77,
- "text": "this"
- },
- {
- "id": 1507,
- "start": 613.77,
- "end": 613.96,
- "text": "is"
- },
- {
- "id": 1508,
- "start": 613.96,
- "end": 614.37,
- "text": "the"
- },
- {
- "id": 1509,
- "start": 614.41,
- "end": 615.06,
- "text": "violent"
- },
- {
- "id": 1510,
- "start": 615.06,
- "end": 615.39,
- "text": "video"
- },
- {
- "id": 1511,
- "start": 615.39,
- "end": 615.69,
- "text": "games"
- },
- {
- "id": 1512,
- "start": 615.69,
- "end": 616.15,
- "text": "question,"
- },
- {
- "id": 1513,
- "start": 616.15,
- "end": 616.32,
- "text": "but"
- },
- {
- "id": 1514,
- "start": 616.32,
- "end": 616.42,
- "text": "it's"
- },
- {
- "id": 1515,
- "start": 616.43,
- "end": 616.53,
- "text": "a"
- },
- {
- "id": 1516,
- "start": 616.54,
- "end": 617.15,
- "text": "completely"
- },
- {
- "id": 1517,
- "start": 617.15,
- "end": 617.29,
- "text": "new"
- },
- {
- "id": 1518,
- "start": 617.29,
- "end": 617.6,
- "text": "level"
- },
- {
- "id": 1519,
- "start": 617.6,
- "end": 617.85,
- "text": "because"
- },
- {
- "id": 1520,
- "start": 617.85,
- "end": 617.94,
- "text": "of"
- },
- {
- "id": 1521,
- "start": 617.94,
- "end": 618.16,
- "text": "this"
- },
- {
- "id": 1522,
- "start": 618.16,
- "end": 618.82,
- "text": "visceral"
- },
- {
- "id": 1523,
- "start": 618.82,
- "end": 619.75,
- "text": "physicality"
- },
- {
- "id": 1524,
- "start": 619.75,
- "end": 619.92,
- "text": "that"
- },
- {
- "id": 1525,
- "start": 619.92,
- "end": 620.08,
- "text": "we"
- },
- {
- "id": 1526,
- "start": 620.08,
- "end": 620.72,
- "text": "respond"
- },
- {
- "id": 1527,
- "start": 620.72,
- "end": 621.03,
- "text": "more"
- },
- {
- "id": 1528,
- "start": 621.03,
- "end": 621.74,
- "text": "intensely."
- },
- {
- "id": 1529,
- "start": 622.03,
- "end": 622.39,
- "text": "Two"
- },
- {
- "id": 1530,
- "start": 622.73,
- "end": 623.15,
- "text": "images"
- },
- {
- "id": 1531,
- "start": 623.15,
- "end": 623.23,
- "text": "on"
- },
- {
- "id": 1532,
- "start": 623.23,
- "end": 623.3,
- "text": "a"
- },
- {
- "id": 1533,
- "start": 623.3,
- "end": 623.95,
- "text": "screen,"
- },
- {
- "id": 1534,
- "start": 625.67,
- "end": 625.89,
- "text": "we"
- },
- {
- "id": 1535,
- "start": 625.93,
- "end": 626.17,
- "text": "behave"
- },
- {
- "id": 1536,
- "start": 626.27,
- "end": 626.9,
- "text": "violently"
- },
- {
- "id": 1537,
- "start": 626.9,
- "end": 627.43,
- "text": "towards"
- },
- {
- "id": 1538,
- "start": 627.43,
- "end": 628.09,
- "text": "Robarts"
- },
- {
- "id": 1539,
- "start": 628.12,
- "end": 628.84,
- "text": "specifically"
- },
- {
- "id": 1540,
- "start": 628.84,
- "end": 629.22,
- "text": "robots"
- },
- {
- "id": 1541,
- "start": 629.22,
- "end": 629.37,
- "text": "that"
- },
- {
- "id": 1542,
- "start": 629.37,
- "end": 629.46,
- "text": "are"
- },
- {
- "id": 1543,
- "start": 629.46,
- "end": 629.95,
- "text": "designed"
- },
- {
- "id": 1544,
- "start": 629.95,
- "end": 630.08,
- "text": "to"
- },
- {
- "id": 1545,
- "start": 630.08,
- "end": 630.4,
- "text": "mimic"
- },
- {
- "id": 1546,
- "start": 630.4,
- "end": 630.95,
- "text": "life"
- },
- {
- "id": 1547,
- "start": 631.37,
- "end": 631.55,
- "text": "is"
- },
- {
- "id": 1548,
- "start": 631.55,
- "end": 631.99,
- "text": "that"
- },
- {
- "id": 1549,
- "start": 632.38,
- "end": 632.45,
- "text": "a"
- },
- {
- "id": 1550,
- "start": 632.62,
- "end": 633.02,
- "text": "healthy"
- },
- {
- "id": 1551,
- "start": 633.07,
- "end": 633.49,
- "text": "outlook"
- },
- {
- "id": 1552,
- "start": 633.49,
- "end": 633.73,
- "text": "from"
- },
- {
- "id": 1553,
- "start": 633.73,
- "end": 633.91,
- "text": "the"
- },
- {
- "id": 1554,
- "start": 633.94,
- "end": 634.56,
- "text": "behaviour"
- },
- {
- "id": 1555,
- "start": 635,
- "end": 635.23,
- "text": "or"
- },
- {
- "id": 1556,
- "start": 635.42,
- "end": 635.6,
- "text": "is"
- },
- {
- "id": 1557,
- "start": 635.6,
- "end": 635.89,
- "text": "that"
- },
- {
- "id": 1558,
- "start": 635.92,
- "end": 636.41,
- "text": "training"
- },
- {
- "id": 1559,
- "start": 636.48,
- "end": 637,
- "text": "cruelty"
- },
- {
- "id": 1560,
- "start": 637.02,
- "end": 637.72,
- "text": "muscles."
- },
- {
- "id": 1561,
- "start": 642.67,
- "end": 642.86,
- "text": "The"
- },
- {
- "id": 1562,
- "start": 642.9,
- "end": 643.24,
- "text": "answer"
- },
- {
- "id": 1563,
- "start": 643.24,
- "end": 643.28,
- "text": "to"
- },
- {
- "id": 1564,
- "start": 643.29,
- "end": 643.48,
- "text": "this"
- },
- {
- "id": 1565,
- "start": 643.48,
- "end": 644.1,
- "text": "question"
- },
- {
- "id": 1566,
- "start": 644.1,
- "end": 644.34,
- "text": "has"
- },
- {
- "id": 1567,
- "start": 644.34,
- "end": 644.42,
- "text": "the"
- },
- {
- "id": 1568,
- "start": 644.42,
- "end": 644.96,
- "text": "potential"
- },
- {
- "id": 1569,
- "start": 645.01,
- "end": 645.45,
- "text": "impact"
- },
- {
- "id": 1570,
- "start": 645.45,
- "end": 645.73,
- "text": "human"
- },
- {
- "id": 1571,
- "start": 645.73,
- "end": 646.44,
- "text": "behaviour"
- },
- {
- "id": 1572,
- "start": 646.61,
- "end": 646.9,
- "text": "has"
- },
- {
- "id": 1573,
- "start": 646.9,
- "end": 646.98,
- "text": "the"
- },
- {
- "id": 1574,
- "start": 646.98,
- "end": 647.5,
- "text": "potential"
- },
- {
- "id": 1575,
- "start": 647.5,
- "end": 647.96,
- "text": "impact"
- },
- {
- "id": 1576,
- "start": 647.96,
- "end": 648.32,
- "text": "social"
- },
- {
- "id": 1577,
- "start": 648.32,
- "end": 648.94,
- "text": "norms."
- },
- {
- "id": 1578,
- "start": 649.33,
- "end": 649.45,
- "text": "It"
- },
- {
- "id": 1579,
- "start": 649.48,
- "end": 649.67,
- "text": "has"
- },
- {
- "id": 1580,
- "start": 649.67,
- "end": 649.77,
- "text": "the"
- },
- {
- "id": 1581,
- "start": 649.77,
- "end": 650.22,
- "text": "potential"
- },
- {
- "id": 1582,
- "start": 650.22,
- "end": 650.37,
- "text": "to"
- },
- {
- "id": 1583,
- "start": 650.37,
- "end": 650.87,
- "text": "inspire"
- },
- {
- "id": 1584,
- "start": 650.87,
- "end": 651.43,
- "text": "rules"
- },
- {
- "id": 1585,
- "start": 651.46,
- "end": 651.8,
- "text": "around."
- },
- {
- "id": 1586,
- "start": 651.8,
- "end": 651.93,
- "text": "What"
- },
- {
- "id": 1587,
- "start": 651.93,
- "end": 652.26,
- "text": "we"
- },
- {
- "id": 1588,
- "start": 652.31,
- "end": 652.65,
- "text": "can"
- },
- {
- "id": 1589,
- "start": 652.65,
- "end": 652.72,
- "text": "and"
- },
- {
- "id": 1590,
- "start": 652.72,
- "end": 653.04,
- "text": "can't"
- },
- {
- "id": 1591,
- "start": 653.04,
- "end": 653.29,
- "text": "do"
- },
- {
- "id": 1592,
- "start": 653.33,
- "end": 653.61,
- "text": "certain"
- },
- {
- "id": 1593,
- "start": 653.63,
- "end": 654.43,
- "text": "Robarts"
- },
- {
- "id": 1594,
- "start": 655,
- "end": 655.32,
- "text": "animal"
- },
- {
- "id": 1595,
- "start": 655.32,
- "end": 655.74,
- "text": "cruelty,"
- },
- {
- "id": 1596,
- "start": 655.81,
- "end": 656.25,
- "text": "but"
- },
- {
- "id": 1597,
- "start": 657.22,
- "end": 657.55,
- "text": "because"
- },
- {
- "id": 1598,
- "start": 657.58,
- "end": 657.87,
- "text": "even"
- },
- {
- "id": 1599,
- "start": 657.87,
- "end": 658.02,
- "text": "if"
- },
- {
- "id": 1600,
- "start": 658.02,
- "end": 658.42,
- "text": "robots"
- },
- {
- "id": 1601,
- "start": 658.42,
- "end": 658.68,
- "text": "can't"
- },
- {
- "id": 1602,
- "start": 658.71,
- "end": 659.38,
- "text": "fuel"
- },
- {
- "id": 1603,
- "start": 660.1,
- "end": 660.22,
- "text": "our"
- },
- {
- "id": 1604,
- "start": 660.25,
- "end": 660.89,
- "text": "behaviour"
- },
- {
- "id": 1605,
- "start": 660.89,
- "end": 661.26,
- "text": "towards"
- },
- {
- "id": 1606,
- "start": 661.26,
- "end": 661.34,
- "text": "a"
- },
- {
- "id": 1607,
- "start": 661.42,
- "end": 662.25,
- "text": "matter"
- },
- {
- "id": 1608,
- "start": 662.39,
- "end": 662.64,
- "text": "for"
- },
- {
- "id": 1609,
- "start": 662.64,
- "end": 663.15,
- "text": "us"
- },
- {
- "id": 1610,
- "start": 664.89,
- "end": 665.03,
- "text": "and"
- },
- {
- "id": 1611,
- "start": 665.06,
- "end": 665.6,
- "text": "regardless"
- },
- {
- "id": 1612,
- "start": 665.6,
- "end": 665.7,
- "text": "of"
- },
- {
- "id": 1613,
- "start": 665.7,
- "end": 665.93,
- "text": "whether"
- },
- {
- "id": 1614,
- "start": 665.93,
- "end": 666.06,
- "text": "we"
- },
- {
- "id": 1615,
- "start": 666.06,
- "end": 666.21,
- "text": "end"
- },
- {
- "id": 1616,
- "start": 666.21,
- "end": 666.33,
- "text": "up"
- },
- {
- "id": 1617,
- "start": 666.32,
- "end": 666.9,
- "text": "changing"
- },
- {
- "id": 1618,
- "start": 666.97,
- "end": 667.64,
- "text": "ovals"
- },
- {
- "id": 1619,
- "start": 668.9,
- "end": 669.34,
- "text": "robots"
- },
- {
- "id": 1620,
- "start": 669.34,
- "end": 669.59,
- "text": "might"
- },
- {
- "id": 1621,
- "start": 669.59,
- "end": 669.74,
- "text": "be"
- },
- {
- "id": 1622,
- "start": 669.74,
- "end": 669.94,
- "text": "able"
- },
- {
- "id": 1623,
- "start": 669.94,
- "end": 670.03,
- "text": "to"
- },
- {
- "id": 1624,
- "start": 670.03,
- "end": 670.25,
- "text": "help"
- },
- {
- "id": 1625,
- "start": 670.25,
- "end": 670.38,
- "text": "us"
- },
- {
- "id": 1626,
- "start": 670.38,
- "end": 670.59,
- "text": "come"
- },
- {
- "id": 1627,
- "start": 670.59,
- "end": 670.73,
- "text": "to"
- },
- {
- "id": 1628,
- "start": 670.73,
- "end": 670.79,
- "text": "a"
- },
- {
- "id": 1629,
- "start": 670.79,
- "end": 671.02,
- "text": "new"
- },
- {
- "id": 1630,
- "start": 671.02,
- "end": 671.59,
- "text": "understanding"
- },
- {
- "id": 1631,
- "start": 671.59,
- "end": 671.7,
- "text": "of"
- },
- {
- "id": 1632,
- "start": 671.7,
- "end": 672.51,
- "text": "ourselves."
- },
- {
- "id": 1633,
- "start": 674.24,
- "end": 674.52,
- "text": "Most"
- },
- {
- "id": 1634,
- "start": 674.52,
- "end": 674.62,
- "text": "of"
- },
- {
- "id": 1635,
- "start": 674.62,
- "end": 674.76,
- "text": "what"
- },
- {
- "id": 1636,
- "start": 674.8,
- "end": 675.03,
- "text": "learned"
- },
- {
- "id": 1637,
- "start": 675.03,
- "end": 675.15,
- "text": "over"
- },
- {
- "id": 1638,
- "start": 675.16,
- "end": 675.24,
- "text": "the"
- },
- {
- "id": 1639,
- "start": 675.24,
- "end": 675.53,
- "text": "past"
- },
- {
- "id": 1640,
- "start": 675.53,
- "end": 675.72,
- "text": "ten"
- },
- {
- "id": 1641,
- "start": 675.72,
- "end": 676.36,
- "text": "years"
- },
- {
- "id": 1642,
- "start": 676.45,
- "end": 676.63,
- "text": "have"
- },
- {
- "id": 1643,
- "start": 676.63,
- "end": 676.85,
- "text": "not"
- },
- {
- "id": 1644,
- "start": 676.85,
- "end": 676.97,
- "text": "been"
- },
- {
- "id": 1645,
- "start": 676.98,
- "end": 677.21,
- "text": "about"
- },
- {
- "id": 1646,
- "start": 677.21,
- "end": 677.8,
- "text": "technology."
- },
- {
- "id": 1647,
- "start": 677.8,
- "end": 678.1,
- "text": "A"
- },
- {
- "id": 1648,
- "start": 678.84,
- "end": 679.07,
- "text": "It's"
- },
- {
- "id": 1649,
- "start": 679.07,
- "end": 679.21,
- "text": "been"
- },
- {
- "id": 1650,
- "start": 679.21,
- "end": 679.45,
- "text": "about"
- },
- {
- "id": 1651,
- "start": 679.45,
- "end": 679.76,
- "text": "human"
- },
- {
- "id": 1652,
- "start": 679.76,
- "end": 680.68,
- "text": "psychology"
- },
- {
- "id": 1653,
- "start": 681.22,
- "end": 681.34,
- "text": "and"
- },
- {
- "id": 1654,
- "start": 681.54,
- "end": 682.29,
- "text": "empathy"
- },
- {
- "id": 1655,
- "start": 682.32,
- "end": 682.41,
- "text": "and"
- },
- {
- "id": 1656,
- "start": 682.42,
- "end": 682.67,
- "text": "how"
- },
- {
- "id": 1657,
- "start": 682.67,
- "end": 682.8,
- "text": "we"
- },
- {
- "id": 1658,
- "start": 682.8,
- "end": 683.12,
- "text": "relate"
- },
- {
- "id": 1659,
- "start": 683.12,
- "end": 683.23,
- "text": "to"
- },
- {
- "id": 1660,
- "start": 683.26,
- "end": 683.91,
- "text": "others."
- },
- {
- "id": 1661,
- "start": 685.11,
- "end": 685.16,
- "text": "And"
- },
- {
- "id": 1662,
- "start": 685.51,
- "end": 685.84,
- "text": "because"
- },
- {
- "id": 1663,
- "start": 685.84,
- "end": 685.97,
- "text": "when"
- },
- {
- "id": 1664,
- "start": 685.97,
- "end": 686.05,
- "text": "a"
- },
- {
- "id": 1665,
- "start": 686.05,
- "end": 686.48,
- "text": "child"
- },
- {
- "id": 1666,
- "start": 686.48,
- "end": 686.6,
- "text": "is"
- },
- {
- "id": 1667,
- "start": 686.6,
- "end": 687,
- "text": "kind"
- },
- {
- "id": 1668,
- "start": 687,
- "end": 687.12,
- "text": "to"
- },
- {
- "id": 1669,
- "start": 687.12,
- "end": 687.24,
- "text": "her"
- },
- {
- "id": 1670,
- "start": 687.24,
- "end": 687.5,
- "text": "room."
- },
- {
- "id": 1671,
- "start": 687.5,
- "end": 687.8,
- "text": "But"
- },
- {
- "id": 1672,
- "start": 689.25,
- "end": 689.42,
- "text": "when"
- },
- {
- "id": 1673,
- "start": 689.42,
- "end": 689.51,
- "text": "a"
- },
- {
- "id": 1674,
- "start": 689.51,
- "end": 690,
- "text": "soldier"
- },
- {
- "id": 1675,
- "start": 690.01,
- "end": 690.34,
- "text": "tries"
- },
- {
- "id": 1676,
- "start": 690.34,
- "end": 690.45,
- "text": "to"
- },
- {
- "id": 1677,
- "start": 690.45,
- "end": 690.77,
- "text": "save"
- },
- {
- "id": 1678,
- "start": 690.77,
- "end": 690.87,
- "text": "a"
- },
- {
- "id": 1679,
- "start": 690.87,
- "end": 691.22,
- "text": "robot"
- },
- {
- "id": 1680,
- "start": 691.22,
- "end": 691.36,
- "text": "on"
- },
- {
- "id": 1681,
- "start": 691.36,
- "end": 691.43,
- "text": "the"
- },
- {
- "id": 1682,
- "start": 691.43,
- "end": 692.28,
- "text": "battlefield."
- },
- {
- "id": 1683,
- "start": 693.36,
- "end": 693.55,
- "text": "When"
- },
- {
- "id": 1684,
- "start": 693.56,
- "end": 693.62,
- "text": "a"
- },
- {
- "id": 1685,
- "start": 693.62,
- "end": 693.84,
- "text": "group"
- },
- {
- "id": 1686,
- "start": 693.84,
- "end": 693.97,
- "text": "of"
- },
- {
- "id": 1687,
- "start": 693.97,
- "end": 694.34,
- "text": "people"
- },
- {
- "id": 1688,
- "start": 694.34,
- "end": 694.9,
- "text": "refuses"
- },
- {
- "id": 1689,
- "start": 694.9,
- "end": 695,
- "text": "to"
- },
- {
- "id": 1690,
- "start": 695,
- "end": 695.44,
- "text": "harm"
- },
- {
- "id": 1691,
- "start": 695.44,
- "end": 695.57,
- "text": "her"
- },
- {
- "id": 1692,
- "start": 695.56,
- "end": 695.8,
- "text": "about"
- },
- {
- "id": 1693,
- "start": 695.81,
- "end": 695.89,
- "text": "a"
- },
- {
- "id": 1694,
- "start": 695.92,
- "end": 696.13,
- "text": "baby"
- },
- {
- "id": 1695,
- "start": 696.13,
- "end": 696.86,
- "text": "dinosaur."
- },
- {
- "id": 1696,
- "start": 698.23,
- "end": 698.46,
- "text": "Those"
- },
- {
- "id": 1697,
- "start": 698.46,
- "end": 698.86,
- "text": "robots"
- },
- {
- "id": 1698,
- "start": 698.89,
- "end": 699.1,
- "text": "aren't"
- },
- {
- "id": 1699,
- "start": 699.1,
- "end": 699.49,
- "text": "just"
- },
- {
- "id": 1700,
- "start": 699.5,
- "end": 699.93,
- "text": "motors"
- },
- {
- "id": 1701,
- "start": 699.92,
- "end": 700.04,
- "text": "in"
- },
- {
- "id": 1702,
- "start": 700.05,
- "end": 700.35,
- "text": "years"
- },
- {
- "id": 1703,
- "start": 700.35,
- "end": 700.45,
- "text": "and"
- },
- {
- "id": 1704,
- "start": 700.45,
- "end": 700.61,
- "text": "a"
- },
- {
- "id": 1705,
- "start": 700.61,
- "end": 701.37,
- "text": "groom's."
- },
- {
- "id": 1706,
- "start": 702.17,
- "end": 702.37,
- "text": "Their"
- },
- {
- "id": 1707,
- "start": 702.62,
- "end": 703.26,
- "text": "reflections"
- },
- {
- "id": 1708,
- "start": 703.26,
- "end": 703.36,
- "text": "of"
- },
- {
- "id": 1709,
- "start": 703.36,
- "end": 703.45,
- "text": "our"
- },
- {
- "id": 1710,
- "start": 703.45,
- "end": 703.63,
- "text": "own"
- },
- {
- "id": 1711,
- "start": 703.63,
- "end": 704.34,
- "text": "humanity."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 13.02,
- "end": 13.86,
- "speaker": "TBC 0"
- },
- {
- "id": 1,
- "start": 13.86,
- "end": 19.58,
- "speaker": "TBC 1"
- },
- {
- "id": 2,
- "start": 21.83,
- "end": 23.39,
- "speaker": "TBC 2"
- },
- {
- "id": 3,
- "start": 23.45,
- "end": 31.8,
- "speaker": "test"
- },
- {
- "id": 4,
- "start": 31.8,
- "end": 33.88,
- "speaker": "TBC 4"
- },
- {
- "id": 5,
- "start": 34.27,
- "end": 39.61,
- "speaker": "TBC 5"
- },
- {
- "id": 6,
- "start": 39.62,
- "end": 40.54,
- "speaker": "TBC 6"
- },
- {
- "id": 7,
- "start": 40.54,
- "end": 41.55,
- "speaker": "TBC 1"
- },
- {
- "id": 8,
- "start": 41.68,
- "end": 43.61,
- "speaker": "TBC 1"
- },
- {
- "id": 9,
- "start": 46.53,
- "end": 46.89,
- "speaker": "TBC 9"
- },
- {
- "id": 10,
- "start": 46.9,
- "end": 52.31,
- "speaker": "TBC 10"
- },
- {
- "id": 11,
- "start": 55.22,
- "end": 64.47,
- "speaker": "TBC 11"
- },
- {
- "id": 12,
- "start": 64.73,
- "end": 65.33,
- "speaker": "TBC 12"
- },
- {
- "id": 13,
- "start": 65.42,
- "end": 68.9,
- "speaker": "TBC 13"
- },
- {
- "id": 14,
- "start": 69.99,
- "end": 70.58,
- "speaker": "TBC 14"
- },
- {
- "id": 15,
- "start": 70.58,
- "end": 75.66,
- "speaker": "TBC 15"
- },
- {
- "id": 16,
- "start": 75.67,
- "end": 85.81,
- "speaker": "TBC 16"
- },
- {
- "id": 17,
- "start": 86.66,
- "end": 88.91,
- "speaker": "TBC 17"
- },
- {
- "id": 18,
- "start": 89.46,
- "end": 100.87,
- "speaker": "TBC 18"
- },
- {
- "id": 19,
- "start": 101.49,
- "end": 101.84,
- "speaker": "TBC 19"
- },
- {
- "id": 20,
- "start": 101.87,
- "end": 104.79,
- "speaker": "TBC 20"
- },
- {
- "id": 21,
- "start": 106.41,
- "end": 112.52,
- "speaker": "TBC 21"
- },
- {
- "id": 22,
- "start": 112.93,
- "end": 114.6,
- "speaker": "TBC 22"
- },
- {
- "id": 23,
- "start": 116.26,
- "end": 135.53,
- "speaker": "TBC 23"
- },
- {
- "id": 24,
- "start": 135.56,
- "end": 140.69,
- "speaker": "TBC 24"
- },
- {
- "id": 25,
- "start": 140.75,
- "end": 147.31,
- "speaker": "TBC 25"
- },
- {
- "id": 26,
- "start": 147.42,
- "end": 154.45,
- "speaker": "TBC 26"
- },
- {
- "id": 27,
- "start": 154.48,
- "end": 172.15,
- "speaker": "TBC 27"
- },
- {
- "id": 28,
- "start": 175.1,
- "end": 182.25,
- "speaker": "TBC 28"
- },
- {
- "id": 29,
- "start": 182.25,
- "end": 183.99,
- "speaker": "TBC 29"
- },
- {
- "id": 30,
- "start": 184.07,
- "end": 200.52,
- "speaker": "TBC 30"
- },
- {
- "id": 31,
- "start": 200.52,
- "end": 205.86,
- "speaker": "TBC 31"
- },
- {
- "id": 32,
- "start": 206.65,
- "end": 209.4,
- "speaker": "TBC 32"
- },
- {
- "id": 33,
- "start": 209.44,
- "end": 213.28,
- "speaker": "TBC 33"
- },
- {
- "id": 34,
- "start": 214.85,
- "end": 216.06,
- "speaker": "TBC 1"
- },
- {
- "id": 35,
- "start": 216.09,
- "end": 219.3,
- "speaker": "TBC 35"
- },
- {
- "id": 36,
- "start": 219.3,
- "end": 220.31,
- "speaker": "TBC 36"
- },
- {
- "id": 37,
- "start": 221.68,
- "end": 230.62,
- "speaker": "TBC 37"
- },
- {
- "id": 38,
- "start": 230.61,
- "end": 232.57,
- "speaker": "TBC 38"
- },
- {
- "id": 39,
- "start": 234.54,
- "end": 241.28,
- "speaker": "TBC 39"
- },
- {
- "id": 40,
- "start": 241.32,
- "end": 245.86,
- "speaker": "TBC 40"
- },
- {
- "id": 41,
- "start": 246.58,
- "end": 251.88,
- "speaker": "TBC 41"
- },
- {
- "id": 42,
- "start": 251.88,
- "end": 252.58,
- "speaker": "TBC 42"
- },
- {
- "id": 43,
- "start": 252.58,
- "end": 263.39,
- "speaker": "TBC 43"
- },
- {
- "id": 44,
- "start": 263.39,
- "end": 264.09,
- "speaker": "TBC 44"
- },
- {
- "id": 45,
- "start": 264.48,
- "end": 269.46,
- "speaker": "TBC 45"
- },
- {
- "id": 46,
- "start": 269.9,
- "end": 271.58,
- "speaker": "TBC 46"
- },
- {
- "id": 47,
- "start": 274.49,
- "end": 285.22,
- "speaker": "TBC 47"
- },
- {
- "id": 48,
- "start": 285.22,
- "end": 292.16,
- "speaker": "TBC 48"
- },
- {
- "id": 49,
- "start": 292.68,
- "end": 294.32,
- "speaker": "TBC 49"
- },
- {
- "id": 50,
- "start": 294.32,
- "end": 297.08,
- "speaker": "TBC 50"
- },
- {
- "id": 51,
- "start": 297.49,
- "end": 305,
- "speaker": "TBC 51"
- },
- {
- "id": 52,
- "start": 305.64,
- "end": 306.43,
- "speaker": "TBC 52"
- },
- {
- "id": 53,
- "start": 306.43,
- "end": 306.92,
- "speaker": "TBC 53"
- },
- {
- "id": 54,
- "start": 306.94,
- "end": 311.33,
- "speaker": "TBC 54"
- },
- {
- "id": 55,
- "start": 311.33,
- "end": 315.18,
- "speaker": "TBC 55"
- },
- {
- "id": 56,
- "start": 315.81,
- "end": 316.7,
- "speaker": "TBC 56"
- },
- {
- "id": 57,
- "start": 316.7,
- "end": 324.18,
- "speaker": "TBC 57"
- },
- {
- "id": 58,
- "start": 324.57,
- "end": 325.43,
- "speaker": "TBC 58"
- },
- {
- "id": 59,
- "start": 327.58,
- "end": 328.94,
- "speaker": "TBC 59"
- },
- {
- "id": 60,
- "start": 328.94,
- "end": 332.04,
- "speaker": "TBC 60"
- },
- {
- "id": 61,
- "start": 332.04,
- "end": 336.22,
- "speaker": "TBC 61"
- },
- {
- "id": 62,
- "start": 337.77,
- "end": 348.94,
- "speaker": "TBC 62"
- },
- {
- "id": 63,
- "start": 349.19,
- "end": 353.1,
- "speaker": "TBC 63"
- },
- {
- "id": 64,
- "start": 353.14,
- "end": 353.59,
- "speaker": "TBC 64"
- },
- {
- "id": 65,
- "start": 353.61,
- "end": 356.98,
- "speaker": "TBC 65"
- },
- {
- "id": 66,
- "start": 358.5,
- "end": 359.43,
- "speaker": "TBC 66"
- },
- {
- "id": 67,
- "start": 359.43,
- "end": 366.26,
- "speaker": "TBC 67"
- },
- {
- "id": 68,
- "start": 366.26,
- "end": 386.59,
- "speaker": "TBC 68"
- },
- {
- "id": 69,
- "start": 386.59,
- "end": 386.76,
- "speaker": "TBC 69"
- },
- {
- "id": 70,
- "start": 386.76,
- "end": 386.91,
- "speaker": "TBC 70"
- },
- {
- "id": 71,
- "start": 387.01,
- "end": 394.06,
- "speaker": "TBC 71"
- },
- {
- "id": 72,
- "start": 394.06,
- "end": 401.24,
- "speaker": "TBC 72"
- },
- {
- "id": 73,
- "start": 405.04,
- "end": 408.49,
- "speaker": "TBC 73"
- },
- {
- "id": 74,
- "start": 410.45,
- "end": 417.01,
- "speaker": "TBC 74"
- },
- {
- "id": 75,
- "start": 417.44,
- "end": 418.46,
- "speaker": "TBC 75"
- },
- {
- "id": 76,
- "start": 418.46,
- "end": 426.87,
- "speaker": "TBC 76"
- },
- {
- "id": 77,
- "start": 427.23,
- "end": 431.33,
- "speaker": "TBC 77"
- },
- {
- "id": 78,
- "start": 431.72,
- "end": 437.21,
- "speaker": "TBC 78"
- },
- {
- "id": 79,
- "start": 437.23,
- "end": 440.87,
- "speaker": "TBC 79"
- },
- {
- "id": 80,
- "start": 440.87,
- "end": 445.07,
- "speaker": "TBC 80"
- },
- {
- "id": 81,
- "start": 445.07,
- "end": 445.49,
- "speaker": "TBC 81"
- },
- {
- "id": 82,
- "start": 445.5,
- "end": 449.18,
- "speaker": "TBC 82"
- },
- {
- "id": 83,
- "start": 449.76,
- "end": 449.98,
- "speaker": "TBC 83"
- },
- {
- "id": 84,
- "start": 449.98,
- "end": 450.29,
- "speaker": "TBC 84"
- },
- {
- "id": 85,
- "start": 450.29,
- "end": 456.02,
- "speaker": "TBC 85"
- },
- {
- "id": 86,
- "start": 456.02,
- "end": 466.25,
- "speaker": "TBC 86"
- },
- {
- "id": 87,
- "start": 468.75,
- "end": 471.71,
- "speaker": "TBC 87"
- },
- {
- "id": 88,
- "start": 471.71,
- "end": 476.19,
- "speaker": "TBC 88"
- },
- {
- "id": 89,
- "start": 476.2,
- "end": 480.33,
- "speaker": "TBC 89"
- },
- {
- "id": 90,
- "start": 480.33,
- "end": 481.72,
- "speaker": "TBC 90"
- },
- {
- "id": 91,
- "start": 482.31,
- "end": 487.74,
- "speaker": "TBC 91"
- },
- {
- "id": 92,
- "start": 488.8,
- "end": 503.56,
- "speaker": "TBC 92"
- },
- {
- "id": 93,
- "start": 504.21,
- "end": 504.74,
- "speaker": "TBC 93"
- },
- {
- "id": 94,
- "start": 504.76,
- "end": 506.26,
- "speaker": "TBC 94"
- },
- {
- "id": 95,
- "start": 507.35,
- "end": 508.33,
- "speaker": "TBC 95"
- },
- {
- "id": 96,
- "start": 508.33,
- "end": 509.38,
- "speaker": "TBC 96"
- },
- {
- "id": 97,
- "start": 510.07,
- "end": 512.08,
- "speaker": "TBC 97"
- },
- {
- "id": 98,
- "start": 512.11,
- "end": 514.21,
- "speaker": "TBC 98"
- },
- {
- "id": 99,
- "start": 514.23,
- "end": 515.58,
- "speaker": "TBC 99"
- },
- {
- "id": 100,
- "start": 516.52,
- "end": 517.84,
- "speaker": "TBC 100"
- },
- {
- "id": 101,
- "start": 517.87,
- "end": 518.57,
- "speaker": "TBC 101"
- },
- {
- "id": 102,
- "start": 518.61,
- "end": 524,
- "speaker": "TBC 102"
- },
- {
- "id": 103,
- "start": 525.74,
- "end": 530.52,
- "speaker": "TBC 103"
- },
- {
- "id": 104,
- "start": 530.53,
- "end": 535.87,
- "speaker": "TBC 104"
- },
- {
- "id": 105,
- "start": 536.02,
- "end": 546.54,
- "speaker": "TBC 105"
- },
- {
- "id": 106,
- "start": 547.04,
- "end": 551.76,
- "speaker": "TBC 106"
- },
- {
- "id": 107,
- "start": 551.78,
- "end": 552.01,
- "speaker": "TBC 107"
- },
- {
- "id": 108,
- "start": 552.01,
- "end": 552.25,
- "speaker": "TBC 108"
- },
- {
- "id": 109,
- "start": 552.27,
- "end": 553.26,
- "speaker": "TBC 109"
- },
- {
- "id": 110,
- "start": 553.27,
- "end": 553.93,
- "speaker": "TBC 110"
- },
- {
- "id": 111,
- "start": 553.93,
- "end": 561.16,
- "speaker": "TBC 111"
- },
- {
- "id": 112,
- "start": 561.28,
- "end": 562.75,
- "speaker": "TBC 112"
- },
- {
- "id": 113,
- "start": 562.81,
- "end": 566.05,
- "speaker": "TBC 113"
- },
- {
- "id": 114,
- "start": 566.59,
- "end": 572.22,
- "speaker": "TBC 114"
- },
- {
- "id": 115,
- "start": 573.62,
- "end": 584.63,
- "speaker": "TBC 115"
- },
- {
- "id": 116,
- "start": 585.66,
- "end": 590.47,
- "speaker": "TBC 116"
- },
- {
- "id": 117,
- "start": 590.57,
- "end": 593.41,
- "speaker": "TBC 117"
- },
- {
- "id": 118,
- "start": 593.41,
- "end": 598.49,
- "speaker": "TBC 118"
- },
- {
- "id": 119,
- "start": 598.49,
- "end": 610.96,
- "speaker": "TBC 119"
- },
- {
- "id": 120,
- "start": 610.96,
- "end": 621.74,
- "speaker": "TBC 120"
- },
- {
- "id": 121,
- "start": 622.03,
- "end": 637.72,
- "speaker": "TBC 121"
- },
- {
- "id": 122,
- "start": 642.67,
- "end": 648.94,
- "speaker": "TBC 122"
- },
- {
- "id": 123,
- "start": 649.33,
- "end": 651.8,
- "speaker": "TBC 123"
- },
- {
- "id": 124,
- "start": 651.8,
- "end": 672.51,
- "speaker": "TBC 124"
- },
- {
- "id": 125,
- "start": 674.24,
- "end": 677.8,
- "speaker": "TBC 125"
- },
- {
- "id": 126,
- "start": 677.8,
- "end": 683.91,
- "speaker": "TBC 126"
- },
- {
- "id": 127,
- "start": 685.11,
- "end": 687.5,
- "speaker": "TBC 127"
- },
- {
- "id": 128,
- "start": 687.5,
- "end": 692.28,
- "speaker": "TBC 128"
- },
- {
- "id": 129,
- "start": 693.36,
- "end": 696.86,
- "speaker": "TBC 129"
- },
- {
- "id": 130,
- "start": 698.23,
- "end": 701.37,
- "speaker": "TBC 130"
- },
- {
- "id": 131,
- "start": 702.17,
- "end": 704.34,
- "speaker": "TBC 131"
- }
- ]
- }
- },
- {
- "_id": "29cjw29xii80000ird74yb19swa",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "title": "Morgan Vague Ted Talk",
- "description": "Ted Talk by Morgan Vague ",
- "url": "https://download.ted.com/talks/MorganVague_2018X.mp4",
- "status": "done",
- "clipName": "MorganVague_2018X.mp4",
- "transcript": {
- "words": [
- {
- "start": 13.26,
- "end": 14.08,
- "text": "Plastic"
- },
- {
- "start": 14.42,
- "end": 14.88,
- "text": "you"
- },
- {
- "start": 14.86,
- "end": 15.08,
- "text": "know"
- },
- {
- "start": 15.06,
- "end": 15.36,
- "text": "about"
- },
- {
- "start": 15.32,
- "end": 15.56,
- "text": "them,"
- },
- {
- "start": 15.9,
- "end": 16.1,
- "text": "you"
- },
- {
- "start": 16.1,
- "end": 16.28,
- "text": "may"
- },
- {
- "start": 16.28,
- "end": 16.48,
- "text": "not"
- },
- {
- "start": 16.48,
- "end": 16.76,
- "text": "love"
- },
- {
- "start": 16.72,
- "end": 16.92,
- "text": "them."
- },
- {
- "start": 17.3,
- "end": 17.48,
- "text": "But"
- },
- {
- "start": 17.5,
- "end": 17.98,
- "text": "chances"
- },
- {
- "start": 17.96,
- "end": 18.24,
- "text": "are"
- },
- {
- "start": 18.24,
- "end": 18.54,
- "text": "you"
- },
- {
- "start": 18.5,
- "end": 18.9,
- "text": "use"
- },
- {
- "start": 18.94,
- "end": 19.16,
- "text": "them"
- },
- {
- "start": 19.3,
- "end": 19.76,
- "text": "every"
- },
- {
- "start": 19.78,
- "end": 20.16,
- "text": "single"
- },
- {
- "start": 20.16,
- "end": 20.42,
- "text": "day"
- },
- {
- "start": 20.86,
- "end": 22.24,
- "text": "by"
- },
- {
- "start": 22.22,
- "end": 22.68,
- "text": "twenty"
- },
- {
- "start": 22.68,
- "end": 23.22,
- "text": "fifty"
- },
- {
- "start": 23.24,
- "end": 24.3,
- "text": "researchers"
- },
- {
- "start": 24.36,
- "end": 24.9,
- "text": "estimate"
- },
- {
- "start": 24.88,
- "end": 25.04,
- "text": "that"
- },
- {
- "start": 25,
- "end": 25.18,
- "text": "there"
- },
- {
- "start": 25.16,
- "end": 25.36,
- "text": "will"
- },
- {
- "start": 25.32,
- "end": 25.44,
- "text": "be"
- },
- {
- "start": 25.4,
- "end": 25.64,
- "text": "more"
- },
- {
- "start": 25.62,
- "end": 26.22,
- "text": "plastic"
- },
- {
- "start": 26.2,
- "end": 26.34,
- "text": "in"
- },
- {
- "start": 26.32,
- "end": 26.46,
- "text": "the"
- },
- {
- "start": 26.44,
- "end": 26.76,
- "text": "ocean"
- },
- {
- "start": 26.74,
- "end": 26.94,
- "text": "than"
- },
- {
- "start": 26.96,
- "end": 27.3,
- "text": "fish."
- },
- {
- "start": 27.86,
- "end": 29.48,
- "text": "Despite"
- },
- {
- "start": 29.46,
- "end": 29.62,
- "text": "our"
- },
- {
- "start": 29.6,
- "end": 29.9,
- "text": "best"
- },
- {
- "start": 29.88,
- "end": 30.44,
- "text": "efforts"
- },
- {
- "start": 30.42,
- "end": 31.2,
- "text": "only"
- },
- {
- "start": 31.18,
- "end": 31.64,
- "text": "nine"
- },
- {
- "start": 31.64,
- "end": 32.18,
- "text": "percent"
- },
- {
- "start": 32.14,
- "end": 32.42,
- "text": "of"
- },
- {
- "start": 32.5,
- "end": 32.78,
- "text": "all"
- },
- {
- "start": 32.82,
- "end": 33.4,
- "text": "plastic."
- },
- {
- "start": 33.38,
- "end": 33.56,
- "text": "We"
- },
- {
- "start": 33.54,
- "end": 34.02,
- "text": "use"
- },
- {
- "start": 34.02,
- "end": 34.88,
- "text": "winds"
- },
- {
- "start": 34.86,
- "end": 35.04,
- "text": "up"
- },
- {
- "start": 35.06,
- "end": 35.32,
- "text": "being"
- },
- {
- "start": 35.32,
- "end": 35.92,
- "text": "recycled"
- },
- {
- "start": 36.4,
- "end": 37.58,
- "text": "and"
- },
- {
- "start": 37.56,
- "end": 37.86,
- "text": "even"
- },
- {
- "start": 37.84,
- "end": 38.24,
- "text": "worse"
- },
- {
- "start": 38.22,
- "end": 39.4,
- "text": "plastic"
- },
- {
- "start": 39.38,
- "end": 39.54,
- "text": "is"
- },
- {
- "start": 39.52,
- "end": 40.42,
- "text": "incredibly"
- },
- {
- "start": 40.4,
- "end": 40.74,
- "text": "tough"
- },
- {
- "start": 40.72,
- "end": 40.92,
- "text": "and"
- },
- {
- "start": 40.88,
- "end": 41.34,
- "text": "durable"
- },
- {
- "start": 41.34,
- "end": 42.04,
- "text": "and"
- },
- {
- "start": 42.04,
- "end": 42.68,
- "text": "researchers"
- },
- {
- "start": 42.72,
- "end": 43.28,
- "text": "estimate"
- },
- {
- "start": 43.28,
- "end": 43.56,
- "text": "that"
- },
- {
- "start": 43.54,
- "end": 43.68,
- "text": "it"
- },
- {
- "start": 43.66,
- "end": 43.82,
- "text": "can"
- },
- {
- "start": 43.82,
- "end": 44.04,
- "text": "take"
- },
- {
- "start": 44.02,
- "end": 44.56,
- "text": "anywhere"
- },
- {
- "start": 44.54,
- "end": 44.8,
- "text": "from"
- },
- {
- "start": 44.78,
- "end": 45.08,
- "text": "five"
- },
- {
- "start": 45.06,
- "end": 45.5,
- "text": "hundred"
- },
- {
- "start": 45.5,
- "end": 46.08,
- "text": "to"
- },
- {
- "start": 46.06,
- "end": 46.48,
- "text": "five"
- },
- {
- "start": 46.44,
- "end": 47.1,
- "text": "thousand"
- },
- {
- "start": 47.08,
- "end": 47.42,
- "text": "years"
- },
- {
- "start": 47.4,
- "end": 47.66,
- "text": "to"
- },
- {
- "start": 47.64,
- "end": 48,
- "text": "fully"
- },
- {
- "start": 48.06,
- "end": 48.36,
- "text": "break"
- },
- {
- "start": 48.44,
- "end": 48.7,
- "text": "down."
- },
- {
- "start": 49,
- "end": 49.1,
- "text": "It"
- },
- {
- "start": 49.88,
- "end": 50.18,
- "text": "leach"
- },
- {
- "start": 50.16,
- "end": 50.38,
- "text": "is"
- },
- {
- "start": 50.42,
- "end": 50.88,
- "text": "harmful"
- },
- {
- "start": 51,
- "end": 51.44,
- "text": "chemical"
- },
- {
- "start": 51.46,
- "end": 52.22,
- "text": "contaminants"
- },
- {
- "start": 52.3,
- "end": 52.64,
- "text": "into"
- },
- {
- "start": 52.66,
- "end": 52.84,
- "text": "our"
- },
- {
- "start": 52.86,
- "end": 53.3,
- "text": "oceans."
- },
- {
- "start": 53.82,
- "end": 54.12,
- "text": "Our"
- },
- {
- "start": 54.24,
- "end": 54.64,
- "text": "soil"
- },
- {
- "start": 55.26,
- "end": 55.48,
- "text": "or"
- },
- {
- "start": 55.56,
- "end": 55.94,
- "text": "food"
- },
- {
- "start": 56.48,
- "end": 56.7,
- "text": "or"
- },
- {
- "start": 56.74,
- "end": 57.14,
- "text": "water"
- },
- {
- "start": 57.8,
- "end": 58.12,
- "text": "and"
- },
- {
- "start": 58.54,
- "end": 58.9,
- "text": "into"
- },
- {
- "start": 58.94,
- "end": 59.06,
- "text": "us."
- },
- {
- "start": 59.74,
- "end": 59.84,
- "text": "So"
- },
- {
- "start": 61.12,
- "end": 61.38,
- "text": "how"
- },
- {
- "start": 61.36,
- "end": 61.52,
- "text": "did"
- },
- {
- "start": 61.52,
- "end": 61.66,
- "text": "we"
- },
- {
- "start": 61.64,
- "end": 61.92,
- "text": "wind"
- },
- {
- "start": 61.88,
- "end": 62.04,
- "text": "up"
- },
- {
- "start": 62.04,
- "end": 62.24,
- "text": "with"
- },
- {
- "start": 62.22,
- "end": 62.34,
- "text": "so"
- },
- {
- "start": 62.34,
- "end": 62.56,
- "text": "much"
- },
- {
- "start": 62.58,
- "end": 63.06,
- "text": "plastic"
- },
- {
- "start": 63.04,
- "end": 63.36,
- "text": "waste?"
- },
- {
- "start": 63.88,
- "end": 64.84,
- "text": "Well,"
- },
- {
- "start": 64.84,
- "end": 65.42,
- "text": "it's"
- },
- {
- "start": 65.38,
- "end": 65.82,
- "text": "simple"
- },
- {
- "start": 65.82,
- "end": 67.14,
- "text": "plastic"
- },
- {
- "start": 67.12,
- "end": 67.28,
- "text": "is"
- },
- {
- "start": 67.38,
- "end": 67.68,
- "text": "cheap."
- },
- {
- "start": 68.04,
- "end": 68.58,
- "text": "Durable"
- },
- {
- "start": 68.58,
- "end": 69.42,
- "text": "adaptable"
- },
- {
- "start": 69.4,
- "end": 70.26,
- "text": "and"
- },
- {
- "start": 70.22,
- "end": 70.96,
- "text": "it's"
- },
- {
- "start": 70.96,
- "end": 71.46,
- "text": "everywhere."
- },
- {
- "start": 71.98,
- "end": 72.94,
- "text": "But"
- },
- {
- "start": 72.9,
- "end": 73.12,
- "text": "the"
- },
- {
- "start": 73.08,
- "end": 73.36,
- "text": "good"
- },
- {
- "start": 73.34,
- "end": 73.54,
- "text": "news"
- },
- {
- "start": 73.5,
- "end": 73.64,
- "text": "is,"
- },
- {
- "start": 73.8,
- "end": 74.3,
- "text": "is"
- },
- {
- "start": 74.28,
- "end": 74.5,
- "text": "there"
- },
- {
- "start": 74.46,
- "end": 74.9,
- "text": "something"
- },
- {
- "start": 74.88,
- "end": 75.12,
- "text": "else"
- },
- {
- "start": 75.1,
- "end": 75.52,
- "text": "that's"
- },
- {
- "start": 75.6,
- "end": 75.92,
- "text": "cheap,"
- },
- {
- "start": 75.92,
- "end": 76.68,
- "text": "durable"
- },
- {
- "start": 76.7,
- "end": 77.4,
- "text": "adaptable"
- },
- {
- "start": 77.38,
- "end": 77.68,
- "text": "and"
- },
- {
- "start": 77.64,
- "end": 78.1,
- "text": "everywhere"
- },
- {
- "start": 78.4,
- "end": 79,
- "text": "and"
- },
- {
- "start": 78.98,
- "end": 79.12,
- "text": "my"
- },
- {
- "start": 79.14,
- "end": 79.66,
- "text": "research"
- },
- {
- "start": 79.64,
- "end": 79.98,
- "text": "shows"
- },
- {
- "start": 80.02,
- "end": 80.46,
- "text": "it"
- },
- {
- "start": 80.44,
- "end": 80.66,
- "text": "may"
- },
- {
- "start": 80.64,
- "end": 81,
- "text": "even"
- },
- {
- "start": 81,
- "end": 81.14,
- "text": "be"
- },
- {
- "start": 81.1,
- "end": 81.32,
- "text": "able"
- },
- {
- "start": 81.3,
- "end": 81.42,
- "text": "to"
- },
- {
- "start": 81.4,
- "end": 81.68,
- "text": "help"
- },
- {
- "start": 81.7,
- "end": 81.9,
- "text": "us"
- },
- {
- "start": 81.94,
- "end": 82.38,
- "text": "with"
- },
- {
- "start": 82.34,
- "end": 82.52,
- "text": "our"
- },
- {
- "start": 82.5,
- "end": 82.96,
- "text": "plastic"
- },
- {
- "start": 82.96,
- "end": 83.46,
- "text": "pollution"
- },
- {
- "start": 83.44,
- "end": 83.86,
- "text": "problem."
- },
- {
- "start": 84.1,
- "end": 85.68,
- "text": "I'm"
- },
- {
- "start": 85.66,
- "end": 86.2,
- "text": "talking"
- },
- {
- "start": 86.16,
- "end": 86.54,
- "text": "about"
- },
- {
- "start": 86.52,
- "end": 87.42,
- "text": "bacteria"
- },
- {
- "start": 88.04,
- "end": 89.38,
- "text": "bacteria"
- },
- {
- "start": 89.4,
- "end": 89.74,
- "text": "are"
- },
- {
- "start": 89.7,
- "end": 90.58,
- "text": "microscopic"
- },
- {
- "start": 90.56,
- "end": 90.98,
- "text": "living"
- },
- {
- "start": 90.96,
- "end": 91.36,
- "text": "beings"
- },
- {
- "start": 91.34,
- "end": 92.34,
- "text": "invisible"
- },
- {
- "start": 92.32,
- "end": 92.48,
- "text": "to"
- },
- {
- "start": 92.48,
- "end": 92.62,
- "text": "the"
- },
- {
- "start": 92.6,
- "end": 92.96,
- "text": "naked"
- },
- {
- "start": 92.92,
- "end": 93.2,
- "text": "eye"
- },
- {
- "start": 93.34,
- "end": 93.84,
- "text": "that"
- },
- {
- "start": 93.86,
- "end": 94.18,
- "text": "live"
- },
- {
- "start": 94.38,
- "end": 95.02,
- "text": "everywhere"
- },
- {
- "start": 95.02,
- "end": 95.52,
- "text": "in"
- },
- {
- "start": 95.5,
- "end": 95.72,
- "text": "all"
- },
- {
- "start": 95.72,
- "end": 96.04,
- "text": "sorts"
- },
- {
- "start": 96.02,
- "end": 96.18,
- "text": "of"
- },
- {
- "start": 96.16,
- "end": 96.64,
- "text": "diverse"
- },
- {
- "start": 96.62,
- "end": 96.8,
- "text": "and"
- },
- {
- "start": 96.76,
- "end": 97.24,
- "text": "extreme"
- },
- {
- "start": 97.22,
- "end": 97.86,
- "text": "environments"
- },
- {
- "start": 98.14,
- "end": 98.84,
- "text": "from"
- },
- {
- "start": 98.82,
- "end": 98.98,
- "text": "the"
- },
- {
- "start": 98.94,
- "end": 99.34,
- "text": "human"
- },
- {
- "start": 99.34,
- "end": 99.82,
- "text": "gut"
- },
- {
- "start": 99.94,
- "end": 100.84,
- "text": "soil"
- },
- {
- "start": 100.86,
- "end": 101.8,
- "text": "skin"
- },
- {
- "start": 102.26,
- "end": 102.38,
- "text": "to"
- },
- {
- "start": 102.36,
- "end": 102.7,
- "text": "vent"
- },
- {
- "start": 102.74,
- "end": 102.86,
- "text": "on"
- },
- {
- "start": 102.84,
- "end": 102.98,
- "text": "the"
- },
- {
- "start": 102.94,
- "end": 103.22,
- "text": "ocean"
- },
- {
- "start": 103.24,
- "end": 103.58,
- "text": "floor,"
- },
- {
- "start": 103.54,
- "end": 103.96,
- "text": "reaching"
- },
- {
- "start": 103.92,
- "end": 104.52,
- "text": "temperatures"
- },
- {
- "start": 104.52,
- "end": 104.68,
- "text": "of"
- },
- {
- "start": 104.96,
- "end": 105.26,
- "text": "seven"
- },
- {
- "start": 105.24,
- "end": 105.5,
- "text": "hundred"
- },
- {
- "start": 105.46,
- "end": 105.84,
- "text": "degrees"
- },
- {
- "start": 105.84,
- "end": 106.42,
- "text": "fahrenheit"
- },
- {
- "start": 106.8,
- "end": 107.44,
- "text": "bacteria"
- },
- {
- "start": 107.5,
- "end": 107.9,
- "text": "live"
- },
- {
- "start": 108.04,
- "end": 108.66,
- "text": "everywhere"
- },
- {
- "start": 108.68,
- "end": 109.2,
- "text": "in"
- },
- {
- "start": 109.26,
- "end": 109.5,
- "text": "all"
- },
- {
- "start": 109.54,
- "end": 109.84,
- "text": "sorts"
- },
- {
- "start": 109.84,
- "end": 110.02,
- "text": "of"
- },
- {
- "start": 110,
- "end": 110.42,
- "text": "diverse"
- },
- {
- "start": 110.42,
- "end": 110.58,
- "text": "and"
- },
- {
- "start": 110.56,
- "end": 111.02,
- "text": "extreme"
- },
- {
- "start": 111,
- "end": 111.64,
- "text": "environments."
- },
- {
- "start": 111.9,
- "end": 112.46,
- "text": "And"
- },
- {
- "start": 112.42,
- "end": 112.66,
- "text": "as"
- },
- {
- "start": 112.62,
- "end": 113.04,
- "text": "such,"
- },
- {
- "start": 113.56,
- "end": 113.86,
- "text": "they"
- },
- {
- "start": 113.84,
- "end": 114,
- "text": "have"
- },
- {
- "start": 113.96,
- "end": 114.08,
- "text": "to"
- },
- {
- "start": 114.06,
- "end": 114.24,
- "text": "get"
- },
- {
- "start": 114.34,
- "end": 114.74,
- "text": "pretty"
- },
- {
- "start": 114.76,
- "end": 115.28,
- "text": "creative"
- },
- {
- "start": 115.26,
- "end": 115.42,
- "text": "with"
- },
- {
- "start": 115.38,
- "end": 115.58,
- "text": "their"
- },
- {
- "start": 115.58,
- "end": 115.84,
- "text": "food"
- },
- {
- "start": 115.82,
- "end": 116.2,
- "text": "sources."
- },
- {
- "start": 116.76,
- "end": 118.2,
- "text": "There's"
- },
- {
- "start": 118.18,
- "end": 118.52,
- "text": "also"
- },
- {
- "start": 118.5,
- "end": 118.58,
- "text": "a"
- },
- {
- "start": 118.58,
- "end": 118.9,
- "text": "lot"
- },
- {
- "start": 118.94,
- "end": 119.08,
- "text": "of"
- },
- {
- "start": 119.04,
- "end": 119.24,
- "text": "them"
- },
- {
- "start": 119.3,
- "end": 120.74,
- "text": "researchers"
- },
- {
- "start": 120.76,
- "end": 121.34,
- "text": "estimate"
- },
- {
- "start": 121.3,
- "end": 121.46,
- "text": "that"
- },
- {
- "start": 121.42,
- "end": 121.68,
- "text": "they're"
- },
- {
- "start": 121.64,
- "end": 122.18,
- "text": "roughly"
- },
- {
- "start": 122.32,
- "end": 122.74,
- "text": "five"
- },
- {
- "start": 122.88,
- "end": 123.32,
- "text": "million"
- },
- {
- "start": 123.32,
- "end": 123.92,
- "text": "trillion"
- },
- {
- "start": 123.92,
- "end": 124.42,
- "text": "trillion,"
- },
- {
- "start": 124.84,
- "end": 125.42,
- "text": "that's"
- },
- {
- "start": 125.4,
- "end": 125.48,
- "text": "a"
- },
- {
- "start": 125.5,
- "end": 126.06,
- "text": "five"
- },
- {
- "start": 126.06,
- "end": 126.26,
- "text": "with"
- },
- {
- "start": 126.32,
- "end": 126.7,
- "text": "thirty"
- },
- {
- "start": 126.76,
- "end": 127.02,
- "text": "zero"
- },
- {
- "start": 127,
- "end": 127.52,
- "text": "after"
- },
- {
- "start": 127.5,
- "end": 127.64,
- "text": "a"
- },
- {
- "start": 128.14,
- "end": 128.9,
- "text": "bacteria"
- },
- {
- "start": 129,
- "end": 129.24,
- "text": "on"
- },
- {
- "start": 129.26,
- "end": 129.4,
- "text": "the"
- },
- {
- "start": 129.42,
- "end": 129.84,
- "text": "planet."
- },
- {
- "start": 130.32,
- "end": 131.82,
- "text": "Now,"
- },
- {
- "start": 131.94,
- "end": 133.22,
- "text": "considering"
- },
- {
- "start": 133.2,
- "end": 133.52,
- "text": "that"
- },
- {
- "start": 133.5,
- "end": 133.64,
- "text": "we"
- },
- {
- "start": 133.62,
- "end": 134.16,
- "text": "humans"
- },
- {
- "start": 134.28,
- "end": 134.78,
- "text": "produce"
- },
- {
- "start": 134.78,
- "end": 135.22,
- "text": "three"
- },
- {
- "start": 135.26,
- "end": 135.6,
- "text": "hundred"
- },
- {
- "start": 135.72,
- "end": 136.16,
- "text": "million"
- },
- {
- "start": 136.16,
- "end": 136.7,
- "text": "tons"
- },
- {
- "start": 136.82,
- "end": 136.98,
- "text": "of"
- },
- {
- "start": 136.96,
- "end": 137.18,
- "text": "new"
- },
- {
- "start": 137.22,
- "end": 137.74,
- "text": "plastic"
- },
- {
- "start": 137.72,
- "end": 138.08,
- "text": "each"
- },
- {
- "start": 138.1,
- "end": 138.28,
- "text": "year."
- },
- {
- "start": 139,
- "end": 139.08,
- "text": "I"
- },
- {
- "start": 139.18,
- "end": 139.92,
- "text": "say"
- },
- {
- "start": 139.9,
- "end": 140.14,
- "text": "that"
- },
- {
- "start": 140.12,
- "end": 140.28,
- "text": "our"
- },
- {
- "start": 140.3,
- "end": 140.76,
- "text": "plastic"
- },
- {
- "start": 140.76,
- "end": 141.12,
- "text": "numbers"
- },
- {
- "start": 141.14,
- "end": 142.1,
- "text": "are"
- },
- {
- "start": 142.08,
- "end": 142.4,
- "text": "looking"
- },
- {
- "start": 142.42,
- "end": 142.76,
- "text": "pretty"
- },
- {
- "start": 142.74,
- "end": 143.38,
- "text": "comparable"
- },
- {
- "start": 143.36,
- "end": 143.52,
- "text": "to"
- },
- {
- "start": 143.5,
- "end": 144.2,
- "text": "bacterias."
- },
- {
- "start": 144.72,
- "end": 144.82,
- "text": "So"
- },
- {
- "start": 146.1,
- "end": 146.96,
- "text": "after"
- },
- {
- "start": 146.94,
- "end": 147.5,
- "text": "noticing"
- },
- {
- "start": 147.48,
- "end": 147.68,
- "text": "this"
- },
- {
- "start": 147.66,
- "end": 148.44,
- "text": "and"
- },
- {
- "start": 148.4,
- "end": 148.72,
- "text": "after"
- },
- {
- "start": 148.7,
- "end": 149.12,
- "text": "learning"
- },
- {
- "start": 149.08,
- "end": 149.36,
- "text": "about"
- },
- {
- "start": 149.34,
- "end": 149.52,
- "text": "all"
- },
- {
- "start": 149.5,
- "end": 149.7,
- "text": "the"
- },
- {
- "start": 149.7,
- "end": 150.2,
- "text": "creative"
- },
- {
- "start": 150.16,
- "end": 150.42,
- "text": "ways"
- },
- {
- "start": 150.4,
- "end": 150.64,
- "text": "that"
- },
- {
- "start": 150.64,
- "end": 151.12,
- "text": "bacteria"
- },
- {
- "start": 151.24,
- "end": 151.52,
- "text": "find"
- },
- {
- "start": 151.54,
- "end": 151.82,
- "text": "food."
- },
- {
- "start": 152.16,
- "end": 152.24,
- "text": "I"
- },
- {
- "start": 152.22,
- "end": 153.24,
- "text": "started"
- },
- {
- "start": 153.2,
- "end": 153.34,
- "text": "to"
- },
- {
- "start": 153.32,
- "end": 153.64,
- "text": "think"
- },
- {
- "start": 153.62,
- "end": 155.12,
- "text": "good"
- },
- {
- "start": 155.1,
- "end": 155.74,
- "text": "bacteria"
- },
- {
- "start": 155.76,
- "end": 156.12,
- "text": "and"
- },
- {
- "start": 156.1,
- "end": 156.6,
- "text": "plastic"
- },
- {
- "start": 156.62,
- "end": 157.1,
- "text": "polluted"
- },
- {
- "start": 157.06,
- "end": 157.72,
- "text": "environments."
- },
- {
- "start": 157.76,
- "end": 158,
- "text": "Have"
- },
- {
- "start": 157.98,
- "end": 158.34,
- "text": "figured"
- },
- {
- "start": 158.32,
- "end": 158.5,
- "text": "out"
- },
- {
- "start": 158.8,
- "end": 159.14,
- "text": "how"
- },
- {
- "start": 159.12,
- "end": 159.22,
- "text": "to"
- },
- {
- "start": 159.22,
- "end": 159.48,
- "text": "use"
- },
- {
- "start": 159.5,
- "end": 160.06,
- "text": "plastic"
- },
- {
- "start": 160.08,
- "end": 160.42,
- "text": "for"
- },
- {
- "start": 160.4,
- "end": 160.64,
- "text": "food."
- },
- {
- "start": 161.86,
- "end": 162.62,
- "text": "Well,"
- },
- {
- "start": 162.6,
- "end": 163.2,
- "text": "this"
- },
- {
- "start": 163.16,
- "end": 163.36,
- "text": "is"
- },
- {
- "start": 163.32,
- "end": 163.48,
- "text": "the"
- },
- {
- "start": 163.46,
- "end": 163.9,
- "text": "question"
- },
- {
- "start": 163.86,
- "end": 164.06,
- "text": "that"
- },
- {
- "start": 164.02,
- "end": 164.1,
- "text": "I"
- },
- {
- "start": 164.1,
- "end": 164.52,
- "text": "decided"
- },
- {
- "start": 164.56,
- "end": 164.7,
- "text": "to"
- },
- {
- "start": 164.68,
- "end": 165.06,
- "text": "pursue"
- },
- {
- "start": 165.04,
- "end": 165.14,
- "text": "a"
- },
- {
- "start": 165.16,
- "end": 165.44,
- "text": "couple"
- },
- {
- "start": 165.4,
- "end": 165.7,
- "text": "years"
- },
- {
- "start": 165.7,
- "end": 165.92,
- "text": "ago."
- },
- {
- "start": 166.32,
- "end": 167.52,
- "text": "Now,"
- },
- {
- "start": 167.5,
- "end": 168.16,
- "text": "fortunately"
- },
- {
- "start": 168.14,
- "end": 168.48,
- "text": "for"
- },
- {
- "start": 168.46,
- "end": 168.66,
- "text": "me,"
- },
- {
- "start": 168.68,
- "end": 169.6,
- "text": "I'm"
- },
- {
- "start": 169.6,
- "end": 169.78,
- "text": "from"
- },
- {
- "start": 169.76,
- "end": 169.92,
- "text": "one"
- },
- {
- "start": 169.9,
- "end": 170,
- "text": "of"
- },
- {
- "start": 169.98,
- "end": 170.12,
- "text": "the"
- },
- {
- "start": 170.08,
- "end": 170.28,
- "text": "most"
- },
- {
- "start": 170.3,
- "end": 170.74,
- "text": "polluted"
- },
- {
- "start": 170.72,
- "end": 171.08,
- "text": "cities"
- },
- {
- "start": 171.06,
- "end": 171.2,
- "text": "in"
- },
- {
- "start": 171.16,
- "end": 171.62,
- "text": "america,"
- },
- {
- "start": 171.6,
- "end": 173.16,
- "text": "houston,"
- },
- {
- "start": 173.12,
- "end": 173.64,
- "text": "texas."
- },
- {
- "start": 173.66,
- "end": 175.76,
- "text": "In"
- },
- {
- "start": 175.76,
- "end": 175.92,
- "text": "my"
- },
- {
- "start": 175.96,
- "end": 176.46,
- "text": "hometown"
- },
- {
- "start": 176.48,
- "end": 176.86,
- "text": "alone."
- },
- {
- "start": 176.84,
- "end": 177.06,
- "text": "There"
- },
- {
- "start": 177.04,
- "end": 177.26,
- "text": "are"
- },
- {
- "start": 177.24,
- "end": 178,
- "text": "seven"
- },
- {
- "start": 178.12,
- "end": 178.56,
- "text": "epa"
- },
- {
- "start": 178.68,
- "end": 179.34,
- "text": "designated"
- },
- {
- "start": 179.32,
- "end": 180.04,
- "text": "superfund"
- },
- {
- "start": 180.12,
- "end": 180.42,
- "text": "sites."
- },
- {
- "start": 180.54,
- "end": 182.46,
- "text": "These"
- },
- {
- "start": 182.42,
- "end": 182.6,
- "text": "are"
- },
- {
- "start": 182.58,
- "end": 182.94,
- "text": "sites"
- },
- {
- "start": 182.9,
- "end": 183.12,
- "text": "that"
- },
- {
- "start": 183.1,
- "end": 183.28,
- "text": "are"
- },
- {
- "start": 183.26,
- "end": 183.6,
- "text": "so"
- },
- {
- "start": 183.64,
- "end": 184.44,
- "text": "polluted"
- },
- {
- "start": 184.42,
- "end": 184.92,
- "text": "that"
- },
- {
- "start": 184.88,
- "end": 185.08,
- "text": "the"
- },
- {
- "start": 185.12,
- "end": 185.72,
- "text": "government"
- },
- {
- "start": 185.7,
- "end": 185.96,
- "text": "has"
- },
- {
- "start": 185.96,
- "end": 186.32,
- "text": "deemed"
- },
- {
- "start": 186.28,
- "end": 186.54,
- "text": "their"
- },
- {
- "start": 186.58,
- "end": 186.9,
- "text": "clean"
- },
- {
- "start": 186.88,
- "end": 187.06,
- "text": "up"
- },
- {
- "start": 187.32,
- "end": 187.4,
- "text": "a"
- },
- {
- "start": 187.42,
- "end": 188,
- "text": "national"
- },
- {
- "start": 188,
- "end": 188.54,
- "text": "priority."
- },
- {
- "start": 188.88,
- "end": 188.98,
- "text": "So"
- },
- {
- "start": 190.54,
- "end": 191.06,
- "text": "I"
- },
- {
- "start": 191.14,
- "end": 191.64,
- "text": "decided"
- },
- {
- "start": 191.6,
- "end": 191.82,
- "text": "to"
- },
- {
- "start": 191.78,
- "end": 192.16,
- "text": "track"
- },
- {
- "start": 192.14,
- "end": 192.46,
- "text": "around"
- },
- {
- "start": 192.42,
- "end": 192.58,
- "text": "to"
- },
- {
- "start": 192.56,
- "end": 192.78,
- "text": "these"
- },
- {
- "start": 192.76,
- "end": 193.06,
- "text": "sites"
- },
- {
- "start": 193.3,
- "end": 193.48,
- "text": "and"
- },
- {
- "start": 193.44,
- "end": 193.76,
- "text": "collect"
- },
- {
- "start": 193.72,
- "end": 194.14,
- "text": "soil"
- },
- {
- "start": 194.16,
- "end": 194.56,
- "text": "samples"
- },
- {
- "start": 194.56,
- "end": 195.18,
- "text": "teaming"
- },
- {
- "start": 195.14,
- "end": 195.34,
- "text": "with"
- },
- {
- "start": 195.32,
- "end": 195.9,
- "text": "bacteria."
- },
- {
- "start": 196.26,
- "end": 196.34,
- "text": "I"
- },
- {
- "start": 196.3,
- "end": 197.32,
- "text": "started"
- },
- {
- "start": 197.3,
- "end": 197.7,
- "text": "toying"
- },
- {
- "start": 197.68,
- "end": 197.9,
- "text": "with"
- },
- {
- "start": 197.88,
- "end": 197.96,
- "text": "a"
- },
- {
- "start": 198.18,
- "end": 198.68,
- "text": "protocol"
- },
- {
- "start": 198.76,
- "end": 199.24,
- "text": "which"
- },
- {
- "start": 199.22,
- "end": 199.44,
- "text": "is"
- },
- {
- "start": 199.44,
- "end": 199.96,
- "text": "fancy"
- },
- {
- "start": 199.94,
- "end": 200.3,
- "text": "science"
- },
- {
- "start": 200.28,
- "end": 200.6,
- "text": "talk"
- },
- {
- "start": 200.66,
- "end": 200.82,
- "text": "for"
- },
- {
- "start": 200.8,
- "end": 200.88,
- "text": "a"
- },
- {
- "start": 200.86,
- "end": 201.26,
- "text": "recipe."
- },
- {
- "start": 201.62,
- "end": 202.4,
- "text": "And"
- },
- {
- "start": 202.36,
- "end": 202.92,
- "text": "what"
- },
- {
- "start": 202.88,
- "end": 202.96,
- "text": "I"
- },
- {
- "start": 202.96,
- "end": 203.14,
- "text": "was"
- },
- {
- "start": 203.1,
- "end": 203.42,
- "text": "trying"
- },
- {
- "start": 203.38,
- "end": 203.5,
- "text": "to"
- },
- {
- "start": 203.48,
- "end": 203.7,
- "text": "cook"
- },
- {
- "start": 203.68,
- "end": 203.82,
- "text": "up"
- },
- {
- "start": 203.94,
- "end": 204.58,
- "text": "was"
- },
- {
- "start": 204.54,
- "end": 204.62,
- "text": "a"
- },
- {
- "start": 204.72,
- "end": 205.16,
- "text": "carbon"
- },
- {
- "start": 205.2,
- "end": 205.46,
- "text": "free"
- },
- {
- "start": 205.46,
- "end": 205.82,
- "text": "media"
- },
- {
- "start": 206.22,
- "end": 206.34,
- "text": "or"
- },
- {
- "start": 206.54,
- "end": 206.76,
- "text": "a"
- },
- {
- "start": 206.82,
- "end": 207.16,
- "text": "food"
- },
- {
- "start": 207.16,
- "end": 207.44,
- "text": "free"
- },
- {
- "start": 207.4,
- "end": 208.06,
- "text": "environment"
- },
- {
- "start": 208.04,
- "end": 209.26,
- "text": "an"
- },
- {
- "start": 209.24,
- "end": 209.88,
- "text": "environment"
- },
- {
- "start": 209.88,
- "end": 210.2,
- "text": "without"
- },
- {
- "start": 210.16,
- "end": 210.36,
- "text": "the"
- },
- {
- "start": 210.34,
- "end": 210.74,
- "text": "usual"
- },
- {
- "start": 210.82,
- "end": 211.32,
- "text": "carbons"
- },
- {
- "start": 211.32,
- "end": 211.5,
- "text": "or"
- },
- {
- "start": 211.52,
- "end": 211.88,
- "text": "food."
- },
- {
- "start": 211.92,
- "end": 212.18,
- "text": "That"
- },
- {
- "start": 212.26,
- "end": 212.94,
- "text": "bacteria"
- },
- {
- "start": 213.06,
- "end": 213.28,
- "text": "like"
- },
- {
- "start": 213.26,
- "end": 213.44,
- "text": "us"
- },
- {
- "start": 213.42,
- "end": 213.8,
- "text": "humans"
- },
- {
- "start": 213.82,
- "end": 214.04,
- "text": "need"
- },
- {
- "start": 214.04,
- "end": 214.16,
- "text": "to"
- },
- {
- "start": 214.14,
- "end": 214.38,
- "text": "live."
- },
- {
- "start": 214.68,
- "end": 216.28,
- "text": "Now"
- },
- {
- "start": 216.26,
- "end": 216.42,
- "text": "in"
- },
- {
- "start": 216.42,
- "end": 216.6,
- "text": "this"
- },
- {
- "start": 216.58,
- "end": 217.24,
- "text": "environment,"
- },
- {
- "start": 217.22,
- "end": 217.32,
- "text": "I"
- },
- {
- "start": 217.36,
- "end": 217.58,
- "text": "would"
- },
- {
- "start": 217.56,
- "end": 217.96,
- "text": "provide"
- },
- {
- "start": 217.92,
- "end": 218.1,
- "text": "my"
- },
- {
- "start": 218.12,
- "end": 218.64,
- "text": "bacteria"
- },
- {
- "start": 218.68,
- "end": 218.86,
- "text": "with"
- },
- {
- "start": 218.84,
- "end": 218.98,
- "text": "the"
- },
- {
- "start": 218.94,
- "end": 219.28,
- "text": "sole"
- },
- {
- "start": 219.38,
- "end": 219.8,
- "text": "carbon"
- },
- {
- "start": 219.8,
- "end": 219.94,
- "text": "or"
- },
- {
- "start": 219.92,
- "end": 220.2,
- "text": "food"
- },
- {
- "start": 220.18,
- "end": 220.54,
- "text": "source."
- },
- {
- "start": 221.02,
- "end": 221.1,
- "text": "I"
- },
- {
- "start": 221.08,
- "end": 222.38,
- "text": "would"
- },
- {
- "start": 222.36,
- "end": 222.6,
- "text": "see"
- },
- {
- "start": 222.56,
- "end": 222.8,
- "text": "my"
- },
- {
- "start": 222.82,
- "end": 223.5,
- "text": "bacteria"
- },
- {
- "start": 223.58,
- "end": 224.98,
- "text": "polyethylene"
- },
- {
- "start": 225,
- "end": 225.44,
- "text": "corrupt"
- },
- {
- "start": 225.4,
- "end": 225.54,
- "text": "the"
- },
- {
- "start": 225.52,
- "end": 225.76,
- "text": "late"
- },
- {
- "start": 226.14,
- "end": 226.44,
- "text": "or"
- },
- {
- "start": 226.66,
- "end": 227.34,
- "text": "pet"
- },
- {
- "start": 227.86,
- "end": 228.34,
- "text": "plastic."
- },
- {
- "start": 229.14,
- "end": 230.16,
- "text": "Pet"
- },
- {
- "start": 230.56,
- "end": 231.08,
- "text": "plastic"
- },
- {
- "start": 231.12,
- "end": 231.26,
- "text": "is"
- },
- {
- "start": 231.24,
- "end": 231.4,
- "text": "the"
- },
- {
- "start": 231.36,
- "end": 231.6,
- "text": "most"
- },
- {
- "start": 231.74,
- "end": 232.72,
- "text": "widely-produce"
- },
- {
- "start": 232.8,
- "end": 233.3,
- "text": "plastic"
- },
- {
- "start": 233.34,
- "end": 233.52,
- "text": "in"
- },
- {
- "start": 233.54,
- "end": 233.7,
- "text": "the"
- },
- {
- "start": 233.7,
- "end": 234,
- "text": "world."
- },
- {
- "start": 234.42,
- "end": 235.16,
- "text": "It's"
- },
- {
- "start": 235.14,
- "end": 235.42,
- "text": "used"
- },
- {
- "start": 235.38,
- "end": 235.54,
- "text": "in"
- },
- {
- "start": 235.62,
- "end": 235.84,
- "text": "all"
- },
- {
- "start": 235.84,
- "end": 236.22,
- "text": "sorts"
- },
- {
- "start": 236.18,
- "end": 236.36,
- "text": "of"
- },
- {
- "start": 236.36,
- "end": 236.64,
- "text": "food"
- },
- {
- "start": 236.6,
- "end": 236.78,
- "text": "and"
- },
- {
- "start": 236.74,
- "end": 237.04,
- "text": "drink"
- },
- {
- "start": 237.04,
- "end": 237.6,
- "text": "containers"
- },
- {
- "start": 237.62,
- "end": 238.18,
- "text": "with"
- },
- {
- "start": 238.14,
- "end": 238.28,
- "text": "the"
- },
- {
- "start": 238.26,
- "end": 238.48,
- "text": "most"
- },
- {
- "start": 238.5,
- "end": 239.2,
- "text": "notorious"
- },
- {
- "start": 239.18,
- "end": 239.74,
- "text": "example"
- },
- {
- "start": 239.72,
- "end": 240.16,
- "text": "being"
- },
- {
- "start": 240.2,
- "end": 240.74,
- "text": "plastic"
- },
- {
- "start": 240.78,
- "end": 241.12,
- "text": "water"
- },
- {
- "start": 241.12,
- "end": 241.42,
- "text": "bottles"
- },
- {
- "start": 241.9,
- "end": 242.08,
- "text": "of"
- },
- {
- "start": 242.18,
- "end": 242.44,
- "text": "which"
- },
- {
- "start": 242.42,
- "end": 242.66,
- "text": "we"
- },
- {
- "start": 242.64,
- "end": 243.22,
- "text": "humans"
- },
- {
- "start": 243.5,
- "end": 244.16,
- "text": "currently"
- },
- {
- "start": 244.14,
- "end": 244.34,
- "text": "go"
- },
- {
- "start": 244.36,
- "end": 244.7,
- "text": "through"
- },
- {
- "start": 244.66,
- "end": 244.84,
- "text": "at"
- },
- {
- "start": 244.8,
- "end": 244.88,
- "text": "a"
- },
- {
- "start": 244.9,
- "end": 245.24,
- "text": "rate"
- },
- {
- "start": 245.24,
- "end": 245.4,
- "text": "of"
- },
- {
- "start": 245.42,
- "end": 245.82,
- "text": "one"
- },
- {
- "start": 245.84,
- "end": 246.54,
- "text": "million"
- },
- {
- "start": 246.56,
- "end": 246.78,
- "text": "per"
- },
- {
- "start": 246.76,
- "end": 247.16,
- "text": "minute."
- },
- {
- "start": 247.54,
- "end": 247.64,
- "text": "So"
- },
- {
- "start": 250.34,
- "end": 251.16,
- "text": "what"
- },
- {
- "start": 251.12,
- "end": 251.2,
- "text": "I"
- },
- {
- "start": 251.22,
- "end": 251.48,
- "text": "would"
- },
- {
- "start": 251.46,
- "end": 251.6,
- "text": "be"
- },
- {
- "start": 251.58,
- "end": 252,
- "text": "doing"
- },
- {
- "start": 251.98,
- "end": 252.32,
- "text": "is"
- },
- {
- "start": 252.4,
- "end": 253,
- "text": "essentially"
- },
- {
- "start": 252.98,
- "end": 253.38,
- "text": "putting"
- },
- {
- "start": 253.36,
- "end": 253.5,
- "text": "my"
- },
- {
- "start": 253.52,
- "end": 254.14,
- "text": "bacteria"
- },
- {
- "start": 254.24,
- "end": 254.44,
- "text": "on"
- },
- {
- "start": 254.42,
- "end": 254.5,
- "text": "a"
- },
- {
- "start": 254.54,
- "end": 254.9,
- "text": "force"
- },
- {
- "start": 254.96,
- "end": 255.34,
- "text": "diet"
- },
- {
- "start": 255.4,
- "end": 255.48,
- "text": "a"
- },
- {
- "start": 255.56,
- "end": 255.98,
- "text": "pet"
- },
- {
- "start": 256.14,
- "end": 256.7,
- "text": "plastic"
- },
- {
- "start": 257.18,
- "end": 257.38,
- "text": "and"
- },
- {
- "start": 257.34,
- "end": 257.68,
- "text": "saying"
- },
- {
- "start": 257.68,
- "end": 258,
- "text": "which"
- },
- {
- "start": 258.26,
- "end": 258.42,
- "text": "is"
- },
- {
- "start": 258.42,
- "end": 258.56,
- "text": "any"
- },
- {
- "start": 259.02,
- "end": 259.12,
- "text": "my"
- },
- {
- "start": 259.18,
- "end": 259.88,
- "text": "survivor"
- },
- {
- "start": 259.86,
- "end": 260.4,
- "text": "hopefully"
- },
- {
- "start": 260.4,
- "end": 261.18,
- "text": "drive."
- },
- {
- "start": 261.92,
- "end": 263.2,
- "text": "See"
- },
- {
- "start": 263.2,
- "end": 263.38,
- "text": "this"
- },
- {
- "start": 263.34,
- "end": 263.64,
- "text": "type"
- },
- {
- "start": 263.6,
- "end": 263.76,
- "text": "of"
- },
- {
- "start": 263.74,
- "end": 264.38,
- "text": "experiment"
- },
- {
- "start": 264.36,
- "end": 264.56,
- "text": "would"
- },
- {
- "start": 264.52,
- "end": 264.72,
- "text": "act"
- },
- {
- "start": 264.7,
- "end": 264.86,
- "text": "as"
- },
- {
- "start": 264.84,
- "end": 264.92,
- "text": "a"
- },
- {
- "start": 264.94,
- "end": 265.44,
- "text": "screen"
- },
- {
- "start": 265.46,
- "end": 265.66,
- "text": "for"
- },
- {
- "start": 265.64,
- "end": 266.3,
- "text": "bacteria"
- },
- {
- "start": 266.3,
- "end": 266.48,
- "text": "that"
- },
- {
- "start": 266.46,
- "end": 266.62,
- "text": "it"
- },
- {
- "start": 266.6,
- "end": 267.24,
- "text": "adapted"
- },
- {
- "start": 267.24,
- "end": 267.38,
- "text": "to"
- },
- {
- "start": 267.36,
- "end": 267.56,
- "text": "their"
- },
- {
- "start": 267.56,
- "end": 268.02,
- "text": "plastic"
- },
- {
- "start": 268.02,
- "end": 268.48,
- "text": "polluted"
- },
- {
- "start": 268.46,
- "end": 269.06,
- "text": "environments"
- },
- {
- "start": 269.42,
- "end": 269.68,
- "text": "and"
- },
- {
- "start": 269.66,
- "end": 270.22,
- "text": "evolved."
- },
- {
- "start": 270.2,
- "end": 270.68,
- "text": "The"
- },
- {
- "start": 270.66,
- "end": 271.36,
- "text": "incredibly"
- },
- {
- "start": 271.38,
- "end": 271.68,
- "text": "cool"
- },
- {
- "start": 271.66,
- "end": 272.16,
- "text": "ability"
- },
- {
- "start": 272.14,
- "end": 272.32,
- "text": "to"
- },
- {
- "start": 272.3,
- "end": 272.62,
- "text": "eat"
- },
- {
- "start": 272.68,
- "end": 273.18,
- "text": "pet"
- },
- {
- "start": 273.28,
- "end": 273.74,
- "text": "plastic"
- },
- {
- "start": 274.06,
- "end": 275.32,
- "text": "and"
- },
- {
- "start": 275.28,
- "end": 275.72,
- "text": "using"
- },
- {
- "start": 275.7,
- "end": 275.88,
- "text": "this"
- },
- {
- "start": 275.86,
- "end": 276.3,
- "text": "screen."
- },
- {
- "start": 276.28,
- "end": 276.82,
- "text": "I"
- },
- {
- "start": 276.88,
- "end": 277.1,
- "text": "was"
- },
- {
- "start": 277.08,
- "end": 277.34,
- "text": "able"
- },
- {
- "start": 277.32,
- "end": 277.44,
- "text": "to"
- },
- {
- "start": 277.42,
- "end": 277.68,
- "text": "find"
- },
- {
- "start": 277.66,
- "end": 277.9,
- "text": "some"
- },
- {
- "start": 277.86,
- "end": 278.4,
- "text": "bacteria"
- },
- {
- "start": 278.4,
- "end": 278.6,
- "text": "that"
- },
- {
- "start": 278.56,
- "end": 278.76,
- "text": "have"
- },
- {
- "start": 278.74,
- "end": 279.02,
- "text": "done"
- },
- {
- "start": 279.3,
- "end": 279.6,
- "text": "just"
- },
- {
- "start": 279.56,
- "end": 279.84,
- "text": "that"
- },
- {
- "start": 280.4,
- "end": 281.64,
- "text": "these"
- },
- {
- "start": 281.62,
- "end": 282.28,
- "text": "bacteria"
- },
- {
- "start": 282.34,
- "end": 282.68,
- "text": "had"
- },
- {
- "start": 282.7,
- "end": 283.08,
- "text": "figured"
- },
- {
- "start": 283.06,
- "end": 283.28,
- "text": "out"
- },
- {
- "start": 283.28,
- "end": 283.66,
- "text": "how"
- },
- {
- "start": 283.64,
- "end": 283.78,
- "text": "to"
- },
- {
- "start": 283.74,
- "end": 284.04,
- "text": "eat"
- },
- {
- "start": 284.16,
- "end": 285,
- "text": "pet"
- },
- {
- "start": 285.3,
- "end": 285.76,
- "text": "plastic."
- },
- {
- "start": 286.06,
- "end": 286.16,
- "text": "So"
- },
- {
- "start": 288.72,
- "end": 288.94,
- "text": "how"
- },
- {
- "start": 288.9,
- "end": 289.04,
- "text": "do"
- },
- {
- "start": 289.02,
- "end": 289.26,
- "text": "these"
- },
- {
- "start": 289.24,
- "end": 289.76,
- "text": "bacteria"
- },
- {
- "start": 289.74,
- "end": 289.98,
- "text": "do"
- },
- {
- "start": 289.96,
- "end": 290.18,
- "text": "this?"
- },
- {
- "start": 290.78,
- "end": 291.84,
- "text": "Well,"
- },
- {
- "start": 291.84,
- "end": 292.34,
- "text": "it's"
- },
- {
- "start": 292.3,
- "end": 292.7,
- "text": "actually"
- },
- {
- "start": 292.68,
- "end": 292.98,
- "text": "pretty"
- },
- {
- "start": 292.96,
- "end": 293.34,
- "text": "simple"
- },
- {
- "start": 293.94,
- "end": 294.6,
- "text": "just"
- },
- {
- "start": 294.58,
- "end": 294.8,
- "text": "as"
- },
- {
- "start": 294.78,
- "end": 295,
- "text": "we"
- },
- {
- "start": 294.98,
- "end": 295.5,
- "text": "human"
- },
- {
- "start": 295.48,
- "end": 296.04,
- "text": "digest"
- },
- {
- "start": 296.12,
- "end": 296.6,
- "text": "carbon"
- },
- {
- "start": 296.6,
- "end": 296.74,
- "text": "or"
- },
- {
- "start": 296.76,
- "end": 297.16,
- "text": "food"
- },
- {
- "start": 297.18,
- "end": 297.38,
- "text": "and"
- },
- {
- "start": 297.34,
- "end": 297.48,
- "text": "the"
- },
- {
- "start": 297.5,
- "end": 297.8,
- "text": "chunks"
- },
- {
- "start": 297.78,
- "end": 297.98,
- "text": "of"
- },
- {
- "start": 297.96,
- "end": 298.32,
- "text": "sugar"
- },
- {
- "start": 298.4,
- "end": 298.58,
- "text": "that"
- },
- {
- "start": 298.56,
- "end": 298.68,
- "text": "we"
- },
- {
- "start": 298.72,
- "end": 298.9,
- "text": "then"
- },
- {
- "start": 298.9,
- "end": 299.14,
- "text": "used"
- },
- {
- "start": 299.12,
- "end": 299.3,
- "text": "for"
- },
- {
- "start": 299.32,
- "end": 299.68,
- "text": "energy."
- },
- {
- "start": 299.96,
- "end": 300.06,
- "text": "So"
- },
- {
- "start": 300.56,
- "end": 300.88,
- "text": "two"
- },
- {
- "start": 300.84,
- "end": 301.06,
- "text": "to"
- },
- {
- "start": 301.04,
- "end": 301.2,
- "text": "my"
- },
- {
- "start": 301.22,
- "end": 301.76,
- "text": "bacteria,"
- },
- {
- "start": 302.96,
- "end": 303.5,
- "text": "my"
- },
- {
- "start": 303.6,
- "end": 304.26,
- "text": "bacteria"
- },
- {
- "start": 304.28,
- "end": 304.74,
- "text": "however"
- },
- {
- "start": 304.72,
- "end": 304.98,
- "text": "have"
- },
- {
- "start": 304.94,
- "end": 305.26,
- "text": "figured"
- },
- {
- "start": 305.24,
- "end": 305.4,
- "text": "out"
- },
- {
- "start": 305.38,
- "end": 305.56,
- "text": "how"
- },
- {
- "start": 305.54,
- "end": 305.66,
- "text": "to"
- },
- {
- "start": 305.64,
- "end": 305.84,
- "text": "do"
- },
- {
- "start": 305.82,
- "end": 306.06,
- "text": "this"
- },
- {
- "start": 306.06,
- "end": 306.74,
- "text": "digestion"
- },
- {
- "start": 306.74,
- "end": 307.28,
- "text": "process"
- },
- {
- "start": 307.28,
- "end": 307.86,
- "text": "to"
- },
- {
- "start": 307.92,
- "end": 308.2,
- "text": "big"
- },
- {
- "start": 308.32,
- "end": 308.64,
- "text": "tough"
- },
- {
- "start": 308.72,
- "end": 309.18,
- "text": "durable"
- },
- {
- "start": 309.24,
- "end": 309.7,
- "text": "pet"
- },
- {
- "start": 309.9,
- "end": 310.38,
- "text": "plastic"
- },
- {
- "start": 310.7,
- "end": 312.46,
- "text": "now"
- },
- {
- "start": 312.42,
- "end": 312.58,
- "text": "to"
- },
- {
- "start": 312.56,
- "end": 312.76,
- "text": "do"
- },
- {
- "start": 312.74,
- "end": 313,
- "text": "this,"
- },
- {
- "start": 313,
- "end": 313.44,
- "text": "my"
- },
- {
- "start": 313.48,
- "end": 314.02,
- "text": "bacteria"
- },
- {
- "start": 314,
- "end": 314.28,
- "text": "use"
- },
- {
- "start": 314.24,
- "end": 314.32,
- "text": "a"
- },
- {
- "start": 314.34,
- "end": 314.74,
- "text": "special"
- },
- {
- "start": 314.74,
- "end": 315.06,
- "text": "version"
- },
- {
- "start": 315.04,
- "end": 315.16,
- "text": "of"
- },
- {
- "start": 315.12,
- "end": 315.34,
- "text": "what's"
- },
- {
- "start": 315.32,
- "end": 315.58,
- "text": "called"
- },
- {
- "start": 315.56,
- "end": 315.72,
- "text": "an"
- },
- {
- "start": 315.72,
- "end": 316.24,
- "text": "enzyme."
- },
- {
- "start": 316.54,
- "end": 317.34,
- "text": "Now,"
- },
- {
- "start": 317.32,
- "end": 318,
- "text": "enzymes"
- },
- {
- "start": 317.98,
- "end": 318.18,
- "text": "are"
- },
- {
- "start": 318.14,
- "end": 318.52,
- "text": "simply"
- },
- {
- "start": 318.54,
- "end": 319.14,
- "text": "compounds"
- },
- {
- "start": 319.12,
- "end": 319.3,
- "text": "that"
- },
- {
- "start": 319.26,
- "end": 319.58,
- "text": "exist"
- },
- {
- "start": 319.58,
- "end": 319.74,
- "text": "in"
- },
- {
- "start": 319.72,
- "end": 319.9,
- "text": "all"
- },
- {
- "start": 319.88,
- "end": 320.22,
- "text": "living"
- },
- {
- "start": 320.2,
- "end": 320.44,
- "text": "things."
- },
- {
- "start": 320.82,
- "end": 321.6,
- "text": "There"
- },
- {
- "start": 321.56,
- "end": 321.72,
- "text": "are"
- },
- {
- "start": 321.7,
- "end": 321.88,
- "text": "many"
- },
- {
- "start": 321.9,
- "end": 322.26,
- "text": "different"
- },
- {
- "start": 322.22,
- "end": 322.62,
- "text": "types"
- },
- {
- "start": 322.58,
- "end": 322.72,
- "text": "of"
- },
- {
- "start": 322.76,
- "end": 323.34,
- "text": "enzymes"
- },
- {
- "start": 323.3,
- "end": 323.54,
- "text": "but"
- },
- {
- "start": 323.54,
- "end": 324.22,
- "text": "basically"
- },
- {
- "start": 324.18,
- "end": 324.54,
- "text": "they"
- },
- {
- "start": 324.54,
- "end": 324.8,
- "text": "make"
- },
- {
- "start": 324.8,
- "end": 325.32,
- "text": "processes"
- },
- {
- "start": 325.46,
- "end": 325.62,
- "text": "go"
- },
- {
- "start": 325.68,
- "end": 326.34,
- "text": "forward"
- },
- {
- "start": 326.32,
- "end": 326.98,
- "text": "such"
- },
- {
- "start": 326.96,
- "end": 327.1,
- "text": "as"
- },
- {
- "start": 327.08,
- "end": 327.24,
- "text": "the"
- },
- {
- "start": 327.2,
- "end": 327.82,
- "text": "digestion"
- },
- {
- "start": 327.8,
- "end": 327.96,
- "text": "of"
- },
- {
- "start": 327.92,
- "end": 328.24,
- "text": "food"
- },
- {
- "start": 328.22,
- "end": 328.54,
- "text": "into"
- },
- {
- "start": 328.54,
- "end": 328.9,
- "text": "energy."
- },
- {
- "start": 329.24,
- "end": 330.58,
- "text": "For"
- },
- {
- "start": 330.54,
- "end": 331.02,
- "text": "instance,"
- },
- {
- "start": 331,
- "end": 331.18,
- "text": "we"
- },
- {
- "start": 331.22,
- "end": 331.72,
- "text": "humans"
- },
- {
- "start": 331.72,
- "end": 331.92,
- "text": "have"
- },
- {
- "start": 331.88,
- "end": 332.02,
- "text": "an"
- },
- {
- "start": 331.98,
- "end": 332.44,
- "text": "enzyme"
- },
- {
- "start": 332.42,
- "end": 332.76,
- "text": "college"
- },
- {
- "start": 332.72,
- "end": 332.86,
- "text": "in"
- },
- {
- "start": 332.88,
- "end": 333.84,
- "text": "amalie"
- },
- {
- "start": 333.8,
- "end": 334,
- "text": "that"
- },
- {
- "start": 333.98,
- "end": 334.2,
- "text": "help"
- },
- {
- "start": 334.3,
- "end": 334.6,
- "text": "us"
- },
- {
- "start": 334.58,
- "end": 335.02,
- "text": "digest"
- },
- {
- "start": 335.06,
- "end": 335.54,
- "text": "complex"
- },
- {
- "start": 335.62,
- "end": 336.04,
- "text": "starches"
- },
- {
- "start": 336.3,
- "end": 336.58,
- "text": "such"
- },
- {
- "start": 336.56,
- "end": 336.7,
- "text": "as"
- },
- {
- "start": 336.72,
- "end": 337.12,
- "text": "bread"
- },
- {
- "start": 337.46,
- "end": 337.72,
- "text": "into"
- },
- {
- "start": 337.7,
- "end": 338,
- "text": "small"
- },
- {
- "start": 338.02,
- "end": 338.28,
- "text": "chunks"
- },
- {
- "start": 338.26,
- "end": 338.44,
- "text": "of"
- },
- {
- "start": 338.42,
- "end": 338.78,
- "text": "sugar"
- },
- {
- "start": 339,
- "end": 339.2,
- "text": "that."
- },
- {
- "start": 339.18,
- "end": 339.3,
- "text": "We"
- },
- {
- "start": 339.34,
- "end": 339.52,
- "text": "can"
- },
- {
- "start": 339.5,
- "end": 339.7,
- "text": "then"
- },
- {
- "start": 339.7,
- "end": 339.94,
- "text": "use"
- },
- {
- "start": 339.92,
- "end": 340.14,
- "text": "for"
- },
- {
- "start": 340.12,
- "end": 340.5,
- "text": "energy."
- },
- {
- "start": 340.82,
- "end": 342.26,
- "text": "Now"
- },
- {
- "start": 342.26,
- "end": 342.5,
- "text": "my"
- },
- {
- "start": 342.54,
- "end": 343.22,
- "text": "bacteria"
- },
- {
- "start": 343.28,
- "end": 343.64,
- "text": "have"
- },
- {
- "start": 343.6,
- "end": 343.68,
- "text": "a"
- },
- {
- "start": 343.68,
- "end": 344.12,
- "text": "special"
- },
- {
- "start": 344.12,
- "end": 344.56,
- "text": "enzyme"
- },
- {
- "start": 344.54,
- "end": 344.84,
- "text": "called"
- },
- {
- "start": 344.8,
- "end": 345.94,
- "text": "alias."
- },
- {
- "start": 345.9,
- "end": 346.1,
- "text": "That"
- },
- {
- "start": 346.14,
- "end": 346.56,
- "text": "binds"
- },
- {
- "start": 346.68,
- "end": 346.86,
- "text": "a"
- },
- {
- "start": 346.84,
- "end": 347.1,
- "text": "big"
- },
- {
- "start": 347.24,
- "end": 347.54,
- "text": "tough"
- },
- {
- "start": 347.62,
- "end": 348.08,
- "text": "durable"
- },
- {
- "start": 348.12,
- "end": 348.74,
- "text": "pet"
- },
- {
- "start": 348.7,
- "end": 349.24,
- "text": "plastic"
- },
- {
- "start": 349.62,
- "end": 349.8,
- "text": "and"
- },
- {
- "start": 349.78,
- "end": 350.04,
- "text": "helps"
- },
- {
- "start": 350.06,
- "end": 350.4,
- "text": "break"
- },
- {
- "start": 350.42,
- "end": 350.6,
- "text": "it"
- },
- {
- "start": 350.66,
- "end": 350.96,
- "text": "into"
- },
- {
- "start": 350.92,
- "end": 351.2,
- "text": "small"
- },
- {
- "start": 351.18,
- "end": 351.46,
- "text": "chunks"
- },
- {
- "start": 351.44,
- "end": 351.62,
- "text": "of"
- },
- {
- "start": 351.58,
- "end": 351.88,
- "text": "sugar"
- },
- {
- "start": 352.32,
- "end": 352.5,
- "text": "that"
- },
- {
- "start": 352.54,
- "end": 352.68,
- "text": "my"
- },
- {
- "start": 352.74,
- "end": 353.54,
- "text": "bacteria"
- },
- {
- "start": 353.56,
- "end": 353.74,
- "text": "can"
- },
- {
- "start": 353.72,
- "end": 353.88,
- "text": "then"
- },
- {
- "start": 353.88,
- "end": 354.1,
- "text": "use"
- },
- {
- "start": 354.1,
- "end": 354.28,
- "text": "for"
- },
- {
- "start": 354.26,
- "end": 354.64,
- "text": "energy."
- },
- {
- "start": 355.22,
- "end": 355.32,
- "text": "So"
- },
- {
- "start": 356.42,
- "end": 357.18,
- "text": "basically"
- },
- {
- "start": 357.16,
- "end": 357.76,
- "text": "pet"
- },
- {
- "start": 358.08,
- "end": 358.6,
- "text": "plastic"
- },
- {
- "start": 358.62,
- "end": 358.92,
- "text": "goes"
- },
- {
- "start": 358.96,
- "end": 359.16,
- "text": "from"
- },
- {
- "start": 359.16,
- "end": 359.44,
- "text": "being"
- },
- {
- "start": 359.4,
- "end": 359.48,
- "text": "a"
- },
- {
- "start": 359.58,
- "end": 359.86,
- "text": "big"
- },
- {
- "start": 360.04,
- "end": 360.32,
- "text": "tough"
- },
- {
- "start": 360.34,
- "end": 360.74,
- "text": "long"
- },
- {
- "start": 360.72,
- "end": 361.18,
- "text": "lasting"
- },
- {
- "start": 361.16,
- "end": 361.72,
- "text": "pollutant"
- },
- {
- "start": 362.18,
- "end": 362.34,
- "text": "to"
- },
- {
- "start": 362.34,
- "end": 362.42,
- "text": "a"
- },
- {
- "start": 362.52,
- "end": 363.08,
- "text": "tasty"
- },
- {
- "start": 363.1,
- "end": 363.38,
- "text": "meal"
- },
- {
- "start": 363.4,
- "end": 363.6,
- "text": "for"
- },
- {
- "start": 363.58,
- "end": 363.74,
- "text": "my"
- },
- {
- "start": 363.76,
- "end": 364.28,
- "text": "bacteria."
- },
- {
- "start": 364.64,
- "end": 367.24,
- "text": "Sounds"
- },
- {
- "start": 367.22,
- "end": 367.5,
- "text": "pretty"
- },
- {
- "start": 367.48,
- "end": 367.72,
- "text": "cool."
- },
- {
- "start": 367.7,
- "end": 367.94,
- "text": "Right."
- },
- {
- "start": 368.56,
- "end": 370.58,
- "text": "And"
- },
- {
- "start": 370.54,
- "end": 370.62,
- "text": "I"
- },
- {
- "start": 370.64,
- "end": 370.96,
- "text": "think"
- },
- {
- "start": 370.98,
- "end": 371.7,
- "text": "given"
- },
- {
- "start": 371.66,
- "end": 371.84,
- "text": "the"
- },
- {
- "start": 371.8,
- "end": 372.14,
- "text": "current"
- },
- {
- "start": 372.1,
- "end": 372.5,
- "text": "scope"
- },
- {
- "start": 372.46,
- "end": 372.62,
- "text": "of"
- },
- {
- "start": 372.6,
- "end": 372.78,
- "text": "our"
- },
- {
- "start": 372.76,
- "end": 373.22,
- "text": "plastic"
- },
- {
- "start": 373.2,
- "end": 373.68,
- "text": "pollution"
- },
- {
- "start": 373.66,
- "end": 374.1,
- "text": "problem,"
- },
- {
- "start": 374.44,
- "end": 374.52,
- "text": "I"
- },
- {
- "start": 374.48,
- "end": 375.46,
- "text": "think"
- },
- {
- "start": 375.42,
- "end": 375.52,
- "text": "it"
- },
- {
- "start": 375.54,
- "end": 375.82,
- "text": "sounds"
- },
- {
- "start": 375.82,
- "end": 376.1,
- "text": "pretty"
- },
- {
- "start": 376.08,
- "end": 376.5,
- "text": "useful."
- },
- {
- "start": 377.44,
- "end": 378.38,
- "text": "The"
- },
- {
- "start": 378.34,
- "end": 379,
- "text": "statistics"
- },
- {
- "start": 378.98,
- "end": 379.06,
- "text": "I"
- },
- {
- "start": 379.04,
- "end": 379.5,
- "text": "shared"
- },
- {
- "start": 379.5,
- "end": 379.7,
- "text": "with"
- },
- {
- "start": 379.66,
- "end": 379.84,
- "text": "you"
- },
- {
- "start": 379.82,
- "end": 380.18,
- "text": "on"
- },
- {
- "start": 380.32,
- "end": 380.66,
- "text": "just"
- },
- {
- "start": 380.68,
- "end": 380.92,
- "text": "how"
- },
- {
- "start": 380.94,
- "end": 381.18,
- "text": "much"
- },
- {
- "start": 381.18,
- "end": 381.72,
- "text": "plastic"
- },
- {
- "start": 381.72,
- "end": 382.02,
- "text": "waste"
- },
- {
- "start": 382,
- "end": 382.2,
- "text": "has"
- },
- {
- "start": 382.18,
- "end": 382.9,
- "text": "accumulated"
- },
- {
- "start": 382.88,
- "end": 383.04,
- "text": "on"
- },
- {
- "start": 383,
- "end": 383.18,
- "text": "our"
- },
- {
- "start": 383.16,
- "end": 383.46,
- "text": "planet"
- },
- {
- "start": 383.8,
- "end": 384.62,
- "text": "are"
- },
- {
- "start": 384.62,
- "end": 385.26,
- "text": "daunting."
- },
- {
- "start": 385.24,
- "end": 386.16,
- "text": "They're"
- },
- {
- "start": 386.14,
- "end": 386.58,
- "text": "scary."
- },
- {
- "start": 387.3,
- "end": 387.76,
- "text": "And"
- },
- {
- "start": 387.72,
- "end": 387.8,
- "text": "I"
- },
- {
- "start": 387.82,
- "end": 388.06,
- "text": "think"
- },
- {
- "start": 388.04,
- "end": 388.24,
- "text": "they"
- },
- {
- "start": 388.2,
- "end": 388.74,
- "text": "highlight"
- },
- {
- "start": 388.72,
- "end": 389.3,
- "text": "that"
- },
- {
- "start": 389.3,
- "end": 389.54,
- "text": "while"
- },
- {
- "start": 389.52,
- "end": 390.18,
- "text": "reducing"
- },
- {
- "start": 390.16,
- "end": 390.7,
- "text": "reusing"
- },
- {
- "start": 390.66,
- "end": 390.82,
- "text": "and"
- },
- {
- "start": 390.78,
- "end": 391.52,
- "text": "recycling"
- },
- {
- "start": 391.5,
- "end": 391.98,
- "text": "are"
- },
- {
- "start": 391.96,
- "end": 392.52,
- "text": "important."
- },
- {
- "start": 392.8,
- "end": 393.74,
- "text": "They"
- },
- {
- "start": 393.76,
- "end": 394.26,
- "text": "alone"
- },
- {
- "start": 394.24,
- "end": 394.54,
- "text": "are"
- },
- {
- "start": 394.52,
- "end": 394.84,
- "text": "not"
- },
- {
- "start": 394.86,
- "end": 395.14,
- "text": "going"
- },
- {
- "start": 395.1,
- "end": 395.24,
- "text": "to"
- },
- {
- "start": 395.22,
- "end": 395.36,
- "text": "be"
- },
- {
- "start": 395.32,
- "end": 395.7,
- "text": "enough"
- },
- {
- "start": 395.68,
- "end": 395.82,
- "text": "to"
- },
- {
- "start": 395.88,
- "end": 396.18,
- "text": "solve"
- },
- {
- "start": 396.14,
- "end": 396.34,
- "text": "this"
- },
- {
- "start": 396.32,
- "end": 396.78,
- "text": "problem."
- },
- {
- "start": 397.1,
- "end": 398.56,
- "text": "And"
- },
- {
- "start": 398.52,
- "end": 398.7,
- "text": "this"
- },
- {
- "start": 398.66,
- "end": 398.84,
- "text": "is"
- },
- {
- "start": 398.82,
- "end": 399.14,
- "text": "where"
- },
- {
- "start": 399.12,
- "end": 399.36,
- "text": "I"
- },
- {
- "start": 399.34,
- "end": 399.7,
- "text": "think"
- },
- {
- "start": 399.68,
- "end": 400.32,
- "text": "bacteria"
- },
- {
- "start": 400.38,
- "end": 401.32,
- "text": "might"
- },
- {
- "start": 401.3,
- "end": 401.46,
- "text": "be"
- },
- {
- "start": 401.44,
- "end": 401.64,
- "text": "able"
- },
- {
- "start": 401.62,
- "end": 401.76,
- "text": "to"
- },
- {
- "start": 401.74,
- "end": 401.94,
- "text": "help"
- },
- {
- "start": 401.92,
- "end": 402.1,
- "text": "us"
- },
- {
- "start": 402.1,
- "end": 402.34,
- "text": "out."
- },
- {
- "start": 402.38,
- "end": 403.84,
- "text": "But"
- },
- {
- "start": 403.8,
- "end": 403.88,
- "text": "I"
- },
- {
- "start": 403.9,
- "end": 404.14,
- "text": "do"
- },
- {
- "start": 404.12,
- "end": 404.9,
- "text": "understand"
- },
- {
- "start": 404.88,
- "end": 405.22,
- "text": "why"
- },
- {
- "start": 405.18,
- "end": 405.38,
- "text": "the"
- },
- {
- "start": 405.38,
- "end": 405.9,
- "text": "concept"
- },
- {
- "start": 405.88,
- "end": 406.06,
- "text": "of"
- },
- {
- "start": 406.02,
- "end": 406.6,
- "text": "bacterial"
- },
- {
- "start": 406.6,
- "end": 406.84,
- "text": "help"
- },
- {
- "start": 407.32,
- "end": 407.84,
- "text": "might"
- },
- {
- "start": 407.82,
- "end": 408.04,
- "text": "make"
- },
- {
- "start": 408,
- "end": 408.26,
- "text": "some"
- },
- {
- "start": 408.24,
- "end": 408.56,
- "text": "people"
- },
- {
- "start": 408.54,
- "end": 408.62,
- "text": "a"
- },
- {
- "start": 408.6,
- "end": 408.9,
- "text": "little"
- },
- {
- "start": 408.88,
- "end": 409.24,
- "text": "nervous"
- },
- {
- "start": 410.22,
- "end": 410.94,
- "text": "after"
- },
- {
- "start": 410.92,
- "end": 411.14,
- "text": "all"
- },
- {
- "start": 411.14,
- "end": 411.32,
- "text": "a"
- },
- {
- "start": 411.88,
- "end": 412.34,
- "text": "plastic"
- },
- {
- "start": 412.34,
- "end": 412.48,
- "text": "is"
- },
- {
- "start": 412.48,
- "end": 413.02,
- "text": "everywhere"
- },
- {
- "start": 413.02,
- "end": 413.48,
- "text": "and"
- },
- {
- "start": 413.46,
- "end": 413.7,
- "text": "these"
- },
- {
- "start": 413.68,
- "end": 414.2,
- "text": "bacteria"
- },
- {
- "start": 414.22,
- "end": 414.54,
- "text": "eat"
- },
- {
- "start": 414.56,
- "end": 415.06,
- "text": "plastic."
- },
- {
- "start": 415.58,
- "end": 416.34,
- "text": "Isn't"
- },
- {
- "start": 416.3,
- "end": 416.5,
- "text": "there"
- },
- {
- "start": 416.5,
- "end": 416.58,
- "text": "a"
- },
- {
- "start": 416.56,
- "end": 416.82,
- "text": "risk"
- },
- {
- "start": 416.8,
- "end": 417.04,
- "text": "of"
- },
- {
- "start": 417,
- "end": 417.22,
- "text": "these"
- },
- {
- "start": 417.2,
- "end": 417.76,
- "text": "bacteria"
- },
- {
- "start": 417.8,
- "end": 418.22,
- "text": "getting"
- },
- {
- "start": 418.18,
- "end": 418.32,
- "text": "out"
- },
- {
- "start": 418.3,
- "end": 418.44,
- "text": "in"
- },
- {
- "start": 418.4,
- "end": 418.54,
- "text": "the"
- },
- {
- "start": 418.5,
- "end": 419.06,
- "text": "environment"
- },
- {
- "start": 419.04,
- "end": 419.22,
- "text": "and"
- },
- {
- "start": 419.18,
- "end": 419.8,
- "text": "wreaking"
- },
- {
- "start": 419.78,
- "end": 420.1,
- "text": "havoc?"
- },
- {
- "start": 420.4,
- "end": 422.56,
- "text": "Well,"
- },
- {
- "start": 422.56,
- "end": 422.9,
- "text": "the"
- },
- {
- "start": 422.86,
- "end": 423.12,
- "text": "short"
- },
- {
- "start": 423.12,
- "end": 423.48,
- "text": "answer"
- },
- {
- "start": 423.44,
- "end": 423.6,
- "text": "is"
- },
- {
- "start": 423.56,
- "end": 423.7,
- "text": "no."
- },
- {
- "start": 423.84,
- "end": 424.36,
- "text": "And"
- },
- {
- "start": 424.32,
- "end": 424.54,
- "text": "I'll"
- },
- {
- "start": 424.5,
- "end": 424.68,
- "text": "tell"
- },
- {
- "start": 424.64,
- "end": 424.82,
- "text": "you"
- },
- {
- "start": 424.78,
- "end": 424.92,
- "text": "why"
- },
- {
- "start": 425.36,
- "end": 426.46,
- "text": "these"
- },
- {
- "start": 426.46,
- "end": 427.08,
- "text": "bacteria"
- },
- {
- "start": 427.1,
- "end": 427.52,
- "text": "are"
- },
- {
- "start": 427.48,
- "end": 427.94,
- "text": "already"
- },
- {
- "start": 427.92,
- "end": 428.24,
- "text": "in"
- },
- {
- "start": 428.26,
- "end": 428.48,
- "text": "the"
- },
- {
- "start": 428.44,
- "end": 429.08,
- "text": "environments."
- },
- {
- "start": 429.54,
- "end": 430.5,
- "text": "The"
- },
- {
- "start": 430.46,
- "end": 431.02,
- "text": "bacteria"
- },
- {
- "start": 430.98,
- "end": 431.2,
- "text": "and"
- },
- {
- "start": 431.18,
- "end": 431.34,
- "text": "my"
- },
- {
- "start": 431.32,
- "end": 431.88,
- "text": "research"
- },
- {
- "start": 431.86,
- "end": 432.06,
- "text": "are"
- },
- {
- "start": 432.04,
- "end": 432.26,
- "text": "not"
- },
- {
- "start": 432.28,
- "end": 432.86,
- "text": "genetically,"
- },
- {
- "start": 432.84,
- "end": 433.38,
- "text": "modified"
- },
- {
- "start": 433.4,
- "end": 433.94,
- "text": "franken"
- },
- {
- "start": 433.96,
- "end": 434.2,
- "text": "bugs."
- },
- {
- "start": 434.46,
- "end": 436.48,
- "text": "These"
- },
- {
- "start": 436.46,
- "end": 436.64,
- "text": "are"
- },
- {
- "start": 436.6,
- "end": 437.36,
- "text": "naturally"
- },
- {
- "start": 437.34,
- "end": 437.8,
- "text": "occurring"
- },
- {
- "start": 437.78,
- "end": 438.4,
- "text": "bacteria"
- },
- {
- "start": 438.44,
- "end": 438.7,
- "text": "that"
- },
- {
- "start": 438.66,
- "end": 438.84,
- "text": "have"
- },
- {
- "start": 438.8,
- "end": 439.2,
- "text": "simply"
- },
- {
- "start": 439.26,
- "end": 440.02,
- "text": "adapted"
- },
- {
- "start": 440,
- "end": 440.18,
- "text": "to"
- },
- {
- "start": 440.18,
- "end": 440.38,
- "text": "their"
- },
- {
- "start": 440.38,
- "end": 440.86,
- "text": "plastic"
- },
- {
- "start": 440.88,
- "end": 441.36,
- "text": "polluted"
- },
- {
- "start": 441.32,
- "end": 442,
- "text": "environment"
- },
- {
- "start": 441.98,
- "end": 442.56,
- "text": "and"
- },
- {
- "start": 442.52,
- "end": 443.1,
- "text": "evolved"
- },
- {
- "start": 443.08,
- "end": 443.48,
- "text": "the"
- },
- {
- "start": 443.48,
- "end": 444.18,
- "text": "incredibly"
- },
- {
- "start": 444.2,
- "end": 444.76,
- "text": "narly"
- },
- {
- "start": 444.76,
- "end": 445.18,
- "text": "ability"
- },
- {
- "start": 445.16,
- "end": 445.34,
- "text": "to"
- },
- {
- "start": 445.36,
- "end": 445.62,
- "text": "eat"
- },
- {
- "start": 445.68,
- "end": 446.16,
- "text": "pet"
- },
- {
- "start": 446.28,
- "end": 446.74,
- "text": "plastic."
- },
- {
- "start": 447.16,
- "end": 447.26,
- "text": "So"
- },
- {
- "start": 448.36,
- "end": 448.56,
- "text": "the"
- },
- {
- "start": 448.56,
- "end": 449.14,
- "text": "process"
- },
- {
- "start": 449.14,
- "end": 449.44,
- "text": "of"
- },
- {
- "start": 449.4,
- "end": 449.92,
- "text": "bacteria"
- },
- {
- "start": 449.98,
- "end": 450.42,
- "text": "eating"
- },
- {
- "start": 450.4,
- "end": 451,
- "text": "plastic"
- },
- {
- "start": 451,
- "end": 451.62,
- "text": "is"
- },
- {
- "start": 451.58,
- "end": 452.04,
- "text": "actually"
- },
- {
- "start": 452.02,
- "end": 452.1,
- "text": "a"
- },
- {
- "start": 452.1,
- "end": 452.64,
- "text": "natural"
- },
- {
- "start": 452.64,
- "end": 452.88,
- "text": "one"
- },
- {
- "start": 453.2,
- "end": 453.74,
- "text": "but"
- },
- {
- "start": 453.7,
- "end": 453.94,
- "text": "it's"
- },
- {
- "start": 453.9,
- "end": 454.06,
- "text": "an"
- },
- {
- "start": 454.02,
- "end": 454.88,
- "text": "incredibly"
- },
- {
- "start": 454.88,
- "end": 455.26,
- "text": "slow"
- },
- {
- "start": 455.32,
- "end": 455.88,
- "text": "process"
- },
- {
- "start": 455.96,
- "end": 456.56,
- "text": "and"
- },
- {
- "start": 456.52,
- "end": 456.72,
- "text": "there"
- },
- {
- "start": 456.68,
- "end": 457.04,
- "text": "remains"
- },
- {
- "start": 457.04,
- "end": 457.12,
- "text": "a"
- },
- {
- "start": 457.24,
- "end": 457.56,
- "text": "lot"
- },
- {
- "start": 457.54,
- "end": 457.68,
- "text": "of"
- },
- {
- "start": 457.66,
- "end": 457.88,
- "text": "work"
- },
- {
- "start": 457.88,
- "end": 458.06,
- "text": "to"
- },
- {
- "start": 458.06,
- "end": 458.18,
- "text": "be"
- },
- {
- "start": 458.18,
- "end": 458.62,
- "text": "done"
- },
- {
- "start": 458.6,
- "end": 459.08,
- "text": "to"
- },
- {
- "start": 459.08,
- "end": 459.42,
- "text": "figure"
- },
- {
- "start": 459.4,
- "end": 459.64,
- "text": "out"
- },
- {
- "start": 459.64,
- "end": 459.9,
- "text": "how"
- },
- {
- "start": 459.86,
- "end": 459.98,
- "text": "to"
- },
- {
- "start": 459.96,
- "end": 460.32,
- "text": "speed"
- },
- {
- "start": 460.28,
- "end": 460.46,
- "text": "up"
- },
- {
- "start": 460.46,
- "end": 460.66,
- "text": "this"
- },
- {
- "start": 460.7,
- "end": 461.22,
- "text": "process"
- },
- {
- "start": 461.22,
- "end": 461.5,
- "text": "to"
- },
- {
- "start": 461.48,
- "end": 461.56,
- "text": "a"
- },
- {
- "start": 461.6,
- "end": 461.98,
- "text": "useful"
- },
- {
- "start": 462,
- "end": 462.26,
- "text": "pace."
- },
- {
- "start": 462.6,
- "end": 464.14,
- "text": "My"
- },
- {
- "start": 464.2,
- "end": 464.78,
- "text": "research"
- },
- {
- "start": 464.76,
- "end": 464.9,
- "text": "is"
- },
- {
- "start": 464.88,
- "end": 465.36,
- "text": "currently"
- },
- {
- "start": 465.34,
- "end": 465.7,
- "text": "looking"
- },
- {
- "start": 465.68,
- "end": 465.82,
- "text": "at"
- },
- {
- "start": 465.78,
- "end": 466,
- "text": "ways"
- },
- {
- "start": 466,
- "end": 466.18,
- "text": "of"
- },
- {
- "start": 466.14,
- "end": 466.46,
- "text": "doing"
- },
- {
- "start": 466.42,
- "end": 466.62,
- "text": "this"
- },
- {
- "start": 466.6,
- "end": 466.92,
- "text": "through"
- },
- {
- "start": 466.88,
- "end": 466.96,
- "text": "a"
- },
- {
- "start": 466.94,
- "end": 467.42,
- "text": "series"
- },
- {
- "start": 467.4,
- "end": 467.6,
- "text": "of"
- },
- {
- "start": 467.68,
- "end": 468.06,
- "text": "uv"
- },
- {
- "start": 468.34,
- "end": 468.52,
- "text": "or"
- },
- {
- "start": 468.52,
- "end": 469.3,
- "text": "ultraviolet"
- },
- {
- "start": 469.34,
- "end": 470.1,
- "text": "pretreatments"
- },
- {
- "start": 470.26,
- "end": 471.12,
- "text": "which"
- },
- {
- "start": 471.12,
- "end": 471.86,
- "text": "basically"
- },
- {
- "start": 471.82,
- "end": 472.08,
- "text": "means"
- },
- {
- "start": 472.06,
- "end": 472.24,
- "text": "we"
- },
- {
- "start": 472.28,
- "end": 472.9,
- "text": "blast"
- },
- {
- "start": 472.98,
- "end": 473.22,
- "text": "pet"
- },
- {
- "start": 473.5,
- "end": 473.92,
- "text": "plastic"
- },
- {
- "start": 473.92,
- "end": 474.1,
- "text": "with"
- },
- {
- "start": 474.1,
- "end": 474.52,
- "text": "sunlight."
- },
- {
- "start": 474.74,
- "end": 474.84,
- "text": "We"
- },
- {
- "start": 476.4,
- "end": 476.54,
- "text": "do"
- },
- {
- "start": 476.62,
- "end": 476.86,
- "text": "this"
- },
- {
- "start": 476.84,
- "end": 477.26,
- "text": "because"
- },
- {
- "start": 477.24,
- "end": 477.56,
- "text": "some"
- },
- {
- "start": 477.58,
- "end": 477.84,
- "text": "might"
- },
- {
- "start": 477.82,
- "end": 478.68,
- "text": "accident"
- },
- {
- "start": 478.64,
- "end": 478.9,
- "text": "like"
- },
- {
- "start": 479.04,
- "end": 479.7,
- "text": "tenderizer"
- },
- {
- "start": 479.68,
- "end": 479.82,
- "text": "on"
- },
- {
- "start": 479.78,
- "end": 479.94,
- "text": "a"
- },
- {
- "start": 479.92,
- "end": 480.18,
- "text": "stake"
- },
- {
- "start": 480.38,
- "end": 481.3,
- "text": "turning"
- },
- {
- "start": 481.26,
- "end": 481.42,
- "text": "the"
- },
- {
- "start": 481.38,
- "end": 481.64,
- "text": "big"
- },
- {
- "start": 481.82,
- "end": 482.12,
- "text": "tough"
- },
- {
- "start": 482.1,
- "end": 482.6,
- "text": "durable"
- },
- {
- "start": 482.58,
- "end": 482.98,
- "text": "bonds"
- },
- {
- "start": 482.98,
- "end": 483.16,
- "text": "and"
- },
- {
- "start": 483.16,
- "end": 483.44,
- "text": "pet"
- },
- {
- "start": 483.78,
- "end": 484.26,
- "text": "plastic"
- },
- {
- "start": 484.74,
- "end": 484.82,
- "text": "a"
- },
- {
- "start": 484.86,
- "end": 485.14,
- "text": "bit"
- },
- {
- "start": 485.12,
- "end": 485.84,
- "text": "softer"
- },
- {
- "start": 485.82,
- "end": 486.22,
- "text": "and"
- },
- {
- "start": 486.2,
- "end": 486.28,
- "text": "a"
- },
- {
- "start": 486.3,
- "end": 486.46,
- "text": "bit"
- },
- {
- "start": 486.54,
- "end": 486.98,
- "text": "easier"
- },
- {
- "start": 487,
- "end": 487.2,
- "text": "for"
- },
- {
- "start": 487.18,
- "end": 487.32,
- "text": "my"
- },
- {
- "start": 487.32,
- "end": 487.86,
- "text": "bacteria"
- },
- {
- "start": 487.9,
- "end": 488.02,
- "text": "to"
- },
- {
- "start": 488.06,
- "end": 488.3,
- "text": "chew"
- },
- {
- "start": 488.28,
- "end": 488.4,
- "text": "on."
- },
- {
- "start": 488.68,
- "end": 490.78,
- "text": "Ultimately"
- },
- {
- "start": 490.8,
- "end": 491.12,
- "text": "when"
- },
- {
- "start": 491.08,
- "end": 491.24,
- "text": "my"
- },
- {
- "start": 491.22,
- "end": 491.68,
- "text": "research"
- },
- {
- "start": 491.64,
- "end": 491.92,
- "text": "hopes"
- },
- {
- "start": 491.96,
- "end": 492.1,
- "text": "to"
- },
- {
- "start": 492.1,
- "end": 492.26,
- "text": "do"
- },
- {
- "start": 492.52,
- "end": 492.82,
- "text": "is"
- },
- {
- "start": 492.86,
- "end": 493.2,
- "text": "create"
- },
- {
- "start": 493.16,
- "end": 493.3,
- "text": "an"
- },
- {
- "start": 493.26,
- "end": 494,
- "text": "industrial"
- },
- {
- "start": 494,
- "end": 494.5,
- "text": "scale"
- },
- {
- "start": 494.6,
- "end": 495.38,
- "text": "contained."
- },
- {
- "start": 495.52,
- "end": 496,
- "text": "Carbon"
- },
- {
- "start": 496.04,
- "end": 496.34,
- "text": "free"
- },
- {
- "start": 496.38,
- "end": 496.88,
- "text": "system"
- },
- {
- "start": 497.38,
- "end": 497.82,
- "text": "similar"
- },
- {
- "start": 497.8,
- "end": 498.1,
- "text": "to"
- },
- {
- "start": 498.1,
- "end": 498.18,
- "text": "a"
- },
- {
- "start": 498.2,
- "end": 498.7,
- "text": "compost"
- },
- {
- "start": 498.7,
- "end": 498.92,
- "text": "deep"
- },
- {
- "start": 499.16,
- "end": 499.8,
- "text": "where"
- },
- {
- "start": 499.78,
- "end": 500.06,
- "text": "these"
- },
- {
- "start": 500.04,
- "end": 500.58,
- "text": "bacteria"
- },
- {
- "start": 500.62,
- "end": 500.82,
- "text": "can"
- },
- {
- "start": 500.8,
- "end": 501.3,
- "text": "thrive"
- },
- {
- "start": 501.28,
- "end": 501.5,
- "text": "and"
- },
- {
- "start": 501.46,
- "end": 501.54,
- "text": "a"
- },
- {
- "start": 501.58,
- "end": 502.18,
- "text": "contain"
- },
- {
- "start": 502.16,
- "end": 502.74,
- "text": "system"
- },
- {
- "start": 503.04,
- "end": 503.32,
- "text": "where"
- },
- {
- "start": 503.3,
- "end": 503.5,
- "text": "their"
- },
- {
- "start": 503.48,
- "end": 503.82,
- "text": "soul"
- },
- {
- "start": 503.88,
- "end": 504.3,
- "text": "food"
- },
- {
- "start": 504.26,
- "end": 504.72,
- "text": "source"
- },
- {
- "start": 504.84,
- "end": 505.02,
- "text": "is"
- },
- {
- "start": 505.1,
- "end": 505.68,
- "text": "pet"
- },
- {
- "start": 505.92,
- "end": 506.42,
- "text": "plastic"
- },
- {
- "start": 506.44,
- "end": 506.72,
- "text": "waste."
- },
- {
- "start": 507.12,
- "end": 508.98,
- "text": "Imagine"
- },
- {
- "start": 508.94,
- "end": 509.6,
- "text": "one"
- },
- {
- "start": 509.8,
- "end": 510.1,
- "text": "day"
- },
- {
- "start": 510.1,
- "end": 510.8,
- "text": "being"
- },
- {
- "start": 510.78,
- "end": 511,
- "text": "able"
- },
- {
- "start": 510.98,
- "end": 511.12,
- "text": "to"
- },
- {
- "start": 511.1,
- "end": 511.56,
- "text": "dispose"
- },
- {
- "start": 511.54,
- "end": 511.7,
- "text": "of"
- },
- {
- "start": 511.82,
- "end": 512.06,
- "text": "all"
- },
- {
- "start": 512.04,
- "end": 512.22,
- "text": "of"
- },
- {
- "start": 512.2,
- "end": 512.4,
- "text": "your"
- },
- {
- "start": 512.38,
- "end": 512.84,
- "text": "plastic"
- },
- {
- "start": 512.84,
- "end": 513.12,
- "text": "waste"
- },
- {
- "start": 513.12,
- "end": 513.32,
- "text": "and"
- },
- {
- "start": 513.28,
- "end": 513.4,
- "text": "a"
- },
- {
- "start": 513.46,
- "end": 513.66,
- "text": "bin"
- },
- {
- "start": 513.66,
- "end": 513.8,
- "text": "at"
- },
- {
- "start": 513.76,
- "end": 513.9,
- "text": "the"
- },
- {
- "start": 513.88,
- "end": 514.2,
- "text": "curb"
- },
- {
- "start": 514.56,
- "end": 514.76,
- "text": "that"
- },
- {
- "start": 514.8,
- "end": 514.98,
- "text": "you"
- },
- {
- "start": 515.02,
- "end": 515.2,
- "text": "knew"
- },
- {
- "start": 515.24,
- "end": 515.44,
- "text": "was"
- },
- {
- "start": 515.48,
- "end": 515.86,
- "text": "bound"
- },
- {
- "start": 515.88,
- "end": 516.06,
- "text": "for"
- },
- {
- "start": 516.02,
- "end": 516.14,
- "text": "a"
- },
- {
- "start": 516.18,
- "end": 516.76,
- "text": "dedicated"
- },
- {
- "start": 517.22,
- "end": 517.88,
- "text": "bacteria,"
- },
- {
- "start": 517.94,
- "end": 518.44,
- "text": "powered"
- },
- {
- "start": 518.48,
- "end": 519.1,
- "text": "plastic"
- },
- {
- "start": 519.1,
- "end": 519.38,
- "text": "waste"
- },
- {
- "start": 519.38,
- "end": 519.9,
- "text": "facility."
- },
- {
- "start": 520.22,
- "end": 520.3,
- "text": "I"
- },
- {
- "start": 520.28,
- "end": 522.08,
- "text": "think"
- },
- {
- "start": 522.06,
- "end": 522.68,
- "text": "with"
- },
- {
- "start": 522.64,
- "end": 522.86,
- "text": "some"
- },
- {
- "start": 522.82,
- "end": 523.1,
- "text": "hard"
- },
- {
- "start": 523.14,
- "end": 523.42,
- "text": "work,"
- },
- {
- "start": 523.44,
- "end": 524.18,
- "text": "this"
- },
- {
- "start": 524.16,
- "end": 524.32,
- "text": "is"
- },
- {
- "start": 524.28,
- "end": 524.44,
- "text": "an"
- },
- {
- "start": 524.42,
- "end": 525.18,
- "text": "achievable"
- },
- {
- "start": 525.16,
- "end": 525.7,
- "text": "reality."
- },
- {
- "start": 526.12,
- "end": 527.72,
- "text": "Plastic"
- },
- {
- "start": 527.68,
- "end": 528,
- "text": "eating"
- },
- {
- "start": 527.98,
- "end": 528.66,
- "text": "bacteria"
- },
- {
- "start": 528.8,
- "end": 529.14,
- "text": "is"
- },
- {
- "start": 529.12,
- "end": 529.4,
- "text": "not"
- },
- {
- "start": 529.38,
- "end": 529.46,
- "text": "a"
- },
- {
- "start": 529.5,
- "end": 529.78,
- "text": "curl"
- },
- {
- "start": 530.36,
- "end": 530.76,
- "text": "but"
- },
- {
- "start": 530.74,
- "end": 531.08,
- "text": "given"
- },
- {
- "start": 531.06,
- "end": 531.24,
- "text": "the"
- },
- {
- "start": 531.2,
- "end": 531.54,
- "text": "current"
- },
- {
- "start": 531.5,
- "end": 532.16,
- "text": "statistics,"
- },
- {
- "start": 532.14,
- "end": 532.42,
- "text": "it's"
- },
- {
- "start": 532.44,
- "end": 532.78,
- "text": "clear"
- },
- {
- "start": 532.82,
- "end": 533.38,
- "text": "that"
- },
- {
- "start": 533.36,
- "end": 533.5,
- "text": "we"
- },
- {
- "start": 533.48,
- "end": 533.98,
- "text": "humans,"
- },
- {
- "start": 534.48,
- "end": 535,
- "text": "we"
- },
- {
- "start": 535.06,
- "end": 535.3,
- "text": "could"
- },
- {
- "start": 535.28,
- "end": 535.5,
- "text": "use"
- },
- {
- "start": 535.48,
- "end": 535.56,
- "text": "a"
- },
- {
- "start": 535.52,
- "end": 535.84,
- "text": "little"
- },
- {
- "start": 535.82,
- "end": 536.06,
- "text": "help"
- },
- {
- "start": 536.08,
- "end": 536.28,
- "text": "with"
- },
- {
- "start": 536.24,
- "end": 536.42,
- "text": "this"
- },
- {
- "start": 536.44,
- "end": 536.84,
- "text": "problem"
- },
- {
- "start": 537.48,
- "end": 538.58,
- "text": "because"
- },
- {
- "start": 538.56,
- "end": 539.04,
- "text": "people"
- },
- {
- "start": 539.02,
- "end": 539.72,
- "text": "we"
- },
- {
- "start": 539.72,
- "end": 540.2,
- "text": "possess"
- },
- {
- "start": 540.2,
- "end": 540.28,
- "text": "a"
- },
- {
- "start": 540.32,
- "end": 540.9,
- "text": "pressing"
- },
- {
- "start": 540.94,
- "end": 541.38,
- "text": "problem"
- },
- {
- "start": 541.38,
- "end": 541.52,
- "text": "of"
- },
- {
- "start": 541.52,
- "end": 541.98,
- "text": "plastic"
- },
- {
- "start": 541.98,
- "end": 542.46,
- "text": "pollution"
- },
- {
- "start": 542.78,
- "end": 543.46,
- "text": "and"
- },
- {
- "start": 543.44,
- "end": 544.04,
- "text": "bacteria"
- },
- {
- "start": 544.12,
- "end": 544.8,
- "text": "might"
- },
- {
- "start": 544.78,
- "end": 544.94,
- "text": "be"
- },
- {
- "start": 544.92,
- "end": 545,
- "text": "a"
- },
- {
- "start": 545,
- "end": 545.5,
- "text": "really"
- },
- {
- "start": 545.48,
- "end": 545.96,
- "text": "important"
- },
- {
- "start": 545.96,
- "end": 546.2,
- "text": "part"
- },
- {
- "start": 546.18,
- "end": 546.32,
- "text": "of"
- },
- {
- "start": 546.28,
- "end": 546.42,
- "text": "the"
- },
- {
- "start": 546.38,
- "end": 546.84,
- "text": "solution."
- },
- {
- "start": 547.04,
- "end": 547.94,
- "text": "Thank"
- },
- {
- "start": 547.92,
- "end": 548.08,
- "text": "you."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 13.26,
- "end": 16.92,
- "speaker": "TBC 0"
- },
- {
- "id": 1,
- "start": 17.3,
- "end": 27.3,
- "speaker": "TBC 1"
- },
- {
- "id": 2,
- "start": 27.86,
- "end": 33.4,
- "speaker": "TBC 2"
- },
- {
- "id": 3,
- "start": 33.38,
- "end": 48.7,
- "speaker": "TBC 3"
- },
- {
- "id": 4,
- "start": 49,
- "end": 53.3,
- "speaker": "TBC 4"
- },
- {
- "id": 5,
- "start": 53.82,
- "end": 59.06,
- "speaker": "TBC 5"
- },
- {
- "id": 6,
- "start": 59.74,
- "end": 63.36,
- "speaker": "TBC 6"
- },
- {
- "id": 7,
- "start": 63.88,
- "end": 67.68,
- "speaker": "TBC 7"
- },
- {
- "id": 8,
- "start": 68.04,
- "end": 71.46,
- "speaker": "TBC 8"
- },
- {
- "id": 9,
- "start": 71.98,
- "end": 83.86,
- "speaker": "TBC 9"
- },
- {
- "id": 10,
- "start": 84.1,
- "end": 111.64,
- "speaker": "TBC 10"
- },
- {
- "id": 11,
- "start": 111.9,
- "end": 116.2,
- "speaker": "TBC 11"
- },
- {
- "id": 12,
- "start": 116.76,
- "end": 129.84,
- "speaker": "TBC 12"
- },
- {
- "id": 13,
- "start": 130.32,
- "end": 138.28,
- "speaker": "TBC 13"
- },
- {
- "id": 14,
- "start": 139,
- "end": 144.2,
- "speaker": "TBC 14"
- },
- {
- "id": 15,
- "start": 144.72,
- "end": 151.82,
- "speaker": "TBC 15"
- },
- {
- "id": 16,
- "start": 152.16,
- "end": 157.72,
- "speaker": "TBC 16"
- },
- {
- "id": 17,
- "start": 157.76,
- "end": 160.64,
- "speaker": "TBC 17"
- },
- {
- "id": 18,
- "start": 161.86,
- "end": 165.92,
- "speaker": "TBC 18"
- },
- {
- "id": 19,
- "start": 166.32,
- "end": 173.64,
- "speaker": "TBC 19"
- },
- {
- "id": 20,
- "start": 173.66,
- "end": 176.86,
- "speaker": "TBC 20"
- },
- {
- "id": 21,
- "start": 176.84,
- "end": 180.42,
- "speaker": "TBC 21"
- },
- {
- "id": 22,
- "start": 180.54,
- "end": 188.54,
- "speaker": "TBC 22"
- },
- {
- "id": 23,
- "start": 188.88,
- "end": 195.9,
- "speaker": "TBC 23"
- },
- {
- "id": 24,
- "start": 196.26,
- "end": 201.26,
- "speaker": "TBC 24"
- },
- {
- "id": 25,
- "start": 201.62,
- "end": 211.88,
- "speaker": "TBC 25"
- },
- {
- "id": 26,
- "start": 211.92,
- "end": 214.38,
- "speaker": "TBC 26"
- },
- {
- "id": 27,
- "start": 214.68,
- "end": 220.54,
- "speaker": "TBC 27"
- },
- {
- "id": 28,
- "start": 221.02,
- "end": 228.34,
- "speaker": "TBC 28"
- },
- {
- "id": 29,
- "start": 229.14,
- "end": 234,
- "speaker": "TBC 29"
- },
- {
- "id": 30,
- "start": 234.42,
- "end": 247.16,
- "speaker": "TBC 30"
- },
- {
- "id": 31,
- "start": 247.54,
- "end": 261.18,
- "speaker": "TBC 31"
- },
- {
- "id": 32,
- "start": 261.92,
- "end": 270.22,
- "speaker": "TBC 32"
- },
- {
- "id": 33,
- "start": 270.2,
- "end": 276.3,
- "speaker": "TBC 33"
- },
- {
- "id": 34,
- "start": 276.28,
- "end": 285.76,
- "speaker": "TBC 34"
- },
- {
- "id": 35,
- "start": 286.06,
- "end": 290.18,
- "speaker": "TBC 35"
- },
- {
- "id": 36,
- "start": 290.78,
- "end": 299.68,
- "speaker": "TBC 36"
- },
- {
- "id": 37,
- "start": 299.96,
- "end": 316.24,
- "speaker": "TBC 37"
- },
- {
- "id": 38,
- "start": 316.54,
- "end": 320.44,
- "speaker": "TBC 38"
- },
- {
- "id": 39,
- "start": 320.82,
- "end": 328.9,
- "speaker": "TBC 39"
- },
- {
- "id": 40,
- "start": 329.24,
- "end": 339.2,
- "speaker": "TBC 40"
- },
- {
- "id": 41,
- "start": 339.18,
- "end": 340.5,
- "speaker": "TBC 41"
- },
- {
- "id": 42,
- "start": 340.82,
- "end": 345.94,
- "speaker": "TBC 42"
- },
- {
- "id": 43,
- "start": 345.9,
- "end": 354.64,
- "speaker": "TBC 43"
- },
- {
- "id": 44,
- "start": 355.22,
- "end": 364.28,
- "speaker": "TBC 44"
- },
- {
- "id": 45,
- "start": 364.64,
- "end": 367.72,
- "speaker": "TBC 45"
- },
- {
- "id": 46,
- "start": 367.7,
- "end": 367.94,
- "speaker": "TBC 46"
- },
- {
- "id": 47,
- "start": 368.56,
- "end": 376.5,
- "speaker": "TBC 47"
- },
- {
- "id": 48,
- "start": 377.44,
- "end": 385.26,
- "speaker": "TBC 48"
- },
- {
- "id": 49,
- "start": 385.24,
- "end": 386.58,
- "speaker": "TBC 49"
- },
- {
- "id": 50,
- "start": 387.3,
- "end": 392.52,
- "speaker": "TBC 50"
- },
- {
- "id": 51,
- "start": 392.8,
- "end": 396.78,
- "speaker": "TBC 51"
- },
- {
- "id": 52,
- "start": 397.1,
- "end": 402.34,
- "speaker": "TBC 52"
- },
- {
- "id": 53,
- "start": 402.38,
- "end": 415.06,
- "speaker": "TBC 53"
- },
- {
- "id": 54,
- "start": 415.58,
- "end": 420.1,
- "speaker": "TBC 54"
- },
- {
- "id": 55,
- "start": 420.4,
- "end": 423.7,
- "speaker": "TBC 55"
- },
- {
- "id": 56,
- "start": 423.84,
- "end": 429.08,
- "speaker": "TBC 56"
- },
- {
- "id": 57,
- "start": 429.54,
- "end": 434.2,
- "speaker": "TBC 57"
- },
- {
- "id": 58,
- "start": 434.46,
- "end": 446.74,
- "speaker": "TBC 58"
- },
- {
- "id": 59,
- "start": 447.16,
- "end": 462.26,
- "speaker": "TBC 59"
- },
- {
- "id": 60,
- "start": 462.6,
- "end": 474.52,
- "speaker": "TBC 60"
- },
- {
- "id": 61,
- "start": 474.74,
- "end": 488.4,
- "speaker": "TBC 61"
- },
- {
- "id": 62,
- "start": 488.68,
- "end": 495.38,
- "speaker": "TBC 62"
- },
- {
- "id": 63,
- "start": 495.52,
- "end": 506.72,
- "speaker": "TBC 63"
- },
- {
- "id": 64,
- "start": 507.12,
- "end": 519.9,
- "speaker": "TBC 64"
- },
- {
- "id": 65,
- "start": 520.22,
- "end": 525.7,
- "speaker": "TBC 65"
- },
- {
- "id": 66,
- "start": 526.12,
- "end": 546.84,
- "speaker": "TBC 66"
- },
- {
- "id": 67,
- "start": 547.04,
- "end": 548.08,
- "speaker": "TBC 67"
- }
- ]
- }
- },
- {
- "_id": "39cjw29xii80000ird74yb19swa",
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "title": "Ivan Poupyrev Ted Talk",
- "url": "https://download.ted.com/talks/IvanPoupyrev_2019.mp4",
- "clipName": "IvanPoupyrev_2019.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "start": 7.96,
- "end": 13.5,
- "text": "Computers"
- },
- {
- "start": 13.48,
- "end": 14.12,
- "text": "have"
- },
- {
- "start": 14.1,
- "end": 14.52,
- "text": "become"
- },
- {
- "start": 14.48,
- "end": 14.86,
- "text": "truly"
- },
- {
- "start": 14.84,
- "end": 15.3,
- "text": "incredible."
- },
- {
- "start": 15.54,
- "end": 15.64,
- "text": "We"
- },
- {
- "start": 16.64,
- "end": 16.84,
- "text": "are"
- },
- {
- "start": 16.82,
- "end": 17.24,
- "text": "walking"
- },
- {
- "start": 17.2,
- "end": 17.6,
- "text": "around"
- },
- {
- "start": 17.58,
- "end": 17.84,
- "text": "with"
- },
- {
- "start": 17.8,
- "end": 17.94,
- "text": "the"
- },
- {
- "start": 17.9,
- "end": 18.78,
- "text": "supercomputers"
- },
- {
- "start": 18.76,
- "end": 18.92,
- "text": "in"
- },
- {
- "start": 18.9,
- "end": 19.18,
- "text": "our"
- },
- {
- "start": 19.16,
- "end": 19.36,
- "text": "book"
- },
- {
- "start": 19.32,
- "end": 19.46,
- "text": "at"
- },
- {
- "start": 19.46,
- "end": 19.66,
- "text": "how"
- },
- {
- "start": 19.66,
- "end": 20.24,
- "text": "amazing"
- },
- {
- "start": 20.22,
- "end": 20.36,
- "text": "is"
- },
- {
- "start": 20.38,
- "end": 20.52,
- "text": "that."
- },
- {
- "start": 20.78,
- "end": 20.88,
- "text": "So"
- },
- {
- "start": 21.76,
- "end": 21.96,
- "text": "it"
- },
- {
- "start": 21.92,
- "end": 22.14,
- "text": "is"
- },
- {
- "start": 22.14,
- "end": 22.96,
- "text": "disappointing"
- },
- {
- "start": 22.92,
- "end": 24.02,
- "text": "that"
- },
- {
- "start": 24.58,
- "end": 24.72,
- "text": "the"
- },
- {
- "start": 24.7,
- "end": 24.88,
- "text": "way"
- },
- {
- "start": 24.88,
- "end": 25,
- "text": "we"
- },
- {
- "start": 25.04,
- "end": 25.3,
- "text": "use"
- },
- {
- "start": 25.28,
- "end": 25.8,
- "text": "computers,"
- },
- {
- "start": 25.76,
- "end": 25.94,
- "text": "the"
- },
- {
- "start": 25.9,
- "end": 26.06,
- "text": "way"
- },
- {
- "start": 26.04,
- "end": 26.16,
- "text": "we"
- },
- {
- "start": 26.14,
- "end": 26.54,
- "text": "interact"
- },
- {
- "start": 26.54,
- "end": 26.72,
- "text": "with"
- },
- {
- "start": 26.7,
- "end": 26.96,
- "text": "them"
- },
- {
- "start": 26.94,
- "end": 27.42,
- "text": "haven't"
- },
- {
- "start": 27.4,
- "end": 27.76,
- "text": "really"
- },
- {
- "start": 27.76,
- "end": 28.1,
- "text": "changed"
- },
- {
- "start": 28.32,
- "end": 28.42,
- "text": "in"
- },
- {
- "start": 28.68,
- "end": 28.98,
- "text": "last"
- },
- {
- "start": 29.04,
- "end": 29.5,
- "text": "e-t"
- },
- {
- "start": 29.46,
- "end": 29.74,
- "text": "years."
- },
- {
- "start": 30.48,
- "end": 30.62,
- "text": "We"
- },
- {
- "start": 30.64,
- "end": 30.88,
- "text": "still"
- },
- {
- "start": 30.86,
- "end": 31,
- "text": "as"
- },
- {
- "start": 31.16,
- "end": 31.5,
- "text": "mars"
- },
- {
- "start": 31.5,
- "end": 31.68,
- "text": "and"
- },
- {
- "start": 31.66,
- "end": 32.06,
- "text": "keyboards"
- },
- {
- "start": 32.06,
- "end": 32.26,
- "text": "were"
- },
- {
- "start": 32.22,
- "end": 32.56,
- "text": "clicking"
- },
- {
- "start": 32.52,
- "end": 32.64,
- "text": "on"
- },
- {
- "start": 32.74,
- "end": 33.22,
- "text": "screens"
- },
- {
- "start": 33.2,
- "end": 33.36,
- "text": "and"
- },
- {
- "start": 33.32,
- "end": 33.48,
- "text": "the"
- },
- {
- "start": 33.46,
- "end": 33.92,
- "text": "buttons"
- },
- {
- "start": 34.34,
- "end": 34.76,
- "text": "mobile"
- },
- {
- "start": 34.84,
- "end": 35.16,
- "text": "phones"
- },
- {
- "start": 35.14,
- "end": 35.38,
- "text": "the"
- },
- {
- "start": 35.36,
- "end": 35.66,
- "text": "same"
- },
- {
- "start": 35.92,
- "end": 36.7,
- "text": "with"
- },
- {
- "start": 36.7,
- "end": 36.9,
- "text": "just"
- },
- {
- "start": 36.86,
- "end": 37.2,
- "text": "using"
- },
- {
- "start": 37.16,
- "end": 37.62,
- "text": "finger"
- },
- {
- "start": 37.58,
- "end": 37.7,
- "text": "in"
- },
- {
- "start": 37.72,
- "end": 37.92,
- "text": "a"
- },
- {
- "start": 38.72,
- "end": 38.96,
- "text": "mass."
- },
- {
- "start": 39.2,
- "end": 39.3,
- "text": "So"
- },
- {
- "start": 40.08,
- "end": 40.34,
- "text": "is"
- },
- {
- "start": 40.44,
- "end": 40.64,
- "text": "that"
- },
- {
- "start": 40.62,
- "end": 40.82,
- "text": "is"
- },
- {
- "start": 41.58,
- "end": 41.74,
- "text": "it"
- },
- {
- "start": 41.72,
- "end": 41.88,
- "text": "is"
- },
- {
- "start": 41.86,
- "end": 42.04,
- "text": "how"
- },
- {
- "start": 42.06,
- "end": 42.8,
- "text": "future"
- },
- {
- "start": 42.78,
- "end": 43.06,
- "text": "looks"
- },
- {
- "start": 43.06,
- "end": 43.34,
- "text": "like"
- },
- {
- "start": 43.3,
- "end": 43.62,
- "text": "we're"
- },
- {
- "start": 43.6,
- "end": 43.76,
- "text": "going"
- },
- {
- "start": 43.72,
- "end": 43.82,
- "text": "to"
- },
- {
- "start": 43.78,
- "end": 43.88,
- "text": "be"
- },
- {
- "start": 43.86,
- "end": 44.28,
- "text": "stuck"
- },
- {
- "start": 44.28,
- "end": 44.42,
- "text": "in"
- },
- {
- "start": 44.38,
- "end": 44.54,
- "text": "the"
- },
- {
- "start": 44.56,
- "end": 44.92,
- "text": "screen"
- },
- {
- "start": 45.3,
- "end": 45.82,
- "text": "without"
- },
- {
- "start": 45.78,
- "end": 46.34,
- "text": "faces"
- },
- {
- "start": 46.34,
- "end": 47.32,
- "text": "not"
- },
- {
- "start": 47.3,
- "end": 47.6,
- "text": "seeing"
- },
- {
- "start": 47.56,
- "end": 47.7,
- "text": "the"
- },
- {
- "start": 47.66,
- "end": 47.9,
- "text": "world"
- },
- {
- "start": 47.88,
- "end": 48.24,
- "text": "around"
- },
- {
- "start": 48.22,
- "end": 48.36,
- "text": "us."
- },
- {
- "start": 48.72,
- "end": 49.52,
- "text": "That's"
- },
- {
- "start": 49.48,
- "end": 49.74,
- "text": "not"
- },
- {
- "start": 49.7,
- "end": 49.92,
- "text": "the"
- },
- {
- "start": 49.88,
- "end": 50.34,
- "text": "future."
- },
- {
- "start": 50.32,
- "end": 50.4,
- "text": "I"
- },
- {
- "start": 50.36,
- "end": 50.9,
- "text": "imagine"
- },
- {
- "start": 50.88,
- "end": 51.06,
- "text": "them"
- },
- {
- "start": 51.06,
- "end": 51.24,
- "text": "the"
- },
- {
- "start": 51.2,
- "end": 51.58,
- "text": "future"
- },
- {
- "start": 51.54,
- "end": 51.64,
- "text": "I"
- },
- {
- "start": 51.6,
- "end": 52.08,
- "text": "attracted"
- },
- {
- "start": 52.08,
- "end": 52.18,
- "text": "to."
- },
- {
- "start": 52.54,
- "end": 53.14,
- "text": "What"
- },
- {
- "start": 53.1,
- "end": 53.26,
- "text": "I'm"
- },
- {
- "start": 53.24,
- "end": 53.4,
- "text": "ben"
- },
- {
- "start": 53.4,
- "end": 53.72,
- "text": "always"
- },
- {
- "start": 53.78,
- "end": 54.28,
- "text": "interested"
- },
- {
- "start": 54.24,
- "end": 54.62,
- "text": "is"
- },
- {
- "start": 54.6,
- "end": 54.94,
- "text": "things"
- },
- {
- "start": 55.54,
- "end": 56.36,
- "text": "physical"
- },
- {
- "start": 56.34,
- "end": 56.84,
- "text": "things"
- },
- {
- "start": 56.8,
- "end": 56.96,
- "text": "we"
- },
- {
- "start": 57.02,
- "end": 57.34,
- "text": "use"
- },
- {
- "start": 57.3,
- "end": 57.54,
- "text": "every"
- },
- {
- "start": 57.52,
- "end": 57.72,
- "text": "day"
- },
- {
- "start": 57.7,
- "end": 57.98,
- "text": "like"
- },
- {
- "start": 57.94,
- "end": 58.3,
- "text": "things"
- },
- {
- "start": 58.28,
- "end": 58.42,
- "text": "on"
- },
- {
- "start": 58.4,
- "end": 58.56,
- "text": "the"
- },
- {
- "start": 58.52,
- "end": 59.04,
- "text": "table"
- },
- {
- "start": 59.04,
- "end": 59.2,
- "text": "that"
- },
- {
- "start": 59.18,
- "end": 59.52,
- "text": "family"
- },
- {
- "start": 59.5,
- "end": 59.8,
- "text": "doesn't"
- },
- {
- "start": 59.78,
- "end": 59.94,
- "text": "pay"
- },
- {
- "start": 59.9,
- "end": 60.3,
- "text": "attention"
- },
- {
- "start": 60.28,
- "end": 60.42,
- "text": "to"
- },
- {
- "start": 60.72,
- "end": 61.84,
- "text": "things"
- },
- {
- "start": 61.92,
- "end": 62.16,
- "text": "till"
- },
- {
- "start": 62.12,
- "end": 62.28,
- "text": "our"
- },
- {
- "start": 62.32,
- "end": 62.74,
- "text": "story"
- },
- {
- "start": 62.74,
- "end": 63.2,
- "text": "until"
- },
- {
- "start": 63.18,
- "end": 63.34,
- "text": "who"
- },
- {
- "start": 63.36,
- "end": 63.48,
- "text": "we"
- },
- {
- "start": 63.5,
- "end": 63.7,
- "text": "are"
- },
- {
- "start": 63.68,
- "end": 63.88,
- "text": "the"
- },
- {
- "start": 63.9,
- "end": 64.14,
- "text": "one"
- },
- {
- "start": 64.12,
- "end": 64.38,
- "text": "word"
- },
- {
- "start": 64.38,
- "end": 64.62,
- "text": "about"
- },
- {
- "start": 64.6,
- "end": 64.76,
- "text": "us."
- },
- {
- "start": 64.98,
- "end": 66.1,
- "text": "Let"
- },
- {
- "start": 66.08,
- "end": 66.18,
- "text": "me"
- },
- {
- "start": 66.22,
- "end": 66.4,
- "text": "give"
- },
- {
- "start": 66.36,
- "end": 66.48,
- "text": "an"
- },
- {
- "start": 66.44,
- "end": 66.86,
- "text": "example."
- },
- {
- "start": 66.82,
- "end": 68.28,
- "text": "These"
- },
- {
- "start": 68.24,
- "end": 68.44,
- "text": "are"
- },
- {
- "start": 68.4,
- "end": 68.94,
- "text": "photographs"
- },
- {
- "start": 69.26,
- "end": 69.62,
- "text": "of"
- },
- {
- "start": 69.62,
- "end": 70,
- "text": "things."
- },
- {
- "start": 69.96,
- "end": 70.04,
- "text": "A"
- },
- {
- "start": 70.14,
- "end": 70.52,
- "text": "person"
- },
- {
- "start": 70.5,
- "end": 70.94,
- "text": "touched"
- },
- {
- "start": 70.9,
- "end": 71.76,
- "text": "doing"
- },
- {
- "start": 71.74,
- "end": 72.1,
- "text": "twenty"
- },
- {
- "start": 72.08,
- "end": 72.26,
- "text": "four"
- },
- {
- "start": 72.24,
- "end": 72.5,
- "text": "hours."
- },
- {
- "start": 72.7,
- "end": 73.28,
- "text": "What"
- },
- {
- "start": 73.28,
- "end": 73.46,
- "text": "can"
- },
- {
- "start": 73.44,
- "end": 73.58,
- "text": "you"
- },
- {
- "start": 73.56,
- "end": 73.78,
- "text": "tell"
- },
- {
- "start": 73.74,
- "end": 74.02,
- "text": "about"
- },
- {
- "start": 74,
- "end": 74.26,
- "text": "him?"
- },
- {
- "start": 74.28,
- "end": 75.36,
- "text": "He"
- },
- {
- "start": 75.32,
- "end": 75.72,
- "text": "loves"
- },
- {
- "start": 75.68,
- "end": 75.84,
- "text": "his"
- },
- {
- "start": 75.88,
- "end": 76.42,
- "text": "motorcycle."
- },
- {
- "start": 76.7,
- "end": 76.78,
- "text": "A"
- },
- {
- "start": 77.14,
- "end": 77.78,
- "text": "biggest"
- },
- {
- "start": 77.84,
- "end": 78.08,
- "text": "in"
- },
- {
- "start": 78.06,
- "end": 78.26,
- "text": "his"
- },
- {
- "start": 78.28,
- "end": 78.6,
- "text": "fiction."
- },
- {
- "start": 79.38,
- "end": 79.56,
- "text": "What"
- },
- {
- "start": 79.52,
- "end": 79.72,
- "text": "can"
- },
- {
- "start": 79.7,
- "end": 80,
- "text": "tell"
- },
- {
- "start": 79.98,
- "end": 80.22,
- "text": "about"
- },
- {
- "start": 80.18,
- "end": 80.36,
- "text": "this"
- },
- {
- "start": 80.38,
- "end": 80.56,
- "text": "girl."
- },
- {
- "start": 81.14,
- "end": 81.92,
- "text": "She"
- },
- {
- "start": 81.88,
- "end": 82.26,
- "text": "spent"
- },
- {
- "start": 82.26,
- "end": 82.46,
- "text": "all"
- },
- {
- "start": 82.44,
- "end": 82.6,
- "text": "the"
- },
- {
- "start": 82.64,
- "end": 82.88,
- "text": "time"
- },
- {
- "start": 82.84,
- "end": 83,
- "text": "on"
- },
- {
- "start": 82.98,
- "end": 83.12,
- "text": "the"
- },
- {
- "start": 83.1,
- "end": 83.38,
- "text": "beach."
- },
- {
- "start": 83.4,
- "end": 83.7,
- "text": "This"
- },
- {
- "start": 83.68,
- "end": 83.86,
- "text": "is"
- },
- {
- "start": 83.88,
- "end": 84.06,
- "text": "so"
- },
- {
- "start": 84.1,
- "end": 84.44,
- "text": "board."
- },
- {
- "start": 84.66,
- "end": 85.06,
- "text": "He"
- },
- {
- "start": 85.12,
- "end": 85.46,
- "text": "leaves"
- },
- {
- "start": 85.44,
- "end": 85.6,
- "text": "by"
- },
- {
- "start": 85.58,
- "end": 85.74,
- "text": "the"
- },
- {
- "start": 85.7,
- "end": 86.02,
- "text": "sea."
- },
- {
- "start": 87.36,
- "end": 87.54,
- "text": "What"
- },
- {
- "start": 87.56,
- "end": 87.72,
- "text": "can"
- },
- {
- "start": 87.7,
- "end": 87.82,
- "text": "I"
- },
- {
- "start": 87.78,
- "end": 88.02,
- "text": "tell"
- },
- {
- "start": 87.98,
- "end": 88.24,
- "text": "about"
- },
- {
- "start": 88.2,
- "end": 88.44,
- "text": "this"
- },
- {
- "start": 88.44,
- "end": 88.58,
- "text": "guy?"
- },
- {
- "start": 89.12,
- "end": 89.7,
- "text": "He's"
- },
- {
- "start": 89.74,
- "end": 89.82,
- "text": "a"
- },
- {
- "start": 89.9,
- "end": 90.26,
- "text": "chef,"
- },
- {
- "start": 90.24,
- "end": 91.24,
- "text": "look"
- },
- {
- "start": 91.22,
- "end": 91.36,
- "text": "at"
- },
- {
- "start": 91.32,
- "end": 91.58,
- "text": "all"
- },
- {
- "start": 91.56,
- "end": 91.74,
- "text": "the"
- },
- {
- "start": 91.7,
- "end": 92.32,
- "text": "ingredients"
- },
- {
- "start": 92.3,
- "end": 92.6,
- "text": "can"
- },
- {
- "start": 92.56,
- "end": 92.84,
- "text": "touch"
- },
- {
- "start": 92.82,
- "end": 93.32,
- "text": "during"
- },
- {
- "start": 93.28,
- "end": 93.42,
- "text": "the"
- },
- {
- "start": 93.42,
- "end": 93.68,
- "text": "day"
- },
- {
- "start": 93.7,
- "end": 93.9,
- "text": "while"
- },
- {
- "start": 93.86,
- "end": 94,
- "text": "he"
- },
- {
- "start": 93.98,
- "end": 94.14,
- "text": "was"
- },
- {
- "start": 94.12,
- "end": 94.6,
- "text": "preparing"
- },
- {
- "start": 94.56,
- "end": 94.74,
- "text": "the"
- },
- {
- "start": 94.72,
- "end": 95,
- "text": "food"
- },
- {
- "start": 95.28,
- "end": 95.46,
- "text": "and"
- },
- {
- "start": 95.46,
- "end": 95.98,
- "text": "computer."
- },
- {
- "start": 96.32,
- "end": 96.6,
- "text": "It's"
- },
- {
- "start": 96.58,
- "end": 96.66,
- "text": "a"
- },
- {
- "start": 96.66,
- "end": 97.16,
- "text": "tiny"
- },
- {
- "start": 97.2,
- "end": 97.44,
- "text": "part"
- },
- {
- "start": 97.42,
- "end": 97.56,
- "text": "of"
- },
- {
- "start": 97.54,
- "end": 97.74,
- "text": "his"
- },
- {
- "start": 97.78,
- "end": 98.12,
- "text": "life."
- },
- {
- "start": 98.12,
- "end": 98.68,
- "text": "This"
- },
- {
- "start": 98.8,
- "end": 99.1,
- "text": "sad"
- },
- {
- "start": 99.42,
- "end": 99.74,
- "text": "things"
- },
- {
- "start": 99.74,
- "end": 99.88,
- "text": "in"
- },
- {
- "start": 99.86,
- "end": 100,
- "text": "the"
- },
- {
- "start": 99.98,
- "end": 100.28,
- "text": "corner."
- },
- {
- "start": 100.56,
- "end": 100.66,
- "text": "So"
- },
- {
- "start": 101.92,
- "end": 102.2,
- "text": "if"
- },
- {
- "start": 102.2,
- "end": 102.5,
- "text": "we're"
- },
- {
- "start": 102.48,
- "end": 102.84,
- "text": "using"
- },
- {
- "start": 102.8,
- "end": 103.28,
- "text": "things"
- },
- {
- "start": 103.68,
- "end": 103.98,
- "text": "all"
- },
- {
- "start": 103.98,
- "end": 104.2,
- "text": "the"
- },
- {
- "start": 104.16,
- "end": 104.6,
- "text": "time"
- },
- {
- "start": 104.56,
- "end": 104.8,
- "text": "and"
- },
- {
- "start": 104.76,
- "end": 104.92,
- "text": "this"
- },
- {
- "start": 104.9,
- "end": 105.06,
- "text": "is"
- },
- {
- "start": 105.04,
- "end": 105.36,
- "text": "part"
- },
- {
- "start": 105.34,
- "end": 105.42,
- "text": "a"
- },
- {
- "start": 105.46,
- "end": 105.64,
- "text": "big"
- },
- {
- "start": 105.62,
- "end": 105.8,
- "text": "part"
- },
- {
- "start": 105.78,
- "end": 105.9,
- "text": "of"
- },
- {
- "start": 105.86,
- "end": 106.02,
- "text": "our"
- },
- {
- "start": 106.04,
- "end": 106.38,
- "text": "lives."
- },
- {
- "start": 106.68,
- "end": 107.14,
- "text": "Again,"
- },
- {
- "start": 107.12,
- "end": 107.6,
- "text": "things"
- },
- {
- "start": 107.68,
- "end": 108.14,
- "text": "become"
- },
- {
- "start": 108.64,
- "end": 108.78,
- "text": "a"
- },
- {
- "start": 108.8,
- "end": 109.04,
- "text": "way"
- },
- {
- "start": 109.06,
- "end": 109.22,
- "text": "for"
- },
- {
- "start": 109.2,
- "end": 109.38,
- "text": "us"
- },
- {
- "start": 109.44,
- "end": 109.56,
- "text": "to"
- },
- {
- "start": 109.56,
- "end": 110.02,
- "text": "interact"
- },
- {
- "start": 110,
- "end": 110.16,
- "text": "with"
- },
- {
- "start": 110.12,
- "end": 110.28,
- "text": "our"
- },
- {
- "start": 110.28,
- "end": 110.74,
- "text": "digital"
- },
- {
- "start": 110.7,
- "end": 111,
- "text": "life"
- },
- {
- "start": 111.28,
- "end": 111.38,
- "text": "in"
- },
- {
- "start": 113.06,
- "end": 113.22,
- "text": "the"
- },
- {
- "start": 113.24,
- "end": 113.64,
- "text": "world"
- },
- {
- "start": 113.64,
- "end": 114.32,
- "text": "become"
- },
- {
- "start": 114.3,
- "end": 114.54,
- "text": "your"
- },
- {
- "start": 114.54,
- "end": 115.12,
- "text": "interface."
- },
- {
- "start": 115.32,
- "end": 116.96,
- "text": "This"
- },
- {
- "start": 116.96,
- "end": 117.12,
- "text": "was"
- },
- {
- "start": 117.14,
- "end": 117.3,
- "text": "my"
- },
- {
- "start": 117.28,
- "end": 117.64,
- "text": "idea."
- },
- {
- "start": 117.84,
- "end": 118.26,
- "text": "I've"
- },
- {
- "start": 118.24,
- "end": 118.42,
- "text": "been"
- },
- {
- "start": 118.38,
- "end": 118.68,
- "text": "working"
- },
- {
- "start": 118.66,
- "end": 118.82,
- "text": "for"
- },
- {
- "start": 118.8,
- "end": 119.22,
- "text": "twenty"
- },
- {
- "start": 119.22,
- "end": 119.46,
- "text": "years"
- },
- {
- "start": 119.44,
- "end": 119.6,
- "text": "on"
- },
- {
- "start": 120.22,
- "end": 120.92,
- "text": "my"
- },
- {
- "start": 121,
- "end": 121.32,
- "text": "idea"
- },
- {
- "start": 121.32,
- "end": 121.44,
- "text": "is"
- },
- {
- "start": 121.48,
- "end": 121.68,
- "text": "that"
- },
- {
- "start": 122.02,
- "end": 122.18,
- "text": "in"
- },
- {
- "start": 122.16,
- "end": 122.6,
- "text": "writing"
- },
- {
- "start": 122.56,
- "end": 122.68,
- "text": "to"
- },
- {
- "start": 122.66,
- "end": 123.3,
- "text": "rouse"
- },
- {
- "start": 123.3,
- "end": 123.42,
- "text": "a"
- },
- {
- "start": 123.38,
- "end": 123.68,
- "text": "life,"
- },
- {
- "start": 123.74,
- "end": 123.92,
- "text": "you"
- },
- {
- "start": 123.9,
- "end": 124.18,
- "text": "don't"
- },
- {
- "start": 124.22,
- "end": 124.46,
- "text": "need"
- },
- {
- "start": 124.78,
- "end": 124.94,
- "text": "to"
- },
- {
- "start": 124.94,
- "end": 125.14,
- "text": "have"
- },
- {
- "start": 125.24,
- "end": 125.74,
- "text": "screens"
- },
- {
- "start": 125.84,
- "end": 126.06,
- "text": "and"
- },
- {
- "start": 126.12,
- "end": 126.62,
- "text": "keyboards"
- },
- {
- "start": 126.96,
- "end": 127.48,
- "text": "and"
- },
- {
- "start": 127.48,
- "end": 128.04,
- "text": "moses"
- },
- {
- "start": 128.52,
- "end": 128.66,
- "text": "you"
- },
- {
- "start": 128.66,
- "end": 128.82,
- "text": "can"
- },
- {
- "start": 128.78,
- "end": 129.22,
- "text": "interact"
- },
- {
- "start": 129.2,
- "end": 129.4,
- "text": "with."
- },
- {
- "start": 129.36,
- "end": 129.66,
- "text": "You'll"
- },
- {
- "start": 129.74,
- "end": 129.96,
- "text": "use"
- },
- {
- "start": 129.96,
- "end": 130.12,
- "text": "the"
- },
- {
- "start": 130.1,
- "end": 130.46,
- "text": "life"
- },
- {
- "start": 130.76,
- "end": 130.98,
- "text": "does"
- },
- {
- "start": 131.04,
- "end": 131.18,
- "text": "by"
- },
- {
- "start": 131.2,
- "end": 131.54,
- "text": "using"
- },
- {
- "start": 131.5,
- "end": 132,
- "text": "things"
- },
- {
- "start": 132.12,
- "end": 132.32,
- "text": "you"
- },
- {
- "start": 132.3,
- "end": 132.56,
- "text": "use"
- },
- {
- "start": 132.68,
- "end": 133.02,
- "text": "every"
- },
- {
- "start": 133.06,
- "end": 133.2,
- "text": "day"
- },
- {
- "start": 133.52,
- "end": 134.16,
- "text": "and"
- },
- {
- "start": 134.14,
- "end": 134.26,
- "text": "to"
- },
- {
- "start": 134.22,
- "end": 134.6,
- "text": "realize"
- },
- {
- "start": 134.56,
- "end": 134.72,
- "text": "this"
- },
- {
- "start": 134.68,
- "end": 135.04,
- "text": "idea"
- },
- {
- "start": 135.02,
- "end": 135.2,
- "text": "and"
- },
- {
- "start": 135.16,
- "end": 135.28,
- "text": "he"
- },
- {
- "start": 135.26,
- "end": 135.44,
- "text": "to"
- },
- {
- "start": 135.42,
- "end": 135.76,
- "text": "solve"
- },
- {
- "start": 135.74,
- "end": 136.1,
- "text": "three"
- },
- {
- "start": 136.2,
- "end": 136.44,
- "text": "big"
- },
- {
- "start": 136.48,
- "end": 136.84,
- "text": "challenges."
- },
- {
- "start": 137.08,
- "end": 137.98,
- "text": "This"
- },
- {
- "start": 137.96,
- "end": 138.12,
- "text": "I"
- },
- {
- "start": 138.12,
- "end": 138.32,
- "text": "tell"
- },
- {
- "start": 138.28,
- "end": 138.42,
- "text": "you"
- },
- {
- "start": 138.38,
- "end": 138.6,
- "text": "about"
- },
- {
- "start": 138.56,
- "end": 138.78,
- "text": "them."
- },
- {
- "start": 140.08,
- "end": 140.64,
- "text": "The"
- },
- {
- "start": 140.6,
- "end": 140.92,
- "text": "first"
- },
- {
- "start": 140.88,
- "end": 141.22,
- "text": "one"
- },
- {
- "start": 141.18,
- "end": 142.68,
- "text": "obviously"
- },
- {
- "start": 142.72,
- "end": 142.92,
- "text": "is"
- },
- {
- "start": 143,
- "end": 143.16,
- "text": "it"
- },
- {
- "start": 143.12,
- "end": 143.36,
- "text": "even"
- },
- {
- "start": 143.34,
- "end": 143.76,
- "text": "possible?"
- },
- {
- "start": 144.04,
- "end": 144.78,
- "text": "How"
- },
- {
- "start": 144.78,
- "end": 144.9,
- "text": "do"
- },
- {
- "start": 144.9,
- "end": 145.14,
- "text": "you"
- },
- {
- "start": 145.1,
- "end": 145.5,
- "text": "take"
- },
- {
- "start": 145.46,
- "end": 145.62,
- "text": "an"
- },
- {
- "start": 145.66,
- "end": 146.18,
- "text": "everyday"
- },
- {
- "start": 146.18,
- "end": 146.56,
- "text": "thing"
- },
- {
- "start": 147.04,
- "end": 147.5,
- "text": "you"
- },
- {
- "start": 147.46,
- "end": 147.76,
- "text": "use"
- },
- {
- "start": 147.72,
- "end": 147.96,
- "text": "every"
- },
- {
- "start": 147.94,
- "end": 148.16,
- "text": "day"
- },
- {
- "start": 148.16,
- "end": 148.6,
- "text": "and"
- },
- {
- "start": 148.58,
- "end": 148.9,
- "text": "turn"
- },
- {
- "start": 148.9,
- "end": 149.04,
- "text": "it"
- },
- {
- "start": 149.02,
- "end": 149.58,
- "text": "and"
- },
- {
- "start": 149.54,
- "end": 150.04,
- "text": "computing"
- },
- {
- "start": 150,
- "end": 150.16,
- "text": "the"
- },
- {
- "start": 150.14,
- "end": 150.38,
- "text": "face."
- },
- {
- "start": 150.66,
- "end": 151.7,
- "text": "Now,"
- },
- {
- "start": 151.68,
- "end": 151.76,
- "text": "I"
- },
- {
- "start": 151.8,
- "end": 152,
- "text": "was"
- },
- {
- "start": 151.98,
- "end": 152.52,
- "text": "inspired"
- },
- {
- "start": 152.5,
- "end": 152.62,
- "text": "by"
- },
- {
- "start": 152.58,
- "end": 152.78,
- "text": "the"
- },
- {
- "start": 152.74,
- "end": 152.96,
- "text": "book"
- },
- {
- "start": 152.98,
- "end": 153.38,
- "text": "hackers."
- },
- {
- "start": 153.46,
- "end": 153.6,
- "text": "I"
- },
- {
- "start": 153.58,
- "end": 153.78,
- "text": "read"
- },
- {
- "start": 153.76,
- "end": 153.9,
- "text": "when"
- },
- {
- "start": 153.88,
- "end": 153.96,
- "text": "I"
- },
- {
- "start": 153.94,
- "end": 154.1,
- "text": "was"
- },
- {
- "start": 154.06,
- "end": 154.14,
- "text": "a"
- },
- {
- "start": 154.16,
- "end": 154.58,
- "text": "teenager"
- },
- {
- "start": 154.88,
- "end": 155.38,
- "text": "and"
- },
- {
- "start": 155.34,
- "end": 155.5,
- "text": "the"
- },
- {
- "start": 155.5,
- "end": 155.86,
- "text": "central"
- },
- {
- "start": 155.84,
- "end": 156.18,
- "text": "idea"
- },
- {
- "start": 156.16,
- "end": 156.28,
- "text": "of"
- },
- {
- "start": 156.28,
- "end": 156.44,
- "text": "this"
- },
- {
- "start": 156.46,
- "end": 156.7,
- "text": "book,"
- },
- {
- "start": 157.08,
- "end": 157.46,
- "text": "one"
- },
- {
- "start": 157.42,
- "end": 157.56,
- "text": "of"
- },
- {
- "start": 157.54,
- "end": 157.68,
- "text": "the"
- },
- {
- "start": 157.64,
- "end": 158.06,
- "text": "essential"
- },
- {
- "start": 158.02,
- "end": 158.32,
- "text": "ideas"
- },
- {
- "start": 158.32,
- "end": 158.46,
- "text": "of"
- },
- {
- "start": 158.42,
- "end": 158.58,
- "text": "this"
- },
- {
- "start": 158.58,
- "end": 158.82,
- "text": "book"
- },
- {
- "start": 159.32,
- "end": 159.5,
- "text": "is"
- },
- {
- "start": 159.52,
- "end": 159.68,
- "text": "that"
- },
- {
- "start": 160.08,
- "end": 160.38,
- "text": "you"
- },
- {
- "start": 160.36,
- "end": 160.56,
- "text": "can"
- },
- {
- "start": 160.54,
- "end": 160.98,
- "text": "change"
- },
- {
- "start": 160.94,
- "end": 161.18,
- "text": "the"
- },
- {
- "start": 161.16,
- "end": 161.68,
- "text": "purpose"
- },
- {
- "start": 161.64,
- "end": 161.82,
- "text": "of"
- },
- {
- "start": 161.82,
- "end": 162.24,
- "text": "things"
- },
- {
- "start": 162.22,
- "end": 162.7,
- "text": "by"
- },
- {
- "start": 162.68,
- "end": 163.32,
- "text": "inventing"
- },
- {
- "start": 163.3,
- "end": 163.5,
- "text": "it"
- },
- {
- "start": 163.72,
- "end": 163.9,
- "text": "now"
- },
- {
- "start": 163.98,
- "end": 164.42,
- "text": "than"
- },
- {
- "start": 164.38,
- "end": 164.84,
- "text": "hacking"
- },
- {
- "start": 164.82,
- "end": 165.02,
- "text": "to"
- },
- {
- "start": 164.98,
- "end": 165.24,
- "text": "things"
- },
- {
- "start": 165.44,
- "end": 166.08,
- "text": "and"
- },
- {
- "start": 166.04,
- "end": 166.42,
- "text": "changing"
- },
- {
- "start": 166.4,
- "end": 166.64,
- "text": "them."
- },
- {
- "start": 166.62,
- "end": 167.28,
- "text": "So"
- },
- {
- "start": 167.24,
- "end": 167.32,
- "text": "I"
- },
- {
- "start": 167.38,
- "end": 167.56,
- "text": "been"
- },
- {
- "start": 167.6,
- "end": 168.02,
- "text": "thinking"
- },
- {
- "start": 168.32,
- "end": 168.52,
- "text": "what"
- },
- {
- "start": 168.54,
- "end": 168.74,
- "text": "kind"
- },
- {
- "start": 168.72,
- "end": 168.86,
- "text": "of"
- },
- {
- "start": 168.84,
- "end": 169,
- "text": "the"
- },
- {
- "start": 169.1,
- "end": 169.56,
- "text": "nose"
- },
- {
- "start": 169.52,
- "end": 169.7,
- "text": "can"
- },
- {
- "start": 169.72,
- "end": 170.14,
- "text": "invent"
- },
- {
- "start": 170.46,
- "end": 170.56,
- "text": "so"
- },
- {
- "start": 171.44,
- "end": 171.64,
- "text": "they"
- },
- {
- "start": 171.64,
- "end": 171.8,
- "text": "can"
- },
- {
- "start": 172.16,
- "end": 172.44,
- "text": "hack"
- },
- {
- "start": 172.42,
- "end": 172.7,
- "text": "into"
- },
- {
- "start": 172.68,
- "end": 173.04,
- "text": "things"
- },
- {
- "start": 173.46,
- "end": 174.16,
- "text": "use"
- },
- {
- "start": 174.14,
- "end": 174.36,
- "text": "every"
- },
- {
- "start": 174.36,
- "end": 174.58,
- "text": "day"
- },
- {
- "start": 174.64,
- "end": 175.54,
- "text": "and"
- },
- {
- "start": 175.52,
- "end": 175.72,
- "text": "make"
- },
- {
- "start": 175.7,
- "end": 175.88,
- "text": "them"
- },
- {
- "start": 175.84,
- "end": 176.36,
- "text": "interactive."
- },
- {
- "start": 176.58,
- "end": 176.68,
- "text": "So"
- },
- {
- "start": 177.82,
- "end": 178.02,
- "text": "when"
- },
- {
- "start": 178,
- "end": 178.08,
- "text": "I"
- },
- {
- "start": 178.06,
- "end": 178.24,
- "text": "was"
- },
- {
- "start": 178.2,
- "end": 178.52,
- "text": "looking"
- },
- {
- "start": 178.48,
- "end": 178.62,
- "text": "at"
- },
- {
- "start": 178.58,
- "end": 179.14,
- "text": "dead"
- },
- {
- "start": 179.18,
- "end": 179.5,
- "text": "vented"
- },
- {
- "start": 179.54,
- "end": 179.96,
- "text": "sensor"
- },
- {
- "start": 180.24,
- "end": 180.54,
- "text": "which"
- },
- {
- "start": 180.5,
- "end": 181.02,
- "text": "injects"
- },
- {
- "start": 180.98,
- "end": 181.6,
- "text": "structure,"
- },
- {
- "start": 181.56,
- "end": 182.06,
- "text": "political"
- },
- {
- "start": 182.1,
- "end": 182.44,
- "text": "fields"
- },
- {
- "start": 182.44,
- "end": 182.72,
- "text": "into"
- },
- {
- "start": 182.7,
- "end": 183.14,
- "text": "objects"
- },
- {
- "start": 183.34,
- "end": 183.68,
- "text": "and"
- },
- {
- "start": 183.66,
- "end": 183.92,
- "text": "till"
- },
- {
- "start": 183.96,
- "end": 184.08,
- "text": "the"
- },
- {
- "start": 184.06,
- "end": 184.58,
- "text": "ingestion"
- },
- {
- "start": 184.56,
- "end": 184.74,
- "text": "to"
- },
- {
- "start": 184.74,
- "end": 185.08,
- "text": "faces."
- },
- {
- "start": 185.34,
- "end": 185.48,
- "text": "So"
- },
- {
- "start": 185.48,
- "end": 185.64,
- "text": "this"
- },
- {
- "start": 185.72,
- "end": 186.02,
- "text": "door"
- },
- {
- "start": 186,
- "end": 186.56,
- "text": "knob"
- },
- {
- "start": 186.54,
- "end": 187.28,
- "text": "unmodified"
- },
- {
- "start": 187.58,
- "end": 187.92,
- "text": "can"
- },
- {
- "start": 187.92,
- "end": 188.22,
- "text": "become"
- },
- {
- "start": 188.18,
- "end": 188.26,
- "text": "a"
- },
- {
- "start": 188.26,
- "end": 188.64,
- "text": "disco"
- },
- {
- "start": 188.62,
- "end": 189.02,
- "text": "sensors"
- },
- {
- "start": 189.1,
- "end": 189.3,
- "text": "can"
- },
- {
- "start": 189.26,
- "end": 189.42,
- "text": "know"
- },
- {
- "start": 189.4,
- "end": 189.66,
- "text": "how"
- },
- {
- "start": 189.64,
- "end": 189.82,
- "text": "you"
- },
- {
- "start": 189.8,
- "end": 190.16,
- "text": "touching"
- },
- {
- "start": 190.22,
- "end": 190.38,
- "text": "can"
- },
- {
- "start": 190.44,
- "end": 190.66,
- "text": "feel"
- },
- {
- "start": 190.72,
- "end": 190.82,
- "text": "it"
- },
- {
- "start": 191.48,
- "end": 191.68,
- "text": "in"
- },
- {
- "start": 191.8,
- "end": 191.96,
- "text": "a"
- },
- {
- "start": 192.02,
- "end": 192.36,
- "text": "circle."
- },
- {
- "start": 193.1,
- "end": 193.48,
- "text": "We"
- },
- {
- "start": 193.44,
- "end": 193.62,
- "text": "can"
- },
- {
- "start": 193.62,
- "end": 193.72,
- "text": "a"
- },
- {
- "start": 193.7,
- "end": 193.96,
- "text": "graph"
- },
- {
- "start": 194.48,
- "end": 195.5,
- "text": "and"
- },
- {
- "start": 195.46,
- "end": 195.64,
- "text": "this"
- },
- {
- "start": 195.62,
- "end": 196.08,
- "text": "loop"
- },
- {
- "start": 196.06,
- "end": 196.18,
- "text": "is"
- },
- {
- "start": 196.18,
- "end": 196.28,
- "text": "a"
- },
- {
- "start": 196.3,
- "end": 196.88,
- "text": "modified."
- },
- {
- "start": 196.86,
- "end": 197.2,
- "text": "There's"
- },
- {
- "start": 197.16,
- "end": 197.44,
- "text": "nothing"
- },
- {
- "start": 197.4,
- "end": 197.62,
- "text": "about"
- },
- {
- "start": 197.58,
- "end": 197.92,
- "text": "special"
- },
- {
- "start": 197.9,
- "end": 198.14,
- "text": "about"
- },
- {
- "start": 198.16,
- "end": 198.88,
- "text": "dooms"
- },
- {
- "start": 198.88,
- "end": 199.36,
- "text": "anything"
- },
- {
- "start": 199.32,
- "end": 199.5,
- "text": "can"
- },
- {
- "start": 199.5,
- "end": 199.8,
- "text": "become"
- },
- {
- "start": 199.76,
- "end": 200.32,
- "text": "interactive."
- },
- {
- "start": 200.52,
- "end": 200.88,
- "text": "What's"
- },
- {
- "start": 200.84,
- "end": 201.12,
- "text": "about"
- },
- {
- "start": 201.16,
- "end": 201.58,
- "text": "plants?"
- },
- {
- "start": 202.78,
- "end": 203.06,
- "text": "So"
- },
- {
- "start": 203.02,
- "end": 203.18,
- "text": "the"
- },
- {
- "start": 203.2,
- "end": 203.56,
- "text": "plants"
- },
- {
- "start": 203.56,
- "end": 203.72,
- "text": "are"
- },
- {
- "start": 203.68,
- "end": 204.14,
- "text": "interesting"
- },
- {
- "start": 204.12,
- "end": 204.44,
- "text": "because"
- },
- {
- "start": 204.4,
- "end": 204.6,
- "text": "with"
- },
- {
- "start": 204.6,
- "end": 204.9,
- "text": "plants"
- },
- {
- "start": 204.88,
- "end": 205.02,
- "text": "the"
- },
- {
- "start": 204.98,
- "end": 205.46,
- "text": "connection"
- },
- {
- "start": 205.44,
- "end": 205.66,
- "text": "know"
- },
- {
- "start": 205.74,
- "end": 205.96,
- "text": "where"
- },
- {
- "start": 205.92,
- "end": 206.16,
- "text": "you're"
- },
- {
- "start": 206.12,
- "end": 206.48,
- "text": "touching,"
- },
- {
- "start": 206.44,
- "end": 206.62,
- "text": "you"
- },
- {
- "start": 206.62,
- "end": 206.8,
- "text": "see"
- },
- {
- "start": 206.76,
- "end": 206.92,
- "text": "the"
- },
- {
- "start": 206.9,
- "end": 207.24,
- "text": "line"
- },
- {
- "start": 207.22,
- "end": 207.5,
- "text": "moving"
- },
- {
- "start": 207.46,
- "end": 207.64,
- "text": "up"
- },
- {
- "start": 207.62,
- "end": 207.8,
- "text": "and"
- },
- {
- "start": 207.78,
- "end": 207.98,
- "text": "down"
- },
- {
- "start": 208,
- "end": 208.16,
- "text": "on"
- },
- {
- "start": 208.14,
- "end": 208.28,
- "text": "the"
- },
- {
- "start": 208.24,
- "end": 208.56,
- "text": "image"
- },
- {
- "start": 208.8,
- "end": 209.4,
- "text": "and"
- },
- {
- "start": 209.36,
- "end": 209.54,
- "text": "that"
- },
- {
- "start": 209.54,
- "end": 209.76,
- "text": "in"
- },
- {
- "start": 209.78,
- "end": 210.06,
- "text": "turn"
- },
- {
- "start": 210.04,
- "end": 210.18,
- "text": "to"
- },
- {
- "start": 210.16,
- "end": 210.3,
- "text": "the"
- },
- {
- "start": 210.26,
- "end": 210.56,
- "text": "musical"
- },
- {
- "start": 210.52,
- "end": 210.94,
- "text": "interface."
- },
- {
- "start": 215.36,
- "end": 216.66,
- "text": "Now,"
- },
- {
- "start": 216.62,
- "end": 217.02,
- "text": "we"
- },
- {
- "start": 217,
- "end": 217.34,
- "text": "do"
- },
- {
- "start": 217.44,
- "end": 217.82,
- "text": "have"
- },
- {
- "start": 217.78,
- "end": 218.16,
- "text": "also"
- },
- {
- "start": 218.14,
- "end": 218.26,
- "text": "a"
- },
- {
- "start": 218.3,
- "end": 218.74,
- "text": "practical"
- },
- {
- "start": 218.72,
- "end": 219.28,
- "text": "applications,"
- },
- {
- "start": 219.56,
- "end": 219.64,
- "text": "a"
- },
- {
- "start": 219.9,
- "end": 220.44,
- "text": "calendar"
- },
- {
- "start": 220.4,
- "end": 221.36,
- "text": "plans"
- },
- {
- "start": 221.34,
- "end": 221.52,
- "text": "for"
- },
- {
- "start": 221.5,
- "end": 221.8,
- "text": "those"
- },
- {
- "start": 222.4,
- "end": 222.56,
- "text": "who"
- },
- {
- "start": 222.58,
- "end": 223.1,
- "text": "obsessed"
- },
- {
- "start": 223.08,
- "end": 223.38,
- "text": "about"
- },
- {
- "start": 223.4,
- "end": 224.06,
- "text": "partiality."
- },
- {
- "start": 227.38,
- "end": 227.48,
- "text": "We"
- },
- {
- "start": 228.22,
- "end": 228.42,
- "text": "can"
- },
- {
- "start": 228.4,
- "end": 228.8,
- "text": "give"
- },
- {
- "start": 228.76,
- "end": 230.48,
- "text": "seeing"
- },
- {
- "start": 230.46,
- "end": 230.62,
- "text": "a"
- },
- {
- "start": 230.6,
- "end": 231.32,
- "text": "personality."
- },
- {
- "start": 231.3,
- "end": 233.26,
- "text": "So"
- },
- {
- "start": 233.26,
- "end": 233.42,
- "text": "in"
- },
- {
- "start": 233.42,
- "end": 233.6,
- "text": "this"
- },
- {
- "start": 233.6,
- "end": 234.02,
- "text": "particular"
- },
- {
- "start": 233.98,
- "end": 234.46,
- "text": "example,"
- },
- {
- "start": 234.44,
- "end": 236.12,
- "text": "the"
- },
- {
- "start": 236.16,
- "end": 236.44,
- "text": "or"
- },
- {
- "start": 236.42,
- "end": 237.82,
- "text": "kids"
- },
- {
- "start": 237.8,
- "end": 237.98,
- "text": "can"
- },
- {
- "start": 238,
- "end": 238.56,
- "text": "communicate"
- },
- {
- "start": 238.56,
- "end": 238.74,
- "text": "to"
- },
- {
- "start": 238.72,
- "end": 238.86,
- "text": "you"
- },
- {
- "start": 238.96,
- "end": 239.24,
- "text": "through"
- },
- {
- "start": 239.26,
- "end": 239.72,
- "text": "images"
- },
- {
- "start": 240.84,
- "end": 241.04,
- "text": "and"
- },
- {
- "start": 241.08,
- "end": 241.46,
- "text": "sounds"
- },
- {
- "start": 242.26,
- "end": 242.42,
- "text": "it"
- },
- {
- "start": 242.4,
- "end": 242.72,
- "text": "doesn't"
- },
- {
- "start": 242.7,
- "end": 242.9,
- "text": "like"
- },
- {
- "start": 242.9,
- "end": 243.04,
- "text": "to"
- },
- {
- "start": 243.02,
- "end": 243.16,
- "text": "be"
- },
- {
- "start": 243.12,
- "end": 243.42,
- "text": "touched,"
- },
- {
- "start": 243.52,
- "end": 243.92,
- "text": "create"
- },
- {
- "start": 243.9,
- "end": 244.42,
- "text": "electrical,"
- },
- {
- "start": 244.42,
- "end": 244.78,
- "text": "usual"
- },
- {
- "start": 244.88,
- "end": 245.24,
- "text": "heating"
- },
- {
- "start": 245.2,
- "end": 245.38,
- "text": "as"
- },
- {
- "start": 245.36,
- "end": 245.48,
- "text": "you."
- },
- {
- "start": 248.3,
- "end": 248.86,
- "text": "We"
- },
- {
- "start": 248.84,
- "end": 249,
- "text": "can"
- },
- {
- "start": 248.98,
- "end": 249.22,
- "text": "also"
- },
- {
- "start": 249.22,
- "end": 249.38,
- "text": "give"
- },
- {
- "start": 249.34,
- "end": 249.88,
- "text": "this"
- },
- {
- "start": 249.92,
- "end": 250.22,
- "text": "man."
- },
- {
- "start": 250.18,
- "end": 250.34,
- "text": "For"
- },
- {
- "start": 250.3,
- "end": 250.74,
- "text": "example"
- },
- {
- "start": 250.8,
- "end": 251,
- "text": "is"
- },
- {
- "start": 252.08,
- "end": 252.28,
- "text": "is"
- },
- {
- "start": 252.26,
- "end": 252.46,
- "text": "more"
- },
- {
- "start": 252.44,
- "end": 252.58,
- "text": "a"
- },
- {
- "start": 252.56,
- "end": 252.82,
- "text": "bus"
- },
- {
- "start": 252.78,
- "end": 253.06,
- "text": "to"
- },
- {
- "start": 253.06,
- "end": 253.26,
- "text": "take"
- },
- {
- "start": 253.3,
- "end": 253.62,
- "text": "once"
- },
- {
- "start": 253.6,
- "end": 253.74,
- "text": "and"
- },
- {
- "start": 253.7,
- "end": 253.9,
- "text": "it's"
- },
- {
- "start": 253.88,
- "end": 254.12,
- "text": "like"
- },
- {
- "start": 254.12,
- "end": 254.5,
- "text": "playing"
- },
- {
- "start": 254.5,
- "end": 254.7,
- "text": "out"
- },
- {
- "start": 254.7,
- "end": 255.16,
- "text": "engages"
- },
- {
- "start": 255.2,
- "end": 255.36,
- "text": "you"
- },
- {
- "start": 256.12,
- "end": 256.28,
- "text": "so"
- },
- {
- "start": 256.28,
- "end": 256.84,
- "text": "everything"
- },
- {
- "start": 256.88,
- "end": 257.06,
- "text": "can"
- },
- {
- "start": 257.04,
- "end": 257.18,
- "text": "be"
- },
- {
- "start": 257.16,
- "end": 257.56,
- "text": "different"
- },
- {
- "start": 257.72,
- "end": 258.1,
- "text": "and"
- },
- {
- "start": 258.06,
- "end": 258.54,
- "text": "everything"
- },
- {
- "start": 258.52,
- "end": 258.72,
- "text": "can"
- },
- {
- "start": 258.8,
- "end": 258.94,
- "text": "be"
- },
- {
- "start": 259.02,
- "end": 260.42,
- "text": "represent"
- },
- {
- "start": 260.4,
- "end": 260.56,
- "text": "what"
- },
- {
- "start": 260.52,
- "end": 260.66,
- "text": "I"
- },
- {
- "start": 260.9,
- "end": 261.12,
- "text": "feel."
- },
- {
- "start": 261.42,
- "end": 261.52,
- "text": "So"
- },
- {
- "start": 262.98,
- "end": 263.84,
- "text": "everything"
- },
- {
- "start": 263.82,
- "end": 263.98,
- "text": "can"
- },
- {
- "start": 263.96,
- "end": 264.14,
- "text": "be"
- },
- {
- "start": 264.12,
- "end": 264.4,
- "text": "hacked"
- },
- {
- "start": 264.48,
- "end": 265,
- "text": "all"
- },
- {
- "start": 264.96,
- "end": 265.12,
- "text": "of"
- },
- {
- "start": 265.1,
- "end": 265.32,
- "text": "things"
- },
- {
- "start": 265.28,
- "end": 265.78,
- "text": "including"
- },
- {
- "start": 265.76,
- "end": 265.94,
- "text": "your"
- },
- {
- "start": 265.92,
- "end": 266.18,
- "text": "body."
- },
- {
- "start": 266.46,
- "end": 266.9,
- "text": "In"
- },
- {
- "start": 266.98,
- "end": 267.18,
- "text": "this"
- },
- {
- "start": 267.14,
- "end": 267.64,
- "text": "example,"
- },
- {
- "start": 267.6,
- "end": 267.74,
- "text": "we"
- },
- {
- "start": 267.78,
- "end": 268.42,
- "text": "have"
- },
- {
- "start": 268.42,
- "end": 268.92,
- "text": "your"
- },
- {
- "start": 268.92,
- "end": 269.2,
- "text": "body"
- },
- {
- "start": 269.16,
- "end": 269.36,
- "text": "so"
- },
- {
- "start": 269.36,
- "end": 269.5,
- "text": "you"
- },
- {
- "start": 269.5,
- "end": 269.66,
- "text": "can"
- },
- {
- "start": 269.66,
- "end": 270.02,
- "text": "measure"
- },
- {
- "start": 269.98,
- "end": 270.16,
- "text": "how"
- },
- {
- "start": 270.14,
- "end": 270.3,
- "text": "you"
- },
- {
- "start": 270.34,
- "end": 270.6,
- "text": "fold"
- },
- {
- "start": 270.58,
- "end": 270.72,
- "text": "in"
- },
- {
- "start": 270.7,
- "end": 270.9,
- "text": "your"
- },
- {
- "start": 270.88,
- "end": 271.18,
- "text": "hands"
- },
- {
- "start": 271.44,
- "end": 272,
- "text": "and"
- },
- {
- "start": 271.96,
- "end": 272.14,
- "text": "they"
- },
- {
- "start": 272.1,
- "end": 272.5,
- "text": "using"
- },
- {
- "start": 272.46,
- "end": 272.66,
- "text": "your"
- },
- {
- "start": 272.66,
- "end": 272.92,
- "text": "hand"
- },
- {
- "start": 272.94,
- "end": 273.3,
- "text": "jesus"
- },
- {
- "start": 273.28,
- "end": 273.42,
- "text": "to"
- },
- {
- "start": 273.4,
- "end": 273.82,
- "text": "control"
- },
- {
- "start": 273.84,
- "end": 274.2,
- "text": "something"
- },
- {
- "start": 274.16,
- "end": 274.36,
- "text": "else."
- },
- {
- "start": 274.34,
- "end": 274.48,
- "text": "So"
- },
- {
- "start": 274.46,
- "end": 274.6,
- "text": "if"
- },
- {
- "start": 274.56,
- "end": 274.7,
- "text": "you"
- },
- {
- "start": 274.68,
- "end": 274.88,
- "text": "don't"
- },
- {
- "start": 274.86,
- "end": 275.02,
- "text": "want"
- },
- {
- "start": 274.98,
- "end": 275.1,
- "text": "to"
- },
- {
- "start": 275.06,
- "end": 275.34,
- "text": "listen"
- },
- {
- "start": 275.3,
- "end": 275.46,
- "text": "to"
- },
- {
- "start": 275.44,
- "end": 275.7,
- "text": "music"
- },
- {
- "start": 275.9,
- "end": 276.48,
- "text": "for"
- },
- {
- "start": 276.46,
- "end": 276.94,
- "text": "thousands"
- },
- {
- "start": 276.9,
- "end": 277.06,
- "text": "of"
- },
- {
- "start": 277.02,
- "end": 277.3,
- "text": "time,"
- },
- {
- "start": 277.28,
- "end": 277.46,
- "text": "just"
- },
- {
- "start": 277.42,
- "end": 277.72,
- "text": "simply"
- },
- {
- "start": 277.68,
- "end": 277.88,
- "text": "can"
- },
- {
- "start": 277.94,
- "end": 278.22,
- "text": "cover"
- },
- {
- "start": 278.18,
- "end": 278.36,
- "text": "your"
- },
- {
- "start": 278.34,
- "end": 278.54,
- "text": "ears"
- },
- {
- "start": 278.9,
- "end": 279,
- "text": "to"
- },
- {
- "start": 279.62,
- "end": 279.92,
- "text": "turn"
- },
- {
- "start": 279.9,
- "end": 280.02,
- "text": "it"
- },
- {
- "start": 280,
- "end": 280.18,
- "text": "off."
- },
- {
- "start": 280.16,
- "end": 280.98,
- "text": "So"
- },
- {
- "start": 281.02,
- "end": 281.42,
- "text": "everything"
- },
- {
- "start": 281.38,
- "end": 281.54,
- "text": "can"
- },
- {
- "start": 281.62,
- "end": 281.72,
- "text": "be"
- },
- {
- "start": 281.7,
- "end": 281.98,
- "text": "hacked"
- },
- {
- "start": 282.28,
- "end": 282.46,
- "text": "and"
- },
- {
- "start": 282.42,
- "end": 282.82,
- "text": "research"
- },
- {
- "start": 282.78,
- "end": 282.92,
- "text": "is"
- },
- {
- "start": 282.9,
- "end": 283.34,
- "text": "important."
- },
- {
- "start": 283.8,
- "end": 284.1,
- "text": "But"
- },
- {
- "start": 284.06,
- "end": 284.36,
- "text": "the"
- },
- {
- "start": 284.42,
- "end": 284.74,
- "text": "second"
- },
- {
- "start": 284.72,
- "end": 285.08,
- "text": "one"
- },
- {
- "start": 285.04,
- "end": 285.16,
- "text": "we"
- },
- {
- "start": 285.2,
- "end": 285.5,
- "text": "have"
- },
- {
- "start": 286.02,
- "end": 286.26,
- "text": "is"
- },
- {
- "start": 286.76,
- "end": 286.94,
- "text": "how"
- },
- {
- "start": 286.94,
- "end": 287.12,
- "text": "can"
- },
- {
- "start": 287.12,
- "end": 287.24,
- "text": "we"
- },
- {
- "start": 287.26,
- "end": 287.38,
- "text": "go"
- },
- {
- "start": 287.54,
- "end": 287.76,
- "text": "from"
- },
- {
- "start": 287.78,
- "end": 288.88,
- "text": "rand"
- },
- {
- "start": 288.88,
- "end": 289.04,
- "text": "and"
- },
- {
- "start": 289.04,
- "end": 289.88,
- "text": "props"
- },
- {
- "start": 289.86,
- "end": 290.02,
- "text": "to"
- },
- {
- "start": 290,
- "end": 290.34,
- "text": "real"
- },
- {
- "start": 290.36,
- "end": 290.76,
- "text": "products."
- },
- {
- "start": 290.86,
- "end": 291.04,
- "text": "How"
- },
- {
- "start": 291.04,
- "end": 291.22,
- "text": "can"
- },
- {
- "start": 291.2,
- "end": 291.34,
- "text": "I"
- },
- {
- "start": 291.32,
- "end": 291.5,
- "text": "make"
- },
- {
- "start": 291.46,
- "end": 291.54,
- "text": "a"
- },
- {
- "start": 291.58,
- "end": 291.9,
- "text": "real"
- },
- {
- "start": 292.02,
- "end": 292.34,
- "text": "thing"
- },
- {
- "start": 292.62,
- "end": 293.4,
- "text": "that"
- },
- {
- "start": 293.38,
- "end": 293.58,
- "text": "are"
- },
- {
- "start": 293.56,
- "end": 293.92,
- "text": "also"
- },
- {
- "start": 293.94,
- "end": 294.46,
- "text": "interfaces"
- },
- {
- "start": 295.52,
- "end": 296.26,
- "text": "and"
- },
- {
- "start": 296.24,
- "end": 296.38,
- "text": "you"
- },
- {
- "start": 296.36,
- "end": 296.54,
- "text": "may"
- },
- {
- "start": 296.56,
- "end": 296.82,
- "text": "ask"
- },
- {
- "start": 296.8,
- "end": 297.18,
- "text": "yourself"
- },
- {
- "start": 297.48,
- "end": 297.66,
- "text": "who"
- },
- {
- "start": 297.66,
- "end": 297.86,
- "text": "do"
- },
- {
- "start": 297.84,
- "end": 298.14,
- "text": "this"
- },
- {
- "start": 298.4,
- "end": 299.1,
- "text": "cynical"
- },
- {
- "start": 299.16,
- "end": 299.42,
- "text": "valley"
- },
- {
- "start": 299.7,
- "end": 300.08,
- "text": "is"
- },
- {
- "start": 300.06,
- "end": 300.24,
- "text": "it"
- },
- {
- "start": 300.2,
- "end": 300.38,
- "text": "do"
- },
- {
- "start": 300.38,
- "end": 301.5,
- "text": "changing."
- },
- {
- "start": 301.48,
- "end": 301.64,
- "text": "Now."
- },
- {
- "start": 301.6,
- "end": 301.74,
- "text": "The"
- },
- {
- "start": 301.76,
- "end": 302.12,
- "text": "challenge"
- },
- {
- "start": 302.08,
- "end": 302.34,
- "text": "there"
- },
- {
- "start": 302.78,
- "end": 303.42,
- "text": "that"
- },
- {
- "start": 303.38,
- "end": 303.58,
- "text": "the"
- },
- {
- "start": 303.56,
- "end": 303.8,
- "text": "world"
- },
- {
- "start": 303.78,
- "end": 303.94,
- "text": "of"
- },
- {
- "start": 303.92,
- "end": 304.26,
- "text": "things"
- },
- {
- "start": 304.22,
- "end": 304.38,
- "text": "is"
- },
- {
- "start": 304.38,
- "end": 304.78,
- "text": "huge."
- },
- {
- "start": 304.74,
- "end": 306.16,
- "text": "Every"
- },
- {
- "start": 306.2,
- "end": 306.5,
- "text": "year"
- },
- {
- "start": 306.5,
- "end": 306.96,
- "text": "apparel"
- },
- {
- "start": 306.94,
- "end": 307.42,
- "text": "industry"
- },
- {
- "start": 307.38,
- "end": 307.74,
- "text": "places"
- },
- {
- "start": 307.74,
- "end": 308.12,
- "text": "hounded"
- },
- {
- "start": 308.2,
- "end": 308.56,
- "text": "fifty"
- },
- {
- "start": 308.64,
- "end": 309.06,
- "text": "billion,"
- },
- {
- "start": 309.12,
- "end": 309.52,
- "text": "garments"
- },
- {
- "start": 309.7,
- "end": 309.88,
- "text": "in"
- },
- {
- "start": 310.7,
- "end": 311.34,
- "text": "comparison"
- },
- {
- "start": 311.32,
- "end": 312.76,
- "text": "technology"
- },
- {
- "start": 312.74,
- "end": 313.08,
- "text": "to"
- },
- {
- "start": 313.06,
- "end": 313.24,
- "text": "see"
- },
- {
- "start": 313.22,
- "end": 313.52,
- "text": "only"
- },
- {
- "start": 313.54,
- "end": 313.82,
- "text": "makes"
- },
- {
- "start": 314.12,
- "end": 314.38,
- "text": "one"
- },
- {
- "start": 314.36,
- "end": 314.62,
- "text": "point"
- },
- {
- "start": 314.62,
- "end": 314.82,
- "text": "four"
- },
- {
- "start": 314.86,
- "end": 315.2,
- "text": "billion"
- },
- {
- "start": 315.22,
- "end": 315.54,
- "text": "phones."
- },
- {
- "start": 315.96,
- "end": 316.1,
- "text": "The"
- },
- {
- "start": 316.1,
- "end": 316.34,
- "text": "world"
- },
- {
- "start": 316.34,
- "end": 316.5,
- "text": "of"
- },
- {
- "start": 316.46,
- "end": 316.88,
- "text": "things"
- },
- {
- "start": 316.88,
- "end": 317.06,
- "text": "is"
- },
- {
- "start": 317.12,
- "end": 317.38,
- "text": "much"
- },
- {
- "start": 317.5,
- "end": 317.86,
- "text": "bigger."
- },
- {
- "start": 318.16,
- "end": 318.5,
- "text": "Then"
- },
- {
- "start": 318.46,
- "end": 318.66,
- "text": "the"
- },
- {
- "start": 318.62,
- "end": 318.88,
- "text": "world"
- },
- {
- "start": 318.86,
- "end": 319,
- "text": "of"
- },
- {
- "start": 318.98,
- "end": 319.48,
- "text": "technology"
- },
- {
- "start": 319.54,
- "end": 320.28,
- "text": "we"
- },
- {
- "start": 320.34,
- "end": 320.7,
- "text": "can"
- },
- {
- "start": 320.74,
- "end": 320.94,
- "text": "the"
- },
- {
- "start": 320.92,
- "end": 321.44,
- "text": "technology"
- },
- {
- "start": 321.48,
- "end": 321.78,
- "text": "world"
- },
- {
- "start": 321.78,
- "end": 322.22,
- "text": "cannot"
- },
- {
- "start": 322.26,
- "end": 322.54,
- "text": "change"
- },
- {
- "start": 322.52,
- "end": 322.68,
- "text": "the"
- },
- {
- "start": 322.66,
- "end": 322.88,
- "text": "world"
- },
- {
- "start": 322.84,
- "end": 323,
- "text": "of"
- },
- {
- "start": 323,
- "end": 323.28,
- "text": "things."
- },
- {
- "start": 323.5,
- "end": 324.12,
- "text": "Instead"
- },
- {
- "start": 324.12,
- "end": 324.8,
- "text": "we"
- },
- {
- "start": 324.86,
- "end": 325.08,
- "text": "need"
- },
- {
- "start": 325.04,
- "end": 325.14,
- "text": "to"
- },
- {
- "start": 325.12,
- "end": 325.38,
- "text": "create"
- },
- {
- "start": 325.34,
- "end": 325.48,
- "text": "you"
- },
- {
- "start": 325.46,
- "end": 325.96,
- "text": "chanology"
- },
- {
- "start": 326.5,
- "end": 326.84,
- "text": "which"
- },
- {
- "start": 326.86,
- "end": 327.18,
- "text": "change"
- },
- {
- "start": 327.62,
- "end": 328.02,
- "text": "makers"
- },
- {
- "start": 328.02,
- "end": 328.2,
- "text": "of"
- },
- {
- "start": 328.4,
- "end": 328.78,
- "text": "things."
- },
- {
- "start": 328.84,
- "end": 329.18,
- "text": "People"
- },
- {
- "start": 329.14,
- "end": 329.3,
- "text": "who"
- },
- {
- "start": 329.28,
- "end": 329.5,
- "text": "make"
- },
- {
- "start": 329.46,
- "end": 329.62,
- "text": "our"
- },
- {
- "start": 329.6,
- "end": 329.88,
- "text": "chairs"
- },
- {
- "start": 329.86,
- "end": 330.02,
- "text": "and"
- },
- {
- "start": 329.98,
- "end": 330.24,
- "text": "calls"
- },
- {
- "start": 330.22,
- "end": 330.34,
- "text": "and"
- },
- {
- "start": 330.3,
- "end": 330.62,
- "text": "everything"
- },
- {
- "start": 330.6,
- "end": 330.8,
- "text": "else."
- },
- {
- "start": 331.12,
- "end": 331.74,
- "text": "It's"
- },
- {
- "start": 331.7,
- "end": 331.78,
- "text": "a"
- },
- {
- "start": 331.82,
- "end": 332.26,
- "text": "makers"
- },
- {
- "start": 332.28,
- "end": 332.44,
- "text": "of"
- },
- {
- "start": 332.56,
- "end": 332.9,
- "text": "smart"
- },
- {
- "start": 332.94,
- "end": 333.26,
- "text": "things"
- },
- {
- "start": 333.7,
- "end": 334.32,
- "text": "enable"
- },
- {
- "start": 334.32,
- "end": 334.5,
- "text": "them"
- },
- {
- "start": 334.48,
- "end": 334.62,
- "text": "to"
- },
- {
- "start": 334.6,
- "end": 334.76,
- "text": "do"
- },
- {
- "start": 334.78,
- "end": 334.92,
- "text": "that."
- },
- {
- "start": 335.14,
- "end": 335.24,
- "text": "So"
- },
- {
- "start": 337.36,
- "end": 337.68,
- "text": "this"
- },
- {
- "start": 337.72,
- "end": 337.84,
- "text": "is"
- },
- {
- "start": 337.84,
- "end": 338.2,
- "text": "challenge."
- },
- {
- "start": 338.16,
- "end": 338.28,
- "text": "So"
- },
- {
- "start": 338.26,
- "end": 338.4,
- "text": "we"
- },
- {
- "start": 338.38,
- "end": 338.54,
- "text": "come"
- },
- {
- "start": 338.5,
- "end": 338.64,
- "text": "up"
- },
- {
- "start": 338.62,
- "end": 338.8,
- "text": "with"
- },
- {
- "start": 338.76,
- "end": 338.96,
- "text": "very"
- },
- {
- "start": 338.98,
- "end": 339.32,
- "text": "simple"
- },
- {
- "start": 339.42,
- "end": 339.62,
- "text": "kind"
- },
- {
- "start": 339.62,
- "end": 339.7,
- "text": "of"
- },
- {
- "start": 339.9,
- "end": 340.92,
- "text": "idea"
- },
- {
- "start": 340.88,
- "end": 341.26,
- "text": "and"
- },
- {
- "start": 341.22,
- "end": 341.64,
- "text": "challenge"
- },
- {
- "start": 341.62,
- "end": 342.88,
- "text": "in"
- },
- {
- "start": 343.36,
- "end": 343.52,
- "text": "a"
- },
- {
- "start": 343.54,
- "end": 343.88,
- "text": "taylor"
- },
- {
- "start": 344.34,
- "end": 344.94,
- "text": "make"
- },
- {
- "start": 344.9,
- "end": 345.18,
- "text": "a"
- },
- {
- "start": 345.24,
- "end": 345.7,
- "text": "variable."
- },
- {
- "start": 346.6,
- "end": 346.76,
- "text": "Now"
- },
- {
- "start": 346.72,
- "end": 346.86,
- "text": "we"
- },
- {
- "start": 346.86,
- "end": 347.1,
- "text": "don't"
- },
- {
- "start": 347.08,
- "end": 347.3,
- "text": "want"
- },
- {
- "start": 347.26,
- "end": 347.42,
- "text": "to"
- },
- {
- "start": 347.38,
- "end": 347.66,
- "text": "take"
- },
- {
- "start": 347.62,
- "end": 347.7,
- "text": "a"
- },
- {
- "start": 347.72,
- "end": 348.1,
- "text": "tailor"
- },
- {
- "start": 348.2,
- "end": 348.38,
- "text": "and"
- },
- {
- "start": 348.34,
- "end": 348.64,
- "text": "turn"
- },
- {
- "start": 348.64,
- "end": 348.8,
- "text": "the"
- },
- {
- "start": 348.78,
- "end": 349.04,
- "text": "tail"
- },
- {
- "start": 349.04,
- "end": 349.16,
- "text": "in"
- },
- {
- "start": 349.16,
- "end": 349.58,
- "text": "political"
- },
- {
- "start": 349.54,
- "end": 349.96,
- "text": "engineer."
- },
- {
- "start": 350.32,
- "end": 351.16,
- "text": "We"
- },
- {
- "start": 351.22,
- "end": 351.46,
- "text": "don't."
- },
- {
- "start": 351.42,
- "end": 351.52,
- "text": "We"
- },
- {
- "start": 351.62,
- "end": 351.84,
- "text": "still"
- },
- {
- "start": 351.84,
- "end": 352.02,
- "text": "want"
- },
- {
- "start": 351.98,
- "end": 352.1,
- "text": "to"
- },
- {
- "start": 352.06,
- "end": 352.24,
- "text": "have"
- },
- {
- "start": 352.2,
- "end": 352.4,
- "text": "some"
- },
- {
- "start": 352.38,
- "end": 352.7,
- "text": "balls"
- },
- {
- "start": 352.68,
- "end": 352.94,
- "text": "around"
- },
- {
- "start": 353.32,
- "end": 354.3,
- "text": "but"
- },
- {
- "start": 354.26,
- "end": 354.44,
- "text": "we"
- },
- {
- "start": 354.4,
- "end": 354.7,
- "text": "would"
- },
- {
- "start": 354.66,
- "end": 354.9,
- "text": "like"
- },
- {
- "start": 354.86,
- "end": 355,
- "text": "to"
- },
- {
- "start": 354.98,
- "end": 355.14,
- "text": "do"
- },
- {
- "start": 355.12,
- "end": 355.48,
- "text": "create"
- },
- {
- "start": 355.46,
- "end": 356.4,
- "text": "technology"
- },
- {
- "start": 356.38,
- "end": 356.58,
- "text": "which"
- },
- {
- "start": 356.66,
- "end": 356.94,
- "text": "looks"
- },
- {
- "start": 357.38,
- "end": 358.1,
- "text": "feels"
- },
- {
- "start": 358.06,
- "end": 358.26,
- "text": "and"
- },
- {
- "start": 358.28,
- "end": 358.9,
- "text": "behaves"
- },
- {
- "start": 359.4,
- "end": 359.58,
- "text": "like"
- },
- {
- "start": 359.54,
- "end": 359.68,
- "text": "a"
- },
- {
- "start": 359.7,
- "end": 359.94,
- "text": "raw"
- },
- {
- "start": 359.9,
- "end": 360.46,
- "text": "material"
- },
- {
- "start": 360.56,
- "end": 360.86,
- "text": "used"
- },
- {
- "start": 360.86,
- "end": 361,
- "text": "by"
- },
- {
- "start": 360.98,
- "end": 361.14,
- "text": "the"
- },
- {
- "start": 361.1,
- "end": 361.58,
- "text": "tailor"
- },
- {
- "start": 361.86,
- "end": 361.96,
- "text": "to"
- },
- {
- "start": 362.58,
- "end": 362.94,
- "text": "make"
- },
- {
- "start": 362.94,
- "end": 364.22,
- "text": "their"
- },
- {
- "start": 364.26,
- "end": 364.58,
- "text": "close."
- },
- {
- "start": 365.02,
- "end": 366.9,
- "text": "For"
- },
- {
- "start": 366.88,
- "end": 367.3,
- "text": "example,"
- },
- {
- "start": 367.28,
- "end": 367.74,
- "text": "attach"
- },
- {
- "start": 367.8,
- "end": 368.14,
- "text": "panel"
- },
- {
- "start": 368.12,
- "end": 368.4,
- "text": "made"
- },
- {
- "start": 368.4,
- "end": 368.58,
- "text": "for"
- },
- {
- "start": 368.56,
- "end": 369.12,
- "text": "taylor"
- },
- {
- "start": 369.42,
- "end": 369.64,
- "text": "with"
- },
- {
- "start": 369.66,
- "end": 370.16,
- "text": "luke"
- },
- {
- "start": 370.14,
- "end": 370.34,
- "text": "like"
- },
- {
- "start": 370.34,
- "end": 370.56,
- "text": "this"
- },
- {
- "start": 370.96,
- "end": 371.18,
- "text": "made"
- },
- {
- "start": 371.16,
- "end": 371.32,
- "text": "of"
- },
- {
- "start": 371.32,
- "end": 371.58,
- "text": "six"
- },
- {
- "start": 371.56,
- "end": 371.86,
- "text": "style."
- },
- {
- "start": 371.84,
- "end": 372.08,
- "text": "They"
- },
- {
- "start": 372.04,
- "end": 372.2,
- "text": "can"
- },
- {
- "start": 372.28,
- "end": 372.5,
- "text": "cut"
- },
- {
- "start": 372.48,
- "end": 372.6,
- "text": "it"
- },
- {
- "start": 372.64,
- "end": 372.8,
- "text": "with"
- },
- {
- "start": 372.78,
- "end": 373.12,
- "text": "seasons"
- },
- {
- "start": 373.32,
- "end": 373.72,
- "text": "and"
- },
- {
- "start": 373.68,
- "end": 373.94,
- "text": "so"
- },
- {
- "start": 373.92,
- "end": 374.12,
- "text": "it"
- },
- {
- "start": 374.08,
- "end": 374.28,
- "text": "in"
- },
- {
- "start": 375.52,
- "end": 375.7,
- "text": "at"
- },
- {
- "start": 375.68,
- "end": 375.82,
- "text": "the"
- },
- {
- "start": 375.8,
- "end": 376.06,
- "text": "same"
- },
- {
- "start": 376.02,
- "end": 376.22,
- "text": "time"
- },
- {
- "start": 376.18,
- "end": 376.38,
- "text": "has"
- },
- {
- "start": 376.34,
- "end": 376.48,
- "text": "to"
- },
- {
- "start": 376.44,
- "end": 376.76,
- "text": "retain"
- },
- {
- "start": 376.74,
- "end": 376.88,
- "text": "the"
- },
- {
- "start": 376.84,
- "end": 377.36,
- "text": "performance"
- },
- {
- "start": 377.82,
- "end": 377.96,
- "text": "the"
- },
- {
- "start": 377.94,
- "end": 378.1,
- "text": "way"
- },
- {
- "start": 378.12,
- "end": 378.26,
- "text": "to"
- },
- {
- "start": 378.32,
- "end": 378.6,
- "text": "make"
- },
- {
- "start": 378.6,
- "end": 378.76,
- "text": "this"
- },
- {
- "start": 378.78,
- "end": 379.26,
- "text": "text"
- },
- {
- "start": 379.26,
- "end": 379.56,
- "text": "panel"
- },
- {
- "start": 379.76,
- "end": 380.14,
- "text": "touch"
- },
- {
- "start": 380.12,
- "end": 380.4,
- "text": "panel."
- },
- {
- "start": 380.68,
- "end": 381.04,
- "text": "Also,"
- },
- {
- "start": 381,
- "end": 381.16,
- "text": "the"
- },
- {
- "start": 381.12,
- "end": 381.34,
- "text": "core,"
- },
- {
- "start": 381.3,
- "end": 381.42,
- "text": "a"
- },
- {
- "start": 381.4,
- "end": 381.6,
- "text": "very"
- },
- {
- "start": 381.58,
- "end": 381.92,
- "text": "different"
- },
- {
- "start": 381.88,
- "end": 382.32,
- "text": "approach"
- },
- {
- "start": 382.3,
- "end": 382.48,
- "text": "in"
- },
- {
- "start": 382.48,
- "end": 382.66,
- "text": "from"
- },
- {
- "start": 382.66,
- "end": 382.94,
- "text": "making"
- },
- {
- "start": 382.9,
- "end": 383.38,
- "text": "consumedly"
- },
- {
- "start": 383.36,
- "end": 383.66,
- "text": "tronics."
- },
- {
- "start": 383.84,
- "end": 384.5,
- "text": "In"
- },
- {
- "start": 384.5,
- "end": 384.7,
- "text": "our"
- },
- {
- "start": 384.8,
- "end": 385.06,
- "text": "case,"
- },
- {
- "start": 385.1,
- "end": 385.22,
- "text": "we"
- },
- {
- "start": 385.24,
- "end": 385.42,
- "text": "had"
- },
- {
- "start": 385.4,
- "end": 385.52,
- "text": "to"
- },
- {
- "start": 385.54,
- "end": 385.68,
- "text": "go"
- },
- {
- "start": 385.66,
- "end": 385.84,
- "text": "to"
- },
- {
- "start": 385.9,
- "end": 386.34,
- "text": "mountains"
- },
- {
- "start": 386.3,
- "end": 386.46,
- "text": "of"
- },
- {
- "start": 386.42,
- "end": 386.56,
- "text": "to"
- },
- {
- "start": 387.08,
- "end": 388.1,
- "text": "to"
- },
- {
- "start": 388.18,
- "end": 388.56,
- "text": "small"
- },
- {
- "start": 388.58,
- "end": 388.98,
- "text": "factory"
- },
- {
- "start": 388.98,
- "end": 389.18,
- "text": "which"
- },
- {
- "start": 389.14,
- "end": 389.3,
- "text": "is"
- },
- {
- "start": 389.32,
- "end": 389.62,
- "text": "making"
- },
- {
- "start": 389.58,
- "end": 389.78,
- "text": "him"
- },
- {
- "start": 389.8,
- "end": 390.08,
- "text": "one"
- },
- {
- "start": 390.08,
- "end": 390.32,
- "text": "and"
- },
- {
- "start": 390.3,
- "end": 390.44,
- "text": "for"
- },
- {
- "start": 390.42,
- "end": 390.96,
- "text": "generations."
- },
- {
- "start": 391.2,
- "end": 391.3,
- "text": "We"
- },
- {
- "start": 391.8,
- "end": 392.24,
- "text": "worked"
- },
- {
- "start": 392.3,
- "end": 392.9,
- "text": "with"
- },
- {
- "start": 392.86,
- "end": 393,
- "text": "my"
- },
- {
- "start": 392.98,
- "end": 393.66,
- "text": "collaborators,"
- },
- {
- "start": 393.62,
- "end": 394.38,
- "text": "who"
- },
- {
- "start": 394.36,
- "end": 394.64,
- "text": "were"
- },
- {
- "start": 394.66,
- "end": 394.88,
- "text": "not"
- },
- {
- "start": 394.86,
- "end": 395.5,
- "text": "engineers."
- },
- {
- "start": 395.84,
- "end": 396.08,
- "text": "It"
- },
- {
- "start": 396.86,
- "end": 397.06,
- "text": "was"
- },
- {
- "start": 397.04,
- "end": 397.18,
- "text": "an"
- },
- {
- "start": 397.16,
- "end": 397.6,
- "text": "artist"
- },
- {
- "start": 397.8,
- "end": 397.96,
- "text": "who"
- },
- {
- "start": 398.02,
- "end": 398.3,
- "text": "knows"
- },
- {
- "start": 398.32,
- "end": 398.56,
- "text": "how"
- },
- {
- "start": 398.54,
- "end": 398.72,
- "text": "to"
- },
- {
- "start": 398.7,
- "end": 399.02,
- "text": "make"
- },
- {
- "start": 398.98,
- "end": 399.34,
- "text": "things"
- },
- {
- "start": 399.56,
- "end": 400.34,
- "text": "and"
- },
- {
- "start": 400.3,
- "end": 400.46,
- "text": "an"
- },
- {
- "start": 400.44,
- "end": 400.84,
- "text": "artist."
- },
- {
- "start": 400.82,
- "end": 401.88,
- "text": "But"
- },
- {
- "start": 401.86,
- "end": 402.16,
- "text": "also"
- },
- {
- "start": 402.24,
- "end": 402.38,
- "text": "to"
- },
- {
- "start": 402.38,
- "end": 402.56,
- "text": "make"
- },
- {
- "start": 402.52,
- "end": 402.76,
- "text": "things"
- },
- {
- "start": 402.76,
- "end": 403.18,
- "text": "beautiful"
- },
- {
- "start": 403.52,
- "end": 404.48,
- "text": "working"
- },
- {
- "start": 404.44,
- "end": 404.64,
- "text": "with"
- },
- {
- "start": 404.6,
- "end": 404.84,
- "text": "them."
- },
- {
- "start": 404.88,
- "end": 405.06,
- "text": "But"
- },
- {
- "start": 405.04,
- "end": 405.32,
- "text": "treat"
- },
- {
- "start": 405.32,
- "end": 405.5,
- "text": "is"
- },
- {
- "start": 405.5,
- "end": 405.66,
- "text": "one"
- },
- {
- "start": 405.64,
- "end": 405.76,
- "text": "of"
- },
- {
- "start": 405.76,
- "end": 405.92,
- "text": "the"
- },
- {
- "start": 405.96,
- "end": 406.18,
- "text": "best"
- },
- {
- "start": 406.56,
- "end": 407.54,
- "text": "young"
- },
- {
- "start": 407.6,
- "end": 407.74,
- "text": "in"
- },
- {
- "start": 407.74,
- "end": 407.88,
- "text": "the"
- },
- {
- "start": 407.88,
- "end": 408.2,
- "text": "world"
- },
- {
- "start": 409.02,
- "end": 409.24,
- "text": "which"
- },
- {
- "start": 409.2,
- "end": 409.36,
- "text": "is"
- },
- {
- "start": 409.38,
- "end": 409.88,
- "text": "consists"
- },
- {
- "start": 409.88,
- "end": 410.12,
- "text": "of"
- },
- {
- "start": 410.12,
- "end": 410.4,
- "text": "the"
- },
- {
- "start": 410.38,
- "end": 410.82,
- "text": "metallic"
- },
- {
- "start": 410.82,
- "end": 411.62,
- "text": "alloys"
- },
- {
- "start": 411.6,
- "end": 411.94,
- "text": "wrapped"
- },
- {
- "start": 411.9,
- "end": 412.3,
- "text": "around"
- },
- {
- "start": 412.28,
- "end": 412.48,
- "text": "with"
- },
- {
- "start": 412.48,
- "end": 412.86,
- "text": "police,"
- },
- {
- "start": 412.88,
- "end": 413.24,
- "text": "fire"
- },
- {
- "start": 413.48,
- "end": 413.88,
- "text": "cousin"
- },
- {
- "start": 413.88,
- "end": 414.22,
- "text": "fibers"
- },
- {
- "start": 414.48,
- "end": 414.98,
- "text": "this"
- },
- {
- "start": 414.98,
- "end": 415.24,
- "text": "you"
- },
- {
- "start": 415.46,
- "end": 415.68,
- "text": "were"
- },
- {
- "start": 415.66,
- "end": 415.88,
- "text": "made"
- },
- {
- "start": 415.84,
- "end": 416,
- "text": "in"
- },
- {
- "start": 415.98,
- "end": 416.12,
- "text": "the"
- },
- {
- "start": 416.14,
- "end": 416.42,
- "text": "same"
- },
- {
- "start": 416.4,
- "end": 416.94,
- "text": "machines"
- },
- {
- "start": 417.18,
- "end": 417.38,
- "text": "which"
- },
- {
- "start": 417.36,
- "end": 417.5,
- "text": "you"
- },
- {
- "start": 417.52,
- "end": 417.7,
- "text": "are"
- },
- {
- "start": 417.68,
- "end": 418.06,
- "text": "making"
- },
- {
- "start": 418.36,
- "end": 418.84,
- "text": "your"
- },
- {
- "start": 418.84,
- "end": 419.66,
- "text": "portions"
- },
- {
- "start": 419.64,
- "end": 419.78,
- "text": "for"
- },
- {
- "start": 419.76,
- "end": 420.38,
- "text": "generations"
- },
- {
- "start": 421.28,
- "end": 421.6,
- "text": "within"
- },
- {
- "start": 421.6,
- "end": 421.74,
- "text": "to"
- },
- {
- "start": 421.78,
- "end": 421.94,
- "text": "this"
- },
- {
- "start": 421.96,
- "end": 422.32,
- "text": "yards"
- },
- {
- "start": 422.32,
- "end": 422.46,
- "text": "and"
- },
- {
- "start": 422.46,
- "end": 422.72,
- "text": "give"
- },
- {
- "start": 422.72,
- "end": 422.88,
- "text": "them"
- },
- {
- "start": 422.86,
- "end": 423.02,
- "text": "to"
- },
- {
- "start": 423.02,
- "end": 423.18,
- "text": "the"
- },
- {
- "start": 423.14,
- "end": 423.62,
- "text": "factory"
- },
- {
- "start": 423.58,
- "end": 423.76,
- "text": "which"
- },
- {
- "start": 423.74,
- "end": 423.9,
- "text": "is"
- },
- {
- "start": 424.3,
- "end": 424.76,
- "text": "making"
- },
- {
- "start": 424.74,
- "end": 425.04,
- "text": "making"
- },
- {
- "start": 425.02,
- "end": 425.56,
- "text": "textiles."
- },
- {
- "start": 425.84,
- "end": 426,
- "text": "And"
- },
- {
- "start": 425.98,
- "end": 426.12,
- "text": "we"
- },
- {
- "start": 426.16,
- "end": 426.52,
- "text": "wore"
- },
- {
- "start": 426.54,
- "end": 426.88,
- "text": "our"
- },
- {
- "start": 426.84,
- "end": 427.12,
- "text": "smart"
- },
- {
- "start": 427.12,
- "end": 427.64,
- "text": "textiles"
- },
- {
- "start": 427.76,
- "end": 427.9,
- "text": "in"
- },
- {
- "start": 427.88,
- "end": 428.22,
- "text": "regular"
- },
- {
- "start": 428.2,
- "end": 428.58,
- "text": "machines"
- },
- {
- "start": 429.02,
- "end": 429.12,
- "text": "in"
- },
- {
- "start": 429.42,
- "end": 429.52,
- "text": "a"
- },
- {
- "start": 429.5,
- "end": 429.98,
- "text": "variety"
- },
- {
- "start": 429.96,
- "end": 430.1,
- "text": "of"
- },
- {
- "start": 430.08,
- "end": 430.52,
- "text": "colors"
- },
- {
- "start": 430.5,
- "end": 430.66,
- "text": "and"
- },
- {
- "start": 430.64,
- "end": 431.16,
- "text": "materials"
- },
- {
- "start": 431.18,
- "end": 431.36,
- "text": "and"
- },
- {
- "start": 431.34,
- "end": 431.46,
- "text": "we"
- },
- {
- "start": 431.5,
- "end": 431.78,
- "text": "gave"
- },
- {
- "start": 431.76,
- "end": 432.1,
- "text": "those"
- },
- {
- "start": 432.08,
- "end": 432.48,
- "text": "sixty"
- },
- {
- "start": 432.88,
- "end": 432.98,
- "text": "to"
- },
- {
- "start": 433.5,
- "end": 434.04,
- "text": "tailor"
- },
- {
- "start": 434.32,
- "end": 434.52,
- "text": "and"
- },
- {
- "start": 434.5,
- "end": 434.94,
- "text": "several"
- },
- {
- "start": 435.58,
- "end": 435.74,
- "text": "in"
- },
- {
- "start": 435.74,
- "end": 436.08,
- "text": "london."
- },
- {
- "start": 436.36,
- "end": 438.14,
- "text": "The"
- },
- {
- "start": 438.1,
- "end": 438.64,
- "text": "tales"
- },
- {
- "start": 438.62,
- "end": 438.76,
- "text": "that"
- },
- {
- "start": 438.74,
- "end": 439.6,
- "text": "traditionalists"
- },
- {
- "start": 439.58,
- "end": 440.04,
- "text": "particular"
- },
- {
- "start": 440,
- "end": 440.16,
- "text": "and"
- },
- {
- "start": 440.12,
- "end": 440.44,
- "text": "sell"
- },
- {
- "start": 440.42,
- "end": 440.96,
- "text": "raw"
- },
- {
- "start": 440.94,
- "end": 441.14,
- "text": "that"
- },
- {
- "start": 441.1,
- "end": 441.36,
- "text": "don't"
- },
- {
- "start": 441.32,
- "end": 441.54,
- "text": "use"
- },
- {
- "start": 441.52,
- "end": 441.94,
- "text": "computers."
- },
- {
- "start": 442.24,
- "end": 443.26,
- "text": "They"
- },
- {
- "start": 443.26,
- "end": 443.56,
- "text": "don't"
- },
- {
- "start": 443.62,
- "end": 443.94,
- "text": "use"
- },
- {
- "start": 444.08,
- "end": 445.22,
- "text": "machines,"
- },
- {
- "start": 445.6,
- "end": 445.92,
- "text": "they"
- },
- {
- "start": 445.88,
- "end": 446.1,
- "text": "use"
- },
- {
- "start": 446.16,
- "end": 446.52,
- "text": "hands"
- },
- {
- "start": 446.52,
- "end": 446.68,
- "text": "and"
- },
- {
- "start": 446.64,
- "end": 446.78,
- "text": "the"
- },
- {
- "start": 446.84,
- "end": 447.14,
- "text": "cut"
- },
- {
- "start": 447.56,
- "end": 447.72,
- "text": "the"
- },
- {
- "start": 447.78,
- "end": 448.08,
- "text": "feed"
- },
- {
- "start": 448.06,
- "end": 448.26,
- "text": "their"
- },
- {
- "start": 448.22,
- "end": 448.6,
- "text": "products"
- },
- {
- "start": 448.58,
- "end": 448.74,
- "text": "on"
- },
- {
- "start": 448.72,
- "end": 448.86,
- "text": "the"
- },
- {
- "start": 448.84,
- "end": 449.18,
- "text": "human"
- },
- {
- "start": 449.24,
- "end": 449.62,
- "text": "body."
- },
- {
- "start": 449.6,
- "end": 449.92,
- "text": "Not"
- },
- {
- "start": 449.94,
- "end": 450.5,
- "text": "only"
- },
- {
- "start": 450.5,
- "end": 450.96,
- "text": "avatars."
- },
- {
- "start": 451.16,
- "end": 453.62,
- "text": "Technology"
- },
- {
- "start": 453.6,
- "end": 453.72,
- "text": "is"
- },
- {
- "start": 453.78,
- "end": 453.98,
- "text": "not"
- },
- {
- "start": 453.94,
- "end": 454.08,
- "text": "a"
- },
- {
- "start": 454.08,
- "end": 454.32,
- "text": "part"
- },
- {
- "start": 454.3,
- "end": 454.42,
- "text": "of"
- },
- {
- "start": 454.4,
- "end": 454.6,
- "text": "the"
- },
- {
- "start": 454.58,
- "end": 455.2,
- "text": "vocabulary"
- },
- {
- "start": 455.18,
- "end": 455.4,
- "text": "but"
- },
- {
- "start": 455.36,
- "end": 455.66,
- "text": "they"
- },
- {
- "start": 455.74,
- "end": 456.06,
- "text": "are"
- },
- {
- "start": 456.36,
- "end": 456.6,
- "text": "more"
- },
- {
- "start": 456.56,
- "end": 456.72,
- "text": "than"
- },
- {
- "start": 456.82,
- "end": 457.12,
- "text": "people"
- },
- {
- "start": 457.14,
- "end": 457.32,
- "text": "they"
- },
- {
- "start": 457.4,
- "end": 457.64,
- "text": "know"
- },
- {
- "start": 457.7,
- "end": 457.88,
- "text": "how"
- },
- {
- "start": 457.86,
- "end": 458.02,
- "text": "to"
- },
- {
- "start": 457.98,
- "end": 458.18,
- "text": "use"
- },
- {
- "start": 458.14,
- "end": 458.7,
- "text": "technology"
- },
- {
- "start": 459.06,
- "end": 459.3,
- "text": "so"
- },
- {
- "start": 459.36,
- "end": 459.54,
- "text": "you"
- },
- {
- "start": 459.56,
- "end": 459.78,
- "text": "pick"
- },
- {
- "start": 459.84,
- "end": 460,
- "text": "no,"
- },
- {
- "start": 460.04,
- "end": 460.32,
- "text": "you"
- },
- {
- "start": 460.28,
- "end": 460.44,
- "text": "can"
- },
- {
- "start": 460.48,
- "end": 460.6,
- "text": "be"
- },
- {
- "start": 460.66,
- "end": 461.1,
- "text": "formed"
- },
- {
- "start": 461.1,
- "end": 461.32,
- "text": "and"
- },
- {
- "start": 461.32,
- "end": 461.64,
- "text": "shaped"
- },
- {
- "start": 461.6,
- "end": 461.78,
- "text": "like"
- },
- {
- "start": 461.74,
- "end": 461.86,
- "text": "a"
- },
- {
- "start": 461.88,
- "end": 462.26,
- "text": "button"
- },
- {
- "start": 462.28,
- "end": 462.46,
- "text": "like"
- },
- {
- "start": 462.42,
- "end": 462.54,
- "text": "a"
- },
- {
- "start": 462.54,
- "end": 463.04,
- "text": "total"
- },
- {
- "start": 463.02,
- "end": 463.18,
- "text": "like"
- },
- {
- "start": 463.14,
- "end": 463.56,
- "text": "staffing."
- },
- {
- "start": 463.52,
- "end": 463.68,
- "text": "They"
- },
- {
- "start": 463.64,
- "end": 463.82,
- "text": "can"
- },
- {
- "start": 463.84,
- "end": 464.04,
- "text": "use."
- },
- {
- "start": 464.24,
- "end": 465.16,
- "text": "They"
- },
- {
- "start": 465.14,
- "end": 465.9,
- "text": "absolutely"
- },
- {
- "start": 465.92,
- "end": 466.14,
- "text": "can"
- },
- {
- "start": 466.2,
- "end": 466.44,
- "text": "make"
- },
- {
- "start": 466.42,
- "end": 466.5,
- "text": "a"
- },
- {
- "start": 466.52,
- "end": 466.92,
- "text": "wearable"
- },
- {
- "start": 467.24,
- "end": 467.32,
- "text": "a"
- },
- {
- "start": 467.68,
- "end": 468.1,
- "text": "garment"
- },
- {
- "start": 468.08,
- "end": 469.36,
- "text": "which"
- },
- {
- "start": 469.32,
- "end": 469.48,
- "text": "can"
- },
- {
- "start": 469.48,
- "end": 469.74,
- "text": "place"
- },
- {
- "start": 469.7,
- "end": 469.78,
- "text": "a"
- },
- {
- "start": 469.84,
- "end": 470.08,
- "text": "phone"
- },
- {
- "start": 470.06,
- "end": 470.26,
- "text": "call."
- },
- {
- "start": 470.58,
- "end": 470.68,
- "text": "So"
- },
- {
- "start": 473.7,
- "end": 473.88,
- "text": "now"
- },
- {
- "start": 473.84,
- "end": 474.14,
- "text": "we've"
- },
- {
- "start": 474.1,
- "end": 474.46,
- "text": "proven"
- },
- {
- "start": 474.42,
- "end": 474.6,
- "text": "that"
- },
- {
- "start": 474.56,
- "end": 474.74,
- "text": "you"
- },
- {
- "start": 474.72,
- "end": 474.88,
- "text": "can"
- },
- {
- "start": 474.84,
- "end": 475.16,
- "text": "actually"
- },
- {
- "start": 475.14,
- "end": 475.46,
- "text": "make"
- },
- {
- "start": 475.42,
- "end": 475.5,
- "text": "a"
- },
- {
- "start": 475.54,
- "end": 475.96,
- "text": "wearable"
- },
- {
- "start": 475.94,
- "end": 476.86,
- "text": "by"
- },
- {
- "start": 476.84,
- "end": 476.96,
- "text": "the"
- },
- {
- "start": 477.44,
- "end": 477.68,
- "text": "by"
- },
- {
- "start": 477.68,
- "end": 477.8,
- "text": "the"
- },
- {
- "start": 477.78,
- "end": 478.1,
- "text": "tiny"
- },
- {
- "start": 478.06,
- "end": 478.44,
- "text": "company."
- },
- {
- "start": 478.48,
- "end": 478.66,
- "text": "But"
- },
- {
- "start": 479.04,
- "end": 479.16,
- "text": "by"
- },
- {
- "start": 479.6,
- "end": 479.82,
- "text": "by"
- },
- {
- "start": 479.8,
- "end": 479.96,
- "text": "the"
- },
- {
- "start": 479.92,
- "end": 480.32,
- "text": "tailor"
- },
- {
- "start": 480.94,
- "end": 481.08,
- "text": "we"
- },
- {
- "start": 481.2,
- "end": 481.52,
- "text": "worked"
- },
- {
- "start": 481.7,
- "end": 482.04,
- "text": "with"
- },
- {
- "start": 482,
- "end": 482.14,
- "text": "the"
- },
- {
- "start": 482.1,
- "end": 482.84,
- "text": "integrated"
- },
- {
- "start": 482.8,
- "end": 482.96,
- "text": "with"
- },
- {
- "start": 482.92,
- "end": 483.04,
- "text": "the"
- },
- {
- "start": 483.02,
- "end": 483.78,
- "text": "leaves."
- },
- {
- "start": 483.8,
- "end": 484,
- "text": "Our"
- },
- {
- "start": 484.06,
- "end": 484.28,
- "text": "part"
- },
- {
- "start": 484.28,
- "end": 484.42,
- "text": "is"
- },
- {
- "start": 484.44,
- "end": 485.4,
- "text": "in"
- },
- {
- "start": 485.4,
- "end": 485.64,
- "text": "our"
- },
- {
- "start": 485.62,
- "end": 485.9,
- "text": "neighbors"
- },
- {
- "start": 486.18,
- "end": 486.28,
- "text": "to"
- },
- {
- "start": 486.88,
- "end": 487.1,
- "text": "make"
- },
- {
- "start": 487.06,
- "end": 487.14,
- "text": "a"
- },
- {
- "start": 487.14,
- "end": 487.48,
- "text": "real"
- },
- {
- "start": 487.52,
- "end": 487.88,
- "text": "product."
- },
- {
- "start": 487.84,
- "end": 488.6,
- "text": "And"
- },
- {
- "start": 488.56,
- "end": 488.74,
- "text": "this"
- },
- {
- "start": 488.82,
- "end": 489.18,
- "text": "product"
- },
- {
- "start": 489.5,
- "end": 489.64,
- "text": "is"
- },
- {
- "start": 489.72,
- "end": 489.9,
- "text": "this"
- },
- {
- "start": 489.86,
- "end": 490.3,
- "text": "jacket"
- },
- {
- "start": 490.26,
- "end": 490.44,
- "text": "and"
- },
- {
- "start": 490.4,
- "end": 490.56,
- "text": "war"
- },
- {
- "start": 490.7,
- "end": 490.88,
- "text": "right"
- },
- {
- "start": 490.86,
- "end": 491.04,
- "text": "now"
- },
- {
- "start": 491.48,
- "end": 492.5,
- "text": "is"
- },
- {
- "start": 492.46,
- "end": 492.6,
- "text": "you"
- },
- {
- "start": 492.56,
- "end": 492.7,
- "text": "can"
- },
- {
- "start": 492.72,
- "end": 492.86,
- "text": "buy"
- },
- {
- "start": 492.88,
- "end": 493,
- "text": "it"
- },
- {
- "start": 492.98,
- "end": 493.16,
- "text": "on"
- },
- {
- "start": 493.3,
- "end": 493.52,
- "text": "sale."
- },
- {
- "start": 493.82,
- "end": 494.58,
- "text": "It"
- },
- {
- "start": 494.56,
- "end": 494.74,
- "text": "was"
- },
- {
- "start": 494.76,
- "end": 494.96,
- "text": "made"
- },
- {
- "start": 495.04,
- "end": 495.2,
- "text": "the"
- },
- {
- "start": 495.2,
- "end": 495.58,
- "text": "same"
- },
- {
- "start": 495.64,
- "end": 496.18,
- "text": "factories"
- },
- {
- "start": 496.26,
- "end": 496.94,
- "text": "which"
- },
- {
- "start": 497,
- "end": 497.18,
- "text": "made"
- },
- {
- "start": 497.2,
- "end": 497.52,
- "text": "all"
- },
- {
- "start": 497.54,
- "end": 497.76,
- "text": "their"
- },
- {
- "start": 497.74,
- "end": 498.06,
- "text": "products"
- },
- {
- "start": 498.36,
- "end": 498.82,
- "text": "and"
- },
- {
- "start": 498.78,
- "end": 498.94,
- "text": "you"
- },
- {
- "start": 498.9,
- "end": 499.06,
- "text": "have"
- },
- {
- "start": 499.02,
- "end": 499.46,
- "text": "noticed"
- },
- {
- "start": 500.02,
- "end": 500.16,
- "text": "is"
- },
- {
- "start": 500.12,
- "end": 500.28,
- "text": "it"
- },
- {
- "start": 500.3,
- "end": 500.48,
- "text": "been"
- },
- {
- "start": 500.46,
- "end": 501,
- "text": "controlling"
- },
- {
- "start": 500.96,
- "end": 501.66,
- "text": "my"
- },
- {
- "start": 501.88,
- "end": 502.36,
- "text": "presentation"
- },
- {
- "start": 502.38,
- "end": 502.6,
- "text": "from"
- },
- {
- "start": 502.56,
- "end": 502.7,
- "text": "the"
- },
- {
- "start": 502.68,
- "end": 502.98,
- "text": "jacket"
- },
- {
- "start": 502.94,
- "end": 503.08,
- "text": "from"
- },
- {
- "start": 503.06,
- "end": 503.2,
- "text": "the"
- },
- {
- "start": 503.18,
- "end": 503.42,
- "text": "see"
- },
- {
- "start": 503.48,
- "end": 503.66,
- "text": "the"
- },
- {
- "start": 503.64,
- "end": 503.94,
- "text": "jacket"
- },
- {
- "start": 503.94,
- "end": 504.12,
- "text": "and"
- },
- {
- "start": 504.1,
- "end": 504.26,
- "text": "do"
- },
- {
- "start": 504.24,
- "end": 504.4,
- "text": "like"
- },
- {
- "start": 504.38,
- "end": 504.52,
- "text": "this"
- },
- {
- "start": 504.66,
- "end": 505.08,
- "text": "go"
- },
- {
- "start": 505.16,
- "end": 505.56,
- "text": "forward."
- },
- {
- "start": 505.56,
- "end": 506.2,
- "text": "Now"
- },
- {
- "start": 506.16,
- "end": 506.32,
- "text": "this"
- },
- {
- "start": 506.52,
- "end": 506.66,
- "text": "go"
- },
- {
- "start": 506.7,
- "end": 507,
- "text": "backward"
- },
- {
- "start": 508.12,
- "end": 509.04,
- "text": "and"
- },
- {
- "start": 509,
- "end": 509.14,
- "text": "of"
- },
- {
- "start": 509.12,
- "end": 509.34,
- "text": "course"
- },
- {
- "start": 509.3,
- "end": 509.42,
- "text": "you"
- },
- {
- "start": 509.38,
- "end": 509.54,
- "text": "can"
- },
- {
- "start": 509.5,
- "end": 509.66,
- "text": "do"
- },
- {
- "start": 509.62,
- "end": 509.86,
- "text": "more"
- },
- {
- "start": 509.84,
- "end": 510.16,
- "text": "things."
- },
- {
- "start": 510.12,
- "end": 510.32,
- "text": "It's"
- },
- {
- "start": 510.28,
- "end": 510.44,
- "text": "not"
- },
- {
- "start": 510.42,
- "end": 510.6,
- "text": "just"
- },
- {
- "start": 510.56,
- "end": 510.64,
- "text": "a"
- },
- {
- "start": 510.66,
- "end": 510.98,
- "text": "control"
- },
- {
- "start": 510.96,
- "end": 511.58,
- "text": "presentation."
- },
- {
- "start": 511.58,
- "end": 511.98,
- "text": "You"
- },
- {
- "start": 511.96,
- "end": 512.12,
- "text": "can."
- },
- {
- "start": 512.1,
- "end": 512.22,
- "text": "I"
- },
- {
- "start": 512.2,
- "end": 512.5,
- "text": "control"
- },
- {
- "start": 512.5,
- "end": 512.62,
- "text": "my"
- },
- {
- "start": 512.6,
- "end": 513.18,
- "text": "litigation"
- },
- {
- "start": 513.18,
- "end": 513.88,
- "text": "console"
- },
- {
- "start": 513.9,
- "end": 514.6,
- "text": "my"
- },
- {
- "start": 515.02,
- "end": 515.36,
- "text": "music"
- },
- {
- "start": 515.82,
- "end": 516,
- "text": "but"
- },
- {
- "start": 515.98,
- "end": 516.32,
- "text": "most"
- },
- {
- "start": 516.3,
- "end": 516.96,
- "text": "importantly"
- },
- {
- "start": 516.92,
- "end": 517.08,
- "text": "it"
- },
- {
- "start": 517.16,
- "end": 517.66,
- "text": "stays"
- },
- {
- "start": 517.64,
- "end": 517.84,
- "text": "the"
- },
- {
- "start": 517.84,
- "end": 518.26,
- "text": "jacket."
- },
- {
- "start": 518.24,
- "end": 518.5,
- "text": "It"
- },
- {
- "start": 518.48,
- "end": 518.9,
- "text": "stays"
- },
- {
- "start": 518.94,
- "end": 519.08,
- "text": "as"
- },
- {
- "start": 519.1,
- "end": 519.38,
- "text": "thing"
- },
- {
- "start": 519.66,
- "end": 520.02,
- "text": "which"
- },
- {
- "start": 520,
- "end": 520.32,
- "text": "makes"
- },
- {
- "start": 520.28,
- "end": 520.54,
- "text": "me"
- },
- {
- "start": 520.52,
- "end": 520.94,
- "text": "look"
- },
- {
- "start": 521.3,
- "end": 522.08,
- "text": "great."
- },
- {
- "start": 529.06,
- "end": 529.26,
- "text": "And"
- },
- {
- "start": 529.24,
- "end": 529.48,
- "text": "that's"
- },
- {
- "start": 529.52,
- "end": 529.66,
- "text": "the"
- },
- {
- "start": 529.62,
- "end": 529.8,
- "text": "most"
- },
- {
- "start": 529.78,
- "end": 530.14,
- "text": "important"
- },
- {
- "start": 530.14,
- "end": 530.34,
- "text": "thing."
- },
- {
- "start": 530.86,
- "end": 530.94,
- "text": "So."
- },
- {
- "start": 534,
- "end": 535.82,
- "text": "Okay."
- },
- {
- "start": 535.78,
- "end": 535.96,
- "text": "So"
- },
- {
- "start": 535.98,
- "end": 536.18,
- "text": "we"
- },
- {
- "start": 536.16,
- "end": 536.66,
- "text": "proved"
- },
- {
- "start": 536.64,
- "end": 536.8,
- "text": "the"
- },
- {
- "start": 536.76,
- "end": 537.3,
- "text": "content"
- },
- {
- "start": 537.26,
- "end": 537.56,
- "text": "things"
- },
- {
- "start": 537.54,
- "end": 537.8,
- "text": "into"
- },
- {
- "start": 537.78,
- "end": 538.32,
- "text": "interfaces."
- },
- {
- "start": 538.3,
- "end": 538.44,
- "text": "We"
- },
- {
- "start": 538.5,
- "end": 538.9,
- "text": "prove"
- },
- {
- "start": 538.88,
- "end": 539.06,
- "text": "that"
- },
- {
- "start": 539.42,
- "end": 539.66,
- "text": "these"
- },
- {
- "start": 539.64,
- "end": 539.9,
- "text": "things"
- },
- {
- "start": 539.92,
- "end": 540.1,
- "text": "can"
- },
- {
- "start": 540.08,
- "end": 540.24,
- "text": "be"
- },
- {
- "start": 540.26,
- "end": 540.54,
- "text": "made"
- },
- {
- "start": 540.74,
- "end": 541.02,
- "text": "by"
- },
- {
- "start": 541,
- "end": 541.46,
- "text": "makers"
- },
- {
- "start": 541.46,
- "end": 541.62,
- "text": "of"
- },
- {
- "start": 541.6,
- "end": 542.02,
- "text": "things"
- },
- {
- "start": 542,
- "end": 542.44,
- "text": "in"
- },
- {
- "start": 542.42,
- "end": 543.2,
- "text": "technology"
- },
- {
- "start": 543.16,
- "end": 543.62,
- "text": "companies."
- },
- {
- "start": 543.82,
- "end": 543.9,
- "text": "I"
- },
- {
- "start": 543.86,
- "end": 544.4,
- "text": "look."
- },
- {
- "start": 544.36,
- "end": 544.76,
- "text": "Awesome."
- },
- {
- "start": 544.74,
- "end": 545.44,
- "text": "Are"
- },
- {
- "start": 545.4,
- "end": 545.52,
- "text": "we"
- },
- {
- "start": 545.5,
- "end": 545.88,
- "text": "done?"
- },
- {
- "start": 545.86,
- "end": 547.54,
- "text": "Not"
- },
- {
- "start": 547.54,
- "end": 547.68,
- "text": "yet."
- },
- {
- "start": 548.1,
- "end": 548.5,
- "text": "The"
- },
- {
- "start": 548.46,
- "end": 548.94,
- "text": "third"
- },
- {
- "start": 548.92,
- "end": 549.3,
- "text": "challenge,"
- },
- {
- "start": 549.34,
- "end": 550.32,
- "text": "how"
- },
- {
- "start": 550.36,
- "end": 550.6,
- "text": "can"
- },
- {
- "start": 550.58,
- "end": 550.7,
- "text": "we"
- },
- {
- "start": 550.86,
- "end": 551.2,
- "text": "scale?"
- },
- {
- "start": 551.48,
- "end": 552.36,
- "text": "How"
- },
- {
- "start": 552.34,
- "end": 552.52,
- "text": "can"
- },
- {
- "start": 552.5,
- "end": 552.62,
- "text": "we"
- },
- {
- "start": 552.68,
- "end": 552.8,
- "text": "go"
- },
- {
- "start": 552.82,
- "end": 553.04,
- "text": "from"
- },
- {
- "start": 553.02,
- "end": 553.4,
- "text": "one"
- },
- {
- "start": 553.42,
- "end": 553.8,
- "text": "product"
- },
- {
- "start": 554.16,
- "end": 554.3,
- "text": "to"
- },
- {
- "start": 554.36,
- "end": 554.66,
- "text": "many"
- },
- {
- "start": 554.68,
- "end": 555.02,
- "text": "press"
- },
- {
- "start": 555.22,
- "end": 555.62,
- "text": "and"
- },
- {
- "start": 555.58,
- "end": 555.82,
- "text": "that's"
- },
- {
- "start": 555.78,
- "end": 555.94,
- "text": "what"
- },
- {
- "start": 555.9,
- "end": 556.14,
- "text": "we're"
- },
- {
- "start": 556.1,
- "end": 556.3,
- "text": "doing"
- },
- {
- "start": 556.28,
- "end": 556.6,
- "text": "looking"
- },
- {
- "start": 556.56,
- "end": 556.76,
- "text": "right"
- },
- {
- "start": 556.76,
- "end": 556.98,
- "text": "now."
- },
- {
- "start": 556.96,
- "end": 557.5,
- "text": "Let"
- },
- {
- "start": 557.48,
- "end": 557.66,
- "text": "me"
- },
- {
- "start": 557.62,
- "end": 557.84,
- "text": "tell"
- },
- {
- "start": 557.8,
- "end": 557.92,
- "text": "you"
- },
- {
- "start": 557.9,
- "end": 558.04,
- "text": "how"
- },
- {
- "start": 558,
- "end": 558.22,
- "text": "we're"
- },
- {
- "start": 558.18,
- "end": 558.34,
- "text": "going"
- },
- {
- "start": 558.3,
- "end": 558.4,
- "text": "to"
- },
- {
- "start": 558.36,
- "end": 558.48,
- "text": "do"
- },
- {
- "start": 558.46,
- "end": 558.62,
- "text": "this."
- },
- {
- "start": 558.86,
- "end": 559.32,
- "text": "The"
- },
- {
- "start": 559.28,
- "end": 559.56,
- "text": "first"
- },
- {
- "start": 559.54,
- "end": 559.7,
- "text": "of"
- },
- {
- "start": 559.68,
- "end": 559.92,
- "text": "all,"
- },
- {
- "start": 559.94,
- "end": 560.02,
- "text": "I"
- },
- {
- "start": 560.02,
- "end": 560.24,
- "text": "want"
- },
- {
- "start": 560.2,
- "end": 560.36,
- "text": "to"
- },
- {
- "start": 560.32,
- "end": 560.56,
- "text": "make"
- },
- {
- "start": 560.52,
- "end": 560.84,
- "text": "myself"
- },
- {
- "start": 560.82,
- "end": 561.28,
- "text": "clear."
- },
- {
- "start": 561.28,
- "end": 562,
- "text": "I'm"
- },
- {
- "start": 562.04,
- "end": 562.26,
- "text": "not"
- },
- {
- "start": 562.3,
- "end": 562.66,
- "text": "talking"
- },
- {
- "start": 562.62,
- "end": 562.82,
- "text": "about"
- },
- {
- "start": 562.8,
- "end": 563.22,
- "text": "internet"
- },
- {
- "start": 563.2,
- "end": 563.34,
- "text": "of"
- },
- {
- "start": 563.32,
- "end": 563.62,
- "text": "things."
- },
- {
- "start": 563.84,
- "end": 564.6,
- "text": "I'm"
- },
- {
- "start": 564.58,
- "end": 564.8,
- "text": "not"
- },
- {
- "start": 564.76,
- "end": 565.3,
- "text": "talking"
- },
- {
- "start": 565.26,
- "end": 566.14,
- "text": "about"
- },
- {
- "start": 566.18,
- "end": 566.64,
- "text": "creating"
- },
- {
- "start": 566.62,
- "end": 567.04,
- "text": "another"
- },
- {
- "start": 567,
- "end": 567.34,
- "text": "gadget,"
- },
- {
- "start": 567.66,
- "end": 567.98,
- "text": "you"
- },
- {
- "start": 567.96,
- "end": 568.14,
- "text": "get"
- },
- {
- "start": 568.18,
- "end": 568.48,
- "text": "bored"
- },
- {
- "start": 568.5,
- "end": 568.7,
- "text": "with"
- },
- {
- "start": 568.66,
- "end": 568.84,
- "text": "and"
- },
- {
- "start": 568.92,
- "end": 569.18,
- "text": "throw"
- },
- {
- "start": 569.16,
- "end": 569.28,
- "text": "in"
- },
- {
- "start": 569.24,
- "end": 569.4,
- "text": "the"
- },
- {
- "start": 569.38,
- "end": 569.58,
- "text": "back"
- },
- {
- "start": 569.54,
- "end": 569.68,
- "text": "of"
- },
- {
- "start": 569.66,
- "end": 569.84,
- "text": "your"
- },
- {
- "start": 570.32,
- "end": 570.62,
- "text": "drawer"
- },
- {
- "start": 570.62,
- "end": 570.78,
- "text": "and"
- },
- {
- "start": 570.76,
- "end": 571.06,
- "text": "forget"
- },
- {
- "start": 571.04,
- "end": 571.32,
- "text": "about"
- },
- {
- "start": 571.3,
- "end": 571.38,
- "text": "it."
- },
- {
- "start": 571.62,
- "end": 572.16,
- "text": "I'm"
- },
- {
- "start": 572.16,
- "end": 572.56,
- "text": "talking"
- },
- {
- "start": 572.52,
- "end": 572.76,
- "text": "about"
- },
- {
- "start": 572.72,
- "end": 573.6,
- "text": "foundational"
- },
- {
- "start": 573.58,
- "end": 574.3,
- "text": "important"
- },
- {
- "start": 574.32,
- "end": 574.82,
- "text": "principle"
- },
- {
- "start": 574.8,
- "end": 574.98,
- "text": "which"
- },
- {
- "start": 574.96,
- "end": 575.28,
- "text": "guys"
- },
- {
- "start": 575.32,
- "end": 575.48,
- "text": "my"
- },
- {
- "start": 575.54,
- "end": 575.74,
- "text": "work"
- },
- {
- "start": 576,
- "end": 577.42,
- "text": "technology"
- },
- {
- "start": 577.48,
- "end": 577.74,
- "text": "has"
- },
- {
- "start": 577.74,
- "end": 577.92,
- "text": "to"
- },
- {
- "start": 577.96,
- "end": 578.24,
- "text": "make"
- },
- {
- "start": 578.2,
- "end": 579.3,
- "text": "existing"
- },
- {
- "start": 579.26,
- "end": 579.8,
- "text": "things"
- },
- {
- "start": 580.18,
- "end": 580.46,
- "text": "better."
- },
- {
- "start": 580.74,
- "end": 581.52,
- "text": "It's"
- },
- {
- "start": 581.5,
- "end": 581.76,
- "text": "made"
- },
- {
- "start": 581.72,
- "end": 581.92,
- "text": "them"
- },
- {
- "start": 581.96,
- "end": 582.28,
- "text": "better"
- },
- {
- "start": 582.82,
- "end": 582.98,
- "text": "by"
- },
- {
- "start": 582.98,
- "end": 583.54,
- "text": "connecting"
- },
- {
- "start": 583.52,
- "end": 583.68,
- "text": "them"
- },
- {
- "start": 584.02,
- "end": 584.3,
- "text": "to"
- },
- {
- "start": 584.34,
- "end": 584.52,
- "text": "your"
- },
- {
- "start": 584.52,
- "end": 585.02,
- "text": "digital"
- },
- {
- "start": 584.98,
- "end": 585.34,
- "text": "life"
- },
- {
- "start": 585.36,
- "end": 586.24,
- "text": "and"
- },
- {
- "start": 586.2,
- "end": 586.54,
- "text": "add"
- },
- {
- "start": 587.16,
- "end": 587.34,
- "text": "new"
- },
- {
- "start": 587.36,
- "end": 587.96,
- "text": "usefulness,"
- },
- {
- "start": 588.22,
- "end": 588.3,
- "text": "a"
- },
- {
- "start": 588.28,
- "end": 588.72,
- "text": "new"
- },
- {
- "start": 588.72,
- "end": 589.46,
- "text": "functionality"
- },
- {
- "start": 589.44,
- "end": 590.32,
- "text": "when"
- },
- {
- "start": 590.34,
- "end": 590.86,
- "text": "remaining"
- },
- {
- "start": 590.82,
- "end": 591.02,
- "text": "the"
- },
- {
- "start": 591.04,
- "end": 591.32,
- "text": "same"
- },
- {
- "start": 591.28,
- "end": 591.78,
- "text": "original"
- },
- {
- "start": 591.84,
- "end": 592.22,
- "text": "purpose,"
- },
- {
- "start": 592.44,
- "end": 592.88,
- "text": "not"
- },
- {
- "start": 592.92,
- "end": 593.4,
- "text": "changing"
- },
- {
- "start": 593.36,
- "end": 593.46,
- "text": "it."
- },
- {
- "start": 593.48,
- "end": 594.96,
- "text": "This"
- },
- {
- "start": 594.96,
- "end": 595.4,
- "text": "jacket"
- },
- {
- "start": 595.38,
- "end": 595.58,
- "text": "I'm"
- },
- {
- "start": 595.58,
- "end": 596.02,
- "text": "wearing"
- },
- {
- "start": 596.38,
- "end": 596.74,
- "text": "can"
- },
- {
- "start": 596.74,
- "end": 596.92,
- "text": "can"
- },
- {
- "start": 596.9,
- "end": 597.16,
- "text": "to"
- },
- {
- "start": 597.12,
- "end": 597.26,
- "text": "my"
- },
- {
- "start": 597.24,
- "end": 597.62,
- "text": "mobile"
- },
- {
- "start": 597.68,
- "end": 598,
- "text": "phone"
- },
- {
- "start": 597.98,
- "end": 598.26,
- "text": "and"
- },
- {
- "start": 598.24,
- "end": 598.86,
- "text": "presentation."
- },
- {
- "start": 599.38,
- "end": 600.16,
- "text": "It"
- },
- {
- "start": 600.48,
- "end": 600.7,
- "text": "means"
- },
- {
- "start": 600.7,
- "end": 600.78,
- "text": "a"
- },
- {
- "start": 600.76,
- "end": 601,
- "text": "jacket."
- },
- {
- "start": 602.38,
- "end": 603,
- "text": "This"
- },
- {
- "start": 603.02,
- "end": 603.36,
- "text": "means"
- },
- {
- "start": 603.32,
- "end": 603.96,
- "text": "that"
- },
- {
- "start": 603.94,
- "end": 604.26,
- "text": "one"
- },
- {
- "start": 604.24,
- "end": 604.42,
- "text": "is"
- },
- {
- "start": 604.44,
- "end": 604.68,
- "text": "up"
- },
- {
- "start": 604.64,
- "end": 605,
- "text": "making"
- },
- {
- "start": 604.98,
- "end": 605.2,
- "text": "all"
- },
- {
- "start": 605.18,
- "end": 605.64,
- "text": "things"
- },
- {
- "start": 605.74,
- "end": 606.44,
- "text": "interactive"
- },
- {
- "start": 606.64,
- "end": 606.86,
- "text": "and"
- },
- {
- "start": 606.98,
- "end": 607.44,
- "text": "connected."
- },
- {
- "start": 607.58,
- "end": 608.64,
- "text": "Everything"
- },
- {
- "start": 608.6,
- "end": 608.8,
- "text": "would"
- },
- {
- "start": 608.82,
- "end": 609.06,
- "text": "have"
- },
- {
- "start": 609.02,
- "end": 609.18,
- "text": "its"
- },
- {
- "start": 609.18,
- "end": 609.44,
- "text": "own"
- },
- {
- "start": 609.44,
- "end": 609.72,
- "text": "set"
- },
- {
- "start": 609.7,
- "end": 609.84,
- "text": "of"
- },
- {
- "start": 609.8,
- "end": 610.28,
- "text": "centers,"
- },
- {
- "start": 610.6,
- "end": 611.28,
- "text": "displays"
- },
- {
- "start": 611.24,
- "end": 611.34,
- "text": "a"
- },
- {
- "start": 611.36,
- "end": 611.72,
- "text": "sense"
- },
- {
- "start": 611.7,
- "end": 611.86,
- "text": "of"
- },
- {
- "start": 611.82,
- "end": 612.86,
- "text": "specific"
- },
- {
- "start": 612.88,
- "end": 613.06,
- "text": "for"
- },
- {
- "start": 613.04,
- "end": 613.34,
- "text": "those"
- },
- {
- "start": 613.34,
- "end": 613.66,
- "text": "things,"
- },
- {
- "start": 613.84,
- "end": 614.38,
- "text": "ap"
- },
- {
- "start": 614.56,
- "end": 614.74,
- "text": "or"
- },
- {
- "start": 614.72,
- "end": 614.94,
- "text": "fun"
- },
- {
- "start": 614.92,
- "end": 615.2,
- "text": "issue"
- },
- {
- "start": 615.22,
- "end": 615.42,
- "text": "does"
- },
- {
- "start": 615.46,
- "end": 615.66,
- "text": "not"
- },
- {
- "start": 615.68,
- "end": 615.88,
- "text": "need"
- },
- {
- "start": 615.84,
- "end": 616.06,
- "text": "to"
- },
- {
- "start": 616.02,
- "end": 616.2,
- "text": "have"
- },
- {
- "start": 616.16,
- "end": 616.26,
- "text": "a"
- },
- {
- "start": 616.24,
- "end": 616.52,
- "text": "touch"
- },
- {
- "start": 616.5,
- "end": 616.74,
- "text": "sense."
- },
- {
- "start": 616.88,
- "end": 617,
- "text": "Why"
- },
- {
- "start": 617,
- "end": 617.2,
- "text": "would"
- },
- {
- "start": 617.18,
- "end": 617.3,
- "text": "he"
- },
- {
- "start": 617.28,
- "end": 617.44,
- "text": "have"
- },
- {
- "start": 617.4,
- "end": 617.52,
- "text": "a"
- },
- {
- "start": 617.48,
- "end": 617.96,
- "text": "texas"
- },
- {
- "start": 617.94,
- "end": 618.08,
- "text": "on"
- },
- {
- "start": 618.06,
- "end": 618.28,
- "text": "pair"
- },
- {
- "start": 618.26,
- "end": 618.38,
- "text": "of"
- },
- {
- "start": 618.36,
- "end": 618.58,
- "text": "shoes?"
- },
- {
- "start": 618.84,
- "end": 619,
- "text": "You"
- },
- {
- "start": 618.98,
- "end": 619.24,
- "text": "have"
- },
- {
- "start": 619.2,
- "end": 619.32,
- "text": "a"
- },
- {
- "start": 619.3,
- "end": 619.7,
- "text": "sensor."
- },
- {
- "start": 620.04,
- "end": 620.3,
- "text": "We"
- },
- {
- "start": 620.3,
- "end": 620.52,
- "text": "should"
- },
- {
- "start": 620.56,
- "end": 620.92,
- "text": "measure"
- },
- {
- "start": 620.88,
- "end": 621.08,
- "text": "your"
- },
- {
- "start": 621.06,
- "end": 621.88,
- "text": "running"
- },
- {
- "start": 621.84,
- "end": 622.4,
- "text": "performance"
- },
- {
- "start": 622.38,
- "end": 623.16,
- "text": "impact"
- },
- {
- "start": 623.36,
- "end": 623.74,
- "text": "while"
- },
- {
- "start": 623.7,
- "end": 624.2,
- "text": "remaining"
- },
- {
- "start": 624.16,
- "end": 624.3,
- "text": "the"
- },
- {
- "start": 624.26,
- "end": 624.52,
- "text": "great"
- },
- {
- "start": 624.52,
- "end": 624.78,
- "text": "pair"
- },
- {
- "start": 624.74,
- "end": 624.86,
- "text": "of"
- },
- {
- "start": 624.84,
- "end": 625.14,
- "text": "shoes,"
- },
- {
- "start": 626,
- "end": 626.76,
- "text": "makers"
- },
- {
- "start": 626.74,
- "end": 626.92,
- "text": "of"
- },
- {
- "start": 626.96,
- "end": 627.26,
- "text": "things."
- },
- {
- "start": 627.62,
- "end": 628.24,
- "text": "We'll"
- },
- {
- "start": 628.2,
- "end": 628.48,
- "text": "have"
- },
- {
- "start": 628.46,
- "end": 628.6,
- "text": "to"
- },
- {
- "start": 628.56,
- "end": 628.94,
- "text": "start"
- },
- {
- "start": 628.98,
- "end": 629.36,
- "text": "thinking"
- },
- {
- "start": 629.34,
- "end": 629.58,
- "text": "what"
- },
- {
- "start": 629.62,
- "end": 629.96,
- "text": "kind"
- },
- {
- "start": 629.98,
- "end": 630.1,
- "text": "of"
- },
- {
- "start": 630.14,
- "end": 630.56,
- "text": "digital"
- },
- {
- "start": 630.54,
- "end": 631.24,
- "text": "functionality"
- },
- {
- "start": 631.58,
- "end": 632.04,
- "text": "they"
- },
- {
- "start": 632.02,
- "end": 632.34,
- "text": "have"
- },
- {
- "start": 632.3,
- "end": 632.44,
- "text": "to"
- },
- {
- "start": 632.4,
- "end": 632.88,
- "text": "offer"
- },
- {
- "start": 632.84,
- "end": 632.98,
- "text": "to"
- },
- {
- "start": 632.96,
- "end": 633.32,
- "text": "their"
- },
- {
- "start": 633.3,
- "end": 633.86,
- "text": "consumers."
- },
- {
- "start": 634.58,
- "end": 635.18,
- "text": "They"
- },
- {
- "start": 635.16,
- "end": 635.38,
- "text": "will"
- },
- {
- "start": 635.34,
- "end": 635.56,
- "text": "have"
- },
- {
- "start": 635.54,
- "end": 635.68,
- "text": "to"
- },
- {
- "start": 635.66,
- "end": 636.04,
- "text": "become"
- },
- {
- "start": 636.02,
- "end": 637.06,
- "text": "service"
- },
- {
- "start": 637.04,
- "end": 637.5,
- "text": "providers."
- },
- {
- "start": 637.82,
- "end": 638.92,
- "text": "Well"
- },
- {
- "start": 638.92,
- "end": 639.06,
- "text": "the"
- },
- {
- "start": 639.04,
- "end": 639.64,
- "text": "main"
- },
- {
- "start": 639.66,
- "end": 639.96,
- "text": "event"
- },
- {
- "start": 640.82,
- "end": 641.26,
- "text": "we"
- },
- {
- "start": 641.24,
- "end": 641.56,
- "text": "will"
- },
- {
- "start": 641.52,
- "end": 641.76,
- "text": "have"
- },
- {
- "start": 641.72,
- "end": 641.86,
- "text": "to"
- },
- {
- "start": 641.84,
- "end": 642.22,
- "text": "create"
- },
- {
- "start": 642.18,
- "end": 642.34,
- "text": "you"
- },
- {
- "start": 642.32,
- "end": 642.56,
- "text": "create"
- },
- {
- "start": 642.54,
- "end": 642.66,
- "text": "a"
- },
- {
- "start": 642.62,
- "end": 643.14,
- "text": "service"
- },
- {
- "start": 643.12,
- "end": 643.8,
- "text": "ecosystem."
- },
- {
- "start": 644.1,
- "end": 645.02,
- "text": "Just"
- },
- {
- "start": 645,
- "end": 645.2,
- "text": "like"
- },
- {
- "start": 645.16,
- "end": 645.4,
- "text": "we've"
- },
- {
- "start": 645.38,
- "end": 645.62,
- "text": "done"
- },
- {
- "start": 645.6,
- "end": 645.78,
- "text": "for"
- },
- {
- "start": 645.76,
- "end": 646.12,
- "text": "mobile"
- },
- {
- "start": 646.18,
- "end": 646.52,
- "text": "phones."
- },
- {
- "start": 646.54,
- "end": 647.06,
- "text": "What"
- },
- {
- "start": 647.02,
- "end": 647.18,
- "text": "you"
- },
- {
- "start": 647.16,
- "end": 647.32,
- "text": "have"
- },
- {
- "start": 647.28,
- "end": 647.4,
- "text": "an"
- },
- {
- "start": 647.38,
- "end": 647.64,
- "text": "apps"
- },
- {
- "start": 647.64,
- "end": 647.84,
- "text": "and"
- },
- {
- "start": 647.82,
- "end": 648.14,
- "text": "service"
- },
- {
- "start": 648.12,
- "end": 648.26,
- "text": "and"
- },
- {
- "start": 648.22,
- "end": 648.64,
- "text": "everything"
- },
- {
- "start": 648.6,
- "end": 648.8,
- "text": "else"
- },
- {
- "start": 649.26,
- "end": 649.58,
- "text": "and"
- },
- {
- "start": 649.56,
- "end": 649.96,
- "text": "sometimes"
- },
- {
- "start": 649.92,
- "end": 650.06,
- "text": "you"
- },
- {
- "start": 650.02,
- "end": 650.28,
- "text": "feel"
- },
- {
- "start": 650.26,
- "end": 650.56,
- "text": "making"
- },
- {
- "start": 650.52,
- "end": 650.82,
- "text": "phone"
- },
- {
- "start": 650.78,
- "end": 650.98,
- "text": "call."
- },
- {
- "start": 652.1,
- "end": 652.28,
- "text": "Now"
- },
- {
- "start": 652.28,
- "end": 652.42,
- "text": "to"
- },
- {
- "start": 652.42,
- "end": 652.58,
- "text": "me"
- },
- {
- "start": 652.54,
- "end": 652.76,
- "text": "this,"
- },
- {
- "start": 652.76,
- "end": 652.88,
- "text": "I"
- },
- {
- "start": 652.84,
- "end": 653.02,
- "text": "guess"
- },
- {
- "start": 653,
- "end": 653.18,
- "text": "it's"
- },
- {
- "start": 653.16,
- "end": 653.74,
- "text": "impossible."
- },
- {
- "start": 654.08,
- "end": 654.18,
- "text": "We"
- },
- {
- "start": 654.34,
- "end": 654.56,
- "text": "have"
- },
- {
- "start": 654.52,
- "end": 654.64,
- "text": "to"
- },
- {
- "start": 654.6,
- "end": 654.84,
- "text": "voice"
- },
- {
- "start": 654.82,
- "end": 655.52,
- "text": "fermentation."
- },
- {
- "start": 655.52,
- "end": 656.44,
- "text": "We"
- },
- {
- "start": 656.52,
- "end": 656.74,
- "text": "have"
- },
- {
- "start": 656.7,
- "end": 656.84,
- "text": "to"
- },
- {
- "start": 656.82,
- "end": 657.1,
- "text": "avoid"
- },
- {
- "start": 657.62,
- "end": 658.26,
- "text": "different"
- },
- {
- "start": 658.22,
- "end": 658.82,
- "text": "interfaces"
- },
- {
- "start": 658.82,
- "end": 658.98,
- "text": "for"
- },
- {
- "start": 658.96,
- "end": 659.32,
- "text": "different"
- },
- {
- "start": 659.28,
- "end": 659.54,
- "text": "people"
- },
- {
- "start": 659.52,
- "end": 659.68,
- "text": "for"
- },
- {
- "start": 659.66,
- "end": 660.02,
- "text": "different"
- },
- {
- "start": 659.98,
- "end": 660.3,
- "text": "things."
- },
- {
- "start": 660.28,
- "end": 660.42,
- "text": "We"
- },
- {
- "start": 660.42,
- "end": 660.6,
- "text": "have"
- },
- {
- "start": 660.56,
- "end": 660.68,
- "text": "to"
- },
- {
- "start": 660.64,
- "end": 660.9,
- "text": "create"
- },
- {
- "start": 660.86,
- "end": 661.32,
- "text": "uniform"
- },
- {
- "start": 661.3,
- "end": 661.5,
- "text": "us"
- },
- {
- "start": 661.46,
- "end": 662.04,
- "text": "experience."
- },
- {
- "start": 662.18,
- "end": 662.72,
- "text": "For"
- },
- {
- "start": 662.68,
- "end": 662.86,
- "text": "that"
- },
- {
- "start": 662.84,
- "end": 663.18,
- "text": "reason"
- },
- {
- "start": 663.16,
- "end": 663.26,
- "text": "we"
- },
- {
- "start": 663.24,
- "end": 663.42,
- "text": "have"
- },
- {
- "start": 663.4,
- "end": 663.52,
- "text": "to"
- },
- {
- "start": 663.52,
- "end": 663.94,
- "text": "create"
- },
- {
- "start": 663.92,
- "end": 664.3,
- "text": "a"
- },
- {
- "start": 664.34,
- "end": 664.84,
- "text": "single"
- },
- {
- "start": 664.88,
- "end": 665.48,
- "text": "computing"
- },
- {
- "start": 665.48,
- "end": 666,
- "text": "platform"
- },
- {
- "start": 666.32,
- "end": 666.98,
- "text": "which"
- },
- {
- "start": 666.96,
- "end": 667.4,
- "text": "powers"
- },
- {
- "start": 667.52,
- "end": 667.76,
- "text": "all"
- },
- {
- "start": 667.82,
- "end": 668.12,
- "text": "those"
- },
- {
- "start": 668.14,
- "end": 668.46,
- "text": "things."
- },
- {
- "start": 668.58,
- "end": 669.06,
- "text": "What"
- },
- {
- "start": 669.02,
- "end": 669.24,
- "text": "I"
- },
- {
- "start": 669.34,
- "end": 669.6,
- "text": "plus"
- },
- {
- "start": 669.6,
- "end": 669.8,
- "text": "I'm"
- },
- {
- "start": 669.76,
- "end": 669.96,
- "text": "going"
- },
- {
- "start": 669.92,
- "end": 670.02,
- "text": "to"
- },
- {
- "start": 670.02,
- "end": 670.18,
- "text": "be"
- },
- {
- "start": 670.4,
- "end": 670.78,
- "text": "and"
- },
- {
- "start": 670.74,
- "end": 670.82,
- "text": "I"
- },
- {
- "start": 670.78,
- "end": 671,
- "text": "think"
- },
- {
- "start": 670.96,
- "end": 671.12,
- "text": "he"
- },
- {
- "start": 671.1,
- "end": 671.26,
- "text": "has"
- },
- {
- "start": 671.3,
- "end": 671.48,
- "text": "is"
- },
- {
- "start": 671.46,
- "end": 671.8,
- "text": "obvious"
- },
- {
- "start": 672.06,
- "end": 672.6,
- "text": "it's"
- },
- {
- "start": 672.56,
- "end": 672.64,
- "text": "a"
- },
- {
- "start": 672.62,
- "end": 672.94,
- "text": "cloud,"
- },
- {
- "start": 672.96,
- "end": 673.88,
- "text": "a"
- },
- {
- "start": 674,
- "end": 674.3,
- "text": "cloud"
- },
- {
- "start": 674.34,
- "end": 674.82,
- "text": "computing"
- },
- {
- "start": 674.8,
- "end": 675.44,
- "text": "now"
- },
- {
- "start": 675.4,
- "end": 675.56,
- "text": "you"
- },
- {
- "start": 675.52,
- "end": 675.78,
- "text": "cannot"
- },
- {
- "start": 675.76,
- "end": 676.1,
- "text": "connect"
- },
- {
- "start": 676.1,
- "end": 676.34,
- "text": "things"
- },
- {
- "start": 676.34,
- "end": 676.76,
- "text": "directly"
- },
- {
- "start": 676.74,
- "end": 676.86,
- "text": "to"
- },
- {
- "start": 676.84,
- "end": 677.16,
- "text": "cloud"
- },
- {
- "start": 677.18,
- "end": 677.6,
- "text": "obviously."
- },
- {
- "start": 677.9,
- "end": 678,
- "text": "So"
- },
- {
- "start": 678.5,
- "end": 678.74,
- "text": "do"
- },
- {
- "start": 678.7,
- "end": 678.86,
- "text": "you"
- },
- {
- "start": 678.86,
- "end": 679.1,
- "text": "have"
- },
- {
- "start": 679.08,
- "end": 679.2,
- "text": "to"
- },
- {
- "start": 679.22,
- "end": 679.36,
- "text": "do"
- },
- {
- "start": 679.38,
- "end": 679.52,
- "text": "you"
- },
- {
- "start": 679.52,
- "end": 679.7,
- "text": "have"
- },
- {
- "start": 679.66,
- "end": 679.8,
- "text": "to"
- },
- {
- "start": 679.78,
- "end": 680.2,
- "text": "develop"
- },
- {
- "start": 680.18,
- "end": 680.26,
- "text": "a"
- },
- {
- "start": 680.28,
- "end": 680.64,
- "text": "small"
- },
- {
- "start": 680.64,
- "end": 681.04,
- "text": "device"
- },
- {
- "start": 681.28,
- "end": 681.82,
- "text": "which"
- },
- {
- "start": 681.8,
- "end": 681.96,
- "text": "can"
- },
- {
- "start": 681.94,
- "end": 682.1,
- "text": "be"
- },
- {
- "start": 682.06,
- "end": 682.56,
- "text": "plotted"
- },
- {
- "start": 682.52,
- "end": 682.72,
- "text": "and"
- },
- {
- "start": 682.7,
- "end": 682.94,
- "text": "told"
- },
- {
- "start": 682.92,
- "end": 683.04,
- "text": "the"
- },
- {
- "start": 683.08,
- "end": 683.42,
- "text": "things"
- },
- {
- "start": 683.88,
- "end": 684.06,
- "text": "and"
- },
- {
- "start": 684.08,
- "end": 684.3,
- "text": "make"
- },
- {
- "start": 684.28,
- "end": 684.44,
- "text": "them"
- },
- {
- "start": 684.42,
- "end": 684.76,
- "text": "connected"
- },
- {
- "start": 684.72,
- "end": 684.82,
- "text": "to"
- },
- {
- "start": 684.78,
- "end": 684.9,
- "text": "the"
- },
- {
- "start": 684.88,
- "end": 685.22,
- "text": "cloud"
- },
- {
- "start": 685.58,
- "end": 685.74,
- "text": "to"
- },
- {
- "start": 685.86,
- "end": 686.08,
- "text": "look"
- },
- {
- "start": 686.44,
- "end": 686.64,
- "text": "their"
- },
- {
- "start": 686.62,
- "end": 687.1,
- "text": "potential"
- },
- {
- "start": 687.4,
- "end": 687.6,
- "text": "and"
- },
- {
- "start": 687.6,
- "end": 687.94,
- "text": "as"
- },
- {
- "start": 687.92,
- "end": 688.1,
- "text": "new"
- },
- {
- "start": 688.08,
- "end": 688.66,
- "text": "functionality."
- },
- {
- "start": 688.98,
- "end": 689.08,
- "text": "So"
- },
- {
- "start": 689.44,
- "end": 689.64,
- "text": "let"
- },
- {
- "start": 689.62,
- "end": 689.8,
- "text": "me"
- },
- {
- "start": 689.78,
- "end": 690.02,
- "text": "show"
- },
- {
- "start": 690.02,
- "end": 690.22,
- "text": "for"
- },
- {
- "start": 690.18,
- "end": 690.32,
- "text": "the"
- },
- {
- "start": 690.32,
- "end": 690.56,
- "text": "first"
- },
- {
- "start": 690.54,
- "end": 690.86,
- "text": "time,"
- },
- {
- "start": 690.84,
- "end": 691.02,
- "text": "the"
- },
- {
- "start": 690.98,
- "end": 691.34,
- "text": "real"
- },
- {
- "start": 691.9,
- "end": 692.28,
- "text": "device"
- },
- {
- "start": 692.26,
- "end": 692.46,
- "text": "which"
- },
- {
- "start": 692.5,
- "end": 692.76,
- "text": "we've"
- },
- {
- "start": 692.74,
- "end": 693.04,
- "text": "built,"
- },
- {
- "start": 693.1,
- "end": 693.36,
- "text": "we're"
- },
- {
- "start": 693.32,
- "end": 693.58,
- "text": "sure"
- },
- {
- "start": 693.54,
- "end": 693.74,
- "text": "this"
- },
- {
- "start": 693.7,
- "end": 693.86,
- "text": "for"
- },
- {
- "start": 693.82,
- "end": 693.98,
- "text": "the"
- },
- {
- "start": 693.96,
- "end": 694.22,
- "text": "first"
- },
- {
- "start": 694.24,
- "end": 694.54,
- "text": "time,"
- },
- {
- "start": 694.78,
- "end": 695.86,
- "text": "that's"
- },
- {
- "start": 695.84,
- "end": 696,
- "text": "how"
- },
- {
- "start": 695.96,
- "end": 696.1,
- "text": "it"
- },
- {
- "start": 696.08,
- "end": 696.36,
- "text": "looks"
- },
- {
- "start": 696.34,
- "end": 696.56,
- "text": "like"
- },
- {
- "start": 697.78,
- "end": 698.32,
- "text": "and"
- },
- {
- "start": 698.28,
- "end": 698.36,
- "text": "a"
- },
- {
- "start": 698.38,
- "end": 698.8,
- "text": "small"
- },
- {
- "start": 698.78,
- "end": 699.18,
- "text": "device"
- },
- {
- "start": 699.14,
- "end": 699.34,
- "text": "which"
- },
- {
- "start": 699.3,
- "end": 699.42,
- "text": "you"
- },
- {
- "start": 699.38,
- "end": 699.56,
- "text": "would"
- },
- {
- "start": 699.52,
- "end": 699.64,
- "text": "be"
- },
- {
- "start": 699.6,
- "end": 700.04,
- "text": "connected"
- },
- {
- "start": 700.02,
- "end": 700.46,
- "text": "to"
- },
- {
- "start": 700.44,
- "end": 700.88,
- "text": "things."
- },
- {
- "start": 701.2,
- "end": 701.3,
- "text": "We"
- },
- {
- "start": 701.44,
- "end": 703.02,
- "text": "want"
- },
- {
- "start": 702.98,
- "end": 703.12,
- "text": "to"
- },
- {
- "start": 703.1,
- "end": 703.28,
- "text": "make"
- },
- {
- "start": 703.24,
- "end": 703.52,
- "text": "more"
- },
- {
- "start": 703.48,
- "end": 703.64,
- "text": "than"
- },
- {
- "start": 703.62,
- "end": 703.98,
- "text": "connected"
- },
- {
- "start": 703.94,
- "end": 704.44,
- "text": "interactive,"
- },
- {
- "start": 704.62,
- "end": 705.1,
- "text": "how"
- },
- {
- "start": 705.08,
- "end": 705.26,
- "text": "it's"
- },
- {
- "start": 705.24,
- "end": 705.44,
- "text": "going"
- },
- {
- "start": 705.4,
- "end": 705.5,
- "text": "to"
- },
- {
- "start": 705.46,
- "end": 705.7,
- "text": "work."
- },
- {
- "start": 705.66,
- "end": 706.18,
- "text": "So"
- },
- {
- "start": 706.14,
- "end": 706.32,
- "text": "on"
- },
- {
- "start": 706.28,
- "end": 706.48,
- "text": "the"
- },
- {
- "start": 706.44,
- "end": 706.66,
- "text": "back"
- },
- {
- "start": 706.64,
- "end": 706.8,
- "text": "you"
- },
- {
- "start": 706.78,
- "end": 706.96,
- "text": "have"
- },
- {
- "start": 706.94,
- "end": 707.02,
- "text": "a"
- },
- {
- "start": 707,
- "end": 707.26,
- "text": "little"
- },
- {
- "start": 707.62,
- "end": 708.48,
- "text": "some"
- },
- {
- "start": 708.86,
- "end": 709.06,
- "text": "few"
- },
- {
- "start": 709.04,
- "end": 710.32,
- "text": "electrodes."
- },
- {
- "start": 710.3,
- "end": 710.42,
- "text": "So"
- },
- {
- "start": 710.4,
- "end": 710.56,
- "text": "when"
- },
- {
- "start": 710.54,
- "end": 710.68,
- "text": "you"
- },
- {
- "start": 710.66,
- "end": 710.98,
- "text": "plug"
- },
- {
- "start": 710.94,
- "end": 711.1,
- "text": "them"
- },
- {
- "start": 711.08,
- "end": 711.3,
- "text": "into"
- },
- {
- "start": 711.28,
- "end": 711.64,
- "text": "different"
- },
- {
- "start": 711.64,
- "end": 711.92,
- "text": "things"
- },
- {
- "start": 712.32,
- "end": 713.54,
- "text": "like"
- },
- {
- "start": 713.52,
- "end": 713.84,
- "text": "here,"
- },
- {
- "start": 714.86,
- "end": 715.18,
- "text": "the"
- },
- {
- "start": 715.16,
- "end": 715.44,
- "text": "device"
- },
- {
- "start": 715.44,
- "end": 715.56,
- "text": "is"
- },
- {
- "start": 715.54,
- "end": 715.66,
- "text": "the"
- },
- {
- "start": 715.62,
- "end": 716.18,
- "text": "recognize"
- },
- {
- "start": 716.32,
- "end": 716.56,
- "text": "where"
- },
- {
- "start": 716.58,
- "end": 716.72,
- "text": "you"
- },
- {
- "start": 716.74,
- "end": 716.98,
- "text": "plug"
- },
- {
- "start": 716.98,
- "end": 717.1,
- "text": "in"
- },
- {
- "start": 717.12,
- "end": 717.26,
- "text": "them"
- },
- {
- "start": 717.54,
- "end": 717.86,
- "text": "and"
- },
- {
- "start": 717.82,
- "end": 717.98,
- "text": "then"
- },
- {
- "start": 717.94,
- "end": 718.68,
- "text": "re-configure"
- },
- {
- "start": 718.64,
- "end": 719.14,
- "text": "itself"
- },
- {
- "start": 719.6,
- "end": 719.78,
- "text": "to"
- },
- {
- "start": 720.3,
- "end": 720.78,
- "text": "enable"
- },
- {
- "start": 720.76,
- "end": 721.36,
- "text": "specific"
- },
- {
- "start": 721.32,
- "end": 721.86,
- "text": "functionality"
- },
- {
- "start": 721.84,
- "end": 722.08,
- "text": "for"
- },
- {
- "start": 722.08,
- "end": 722.28,
- "text": "this"
- },
- {
- "start": 722.32,
- "end": 722.86,
- "text": "particular"
- },
- {
- "start": 722.82,
- "end": 723.06,
- "text": "thing."
- },
- {
- "start": 723.28,
- "end": 723.38,
- "text": "We"
- },
- {
- "start": 724,
- "end": 724.3,
- "text": "would"
- },
- {
- "start": 724.26,
- "end": 724.46,
- "text": "like"
- },
- {
- "start": 724.44,
- "end": 724.56,
- "text": "to"
- },
- {
- "start": 724.54,
- "end": 724.74,
- "text": "give"
- },
- {
- "start": 724.72,
- "end": 724.92,
- "text": "this"
- },
- {
- "start": 724.88,
- "end": 725.24,
- "text": "device"
- },
- {
- "start": 725.22,
- "end": 725.38,
- "text": "to"
- },
- {
- "start": 725.36,
- "end": 725.62,
- "text": "make"
- },
- {
- "start": 725.58,
- "end": 725.78,
- "text": "us"
- },
- {
- "start": 725.76,
- "end": 725.92,
- "text": "of"
- },
- {
- "start": 725.92,
- "end": 726.18,
- "text": "things."
- },
- {
- "start": 726.44,
- "end": 726.84,
- "text": "People"
- },
- {
- "start": 726.8,
- "end": 726.98,
- "text": "can"
- },
- {
- "start": 726.94,
- "end": 727.12,
- "text": "make"
- },
- {
- "start": 727.08,
- "end": 727.24,
- "text": "your"
- },
- {
- "start": 727.22,
- "end": 727.76,
- "text": "clothing"
- },
- {
- "start": 727.74,
- "end": 728.16,
- "text": "and"
- },
- {
- "start": 728.12,
- "end": 728.64,
- "text": "furniture."
- },
- {
- "start": 728.62,
- "end": 729.04,
- "text": "So"
- },
- {
- "start": 729.02,
- "end": 729.22,
- "text": "so"
- },
- {
- "start": 729.2,
- "end": 729.38,
- "text": "they"
- },
- {
- "start": 729.36,
- "end": 729.52,
- "text": "can"
- },
- {
- "start": 729.52,
- "end": 729.74,
- "text": "use"
- },
- {
- "start": 729.7,
- "end": 729.86,
- "text": "it"
- },
- {
- "start": 729.84,
- "end": 730.06,
- "text": "just"
- },
- {
- "start": 730.04,
- "end": 730.2,
- "text": "like"
- },
- {
- "start": 730.16,
- "end": 730.38,
- "text": "they"
- },
- {
- "start": 730.38,
- "end": 730.6,
- "text": "use"
- },
- {
- "start": 730.88,
- "end": 730.96,
- "text": "a"
- },
- {
- "start": 731.5,
- "end": 731.86,
- "text": "button"
- },
- {
- "start": 731.88,
- "end": 732.2,
- "text": "was"
- },
- {
- "start": 732.22,
- "end": 732.6,
- "text": "zipper"
- },
- {
- "start": 733.2,
- "end": 733.36,
- "text": "and"
- },
- {
- "start": 733.32,
- "end": 733.5,
- "text": "was"
- },
- {
- "start": 733.5,
- "end": 733.64,
- "text": "he"
- },
- {
- "start": 733.66,
- "end": 733.84,
- "text": "going"
- },
- {
- "start": 733.8,
- "end": 733.9,
- "text": "to"
- },
- {
- "start": 733.88,
- "end": 734.08,
- "text": "make"
- },
- {
- "start": 734.04,
- "end": 734.22,
- "text": "with"
- },
- {
- "start": 734.2,
- "end": 734.4,
- "text": "them"
- },
- {
- "start": 734.38,
- "end": 734.56,
- "text": "it's"
- },
- {
- "start": 734.54,
- "end": 734.7,
- "text": "up"
- },
- {
- "start": 734.72,
- "end": 734.88,
- "text": "to"
- },
- {
- "start": 734.9,
- "end": 735.14,
- "text": "them."
- },
- {
- "start": 735.24,
- "end": 735.38,
- "text": "We"
- },
- {
- "start": 735.42,
- "end": 735.66,
- "text": "don't"
- },
- {
- "start": 735.72,
- "end": 735.96,
- "text": "want"
- },
- {
- "start": 735.94,
- "end": 736.08,
- "text": "to"
- },
- {
- "start": 736.1,
- "end": 736.7,
- "text": "dictate"
- },
- {
- "start": 736.72,
- "end": 736.86,
- "text": "the"
- },
- {
- "start": 736.86,
- "end": 737.14,
- "text": "use"
- },
- {
- "start": 737.14,
- "end": 737.54,
- "text": "cases."
- },
- {
- "start": 737.64,
- "end": 737.8,
- "text": "We"
- },
- {
- "start": 737.78,
- "end": 737.98,
- "text": "would"
- },
- {
- "start": 738,
- "end": 738.24,
- "text": "like"
- },
- {
- "start": 738.24,
- "end": 738.38,
- "text": "to"
- },
- {
- "start": 738.4,
- "end": 738.54,
- "text": "let"
- },
- {
- "start": 738.96,
- "end": 739.52,
- "text": "people"
- },
- {
- "start": 739.48,
- "end": 739.68,
- "text": "who"
- },
- {
- "start": 739.66,
- "end": 739.94,
- "text": "make"
- },
- {
- "start": 739.9,
- "end": 740.16,
- "text": "those"
- },
- {
- "start": 740.12,
- "end": 740.46,
- "text": "things"
- },
- {
- "start": 740.42,
- "end": 741.36,
- "text": "artists"
- },
- {
- "start": 741.44,
- "end": 741.62,
- "text": "and"
- },
- {
- "start": 741.58,
- "end": 742.1,
- "text": "designers"
- },
- {
- "start": 742.42,
- "end": 743.1,
- "text": "brands"
- },
- {
- "start": 743.08,
- "end": 743.28,
- "text": "and"
- },
- {
- "start": 743.26,
- "end": 743.82,
- "text": "craftsmen"
- },
- {
- "start": 744.26,
- "end": 744.4,
- "text": "to"
- },
- {
- "start": 744.4,
- "end": 744.9,
- "text": "imagine"
- },
- {
- "start": 744.88,
- "end": 745.06,
- "text": "and"
- },
- {
- "start": 745.02,
- "end": 745.36,
- "text": "create"
- },
- {
- "start": 745.32,
- "end": 745.5,
- "text": "this"
- },
- {
- "start": 745.56,
- "end": 745.76,
- "text": "new"
- },
- {
- "start": 745.72,
- "end": 746.14,
- "text": "world"
- },
- {
- "start": 746.5,
- "end": 747.7,
- "text": "where"
- },
- {
- "start": 747.68,
- "end": 748,
- "text": "things"
- },
- {
- "start": 747.98,
- "end": 748.16,
- "text": "are"
- },
- {
- "start": 748.12,
- "end": 748.6,
- "text": "connected"
- },
- {
- "start": 748.58,
- "end": 749.54,
- "text": "and"
- },
- {
- "start": 749.5,
- "end": 749.64,
- "text": "I"
- },
- {
- "start": 749.62,
- "end": 749.78,
- "text": "was"
- },
- {
- "start": 749.78,
- "end": 750.14,
- "text": "always"
- },
- {
- "start": 750.16,
- "end": 750.34,
- "text": "new"
- },
- {
- "start": 750.32,
- "end": 750.8,
- "text": "exciting"
- },
- {
- "start": 750.76,
- "end": 751.12,
- "text": "dual"
- },
- {
- "start": 751.1,
- "end": 751.74,
- "text": "functionality."
- },
- {
- "start": 751.8,
- "end": 752.18,
- "text": "We"
- },
- {
- "start": 752.28,
- "end": 752.6,
- "text": "don't"
- },
- {
- "start": 752.58,
- "end": 752.82,
- "text": "need"
- },
- {
- "start": 752.86,
- "end": 753.28,
- "text": "keyboards"
- },
- {
- "start": 753.6,
- "end": 754.5,
- "text": "and"
- },
- {
- "start": 754.48,
- "end": 754.94,
- "text": "scream"
- },
- {
- "start": 755.28,
- "end": 755.48,
- "text": "and"
- },
- {
- "start": 755.46,
- "end": 755.92,
- "text": "moses"
- },
- {
- "start": 755.88,
- "end": 755.98,
- "text": "to"
- },
- {
- "start": 755.96,
- "end": 756.3,
- "text": "interact"
- },
- {
- "start": 756.36,
- "end": 756.46,
- "text": "a"
- },
- {
- "start": 756.48,
- "end": 756.84,
- "text": "computer."
- },
- {
- "start": 757.08,
- "end": 757.18,
- "text": "So"
- },
- {
- "start": 757.96,
- "end": 758.28,
- "text": "been"
- },
- {
- "start": 758.26,
- "end": 758.56,
- "text": "working"
- },
- {
- "start": 758.52,
- "end": 758.64,
- "text": "on"
- },
- {
- "start": 758.6,
- "end": 758.78,
- "text": "this"
- },
- {
- "start": 758.78,
- "end": 759.1,
- "text": "idea"
- },
- {
- "start": 759.08,
- "end": 759.26,
- "text": "for"
- },
- {
- "start": 759.22,
- "end": 759.62,
- "text": "twenty"
- },
- {
- "start": 759.6,
- "end": 759.8,
- "text": "years"
- },
- {
- "start": 760.14,
- "end": 760.6,
- "text": "and"
- },
- {
- "start": 760.58,
- "end": 760.78,
- "text": "now"
- },
- {
- "start": 760.76,
- "end": 761,
- "text": "it's"
- },
- {
- "start": 761.04,
- "end": 761.42,
- "text": "taking"
- },
- {
- "start": 761.44,
- "end": 761.8,
- "text": "shape,"
- },
- {
- "start": 762.06,
- "end": 762.48,
- "text": "another"
- },
- {
- "start": 762.44,
- "end": 762.84,
- "text": "taking"
- },
- {
- "start": 762.82,
- "end": 763.16,
- "text": "shape,"
- },
- {
- "start": 763.12,
- "end": 763.28,
- "text": "what"
- },
- {
- "start": 763.26,
- "end": 763.5,
- "text": "you're"
- },
- {
- "start": 763.46,
- "end": 764.06,
- "text": "realizing"
- },
- {
- "start": 764.32,
- "end": 765.14,
- "text": "that"
- },
- {
- "start": 765.2,
- "end": 765.54,
- "text": "I"
- },
- {
- "start": 765.64,
- "end": 765.96,
- "text": "always"
- },
- {
- "start": 765.92,
- "end": 766.12,
- "text": "saw"
- },
- {
- "start": 766.1,
- "end": 766.28,
- "text": "them"
- },
- {
- "start": 766.3,
- "end": 766.64,
- "text": "working"
- },
- {
- "start": 766.62,
- "end": 767.02,
- "text": "computer"
- },
- {
- "start": 767.04,
- "end": 767.16,
- "text": "to"
- },
- {
- "start": 767.14,
- "end": 767.26,
- "text": "the"
- },
- {
- "start": 767.22,
- "end": 767.52,
- "text": "faces."
- },
- {
- "start": 767.48,
- "end": 767.6,
- "text": "I"
- },
- {
- "start": 767.62,
- "end": 767.96,
- "text": "always"
- },
- {
- "start": 767.94,
- "end": 768.12,
- "text": "tell"
- },
- {
- "start": 768.14,
- "end": 768.46,
- "text": "myself"
- },
- {
- "start": 768.44,
- "end": 768.6,
- "text": "as"
- },
- {
- "start": 768.56,
- "end": 769.02,
- "text": "interaction"
- },
- {
- "start": 769,
- "end": 769.42,
- "text": "designer"
- },
- {
- "start": 769.62,
- "end": 770.28,
- "text": "but"
- },
- {
- "start": 770.24,
- "end": 770.4,
- "text": "then"
- },
- {
- "start": 770.36,
- "end": 771.1,
- "text": "realizing"
- },
- {
- "start": 771.08,
- "end": 772,
- "text": "that"
- },
- {
- "start": 771.98,
- "end": 772.16,
- "text": "I'm"
- },
- {
- "start": 772.22,
- "end": 772.46,
- "text": "not"
- },
- {
- "start": 772.76,
- "end": 773.02,
- "text": "but"
- },
- {
- "start": 773.08,
- "end": 773.64,
- "text": "interface"
- },
- {
- "start": 773.92,
- "end": 774.3,
- "text": "what"
- },
- {
- "start": 774.26,
- "end": 774.5,
- "text": "ever"
- },
- {
- "start": 774.46,
- "end": 774.96,
- "text": "realize"
- },
- {
- "start": 774.94,
- "end": 775.1,
- "text": "at"
- },
- {
- "start": 775.18,
- "end": 775.34,
- "text": "me"
- },
- {
- "start": 775.98,
- "end": 776.18,
- "text": "and"
- },
- {
- "start": 776.2,
- "end": 776.44,
- "text": "my"
- },
- {
- "start": 776.48,
- "end": 776.78,
- "text": "team"
- },
- {
- "start": 777.16,
- "end": 779.1,
- "text": "will"
- },
- {
- "start": 779.06,
- "end": 779.2,
- "text": "be"
- },
- {
- "start": 779.24,
- "end": 779.46,
- "text": "the"
- },
- {
- "start": 779.42,
- "end": 779.62,
- "text": "new"
- },
- {
- "start": 779.72,
- "end": 780.06,
- "text": "kind"
- },
- {
- "start": 780.04,
- "end": 780.18,
- "text": "of"
- },
- {
- "start": 780.16,
- "end": 780.6,
- "text": "computer"
- },
- {
- "start": 780.92,
- "end": 781.18,
- "text": "an"
- },
- {
- "start": 781.26,
- "end": 781.86,
- "text": "ambiance"
- },
- {
- "start": 781.84,
- "end": 782.28,
- "text": "computer."
- },
- {
- "start": 782.26,
- "end": 783.1,
- "text": "Thank"
- },
- {
- "start": 783.08,
- "end": 783.2,
- "text": "you."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 7.96,
- "end": 15.3,
- "speaker": "TBC 0"
- },
- {
- "id": 1,
- "start": 15.54,
- "end": 20.52,
- "speaker": "TBC 1"
- },
- {
- "id": 2,
- "start": 20.78,
- "end": 29.74,
- "speaker": "TBC 2"
- },
- {
- "id": 3,
- "start": 30.48,
- "end": 38.96,
- "speaker": "TBC 3"
- },
- {
- "id": 4,
- "start": 39.2,
- "end": 48.36,
- "speaker": "TBC 4"
- },
- {
- "id": 5,
- "start": 48.72,
- "end": 50.34,
- "speaker": "TBC 5"
- },
- {
- "id": 6,
- "start": 50.32,
- "end": 52.18,
- "speaker": "TBC 6"
- },
- {
- "id": 7,
- "start": 52.54,
- "end": 64.76,
- "speaker": "TBC 7"
- },
- {
- "id": 8,
- "start": 64.98,
- "end": 66.86,
- "speaker": "TBC 8"
- },
- {
- "id": 9,
- "start": 66.82,
- "end": 70,
- "speaker": "TBC 9"
- },
- {
- "id": 10,
- "start": 69.96,
- "end": 72.5,
- "speaker": "TBC 10"
- },
- {
- "id": 11,
- "start": 72.7,
- "end": 74.26,
- "speaker": "TBC 11"
- },
- {
- "id": 12,
- "start": 74.28,
- "end": 76.42,
- "speaker": "TBC 12"
- },
- {
- "id": 13,
- "start": 76.7,
- "end": 78.6,
- "speaker": "TBC 13"
- },
- {
- "id": 14,
- "start": 79.38,
- "end": 80.56,
- "speaker": "TBC 14"
- },
- {
- "id": 15,
- "start": 81.14,
- "end": 83.38,
- "speaker": "TBC 15"
- },
- {
- "id": 16,
- "start": 83.4,
- "end": 84.44,
- "speaker": "TBC 16"
- },
- {
- "id": 17,
- "start": 84.66,
- "end": 86.02,
- "speaker": "TBC 17"
- },
- {
- "id": 18,
- "start": 87.36,
- "end": 88.58,
- "speaker": "TBC 18"
- },
- {
- "id": 19,
- "start": 89.12,
- "end": 95.98,
- "speaker": "TBC 19"
- },
- {
- "id": 20,
- "start": 96.32,
- "end": 98.12,
- "speaker": "TBC 20"
- },
- {
- "id": 21,
- "start": 98.12,
- "end": 100.28,
- "speaker": "TBC 21"
- },
- {
- "id": 22,
- "start": 100.56,
- "end": 106.38,
- "speaker": "TBC 22"
- },
- {
- "id": 23,
- "start": 106.68,
- "end": 115.12,
- "speaker": "TBC 23"
- },
- {
- "id": 24,
- "start": 115.32,
- "end": 117.64,
- "speaker": "TBC 24"
- },
- {
- "id": 25,
- "start": 117.84,
- "end": 129.4,
- "speaker": "TBC 25"
- },
- {
- "id": 26,
- "start": 129.36,
- "end": 136.84,
- "speaker": "TBC 26"
- },
- {
- "id": 27,
- "start": 137.08,
- "end": 138.78,
- "speaker": "TBC 27"
- },
- {
- "id": 28,
- "start": 140.08,
- "end": 143.76,
- "speaker": "TBC 28"
- },
- {
- "id": 29,
- "start": 144.04,
- "end": 150.38,
- "speaker": "TBC 29"
- },
- {
- "id": 30,
- "start": 150.66,
- "end": 153.38,
- "speaker": "TBC 30"
- },
- {
- "id": 31,
- "start": 153.46,
- "end": 166.64,
- "speaker": "TBC 31"
- },
- {
- "id": 32,
- "start": 166.62,
- "end": 176.36,
- "speaker": "TBC 32"
- },
- {
- "id": 33,
- "start": 176.58,
- "end": 185.08,
- "speaker": "TBC 33"
- },
- {
- "id": 34,
- "start": 185.34,
- "end": 192.36,
- "speaker": "TBC 34"
- },
- {
- "id": 35,
- "start": 193.1,
- "end": 196.88,
- "speaker": "TBC 35"
- },
- {
- "id": 36,
- "start": 196.86,
- "end": 200.32,
- "speaker": "TBC 36"
- },
- {
- "id": 37,
- "start": 200.52,
- "end": 201.58,
- "speaker": "TBC 37"
- },
- {
- "id": 38,
- "start": 202.78,
- "end": 210.94,
- "speaker": "TBC 38"
- },
- {
- "id": 39,
- "start": 215.36,
- "end": 224.06,
- "speaker": "TBC 39"
- },
- {
- "id": 40,
- "start": 227.38,
- "end": 231.32,
- "speaker": "TBC 40"
- },
- {
- "id": 41,
- "start": 231.3,
- "end": 245.48,
- "speaker": "TBC 41"
- },
- {
- "id": 42,
- "start": 248.3,
- "end": 250.22,
- "speaker": "TBC 42"
- },
- {
- "id": 43,
- "start": 250.18,
- "end": 261.12,
- "speaker": "TBC 43"
- },
- {
- "id": 44,
- "start": 261.42,
- "end": 266.18,
- "speaker": "TBC 44"
- },
- {
- "id": 45,
- "start": 266.46,
- "end": 274.36,
- "speaker": "TBC 45"
- },
- {
- "id": 46,
- "start": 274.34,
- "end": 280.18,
- "speaker": "TBC 46"
- },
- {
- "id": 47,
- "start": 280.16,
- "end": 283.34,
- "speaker": "TBC 47"
- },
- {
- "id": 48,
- "start": 283.8,
- "end": 290.76,
- "speaker": "TBC 48"
- },
- {
- "id": 49,
- "start": 290.86,
- "end": 301.5,
- "speaker": "TBC 49"
- },
- {
- "id": 50,
- "start": 301.48,
- "end": 301.64,
- "speaker": "TBC 50"
- },
- {
- "id": 51,
- "start": 301.6,
- "end": 304.78,
- "speaker": "TBC 51"
- },
- {
- "id": 52,
- "start": 304.74,
- "end": 315.54,
- "speaker": "TBC 52"
- },
- {
- "id": 53,
- "start": 315.96,
- "end": 317.86,
- "speaker": "TBC 53"
- },
- {
- "id": 54,
- "start": 318.16,
- "end": 323.28,
- "speaker": "TBC 54"
- },
- {
- "id": 55,
- "start": 323.5,
- "end": 328.78,
- "speaker": "TBC 55"
- },
- {
- "id": 56,
- "start": 328.84,
- "end": 330.8,
- "speaker": "TBC 56"
- },
- {
- "id": 57,
- "start": 331.12,
- "end": 334.92,
- "speaker": "TBC 57"
- },
- {
- "id": 58,
- "start": 335.14,
- "end": 338.2,
- "speaker": "TBC 58"
- },
- {
- "id": 59,
- "start": 338.16,
- "end": 345.7,
- "speaker": "TBC 59"
- },
- {
- "id": 60,
- "start": 346.6,
- "end": 349.96,
- "speaker": "TBC 60"
- },
- {
- "id": 61,
- "start": 350.32,
- "end": 351.46,
- "speaker": "TBC 61"
- },
- {
- "id": 62,
- "start": 351.42,
- "end": 364.58,
- "speaker": "TBC 62"
- },
- {
- "id": 63,
- "start": 365.02,
- "end": 371.86,
- "speaker": "TBC 63"
- },
- {
- "id": 64,
- "start": 371.84,
- "end": 380.4,
- "speaker": "TBC 64"
- },
- {
- "id": 65,
- "start": 380.68,
- "end": 383.66,
- "speaker": "TBC 65"
- },
- {
- "id": 66,
- "start": 383.84,
- "end": 390.96,
- "speaker": "TBC 66"
- },
- {
- "id": 67,
- "start": 391.2,
- "end": 395.5,
- "speaker": "TBC 67"
- },
- {
- "id": 68,
- "start": 395.84,
- "end": 400.84,
- "speaker": "TBC 68"
- },
- {
- "id": 69,
- "start": 400.82,
- "end": 404.84,
- "speaker": "TBC 69"
- },
- {
- "id": 70,
- "start": 404.88,
- "end": 425.56,
- "speaker": "TBC 70"
- },
- {
- "id": 71,
- "start": 425.84,
- "end": 436.08,
- "speaker": "TBC 71"
- },
- {
- "id": 72,
- "start": 436.36,
- "end": 441.94,
- "speaker": "TBC 72"
- },
- {
- "id": 73,
- "start": 442.24,
- "end": 449.62,
- "speaker": "TBC 73"
- },
- {
- "id": 74,
- "start": 449.6,
- "end": 450.96,
- "speaker": "TBC 74"
- },
- {
- "id": 75,
- "start": 451.16,
- "end": 463.56,
- "speaker": "TBC 75"
- },
- {
- "id": 76,
- "start": 463.52,
- "end": 464.04,
- "speaker": "TBC 76"
- },
- {
- "id": 77,
- "start": 464.24,
- "end": 470.26,
- "speaker": "TBC 77"
- },
- {
- "id": 78,
- "start": 470.58,
- "end": 478.44,
- "speaker": "TBC 78"
- },
- {
- "id": 79,
- "start": 478.48,
- "end": 483.78,
- "speaker": "TBC 79"
- },
- {
- "id": 80,
- "start": 483.8,
- "end": 487.88,
- "speaker": "TBC 80"
- },
- {
- "id": 81,
- "start": 487.84,
- "end": 493.52,
- "speaker": "TBC 81"
- },
- {
- "id": 82,
- "start": 493.82,
- "end": 505.56,
- "speaker": "TBC 82"
- },
- {
- "id": 83,
- "start": 505.56,
- "end": 510.16,
- "speaker": "TBC 83"
- },
- {
- "id": 84,
- "start": 510.12,
- "end": 511.58,
- "speaker": "TBC 84"
- },
- {
- "id": 85,
- "start": 511.58,
- "end": 512.12,
- "speaker": "TBC 85"
- },
- {
- "id": 86,
- "start": 512.1,
- "end": 518.26,
- "speaker": "TBC 86"
- },
- {
- "id": 87,
- "start": 518.24,
- "end": 522.08,
- "speaker": "TBC 87"
- },
- {
- "id": 88,
- "start": 529.06,
- "end": 530.34,
- "speaker": "TBC 88"
- },
- {
- "id": 89,
- "start": 530.86,
- "end": 530.94,
- "speaker": "TBC 89"
- },
- {
- "id": 90,
- "start": 534,
- "end": 535.82,
- "speaker": "TBC 90"
- },
- {
- "id": 91,
- "start": 535.78,
- "end": 538.32,
- "speaker": "TBC 91"
- },
- {
- "id": 92,
- "start": 538.3,
- "end": 543.62,
- "speaker": "TBC 92"
- },
- {
- "id": 93,
- "start": 543.82,
- "end": 544.4,
- "speaker": "TBC 93"
- },
- {
- "id": 94,
- "start": 544.36,
- "end": 544.76,
- "speaker": "TBC 94"
- },
- {
- "id": 95,
- "start": 544.74,
- "end": 545.88,
- "speaker": "TBC 95"
- },
- {
- "id": 96,
- "start": 545.86,
- "end": 547.68,
- "speaker": "TBC 96"
- },
- {
- "id": 97,
- "start": 548.1,
- "end": 551.2,
- "speaker": "TBC 97"
- },
- {
- "id": 98,
- "start": 551.48,
- "end": 556.98,
- "speaker": "TBC 98"
- },
- {
- "id": 99,
- "start": 556.96,
- "end": 558.62,
- "speaker": "TBC 99"
- },
- {
- "id": 100,
- "start": 558.86,
- "end": 561.28,
- "speaker": "TBC 100"
- },
- {
- "id": 101,
- "start": 561.28,
- "end": 563.62,
- "speaker": "TBC 101"
- },
- {
- "id": 102,
- "start": 563.84,
- "end": 571.38,
- "speaker": "TBC 102"
- },
- {
- "id": 103,
- "start": 571.62,
- "end": 580.46,
- "speaker": "TBC 103"
- },
- {
- "id": 104,
- "start": 580.74,
- "end": 593.46,
- "speaker": "TBC 104"
- },
- {
- "id": 105,
- "start": 593.48,
- "end": 598.86,
- "speaker": "TBC 105"
- },
- {
- "id": 106,
- "start": 599.38,
- "end": 601,
- "speaker": "TBC 106"
- },
- {
- "id": 107,
- "start": 602.38,
- "end": 607.44,
- "speaker": "TBC 107"
- },
- {
- "id": 108,
- "start": 607.58,
- "end": 616.74,
- "speaker": "TBC 108"
- },
- {
- "id": 109,
- "start": 616.88,
- "end": 618.58,
- "speaker": "TBC 109"
- },
- {
- "id": 110,
- "start": 618.84,
- "end": 619.7,
- "speaker": "TBC 110"
- },
- {
- "id": 111,
- "start": 620.04,
- "end": 627.26,
- "speaker": "TBC 111"
- },
- {
- "id": 112,
- "start": 627.62,
- "end": 633.86,
- "speaker": "TBC 112"
- },
- {
- "id": 113,
- "start": 634.58,
- "end": 637.5,
- "speaker": "TBC 113"
- },
- {
- "id": 114,
- "start": 637.82,
- "end": 643.8,
- "speaker": "TBC 114"
- },
- {
- "id": 115,
- "start": 644.1,
- "end": 646.52,
- "speaker": "TBC 115"
- },
- {
- "id": 116,
- "start": 646.54,
- "end": 650.98,
- "speaker": "TBC 116"
- },
- {
- "id": 117,
- "start": 652.1,
- "end": 653.74,
- "speaker": "TBC 117"
- },
- {
- "id": 118,
- "start": 654.08,
- "end": 655.52,
- "speaker": "TBC 118"
- },
- {
- "id": 119,
- "start": 655.52,
- "end": 660.3,
- "speaker": "TBC 119"
- },
- {
- "id": 120,
- "start": 660.28,
- "end": 662.04,
- "speaker": "TBC 120"
- },
- {
- "id": 121,
- "start": 662.18,
- "end": 668.46,
- "speaker": "TBC 121"
- },
- {
- "id": 122,
- "start": 668.58,
- "end": 677.6,
- "speaker": "TBC 122"
- },
- {
- "id": 123,
- "start": 677.9,
- "end": 688.66,
- "speaker": "TBC 123"
- },
- {
- "id": 124,
- "start": 688.98,
- "end": 700.88,
- "speaker": "TBC 124"
- },
- {
- "id": 125,
- "start": 701.2,
- "end": 705.7,
- "speaker": "TBC 125"
- },
- {
- "id": 126,
- "start": 705.66,
- "end": 710.32,
- "speaker": "TBC 126"
- },
- {
- "id": 127,
- "start": 710.3,
- "end": 723.06,
- "speaker": "TBC 127"
- },
- {
- "id": 128,
- "start": 723.28,
- "end": 726.18,
- "speaker": "TBC 128"
- },
- {
- "id": 129,
- "start": 726.44,
- "end": 728.64,
- "speaker": "TBC 129"
- },
- {
- "id": 130,
- "start": 728.62,
- "end": 735.14,
- "speaker": "TBC 130"
- },
- {
- "id": 131,
- "start": 735.24,
- "end": 737.54,
- "speaker": "TBC 131"
- },
- {
- "id": 132,
- "start": 737.64,
- "end": 751.74,
- "speaker": "TBC 132"
- },
- {
- "id": 133,
- "start": 751.8,
- "end": 756.84,
- "speaker": "TBC 133"
- },
- {
- "id": 134,
- "start": 757.08,
- "end": 767.52,
- "speaker": "TBC 134"
- },
- {
- "id": 135,
- "start": 767.48,
- "end": 782.28,
- "speaker": "TBC 135"
- },
- {
- "id": 136,
- "start": 782.26,
- "end": 783.2,
- "speaker": "TBC 136"
- }
- ]
- },
- "description": "Ted Talk by Ivan Poupyrev "
- },
- {
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "title": "Test Transcript One",
- "description": "Example of in progress transcript",
- "url": null,
- "status": "in-progress",
- "_id": "f5a8dc8c863243d19528e1eff60d91d9"
- },
- {
- "projectId": "94346281c4ad4938b7d0ae6fa9899bec",
- "title": "Test Transcript Two",
- "description": "Example of transcript with an error",
- "url": null,
- "status": "error",
- "errorMessage": "Some meaningfull error message that tells you why the transcript failed, and what to do about it",
- "_id": "f5a8dc8c863243d19528e1eff60d91d8"
- },
- {
- "_id": "1000cjw29xii80000ird74yb19swa",
- "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
- "title": "Soleio Cuervo",
- "description": "Soleio Cuervo, Former Facebook Product Designer. Interview for PBS Frontline, The Facebook Dilemma",
- "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Soleio+Cuervo-OIAUfZBd_7w.mp4",
- "clipName": "The Facebook Dilemma - Soleio Cuervo-OIAUfZBd_7w.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "id": 0,
- "start": 1.41,
- "end": 1.63,
- "text": "So"
- },
- {
- "id": 1,
- "start": 1.63,
- "end": 1.94,
- "text": "tell"
- },
- {
- "id": 2,
- "start": 2.175,
- "end": 2.42,
- "text": "me,"
- },
- {
- "id": 3,
- "start": 2.72,
- "end": 2.9,
- "text": "let’s"
- },
- {
- "id": 4,
- "start": 2.9,
- "end": 3.14,
- "text": "start"
- },
- {
- "id": 5,
- "start": 3.14,
- "end": 3.21,
- "text": "at"
- },
- {
- "id": 6,
- "start": 3.21,
- "end": 3.28,
- "text": "the"
- },
- {
- "id": 7,
- "start": 3.28,
- "end": 4.88,
- "text": "beginning."
- },
- {
- "id": 8,
- "start": 4.88,
- "end": 5.11,
- "text": "How’d"
- },
- {
- "id": 9,
- "start": 5.11,
- "end": 5.2,
- "text": "you"
- },
- {
- "id": 10,
- "start": 5.2,
- "end": 5.4,
- "text": "get"
- },
- {
- "id": 11,
- "start": 5.4,
- "end": 5.57,
- "text": "to"
- },
- {
- "id": 12,
- "start": 5.57,
- "end": 6.04,
- "text": "Facebook"
- },
- {
- "id": 13,
- "start": 6.04,
- "end": 6.1,
- "text": "in"
- },
- {
- "id": 14,
- "start": 6.1,
- "end": 6.18,
- "text": "the"
- },
- {
- "id": 15,
- "start": 6.18,
- "end": 7.21,
- "text": "beginning?"
- },
- {
- "id": 16,
- "start": 7.21,
- "end": 7.5,
- "text": "So"
- },
- {
- "id": 17,
- "start": 7.5,
- "end": 7.57,
- "text": "I"
- },
- {
- "id": 18,
- "start": 7.57,
- "end": 7.94,
- "text": "joined"
- },
- {
- "id": 19,
- "start": 7.94,
- "end": 8.01,
- "text": "the"
- },
- {
- "id": 20,
- "start": 8.01,
- "end": 9.01,
- "text": "company"
- },
- {
- "id": 21,
- "start": 9.01,
- "end": 9.16,
- "text": "in"
- },
- {
- "id": 22,
- "start": 9.16,
- "end": 9.25,
- "text": "the"
- },
- {
- "id": 23,
- "start": 9.25,
- "end": 9.49,
- "text": "late"
- },
- {
- "id": 24,
- "start": 9.49,
- "end": 9.73,
- "text": "summer"
- },
- {
- "id": 25,
- "start": 9.973333333333334,
- "end": 10.266666666666667,
- "text": "of"
- },
- {
- "id": 26,
- "start": 10.456666666666667,
- "end": 10.803333333333335,
- "text": "2005."
- },
- {
- "id": 27,
- "start": 10.94,
- "end": 11.34,
- "text": "At"
- },
- {
- "id": 28,
- "start": 11.34,
- "end": 11.43,
- "text": "the"
- },
- {
- "id": 29,
- "start": 11.43,
- "end": 11.7,
- "text": "time,"
- },
- {
- "id": 30,
- "start": 11.7,
- "end": 11.73,
- "text": "I"
- },
- {
- "id": 31,
- "start": 11.73,
- "end": 11.85,
- "text": "was"
- },
- {
- "id": 32,
- "start": 11.85,
- "end": 11.94,
- "text": "an"
- },
- {
- "id": 33,
- "start": 11.94,
- "end": 12.34,
- "text": "independent"
- },
- {
- "id": 34,
- "start": 12.34,
- "end": 12.67,
- "text": "designer"
- },
- {
- "id": 35,
- "start": 12.67,
- "end": 12.76,
- "text": "and"
- },
- {
- "id": 36,
- "start": 12.76,
- "end": 13.29,
- "text": "developer"
- },
- {
- "id": 37,
- "start": 13.29,
- "end": 13.62,
- "text": "working"
- },
- {
- "id": 38,
- "start": 13.62,
- "end": 13.72,
- "text": "in"
- },
- {
- "id": 39,
- "start": 13.72,
- "end": 13.91,
- "text": "San"
- },
- {
- "id": 40,
- "start": 14.33,
- "end": 14.635000000000002,
- "text": "Francisco."
- },
- {
- "id": 41,
- "start": 14.94,
- "end": 15.36,
- "text": "And"
- },
- {
- "id": 42,
- "start": 15.36,
- "end": 15.43,
- "text": "a"
- },
- {
- "id": 43,
- "start": 15.43,
- "end": 15.86,
- "text": "project"
- },
- {
- "id": 44,
- "start": 15.86,
- "end": 15.99,
- "text": "that"
- },
- {
- "id": 45,
- "start": 16.0125,
- "end": 16.1575,
- "text": "I"
- },
- {
- "id": 46,
- "start": 16.165,
- "end": 16.325,
- "text": "had"
- },
- {
- "id": 47,
- "start": 16.3175,
- "end": 16.4925,
- "text": "shipped"
- },
- {
- "id": 48,
- "start": 16.47,
- "end": 16.66,
- "text": "that"
- },
- {
- "id": 49,
- "start": 16.66,
- "end": 18.11,
- "text": "summer"
- },
- {
- "id": 50,
- "start": 18.11,
- "end": 18.35,
- "text": "caught"
- },
- {
- "id": 51,
- "start": 18.35,
- "end": 18.54,
- "text": "some"
- },
- {
- "id": 52,
- "start": 18.71,
- "end": 18.884999999999998,
- "text": "traction"
- },
- {
- "id": 53,
- "start": 19.07,
- "end": 19.23,
- "text": "in"
- },
- {
- "id": 54,
- "start": 19.23,
- "end": 19.31,
- "text": "the"
- },
- {
- "id": 55,
- "start": 19.31,
- "end": 19.62,
- "text": "design"
- },
- {
- "id": 56,
- "start": 19.62,
- "end": 20.13,
- "text": "community"
- },
- {
- "id": 57,
- "start": 19.965,
- "end": 20.354999999999997,
- "text": "and"
- },
- {
- "id": 58,
- "start": 20.31,
- "end": 20.58,
- "text": "won"
- },
- {
- "id": 59,
- "start": 20.58,
- "end": 20.62,
- "text": "a"
- },
- {
- "id": 60,
- "start": 20.62,
- "end": 20.86,
- "text": "couple"
- },
- {
- "id": 61,
- "start": 20.86,
- "end": 20.92,
- "text": "of"
- },
- {
- "id": 62,
- "start": 20.92,
- "end": 22.01,
- "text": "awards"
- },
- {
- "id": 63,
- "start": 22.01,
- "end": 22.17,
- "text": "and"
- },
- {
- "id": 64,
- "start": 22.17,
- "end": 22.54,
- "text": "somehow"
- },
- {
- "id": 65,
- "start": 22.54,
- "end": 22.75,
- "text": "ended"
- },
- {
- "id": 66,
- "start": 22.75,
- "end": 22.89,
- "text": "up"
- },
- {
- "id": 67,
- "start": 22.89,
- "end": 23.03,
- "text": "on"
- },
- {
- "id": 68,
- "start": 22.995,
- "end": 23.270000000000003,
- "text": "the"
- },
- {
- "id": 69,
- "start": 23.1,
- "end": 23.51,
- "text": "plate"
- },
- {
- "id": 70,
- "start": 23.51,
- "end": 23.87,
- "text": "of"
- },
- {
- "id": 71,
- "start": 23.87,
- "end": 23.97,
- "text": "an"
- },
- {
- "id": 72,
- "start": 23.97,
- "end": 24.18,
- "text": "early"
- },
- {
- "id": 73,
- "start": 24.18,
- "end": 24.8,
- "text": "employee"
- },
- {
- "id": 74,
- "start": 24.8,
- "end": 24.91,
- "text": "at"
- },
- {
- "id": 75,
- "start": 24.91,
- "end": 24.99,
- "text": "the"
- },
- {
- "id": 76,
- "start": 24.99,
- "end": 25.43,
- "text": "company."
- },
- {
- "id": 77,
- "start": 25.43,
- "end": 25.57,
- "text": "And"
- },
- {
- "id": 78,
- "start": 25.57,
- "end": 25.68,
- "text": "so"
- },
- {
- "id": 79,
- "start": 25.68,
- "end": 25.76,
- "text": "they"
- },
- {
- "id": 80,
- "start": 25.76,
- "end": 26.05,
- "text": "reached"
- },
- {
- "id": 81,
- "start": 26.05,
- "end": 27.17,
- "text": "out,"
- },
- {
- "id": 82,
- "start": 27.17,
- "end": 27.59,
- "text": "because"
- },
- {
- "id": 83,
- "start": 27.59,
- "end": 27.74,
- "text": "the"
- },
- {
- "id": 84,
- "start": 27.74,
- "end": 27.93,
- "text": "web"
- },
- {
- "id": 85,
- "start": 27.93,
- "end": 28.15,
- "text": "being"
- },
- {
- "id": 86,
- "start": 28.15,
- "end": 28.22,
- "text": "the"
- },
- {
- "id": 87,
- "start": 28.22,
- "end": 28.59,
- "text": "web"
- },
- {
- "id": 88,
- "start": 28.59,
- "end": 28.73,
- "text": "as"
- },
- {
- "id": 89,
- "start": 28.73,
- "end": 28.8,
- "text": "it"
- },
- {
- "id": 90,
- "start": 28.8,
- "end": 28.97,
- "text": "was"
- },
- {
- "id": 91,
- "start": 28.97,
- "end": 29.18,
- "text": "back"
- },
- {
- "id": 92,
- "start": 29.18,
- "end": 29.48,
- "text": "then,"
- },
- {
- "id": 93,
- "start": 29.486666666666665,
- "end": 29.756666666666664,
- "text": "and"
- },
- {
- "id": 94,
- "start": 29.793333333333333,
- "end": 30.03333333333333,
- "text": "they"
- },
- {
- "id": 95,
- "start": 30.1,
- "end": 30.31,
- "text": "reached"
- },
- {
- "id": 96,
- "start": 30.25,
- "end": 30.490000000000002,
- "text": "out"
- },
- {
- "id": 97,
- "start": 30.4,
- "end": 30.67,
- "text": "and"
- },
- {
- "id": 98,
- "start": 30.55,
- "end": 30.85,
- "text": "they"
- },
- {
- "id": 99,
- "start": 30.700000000000003,
- "end": 31.03,
- "text": "asked,"
- },
- {
- "id": 100,
- "start": 30.85,
- "end": 31.21,
- "text": "“Hey,"
- },
- {
- "id": 101,
- "start": 31.185000000000002,
- "end": 31.445,
- "text": "you"
- },
- {
- "id": 102,
- "start": 31.52,
- "end": 31.68,
- "text": "live"
- },
- {
- "id": 103,
- "start": 31.68,
- "end": 31.75,
- "text": "in"
- },
- {
- "id": 104,
- "start": 31.75,
- "end": 31.9,
- "text": "San"
- },
- {
- "id": 105,
- "start": 31.9,
- "end": 32.64,
- "text": "Francisco."
- },
- {
- "id": 106,
- "start": 32.64,
- "end": 32.82,
- "text": "Would"
- },
- {
- "id": 107,
- "start": 32.82,
- "end": 32.89,
- "text": "you"
- },
- {
- "id": 108,
- "start": 32.89,
- "end": 32.98,
- "text": "be"
- },
- {
- "id": 109,
- "start": 32.98,
- "end": 33.26,
- "text": "interested"
- },
- {
- "id": 110,
- "start": 33.26,
- "end": 33.33,
- "text": "in"
- },
- {
- "id": 111,
- "start": 33.33,
- "end": 33.52,
- "text": "coming"
- },
- {
- "id": 112,
- "start": 33.52,
- "end": 33.63,
- "text": "down"
- },
- {
- "id": 113,
- "start": 33.63,
- "end": 33.7,
- "text": "to"
- },
- {
- "id": 114,
- "start": 33.803333333333335,
- "end": 33.92,
- "text": "Palo"
- },
- {
- "id": 115,
- "start": 33.97666666666667,
- "end": 34.14,
- "text": "Alto"
- },
- {
- "id": 116,
- "start": 34.15,
- "end": 34.36,
- "text": "and"
- },
- {
- "id": 117,
- "start": 34.36,
- "end": 34.64,
- "text": "meeting"
- },
- {
- "id": 118,
- "start": 34.64,
- "end": 34.77,
- "text": "with"
- },
- {
- "id": 119,
- "start": 34.77,
- "end": 35.64,
- "text": "us?”"
- },
- {
- "id": 120,
- "start": 35.18,
- "end": 36.36,
- "text": "And"
- },
- {
- "id": 121,
- "start": 35.63333333333333,
- "end": 36.57333333333333,
- "text": "they"
- },
- {
- "id": 122,
- "start": 36.086666666666666,
- "end": 36.78666666666666,
- "text": "were"
- },
- {
- "id": 123,
- "start": 36.54,
- "end": 37,
- "text": "persistent"
- },
- {
- "id": 124,
- "start": 37,
- "end": 37.23,
- "text": "about"
- },
- {
- "id": 125,
- "start": 37.23,
- "end": 37.3,
- "text": "it."
- },
- {
- "id": 126,
- "start": 37.36937499999999,
- "end": 37.443749999999994,
- "text": "They"
- },
- {
- "id": 127,
- "start": 37.50874999999999,
- "end": 37.5875,
- "text": "were"
- },
- {
- "id": 128,
- "start": 37.64812499999999,
- "end": 37.73125,
- "text": "like,"
- },
- {
- "id": 129,
- "start": 37.787499999999994,
- "end": 37.875,
- "text": "“Hey,"
- },
- {
- "id": 130,
- "start": 37.926874999999995,
- "end": 38.01875,
- "text": "you"
- },
- {
- "id": 131,
- "start": 38.06625,
- "end": 38.1625,
- "text": "should,"
- },
- {
- "id": 132,
- "start": 38.205625,
- "end": 38.306250000000006,
- "text": "you"
- },
- {
- "id": 133,
- "start": 38.345,
- "end": 38.45,
- "text": "know,"
- },
- {
- "id": 134,
- "start": 38.484375,
- "end": 38.59375,
- "text": "hop"
- },
- {
- "id": 135,
- "start": 38.62375,
- "end": 38.7375,
- "text": "on"
- },
- {
- "id": 136,
- "start": 38.763125,
- "end": 38.88125,
- "text": "the"
- },
- {
- "id": 137,
- "start": 38.9025,
- "end": 39.025000000000006,
- "text": "Caltrain"
- },
- {
- "id": 138,
- "start": 39.041875000000005,
- "end": 39.16875,
- "text": "and"
- },
- {
- "id": 139,
- "start": 39.18125,
- "end": 39.3125,
- "text": "come"
- },
- {
- "id": 140,
- "start": 39.320625,
- "end": 39.45625,
- "text": "meet"
- },
- {
- "id": 141,
- "start": 39.46,
- "end": 39.6,
- "text": "with"
- },
- {
- "id": 142,
- "start": 39.6,
- "end": 39.73,
- "text": "us.”"
- },
- {
- "id": 143,
- "start": 39.73,
- "end": 39.84,
- "text": "And"
- },
- {
- "id": 144,
- "start": 40.11,
- "end": 40.61,
- "text": "anso"
- },
- {
- "id": 145,
- "start": 40.49,
- "end": 41.38,
- "text": "one"
- },
- {
- "id": 146,
- "start": 41.38,
- "end": 41.77,
- "text": "fateful"
- },
- {
- "id": 147,
- "start": 41.77,
- "end": 41.92,
- "text": "day"
- },
- {
- "id": 148,
- "start": 41.92,
- "end": 42,
- "text": "in"
- },
- {
- "id": 149,
- "start": 42,
- "end": 42.59,
- "text": "September"
- },
- {
- "id": 150,
- "start": 42.59,
- "end": 42.72,
- "text": "of"
- },
- {
- "id": 151,
- "start": 42.72,
- "end": 42.92,
- "text": "that"
- },
- {
- "id": 152,
- "start": 42.92,
- "end": 43.31,
- "text": "year,"
- },
- {
- "id": 153,
- "start": 43.31,
- "end": 43.61,
- "text": "I"
- },
- {
- "id": 154,
- "start": 43.61,
- "end": 43.89,
- "text": "hopped"
- },
- {
- "id": 155,
- "start": 43.89,
- "end": 43.96,
- "text": "on"
- },
- {
- "id": 156,
- "start": 43.96,
- "end": 44.02,
- "text": "the"
- },
- {
- "id": 157,
- "start": 44.02,
- "end": 44.76,
- "text": "Caltrain,"
- },
- {
- "id": 158,
- "start": 44.76,
- "end": 44.98,
- "text": "went"
- },
- {
- "id": 159,
- "start": 44.98,
- "end": 45.13,
- "text": "down"
- },
- {
- "id": 160,
- "start": 45.13,
- "end": 45.22,
- "text": "to"
- },
- {
- "id": 161,
- "start": 45.31,
- "end": 45.39,
- "text": "Palo"
- },
- {
- "id": 162,
- "start": 45.49,
- "end": 45.559999999999995,
- "text": "Alto"
- },
- {
- "id": 163,
- "start": 45.67,
- "end": 45.73,
- "text": "for"
- },
- {
- "id": 164,
- "start": 45.73,
- "end": 45.81,
- "text": "the"
- },
- {
- "id": 165,
- "start": 45.81,
- "end": 46.07,
- "text": "first"
- },
- {
- "id": 166,
- "start": 46.07,
- "end": 47.22,
- "text": "time,"
- },
- {
- "id": 167,
- "start": 47.22,
- "end": 47.44,
- "text": "came"
- },
- {
- "id": 168,
- "start": 47.44,
- "end": 47.54,
- "text": "to"
- },
- {
- "id": 169,
- "start": 47.54,
- "end": 47.72,
- "text": "this"
- },
- {
- "id": 170,
- "start": 47.72,
- "end": 48.14,
- "text": "office,"
- },
- {
- "id": 171,
- "start": 48.14,
- "end": 49.07,
- "text": "and"
- },
- {
- "id": 172,
- "start": 49.07,
- "end": 49.17,
- "text": "it"
- },
- {
- "id": 173,
- "start": 49.17,
- "end": 49.29,
- "text": "was"
- },
- {
- "id": 174,
- "start": 49.29,
- "end": 49.85,
- "text": "a"
- },
- {
- "id": 175,
- "start": 49.85,
- "end": 50.1,
- "text": "bunch"
- },
- {
- "id": 176,
- "start": 50.1,
- "end": 50.17,
- "text": "of"
- },
- {
- "id": 177,
- "start": 50.17,
- "end": 50.49,
- "text": "folks"
- },
- {
- "id": 178,
- "start": 50.49,
- "end": 50.6,
- "text": "who"
- },
- {
- "id": 179,
- "start": 50.6,
- "end": 50.86,
- "text": "were"
- },
- {
- "id": 180,
- "start": 50.86,
- "end": 51.06,
- "text": "like"
- },
- {
- "id": 181,
- "start": 51.06,
- "end": 51.26,
- "text": "three"
- },
- {
- "id": 182,
- "start": 51.26,
- "end": 51.73,
- "text": "years"
- },
- {
- "id": 183,
- "start": 51.73,
- "end": 52.01,
- "text": "younger"
- },
- {
- "id": 184,
- "start": 52.01,
- "end": 52.14,
- "text": "than"
- },
- {
- "id": 185,
- "start": 52.14,
- "end": 52.24,
- "text": "I"
- },
- {
- "id": 186,
- "start": 52.24,
- "end": 52.71,
- "text": "was."
- },
- {
- "id": 187,
- "start": 52.71,
- "end": 53.47,
- "text": "I"
- },
- {
- "id": 188,
- "start": 53.47,
- "end": 53.84,
- "text": "felt"
- },
- {
- "id": 189,
- "start": 53.84,
- "end": 53.97,
- "text": "like"
- },
- {
- "id": 190,
- "start": 53.97,
- "end": 54.16,
- "text": "half"
- },
- {
- "id": 191,
- "start": 54.16,
- "end": 54.23,
- "text": "of"
- },
- {
- "id": 192,
- "start": 54.23,
- "end": 54.34,
- "text": "them"
- },
- {
- "id": 193,
- "start": 54.34,
- "end": 54.52,
- "text": "were"
- },
- {
- "id": 194,
- "start": 54.52,
- "end": 54.89,
- "text": "college"
- },
- {
- "id": 195,
- "start": 54.89,
- "end": 55.4,
- "text": "dropouts"
- },
- {
- "id": 196,
- "start": 55.4,
- "end": 55.5,
- "text": "and"
- },
- {
- "id": 197,
- "start": 55.47,
- "end": 55.64333333333333,
- "text": "they"
- },
- {
- "id": 198,
- "start": 55.54,
- "end": 55.78666666666666,
- "text": "were"
- },
- {
- "id": 199,
- "start": 55.61,
- "end": 55.93,
- "text": "working"
- },
- {
- "id": 200,
- "start": 55.93,
- "end": 56.05,
- "text": "on"
- },
- {
- "id": 201,
- "start": 56.05,
- "end": 56.34,
- "text": "this"
- },
- {
- "id": 202,
- "start": 56.34,
- "end": 56.78,
- "text": "service"
- },
- {
- "id": 203,
- "start": 56.78,
- "end": 57.22,
- "text": "that"
- },
- {
- "id": 204,
- "start": 57.22,
- "end": 57.39,
- "text": "I"
- },
- {
- "id": 205,
- "start": 57.39,
- "end": 57.53,
- "text": "knew"
- },
- {
- "id": 206,
- "start": 57.53,
- "end": 57.81,
- "text": "very"
- },
- {
- "id": 207,
- "start": 57.81,
- "end": 58.03,
- "text": "little"
- },
- {
- "id": 208,
- "start": 58.03,
- "end": 59.01,
- "text": "about."
- },
- {
- "id": 209,
- "start": 59.01,
- "end": 59.05,
- "text": "I"
- },
- {
- "id": 210,
- "start": 59.05,
- "end": 59.42,
- "text": "understood"
- },
- {
- "id": 211,
- "start": 59.42,
- "end": 59.48,
- "text": "it"
- },
- {
- "id": 212,
- "start": 59.48,
- "end": 59.58,
- "text": "was"
- },
- {
- "id": 213,
- "start": 59.58,
- "end": 59.69,
- "text": "in"
- },
- {
- "id": 214,
- "start": 59.69,
- "end": 59.84,
- "text": "the"
- },
- {
- "id": 215,
- "start": 59.84,
- "end": 60.15,
- "text": "social"
- },
- {
- "id": 216,
- "start": 60.15,
- "end": 60.48,
- "text": "networking"
- },
- {
- "id": 217,
- "start": 60.48,
- "end": 62.32,
- "text": "space."
- },
- {
- "id": 218,
- "start": 62.32,
- "end": 62.9,
- "text": "And"
- },
- {
- "id": 219,
- "start": 62.9,
- "end": 63.01,
- "text": "it"
- },
- {
- "id": 220,
- "start": 63.01,
- "end": 63.3,
- "text": "became"
- },
- {
- "id": 221,
- "start": 63.3,
- "end": 63.59,
- "text": "quickly"
- },
- {
- "id": 222,
- "start": 63.59,
- "end": 63.85,
- "text": "apparent"
- },
- {
- "id": 223,
- "start": 63.85,
- "end": 63.91,
- "text": "to"
- },
- {
- "id": 224,
- "start": 63.91,
- "end": 63.99,
- "text": "me"
- },
- {
- "id": 225,
- "start": 63.99,
- "end": 64.17,
- "text": "that,"
- },
- {
- "id": 226,
- "start": 64.17,
- "end": 64.93,
- "text": "one,"
- },
- {
- "id": 227,
- "start": 64.93,
- "end": 65.06,
- "text": "they"
- },
- {
- "id": 228,
- "start": 65.06,
- "end": 65.23,
- "text": "had"
- },
- {
- "id": 229,
- "start": 65.23,
- "end": 65.57,
- "text": "very"
- },
- {
- "id": 230,
- "start": 65.57,
- "end": 66.76,
- "text": "lofty"
- },
- {
- "id": 231,
- "start": 66.76,
- "end": 67.66,
- "text": "aspirations"
- },
- {
- "id": 232,
- "start": 67.66,
- "end": 67.77,
- "text": "or"
- },
- {
- "id": 233,
- "start": 67.77,
- "end": 68.31,
- "text": "ambitions"
- },
- {
- "id": 234,
- "start": 68.31,
- "end": 69.31,
- "text": "for"
- },
- {
- "id": 235,
- "start": 69.31,
- "end": 69.47,
- "text": "this"
- },
- {
- "id": 236,
- "start": 69.47,
- "end": 69.88,
- "text": "company"
- },
- {
- "id": 237,
- "start": 69.655,
- "end": 70.2375,
- "text": "that"
- },
- {
- "id": 238,
- "start": 69.84,
- "end": 70.595,
- "text": "they"
- },
- {
- "id": 239,
- "start": 70.02499999999999,
- "end": 70.9525,
- "text": "were"
- },
- {
- "id": 240,
- "start": 70.21,
- "end": 71.31,
- "text": "building."
- },
- {
- "id": 241,
- "start": 71.31,
- "end": 71.54,
- "text": "But"
- },
- {
- "id": 242,
- "start": 71.54,
- "end": 71.73,
- "text": "then"
- },
- {
- "id": 243,
- "start": 71.73,
- "end": 72.05,
- "text": "two,"
- },
- {
- "id": 244,
- "start": 72.05,
- "end": 72.89,
- "text": "they"
- },
- {
- "id": 245,
- "start": 72.89,
- "end": 73.14,
- "text": "seemed"
- },
- {
- "id": 246,
- "start": 73.14,
- "end": 73.17,
- "text": "a"
- },
- {
- "id": 247,
- "start": 73.17,
- "end": 73.34,
- "text": "little"
- },
- {
- "id": 248,
- "start": 73.34,
- "end": 73.45,
- "text": "bit"
- },
- {
- "id": 249,
- "start": 73.45,
- "end": 73.61,
- "text": "too"
- },
- {
- "id": 250,
- "start": 73.61,
- "end": 73.93,
- "text": "smart"
- },
- {
- "id": 251,
- "start": 73.93,
- "end": 74,
- "text": "to"
- },
- {
- "id": 252,
- "start": 74,
- "end": 74.09,
- "text": "be"
- },
- {
- "id": 253,
- "start": 74.09,
- "end": 74.42,
- "text": "working"
- },
- {
- "id": 254,
- "start": 74.42,
- "end": 74.52,
- "text": "on"
- },
- {
- "id": 255,
- "start": 74.52,
- "end": 74.85,
- "text": "social"
- },
- {
- "id": 256,
- "start": 74.85,
- "end": 76.27,
- "text": "networking."
- },
- {
- "id": 257,
- "start": 76.27,
- "end": 76.51,
- "text": "I"
- },
- {
- "id": 258,
- "start": 76.51,
- "end": 76.75,
- "text": "kind"
- },
- {
- "id": 259,
- "start": 76.75,
- "end": 76.92,
- "text": "of,"
- },
- {
- "id": 260,
- "start": 76.92,
- "end": 77.11,
- "text": "when"
- },
- {
- "id": 261,
- "start": 77.11,
- "end": 77.18,
- "text": "I"
- },
- {
- "id": 262,
- "start": 77.18,
- "end": 77.35,
- "text": "thought"
- },
- {
- "id": 263,
- "start": 77.35,
- "end": 77.43,
- "text": "of"
- },
- {
- "id": 264,
- "start": 77.43,
- "end": 77.72,
- "text": "social"
- },
- {
- "id": 265,
- "start": 77.72,
- "end": 78.23,
- "text": "networking,"
- },
- {
- "id": 266,
- "start": 78.23,
- "end": 78.26,
- "text": "I"
- },
- {
- "id": 267,
- "start": 78.26,
- "end": 78.42,
- "text": "thought"
- },
- {
- "id": 268,
- "start": 78.42,
- "end": 78.68,
- "text": "about"
- },
- {
- "id": 269,
- "start": 78.67,
- "end": 79.02,
- "text": "the"
- },
- {
- "id": 270,
- "start": 79.075,
- "end": 79.3,
- "text": "incumbent[s]"
- },
- {
- "id": 271,
- "start": 79.48,
- "end": 79.58,
- "text": "at"
- },
- {
- "id": 272,
- "start": 79.58,
- "end": 79.65,
- "text": "the"
- },
- {
- "id": 273,
- "start": 79.65,
- "end": 79.91,
- "text": "time"
- },
- {
- "id": 274,
- "start": 80.01666666666667,
- "end": 80.31333333333333,
- "text": "–"
- },
- {
- "id": 275,
- "start": 80.38333333333333,
- "end": 80.71666666666667,
- "text": "Myspace"
- },
- {
- "id": 276,
- "start": 80.75,
- "end": 81.12,
- "text": "or"
- },
- {
- "id": 277,
- "start": 81.34,
- "end": 81.625,
- "text": "Friendster."
- },
- {
- "id": 278,
- "start": 81.93,
- "end": 82.13,
- "text": "And"
- },
- {
- "id": 279,
- "start": 82.13,
- "end": 82.23,
- "text": "so"
- },
- {
- "id": 280,
- "start": 82.23,
- "end": 82.27,
- "text": "I"
- },
- {
- "id": 281,
- "start": 82.27,
- "end": 82.47,
- "text": "didn’t"
- },
- {
- "id": 282,
- "start": 82.47,
- "end": 82.66,
- "text": "quite"
- },
- {
- "id": 283,
- "start": 82.66,
- "end": 83.05,
- "text": "understand"
- },
- {
- "id": 284,
- "start": 83.05,
- "end": 84.54,
- "text": "how"
- },
- {
- "id": 285,
- "start": 84.54,
- "end": 84.66,
- "text": "they"
- },
- {
- "id": 286,
- "start": 84.66,
- "end": 84.78,
- "text": "had"
- },
- {
- "id": 287,
- "start": 84.78,
- "end": 84.92,
- "text": "kind"
- },
- {
- "id": 288,
- "start": 84.92,
- "end": 84.99,
- "text": "of"
- },
- {
- "id": 289,
- "start": 85.12,
- "end": 85.24666666666667,
- "text": "amassed"
- },
- {
- "id": 290,
- "start": 85.32,
- "end": 85.50333333333334,
- "text": "a"
- },
- {
- "id": 291,
- "start": 85.52,
- "end": 85.76,
- "text": "group"
- },
- {
- "id": 292,
- "start": 85.76,
- "end": 85.87,
- "text": "of,"
- },
- {
- "id": 293,
- "start": 85.87,
- "end": 86.2,
- "text": "like,"
- },
- {
- "id": 294,
- "start": 86.23666666666668,
- "end": 86.56333333333335,
- "text": "bona"
- },
- {
- "id": 295,
- "start": 86.60333333333334,
- "end": 86.92666666666668,
- "text": "fide"
- },
- {
- "id": 296,
- "start": 86.97,
- "end": 87.29,
- "text": "young"
- },
- {
- "id": 297,
- "start": 87.29,
- "end": 88.02,
- "text": "technologists"
- },
- {
- "id": 298,
- "start": 87.81000000000002,
- "end": 88.28,
- "text": "to"
- },
- {
- "id": 299,
- "start": 88.33,
- "end": 88.54,
- "text": "work"
- },
- {
- "id": 300,
- "start": 88.54,
- "end": 88.62,
- "text": "in"
- },
- {
- "id": 301,
- "start": 88.62,
- "end": 88.73,
- "text": "this"
- },
- {
- "id": 302,
- "start": 88.73,
- "end": 89.16,
- "text": "space."
- },
- {
- "id": 303,
- "start": 89.075,
- "end": 89.395,
- "text": "And"
- },
- {
- "id": 304,
- "start": 89.42,
- "end": 89.63,
- "text": "when"
- },
- {
- "id": 305,
- "start": 89.63,
- "end": 89.73,
- "text": "you"
- },
- {
- "id": 306,
- "start": 89.73,
- "end": 89.9,
- "text": "say"
- },
- {
- "id": 307,
- "start": 89.9,
- "end": 90.26,
- "text": "lofty"
- },
- {
- "id": 308,
- "start": 90.26,
- "end": 90.78,
- "text": "ambitions"
- },
- {
- "id": 309,
- "start": 90.78,
- "end": 90.99,
- "text": "what,"
- },
- {
- "id": 310,
- "start": 90.98,
- "end": 91.36,
- "text": "how"
- },
- {
- "id": 311,
- "start": 91.225,
- "end": 91.46000000000001,
- "text": "was"
- },
- {
- "id": 312,
- "start": 91.47,
- "end": 91.56,
- "text": "it"
- },
- {
- "id": 313,
- "start": 91.56,
- "end": 92.18,
- "text": "articulated"
- },
- {
- "id": 314,
- "start": 92.18,
- "end": 92.27,
- "text": "at"
- },
- {
- "id": 315,
- "start": 92.27,
- "end": 92.36,
- "text": "the"
- },
- {
- "id": 316,
- "start": 92.36,
- "end": 92.78,
- "text": "time"
- },
- {
- "id": 317,
- "start": 92.675,
- "end": 93.12166666666667,
- "text": "in"
- },
- {
- "id": 318,
- "start": 92.99,
- "end": 93.46333333333334,
- "text": "terms"
- },
- {
- "id": 319,
- "start": 93.305,
- "end": 93.80499999999999,
- "text": "of"
- },
- {
- "id": 320,
- "start": 93.62,
- "end": 94.14666666666666,
- "text": "ambitions?"
- },
- {
- "id": 321,
- "start": 93.935,
- "end": 94.48833333333333,
- "text": "Yeah."
- },
- {
- "id": 322,
- "start": 94.25,
- "end": 94.83,
- "text": "So"
- },
- {
- "id": 323,
- "start": 94.83,
- "end": 95.44,
- "text": "the"
- },
- {
- "id": 324,
- "start": 95.44,
- "end": 96.03,
- "text": "ambitions"
- },
- {
- "id": 325,
- "start": 96.03,
- "end": 96.46,
- "text": "were"
- },
- {
- "id": 326,
- "start": 96.46,
- "end": 96.81,
- "text": "somewhat"
- },
- {
- "id": 327,
- "start": 96.81,
- "end": 97.99,
- "text": "abstract"
- },
- {
- "id": 328,
- "start": 97.99,
- "end": 98.19,
- "text": "and"
- },
- {
- "id": 329,
- "start": 98.19,
- "end": 98.77,
- "text": "yet"
- },
- {
- "id": 330,
- "start": 98.77,
- "end": 98.87,
- "text": "they"
- },
- {
- "id": 331,
- "start": 98.87,
- "end": 99.04,
- "text": "kind"
- },
- {
- "id": 332,
- "start": 99.04,
- "end": 99.18,
- "text": "of"
- },
- {
- "id": 333,
- "start": 99.33500000000001,
- "end": 99.47500000000001,
- "text": "proved"
- },
- {
- "id": 334,
- "start": 99.63000000000001,
- "end": 99.77000000000001,
- "text": "out"
- },
- {
- "id": 335,
- "start": 99.92500000000001,
- "end": 100.06500000000001,
- "text": "to"
- },
- {
- "id": 336,
- "start": 100.22000000000001,
- "end": 100.36000000000001,
- "text": "be"
- },
- {
- "id": 337,
- "start": 100.515,
- "end": 100.655,
- "text": "true"
- },
- {
- "id": 338,
- "start": 100.81,
- "end": 100.95,
- "text": "over"
- },
- {
- "id": 339,
- "start": 101.26500000000001,
- "end": 101.42,
- "text": "time."
- },
- {
- "id": 340,
- "start": 101.72,
- "end": 101.89,
- "text": "It"
- },
- {
- "id": 341,
- "start": 101.89,
- "end": 102,
- "text": "was"
- },
- {
- "id": 342,
- "start": 102,
- "end": 102.19,
- "text": "this"
- },
- {
- "id": 343,
- "start": 102.19,
- "end": 102.58,
- "text": "idea"
- },
- {
- "id": 344,
- "start": 102.58,
- "end": 104.19,
- "text": "that"
- },
- {
- "id": 345,
- "start": 104.19,
- "end": 104.38,
- "text": "the"
- },
- {
- "id": 346,
- "start": 104.38,
- "end": 104.89,
- "text": "world"
- },
- {
- "id": 347,
- "start": 104.89,
- "end": 105.78,
- "text": "is"
- },
- {
- "id": 348,
- "start": 105.78,
- "end": 106.04,
- "text": "made"
- },
- {
- "id": 349,
- "start": 106.04,
- "end": 106.13,
- "text": "up"
- },
- {
- "id": 350,
- "start": 106.13,
- "end": 106.25,
- "text": "of"
- },
- {
- "id": 351,
- "start": 106.25,
- "end": 106.31,
- "text": "a"
- },
- {
- "id": 352,
- "start": 106.31,
- "end": 106.68,
- "text": "system"
- },
- {
- "id": 353,
- "start": 106.68,
- "end": 106.79,
- "text": "of"
- },
- {
- "id": 354,
- "start": 106.79,
- "end": 107.7,
- "text": "relationships"
- },
- {
- "id": 355,
- "start": 107.7,
- "end": 108.07,
- "text": "across"
- },
- {
- "id": 356,
- "start": 108.07,
- "end": 108.6,
- "text": "people,"
- },
- {
- "id": 357,
- "start": 108.86999999999995,
- "end": 109.58999999999995,
- "text": "organizations,"
- },
- {
- "id": 358,
- "start": 109.67,
- "end": 110.58,
- "text": "entities."
- },
- {
- "id": 359,
- "start": 110.58,
- "end": 110.84,
- "text": "And"
- },
- {
- "id": 360,
- "start": 110.84,
- "end": 110.94,
- "text": "if"
- },
- {
- "id": 361,
- "start": 110.94,
- "end": 111.22,
- "text": "one"
- },
- {
- "id": 362,
- "start": 111.22,
- "end": 111.35,
- "text": "were"
- },
- {
- "id": 363,
- "start": 111.35,
- "end": 111.45,
- "text": "to"
- },
- {
- "id": 364,
- "start": 111.45,
- "end": 111.66,
- "text": "build"
- },
- {
- "id": 365,
- "start": 111.66,
- "end": 111.7,
- "text": "a"
- },
- {
- "id": 366,
- "start": 111.7,
- "end": 112.6,
- "text": "graph"
- },
- {
- "id": 367,
- "start": 112.6,
- "end": 113.18,
- "text": "or"
- },
- {
- "id": 368,
- "start": 113.18,
- "end": 113.47,
- "text": "a"
- },
- {
- "id": 369,
- "start": 113.47,
- "end": 113.62,
- "text": "way"
- },
- {
- "id": 370,
- "start": 113.62,
- "end": 113.7,
- "text": "to"
- },
- {
- "id": 371,
- "start": 113.7,
- "end": 114.27,
- "text": "map"
- },
- {
- "id": 372,
- "start": 114.27,
- "end": 114.46,
- "text": "these"
- },
- {
- "id": 373,
- "start": 114.46,
- "end": 115.5,
- "text": "relationships"
- },
- {
- "id": 374,
- "start": 115.5,
- "end": 115.71,
- "text": "and"
- },
- {
- "id": 375,
- "start": 115.71,
- "end": 115.92,
- "text": "start"
- },
- {
- "id": 376,
- "start": 115.88999999999999,
- "end": 116.30333333333333,
- "text": "to"
- },
- {
- "id": 377,
- "start": 116.07,
- "end": 116.68666666666668,
- "text": "weigh"
- },
- {
- "id": 378,
- "start": 116.25,
- "end": 117.07,
- "text": "them,"
- },
- {
- "id": 379,
- "start": 117.07,
- "end": 117.44,
- "text": "not"
- },
- {
- "id": 380,
- "start": 117.44,
- "end": 117.6,
- "text": "only"
- },
- {
- "id": 381,
- "start": 117.6,
- "end": 117.73,
- "text": "would"
- },
- {
- "id": 382,
- "start": 117.73,
- "end": 117.8,
- "text": "you"
- },
- {
- "id": 383,
- "start": 117.8,
- "end": 117.89,
- "text": "be"
- },
- {
- "id": 384,
- "start": 117.89,
- "end": 118.03,
- "text": "able"
- },
- {
- "id": 385,
- "start": 118.03,
- "end": 118.14,
- "text": "to"
- },
- {
- "id": 386,
- "start": 118.14,
- "end": 118.78,
- "text": "accelerate"
- },
- {
- "id": 387,
- "start": 118.78,
- "end": 119.4,
- "text": "information"
- },
- {
- "id": 388,
- "start": 119.18199999999999,
- "end": 119.816,
- "text": "flow."
- },
- {
- "id": 389,
- "start": 119.58399999999997,
- "end": 120.232,
- "text": "That"
- },
- {
- "id": 390,
- "start": 119.98599999999999,
- "end": 120.648,
- "text": "was"
- },
- {
- "id": 391,
- "start": 120.388,
- "end": 121.064,
- "text": "the"
- },
- {
- "id": 392,
- "start": 120.79,
- "end": 121.48,
- "text": "terminology"
- },
- {
- "id": 393,
- "start": 121.48,
- "end": 121.62,
- "text": "they"
- },
- {
- "id": 394,
- "start": 121.62,
- "end": 121.78,
- "text": "used"
- },
- {
- "id": 395,
- "start": 121.78,
- "end": 121.97,
- "text": "back"
- },
- {
- "id": 396,
- "start": 122.45000000000002,
- "end": 122.63500000000002,
- "text": "then."
- },
- {
- "id": 397,
- "start": 123.12,
- "end": 123.3,
- "text": "But"
- },
- {
- "id": 398,
- "start": 123.3,
- "end": 123.45,
- "text": "their"
- },
- {
- "id": 399,
- "start": 123.45,
- "end": 123.68,
- "text": "view"
- },
- {
- "id": 400,
- "start": 123.68,
- "end": 123.84,
- "text": "was"
- },
- {
- "id": 401,
- "start": 123.84,
- "end": 124.09,
- "text": "that"
- },
- {
- "id": 402,
- "start": 124.09,
- "end": 124.26,
- "text": "they"
- },
- {
- "id": 403,
- "start": 124.26,
- "end": 124.48,
- "text": "could"
- },
- {
- "id": 404,
- "start": 124.48,
- "end": 125.05,
- "text": "potentially"
- },
- {
- "id": 405,
- "start": 125.05,
- "end": 125.62,
- "text": "create"
- },
- {
- "id": 406,
- "start": 125.62,
- "end": 126.01,
- "text": "a"
- },
- {
- "id": 407,
- "start": 126.01,
- "end": 126.33,
- "text": "way"
- },
- {
- "id": 408,
- "start": 126.33,
- "end": 126.48,
- "text": "for"
- },
- {
- "id": 409,
- "start": 126.48,
- "end": 126.77,
- "text": "people"
- },
- {
- "id": 410,
- "start": 126.77,
- "end": 126.84,
- "text": "to"
- },
- {
- "id": 411,
- "start": 126.84,
- "end": 126.9,
- "text": "be"
- },
- {
- "id": 412,
- "start": 126.9,
- "end": 127.02,
- "text": "able"
- },
- {
- "id": 413,
- "start": 127.02,
- "end": 127.12,
- "text": "to"
- },
- {
- "id": 414,
- "start": 127.12,
- "end": 128.12,
- "text": "share"
- },
- {
- "id": 415,
- "start": 128.12,
- "end": 130.3,
- "text": "with"
- },
- {
- "id": 416,
- "start": 130.3,
- "end": 130.37,
- "text": "the"
- },
- {
- "id": 417,
- "start": 130.37,
- "end": 130.63,
- "text": "members"
- },
- {
- "id": 418,
- "start": 130.63,
- "end": 130.71,
- "text": "of"
- },
- {
- "id": 419,
- "start": 130.715,
- "end": 131.12,
- "text": "their"
- },
- {
- "id": 420,
- "start": 130.8,
- "end": 131.53,
- "text": "community,"
- },
- {
- "id": 421,
- "start": 131.53,
- "end": 131.66,
- "text": "with"
- },
- {
- "id": 422,
- "start": 131.66,
- "end": 131.78,
- "text": "their"
- },
- {
- "id": 423,
- "start": 131.78,
- "end": 132.13,
- "text": "family"
- },
- {
- "id": 424,
- "start": 132.13,
- "end": 132.27,
- "text": "and"
- },
- {
- "id": 425,
- "start": 132.27,
- "end": 134.28,
- "text": "friends,"
- },
- {
- "id": 426,
- "start": 134.28,
- "end": 134.41,
- "text": "in"
- },
- {
- "id": 427,
- "start": 134.41,
- "end": 134.47,
- "text": "a"
- },
- {
- "id": 428,
- "start": 134.47,
- "end": 134.62,
- "text": "way"
- },
- {
- "id": 429,
- "start": 134.62,
- "end": 134.76,
- "text": "that"
- },
- {
- "id": 430,
- "start": 134.76,
- "end": 135.14,
- "text": "was"
- },
- {
- "id": 431,
- "start": 135.14,
- "end": 135.92,
- "text": "unprecedented"
- },
- {
- "id": 432,
- "start": 135.92,
- "end": 136.03,
- "text": "on"
- },
- {
- "id": 433,
- "start": 136.03,
- "end": 136.13,
- "text": "the"
- },
- {
- "id": 434,
- "start": 136.13,
- "end": 137.4,
- "text": "internet;"
- },
- {
- "id": 435,
- "start": 137.4,
- "end": 137.53,
- "text": "in"
- },
- {
- "id": 436,
- "start": 137.53,
- "end": 137.58,
- "text": "a"
- },
- {
- "id": 437,
- "start": 137.58,
- "end": 137.7,
- "text": "way"
- },
- {
- "id": 438,
- "start": 137.7,
- "end": 137.84,
- "text": "where"
- },
- {
- "id": 439,
- "start": 137.84,
- "end": 137.92,
- "text": "they"
- },
- {
- "id": 440,
- "start": 137.92,
- "end": 138.09,
- "text": "can"
- },
- {
- "id": 441,
- "start": 138.09,
- "end": 138.45,
- "text": "manage"
- },
- {
- "id": 442,
- "start": 138.45,
- "end": 138.57,
- "text": "the"
- },
- {
- "id": 443,
- "start": 138.57,
- "end": 139.78,
- "text": "audience"
- },
- {
- "id": 444,
- "start": 139.78,
- "end": 139.94,
- "text": "that"
- },
- {
- "id": 445,
- "start": 139.94,
- "end": 140.01,
- "text": "they"
- },
- {
- "id": 446,
- "start": 140.01,
- "end": 140.09,
- "text": "were"
- },
- {
- "id": 447,
- "start": 140.09,
- "end": 140.49,
- "text": "speaking"
- },
- {
- "id": 448,
- "start": 140.49,
- "end": 141.39,
- "text": "to"
- },
- {
- "id": 449,
- "start": 141.39,
- "end": 142.39,
- "text": "and"
- },
- {
- "id": 450,
- "start": 142.39,
- "end": 142.67,
- "text": "that"
- },
- {
- "id": 451,
- "start": 142.67,
- "end": 142.8,
- "text": "would"
- },
- {
- "id": 452,
- "start": 142.8,
- "end": 143.06,
- "text": "allow"
- },
- {
- "id": 453,
- "start": 143.06,
- "end": 143.23,
- "text": "for"
- },
- {
- "id": 454,
- "start": 143.23,
- "end": 143.68,
- "text": "them"
- },
- {
- "id": 455,
- "start": 143.68,
- "end": 143.93,
- "text": "over"
- },
- {
- "id": 456,
- "start": 143.93,
- "end": 144.82,
- "text": "time"
- },
- {
- "id": 457,
- "start": 144.82,
- "end": 144.95,
- "text": "to"
- },
- {
- "id": 458,
- "start": 144.95,
- "end": 145.08,
- "text": "be"
- },
- {
- "id": 459,
- "start": 145.08,
- "end": 145.24,
- "text": "able"
- },
- {
- "id": 460,
- "start": 145.24,
- "end": 145.37,
- "text": "to"
- },
- {
- "id": 461,
- "start": 145.37,
- "end": 145.91,
- "text": "build"
- },
- {
- "id": 462,
- "start": 145.815,
- "end": 146.29500000000002,
- "text": "a"
- },
- {
- "id": 463,
- "start": 146.26,
- "end": 146.68,
- "text": "project"
- },
- {
- "id": 464,
- "start": 146.68,
- "end": 146.8,
- "text": "that"
- },
- {
- "id": 465,
- "start": 146.8,
- "end": 146.9,
- "text": "they"
- },
- {
- "id": 466,
- "start": 146.9,
- "end": 147.03,
- "text": "were"
- },
- {
- "id": 467,
- "start": 147.03,
- "end": 147.36,
- "text": "working"
- },
- {
- "id": 468,
- "start": 147.36,
- "end": 147.63,
- "text": "on"
- },
- {
- "id": 469,
- "start": 148.18,
- "end": 148.46000000000004,
- "text": "called"
- },
- {
- "id": 470,
- "start": 149,
- "end": 149.29000000000002,
- "text": "“Feed.”"
- },
- {
- "id": 471,
- "start": 149.82,
- "end": 150.12,
- "text": "Feed"
- },
- {
- "id": 472,
- "start": 150.12,
- "end": 150.3,
- "text": "was"
- },
- {
- "id": 473,
- "start": 150.21,
- "end": 150.41000000000003,
- "text": "a"
- },
- {
- "id": 474,
- "start": 150.3,
- "end": 150.52,
- "text": "really"
- },
- {
- "id": 475,
- "start": 150.52,
- "end": 150.87,
- "text": "simple"
- },
- {
- "id": 476,
- "start": 150.87,
- "end": 151.77,
- "text": "idea."
- },
- {
- "id": 477,
- "start": 151.77,
- "end": 151.9,
- "text": "You"
- },
- {
- "id": 478,
- "start": 151.9,
- "end": 152.12,
- "text": "take"
- },
- {
- "id": 479,
- "start": 152.12,
- "end": 152.47,
- "text": "all"
- },
- {
- "id": 480,
- "start": 152.47,
- "end": 152.93,
- "text": "these"
- },
- {
- "id": 481,
- "start": 152.93,
- "end": 153.45,
- "text": "structured"
- },
- {
- "id": 482,
- "start": 153.45,
- "end": 154.5,
- "text": "relationships"
- },
- {
- "id": 483,
- "start": 154.5,
- "end": 154.72,
- "text": "around"
- },
- {
- "id": 484,
- "start": 154.72,
- "end": 154.8,
- "text": "the"
- },
- {
- "id": 485,
- "start": 154.8,
- "end": 155.72,
- "text": "world"
- },
- {
- "id": 486,
- "start": 155.72,
- "end": 156.12,
- "text": "and"
- },
- {
- "id": 487,
- "start": 156.12,
- "end": 156.21,
- "text": "you"
- },
- {
- "id": 488,
- "start": 156.21,
- "end": 156.42,
- "text": "show"
- },
- {
- "id": 489,
- "start": 156.42,
- "end": 157.21,
- "text": "people"
- },
- {
- "id": 490,
- "start": 157.21,
- "end": 157.38,
- "text": "the"
- },
- {
- "id": 491,
- "start": 157.38,
- "end": 157.62,
- "text": "world’s"
- },
- {
- "id": 492,
- "start": 157.62,
- "end": 158.62,
- "text": "events"
- },
- {
- "id": 493,
- "start": 158.62,
- "end": 158.92,
- "text": "through"
- },
- {
- "id": 494,
- "start": 158.92,
- "end": 159.02,
- "text": "the"
- },
- {
- "id": 495,
- "start": 159.02,
- "end": 159.3,
- "text": "prism"
- },
- {
- "id": 496,
- "start": 159.3,
- "end": 159.42,
- "text": "of"
- },
- {
- "id": 497,
- "start": 159.42,
- "end": 159.54,
- "text": "their"
- },
- {
- "id": 498,
- "start": 159.54,
- "end": 160.67,
- "text": "friends."
- },
- {
- "id": 499,
- "start": 160.67,
- "end": 160.94,
- "text": "And"
- },
- {
- "id": 500,
- "start": 160.94,
- "end": 160.98,
- "text": "I"
- },
- {
- "id": 501,
- "start": 160.98,
- "end": 161.16,
- "text": "thought"
- },
- {
- "id": 502,
- "start": 161.16,
- "end": 161.36,
- "text": "this"
- },
- {
- "id": 503,
- "start": 161.36,
- "end": 161.66,
- "text": "was"
- },
- {
- "id": 504,
- "start": 161.66,
- "end": 161.9,
- "text": "such"
- },
- {
- "id": 505,
- "start": 161.9,
- "end": 162.02,
- "text": "an"
- },
- {
- "id": 506,
- "start": 162.02,
- "end": 162.55,
- "text": "interesting"
- },
- {
- "id": 507,
- "start": 162.55,
- "end": 163,
- "text": "idea,"
- },
- {
- "id": 508,
- "start": 163,
- "end": 163.08,
- "text": "an"
- },
- {
- "id": 509,
- "start": 163.08,
- "end": 163.5,
- "text": "interesting"
- },
- {
- "id": 510,
- "start": 163.5,
- "end": 164.52,
- "text": "concept."
- },
- {
- "id": 511,
- "start": 164.52,
- "end": 164.68,
- "text": "They"
- },
- {
- "id": 512,
- "start": 164.68,
- "end": 164.81,
- "text": "had"
- },
- {
- "id": 513,
- "start": 164.81,
- "end": 164.93,
- "text": "no"
- },
- {
- "id": 514,
- "start": 165.09,
- "end": 165.25500000000002,
- "text": "mock-ups"
- },
- {
- "id": 515,
- "start": 165.37,
- "end": 165.58,
- "text": "for"
- },
- {
- "id": 516,
- "start": 165.58,
- "end": 166.11,
- "text": "it."
- },
- {
- "id": 517,
- "start": 166.11,
- "end": 166.22,
- "text": "It"
- },
- {
- "id": 518,
- "start": 166.22,
- "end": 166.34,
- "text": "was"
- },
- {
- "id": 519,
- "start": 166.34,
- "end": 166.6,
- "text": "just"
- },
- {
- "id": 520,
- "start": 166.6,
- "end": 166.79,
- "text": "very"
- },
- {
- "id": 521,
- "start": 166.79,
- "end": 166.96,
- "text": "much"
- },
- {
- "id": 522,
- "start": 166.96,
- "end": 167.07,
- "text": "like"
- },
- {
- "id": 523,
- "start": 167.07,
- "end": 167.16,
- "text": "an"
- },
- {
- "id": 524,
- "start": 167.16,
- "end": 167.76,
- "text": "abstract"
- },
- {
- "id": 525,
- "start": 167.76,
- "end": 168.73,
- "text": "notion."
- },
- {
- "id": 526,
- "start": 168.73,
- "end": 168.9,
- "text": "But"
- },
- {
- "id": 527,
- "start": 168.9,
- "end": 169.05,
- "text": "their"
- },
- {
- "id": 528,
- "start": 169.05,
- "end": 169.29,
- "text": "view"
- },
- {
- "id": 529,
- "start": 169.29,
- "end": 169.44,
- "text": "was"
- },
- {
- "id": 530,
- "start": 169.44,
- "end": 169.62,
- "text": "that"
- },
- {
- "id": 531,
- "start": 169.62,
- "end": 169.81,
- "text": "if"
- },
- {
- "id": 532,
- "start": 169.81,
- "end": 170.11,
- "text": "you"
- },
- {
- "id": 533,
- "start": 170.11,
- "end": 170.43,
- "text": "started"
- },
- {
- "id": 534,
- "start": 170.43,
- "end": 170.65,
- "text": "to"
- },
- {
- "id": 535,
- "start": 170.65,
- "end": 172.04,
- "text": "build"
- },
- {
- "id": 536,
- "start": 171.19,
- "end": 172.26,
- "text": "this"
- },
- {
- "id": 537,
- "start": 171.93,
- "end": 172.61,
- "text": "structured"
- },
- {
- "id": 538,
- "start": 172.67,
- "end": 172.96,
- "text": "data"
- },
- {
- "id": 539,
- "start": 172.96,
- "end": 173.72,
- "text": "set"
- },
- {
- "id": 540,
- "start": 173.72,
- "end": 174.1,
- "text": "around"
- },
- {
- "id": 541,
- "start": 174.1,
- "end": 174.21,
- "text": "what"
- },
- {
- "id": 542,
- "start": 174.21,
- "end": 174.46,
- "text": "people"
- },
- {
- "id": 543,
- "start": 174.46,
- "end": 174.76,
- "text": "cared"
- },
- {
- "id": 544,
- "start": 174.76,
- "end": 175.44,
- "text": "about,"
- },
- {
- "id": 545,
- "start": 175.16,
- "end": 175.69,
- "text": "who"
- },
- {
- "id": 546,
- "start": 175.515,
- "end": 175.98499999999999,
- "text": "they’ve"
- },
- {
- "id": 547,
- "start": 175.87,
- "end": 176.28,
- "text": "connected"
- },
- {
- "id": 548,
- "start": 176.28,
- "end": 177.12,
- "text": "with,"
- },
- {
- "id": 549,
- "start": 177.12,
- "end": 177.26,
- "text": "what"
- },
- {
- "id": 550,
- "start": 177.26,
- "end": 177.41,
- "text": "kind"
- },
- {
- "id": 551,
- "start": 177.41,
- "end": 177.47,
- "text": "of"
- },
- {
- "id": 552,
- "start": 177.47,
- "end": 177.95,
- "text": "information"
- },
- {
- "id": 553,
- "start": 177.95,
- "end": 178.07,
- "text": "you’re"
- },
- {
- "id": 554,
- "start": 178.70499999999998,
- "end": 178.82999999999998,
- "text": "sharing,"
- },
- {
- "id": 555,
- "start": 179.46,
- "end": 179.59,
- "text": "they"
- },
- {
- "id": 556,
- "start": 179.59,
- "end": 179.72,
- "text": "could"
- },
- {
- "id": 557,
- "start": 179.72,
- "end": 180.09,
- "text": "eventually"
- },
- {
- "id": 558,
- "start": 180.09,
- "end": 180.55,
- "text": "build"
- },
- {
- "id": 559,
- "start": 180.55,
- "end": 180.66,
- "text": "an"
- },
- {
- "id": 560,
- "start": 180.66,
- "end": 181.17,
- "text": "advertising"
- },
- {
- "id": 561,
- "start": 181.17,
- "end": 182.22,
- "text": "platform"
- },
- {
- "id": 562,
- "start": 182.22,
- "end": 182.38,
- "text": "that"
- },
- {
- "id": 563,
- "start": 182.38,
- "end": 182.49,
- "text": "could"
- },
- {
- "id": 564,
- "start": 182.49,
- "end": 182.76,
- "text": "rival"
- },
- {
- "id": 565,
- "start": 182.76,
- "end": 183.83,
- "text": "Google’s."
- },
- {
- "id": 566,
- "start": 183.83,
- "end": 184.47,
- "text": "And"
- },
- {
- "id": 567,
- "start": 184.47,
- "end": 184.93,
- "text": "Google"
- },
- {
- "id": 568,
- "start": 184.93,
- "end": 185.33,
- "text": "was"
- },
- {
- "id": 569,
- "start": 185.33,
- "end": 185.71,
- "text": "no"
- },
- {
- "id": 570,
- "start": 185.71,
- "end": 185.88,
- "text": "joke"
- },
- {
- "id": 571,
- "start": 185.88,
- "end": 185.95,
- "text": "of"
- },
- {
- "id": 572,
- "start": 185.95,
- "end": 186.01,
- "text": "a"
- },
- {
- "id": 573,
- "start": 186.01,
- "end": 186.47,
- "text": "company"
- },
- {
- "id": 574,
- "start": 186.47,
- "end": 186.74,
- "text": "back"
- },
- {
- "id": 575,
- "start": 186.74,
- "end": 186.9,
- "text": "in"
- },
- {
- "id": 576,
- "start": 187.77499999999998,
- "end": 187.92999999999995,
- "text": "2005."
- },
- {
- "id": 577,
- "start": 188.81,
- "end": 188.96,
- "text": "And"
- },
- {
- "id": 578,
- "start": 188.96,
- "end": 189.15,
- "text": "so"
- },
- {
- "id": 579,
- "start": 189.15,
- "end": 189.55,
- "text": "I"
- },
- {
- "id": 580,
- "start": 189.55,
- "end": 189.75,
- "text": "came"
- },
- {
- "id": 581,
- "start": 189.75,
- "end": 189.9,
- "text": "away"
- },
- {
- "id": 582,
- "start": 189.9,
- "end": 190.06,
- "text": "from"
- },
- {
- "id": 583,
- "start": 190.06,
- "end": 190.17,
- "text": "that"
- },
- {
- "id": 584,
- "start": 190.17,
- "end": 190.89,
- "text": "conversation"
- },
- {
- "id": 585,
- "start": 190.88,
- "end": 191.22,
- "text": "thinking,"
- },
- {
- "id": 586,
- "start": 191.64499999999998,
- "end": 191.9,
- "text": "wow,"
- },
- {
- "id": 587,
- "start": 192.41,
- "end": 192.58,
- "text": "these"
- },
- {
- "id": 588,
- "start": 192.58,
- "end": 192.94,
- "text": "cats"
- },
- {
- "id": 589,
- "start": 192.94,
- "end": 193.3,
- "text": "are"
- },
- {
- "id": 590,
- "start": 193.3,
- "end": 193.85,
- "text": "incredibly"
- },
- {
- "id": 591,
- "start": 193.85,
- "end": 195.02,
- "text": "ambitious."
- },
- {
- "id": 592,
- "start": 195.02,
- "end": 195.24,
- "text": "I"
- },
- {
- "id": 593,
- "start": 195.24,
- "end": 195.43,
- "text": "should"
- },
- {
- "id": 594,
- "start": 195.41500000000002,
- "end": 195.575,
- "text": "check"
- },
- {
- "id": 595,
- "start": 195.59,
- "end": 195.72,
- "text": "out"
- },
- {
- "id": 596,
- "start": 195.72,
- "end": 195.8,
- "text": "the"
- },
- {
- "id": 597,
- "start": 195.8,
- "end": 196.16,
- "text": "service"
- },
- {
- "id": 598,
- "start": 196.16,
- "end": 196.3,
- "text": "and"
- },
- {
- "id": 599,
- "start": 196.3,
- "end": 197.22,
- "text": "see"
- },
- {
- "id": 600,
- "start": 197.22,
- "end": 197.44,
- "text": "how"
- },
- {
- "id": 601,
- "start": 197.44,
- "end": 197.52,
- "text": "it"
- },
- {
- "id": 602,
- "start": 197.52,
- "end": 197.82,
- "text": "maps"
- },
- {
- "id": 603,
- "start": 197.82,
- "end": 197.99,
- "text": "that"
- },
- {
- "id": 604,
- "start": 197.99,
- "end": 199.45,
- "text": "ambition."
- },
- {
- "id": 605,
- "start": 199.45,
- "end": 199.61,
- "text": "So"
- },
- {
- "id": 606,
- "start": 199.61,
- "end": 199.64,
- "text": "I"
- },
- {
- "id": 607,
- "start": 199.64,
- "end": 199.77,
- "text": "asked"
- },
- {
- "id": 608,
- "start": 199.77,
- "end": 199.85,
- "text": "my"
- },
- {
- "id": 609,
- "start": 199.85,
- "end": 200.11,
- "text": "brother"
- },
- {
- "id": 610,
- "start": 200.11,
- "end": 200.28,
- "text": "for"
- },
- {
- "id": 611,
- "start": 200.28,
- "end": 200.62,
- "text": "his"
- },
- {
- "id": 612,
- "start": 200.79,
- "end": 201.065,
- "text": "login."
- },
- {
- "id": 613,
- "start": 201.3,
- "end": 201.51,
- "text": "He"
- },
- {
- "id": 614,
- "start": 201.51,
- "end": 201.67,
- "text": "was"
- },
- {
- "id": 615,
- "start": 201.58999999999997,
- "end": 201.73,
- "text": "—"
- },
- {
- "id": 616,
- "start": 201.67,
- "end": 201.79,
- "text": "at"
- },
- {
- "id": 617,
- "start": 201.79,
- "end": 201.88,
- "text": "the"
- },
- {
- "id": 618,
- "start": 202.25499999999997,
- "end": 202.325,
- "text": "time"
- },
- {
- "id": 619,
- "start": 202.72,
- "end": 202.77,
- "text": "I"
- },
- {
- "id": 620,
- "start": 202.77,
- "end": 202.93,
- "text": "think"
- },
- {
- "id": 621,
- "start": 202.93,
- "end": 202.99,
- "text": "he"
- },
- {
- "id": 622,
- "start": 202.99,
- "end": 203.09,
- "text": "was"
- },
- {
- "id": 623,
- "start": 203.09,
- "end": 203.16,
- "text": "a"
- },
- {
- "id": 624,
- "start": 203.16,
- "end": 203.75,
- "text": "sophomore"
- },
- {
- "id": 625,
- "start": 203.75,
- "end": 203.83,
- "text": "at"
- },
- {
- "id": 626,
- "start": 203.83,
- "end": 204.08,
- "text": "Johns"
- },
- {
- "id": 627,
- "start": 204.08,
- "end": 204.62,
- "text": "Hopkins"
- },
- {
- "id": 628,
- "start": 204.61,
- "end": 204.77,
- "text": "and"
- },
- {
- "id": 629,
- "start": 204.71666666666667,
- "end": 204.93,
- "text": "they"
- },
- {
- "id": 630,
- "start": 204.82333333333332,
- "end": 205.09,
- "text": "had"
- },
- {
- "id": 631,
- "start": 204.93,
- "end": 205.25,
- "text": "just"
- },
- {
- "id": 632,
- "start": 205.25,
- "end": 206.01,
- "text": "released"
- },
- {
- "id": 633,
- "start": 206.01,
- "end": 206.4,
- "text": "Facebook"
- },
- {
- "id": 634,
- "start": 206.4,
- "end": 206.48,
- "text": "at"
- },
- {
- "id": 635,
- "start": 206.48,
- "end": 206.71,
- "text": "Johns"
- },
- {
- "id": 636,
- "start": 207.04999999999998,
- "end": 207.30500000000004,
- "text": "Hopkins."
- },
- {
- "id": 637,
- "start": 207.62,
- "end": 207.9,
- "text": "Note"
- },
- {
- "id": 638,
- "start": 207.9,
- "end": 207.96,
- "text": "in"
- },
- {
- "id": 639,
- "start": 208.29500000000002,
- "end": 208.475,
- "text": "2005,"
- },
- {
- "id": 640,
- "start": 208.69,
- "end": 208.99,
- "text": "Facebook"
- },
- {
- "id": 641,
- "start": 208.99,
- "end": 209.11,
- "text": "was"
- },
- {
- "id": 642,
- "start": 209.11,
- "end": 209.16,
- "text": "a"
- },
- {
- "id": 643,
- "start": 209.395,
- "end": 209.555,
- "text": "college-only"
- },
- {
- "id": 644,
- "start": 209.68,
- "end": 209.95,
- "text": "social"
- },
- {
- "id": 645,
- "start": 209.95,
- "end": 210.66,
- "text": "network."
- },
- {
- "id": 646,
- "start": 210.66,
- "end": 210.73,
- "text": "I"
- },
- {
- "id": 647,
- "start": 210.73,
- "end": 210.89,
- "text": "think"
- },
- {
- "id": 648,
- "start": 210.81,
- "end": 210.98,
- "text": "it"
- },
- {
- "id": 649,
- "start": 210.89,
- "end": 211.07,
- "text": "had"
- },
- {
- "id": 650,
- "start": 211.07,
- "end": 211.24,
- "text": "3"
- },
- {
- "id": 651,
- "start": 211.24,
- "end": 211.32,
- "text": "to"
- },
- {
- "id": 652,
- "start": 211.32,
- "end": 211.52,
- "text": "4"
- },
- {
- "id": 653,
- "start": 211.52,
- "end": 211.76,
- "text": "million"
- },
- {
- "id": 654,
- "start": 212.05800000000002,
- "end": 212.46599999999995,
- "text": "users"
- },
- {
- "id": 655,
- "start": 212.59600000000003,
- "end": 213.17199999999997,
- "text": "at"
- },
- {
- "id": 656,
- "start": 213.134,
- "end": 213.878,
- "text": "the"
- },
- {
- "id": 657,
- "start": 213.672,
- "end": 214.58399999999995,
- "text": "time."
- },
- {
- "id": 658,
- "start": 214.21,
- "end": 215.29,
- "text": "And"
- },
- {
- "id": 659,
- "start": 215.29,
- "end": 215.42,
- "text": "I"
- },
- {
- "id": 660,
- "start": 215.42,
- "end": 215.54,
- "text": "was"
- },
- {
- "id": 661,
- "start": 215.54,
- "end": 215.59,
- "text": "a"
- },
- {
- "id": 662,
- "start": 215.59,
- "end": 215.76,
- "text": "little"
- },
- {
- "id": 663,
- "start": 215.76,
- "end": 215.88,
- "text": "bit"
- },
- {
- "id": 664,
- "start": 215.93666666666667,
- "end": 216.38333333333333,
- "text": "let"
- },
- {
- "id": 665,
- "start": 216.11333333333334,
- "end": 216.88666666666666,
- "text": "down"
- },
- {
- "id": 666,
- "start": 216.29,
- "end": 217.39,
- "text": "because"
- },
- {
- "id": 667,
- "start": 216.93,
- "end": 217.58,
- "text": "this"
- },
- {
- "id": 668,
- "start": 217.31,
- "end": 217.66500000000002,
- "text": "was"
- },
- {
- "id": 669,
- "start": 217.69,
- "end": 217.75,
- "text": "a"
- },
- {
- "id": 670,
- "start": 217.75,
- "end": 218.01,
- "text": "version"
- },
- {
- "id": 671,
- "start": 218.01,
- "end": 218.07,
- "text": "of"
- },
- {
- "id": 672,
- "start": 218.07,
- "end": 218.44,
- "text": "Facebook"
- },
- {
- "id": 673,
- "start": 218.44,
- "end": 218.57,
- "text": "that"
- },
- {
- "id": 674,
- "start": 218.57,
- "end": 218.85,
- "text": "was"
- },
- {
- "id": 675,
- "start": 219.30666666666667,
- "end": 219.61666666666667,
- "text": "pre-photos,"
- },
- {
- "id": 676,
- "start": 220.04333333333335,
- "end": 220.38333333333333,
- "text": "pre-News"
- },
- {
- "id": 677,
- "start": 220.78,
- "end": 221.15,
- "text": "Feed,"
- },
- {
- "id": 678,
- "start": 221.32999999999996,
- "end": 221.75499999999997,
- "text": "pre-Like"
- },
- {
- "id": 679,
- "start": 221.88,
- "end": 222.36,
- "text": "button,"
- },
- {
- "id": 680,
- "start": 222.56666666666666,
- "end": 223.24666666666667,
- "text": "pre-commenting,"
- },
- {
- "id": 681,
- "start": 223.25333333333333,
- "end": 224.13333333333344,
- "text": "pre-everything,"
- },
- {
- "id": 682,
- "start": 223.94,
- "end": 225.02,
- "text": "essentially."
- },
- {
- "id": 683,
- "start": 225.02,
- "end": 225.23,
- "text": "And"
- },
- {
- "id": 684,
- "start": 225.23,
- "end": 225.37,
- "text": "yet,"
- },
- {
- "id": 685,
- "start": 225.37,
- "end": 225.43,
- "text": "it"
- },
- {
- "id": 686,
- "start": 225.43,
- "end": 225.54,
- "text": "was"
- },
- {
- "id": 687,
- "start": 225.54,
- "end": 225.72,
- "text": "really"
- },
- {
- "id": 688,
- "start": 225.72,
- "end": 226.12,
- "text": "clear"
- },
- {
- "id": 689,
- "start": 226.12,
- "end": 226.27,
- "text": "that"
- },
- {
- "id": 690,
- "start": 226.27,
- "end": 227.61,
- "text": "they"
- },
- {
- "id": 691,
- "start": 227.61,
- "end": 227.95,
- "text": "had"
- },
- {
- "id": 692,
- "start": 227.95,
- "end": 228.11,
- "text": "built"
- },
- {
- "id": 693,
- "start": 228.1,
- "end": 228.25,
- "text": "a"
- },
- {
- "id": 694,
- "start": 228.25,
- "end": 228.39,
- "text": "service"
- },
- {
- "id": 695,
- "start": 228.4,
- "end": 228.53,
- "text": "that"
- },
- {
- "id": 696,
- "start": 228.55,
- "end": 228.67,
- "text": "was"
- },
- {
- "id": 697,
- "start": 228.67,
- "end": 229.13,
- "text": "really"
- },
- {
- "id": 698,
- "start": 229.13,
- "end": 230.78,
- "text": "topical,"
- },
- {
- "id": 699,
- "start": 230.78,
- "end": 230.96,
- "text": "that"
- },
- {
- "id": 700,
- "start": 230.96,
- "end": 231.35,
- "text": "had"
- },
- {
- "id": 701,
- "start": 231.35,
- "end": 231.45,
- "text": "a"
- },
- {
- "id": 702,
- "start": 231.45,
- "end": 231.83,
- "text": "tremendous"
- },
- {
- "id": 703,
- "start": 231.83,
- "end": 232.01,
- "text": "amount"
- },
- {
- "id": 704,
- "start": 232.01,
- "end": 232.1,
- "text": "of"
- },
- {
- "id": 705,
- "start": 232.1,
- "end": 233.02,
- "text": "usage,"
- },
- {
- "id": 706,
- "start": 233.02,
- "end": 233.88,
- "text": "and"
- },
- {
- "id": 707,
- "start": 233.88,
- "end": 234.02,
- "text": "that"
- },
- {
- "id": 708,
- "start": 234.02,
- "end": 234.21,
- "text": "had"
- },
- {
- "id": 709,
- "start": 234.21,
- "end": 234.46,
- "text": "all"
- },
- {
- "id": 710,
- "start": 234.46,
- "end": 234.59,
- "text": "the"
- },
- {
- "id": 711,
- "start": 234.59,
- "end": 235.12,
- "text": "component"
- },
- {
- "id": 712,
- "start": 235.12,
- "end": 235.44,
- "text": "parts"
- },
- {
- "id": 713,
- "start": 235.44,
- "end": 235.53,
- "text": "to"
- },
- {
- "id": 714,
- "start": 235.53,
- "end": 235.93,
- "text": "potentially"
- },
- {
- "id": 715,
- "start": 235.875,
- "end": 236.14000000000001,
- "text": "realize"
- },
- {
- "id": 716,
- "start": 236.22,
- "end": 236.35,
- "text": "this"
- },
- {
- "id": 717,
- "start": 236.35,
- "end": 237.19,
- "text": "vision."
- },
- {
- "id": 718,
- "start": 237.19,
- "end": 237.32,
- "text": "And"
- },
- {
- "id": 719,
- "start": 237.32,
- "end": 237.43,
- "text": "so"
- },
- {
- "id": 720,
- "start": 237.43,
- "end": 237.54,
- "text": "they"
- },
- {
- "id": 721,
- "start": 237.54,
- "end": 237.74,
- "text": "asked"
- },
- {
- "id": 722,
- "start": 237.74,
- "end": 238.52,
- "text": "me,"
- },
- {
- "id": 723,
- "start": 238.52,
- "end": 238.66,
- "text": "“Do"
- },
- {
- "id": 724,
- "start": 238.66,
- "end": 238.74,
- "text": "you"
- },
- {
- "id": 725,
- "start": 238.74,
- "end": 239.1,
- "text": "believe"
- },
- {
- "id": 726,
- "start": 239.1,
- "end": 239.24,
- "text": "that"
- },
- {
- "id": 727,
- "start": 239.24,
- "end": 239.86,
- "text": "someday"
- },
- {
- "id": 728,
- "start": 239.86,
- "end": 240.05,
- "text": "this"
- },
- {
- "id": 729,
- "start": 240.05,
- "end": 240.39,
- "text": "system"
- },
- {
- "id": 730,
- "start": 240.39,
- "end": 240.49,
- "text": "that"
- },
- {
- "id": 731,
- "start": 240.49,
- "end": 240.58,
- "text": "we"
- },
- {
- "id": 732,
- "start": 240.58,
- "end": 240.74,
- "text": "just"
- },
- {
- "id": 733,
- "start": 240.74,
- "end": 241.1,
- "text": "described"
- },
- {
- "id": 734,
- "start": 241.1,
- "end": 241.19,
- "text": "will"
- },
- {
- "id": 735,
- "start": 241.19,
- "end": 242.41,
- "text": "exist?”"
- },
- {
- "id": 736,
- "start": 242.41,
- "end": 242.59,
- "text": "And"
- },
- {
- "id": 737,
- "start": 242.59,
- "end": 242.66,
- "text": "I"
- },
- {
- "id": 738,
- "start": 242.66,
- "end": 242.88,
- "text": "said,"
- },
- {
- "id": 739,
- "start": 242.88,
- "end": 243.19,
- "text": "“Yeah,"
- },
- {
- "id": 740,
- "start": 243.19,
- "end": 243.5,
- "text": "this"
- },
- {
- "id": 741,
- "start": 243.5,
- "end": 243.73,
- "text": "just"
- },
- {
- "id": 742,
- "start": 243.73,
- "end": 244.14,
- "text": "seems"
- },
- {
- "id": 743,
- "start": 244.14,
- "end": 244.74,
- "text": "inevitable."
- },
- {
- "id": 744,
- "start": 244.495,
- "end": 244.905,
- "text": "This"
- },
- {
- "id": 745,
- "start": 244.85,
- "end": 245.07,
- "text": "seems"
- },
- {
- "id": 746,
- "start": 245.07,
- "end": 245.51,
- "text": "like"
- },
- {
- "id": 747,
- "start": 245.51,
- "end": 246.84,
- "text": "it’s"
- },
- {
- "id": 748,
- "start": 246.84,
- "end": 246.97,
- "text": "the"
- },
- {
- "id": 749,
- "start": 246.97,
- "end": 247.09,
- "text": "way"
- },
- {
- "id": 750,
- "start": 247.09,
- "end": 247.18,
- "text": "the"
- },
- {
- "id": 751,
- "start": 247.18,
- "end": 247.44,
- "text": "future"
- },
- {
- "id": 752,
- "start": 247.44,
- "end": 247.57,
- "text": "will"
- },
- {
- "id": 753,
- "start": 247.57,
- "end": 248.94,
- "text": "work.”"
- },
- {
- "id": 754,
- "start": 248.94,
- "end": 249.12,
- "text": "And"
- },
- {
- "id": 755,
- "start": 249.12,
- "end": 249.21,
- "text": "they"
- },
- {
- "id": 756,
- "start": 249.21,
- "end": 249.5,
- "text": "asked"
- },
- {
- "id": 757,
- "start": 249.5,
- "end": 249.57,
- "text": "a"
- },
- {
- "id": 758,
- "start": 249.57,
- "end": 249.78,
- "text": "really"
- },
- {
- "id": 759,
- "start": 249.78,
- "end": 250.01,
- "text": "simple"
- },
- {
- "id": 760,
- "start": 250.01,
- "end": 250.33,
- "text": "question."
- },
- {
- "id": 761,
- "start": 250.33,
- "end": 250.43,
- "text": "They"
- },
- {
- "id": 762,
- "start": 250.43,
- "end": 250.87,
- "text": "asked,"
- },
- {
- "id": 763,
- "start": 251.6350000000001,
- "end": 251.96499999999992,
- "text": "“Well,"
- },
- {
- "id": 764,
- "start": 252.84,
- "end": 253.06,
- "text": "who’s"
- },
- {
- "id": 765,
- "start": 252.96333333333334,
- "end": 253.17666666666668,
- "text": "going"
- },
- {
- "id": 766,
- "start": 253.08666666666667,
- "end": 253.29333333333335,
- "text": "to"
- },
- {
- "id": 767,
- "start": 253.21,
- "end": 253.41,
- "text": "build"
- },
- {
- "id": 768,
- "start": 253.41,
- "end": 254.3,
- "text": "it?"
- },
- {
- "id": 769,
- "start": 254.3,
- "end": 254.51,
- "text": "Why"
- },
- {
- "id": 770,
- "start": 254.51,
- "end": 254.69,
- "text": "not"
- },
- {
- "id": 771,
- "start": 254.69,
- "end": 255.88,
- "text": "us?”"
- },
- {
- "id": 772,
- "start": 255.88,
- "end": 256.05,
- "text": "And"
- },
- {
- "id": 773,
- "start": 256.05,
- "end": 256.1,
- "text": "I"
- },
- {
- "id": 774,
- "start": 256.1,
- "end": 256.3,
- "text": "came"
- },
- {
- "id": 775,
- "start": 256.3,
- "end": 256.48,
- "text": "home"
- },
- {
- "id": 776,
- "start": 256.48,
- "end": 256.75,
- "text": "thinking"
- },
- {
- "id": 777,
- "start": 256.75,
- "end": 256.9,
- "text": "about"
- },
- {
- "id": 778,
- "start": 256.8388888888889,
- "end": 257.03999999999996,
- "text": "it"
- },
- {
- "id": 779,
- "start": 256.9277777777778,
- "end": 257.18,
- "text": "and"
- },
- {
- "id": 780,
- "start": 257.01666666666665,
- "end": 257.32,
- "text": "I"
- },
- {
- "id": 781,
- "start": 257.10555555555555,
- "end": 257.46000000000004,
- "text": "was"
- },
- {
- "id": 782,
- "start": 257.19444444444446,
- "end": 257.6,
- "text": "like,"
- },
- {
- "id": 783,
- "start": 257.2833333333333,
- "end": 257.74,
- "text": "yeah,"
- },
- {
- "id": 784,
- "start": 257.3722222222222,
- "end": 257.88,
- "text": "why"
- },
- {
- "id": 785,
- "start": 257.4611111111111,
- "end": 258.02000000000004,
- "text": "not"
- },
- {
- "id": 786,
- "start": 257.55,
- "end": 258.16,
- "text": "them?"
- },
- {
- "id": 787,
- "start": 258.16,
- "end": 258.34,
- "text": "Who"
- },
- {
- "id": 788,
- "start": 258.34,
- "end": 258.55,
- "text": "will"
- },
- {
- "id": 789,
- "start": 258.55,
- "end": 258.82,
- "text": "build"
- },
- {
- "id": 790,
- "start": 259.2849999999999,
- "end": 259.48999999999995,
- "text": "this?"
- },
- {
- "id": 791,
- "start": 260.02,
- "end": 260.16,
- "text": "They"
- },
- {
- "id": 792,
- "start": 260.15,
- "end": 260.38,
- "text": "reached"
- },
- {
- "id": 793,
- "start": 260.28999999999996,
- "end": 260.516,
- "text": "out"
- },
- {
- "id": 794,
- "start": 260.42999999999995,
- "end": 260.65200000000004,
- "text": "and"
- },
- {
- "id": 795,
- "start": 260.57,
- "end": 260.788,
- "text": "they"
- },
- {
- "id": 796,
- "start": 260.71,
- "end": 260.92400000000004,
- "text": "asked,"
- },
- {
- "id": 797,
- "start": 260.85,
- "end": 261.06,
- "text": "“Hey,"
- },
- {
- "id": 798,
- "start": 261.06,
- "end": 261.18,
- "text": "are"
- },
- {
- "id": 799,
- "start": 261.18,
- "end": 261.33,
- "text": "you"
- },
- {
- "id": 800,
- "start": 261.33,
- "end": 261.7,
- "text": "interested"
- },
- {
- "id": 801,
- "start": 261.7,
- "end": 261.94,
- "text": "in"
- },
- {
- "id": 802,
- "start": 261.94,
- "end": 262.37,
- "text": "potentially"
- },
- {
- "id": 803,
- "start": 262.37,
- "end": 262.79,
- "text": "interviewing"
- },
- {
- "id": 804,
- "start": 262.79,
- "end": 262.91,
- "text": "for"
- },
- {
- "id": 805,
- "start": 262.85,
- "end": 263.07000000000005,
- "text": "a"
- },
- {
- "id": 806,
- "start": 262.91,
- "end": 263.23,
- "text": "design"
- },
- {
- "id": 807,
- "start": 263.23,
- "end": 263.41,
- "text": "role"
- },
- {
- "id": 808,
- "start": 263.41,
- "end": 264.34,
- "text": "here?”"
- },
- {
- "id": 809,
- "start": 264.34,
- "end": 265.04,
- "text": "And"
- },
- {
- "id": 810,
- "start": 265.04,
- "end": 265.16,
- "text": "I"
- },
- {
- "id": 811,
- "start": 265.16,
- "end": 265.4,
- "text": "said,"
- },
- {
- "id": 812,
- "start": 265.4,
- "end": 265.48,
- "text": "“You"
- },
- {
- "id": 813,
- "start": 265.48,
- "end": 265.62,
- "text": "know"
- },
- {
- "id": 814,
- "start": 265.555,
- "end": 265.685,
- "text": "what,"
- },
- {
- "id": 815,
- "start": 265.63,
- "end": 265.75,
- "text": "I’ll"
- },
- {
- "id": 816,
- "start": 265.75,
- "end": 265.93,
- "text": "try"
- },
- {
- "id": 817,
- "start": 265.93,
- "end": 266.06,
- "text": "this"
- },
- {
- "id": 818,
- "start": 266.06,
- "end": 266.18,
- "text": "out"
- },
- {
- "id": 819,
- "start": 266.18,
- "end": 266.29,
- "text": "for"
- },
- {
- "id": 820,
- "start": 266.29,
- "end": 266.44,
- "text": "one"
- },
- {
- "id": 821,
- "start": 266.835,
- "end": 266.99,
- "text": "year."
- },
- {
- "id": 822,
- "start": 267.38,
- "end": 267.54,
- "text": "See"
- },
- {
- "id": 823,
- "start": 267.54,
- "end": 267.64,
- "text": "what"
- },
- {
- "id": 824,
- "start": 267.64,
- "end": 268.08,
- "text": "happens.”"
- },
- {
- "id": 825,
- "start": 268.08,
- "end": 268.45,
- "text": "And"
- },
- {
- "id": 826,
- "start": 268.45,
- "end": 268.64,
- "text": "one"
- },
- {
- "id": 827,
- "start": 268.64,
- "end": 268.77,
- "text": "year"
- },
- {
- "id": 828,
- "start": 268.77,
- "end": 269.05,
- "text": "became"
- },
- {
- "id": 829,
- "start": 269.39,
- "end": 269.58,
- "text": "six."
- },
- {
- "id": 830,
- "start": 270.01,
- "end": 270.11,
- "text": "In"
- },
- {
- "id": 831,
- "start": 270.11,
- "end": 270.4,
- "text": "terms"
- },
- {
- "id": 832,
- "start": 270.4,
- "end": 270.7,
- "text": "of"
- },
- {
- "id": 833,
- "start": 270.7,
- "end": 270.88,
- "text": "the"
- },
- {
- "id": 834,
- "start": 270.88,
- "end": 271.25,
- "text": "vision"
- },
- {
- "id": 835,
- "start": 271.25,
- "end": 271.34,
- "text": "at"
- },
- {
- "id": 836,
- "start": 271.34,
- "end": 271.44,
- "text": "the"
- },
- {
- "id": 837,
- "start": 272.385,
- "end": 272.54499999999996,
- "text": "time,"
- },
- {
- "id": 838,
- "start": 273.43,
- "end": 273.65,
- "text": "was"
- },
- {
- "id": 839,
- "start": 273.65,
- "end": 273.81,
- "text": "there"
- },
- {
- "id": 840,
- "start": 273.81,
- "end": 273.88,
- "text": "a"
- },
- {
- "id": 841,
- "start": 273.88,
- "end": 274.28,
- "text": "sense"
- },
- {
- "id": 842,
- "start": 274.28,
- "end": 275.35,
- "text": "that"
- },
- {
- "id": 843,
- "start": 275.35,
- "end": 275.56,
- "text": "they"
- },
- {
- "id": 844,
- "start": 275.56,
- "end": 275.87,
- "text": "wanted"
- },
- {
- "id": 845,
- "start": 275.87,
- "end": 275.96,
- "text": "to"
- },
- {
- "id": 846,
- "start": 275.96,
- "end": 276.48,
- "text": "create"
- },
- {
- "id": 847,
- "start": 276.48,
- "end": 276.65,
- "text": "sort"
- },
- {
- "id": 848,
- "start": 276.65,
- "end": 276.72,
- "text": "of"
- },
- {
- "id": 849,
- "start": 276.72,
- "end": 276.77,
- "text": "a"
- },
- {
- "id": 850,
- "start": 277.04,
- "end": 277.275,
- "text": "21st"
- },
- {
- "id": 851,
- "start": 277.36,
- "end": 277.78,
- "text": "century"
- },
- {
- "id": 852,
- "start": 277.78,
- "end": 278.55,
- "text": "public"
- },
- {
- "id": 853,
- "start": 278.55,
- "end": 279.55,
- "text": "space"
- },
- {
- "id": 854,
- "start": 279.55,
- "end": 279.74,
- "text": "as"
- },
- {
- "id": 855,
- "start": 279.74,
- "end": 280.37,
- "text": "well?"
- },
- {
- "id": 856,
- "start": 280.37,
- "end": 280.46,
- "text": "I"
- },
- {
- "id": 857,
- "start": 280.46,
- "end": 280.63,
- "text": "mean,"
- },
- {
- "id": 858,
- "start": 280.63,
- "end": 280.8,
- "text": "in"
- },
- {
- "id": 859,
- "start": 280.8,
- "end": 281.11,
- "text": "terms"
- },
- {
- "id": 860,
- "start": 281.11,
- "end": 281.2,
- "text": "of"
- },
- {
- "id": 861,
- "start": 281.21000000000004,
- "end": 281.4,
- "text": "a"
- },
- {
- "id": 862,
- "start": 281.31,
- "end": 281.6,
- "text": "place"
- },
- {
- "id": 863,
- "start": 281.6,
- "end": 281.72,
- "text": "where"
- },
- {
- "id": 864,
- "start": 281.72,
- "end": 282.02,
- "text": "people"
- },
- {
- "id": 865,
- "start": 282.02,
- "end": 282.4,
- "text": "connect"
- },
- {
- "id": 866,
- "start": 282.4,
- "end": 282.51,
- "text": "and"
- },
- {
- "id": 867,
- "start": 282.51,
- "end": 283.94,
- "text": "share,"
- },
- {
- "id": 868,
- "start": 283.94,
- "end": 284.13,
- "text": "was"
- },
- {
- "id": 869,
- "start": 284.13,
- "end": 284.32,
- "text": "that"
- },
- {
- "id": 870,
- "start": 284.32,
- "end": 284.56,
- "text": "part"
- },
- {
- "id": 871,
- "start": 284.56,
- "end": 284.65,
- "text": "of"
- },
- {
- "id": 872,
- "start": 284.65,
- "end": 284.78,
- "text": "the"
- },
- {
- "id": 873,
- "start": 284.78,
- "end": 285.35,
- "text": "ambition"
- },
- {
- "id": 874,
- "start": 285.35,
- "end": 285.64,
- "text": "to"
- },
- {
- "id": 875,
- "start": 285.64,
- "end": 285.83,
- "text": "be,"
- },
- {
- "id": 876,
- "start": 285.83,
- "end": 286.39,
- "text": "like,"
- },
- {
- "id": 877,
- "start": 286.39,
- "end": 286.54,
- "text": "the"
- },
- {
- "id": 878,
- "start": 286.54,
- "end": 286.95,
- "text": "one"
- },
- {
- "id": 879,
- "start": 286.95,
- "end": 287.61,
- "text": "place,"
- },
- {
- "id": 880,
- "start": 287.55,
- "end": 288.05,
- "text": "something"
- },
- {
- "id": 881,
- "start": 287.8825,
- "end": 288.375,
- "text": "that"
- },
- {
- "id": 882,
- "start": 288.215,
- "end": 288.7,
- "text": "kind"
- },
- {
- "id": 883,
- "start": 288.5475,
- "end": 289.02500000000003,
- "text": "of"
- },
- {
- "id": 884,
- "start": 288.88,
- "end": 289.35,
- "text": "stands"
- },
- {
- "id": 885,
- "start": 289.35,
- "end": 289.48,
- "text": "on"
- },
- {
- "id": 886,
- "start": 289.48,
- "end": 289.63,
- "text": "its"
- },
- {
- "id": 887,
- "start": 289.63,
- "end": 290.82,
- "text": "own?"
- },
- {
- "id": 888,
- "start": 290.82,
- "end": 290.93,
- "text": "I"
- },
- {
- "id": 889,
- "start": 290.93,
- "end": 291.24,
- "text": "think"
- },
- {
- "id": 890,
- "start": 291.24,
- "end": 291.62,
- "text": "early"
- },
- {
- "id": 891,
- "start": 291.62,
- "end": 293.07,
- "text": "on,"
- },
- {
- "id": 892,
- "start": 293.07,
- "end": 293.51,
- "text": "if"
- },
- {
- "id": 893,
- "start": 293.51,
- "end": 294.24,
- "text": "you"
- },
- {
- "id": 894,
- "start": 294.24,
- "end": 294.6,
- "text": "look"
- },
- {
- "id": 895,
- "start": 294.6,
- "end": 294.95,
- "text": "back"
- },
- {
- "id": 896,
- "start": 294.95,
- "end": 295.1,
- "text": "on"
- },
- {
- "id": 897,
- "start": 295.1,
- "end": 295.27,
- "text": "where"
- },
- {
- "id": 898,
- "start": 295.27,
- "end": 295.64,
- "text": "Facebook"
- },
- {
- "id": 899,
- "start": 295.64,
- "end": 295.97,
- "text": "was"
- },
- {
- "id": 900,
- "start": 295.97,
- "end": 296.07,
- "text": "in"
- },
- {
- "id": 901,
- "start": 296.07,
- "end": 296.32,
- "text": "that"
- },
- {
- "id": 902,
- "start": 296.32,
- "end": 298.04,
- "text": "era,"
- },
- {
- "id": 903,
- "start": 298.04,
- "end": 298.44,
- "text": "Facebook"
- },
- {
- "id": 904,
- "start": 298.44,
- "end": 298.56,
- "text": "was"
- },
- {
- "id": 905,
- "start": 298.56,
- "end": 299.23,
- "text": "sitting"
- },
- {
- "id": 906,
- "start": 299.23,
- "end": 300.03,
- "text": "squarely"
- },
- {
- "id": 907,
- "start": 300.03,
- "end": 300.17,
- "text": "in"
- },
- {
- "id": 908,
- "start": 300.17,
- "end": 300.25,
- "text": "the"
- },
- {
- "id": 909,
- "start": 300.25,
- "end": 300.89,
- "text": "shadows"
- },
- {
- "id": 910,
- "start": 300.89,
- "end": 301.04,
- "text": "of"
- },
- {
- "id": 911,
- "start": 301.04,
- "end": 301.12,
- "text": "an"
- },
- {
- "id": 912,
- "start": 301.12,
- "end": 301.6,
- "text": "incumbent"
- },
- {
- "id": 913,
- "start": 301.6,
- "end": 302.2,
- "text": "company"
- },
- {
- "id": 914,
- "start": 302.2,
- "end": 302.46,
- "text": "called"
- },
- {
- "id": 915,
- "start": 302.46,
- "end": 304.09,
- "text": "Myspace."
- },
- {
- "id": 916,
- "start": 304.09,
- "end": 304.31,
- "text": "And"
- },
- {
- "id": 917,
- "start": 304.31,
- "end": 304.45,
- "text": "our"
- },
- {
- "id": 918,
- "start": 304.45,
- "end": 304.83,
- "text": "ambitions"
- },
- {
- "id": 919,
- "start": 304.83,
- "end": 304.92,
- "text": "at"
- },
- {
- "id": 920,
- "start": 304.92,
- "end": 305,
- "text": "the"
- },
- {
- "id": 921,
- "start": 305,
- "end": 305.26,
- "text": "time"
- },
- {
- "id": 922,
- "start": 305.26,
- "end": 305.72,
- "text": "were:"
- },
- {
- "id": 923,
- "start": 305.72,
- "end": 306.09,
- "text": "Can"
- },
- {
- "id": 924,
- "start": 306.09,
- "end": 307.04,
- "text": "we"
- },
- {
- "id": 925,
- "start": 307.04,
- "end": 307.32,
- "text": "stay"
- },
- {
- "id": 926,
- "start": 307.32,
- "end": 307.66,
- "text": "alive"
- },
- {
- "id": 927,
- "start": 307.66,
- "end": 307.76,
- "text": "as"
- },
- {
- "id": 928,
- "start": 307.76,
- "end": 307.82,
- "text": "a"
- },
- {
- "id": 929,
- "start": 307.82,
- "end": 308.59,
- "text": "company?"
- },
- {
- "id": 930,
- "start": 308.59,
- "end": 308.9,
- "text": "Right?"
- },
- {
- "id": 931,
- "start": 308.9,
- "end": 309.2,
- "text": "Can"
- },
- {
- "id": 932,
- "start": 309.2,
- "end": 310.04,
- "text": "we"
- },
- {
- "id": 933,
- "start": 310.04,
- "end": 310.82,
- "text": "demonstrate"
- },
- {
- "id": 934,
- "start": 310.82,
- "end": 311.05,
- "text": "some"
- },
- {
- "id": 935,
- "start": 311.05,
- "end": 311.46,
- "text": "relevance"
- },
- {
- "id": 936,
- "start": 311.46,
- "end": 311.54,
- "text": "in"
- },
- {
- "id": 937,
- "start": 311.54,
- "end": 311.6,
- "text": "a"
- },
- {
- "id": 938,
- "start": 311.6,
- "end": 311.86,
- "text": "world"
- },
- {
- "id": 939,
- "start": 311.86,
- "end": 312.02,
- "text": "where"
- },
- {
- "id": 940,
- "start": 312.11,
- "end": 312.375,
- "text": "there"
- },
- {
- "id": 941,
- "start": 312.36,
- "end": 312.73,
- "text": "appears"
- },
- {
- "id": 942,
- "start": 312.73,
- "end": 312.8,
- "text": "to"
- },
- {
- "id": 943,
- "start": 312.8,
- "end": 313.09,
- "text": "already"
- },
- {
- "id": 944,
- "start": 313.09,
- "end": 313.24,
- "text": "be"
- },
- {
- "id": 945,
- "start": 313.24,
- "end": 313.31,
- "text": "a"
- },
- {
- "id": 946,
- "start": 313.31,
- "end": 314.31,
- "text": "winner"
- },
- {
- "id": 947,
- "start": 314.31,
- "end": 314.47,
- "text": "in"
- },
- {
- "id": 948,
- "start": 314.47,
- "end": 314.65,
- "text": "this"
- },
- {
- "id": 949,
- "start": 314.65,
- "end": 315.19,
- "text": "category"
- },
- {
- "id": 950,
- "start": 315.19,
- "end": 315.27,
- "text": "of"
- },
- {
- "id": 951,
- "start": 315.76000000000005,
- "end": 315.875,
- "text": "product?"
- },
- {
- "id": 952,
- "start": 316.33,
- "end": 316.48,
- "text": "And"
- },
- {
- "id": 953,
- "start": 316.48,
- "end": 316.59,
- "text": "so"
- },
- {
- "id": 954,
- "start": 316.59,
- "end": 316.79,
- "text": "for"
- },
- {
- "id": 955,
- "start": 316.79,
- "end": 317.31,
- "text": "us"
- },
- {
- "id": 956,
- "start": 317.34999999999997,
- "end": 317.66,
- "text": "there"
- },
- {
- "id": 957,
- "start": 317.91,
- "end": 318.01,
- "text": "was"
- },
- {
- "id": 958,
- "start": 318.01,
- "end": 318.06,
- "text": "a"
- },
- {
- "id": 959,
- "start": 318.06,
- "end": 318.41,
- "text": "tremendous"
- },
- {
- "id": 960,
- "start": 318.41,
- "end": 318.58,
- "text": "amount"
- },
- {
- "id": 961,
- "start": 318.58,
- "end": 318.65,
- "text": "of"
- },
- {
- "id": 962,
- "start": 318.65,
- "end": 319.41,
- "text": "urgency"
- },
- {
- "id": 963,
- "start": 319.41,
- "end": 319.96,
- "text": "in,"
- },
- {
- "id": 964,
- "start": 319.96,
- "end": 320.31,
- "text": "one,"
- },
- {
- "id": 965,
- "start": 320.31,
- "end": 321.05,
- "text": "manifesting"
- },
- {
- "id": 966,
- "start": 321.05,
- "end": 321.25,
- "text": "this"
- },
- {
- "id": 967,
- "start": 321.25,
- "end": 321.52,
- "text": "idea"
- },
- {
- "id": 968,
- "start": 321.45500000000004,
- "end": 321.695,
- "text": "for"
- },
- {
- "id": 969,
- "start": 321.66,
- "end": 321.87,
- "text": "News"
- },
- {
- "id": 970,
- "start": 322.3533333333333,
- "end": 322.6333333333333,
- "text": "Feed"
- },
- {
- "id": 971,
- "start": 323.04666666666657,
- "end": 323.39666666666665,
- "text": "–"
- },
- {
- "id": 972,
- "start": 323.74,
- "end": 324.16,
- "text": "seeing"
- },
- {
- "id": 973,
- "start": 324.16,
- "end": 324.31,
- "text": "whether"
- },
- {
- "id": 974,
- "start": 324.31,
- "end": 324.37,
- "text": "or"
- },
- {
- "id": 975,
- "start": 324.37,
- "end": 324.53,
- "text": "not"
- },
- {
- "id": 976,
- "start": 324.53,
- "end": 324.59,
- "text": "it"
- },
- {
- "id": 977,
- "start": 324.59,
- "end": 324.91,
- "text": "actually"
- },
- {
- "id": 978,
- "start": 324.91,
- "end": 325.48,
- "text": "had"
- },
- {
- "id": 979,
- "start": 325.48,
- "end": 325.64,
- "text": "the"
- },
- {
- "id": 980,
- "start": 325.64,
- "end": 325.8,
- "text": "kind"
- },
- {
- "id": 981,
- "start": 325.8,
- "end": 325.86,
- "text": "of"
- },
- {
- "id": 982,
- "start": 325.86,
- "end": 326.36,
- "text": "traction,"
- },
- {
- "id": 983,
- "start": 326.115,
- "end": 326.46000000000004,
- "text": "the"
- },
- {
- "id": 984,
- "start": 326.37,
- "end": 326.56,
- "text": "kind"
- },
- {
- "id": 985,
- "start": 326.56,
- "end": 326.62,
- "text": "of"
- },
- {
- "id": 986,
- "start": 326.885,
- "end": 327.33000000000004,
- "text": "market-product"
- },
- {
- "id": 987,
- "start": 327.21,
- "end": 328.04,
- "text": "fit"
- },
- {
- "id": 988,
- "start": 328.04,
- "end": 328.17,
- "text": "that"
- },
- {
- "id": 989,
- "start": 328.17,
- "end": 328.31,
- "text": "we"
- },
- {
- "id": 990,
- "start": 328.31,
- "end": 328.86,
- "text": "intuitively"
- },
- {
- "id": 991,
- "start": 328.86,
- "end": 329.03,
- "text": "felt"
- },
- {
- "id": 992,
- "start": 329.03,
- "end": 329.16,
- "text": "like"
- },
- {
- "id": 993,
- "start": 329.16,
- "end": 329.27,
- "text": "it"
- },
- {
- "id": 994,
- "start": 329.27,
- "end": 330.42,
- "text": "would;"
- },
- {
- "id": 995,
- "start": 330.42,
- "end": 330.52,
- "text": "and"
- },
- {
- "id": 996,
- "start": 330.52,
- "end": 330.63,
- "text": "then"
- },
- {
- "id": 997,
- "start": 330.63,
- "end": 330.79,
- "text": "three,"
- },
- {
- "id": 998,
- "start": 330.79,
- "end": 330.98,
- "text": "trying"
- },
- {
- "id": 999,
- "start": 330.98,
- "end": 331.04,
- "text": "to"
- },
- {
- "id": 1000,
- "start": 331.04,
- "end": 331.15,
- "text": "get"
- },
- {
- "id": 1001,
- "start": 331.15,
- "end": 331.32,
- "text": "it"
- },
- {
- "id": 1002,
- "start": 331.32,
- "end": 331.44,
- "text": "to"
- },
- {
- "id": 1003,
- "start": 331.44,
- "end": 331.53,
- "text": "as"
- },
- {
- "id": 1004,
- "start": 331.53,
- "end": 331.69,
- "text": "many"
- },
- {
- "id": 1005,
- "start": 331.69,
- "end": 332.12,
- "text": "people"
- },
- {
- "id": 1006,
- "start": 332.12,
- "end": 332.29,
- "text": "as"
- },
- {
- "id": 1007,
- "start": 332.29,
- "end": 332.38,
- "text": "we"
- },
- {
- "id": 1008,
- "start": 332.38,
- "end": 332.73,
- "text": "possibly"
- },
- {
- "id": 1009,
- "start": 332.73,
- "end": 333.05,
- "text": "could."
- },
- {
- "id": 1010,
- "start": 333.73,
- "end": 334.0799999999999,
- "text": "The"
- },
- {
- "id": 1011,
- "start": 334.73,
- "end": 335.1099999999999,
- "text": "[Silicon]"
- },
- {
- "id": 1012,
- "start": 335.73,
- "end": 336.14,
- "text": "Valley"
- },
- {
- "id": 1013,
- "start": 336.14,
- "end": 336.26,
- "text": "is"
- },
- {
- "id": 1014,
- "start": 336.26,
- "end": 336.64,
- "text": "littered"
- },
- {
- "id": 1015,
- "start": 336.64,
- "end": 336.87,
- "text": "with"
- },
- {
- "id": 1016,
- "start": 336.87,
- "end": 336.98,
- "text": "the"
- },
- {
- "id": 1017,
- "start": 336.98,
- "end": 337.34,
- "text": "bodies"
- },
- {
- "id": 1018,
- "start": 337.34,
- "end": 337.4,
- "text": "of"
- },
- {
- "id": 1019,
- "start": 337.4,
- "end": 337.93,
- "text": "companies"
- },
- {
- "id": 1020,
- "start": 337.93,
- "end": 338.37,
- "text": "that"
- },
- {
- "id": 1021,
- "start": 338.37,
- "end": 338.66,
- "text": "were"
- },
- {
- "id": 1022,
- "start": 338.66,
- "end": 338.96,
- "text": "much"
- },
- {
- "id": 1023,
- "start": 338.96,
- "end": 339.33,
- "text": "further"
- },
- {
- "id": 1024,
- "start": 339.33,
- "end": 339.85,
- "text": "along"
- },
- {
- "id": 1025,
- "start": 339.85,
- "end": 339.99,
- "text": "than"
- },
- {
- "id": 1026,
- "start": 339.99,
- "end": 340.32,
- "text": "Facebook"
- },
- {
- "id": 1027,
- "start": 340.32,
- "end": 340.5,
- "text": "was"
- },
- {
- "id": 1028,
- "start": 340.5,
- "end": 340.7,
- "text": "back"
- },
- {
- "id": 1029,
- "start": 340.7,
- "end": 341.6,
- "text": "then."
- },
- {
- "id": 1030,
- "start": 341.05,
- "end": 341.8,
- "text": "So"
- },
- {
- "id": 1031,
- "start": 341.425,
- "end": 341.88,
- "text": "a"
- },
- {
- "id": 1032,
- "start": 341.8,
- "end": 341.96,
- "text": "big"
- },
- {
- "id": 1033,
- "start": 341.96,
- "end": 342.3,
- "text": "impetus"
- },
- {
- "id": 1034,
- "start": 342.3,
- "end": 342.42,
- "text": "for"
- },
- {
- "id": 1035,
- "start": 342.42,
- "end": 342.58,
- "text": "us"
- },
- {
- "id": 1036,
- "start": 342.58,
- "end": 342.84,
- "text": "was"
- },
- {
- "id": 1037,
- "start": 342.84,
- "end": 343.12,
- "text": "moving"
- },
- {
- "id": 1038,
- "start": 343.07666666666665,
- "end": 343.29333333333335,
- "text": "quickly"
- },
- {
- "id": 1039,
- "start": 343.31333333333333,
- "end": 343.4666666666667,
- "text": "enough"
- },
- {
- "id": 1040,
- "start": 343.55,
- "end": 343.64,
- "text": "to"
- },
- {
- "id": 1041,
- "start": 343.64,
- "end": 343.7,
- "text": "be"
- },
- {
- "id": 1042,
- "start": 343.965,
- "end": 344.03999999999996,
- "text": "able"
- },
- {
- "id": 1043,
- "start": 344.29,
- "end": 344.37999999999994,
- "text": "to"
- },
- {
- "id": 1044,
- "start": 344.615,
- "end": 344.71999999999997,
- "text": "realize"
- },
- {
- "id": 1045,
- "start": 344.94,
- "end": 345.06,
- "text": "that"
- },
- {
- "id": 1046,
- "start": 345.06,
- "end": 345.35,
- "text": "market"
- },
- {
- "id": 1047,
- "start": 345.35,
- "end": 347.64,
- "text": "opportunity."
- },
- {
- "id": 1048,
- "start": 347.64,
- "end": 347.78,
- "text": "At"
- },
- {
- "id": 1049,
- "start": 347.78,
- "end": 347.91,
- "text": "no"
- },
- {
- "id": 1050,
- "start": 347.91,
- "end": 348.11,
- "text": "point"
- },
- {
- "id": 1051,
- "start": 348.04,
- "end": 348.19,
- "text": "did"
- },
- {
- "id": 1052,
- "start": 348.17,
- "end": 348.27,
- "text": "we"
- },
- {
- "id": 1053,
- "start": 348.27,
- "end": 348.54,
- "text": "call"
- },
- {
- "id": 1054,
- "start": 348.54,
- "end": 349.14,
- "text": "it"
- },
- {
- "id": 1055,
- "start": 349.14,
- "end": 349.26,
- "text": "a"
- },
- {
- "id": 1056,
- "start": 349.26,
- "end": 349.58,
- "text": "public"
- },
- {
- "id": 1057,
- "start": 349.58,
- "end": 349.87,
- "text": "space"
- },
- {
- "id": 1058,
- "start": 349.8075,
- "end": 350.095,
- "text": "for"
- },
- {
- "id": 1059,
- "start": 350.03499999999997,
- "end": 350.32,
- "text": "the"
- },
- {
- "id": 1060,
- "start": 350.2625,
- "end": 350.54499999999996,
- "text": "21st"
- },
- {
- "id": 1061,
- "start": 350.49,
- "end": 350.77,
- "text": "century."
- },
- {
- "id": 1062,
- "start": 350.77,
- "end": 350.86,
- "text": "That"
- },
- {
- "id": 1063,
- "start": 350.86,
- "end": 351.07,
- "text": "wasn’t"
- },
- {
- "id": 1064,
- "start": 351.07,
- "end": 351.68,
- "text": "really"
- },
- {
- "id": 1065,
- "start": 351.68,
- "end": 351.81,
- "text": "the"
- },
- {
- "id": 1066,
- "start": 351.81,
- "end": 352.09,
- "text": "language"
- },
- {
- "id": 1067,
- "start": 352.09,
- "end": 352.18,
- "text": "that"
- },
- {
- "id": 1068,
- "start": 352.18,
- "end": 352.26,
- "text": "we"
- },
- {
- "id": 1069,
- "start": 352.34000000000003,
- "end": 352.41999999999996,
- "text": "used"
- },
- {
- "id": 1070,
- "start": 352.5,
- "end": 352.58,
- "text": "at"
- },
- {
- "id": 1071,
- "start": 352.58,
- "end": 352.67,
- "text": "the"
- },
- {
- "id": 1072,
- "start": 352.67,
- "end": 352.92,
- "text": "time."
- },
- {
- "id": 1073,
- "start": 352.92,
- "end": 352.96,
- "text": "I"
- },
- {
- "id": 1074,
- "start": 352.96,
- "end": 353.13,
- "text": "think"
- },
- {
- "id": 1075,
- "start": 353.07,
- "end": 353.70000000000005,
- "text": "it"
- },
- {
- "id": 1076,
- "start": 353.18,
- "end": 354.27,
- "text": "was"
- },
- {
- "id": 1077,
- "start": 353.29,
- "end": 354.84,
- "text": "more"
- },
- {
- "id": 1078,
- "start": 354.84,
- "end": 355.67,
- "text": "foundational."
- },
- {
- "id": 1079,
- "start": 355.67,
- "end": 355.84,
- "text": "It"
- },
- {
- "id": 1080,
- "start": 355.84,
- "end": 356.56,
- "text": "was"
- },
- {
- "id": 1081,
- "start": 356.56,
- "end": 356.76,
- "text": "this"
- },
- {
- "id": 1082,
- "start": 356.76,
- "end": 357.08,
- "text": "idea"
- },
- {
- "id": 1083,
- "start": 357.08,
- "end": 357.77,
- "text": "that"
- },
- {
- "id": 1084,
- "start": 357.77,
- "end": 358.08,
- "text": "today"
- },
- {
- "id": 1085,
- "start": 358.08,
- "end": 358.22,
- "text": "it’s"
- },
- {
- "id": 1086,
- "start": 358.22,
- "end": 358.63,
- "text": "difficult"
- },
- {
- "id": 1087,
- "start": 358.63,
- "end": 358.74,
- "text": "for"
- },
- {
- "id": 1088,
- "start": 358.74,
- "end": 359.02,
- "text": "people"
- },
- {
- "id": 1089,
- "start": 359.02,
- "end": 359.18,
- "text": "to"
- },
- {
- "id": 1090,
- "start": 359.18,
- "end": 359.47,
- "text": "share"
- },
- {
- "id": 1091,
- "start": 359.47,
- "end": 360.43,
- "text": "information"
- },
- {
- "id": 1092,
- "start": 360.43,
- "end": 360.72,
- "text": "with"
- },
- {
- "id": 1093,
- "start": 360.72,
- "end": 360.81,
- "text": "the"
- },
- {
- "id": 1094,
- "start": 360.81,
- "end": 361.08,
- "text": "folks"
- },
- {
- "id": 1095,
- "start": 361.08,
- "end": 361.21,
- "text": "that"
- },
- {
- "id": 1096,
- "start": 361.145,
- "end": 361.445,
- "text": "they’re"
- },
- {
- "id": 1097,
- "start": 361.21,
- "end": 361.68,
- "text": "closest"
- },
- {
- "id": 1098,
- "start": 361.68,
- "end": 362.396,
- "text": "with"
- },
- {
- "id": 1099,
- "start": 362.396,
- "end": 362.686,
- "text": "and"
- },
- {
- "id": 1100,
- "start": 362.686,
- "end": 362.766,
- "text": "to"
- },
- {
- "id": 1101,
- "start": 362.766,
- "end": 362.906,
- "text": "do"
- },
- {
- "id": 1102,
- "start": 362.906,
- "end": 363.136,
- "text": "so"
- },
- {
- "id": 1103,
- "start": 363.136,
- "end": 363.256,
- "text": "with"
- },
- {
- "id": 1104,
- "start": 363.256,
- "end": 363.316,
- "text": "the"
- },
- {
- "id": 1105,
- "start": 363.316,
- "end": 363.856,
- "text": "confidence"
- },
- {
- "id": 1106,
- "start": 363.856,
- "end": 364.016,
- "text": "that"
- },
- {
- "id": 1107,
- "start": 364.016,
- "end": 364.216,
- "text": "that"
- },
- {
- "id": 1108,
- "start": 364.216,
- "end": 365.396,
- "text": "information"
- },
- {
- "id": 1109,
- "start": 364.946,
- "end": 365.816,
- "text": "isn’t"
- },
- {
- "id": 1110,
- "start": 365.76099999999997,
- "end": 366.256,
- "text": "broadcasted"
- },
- {
- "id": 1111,
- "start": 366.576,
- "end": 366.696,
- "text": "to"
- },
- {
- "id": 1112,
- "start": 366.696,
- "end": 366.856,
- "text": "the"
- },
- {
- "id": 1113,
- "start": 366.856,
- "end": 367.186,
- "text": "entire"
- },
- {
- "id": 1114,
- "start": 367.186,
- "end": 368.916,
- "text": "planet."
- },
- {
- "id": 1115,
- "start": 368.916,
- "end": 369.106,
- "text": "So"
- },
- {
- "id": 1116,
- "start": 369.106,
- "end": 369.216,
- "text": "we"
- },
- {
- "id": 1117,
- "start": 369.216,
- "end": 369.296,
- "text": "were"
- },
- {
- "id": 1118,
- "start": 369.296,
- "end": 369.506,
- "text": "really"
- },
- {
- "id": 1119,
- "start": 369.506,
- "end": 369.796,
- "text": "focused"
- },
- {
- "id": 1120,
- "start": 369.796,
- "end": 369.886,
- "text": "on"
- },
- {
- "id": 1121,
- "start": 369.886,
- "end": 371.596,
- "text": "privacy,"
- },
- {
- "id": 1122,
- "start": 371.596,
- "end": 371.876,
- "text": "on"
- },
- {
- "id": 1123,
- "start": 371.876,
- "end": 372.186,
- "text": "these"
- },
- {
- "id": 1124,
- "start": 372.186,
- "end": 372.656,
- "text": "fixed,"
- },
- {
- "id": 1125,
- "start": 372.656,
- "end": 373.036,
- "text": "finite"
- },
- {
- "id": 1126,
- "start": 373.036,
- "end": 374.126,
- "text": "audiences,"
- },
- {
- "id": 1127,
- "start": 374.126,
- "end": 374.316,
- "text": "and"
- },
- {
- "id": 1128,
- "start": 374.316,
- "end": 374.536,
- "text": "making"
- },
- {
- "id": 1129,
- "start": 374.536,
- "end": 374.736,
- "text": "sure"
- },
- {
- "id": 1130,
- "start": 374.791,
- "end": 375.0285,
- "text": "the"
- },
- {
- "id": 1131,
- "start": 375.046,
- "end": 375.32099999999997,
- "text": "people"
- },
- {
- "id": 1132,
- "start": 375.301,
- "end": 375.6135,
- "text": "–"
- },
- {
- "id": 1133,
- "start": 375.556,
- "end": 375.906,
- "text": "anyone"
- },
- {
- "id": 1134,
- "start": 375.906,
- "end": 376.006,
- "text": "who"
- },
- {
- "id": 1135,
- "start": 376.031,
- "end": 376.1235,
- "text": "signed"
- },
- {
- "id": 1136,
- "start": 376.156,
- "end": 376.241,
- "text": "up"
- },
- {
- "id": 1137,
- "start": 376.281,
- "end": 376.3585,
- "text": "to"
- },
- {
- "id": 1138,
- "start": 376.406,
- "end": 376.476,
- "text": "the"
- },
- {
- "id": 1139,
- "start": 376.476,
- "end": 377.036,
- "text": "service"
- },
- {
- "id": 1140,
- "start": 376.921,
- "end": 377.276,
- "text": "–"
- },
- {
- "id": 1141,
- "start": 377.366,
- "end": 377.516,
- "text": "were"
- },
- {
- "id": 1142,
- "start": 377.516,
- "end": 377.766,
- "text": "able"
- },
- {
- "id": 1143,
- "start": 377.766,
- "end": 377.886,
- "text": "to"
- },
- {
- "id": 1144,
- "start": 377.886,
- "end": 378.716,
- "text": "find"
- },
- {
- "id": 1145,
- "start": 378.716,
- "end": 378.826,
- "text": "the"
- },
- {
- "id": 1146,
- "start": 378.826,
- "end": 379.056,
- "text": "folks"
- },
- {
- "id": 1147,
- "start": 379.056,
- "end": 379.146,
- "text": "that"
- },
- {
- "id": 1148,
- "start": 379.146,
- "end": 379.216,
- "text": "they"
- },
- {
- "id": 1149,
- "start": 379.216,
- "end": 379.326,
- "text": "were"
- },
- {
- "id": 1150,
- "start": 379.326,
- "end": 379.746,
- "text": "connected"
- },
- {
- "id": 1151,
- "start": 379.746,
- "end": 379.956,
- "text": "with"
- },
- {
- "id": 1152,
- "start": 379.956,
- "end": 380.046,
- "text": "in"
- },
- {
- "id": 1153,
- "start": 380.046,
- "end": 380.226,
- "text": "real"
- },
- {
- "id": 1154,
- "start": 380.226,
- "end": 380.776,
- "text": "life"
- },
- {
- "id": 1155,
- "start": 380.776,
- "end": 380.976,
- "text": "on"
- },
- {
- "id": 1156,
- "start": 380.976,
- "end": 381.056,
- "text": "the"
- },
- {
- "id": 1157,
- "start": 381.056,
- "end": 381.546,
- "text": "platform."
- },
- {
- "id": 1158,
- "start": 381.481,
- "end": 382.0009999999999,
- "text": "…"
- },
- {
- "id": 1159,
- "start": 381.906,
- "end": 382.456,
- "text": "What"
- },
- {
- "id": 1160,
- "start": 382.456,
- "end": 382.596,
- "text": "was"
- },
- {
- "id": 1161,
- "start": 382.596,
- "end": 382.686,
- "text": "the"
- },
- {
- "id": 1162,
- "start": 382.686,
- "end": 383.176,
- "text": "competitive"
- },
- {
- "id": 1163,
- "start": 383.176,
- "end": 383.546,
- "text": "spirit"
- },
- {
- "id": 1164,
- "start": 383.546,
- "end": 383.876,
- "text": "inside"
- },
- {
- "id": 1165,
- "start": 383.876,
- "end": 383.946,
- "text": "of"
- },
- {
- "id": 1166,
- "start": 383.946,
- "end": 384.396,
- "text": "Facebook"
- },
- {
- "id": 1167,
- "start": 384.396,
- "end": 384.476,
- "text": "at"
- },
- {
- "id": 1168,
- "start": 384.476,
- "end": 384.666,
- "text": "that"
- },
- {
- "id": 1169,
- "start": 384.666,
- "end": 385.206,
- "text": "point?"
- },
- {
- "id": 1170,
- "start": 385.206,
- "end": 385.646,
- "text": "I"
- },
- {
- "id": 1171,
- "start": 385.646,
- "end": 385.816,
- "text": "mean,"
- },
- {
- "id": 1172,
- "start": 385.816,
- "end": 385.956,
- "text": "we"
- },
- {
- "id": 1173,
- "start": 385.956,
- "end": 386.566,
- "text": "were"
- },
- {
- "id": 1174,
- "start": 386.566,
- "end": 386.816,
- "text": "an"
- },
- {
- "id": 1175,
- "start": 386.816,
- "end": 387.256,
- "text": "ambitious"
- },
- {
- "id": 1176,
- "start": 387.256,
- "end": 388.076,
- "text": "company."
- },
- {
- "id": 1177,
- "start": 388.076,
- "end": 388.176,
- "text": "I"
- },
- {
- "id": 1178,
- "start": 388.176,
- "end": 388.396,
- "text": "think"
- },
- {
- "id": 1179,
- "start": 388.396,
- "end": 388.666,
- "text": "that"
- },
- {
- "id": 1180,
- "start": 388.666,
- "end": 389.136,
- "text": "Facebook"
- },
- {
- "id": 1181,
- "start": 389.136,
- "end": 389.246,
- "text": "as"
- },
- {
- "id": 1182,
- "start": 389.246,
- "end": 389.306,
- "text": "a"
- },
- {
- "id": 1183,
- "start": 389.306,
- "end": 389.726,
- "text": "culture"
- },
- {
- "id": 1184,
- "start": 389.726,
- "end": 390.186,
- "text": "naturally"
- },
- {
- "id": 1185,
- "start": 390.186,
- "end": 390.666,
- "text": "attracted"
- },
- {
- "id": 1186,
- "start": 390.666,
- "end": 391.006,
- "text": "people"
- },
- {
- "id": 1187,
- "start": 391.006,
- "end": 392.196,
- "text": "who"
- },
- {
- "id": 1188,
- "start": 392.196,
- "end": 392.586,
- "text": "had"
- },
- {
- "id": 1189,
- "start": 392.586,
- "end": 392.776,
- "text": "this"
- },
- {
- "id": 1190,
- "start": 392.776,
- "end": 393.066,
- "text": "mix"
- },
- {
- "id": 1191,
- "start": 393.066,
- "end": 393.186,
- "text": "of"
- },
- {
- "id": 1192,
- "start": 393.186,
- "end": 394.076,
- "text": "competition,"
- },
- {
- "id": 1193,
- "start": 394.076,
- "end": 395.236,
- "text": "ambition,"
- },
- {
- "id": 1194,
- "start": 395.236,
- "end": 396.276,
- "text": "speed,"
- },
- {
- "id": 1195,
- "start": 395.916,
- "end": 396.416,
- "text": "a"
- },
- {
- "id": 1196,
- "start": 396.32099999999997,
- "end": 396.85600000000005,
- "text": "real"
- },
- {
- "id": 1197,
- "start": 396.726,
- "end": 397.296,
- "text": "desire"
- },
- {
- "id": 1198,
- "start": 398.19100000000003,
- "end": 398.55099999999993,
- "text": "to"
- },
- {
- "id": 1199,
- "start": 399.656,
- "end": 399.806,
- "text": "kind"
- },
- {
- "id": 1200,
- "start": 399.806,
- "end": 399.876,
- "text": "of"
- },
- {
- "id": 1201,
- "start": 399.876,
- "end": 400.236,
- "text": "show"
- },
- {
- "id": 1202,
- "start": 400.236,
- "end": 400.326,
- "text": "the"
- },
- {
- "id": 1203,
- "start": 400.326,
- "end": 400.586,
- "text": "world"
- },
- {
- "id": 1204,
- "start": 400.586,
- "end": 400.676,
- "text": "an"
- },
- {
- "id": 1205,
- "start": 400.676,
- "end": 401.626,
- "text": "alternative"
- },
- {
- "id": 1206,
- "start": 401.356,
- "end": 401.766,
- "text": "to"
- },
- {
- "id": 1207,
- "start": 402.27600000000007,
- "end": 402.67100000000005,
- "text": "Myspace."
- },
- {
- "id": 1208,
- "start": 403.196,
- "end": 403.576,
- "text": "And"
- },
- {
- "id": 1209,
- "start": 403.576,
- "end": 403.766,
- "text": "more"
- },
- {
- "id": 1210,
- "start": 403.766,
- "end": 405.796,
- "text": "importantly,"
- },
- {
- "id": 1211,
- "start": 405.796,
- "end": 405.906,
- "text": "it"
- },
- {
- "id": 1212,
- "start": 405.906,
- "end": 406.296,
- "text": "was"
- },
- {
- "id": 1213,
- "start": 406.296,
- "end": 406.346,
- "text": "a"
- },
- {
- "id": 1214,
- "start": 406.346,
- "end": 406.536,
- "text": "group"
- },
- {
- "id": 1215,
- "start": 406.536,
- "end": 406.616,
- "text": "of"
- },
- {
- "id": 1216,
- "start": 406.616,
- "end": 406.866,
- "text": "people"
- },
- {
- "id": 1217,
- "start": 406.866,
- "end": 406.946,
- "text": "who"
- },
- {
- "id": 1218,
- "start": 406.941,
- "end": 407.181,
- "text": "were"
- },
- {
- "id": 1219,
- "start": 407.016,
- "end": 407.416,
- "text": "really"
- },
- {
- "id": 1220,
- "start": 407.73600000000005,
- "end": 408.136,
- "text": "mission-driven."
- },
- {
- "id": 1221,
- "start": 408.456,
- "end": 408.856,
- "text": "They"
- },
- {
- "id": 1222,
- "start": 408.856,
- "end": 409.476,
- "text": "genuinely"
- },
- {
- "id": 1223,
- "start": 409.476,
- "end": 409.896,
- "text": "believe"
- },
- {
- "id": 1224,
- "start": 409.896,
- "end": 411.096,
- "text": "that"
- },
- {
- "id": 1225,
- "start": 411.096,
- "end": 411.446,
- "text": "this"
- },
- {
- "id": 1226,
- "start": 411.446,
- "end": 411.946,
- "text": "mechanism"
- },
- {
- "id": 1227,
- "start": 411.946,
- "end": 412.206,
- "text": "didn’t"
- },
- {
- "id": 1228,
- "start": 412.206,
- "end": 412.536,
- "text": "exist"
- },
- {
- "id": 1229,
- "start": 412.536,
- "end": 412.616,
- "text": "in"
- },
- {
- "id": 1230,
- "start": 412.616,
- "end": 412.686,
- "text": "the"
- },
- {
- "id": 1231,
- "start": 413.0559999999999,
- "end": 413.21099999999996,
- "text": "world."
- },
- {
- "id": 1232,
- "start": 413.496,
- "end": 413.736,
- "text": "And"
- },
- {
- "id": 1233,
- "start": 413.736,
- "end": 413.866,
- "text": "it"
- },
- {
- "id": 1234,
- "start": 413.866,
- "end": 414.196,
- "text": "needed"
- },
- {
- "id": 1235,
- "start": 414.196,
- "end": 414.476,
- "text": "to."
- },
- {
- "id": 1236,
- "start": 414.476,
- "end": 415.346,
- "text": "And"
- },
- {
- "id": 1237,
- "start": 415.346,
- "end": 415.546,
- "text": "our"
- },
- {
- "id": 1238,
- "start": 415.546,
- "end": 416.086,
- "text": "intuition"
- },
- {
- "id": 1239,
- "start": 416.086,
- "end": 416.746,
- "text": "said"
- },
- {
- "id": 1240,
- "start": 416.746,
- "end": 416.926,
- "text": "this"
- },
- {
- "id": 1241,
- "start": 416.926,
- "end": 417.206,
- "text": "wasn’t,"
- },
- {
- "id": 1242,
- "start": 417.206,
- "end": 417.756,
- "text": "like,"
- },
- {
- "id": 1243,
- "start": 417.576,
- "end": 418.256,
- "text": "relevant"
- },
- {
- "id": 1244,
- "start": 417.916,
- "end": 418.316,
- "text": "[only]"
- },
- {
- "id": 1245,
- "start": 418.256,
- "end": 418.376,
- "text": "to"
- },
- {
- "id": 1246,
- "start": 418.376,
- "end": 418.876,
- "text": "college"
- },
- {
- "id": 1247,
- "start": 418.876,
- "end": 420.296,
- "text": "students."
- },
- {
- "id": 1248,
- "start": 420.296,
- "end": 420.456,
- "text": "This"
- },
- {
- "id": 1249,
- "start": 420.456,
- "end": 420.576,
- "text": "felt"
- },
- {
- "id": 1250,
- "start": 420.576,
- "end": 420.716,
- "text": "like"
- },
- {
- "id": 1251,
- "start": 420.716,
- "end": 420.786,
- "text": "it"
- },
- {
- "id": 1252,
- "start": 420.786,
- "end": 420.886,
- "text": "could"
- },
- {
- "id": 1253,
- "start": 420.886,
- "end": 420.996,
- "text": "be"
- },
- {
- "id": 1254,
- "start": 420.996,
- "end": 421.346,
- "text": "relevant"
- },
- {
- "id": 1255,
- "start": 421.346,
- "end": 421.446,
- "text": "to"
- },
- {
- "id": 1256,
- "start": 421.446,
- "end": 421.716,
- "text": "any"
- },
- {
- "id": 1257,
- "start": 421.716,
- "end": 422.086,
- "text": "person"
- },
- {
- "id": 1258,
- "start": 422.086,
- "end": 422.196,
- "text": "on"
- },
- {
- "id": 1259,
- "start": 422.196,
- "end": 422.276,
- "text": "the"
- },
- {
- "id": 1260,
- "start": 422.8660000000001,
- "end": 422.96600000000007,
- "text": "planet."
- },
- {
- "id": 1261,
- "start": 423.53600000000006,
- "end": 423.6560000000001,
- "text": "And"
- },
- {
- "id": 1262,
- "start": 424.206,
- "end": 424.346,
- "text": "that"
- },
- {
- "id": 1263,
- "start": 424.346,
- "end": 424.476,
- "text": "sort"
- },
- {
- "id": 1264,
- "start": 424.476,
- "end": 424.556,
- "text": "of"
- },
- {
- "id": 1265,
- "start": 424.791,
- "end": 425.11100000000005,
- "text": "realization"
- },
- {
- "id": 1266,
- "start": 425.106,
- "end": 425.666,
- "text": "is"
- },
- {
- "id": 1267,
- "start": 425.656,
- "end": 425.936,
- "text": "somewhat"
- },
- {
- "id": 1268,
- "start": 425.936,
- "end": 426.3593333333334,
- "text": "profound"
- },
- {
- "id": 1269,
- "start": 426.216,
- "end": 426.7826666666668,
- "text": "and"
- },
- {
- "id": 1270,
- "start": 426.496,
- "end": 427.206,
- "text": "really"
- },
- {
- "id": 1271,
- "start": 427.206,
- "end": 427.496,
- "text": "guided"
- },
- {
- "id": 1272,
- "start": 427.496,
- "end": 427.556,
- "text": "a"
- },
- {
- "id": 1273,
- "start": 427.556,
- "end": 427.726,
- "text": "lot"
- },
- {
- "id": 1274,
- "start": 427.726,
- "end": 427.796,
- "text": "of"
- },
- {
- "id": 1275,
- "start": 427.796,
- "end": 427.876,
- "text": "the"
- },
- {
- "id": 1276,
- "start": 427.876,
- "end": 428.136,
- "text": "early"
- },
- {
- "id": 1277,
- "start": 428.136,
- "end": 428.496,
- "text": "design"
- },
- {
- "id": 1278,
- "start": 428.496,
- "end": 429.016,
- "text": "principles"
- },
- {
- "id": 1279,
- "start": 429.016,
- "end": 429.416,
- "text": "around"
- },
- {
- "id": 1280,
- "start": 429.416,
- "end": 430.206,
- "text": "building"
- },
- {
- "id": 1281,
- "start": 430.206,
- "end": 430.326,
- "text": "a"
- },
- {
- "id": 1282,
- "start": 430.326,
- "end": 430.656,
- "text": "product"
- },
- {
- "id": 1283,
- "start": 430.656,
- "end": 430.746,
- "text": "that"
- },
- {
- "id": 1284,
- "start": 430.746,
- "end": 430.836,
- "text": "was"
- },
- {
- "id": 1285,
- "start": 430.836,
- "end": 431.986,
- "text": "inherently"
- },
- {
- "id": 1286,
- "start": 431.986,
- "end": 432.876,
- "text": "universal."
- },
- {
- "id": 1287,
- "start": 432.876,
- "end": 433.116,
- "text": "And"
- },
- {
- "id": 1288,
- "start": 433.116,
- "end": 433.286,
- "text": "so"
- },
- {
- "id": 1289,
- "start": 433.286,
- "end": 433.416,
- "text": "what"
- },
- {
- "id": 1290,
- "start": 433.416,
- "end": 433.536,
- "text": "does"
- },
- {
- "id": 1291,
- "start": 433.536,
- "end": 433.736,
- "text": "that"
- },
- {
- "id": 1292,
- "start": 433.736,
- "end": 434.046,
- "text": "mean"
- },
- {
- "id": 1293,
- "start": 434.031,
- "end": 434.341,
- "text": "–"
- },
- {
- "id": 1294,
- "start": 434.326,
- "end": 434.636,
- "text": "building"
- },
- {
- "id": 1295,
- "start": 434.526,
- "end": 434.886,
- "text": "a"
- },
- {
- "id": 1296,
- "start": 434.726,
- "end": 435.136,
- "text": "product"
- },
- {
- "id": 1297,
- "start": 435.136,
- "end": 435.336,
- "text": "that’s"
- },
- {
- "id": 1298,
- "start": 435.336,
- "end": 435.776,
- "text": "inherently"
- },
- {
- "id": 1299,
- "start": 435.80099999999993,
- "end": 436.046,
- "text": "universal?"
- },
- {
- "id": 1300,
- "start": 436.266,
- "end": 436.316,
- "text": "I"
- },
- {
- "id": 1301,
- "start": 436.316,
- "end": 436.436,
- "text": "mean,"
- },
- {
- "id": 1302,
- "start": 436.436,
- "end": 436.616,
- "text": "get"
- },
- {
- "id": 1303,
- "start": 436.616,
- "end": 436.876,
- "text": "into"
- },
- {
- "id": 1304,
- "start": 436.876,
- "end": 436.996,
- "text": "the"
- },
- {
- "id": 1305,
- "start": 437.106,
- "end": 437.211,
- "text": "story"
- },
- {
- "id": 1306,
- "start": 437.336,
- "end": 437.426,
- "text": "of"
- },
- {
- "id": 1307,
- "start": 437.426,
- "end": 437.706,
- "text": "what"
- },
- {
- "id": 1308,
- "start": 437.56600000000003,
- "end": 437.781,
- "text": "[were]"
- },
- {
- "id": 1309,
- "start": 437.706,
- "end": 437.856,
- "text": "some"
- },
- {
- "id": 1310,
- "start": 437.856,
- "end": 437.936,
- "text": "of"
- },
- {
- "id": 1311,
- "start": 437.936,
- "end": 438.076,
- "text": "the"
- },
- {
- "id": 1312,
- "start": 438.26599999999996,
- "end": 438.4626666666667,
- "text": "contributions"
- },
- {
- "id": 1313,
- "start": 438.59599999999995,
- "end": 438.84933333333333,
- "text": "you"
- },
- {
- "id": 1314,
- "start": 438.926,
- "end": 439.236,
- "text": "made."
- },
- {
- "id": 1315,
- "start": 439.236,
- "end": 439.376,
- "text": "But"
- },
- {
- "id": 1316,
- "start": 439.376,
- "end": 439.506,
- "text": "what"
- },
- {
- "id": 1317,
- "start": 439.506,
- "end": 439.646,
- "text": "does"
- },
- {
- "id": 1318,
- "start": 439.646,
- "end": 439.826,
- "text": "that"
- },
- {
- "id": 1319,
- "start": 439.826,
- "end": 440.166,
- "text": "mean?"
- },
- {
- "id": 1320,
- "start": 440.26099999999997,
- "end": 440.57599999999996,
- "text": "Yeah."
- },
- {
- "id": 1321,
- "start": 440.696,
- "end": 440.986,
- "text": "So"
- },
- {
- "id": 1322,
- "start": 440.986,
- "end": 441.106,
- "text": "a"
- },
- {
- "id": 1323,
- "start": 441.106,
- "end": 441.466,
- "text": "product"
- },
- {
- "id": 1324,
- "start": 441.466,
- "end": 441.606,
- "text": "that’s"
- },
- {
- "id": 1325,
- "start": 441.606,
- "end": 442.076,
- "text": "inherently"
- },
- {
- "id": 1326,
- "start": 442.076,
- "end": 442.626,
- "text": "universal"
- },
- {
- "id": 1327,
- "start": 442.626,
- "end": 442.736,
- "text": "is,"
- },
- {
- "id": 1328,
- "start": 442.736,
- "end": 443.706,
- "text": "one,"
- },
- {
- "id": 1329,
- "start": 443.706,
- "end": 443.826,
- "text": "a"
- },
- {
- "id": 1330,
- "start": 443.826,
- "end": 444.176,
- "text": "product"
- },
- {
- "id": 1331,
- "start": 444.176,
- "end": 444.366,
- "text": "that’s"
- },
- {
- "id": 1332,
- "start": 444.366,
- "end": 445.726,
- "text": "accessible,"
- },
- {
- "id": 1333,
- "start": 445.726,
- "end": 445.946,
- "text": "that’s"
- },
- {
- "id": 1334,
- "start": 445.946,
- "end": 446.406,
- "text": "simple,"
- },
- {
- "id": 1335,
- "start": 446.406,
- "end": 446.586,
- "text": "that’s"
- },
- {
- "id": 1336,
- "start": 447.251,
- "end": 447.471,
- "text": "intuitive,"
- },
- {
- "id": 1337,
- "start": 448.096,
- "end": 448.356,
- "text": "that’s"
- },
- {
- "id": 1338,
- "start": 448.356,
- "end": 449.196,
- "text": "relevant"
- },
- {
- "id": 1339,
- "start": 449.196,
- "end": 449.386,
- "text": "to"
- },
- {
- "id": 1340,
- "start": 449.386,
- "end": 449.566,
- "text": "a"
- },
- {
- "id": 1341,
- "start": 449.566,
- "end": 450.016,
- "text": "really,"
- },
- {
- "id": 1342,
- "start": 450.016,
- "end": 450.266,
- "text": "really"
- },
- {
- "id": 1343,
- "start": 450.266,
- "end": 450.676,
- "text": "broad"
- },
- {
- "id": 1344,
- "start": 450.676,
- "end": 450.886,
- "text": "set"
- },
- {
- "id": 1345,
- "start": 450.886,
- "end": 450.956,
- "text": "of"
- },
- {
- "id": 1346,
- "start": 450.956,
- "end": 451.036,
- "text": "the"
- },
- {
- "id": 1347,
- "start": 451.036,
- "end": 452.396,
- "text": "population."
- },
- {
- "id": 1348,
- "start": 452.396,
- "end": 452.626,
- "text": "And"
- },
- {
- "id": 1349,
- "start": 452.626,
- "end": 453.696,
- "text": "since"
- },
- {
- "id": 1350,
- "start": 453.696,
- "end": 454.096,
- "text": "Facebook"
- },
- {
- "id": 1351,
- "start": 454.096,
- "end": 454.416,
- "text": "wasn’t"
- },
- {
- "id": 1352,
- "start": 454.416,
- "end": 454.896,
- "text": "creating"
- },
- {
- "id": 1353,
- "start": 454.896,
- "end": 455.356,
- "text": "games,"
- },
- {
- "id": 1354,
- "start": 455.356,
- "end": 455.416,
- "text": "it"
- },
- {
- "id": 1355,
- "start": 455.416,
- "end": 455.646,
- "text": "wasn’t"
- },
- {
- "id": 1356,
- "start": 455.646,
- "end": 456.876,
- "text": "creating"
- },
- {
- "id": 1357,
- "start": 456.876,
- "end": 457.536,
- "text": "knickknacks"
- },
- {
- "id": 1358,
- "start": 457.536,
- "end": 457.886,
- "text": "for"
- },
- {
- "id": 1359,
- "start": 457.876,
- "end": 458.146,
- "text": "folks"
- },
- {
- "id": 1360,
- "start": 458.086,
- "end": 458.34933333333333,
- "text": "to"
- },
- {
- "id": 1361,
- "start": 458.296,
- "end": 458.55266666666665,
- "text": "interact"
- },
- {
- "id": 1362,
- "start": 458.506,
- "end": 458.756,
- "text": "with,"
- },
- {
- "id": 1363,
- "start": 458.69266666666664,
- "end": 458.9126666666666,
- "text": "it"
- },
- {
- "id": 1364,
- "start": 458.8793333333333,
- "end": 459.0693333333333,
- "text": "was"
- },
- {
- "id": 1365,
- "start": 459.066,
- "end": 459.226,
- "text": "really"
- },
- {
- "id": 1366,
- "start": 459.226,
- "end": 459.406,
- "text": "trying"
- },
- {
- "id": 1367,
- "start": 459.406,
- "end": 459.466,
- "text": "to"
- },
- {
- "id": 1368,
- "start": 459.466,
- "end": 459.646,
- "text": "create"
- },
- {
- "id": 1369,
- "start": 459.646,
- "end": 459.686,
- "text": "a"
- },
- {
- "id": 1370,
- "start": 459.686,
- "end": 460.176,
- "text": "conduit,"
- },
- {
- "id": 1371,
- "start": 460.176,
- "end": 460.216,
- "text": "a"
- },
- {
- "id": 1372,
- "start": 460.216,
- "end": 460.536,
- "text": "vessel"
- },
- {
- "id": 1373,
- "start": 460.536,
- "end": 460.726,
- "text": "for"
- },
- {
- "id": 1374,
- "start": 460.726,
- "end": 460.976,
- "text": "people"
- },
- {
- "id": 1375,
- "start": 460.976,
- "end": 461.106,
- "text": "to"
- },
- {
- "id": 1376,
- "start": 461.106,
- "end": 462.006,
- "text": "find"
- },
- {
- "id": 1377,
- "start": 462.006,
- "end": 462.116,
- "text": "the"
- },
- {
- "id": 1378,
- "start": 462.116,
- "end": 462.456,
- "text": "folks"
- },
- {
- "id": 1379,
- "start": 462.456,
- "end": 462.666,
- "text": "that"
- },
- {
- "id": 1380,
- "start": 462.666,
- "end": 462.746,
- "text": "they"
- },
- {
- "id": 1381,
- "start": 462.746,
- "end": 462.846,
- "text": "were"
- },
- {
- "id": 1382,
- "start": 462.846,
- "end": 463.296,
- "text": "connected"
- },
- {
- "id": 1383,
- "start": 463.296,
- "end": 463.506,
- "text": "with"
- },
- {
- "id": 1384,
- "start": 463.506,
- "end": 463.596,
- "text": "in"
- },
- {
- "id": 1385,
- "start": 463.596,
- "end": 463.746,
- "text": "real"
- },
- {
- "id": 1386,
- "start": 463.746,
- "end": 464.546,
- "text": "life,"
- },
- {
- "id": 1387,
- "start": 464.546,
- "end": 464.716,
- "text": "and"
- },
- {
- "id": 1388,
- "start": 464.716,
- "end": 464.956,
- "text": "having"
- },
- {
- "id": 1389,
- "start": 464.956,
- "end": 465.046,
- "text": "the"
- },
- {
- "id": 1390,
- "start": 465.046,
- "end": 466.086,
- "text": "tools"
- },
- {
- "id": 1391,
- "start": 466.086,
- "end": 466.186,
- "text": "and"
- },
- {
- "id": 1392,
- "start": 466.186,
- "end": 466.266,
- "text": "the"
- },
- {
- "id": 1393,
- "start": 466.266,
- "end": 466.546,
- "text": "power"
- },
- {
- "id": 1394,
- "start": 466.546,
- "end": 466.606,
- "text": "to"
- },
- {
- "id": 1395,
- "start": 466.606,
- "end": 466.666,
- "text": "be"
- },
- {
- "id": 1396,
- "start": 466.666,
- "end": 466.786,
- "text": "able"
- },
- {
- "id": 1397,
- "start": 466.786,
- "end": 466.896,
- "text": "to"
- },
- {
- "id": 1398,
- "start": 466.896,
- "end": 467.336,
- "text": "share"
- },
- {
- "id": 1399,
- "start": 467.336,
- "end": 467.436,
- "text": "the"
- },
- {
- "id": 1400,
- "start": 467.436,
- "end": 467.896,
- "text": "information"
- },
- {
- "id": 1401,
- "start": 467.6293333333333,
- "end": 468.00600000000003,
- "text": "that’s"
- },
- {
- "id": 1402,
- "start": 467.8226666666667,
- "end": 468.11600000000004,
- "text": "the"
- },
- {
- "id": 1403,
- "start": 468.016,
- "end": 468.226,
- "text": "most"
- },
- {
- "id": 1404,
- "start": 468.226,
- "end": 468.576,
- "text": "meaningful"
- },
- {
- "id": 1405,
- "start": 468.576,
- "end": 468.686,
- "text": "to"
- },
- {
- "id": 1406,
- "start": 468.686,
- "end": 469.586,
- "text": "them."
- },
- {
- "id": 1407,
- "start": 469.586,
- "end": 469.766,
- "text": "We"
- },
- {
- "id": 1408,
- "start": 469.766,
- "end": 469.946,
- "text": "felt"
- },
- {
- "id": 1409,
- "start": 469.946,
- "end": 470.396,
- "text": "like"
- },
- {
- "id": 1410,
- "start": 470.396,
- "end": 470.536,
- "text": "in"
- },
- {
- "id": 1411,
- "start": 470.536,
- "end": 470.726,
- "text": "order"
- },
- {
- "id": 1412,
- "start": 470.726,
- "end": 470.866,
- "text": "to"
- },
- {
- "id": 1413,
- "start": 470.866,
- "end": 471.276,
- "text": "build"
- },
- {
- "id": 1414,
- "start": 471.276,
- "end": 471.316,
- "text": "a"
- },
- {
- "id": 1415,
- "start": 471.316,
- "end": 471.796,
- "text": "universal"
- },
- {
- "id": 1416,
- "start": 471.796,
- "end": 472.696,
- "text": "product,"
- },
- {
- "id": 1417,
- "start": 472.306,
- "end": 472.846,
- "text": "we"
- },
- {
- "id": 1418,
- "start": 472.51314285714284,
- "end": 472.9974285714286,
- "text": "needed"
- },
- {
- "id": 1419,
- "start": 472.7202857142857,
- "end": 473.1488571428572,
- "text": "to"
- },
- {
- "id": 1420,
- "start": 472.92742857142855,
- "end": 473.30028571428574,
- "text": "adhere"
- },
- {
- "id": 1421,
- "start": 473.1345714285714,
- "end": 473.45171428571433,
- "text": "to"
- },
- {
- "id": 1422,
- "start": 473.34171428571426,
- "end": 473.60314285714287,
- "text": "a"
- },
- {
- "id": 1423,
- "start": 473.5488571428571,
- "end": 473.75457142857147,
- "text": "certain"
- },
- {
- "id": 1424,
- "start": 473.756,
- "end": 473.906,
- "text": "set"
- },
- {
- "id": 1425,
- "start": 473.906,
- "end": 473.976,
- "text": "of"
- },
- {
- "id": 1426,
- "start": 473.976,
- "end": 474.396,
- "text": "principles"
- },
- {
- "id": 1427,
- "start": 474.396,
- "end": 474.676,
- "text": "around"
- },
- {
- "id": 1428,
- "start": 474.676,
- "end": 475.086,
- "text": "like"
- },
- {
- "id": 1429,
- "start": 475.086,
- "end": 476.616,
- "text": "consistency,"
- },
- {
- "id": 1430,
- "start": 476.616,
- "end": 477.696,
- "text": "simplicity,"
- },
- {
- "id": 1431,
- "start": 477.696,
- "end": 477.826,
- "text": "a"
- },
- {
- "id": 1432,
- "start": 477.826,
- "end": 478.006,
- "text": "really"
- },
- {
- "id": 1433,
- "start": 478.006,
- "end": 478.466,
- "text": "spartan"
- },
- {
- "id": 1434,
- "start": 478.466,
- "end": 479.226,
- "text": "design;"
- },
- {
- "id": 1435,
- "start": 479.226,
- "end": 479.536,
- "text": "something"
- },
- {
- "id": 1436,
- "start": 479.536,
- "end": 479.666,
- "text": "that"
- },
- {
- "id": 1437,
- "start": 479.666,
- "end": 479.826,
- "text": "would"
- },
- {
- "id": 1438,
- "start": 479.826,
- "end": 480.016,
- "text": "not"
- },
- {
- "id": 1439,
- "start": 480.016,
- "end": 480.176,
- "text": "only"
- },
- {
- "id": 1440,
- "start": 480.176,
- "end": 480.776,
- "text": "differentiate"
- },
- {
- "id": 1441,
- "start": 480.776,
- "end": 480.886,
- "text": "us"
- },
- {
- "id": 1442,
- "start": 480.886,
- "end": 481.066,
- "text": "from"
- },
- {
- "id": 1443,
- "start": 481.066,
- "end": 481.156,
- "text": "what"
- },
- {
- "id": 1444,
- "start": 481.156,
- "end": 481.276,
- "text": "was"
- },
- {
- "id": 1445,
- "start": 481.276,
- "end": 481.436,
- "text": "out"
- },
- {
- "id": 1446,
- "start": 481.436,
- "end": 481.496,
- "text": "in"
- },
- {
- "id": 1447,
- "start": 481.496,
- "end": 481.556,
- "text": "the"
- },
- {
- "id": 1448,
- "start": 481.556,
- "end": 481.826,
- "text": "market"
- },
- {
- "id": 1449,
- "start": 481.92,
- "end": 482.22800000000007,
- "text": "today,"
- },
- {
- "id": 1450,
- "start": 482.28399999999993,
- "end": 482.63,
- "text": "these"
- },
- {
- "id": 1451,
- "start": 482.64799999999997,
- "end": 483.03200000000004,
- "text": "like"
- },
- {
- "id": 1452,
- "start": 483.012,
- "end": 483.43399999999997,
- "text": "self-designed"
- },
- {
- "id": 1453,
- "start": 483.376,
- "end": 483.836,
- "text": "Myspace"
- },
- {
- "id": 1454,
- "start": 483.836,
- "end": 484.816,
- "text": "pages,"
- },
- {
- "id": 1455,
- "start": 484.426,
- "end": 484.996,
- "text": "but"
- },
- {
- "id": 1456,
- "start": 484.71599999999995,
- "end": 485.096,
- "text": "then"
- },
- {
- "id": 1457,
- "start": 485.006,
- "end": 485.196,
- "text": "more"
- },
- {
- "id": 1458,
- "start": 485.196,
- "end": 486.776,
- "text": "importantly,"
- },
- {
- "id": 1459,
- "start": 486.776,
- "end": 486.986,
- "text": "it"
- },
- {
- "id": 1460,
- "start": 486.986,
- "end": 487.146,
- "text": "had"
- },
- {
- "id": 1461,
- "start": 487.146,
- "end": 487.236,
- "text": "to"
- },
- {
- "id": 1462,
- "start": 487.381,
- "end": 487.511,
- "text": "work"
- },
- {
- "id": 1463,
- "start": 487.616,
- "end": 487.786,
- "text": "from"
- },
- {
- "id": 1464,
- "start": 487.786,
- "end": 487.846,
- "text": "a"
- },
- {
- "id": 1465,
- "start": 487.846,
- "end": 488.286,
- "text": "technical"
- },
- {
- "id": 1466,
- "start": 488.31100000000004,
- "end": 488.576,
- "text": "standpoint."
- },
- {
- "id": 1467,
- "start": 488.776,
- "end": 488.866,
- "text": "It"
- },
- {
- "id": 1468,
- "start": 488.866,
- "end": 489.066,
- "text": "had"
- },
- {
- "id": 1469,
- "start": 489.066,
- "end": 489.136,
- "text": "to"
- },
- {
- "id": 1470,
- "start": 489.136,
- "end": 489.286,
- "text": "be"
- },
- {
- "id": 1471,
- "start": 489.286,
- "end": 489.526,
- "text": "really"
- },
- {
- "id": 1472,
- "start": 489.526,
- "end": 490.156,
- "text": "good"
- },
- {
- "id": 1473,
- "start": 490.156,
- "end": 490.416,
- "text": "at"
- },
- {
- "id": 1474,
- "start": 490.416,
- "end": 491.356,
- "text": "identifying"
- },
- {
- "id": 1475,
- "start": 491.356,
- "end": 491.456,
- "text": "the"
- },
- {
- "id": 1476,
- "start": 491.456,
- "end": 491.716,
- "text": "people"
- },
- {
- "id": 1477,
- "start": 491.716,
- "end": 491.806,
- "text": "who"
- },
- {
- "id": 1478,
- "start": 491.806,
- "end": 492.226,
- "text": "were"
- },
- {
- "id": 1479,
- "start": 492.226,
- "end": 492.716,
- "text": "potentially"
- },
- {
- "id": 1480,
- "start": 492.716,
- "end": 492.866,
- "text": "your"
- },
- {
- "id": 1481,
- "start": 492.866,
- "end": 493.626,
- "text": "friends"
- },
- {
- "id": 1482,
- "start": 493.626,
- "end": 493.836,
- "text": "and"
- },
- {
- "id": 1483,
- "start": 493.836,
- "end": 494.076,
- "text": "making"
- },
- {
- "id": 1484,
- "start": 494.076,
- "end": 494.366,
- "text": "sure"
- },
- {
- "id": 1485,
- "start": 494.366,
- "end": 494.536,
- "text": "that"
- },
- {
- "id": 1486,
- "start": 494.536,
- "end": 494.636,
- "text": "we"
- },
- {
- "id": 1487,
- "start": 494.636,
- "end": 494.726,
- "text": "were"
- },
- {
- "id": 1488,
- "start": 494.726,
- "end": 495.006,
- "text": "setting"
- },
- {
- "id": 1489,
- "start": 495.006,
- "end": 495.146,
- "text": "up"
- },
- {
- "id": 1490,
- "start": 495.2493333333333,
- "end": 495.686,
- "text": "an"
- },
- {
- "id": 1491,
- "start": 495.49266666666665,
- "end": 496.22600000000006,
- "text": "onboarding"
- },
- {
- "id": 1492,
- "start": 495.736,
- "end": 496.766,
- "text": "experience"
- },
- {
- "id": 1493,
- "start": 496.766,
- "end": 497.526,
- "text": "that"
- },
- {
- "id": 1494,
- "start": 497.526,
- "end": 497.686,
- "text": "would"
- },
- {
- "id": 1495,
- "start": 497.686,
- "end": 497.996,
- "text": "enable"
- },
- {
- "id": 1496,
- "start": 497.996,
- "end": 498.176,
- "text": "you"
- },
- {
- "id": 1497,
- "start": 498.176,
- "end": 498.286,
- "text": "to"
- },
- {
- "id": 1498,
- "start": 498.286,
- "end": 498.376,
- "text": "be"
- },
- {
- "id": 1499,
- "start": 498.376,
- "end": 498.506,
- "text": "able"
- },
- {
- "id": 1500,
- "start": 498.506,
- "end": 498.586,
- "text": "to"
- },
- {
- "id": 1501,
- "start": 498.586,
- "end": 498.906,
- "text": "actually"
- },
- {
- "id": 1502,
- "start": 498.906,
- "end": 499.286,
- "text": "connect"
- },
- {
- "id": 1503,
- "start": 499.286,
- "end": 499.396,
- "text": "and"
- },
- {
- "id": 1504,
- "start": 499.396,
- "end": 499.596,
- "text": "share"
- },
- {
- "id": 1505,
- "start": 499.596,
- "end": 499.746,
- "text": "with"
- },
- {
- "id": 1506,
- "start": 499.746,
- "end": 500.716,
- "text": "them."
- },
- {
- "id": 1507,
- "start": 500.716,
- "end": 501.446,
- "text": "Engagement"
- },
- {
- "id": 1508,
- "start": 501.446,
- "end": 501.556,
- "text": "is"
- },
- {
- "id": 1509,
- "start": 501.556,
- "end": 501.626,
- "text": "a"
- },
- {
- "id": 1510,
- "start": 501.626,
- "end": 501.906,
- "text": "word"
- },
- {
- "id": 1511,
- "start": 501.906,
- "end": 502.066,
- "text": "we’ve"
- },
- {
- "id": 1512,
- "start": 502.066,
- "end": 502.226,
- "text": "heard"
- },
- {
- "id": 1513,
- "start": 502.226,
- "end": 502.276,
- "text": "a"
- },
- {
- "id": 1514,
- "start": 502.276,
- "end": 502.486,
- "text": "lot"
- },
- {
- "id": 1515,
- "start": 502.486,
- "end": 503.896,
- "text": "about,"
- },
- {
- "id": 1516,
- "start": 503.896,
- "end": 504.386,
- "text": "especially"
- },
- {
- "id": 1517,
- "start": 504.386,
- "end": 504.546,
- "text": "the"
- },
- {
- "id": 1518,
- "start": 504.546,
- "end": 504.826,
- "text": "early"
- },
- {
- "id": 1519,
- "start": 504.826,
- "end": 505.176,
- "text": "years"
- },
- {
- "id": 1520,
- "start": 505.176,
- "end": 505.666,
- "text": "and"
- },
- {
- "id": 1521,
- "start": 505.666,
- "end": 506.726,
- "text": "developing"
- },
- {
- "id": 1522,
- "start": 506.726,
- "end": 506.926,
- "text": "these"
- },
- {
- "id": 1523,
- "start": 506.926,
- "end": 507.336,
- "text": "tools"
- },
- {
- "id": 1524,
- "start": 507.336,
- "end": 507.436,
- "text": "and"
- },
- {
- "id": 1525,
- "start": 507.436,
- "end": 507.756,
- "text": "making"
- },
- {
- "id": 1526,
- "start": 507.756,
- "end": 507.946,
- "text": "this"
- },
- {
- "id": 1527,
- "start": 507.946,
- "end": 508.086,
- "text": "as"
- },
- {
- "id": 1528,
- "start": 508.086,
- "end": 508.606,
- "text": "engaging"
- },
- {
- "id": 1529,
- "start": 508.606,
- "end": 508.846,
- "text": "a"
- },
- {
- "id": 1530,
- "start": 508.846,
- "end": 509.316,
- "text": "site"
- },
- {
- "id": 1531,
- "start": 509.316,
- "end": 509.406,
- "text": "and"
- },
- {
- "id": 1532,
- "start": 509.406,
- "end": 509.836,
- "text": "essentially"
- },
- {
- "id": 1533,
- "start": 509.836,
- "end": 510.126,
- "text": "getting"
- },
- {
- "id": 1534,
- "start": 510.126,
- "end": 510.406,
- "text": "people"
- },
- {
- "id": 1535,
- "start": 510.406,
- "end": 510.476,
- "text": "to"
- },
- {
- "id": 1536,
- "start": 510.476,
- "end": 510.806,
- "text": "spend"
- },
- {
- "id": 1537,
- "start": 510.806,
- "end": 510.976,
- "text": "more"
- },
- {
- "id": 1538,
- "start": 510.976,
- "end": 511.356,
- "text": "time"
- },
- {
- "id": 1539,
- "start": 511.356,
- "end": 511.766,
- "text": "there"
- },
- {
- "id": 1540,
- "start": 511.686,
- "end": 512.136,
- "text": "on"
- },
- {
- "id": 1541,
- "start": 512.5059999999999,
- "end": 512.961,
- "text": "Facebook,"
- },
- {
- "id": 1542,
- "start": 513.326,
- "end": 513.786,
- "text": "what"
- },
- {
- "id": 1543,
- "start": 513.786,
- "end": 513.906,
- "text": "did"
- },
- {
- "id": 1544,
- "start": 513.906,
- "end": 514.666,
- "text": "that"
- },
- {
- "id": 1545,
- "start": 514.666,
- "end": 514.886,
- "text": "really"
- },
- {
- "id": 1546,
- "start": 514.886,
- "end": 515.556,
- "text": "mean"
- },
- {
- "id": 1547,
- "start": 515.556,
- "end": 515.696,
- "text": "to"
- },
- {
- "id": 1548,
- "start": 515.696,
- "end": 516.026,
- "text": "you"
- },
- {
- "id": 1549,
- "start": 516.026,
- "end": 516.156,
- "text": "and"
- },
- {
- "id": 1550,
- "start": 516.156,
- "end": 516.306,
- "text": "what"
- },
- {
- "id": 1551,
- "start": 516.306,
- "end": 516.416,
- "text": "you"
- },
- {
- "id": 1552,
- "start": 516.416,
- "end": 516.536,
- "text": "were"
- },
- {
- "id": 1553,
- "start": 516.536,
- "end": 517.176,
- "text": "designing?"
- },
- {
- "id": 1554,
- "start": 517.1659999999999,
- "end": 517.566,
- "text": "Yeah."
- },
- {
- "id": 1555,
- "start": 517.796,
- "end": 517.956,
- "text": "So"
- },
- {
- "id": 1556,
- "start": 517.956,
- "end": 518.116,
- "text": "from"
- },
- {
- "id": 1557,
- "start": 518.116,
- "end": 518.216,
- "text": "an"
- },
- {
- "id": 1558,
- "start": 518.216,
- "end": 518.696,
- "text": "engagement"
- },
- {
- "id": 1559,
- "start": 518.696,
- "end": 519.916,
- "text": "standpoint,"
- },
- {
- "id": 1560,
- "start": 519.916,
- "end": 520.406,
- "text": "it"
- },
- {
- "id": 1561,
- "start": 520.406,
- "end": 520.546,
- "text": "sort"
- },
- {
- "id": 1562,
- "start": 520.546,
- "end": 520.606,
- "text": "of"
- },
- {
- "id": 1563,
- "start": 520.606,
- "end": 520.856,
- "text": "starts"
- },
- {
- "id": 1564,
- "start": 520.856,
- "end": 520.996,
- "text": "from"
- },
- {
- "id": 1565,
- "start": 520.996,
- "end": 521.086,
- "text": "the"
- },
- {
- "id": 1566,
- "start": 521.086,
- "end": 521.806,
- "text": "philosophy"
- },
- {
- "id": 1567,
- "start": 521.806,
- "end": 522.716,
- "text": "that"
- },
- {
- "id": 1568,
- "start": 522.716,
- "end": 523.076,
- "text": "people"
- },
- {
- "id": 1569,
- "start": 523.076,
- "end": 523.266,
- "text": "have"
- },
- {
- "id": 1570,
- "start": 523.266,
- "end": 523.526,
- "text": "things"
- },
- {
- "id": 1571,
- "start": 523.526,
- "end": 523.606,
- "text": "they"
- },
- {
- "id": 1572,
- "start": 523.606,
- "end": 523.766,
- "text": "want"
- },
- {
- "id": 1573,
- "start": 523.766,
- "end": 523.826,
- "text": "to"
- },
- {
- "id": 1574,
- "start": 523.826,
- "end": 524.716,
- "text": "share."
- },
- {
- "id": 1575,
- "start": 524.716,
- "end": 524.846,
- "text": "They"
- },
- {
- "id": 1576,
- "start": 524.846,
- "end": 525.086,
- "text": "often"
- },
- {
- "id": 1577,
- "start": 525.086,
- "end": 525.206,
- "text": "want"
- },
- {
- "id": 1578,
- "start": 525.206,
- "end": 525.266,
- "text": "to"
- },
- {
- "id": 1579,
- "start": 525.266,
- "end": 525.446,
- "text": "share"
- },
- {
- "id": 1580,
- "start": 525.446,
- "end": 525.706,
- "text": "things"
- },
- {
- "id": 1581,
- "start": 525.706,
- "end": 526.716,
- "text": "daily."
- },
- {
- "id": 1582,
- "start": 526.716,
- "end": 527.656,
- "text": "The"
- },
- {
- "id": 1583,
- "start": 527.656,
- "end": 528.176,
- "text": "meaningful"
- },
- {
- "id": 1584,
- "start": 528.176,
- "end": 528.746,
- "text": "relationships"
- },
- {
- "id": 1585,
- "start": 528.746,
- "end": 528.836,
- "text": "in"
- },
- {
- "id": 1586,
- "start": 528.836,
- "end": 529.0609999999999,
- "text": "their"
- },
- {
- "id": 1587,
- "start": 528.926,
- "end": 529.286,
- "text": "lives"
- },
- {
- "id": 1588,
- "start": 529.286,
- "end": 529.846,
- "text": "aren’t"
- },
- {
- "id": 1589,
- "start": 529.846,
- "end": 530.516,
- "text": "relationships"
- },
- {
- "id": 1590,
- "start": 530.516,
- "end": 530.676,
- "text": "that"
- },
- {
- "id": 1591,
- "start": 530.676,
- "end": 531.516,
- "text": "they"
- },
- {
- "id": 1592,
- "start": 531.066,
- "end": 532.156,
- "text": "periodically"
- },
- {
- "id": 1593,
- "start": 531.7660000000001,
- "end": 532.451,
- "text": "check"
- },
- {
- "id": 1594,
- "start": 532.466,
- "end": 532.746,
- "text": "in"
- },
- {
- "id": 1595,
- "start": 532.746,
- "end": 533.106,
- "text": "on,"
- },
- {
- "id": 1596,
- "start": 533.106,
- "end": 533.226,
- "text": "you"
- },
- {
- "id": 1597,
- "start": 533.226,
- "end": 533.336,
- "text": "know,"
- },
- {
- "id": 1598,
- "start": 533.336,
- "end": 533.576,
- "text": "once"
- },
- {
- "id": 1599,
- "start": 533.576,
- "end": 533.626,
- "text": "a"
- },
- {
- "id": 1600,
- "start": 533.626,
- "end": 533.996,
- "text": "month"
- },
- {
- "id": 1601,
- "start": 533.996,
- "end": 534.336,
- "text": "or,"
- },
- {
- "id": 1602,
- "start": 534.336,
- "end": 534.426,
- "text": "you"
- },
- {
- "id": 1603,
- "start": 534.426,
- "end": 534.776,
- "text": "know,"
- },
- {
- "id": 1604,
- "start": 534.776,
- "end": 535.086,
- "text": "once"
- },
- {
- "id": 1605,
- "start": 535.086,
- "end": 535.146,
- "text": "a"
- },
- {
- "id": 1606,
- "start": 535.5110000000001,
- "end": 535.606,
- "text": "year."
- },
- {
- "id": 1607,
- "start": 535.936,
- "end": 536.066,
- "text": "It’s"
- },
- {
- "id": 1608,
- "start": 536.066,
- "end": 536.266,
- "text": "something"
- },
- {
- "id": 1609,
- "start": 536.266,
- "end": 536.376,
- "text": "that"
- },
- {
- "id": 1610,
- "start": 536.376,
- "end": 536.526,
- "text": "has"
- },
- {
- "id": 1611,
- "start": 536.526,
- "end": 536.576,
- "text": "a"
- },
- {
- "id": 1612,
- "start": 536.576,
- "end": 537.036,
- "text": "cadence"
- },
- {
- "id": 1613,
- "start": 537.171,
- "end": 537.966,
- "text": "that’s"
- },
- {
- "id": 1614,
- "start": 537.766,
- "end": 538.896,
- "text": "ongoing."
- },
- {
- "id": 1615,
- "start": 538.896,
- "end": 539.096,
- "text": "And"
- },
- {
- "id": 1616,
- "start": 539.096,
- "end": 539.876,
- "text": "so"
- },
- {
- "id": 1617,
- "start": 539.876,
- "end": 540.046,
- "text": "for"
- },
- {
- "id": 1618,
- "start": 540.046,
- "end": 540.196,
- "text": "us,"
- },
- {
- "id": 1619,
- "start": 540.196,
- "end": 540.286,
- "text": "we"
- },
- {
- "id": 1620,
- "start": 540.286,
- "end": 540.466,
- "text": "wanted"
- },
- {
- "id": 1621,
- "start": 540.466,
- "end": 540.526,
- "text": "to"
- },
- {
- "id": 1622,
- "start": 540.526,
- "end": 540.646,
- "text": "make"
- },
- {
- "id": 1623,
- "start": 540.646,
- "end": 540.946,
- "text": "sure"
- },
- {
- "id": 1624,
- "start": 540.946,
- "end": 541.806,
- "text": "that"
- },
- {
- "id": 1625,
- "start": 541.806,
- "end": 542.346,
- "text": "engagement"
- },
- {
- "id": 1626,
- "start": 542.346,
- "end": 542.446,
- "text": "on"
- },
- {
- "id": 1627,
- "start": 542.446,
- "end": 542.536,
- "text": "the"
- },
- {
- "id": 1628,
- "start": 542.536,
- "end": 543.376,
- "text": "platform"
- },
- {
- "id": 1629,
- "start": 543.376,
- "end": 543.716,
- "text": "served"
- },
- {
- "id": 1630,
- "start": 543.716,
- "end": 543.846,
- "text": "two"
- },
- {
- "id": 1631,
- "start": 543.846,
- "end": 544.916,
- "text": "purposes."
- },
- {
- "id": 1632,
- "start": 544.916,
- "end": 545.206,
- "text": "One,"
- },
- {
- "id": 1633,
- "start": 545.206,
- "end": 545.316,
- "text": "it"
- },
- {
- "id": 1634,
- "start": 545.316,
- "end": 545.716,
- "text": "matched"
- },
- {
- "id": 1635,
- "start": 545.716,
- "end": 545.876,
- "text": "that"
- },
- {
- "id": 1636,
- "start": 545.876,
- "end": 546.416,
- "text": "cadence"
- },
- {
- "id": 1637,
- "start": 546.416,
- "end": 546.606,
- "text": "of"
- },
- {
- "id": 1638,
- "start": 546.596,
- "end": 547.206,
- "text": "natural"
- },
- {
- "id": 1639,
- "start": 547.296,
- "end": 547.821,
- "text": "communication,"
- },
- {
- "id": 1640,
- "start": 547.996,
- "end": 548.436,
- "text": "talking"
- },
- {
- "id": 1641,
- "start": 548.436,
- "end": 548.606,
- "text": "about"
- },
- {
- "id": 1642,
- "start": 548.606,
- "end": 548.806,
- "text": "things"
- },
- {
- "id": 1643,
- "start": 548.7126666666667,
- "end": 548.9826666666668,
- "text": "that"
- },
- {
- "id": 1644,
- "start": 548.8193333333334,
- "end": 549.1593333333334,
- "text": "are"
- },
- {
- "id": 1645,
- "start": 548.926,
- "end": 549.336,
- "text": "happening"
- },
- {
- "id": 1646,
- "start": 549.336,
- "end": 550.606,
- "text": "today,"
- },
- {
- "id": 1647,
- "start": 550.606,
- "end": 550.996,
- "text": "giving"
- },
- {
- "id": 1648,
- "start": 550.996,
- "end": 551.236,
- "text": "people"
- },
- {
- "id": 1649,
- "start": 551.236,
- "end": 551.326,
- "text": "the"
- },
- {
- "id": 1650,
- "start": 551.326,
- "end": 551.716,
- "text": "ability"
- },
- {
- "id": 1651,
- "start": 551.741,
- "end": 552.221,
- "text": "to"
- },
- {
- "id": 1652,
- "start": 552.156,
- "end": 552.726,
- "text": "compulsively"
- },
- {
- "id": 1653,
- "start": 552.626,
- "end": 553.126,
- "text": "share"
- },
- {
- "id": 1654,
- "start": 553.096,
- "end": 553.5260000000001,
- "text": "a"
- },
- {
- "id": 1655,
- "start": 553.566,
- "end": 553.926,
- "text": "funny"
- },
- {
- "id": 1656,
- "start": 553.926,
- "end": 554.686,
- "text": "photo."
- },
- {
- "id": 1657,
- "start": 554.3960000000001,
- "end": 554.946,
- "text": "Oh,"
- },
- {
- "id": 1658,
- "start": 554.866,
- "end": 555.206,
- "text": "look,"
- },
- {
- "id": 1659,
- "start": 555.206,
- "end": 555.356,
- "text": "there’s"
- },
- {
- "id": 1660,
- "start": 555.356,
- "end": 555.526,
- "text": "some"
- },
- {
- "id": 1661,
- "start": 555.526,
- "end": 556.046,
- "text": "ducks"
- },
- {
- "id": 1662,
- "start": 556.046,
- "end": 556.366,
- "text": "outside"
- },
- {
- "id": 1663,
- "start": 556.366,
- "end": 556.466,
- "text": "my"
- },
- {
- "id": 1664,
- "start": 556.466,
- "end": 556.776,
- "text": "house."
- },
- {
- "id": 1665,
- "start": 556.776,
- "end": 556.836,
- "text": "I"
- },
- {
- "id": 1666,
- "start": 556.836,
- "end": 557.406,
- "text": "should"
- },
- {
- "id": 1667,
- "start": 557.046,
- "end": 557.606,
- "text": "post"
- },
- {
- "id": 1668,
- "start": 557.366,
- "end": 557.8209999999999,
- "text": "a"
- },
- {
- "id": 1669,
- "start": 557.686,
- "end": 558.036,
- "text": "video"
- },
- {
- "id": 1670,
- "start": 557.8626666666667,
- "end": 558.1993333333332,
- "text": "of"
- },
- {
- "id": 1671,
- "start": 558.0393333333334,
- "end": 558.3626666666667,
- "text": "these"
- },
- {
- "id": 1672,
- "start": 558.216,
- "end": 558.526,
- "text": "ducks"
- },
- {
- "id": 1673,
- "start": 558.526,
- "end": 558.706,
- "text": "because"
- },
- {
- "id": 1674,
- "start": 558.706,
- "end": 558.796,
- "text": "they’re"
- },
- {
- "id": 1675,
- "start": 558.796,
- "end": 558.986,
- "text": "doing"
- },
- {
- "id": 1676,
- "start": 558.986,
- "end": 559.276,
- "text": "something"
- },
- {
- "id": 1677,
- "start": 559.276,
- "end": 559.596,
- "text": "funny"
- },
- {
- "id": 1678,
- "start": 559.586,
- "end": 559.706,
- "text": "and"
- },
- {
- "id": 1679,
- "start": 560.281,
- "end": 560.4409999999999,
- "text": "unique."
- },
- {
- "id": 1680,
- "start": 560.976,
- "end": 561.176,
- "text": "Being"
- },
- {
- "id": 1681,
- "start": 561.176,
- "end": 561.316,
- "text": "able"
- },
- {
- "id": 1682,
- "start": 561.316,
- "end": 561.446,
- "text": "to"
- },
- {
- "id": 1683,
- "start": 561.446,
- "end": 561.756,
- "text": "find"
- },
- {
- "id": 1684,
- "start": 561.756,
- "end": 561.836,
- "text": "the"
- },
- {
- "id": 1685,
- "start": 561.836,
- "end": 562.156,
- "text": "folks"
- },
- {
- "id": 1686,
- "start": 562.156,
- "end": 562.266,
- "text": "you"
- },
- {
- "id": 1687,
- "start": 562.266,
- "end": 562.446,
- "text": "really"
- },
- {
- "id": 1688,
- "start": 562.446,
- "end": 562.686,
- "text": "care"
- },
- {
- "id": 1689,
- "start": 562.686,
- "end": 563.016,
- "text": "about"
- },
- {
- "id": 1690,
- "start": 563.016,
- "end": 563.816,
- "text": "and"
- },
- {
- "id": 1691,
- "start": 563.816,
- "end": 564.056,
- "text": "catch"
- },
- {
- "id": 1692,
- "start": 564.056,
- "end": 564.166,
- "text": "up"
- },
- {
- "id": 1693,
- "start": 564.166,
- "end": 564.246,
- "text": "on"
- },
- {
- "id": 1694,
- "start": 564.246,
- "end": 564.396,
- "text": "what’s"
- },
- {
- "id": 1695,
- "start": 564.396,
- "end": 564.606,
- "text": "going"
- },
- {
- "id": 1696,
- "start": 564.606,
- "end": 564.736,
- "text": "on"
- },
- {
- "id": 1697,
- "start": 564.736,
- "end": 564.816,
- "text": "in"
- },
- {
- "id": 1698,
- "start": 564.816,
- "end": 564.886,
- "text": "the"
- },
- {
- "id": 1699,
- "start": 564.886,
- "end": 565.736,
- "text": "world."
- },
- {
- "id": 1700,
- "start": 565.736,
- "end": 565.956,
- "text": "But"
- },
- {
- "id": 1701,
- "start": 565.956,
- "end": 566.096,
- "text": "then"
- },
- {
- "id": 1702,
- "start": 566.346,
- "end": 566.481,
- "text": "two,"
- },
- {
- "id": 1703,
- "start": 566.736,
- "end": 566.866,
- "text": "you"
- },
- {
- "id": 1704,
- "start": 566.866,
- "end": 567.076,
- "text": "know,"
- },
- {
- "id": 1705,
- "start": 567.066,
- "end": 567.416,
- "text": "in"
- },
- {
- "id": 1706,
- "start": 567.461,
- "end": 567.7560000000001,
- "text": "practice"
- },
- {
- "id": 1707,
- "start": 567.856,
- "end": 568.096,
- "text": "we"
- },
- {
- "id": 1708,
- "start": 568.096,
- "end": 568.426,
- "text": "understood"
- },
- {
- "id": 1709,
- "start": 568.426,
- "end": 568.566,
- "text": "that"
- },
- {
- "id": 1710,
- "start": 568.566,
- "end": 569.076,
- "text": "engagement"
- },
- {
- "id": 1711,
- "start": 569.076,
- "end": 569.486,
- "text": "was"
- },
- {
- "id": 1712,
- "start": 569.486,
- "end": 569.796,
- "text": "one"
- },
- {
- "id": 1713,
- "start": 569.796,
- "end": 569.876,
- "text": "of"
- },
- {
- "id": 1714,
- "start": 569.876,
- "end": 570.496,
- "text": "the"
- },
- {
- "id": 1715,
- "start": 570.496,
- "end": 570.856,
- "text": "driving"
- },
- {
- "id": 1716,
- "start": 570.856,
- "end": 571.596,
- "text": "functions,"
- },
- {
- "id": 1717,
- "start": 571.596,
- "end": 571.766,
- "text": "one"
- },
- {
- "id": 1718,
- "start": 571.766,
- "end": 571.866,
- "text": "of"
- },
- {
- "id": 1719,
- "start": 571.866,
- "end": 572.786,
- "text": "the"
- },
- {
- "id": 1720,
- "start": 572.786,
- "end": 573.076,
- "text": "health"
- },
- {
- "id": 1721,
- "start": 573.076,
- "end": 573.416,
- "text": "metrics"
- },
- {
- "id": 1722,
- "start": 573.416,
- "end": 573.516,
- "text": "of"
- },
- {
- "id": 1723,
- "start": 573.516,
- "end": 573.606,
- "text": "the"
- },
- {
- "id": 1724,
- "start": 573.606,
- "end": 574.546,
- "text": "business."
- },
- {
- "id": 1725,
- "start": 574.546,
- "end": 574.666,
- "text": "We"
- },
- {
- "id": 1726,
- "start": 574.666,
- "end": 574.906,
- "text": "needed"
- },
- {
- "id": 1727,
- "start": 574.906,
- "end": 574.986,
- "text": "to"
- },
- {
- "id": 1728,
- "start": 574.986,
- "end": 575.146,
- "text": "make"
- },
- {
- "id": 1729,
- "start": 575.146,
- "end": 575.396,
- "text": "sure"
- },
- {
- "id": 1730,
- "start": 575.396,
- "end": 575.496,
- "text": "that"
- },
- {
- "id": 1731,
- "start": 575.496,
- "end": 575.576,
- "text": "the"
- },
- {
- "id": 1732,
- "start": 575.576,
- "end": 575.946,
- "text": "product"
- },
- {
- "id": 1733,
- "start": 575.946,
- "end": 576.306,
- "text": "was"
- },
- {
- "id": 1734,
- "start": 576.306,
- "end": 576.946,
- "text": "relevant."
- },
- {
- "id": 1735,
- "start": 576.946,
- "end": 577.086,
- "text": "And"
- },
- {
- "id": 1736,
- "start": 577.086,
- "end": 577.476,
- "text": "so"
- },
- {
- "id": 1737,
- "start": 577.621,
- "end": 577.901,
- "text": "if"
- },
- {
- "id": 1738,
- "start": 578.156,
- "end": 578.326,
- "text": "the"
- },
- {
- "id": 1739,
- "start": 578.326,
- "end": 578.656,
- "text": "product’s"
- },
- {
- "id": 1740,
- "start": 578.656,
- "end": 579.176,
- "text": "not"
- },
- {
- "id": 1741,
- "start": 579.176,
- "end": 579.736,
- "text": "engaging"
- },
- {
- "id": 1742,
- "start": 579.736,
- "end": 580.356,
- "text": "people"
- },
- {
- "id": 1743,
- "start": 580.356,
- "end": 580.536,
- "text": "on"
- },
- {
- "id": 1744,
- "start": 580.536,
- "end": 580.586,
- "text": "a"
- },
- {
- "id": 1745,
- "start": 580.586,
- "end": 581.086,
- "text": "periodic"
- },
- {
- "id": 1746,
- "start": 581.086,
- "end": 581.626,
- "text": "basis,"
- },
- {
- "id": 1747,
- "start": 581.626,
- "end": 581.756,
- "text": "on"
- },
- {
- "id": 1748,
- "start": 581.756,
- "end": 581.806,
- "text": "a"
- },
- {
- "id": 1749,
- "start": 581.806,
- "end": 582.116,
- "text": "daily"
- },
- {
- "id": 1750,
- "start": 582.5110000000002,
- "end": 582.7959999999998,
- "text": "basis,"
- },
- {
- "id": 1751,
- "start": 583.216,
- "end": 583.476,
- "text": "it’s"
- },
- {
- "id": 1752,
- "start": 583.476,
- "end": 583.656,
- "text": "not"
- },
- {
- "id": 1753,
- "start": 583.656,
- "end": 584.066,
- "text": "likely"
- },
- {
- "id": 1754,
- "start": 584.066,
- "end": 584.206,
- "text": "to"
- },
- {
- "id": 1755,
- "start": 584.206,
- "end": 584.376,
- "text": "be"
- },
- {
- "id": 1756,
- "start": 584.376,
- "end": 585.786,
- "text": "relevant"
- },
- {
- "id": 1757,
- "start": 585.786,
- "end": 585.896,
- "text": "and"
- },
- {
- "id": 1758,
- "start": 585.896,
- "end": 585.986,
- "text": "it’s"
- },
- {
- "id": 1759,
- "start": 585.986,
- "end": 586.126,
- "text": "not"
- },
- {
- "id": 1760,
- "start": 586.126,
- "end": 586.386,
- "text": "likely"
- },
- {
- "id": 1761,
- "start": 586.386,
- "end": 586.516,
- "text": "to"
- },
- {
- "id": 1762,
- "start": 586.516,
- "end": 586.736,
- "text": "be"
- },
- {
- "id": 1763,
- "start": 586.736,
- "end": 586.796,
- "text": "a"
- },
- {
- "id": 1764,
- "start": 586.796,
- "end": 587.196,
- "text": "thriving"
- },
- {
- "id": 1765,
- "start": 587.196,
- "end": 588.076,
- "text": "business."
- },
- {
- "id": 1766,
- "start": 588.076,
- "end": 588.266,
- "text": "It’s"
- },
- {
- "id": 1767,
- "start": 588.266,
- "end": 588.426,
- "text": "been"
- },
- {
- "id": 1768,
- "start": 588.426,
- "end": 588.946,
- "text": "reported"
- },
- {
- "id": 1769,
- "start": 588.946,
- "end": 589.386,
- "text": "that"
- },
- {
- "id": 1770,
- "start": 589.386,
- "end": 589.566,
- "text": "in"
- },
- {
- "id": 1771,
- "start": 589.566,
- "end": 590.006,
- "text": "Friday"
- },
- {
- "id": 1772,
- "start": 590.006,
- "end": 591.426,
- "text": "meetings"
- },
- {
- "id": 1773,
- "start": 591.426,
- "end": 591.876,
- "text": "early"
- },
- {
- "id": 1774,
- "start": 591.876,
- "end": 592.486,
- "text": "on"
- },
- {
- "id": 1775,
- "start": 592.266,
- "end": 592.926,
- "text": "that"
- },
- {
- "id": 1776,
- "start": 592.43,
- "end": 593.0340000000001,
- "text": "[Facebook"
- },
- {
- "id": 1777,
- "start": 592.594,
- "end": 593.142,
- "text": "founder"
- },
- {
- "id": 1778,
- "start": 592.758,
- "end": 593.25,
- "text": "and"
- },
- {
- "id": 1779,
- "start": 592.922,
- "end": 593.3580000000001,
- "text": "CEO]"
- },
- {
- "id": 1780,
- "start": 593.086,
- "end": 593.466,
- "text": "Mark"
- },
- {
- "id": 1781,
- "start": 593.2760000000001,
- "end": 593.566,
- "text": "[Zuckerberg]"
- },
- {
- "id": 1782,
- "start": 593.466,
- "end": 593.666,
- "text": "used"
- },
- {
- "id": 1783,
- "start": 593.666,
- "end": 593.746,
- "text": "to"
- },
- {
- "id": 1784,
- "start": 593.746,
- "end": 593.986,
- "text": "end"
- },
- {
- "id": 1785,
- "start": 593.986,
- "end": 594.046,
- "text": "the"
- },
- {
- "id": 1786,
- "start": 594.046,
- "end": 594.426,
- "text": "meetings"
- },
- {
- "id": 1787,
- "start": 594.426,
- "end": 594.546,
- "text": "by"
- },
- {
- "id": 1788,
- "start": 594.546,
- "end": 594.896,
- "text": "saying"
- },
- {
- "id": 1789,
- "start": 594.896,
- "end": 596.046,
- "text": "“domination.”"
- },
- {
- "id": 1790,
- "start": 596.046,
- "end": 596.206,
- "text": "Is"
- },
- {
- "id": 1791,
- "start": 596.206,
- "end": 596.336,
- "text": "that"
- },
- {
- "id": 1792,
- "start": 596.336,
- "end": 596.956,
- "text": "true?"
- },
- {
- "id": 1793,
- "start": 596.956,
- "end": 597.116,
- "text": "That"
- },
- {
- "id": 1794,
- "start": 597.116,
- "end": 597.256,
- "text": "is"
- },
- {
- "id": 1795,
- "start": 597.256,
- "end": 597.446,
- "text": "true."
- },
- {
- "id": 1796,
- "start": 597.446,
- "end": 597.596,
- "text": "So"
- },
- {
- "id": 1797,
- "start": 597.596,
- "end": 597.796,
- "text": "tell"
- },
- {
- "id": 1798,
- "start": 597.796,
- "end": 597.916,
- "text": "me"
- },
- {
- "id": 1799,
- "start": 597.916,
- "end": 598.166,
- "text": "about"
- },
- {
- "id": 1800,
- "start": 598.166,
- "end": 598.386,
- "text": "that."
- },
- {
- "id": 1801,
- "start": 598.386,
- "end": 598.776,
- "text": "What"
- },
- {
- "id": 1802,
- "start": 598.776,
- "end": 598.896,
- "text": "were"
- },
- {
- "id": 1803,
- "start": 598.896,
- "end": 599.076,
- "text": "those"
- },
- {
- "id": 1804,
- "start": 599.076,
- "end": 599.366,
- "text": "Friday"
- },
- {
- "id": 1805,
- "start": 599.366,
- "end": 599.736,
- "text": "meetings"
- },
- {
- "id": 1806,
- "start": 599.736,
- "end": 599.936,
- "text": "and"
- },
- {
- "id": 1807,
- "start": 599.936,
- "end": 600.286,
- "text": "what"
- },
- {
- "id": 1808,
- "start": 600.286,
- "end": 600.386,
- "text": "did"
- },
- {
- "id": 1809,
- "start": 600.386,
- "end": 600.586,
- "text": "that"
- },
- {
- "id": 1810,
- "start": 600.586,
- "end": 601.206,
- "text": "mean?"
- },
- {
- "id": 1811,
- "start": 601.206,
- "end": 603.476,
- "text": "Domination?"
- },
- {
- "id": 1812,
- "start": 603.476,
- "end": 603.626,
- "text": "I"
- },
- {
- "id": 1813,
- "start": 603.626,
- "end": 603.786,
- "text": "mean,"
- },
- {
- "id": 1814,
- "start": 603.786,
- "end": 603.876,
- "text": "I"
- },
- {
- "id": 1815,
- "start": 603.876,
- "end": 604.006,
- "text": "can"
- },
- {
- "id": 1816,
- "start": 604.006,
- "end": 604.156,
- "text": "only"
- },
- {
- "id": 1817,
- "start": 604.156,
- "end": 604.416,
- "text": "speak"
- },
- {
- "id": 1818,
- "start": 604.416,
- "end": 604.606,
- "text": "to"
- },
- {
- "id": 1819,
- "start": 604.606,
- "end": 605.796,
- "text": "my"
- },
- {
- "id": 1820,
- "start": 605.796,
- "end": 610.236,
- "text": "experience."
- },
- {
- "id": 1821,
- "start": 610.236,
- "end": 610.486,
- "text": "Part"
- },
- {
- "id": 1822,
- "start": 610.486,
- "end": 610.586,
- "text": "of"
- },
- {
- "id": 1823,
- "start": 610.586,
- "end": 610.706,
- "text": "it"
- },
- {
- "id": 1824,
- "start": 610.706,
- "end": 611.146,
- "text": "was"
- },
- {
- "id": 1825,
- "start": 611.146,
- "end": 611.286,
- "text": "the"
- },
- {
- "id": 1826,
- "start": 611.286,
- "end": 611.646,
- "text": "rallying"
- },
- {
- "id": 1827,
- "start": 611.646,
- "end": 611.736,
- "text": "of"
- },
- {
- "id": 1828,
- "start": 611.736,
- "end": 611.846,
- "text": "the"
- },
- {
- "id": 1829,
- "start": 611.846,
- "end": 612.396,
- "text": "troops"
- },
- {
- "id": 1830,
- "start": 612.396,
- "end": 612.846,
- "text": "against"
- },
- {
- "id": 1831,
- "start": 612.846,
- "end": 613.986,
- "text": "what"
- },
- {
- "id": 1832,
- "start": 613.986,
- "end": 615.306,
- "text": "most"
- },
- {
- "id": 1833,
- "start": 615.306,
- "end": 615.716,
- "text": "people"
- },
- {
- "id": 1834,
- "start": 615.716,
- "end": 615.886,
- "text": "in"
- },
- {
- "id": 1835,
- "start": 615.886,
- "end": 616.036,
- "text": "the"
- },
- {
- "id": 1836,
- "start": 616.036,
- "end": 616.386,
- "text": "industry"
- },
- {
- "id": 1837,
- "start": 616.386,
- "end": 616.616,
- "text": "might"
- },
- {
- "id": 1838,
- "start": 616.616,
- "end": 618.726,
- "text": "perceive"
- },
- {
- "id": 1839,
- "start": 618.726,
- "end": 618.846,
- "text": "as"
- },
- {
- "id": 1840,
- "start": 618.846,
- "end": 618.926,
- "text": "a"
- },
- {
- "id": 1841,
- "start": 618.926,
- "end": 619.306,
- "text": "product"
- },
- {
- "id": 1842,
- "start": 619.1535000000001,
- "end": 619.4784999999999,
- "text": "or"
- },
- {
- "id": 1843,
- "start": 619.3810000000001,
- "end": 619.651,
- "text": "company"
- },
- {
- "id": 1844,
- "start": 619.6085,
- "end": 619.8235,
- "text": "that"
- },
- {
- "id": 1845,
- "start": 619.836,
- "end": 619.996,
- "text": "might"
- },
- {
- "id": 1846,
- "start": 619.996,
- "end": 620.086,
- "text": "be"
- },
- {
- "id": 1847,
- "start": 620.086,
- "end": 620.276,
- "text": "dead"
- },
- {
- "id": 1848,
- "start": 620.276,
- "end": 620.376,
- "text": "on"
- },
- {
- "id": 1849,
- "start": 621.0993333333334,
- "end": 621.306,
- "text": "arrival."
- },
- {
- "id": 1850,
- "start": 621.9226666666667,
- "end": 622.2360000000001,
- "text": "Again,"
- },
- {
- "id": 1851,
- "start": 622.746,
- "end": 623.166,
- "text": "you"
- },
- {
- "id": 1852,
- "start": 623.166,
- "end": 623.326,
- "text": "sort"
- },
- {
- "id": 1853,
- "start": 623.326,
- "end": 623.396,
- "text": "of"
- },
- {
- "id": 1854,
- "start": 623.396,
- "end": 623.606,
- "text": "look"
- },
- {
- "id": 1855,
- "start": 623.606,
- "end": 623.986,
- "text": "back"
- },
- {
- "id": 1856,
- "start": 623.986,
- "end": 624.106,
- "text": "and"
- },
- {
- "id": 1857,
- "start": 624.106,
- "end": 624.526,
- "text": "consider"
- },
- {
- "id": 1858,
- "start": 624.526,
- "end": 625.636,
- "text": "Facebook"
- },
- {
- "id": 1859,
- "start": 625.636,
- "end": 626.836,
- "text": "and"
- },
- {
- "id": 1860,
- "start": 626.836,
- "end": 627.136,
- "text": "where"
- },
- {
- "id": 1861,
- "start": 627.136,
- "end": 627.216,
- "text": "it"
- },
- {
- "id": 1862,
- "start": 627.216,
- "end": 627.436,
- "text": "was"
- },
- {
- "id": 1863,
- "start": 627.436,
- "end": 627.806,
- "text": "relative"
- },
- {
- "id": 1864,
- "start": 627.806,
- "end": 627.906,
- "text": "to"
- },
- {
- "id": 1865,
- "start": 628.281,
- "end": 628.421,
- "text": "Myspace,"
- },
- {
- "id": 1866,
- "start": 628.756,
- "end": 628.936,
- "text": "which"
- },
- {
- "id": 1867,
- "start": 628.936,
- "end": 628.976,
- "text": "I"
- },
- {
- "id": 1868,
- "start": 628.976,
- "end": 629.246,
- "text": "think"
- },
- {
- "id": 1869,
- "start": 629.246,
- "end": 629.536,
- "text": "was"
- },
- {
- "id": 1870,
- "start": 629.536,
- "end": 629.666,
- "text": "on"
- },
- {
- "id": 1871,
- "start": 629.666,
- "end": 629.736,
- "text": "the"
- },
- {
- "id": 1872,
- "start": 629.736,
- "end": 629.926,
- "text": "order"
- },
- {
- "id": 1873,
- "start": 629.831,
- "end": 630.001,
- "text": "of"
- },
- {
- "id": 1874,
- "start": 629.926,
- "end": 630.076,
- "text": "like"
- },
- {
- "id": 1875,
- "start": 630.076,
- "end": 630.416,
- "text": "60"
- },
- {
- "id": 1876,
- "start": 630.416,
- "end": 630.696,
- "text": "times"
- },
- {
- "id": 1877,
- "start": 630.696,
- "end": 631.546,
- "text": "larger"
- },
- {
- "id": 1878,
- "start": 631.546,
- "end": 631.716,
- "text": "than"
- },
- {
- "id": 1879,
- "start": 631.716,
- "end": 632.246,
- "text": "Facebook"
- },
- {
- "id": 1880,
- "start": 632.246,
- "end": 632.436,
- "text": "from"
- },
- {
- "id": 1881,
- "start": 632.436,
- "end": 632.496,
- "text": "a"
- },
- {
- "id": 1882,
- "start": 632.496,
- "end": 632.796,
- "text": "user"
- },
- {
- "id": 1883,
- "start": 633.7660000000001,
- "end": 634.0310000000002,
- "text": "standpoint."
- },
- {
- "id": 1884,
- "start": 635.036,
- "end": 635.266,
- "text": "We"
- },
- {
- "id": 1885,
- "start": 635.266,
- "end": 635.376,
- "text": "were"
- },
- {
- "id": 1886,
- "start": 635.376,
- "end": 635.516,
- "text": "the"
- },
- {
- "id": 1887,
- "start": 635.516,
- "end": 636.436,
- "text": "insurgents."
- },
- {
- "id": 1888,
- "start": 636.436,
- "end": 636.686,
- "text": "We"
- },
- {
- "id": 1889,
- "start": 636.686,
- "end": 637.356,
- "text": "were"
- },
- {
- "id": 1890,
- "start": 637.356,
- "end": 637.476,
- "text": "the"
- },
- {
- "id": 1891,
- "start": 637.476,
- "end": 637.706,
- "text": "ones"
- },
- {
- "id": 1892,
- "start": 637.706,
- "end": 637.836,
- "text": "that"
- },
- {
- "id": 1893,
- "start": 637.836,
- "end": 638.066,
- "text": "had"
- },
- {
- "id": 1894,
- "start": 638.066,
- "end": 638.386,
- "text": "everything"
- },
- {
- "id": 1895,
- "start": 638.386,
- "end": 638.526,
- "text": "to"
- },
- {
- "id": 1896,
- "start": 638.526,
- "end": 639.456,
- "text": "lose."
- },
- {
- "id": 1897,
- "start": 639.456,
- "end": 640.156,
- "text": "And"
- },
- {
- "id": 1898,
- "start": 640.156,
- "end": 640.246,
- "text": "I"
- },
- {
- "id": 1899,
- "start": 640.246,
- "end": 640.486,
- "text": "think"
- },
- {
- "id": 1900,
- "start": 640.486,
- "end": 641.406,
- "text": "that"
- },
- {
- "id": 1901,
- "start": 641.406,
- "end": 641.526,
- "text": "the"
- },
- {
- "id": 1902,
- "start": 641.526,
- "end": 641.816,
- "text": "notion"
- },
- {
- "id": 1903,
- "start": 641.816,
- "end": 641.886,
- "text": "of"
- },
- {
- "id": 1904,
- "start": 641.886,
- "end": 642.476,
- "text": "domination"
- },
- {
- "id": 1905,
- "start": 642.476,
- "end": 643.216,
- "text": "was"
- },
- {
- "id": 1906,
- "start": 643.016,
- "end": 643.456,
- "text": "guided"
- },
- {
- "id": 1907,
- "start": 643.556,
- "end": 643.696,
- "text": "by"
- },
- {
- "id": 1908,
- "start": 643.696,
- "end": 643.876,
- "text": "this"
- },
- {
- "id": 1909,
- "start": 643.876,
- "end": 644.296,
- "text": "idea"
- },
- {
- "id": 1910,
- "start": 644.296,
- "end": 644.956,
- "text": "of"
- },
- {
- "id": 1911,
- "start": 644.956,
- "end": 645.376,
- "text": "rallying"
- },
- {
- "id": 1912,
- "start": 645.376,
- "end": 645.456,
- "text": "the"
- },
- {
- "id": 1913,
- "start": 645.456,
- "end": 645.876,
- "text": "troops"
- },
- {
- "id": 1914,
- "start": 645.876,
- "end": 646.726,
- "text": "towards"
- },
- {
- "id": 1915,
- "start": 646.726,
- "end": 647.046,
- "text": "making"
- },
- {
- "id": 1916,
- "start": 647.046,
- "end": 647.626,
- "text": "steady,"
- },
- {
- "id": 1917,
- "start": 647.626,
- "end": 648.236,
- "text": "continuous"
- },
- {
- "id": 1918,
- "start": 648.236,
- "end": 649.136,
- "text": "progress"
- },
- {
- "id": 1919,
- "start": 649.136,
- "end": 649.376,
- "text": "towards"
- },
- {
- "id": 1920,
- "start": 649.376,
- "end": 649.436,
- "text": "a"
- },
- {
- "id": 1921,
- "start": 649.436,
- "end": 649.946,
- "text": "strategy"
- },
- {
- "id": 1922,
- "start": 649.946,
- "end": 650.046,
- "text": "that"
- },
- {
- "id": 1923,
- "start": 650.046,
- "end": 650.156,
- "text": "we"
- },
- {
- "id": 1924,
- "start": 650.156,
- "end": 650.386,
- "text": "felt"
- },
- {
- "id": 1925,
- "start": 650.386,
- "end": 650.786,
- "text": "like"
- },
- {
- "id": 1926,
- "start": 650.786,
- "end": 651.076,
- "text": "could"
- },
- {
- "id": 1927,
- "start": 651.076,
- "end": 651.576,
- "text": "potentially"
- },
- {
- "id": 1928,
- "start": 651.576,
- "end": 652.316,
- "text": "win,"
- },
- {
- "id": 1929,
- "start": 652.316,
- "end": 652.516,
- "text": "and"
- },
- {
- "id": 1930,
- "start": 652.516,
- "end": 652.676,
- "text": "that"
- },
- {
- "id": 1931,
- "start": 652.676,
- "end": 652.896,
- "text": "wouldn’t"
- },
- {
- "id": 1932,
- "start": 652.896,
- "end": 653.006,
- "text": "be"
- },
- {
- "id": 1933,
- "start": 653.006,
- "end": 653.316,
- "text": "fully"
- },
- {
- "id": 1934,
- "start": 653.3693333333333,
- "end": 653.596,
- "text": "realized"
- },
- {
- "id": 1935,
- "start": 653.7326666666667,
- "end": 653.876,
- "text": "in"
- },
- {
- "id": 1936,
- "start": 654.096,
- "end": 654.156,
- "text": "a"
- },
- {
- "id": 1937,
- "start": 654.156,
- "end": 654.476,
- "text": "single"
- },
- {
- "id": 1938,
- "start": 654.476,
- "end": 655.376,
- "text": "quarter"
- },
- {
- "id": 1939,
- "start": 655.376,
- "end": 655.466,
- "text": "or"
- },
- {
- "id": 1940,
- "start": 655.466,
- "end": 655.636,
- "text": "even"
- },
- {
- "id": 1941,
- "start": 655.636,
- "end": 655.766,
- "text": "in"
- },
- {
- "id": 1942,
- "start": 655.766,
- "end": 655.826,
- "text": "a"
- },
- {
- "id": 1943,
- "start": 655.826,
- "end": 656.126,
- "text": "single"
- },
- {
- "id": 1944,
- "start": 655.9793333333333,
- "end": 656.2393333333333,
- "text": "year."
- },
- {
- "id": 1945,
- "start": 656.1326666666666,
- "end": 656.3526666666667,
- "text": "It"
- },
- {
- "id": 1946,
- "start": 656.2860000000001,
- "end": 656.466,
- "text": "was"
- },
- {
- "id": 1947,
- "start": 656.4393333333333,
- "end": 656.5793333333334,
- "text": "going"
- },
- {
- "id": 1948,
- "start": 656.5926666666667,
- "end": 656.6926666666667,
- "text": "to"
- },
- {
- "id": 1949,
- "start": 656.746,
- "end": 656.806,
- "text": "be"
- },
- {
- "id": 1950,
- "start": 656.806,
- "end": 656.846,
- "text": "a"
- },
- {
- "id": 1951,
- "start": 656.846,
- "end": 657.416,
- "text": "multiyear"
- },
- {
- "id": 1952,
- "start": 657.416,
- "end": 658.236,
- "text": "effort."
- },
- {
- "id": 1953,
- "start": 658.236,
- "end": 658.786,
- "text": "But"
- },
- {
- "id": 1954,
- "start": 658.786,
- "end": 659.006,
- "text": "if"
- },
- {
- "id": 1955,
- "start": 659.006,
- "end": 659.146,
- "text": "we"
- },
- {
- "id": 1956,
- "start": 659.146,
- "end": 659.296,
- "text": "were"
- },
- {
- "id": 1957,
- "start": 659.296,
- "end": 659.666,
- "text": "able"
- },
- {
- "id": 1958,
- "start": 659.666,
- "end": 659.836,
- "text": "to"
- },
- {
- "id": 1959,
- "start": 660.071,
- "end": 660.196,
- "text": "capitalize"
- },
- {
- "id": 1960,
- "start": 660.476,
- "end": 660.556,
- "text": "on"
- },
- {
- "id": 1961,
- "start": 660.556,
- "end": 660.716,
- "text": "that"
- },
- {
- "id": 1962,
- "start": 660.716,
- "end": 661.306,
- "text": "opportunity,"
- },
- {
- "id": 1963,
- "start": 661.306,
- "end": 661.446,
- "text": "we"
- },
- {
- "id": 1964,
- "start": 661.446,
- "end": 661.656,
- "text": "felt"
- },
- {
- "id": 1965,
- "start": 661.656,
- "end": 661.806,
- "text": "like"
- },
- {
- "id": 1966,
- "start": 661.806,
- "end": 661.896,
- "text": "we"
- },
- {
- "id": 1967,
- "start": 661.896,
- "end": 662.076,
- "text": "might"
- },
- {
- "id": 1968,
- "start": 662.076,
- "end": 662.186,
- "text": "be"
- },
- {
- "id": 1969,
- "start": 662.186,
- "end": 662.326,
- "text": "able"
- },
- {
- "id": 1970,
- "start": 662.326,
- "end": 662.556,
- "text": "to"
- },
- {
- "id": 1971,
- "start": 662.506,
- "end": 662.746,
- "text": "build"
- },
- {
- "id": 1972,
- "start": 662.6659999999999,
- "end": 662.966,
- "text": "a"
- },
- {
- "id": 1973,
- "start": 662.826,
- "end": 663.186,
- "text": "product"
- },
- {
- "id": 1974,
- "start": 663.186,
- "end": 663.276,
- "text": "that"
- },
- {
- "id": 1975,
- "start": 663.276,
- "end": 663.376,
- "text": "would"
- },
- {
- "id": 1976,
- "start": 663.376,
- "end": 664.536,
- "text": "have"
- },
- {
- "id": 1977,
- "start": 664.536,
- "end": 665.126,
- "text": "meaningful"
- },
- {
- "id": 1978,
- "start": 665.126,
- "end": 665.976,
- "text": "influence"
- },
- {
- "id": 1979,
- "start": 665.976,
- "end": 666.166,
- "text": "on"
- },
- {
- "id": 1980,
- "start": 666.166,
- "end": 666.396,
- "text": "how"
- },
- {
- "id": 1981,
- "start": 666.396,
- "end": 666.676,
- "text": "people"
- },
- {
- "id": 1982,
- "start": 666.676,
- "end": 667.616,
- "text": "lived."
- },
- {
- "id": 1983,
- "start": 667.616,
- "end": 669.086,
- "text": "And"
- },
- {
- "id": 1984,
- "start": 669.086,
- "end": 669.296,
- "text": "I"
- },
- {
- "id": 1985,
- "start": 669.296,
- "end": 669.566,
- "text": "certainly"
- },
- {
- "id": 1986,
- "start": 669.566,
- "end": 669.836,
- "text": "wasn’t"
- },
- {
- "id": 1987,
- "start": 669.836,
- "end": 670.166,
- "text": "thinking"
- },
- {
- "id": 1988,
- "start": 670.166,
- "end": 670.336,
- "text": "that"
- },
- {
- "id": 1989,
- "start": 670.336,
- "end": 670.416,
- "text": "it"
- },
- {
- "id": 1990,
- "start": 670.416,
- "end": 670.646,
- "text": "would"
- },
- {
- "id": 1991,
- "start": 670.646,
- "end": 670.736,
- "text": "be"
- },
- {
- "id": 1992,
- "start": 670.736,
- "end": 670.826,
- "text": "on"
- },
- {
- "id": 1993,
- "start": 670.826,
- "end": 670.896,
- "text": "the"
- },
- {
- "id": 1994,
- "start": 670.896,
- "end": 671.136,
- "text": "order"
- },
- {
- "id": 1995,
- "start": 671.136,
- "end": 671.216,
- "text": "of"
- },
- {
- "id": 1996,
- "start": 671.216,
- "end": 671.526,
- "text": "billions"
- },
- {
- "id": 1997,
- "start": 671.526,
- "end": 671.596,
- "text": "of"
- },
- {
- "id": 1998,
- "start": 671.596,
- "end": 673.256,
- "text": "people."
- },
- {
- "id": 1999,
- "start": 673.256,
- "end": 673.366,
- "text": "The"
- },
- {
- "id": 2000,
- "start": 673.366,
- "end": 673.866,
- "text": "smartphone"
- },
- {
- "id": 2001,
- "start": 673.866,
- "end": 673.976,
- "text": "had"
- },
- {
- "id": 2002,
- "start": 673.976,
- "end": 674.136,
- "text": "not"
- },
- {
- "id": 2003,
- "start": 674.136,
- "end": 674.286,
- "text": "yet"
- },
- {
- "id": 2004,
- "start": 674.286,
- "end": 674.526,
- "text": "been"
- },
- {
- "id": 2005,
- "start": 674.526,
- "end": 675.626,
- "text": "invented"
- },
- {
- "id": 2006,
- "start": 675.626,
- "end": 675.816,
- "text": "by"
- },
- {
- "id": 2007,
- "start": 675.816,
- "end": 676.026,
- "text": "that"
- },
- {
- "id": 2008,
- "start": 676.026,
- "end": 676.366,
- "text": "stage."
- },
- {
- "id": 2009,
- "start": 676.366,
- "end": 677.336,
- "text": "But"
- },
- {
- "id": 2010,
- "start": 677.336,
- "end": 677.376,
- "text": "I"
- },
- {
- "id": 2011,
- "start": 677.376,
- "end": 677.866,
- "text": "think,"
- },
- {
- "id": 2012,
- "start": 677.866,
- "end": 678.006,
- "text": "you"
- },
- {
- "id": 2013,
- "start": 678.006,
- "end": 678.666,
- "text": "know,"
- },
- {
- "id": 2014,
- "start": 678.666,
- "end": 678.796,
- "text": "the"
- },
- {
- "id": 2015,
- "start": 678.796,
- "end": 679.046,
- "text": "spirit"
- },
- {
- "id": 2016,
- "start": 679.046,
- "end": 679.106,
- "text": "of"
- },
- {
- "id": 2017,
- "start": 679.106,
- "end": 679.606,
- "text": "domination"
- },
- {
- "id": 2018,
- "start": 679.606,
- "end": 679.716,
- "text": "was"
- },
- {
- "id": 2019,
- "start": 679.716,
- "end": 679.876,
- "text": "really"
- },
- {
- "id": 2020,
- "start": 679.876,
- "end": 680.086,
- "text": "around"
- },
- {
- "id": 2021,
- "start": 680.086,
- "end": 680.236,
- "text": "this"
- },
- {
- "id": 2022,
- "start": 680.236,
- "end": 680.746,
- "text": "idea"
- },
- {
- "id": 2023,
- "start": 680.746,
- "end": 680.836,
- "text": "of"
- },
- {
- "id": 2024,
- "start": 680.836,
- "end": 681.076,
- "text": "like"
- },
- {
- "id": 2025,
- "start": 681.076,
- "end": 681.466,
- "text": "rallying"
- },
- {
- "id": 2026,
- "start": 681.466,
- "end": 681.526,
- "text": "a"
- },
- {
- "id": 2027,
- "start": 681.526,
- "end": 681.996,
- "text": "competitive"
- },
- {
- "id": 2028,
- "start": 681.996,
- "end": 682.766,
- "text": "spirit"
- },
- {
- "id": 2029,
- "start": 682.766,
- "end": 683.716,
- "text": "against"
- },
- {
- "id": 2030,
- "start": 683.716,
- "end": 683.906,
- "text": "what"
- },
- {
- "id": 2031,
- "start": 683.906,
- "end": 684.496,
- "text": "was,"
- },
- {
- "id": 2032,
- "start": 684.496,
- "end": 684.696,
- "text": "on"
- },
- {
- "id": 2033,
- "start": 684.696,
- "end": 685.186,
- "text": "paper,"
- },
- {
- "id": 2034,
- "start": 685.186,
- "end": 685.386,
- "text": "a"
- },
- {
- "id": 2035,
- "start": 685.386,
- "end": 685.906,
- "text": "clearly"
- },
- {
- "id": 2036,
- "start": 685.906,
- "end": 686.336,
- "text": "grim"
- },
- {
- "id": 2037,
- "start": 686.336,
- "end": 687.796,
- "text": "situation."
- },
- {
- "id": 2038,
- "start": 687.796,
- "end": 687.936,
- "text": "I"
- },
- {
- "id": 2039,
- "start": 687.936,
- "end": 688.116,
- "text": "know"
- },
- {
- "id": 2040,
- "start": 688.1926666666667,
- "end": 688.386,
- "text": "we’re"
- },
- {
- "id": 2041,
- "start": 688.4493333333334,
- "end": 688.6560000000001,
- "text": "limited,"
- },
- {
- "id": 2042,
- "start": 688.706,
- "end": 688.926,
- "text": "so"
- },
- {
- "id": 2043,
- "start": 688.926,
- "end": 689.256,
- "text": "the"
- },
- {
- "id": 2044,
- "start": 689.256,
- "end": 689.506,
- "text": "Like"
- },
- {
- "id": 2045,
- "start": 689.511,
- "end": 689.6659999999999,
- "text": "button."
- },
- {
- "id": 2046,
- "start": 689.766,
- "end": 689.826,
- "text": "I"
- },
- {
- "id": 2047,
- "start": 689.826,
- "end": 690.056,
- "text": "just"
- },
- {
- "id": 2048,
- "start": 690.056,
- "end": 690.196,
- "text": "need"
- },
- {
- "id": 2049,
- "start": 690.196,
- "end": 691.126,
- "text": "to"
- },
- {
- "id": 2050,
- "start": 691.126,
- "end": 691.396,
- "text": "hear"
- },
- {
- "id": 2051,
- "start": 691.396,
- "end": 691.646,
- "text": "about"
- },
- {
- "id": 2052,
- "start": 691.646,
- "end": 691.746,
- "text": "the"
- },
- {
- "id": 2053,
- "start": 691.746,
- "end": 692.266,
- "text": "genesis"
- },
- {
- "id": 2054,
- "start": 692.266,
- "end": 692.396,
- "text": "of"
- },
- {
- "id": 2055,
- "start": 692.396,
- "end": 692.686,
- "text": "that"
- },
- {
- "id": 2056,
- "start": 692.686,
- "end": 693.096,
- "text": "and"
- },
- {
- "id": 2057,
- "start": 693.096,
- "end": 693.296,
- "text": "ask"
- },
- {
- "id": 2058,
- "start": 693.296,
- "end": 693.356,
- "text": "you"
- },
- {
- "id": 2059,
- "start": 693.356,
- "end": 693.396,
- "text": "a"
- },
- {
- "id": 2060,
- "start": 693.396,
- "end": 693.636,
- "text": "couple"
- },
- {
- "id": 2061,
- "start": 693.636,
- "end": 693.696,
- "text": "of"
- },
- {
- "id": 2062,
- "start": 693.696,
- "end": 694.076,
- "text": "questions"
- },
- {
- "id": 2063,
- "start": 694.076,
- "end": 694.276,
- "text": "about"
- },
- {
- "id": 2064,
- "start": 694.276,
- "end": 694.536,
- "text": "that."
- },
- {
- "id": 2065,
- "start": 694.536,
- "end": 694.816,
- "text": "So"
- },
- {
- "id": 2066,
- "start": 694.816,
- "end": 695.106,
- "text": "how"
- },
- {
- "id": 2067,
- "start": 695.106,
- "end": 695.256,
- "text": "did"
- },
- {
- "id": 2068,
- "start": 695.256,
- "end": 695.446,
- "text": "that"
- },
- {
- "id": 2069,
- "start": 695.446,
- "end": 695.606,
- "text": "come"
- },
- {
- "id": 2070,
- "start": 695.606,
- "end": 696.346,
- "text": "about?"
- },
- {
- "id": 2071,
- "start": 696.346,
- "end": 696.526,
- "text": "So"
- },
- {
- "id": 2072,
- "start": 696.526,
- "end": 696.616,
- "text": "the"
- },
- {
- "id": 2073,
- "start": 696.616,
- "end": 696.836,
- "text": "Like"
- },
- {
- "id": 2074,
- "start": 696.836,
- "end": 697.086,
- "text": "button"
- },
- {
- "id": 2075,
- "start": 697.086,
- "end": 697.206,
- "text": "was"
- },
- {
- "id": 2076,
- "start": 697.206,
- "end": 697.296,
- "text": "a"
- },
- {
- "id": 2077,
- "start": 697.296,
- "end": 697.666,
- "text": "feature"
- },
- {
- "id": 2078,
- "start": 697.666,
- "end": 697.776,
- "text": "that"
- },
- {
- "id": 2079,
- "start": 697.776,
- "end": 697.906,
- "text": "we"
- },
- {
- "id": 2080,
- "start": 697.906,
- "end": 698.476,
- "text": "had"
- },
- {
- "id": 2081,
- "start": 698.476,
- "end": 698.936,
- "text": "in"
- },
- {
- "id": 2082,
- "start": 698.936,
- "end": 699.106,
- "text": "what"
- },
- {
- "id": 2083,
- "start": 699.106,
- "end": 699.166,
- "text": "I"
- },
- {
- "id": 2084,
- "start": 699.166,
- "end": 699.316,
- "text": "like"
- },
- {
- "id": 2085,
- "start": 699.316,
- "end": 699.386,
- "text": "to"
- },
- {
- "id": 2086,
- "start": 699.386,
- "end": 699.616,
- "text": "call"
- },
- {
- "id": 2087,
- "start": 699.616,
- "end": 699.966,
- "text": "product"
- },
- {
- "id": 2088,
- "start": 699.966,
- "end": 700.976,
- "text": "purgatory"
- },
- {
- "id": 2089,
- "start": 700.976,
- "end": 701.556,
- "text": "for,"
- },
- {
- "id": 2090,
- "start": 701.556,
- "end": 701.596,
- "text": "I"
- },
- {
- "id": 2091,
- "start": 701.596,
- "end": 701.836,
- "text": "think,"
- },
- {
- "id": 2092,
- "start": 701.836,
- "end": 702.206,
- "text": "multiple"
- },
- {
- "id": 2093,
- "start": 702.261,
- "end": 702.541,
- "text": "years."
- },
- {
- "id": 2094,
- "start": 702.686,
- "end": 702.876,
- "text": "We"
- },
- {
- "id": 2095,
- "start": 702.876,
- "end": 703.016,
- "text": "had"
- },
- {
- "id": 2096,
- "start": 703.016,
- "end": 703.346,
- "text": "started"
- },
- {
- "id": 2097,
- "start": 703.346,
- "end": 703.706,
- "text": "working"
- },
- {
- "id": 2098,
- "start": 703.706,
- "end": 703.826,
- "text": "on"
- },
- {
- "id": 2099,
- "start": 703.856,
- "end": 704.056,
- "text": "it"
- },
- {
- "id": 2100,
- "start": 704.006,
- "end": 704.286,
- "text": "in"
- },
- {
- "id": 2101,
- "start": 704.286,
- "end": 704.356,
- "text": "the"
- },
- {
- "id": 2102,
- "start": 704.356,
- "end": 704.596,
- "text": "summer"
- },
- {
- "id": 2103,
- "start": 704.596,
- "end": 704.666,
- "text": "of"
- },
- {
- "id": 2104,
- "start": 705.116,
- "end": 705.1910000000001,
- "text": "2007."
- },
- {
- "id": 2105,
- "start": 705.636,
- "end": 705.716,
- "text": "A"
- },
- {
- "id": 2106,
- "start": 705.716,
- "end": 706.096,
- "text": "team"
- },
- {
- "id": 2107,
- "start": 706.096,
- "end": 706.216,
- "text": "had"
- },
- {
- "id": 2108,
- "start": 706.216,
- "end": 706.436,
- "text": "gotten"
- },
- {
- "id": 2109,
- "start": 706.436,
- "end": 706.736,
- "text": "together"
- },
- {
- "id": 2110,
- "start": 706.736,
- "end": 706.866,
- "text": "for"
- },
- {
- "id": 2111,
- "start": 706.826,
- "end": 707.346,
- "text": "Hackathon,"
- },
- {
- "id": 2112,
- "start": 707.196,
- "end": 707.496,
- "text": "built"
- },
- {
- "id": 2113,
- "start": 707.566,
- "end": 707.646,
- "text": "an"
- },
- {
- "id": 2114,
- "start": 707.646,
- "end": 707.956,
- "text": "initial"
- },
- {
- "id": 2115,
- "start": 708.3410000000001,
- "end": 708.9659999999999,
- "text": "prototype."
- },
- {
- "id": 2116,
- "start": 709.036,
- "end": 709.976,
- "text": "But"
- },
- {
- "id": 2117,
- "start": 709.976,
- "end": 710.166,
- "text": "it"
- },
- {
- "id": 2118,
- "start": 710.166,
- "end": 710.446,
- "text": "always"
- },
- {
- "id": 2119,
- "start": 710.446,
- "end": 710.666,
- "text": "somehow"
- },
- {
- "id": 2120,
- "start": 710.666,
- "end": 711.146,
- "text": "never"
- },
- {
- "id": 2121,
- "start": 711.146,
- "end": 711.356,
- "text": "ended"
- },
- {
- "id": 2122,
- "start": 711.356,
- "end": 711.436,
- "text": "up"
- },
- {
- "id": 2123,
- "start": 711.436,
- "end": 711.676,
- "text": "going"
- },
- {
- "id": 2124,
- "start": 711.676,
- "end": 711.756,
- "text": "to"
- },
- {
- "id": 2125,
- "start": 711.756,
- "end": 712.176,
- "text": "production"
- },
- {
- "id": 2126,
- "start": 712.176,
- "end": 712.556,
- "text": "because"
- },
- {
- "id": 2127,
- "start": 712.556,
- "end": 712.636,
- "text": "the"
- },
- {
- "id": 2128,
- "start": 712.636,
- "end": 713.146,
- "text": "design"
- },
- {
- "id": 2129,
- "start": 713.146,
- "end": 713.426,
- "text": "wasn’t"
- },
- {
- "id": 2130,
- "start": 713.426,
- "end": 713.786,
- "text": "quite"
- },
- {
- "id": 2131,
- "start": 713.786,
- "end": 715.836,
- "text": "there."
- },
- {
- "id": 2132,
- "start": 715.836,
- "end": 716.116,
- "text": "It"
- },
- {
- "id": 2133,
- "start": 716.116,
- "end": 716.516,
- "text": "often"
- },
- {
- "id": 2134,
- "start": 716.516,
- "end": 717.026,
- "text": "flunked"
- },
- {
- "id": 2135,
- "start": 716.8226666666667,
- "end": 717.3059999999999,
- "text": "the"
- },
- {
- "id": 2136,
- "start": 717.1293333333334,
- "end": 717.5859999999999,
- "text": "Zuck"
- },
- {
- "id": 2137,
- "start": 717.436,
- "end": 717.866,
- "text": "review"
- },
- {
- "id": 2138,
- "start": 717.856,
- "end": 718.186,
- "text": "before"
- },
- {
- "id": 2139,
- "start": 718.126,
- "end": 718.5576666666667,
- "text": "it"
- },
- {
- "id": 2140,
- "start": 718.396,
- "end": 718.9293333333334,
- "text": "went"
- },
- {
- "id": 2141,
- "start": 718.6659999999999,
- "end": 719.301,
- "text": "out"
- },
- {
- "id": 2142,
- "start": 718.936,
- "end": 719.6726666666667,
- "text": "to"
- },
- {
- "id": 2143,
- "start": 719.206,
- "end": 720.0443333333334,
- "text": "market."
- },
- {
- "id": 2144,
- "start": 719.476,
- "end": 720.416,
- "text": "And"
- },
- {
- "id": 2145,
- "start": 720.416,
- "end": 720.586,
- "text": "we"
- },
- {
- "id": 2146,
- "start": 720.586,
- "end": 720.756,
- "text": "weren’t"
- },
- {
- "id": 2147,
- "start": 720.756,
- "end": 720.916,
- "text": "able"
- },
- {
- "id": 2148,
- "start": 720.916,
- "end": 721.006,
- "text": "to"
- },
- {
- "id": 2149,
- "start": 721.006,
- "end": 721.156,
- "text": "kind"
- },
- {
- "id": 2150,
- "start": 721.156,
- "end": 721.536,
- "text": "of"
- },
- {
- "id": 2151,
- "start": 721.536,
- "end": 721.986,
- "text": "reach"
- },
- {
- "id": 2152,
- "start": 721.986,
- "end": 722.176,
- "text": "a"
- },
- {
- "id": 2153,
- "start": 722.176,
- "end": 722.466,
- "text": "final"
- },
- {
- "id": 2154,
- "start": 722.466,
- "end": 722.796,
- "text": "design"
- },
- {
- "id": 2155,
- "start": 722.796,
- "end": 722.896,
- "text": "that"
- },
- {
- "id": 2156,
- "start": 722.896,
- "end": 723.026,
- "text": "we"
- },
- {
- "id": 2157,
- "start": 723.026,
- "end": 723.266,
- "text": "felt"
- },
- {
- "id": 2158,
- "start": 723.266,
- "end": 724.516,
- "text": "like"
- },
- {
- "id": 2159,
- "start": 724.516,
- "end": 724.746,
- "text": "was"
- },
- {
- "id": 2160,
- "start": 724.746,
- "end": 725.186,
- "text": "cohesive"
- },
- {
- "id": 2161,
- "start": 725.186,
- "end": 725.276,
- "text": "with"
- },
- {
- "id": 2162,
- "start": 725.276,
- "end": 725.346,
- "text": "the"
- },
- {
- "id": 2163,
- "start": 725.346,
- "end": 725.596,
- "text": "broader"
- },
- {
- "id": 2164,
- "start": 725.596,
- "end": 726.166,
- "text": "product."
- },
- {
- "id": 2165,
- "start": 727.1010000000001,
- "end": 727.531,
- "text": "In"
- },
- {
- "id": 2166,
- "start": 728.606,
- "end": 728.896,
- "text": "late"
- },
- {
- "id": 2167,
- "start": 729.221,
- "end": 729.4459999999999,
- "text": "2008,"
- },
- {
- "id": 2168,
- "start": 729.836,
- "end": 729.996,
- "text": "I"
- },
- {
- "id": 2169,
- "start": 729.996,
- "end": 730.236,
- "text": "started"
- },
- {
- "id": 2170,
- "start": 730.236,
- "end": 730.626,
- "text": "working"
- },
- {
- "id": 2171,
- "start": 730.626,
- "end": 731.246,
- "text": "on"
- },
- {
- "id": 2172,
- "start": 731.246,
- "end": 731.796,
- "text": "what"
- },
- {
- "id": 2173,
- "start": 731.796,
- "end": 731.966,
- "text": "ended"
- },
- {
- "id": 2174,
- "start": 731.966,
- "end": 732.036,
- "text": "up"
- },
- {
- "id": 2175,
- "start": 732.036,
- "end": 732.226,
- "text": "being"
- },
- {
- "id": 2176,
- "start": 732.226,
- "end": 732.266,
- "text": "a"
- },
- {
- "id": 2177,
- "start": 732.266,
- "end": 732.556,
- "text": "major"
- },
- {
- "id": 2178,
- "start": 732.556,
- "end": 732.916,
- "text": "redesign"
- },
- {
- "id": 2179,
- "start": 732.916,
- "end": 732.996,
- "text": "of"
- },
- {
- "id": 2180,
- "start": 732.996,
- "end": 733.206,
- "text": "News"
- },
- {
- "id": 2181,
- "start": 733.206,
- "end": 733.896,
- "text": "Feed"
- },
- {
- "id": 2182,
- "start": 733.896,
- "end": 734.096,
- "text": "that"
- },
- {
- "id": 2183,
- "start": 734.096,
- "end": 734.706,
- "text": "introduced"
- },
- {
- "id": 2184,
- "start": 734.6859999999999,
- "end": 735.1226666666666,
- "text": "in-line"
- },
- {
- "id": 2185,
- "start": 735.2760000000001,
- "end": 735.5393333333334,
- "text": "commenting."
- },
- {
- "id": 2186,
- "start": 735.866,
- "end": 735.956,
- "text": "I"
- },
- {
- "id": 2187,
- "start": 735.956,
- "end": 736.106,
- "text": "think"
- },
- {
- "id": 2188,
- "start": 736.106,
- "end": 736.306,
- "text": "most"
- },
- {
- "id": 2189,
- "start": 736.306,
- "end": 736.506,
- "text": "people"
- },
- {
- "id": 2190,
- "start": 736.506,
- "end": 736.846,
- "text": "forget"
- },
- {
- "id": 2191,
- "start": 736.846,
- "end": 737.456,
- "text": "that"
- },
- {
- "id": 2192,
- "start": 737.126,
- "end": 737.886,
- "text": "commenting"
- },
- {
- "id": 2193,
- "start": 737.5260000000001,
- "end": 738.001,
- "text": "in"
- },
- {
- "id": 2194,
- "start": 737.926,
- "end": 738.116,
- "text": "News"
- },
- {
- "id": 2195,
- "start": 738.116,
- "end": 738.286,
- "text": "Feed"
- },
- {
- "id": 2196,
- "start": 738.286,
- "end": 738.386,
- "text": "was"
- },
- {
- "id": 2197,
- "start": 738.386,
- "end": 738.546,
- "text": "not"
- },
- {
- "id": 2198,
- "start": 738.546,
- "end": 738.586,
- "text": "a"
- },
- {
- "id": 2199,
- "start": 738.586,
- "end": 738.836,
- "text": "thing"
- },
- {
- "id": 2200,
- "start": 738.836,
- "end": 739.146,
- "text": "for"
- },
- {
- "id": 2201,
- "start": 739.146,
- "end": 739.506,
- "text": "several"
- },
- {
- "id": 2202,
- "start": 739.506,
- "end": 740.246,
- "text": "years"
- },
- {
- "id": 2203,
- "start": 740.246,
- "end": 740.406,
- "text": "of"
- },
- {
- "id": 2204,
- "start": 740.406,
- "end": 740.626,
- "text": "News"
- },
- {
- "id": 2205,
- "start": 740.626,
- "end": 740.886,
- "text": "Feed’s"
- },
- {
- "id": 2206,
- "start": 740.886,
- "end": 741.916,
- "text": "history."
- },
- {
- "id": 2207,
- "start": 741.916,
- "end": 742.116,
- "text": "But"
- },
- {
- "id": 2208,
- "start": 742.116,
- "end": 742.216,
- "text": "we"
- },
- {
- "id": 2209,
- "start": 742.216,
- "end": 742.426,
- "text": "wanted"
- },
- {
- "id": 2210,
- "start": 742.426,
- "end": 742.506,
- "text": "to"
- },
- {
- "id": 2211,
- "start": 742.506,
- "end": 742.756,
- "text": "make"
- },
- {
- "id": 2212,
- "start": 742.756,
- "end": 743.026,
- "text": "News"
- },
- {
- "id": 2213,
- "start": 743.026,
- "end": 743.226,
- "text": "Feed"
- },
- {
- "id": 2214,
- "start": 743.226,
- "end": 743.316,
- "text": "the"
- },
- {
- "id": 2215,
- "start": 743.316,
- "end": 743.536,
- "text": "actual"
- },
- {
- "id": 2216,
- "start": 743.536,
- "end": 744.046,
- "text": "conduit"
- },
- {
- "id": 2217,
- "start": 744.046,
- "end": 744.306,
- "text": "for"
- },
- {
- "id": 2218,
- "start": 744.306,
- "end": 744.836,
- "text": "interactions"
- },
- {
- "id": 2219,
- "start": 744.836,
- "end": 744.956,
- "text": "on"
- },
- {
- "id": 2220,
- "start": 744.956,
- "end": 746.006,
- "text": "Facebook"
- },
- {
- "id": 2221,
- "start": 746.006,
- "end": 746.326,
- "text": "where"
- },
- {
- "id": 2222,
- "start": 746.326,
- "end": 746.426,
- "text": "you"
- },
- {
- "id": 2223,
- "start": 746.426,
- "end": 746.526,
- "text": "can"
- },
- {
- "id": 2224,
- "start": 746.526,
- "end": 746.786,
- "text": "spend"
- },
- {
- "id": 2225,
- "start": 746.786,
- "end": 746.906,
- "text": "your"
- },
- {
- "id": 2226,
- "start": 746.906,
- "end": 747.196,
- "text": "whole"
- },
- {
- "id": 2227,
- "start": 747.196,
- "end": 747.646,
- "text": "time,"
- },
- {
- "id": 2228,
- "start": 747.646,
- "end": 747.736,
- "text": "your"
- },
- {
- "id": 2229,
- "start": 747.736,
- "end": 747.876,
- "text": "whole"
- },
- {
- "id": 2230,
- "start": 747.876,
- "end": 748.216,
- "text": "session,"
- },
- {
- "id": 2231,
- "start": 748.216,
- "end": 748.316,
- "text": "on"
- },
- {
- "id": 2232,
- "start": 748.316,
- "end": 748.516,
- "text": "News"
- },
- {
- "id": 2233,
- "start": 748.516,
- "end": 748.956,
- "text": "Feed"
- },
- {
- "id": 2234,
- "start": 748.956,
- "end": 749.136,
- "text": "and"
- },
- {
- "id": 2235,
- "start": 749.136,
- "end": 749.236,
- "text": "get"
- },
- {
- "id": 2236,
- "start": 749.236,
- "end": 749.276,
- "text": "a"
- },
- {
- "id": 2237,
- "start": 749.276,
- "end": 749.646,
- "text": "tremendous"
- },
- {
- "id": 2238,
- "start": 749.646,
- "end": 749.846,
- "text": "amount"
- },
- {
- "id": 2239,
- "start": 749.846,
- "end": 749.906,
- "text": "of"
- },
- {
- "id": 2240,
- "start": 749.906,
- "end": 750.166,
- "text": "value"
- },
- {
- "id": 2241,
- "start": 750.166,
- "end": 750.296,
- "text": "out"
- },
- {
- "id": 2242,
- "start": 750.296,
- "end": 750.376,
- "text": "of"
- },
- {
- "id": 2243,
- "start": 750.376,
- "end": 750.506,
- "text": "it"
- },
- {
- "id": 2244,
- "start": 750.491,
- "end": 750.6610000000001,
- "text": "and"
- },
- {
- "id": 2245,
- "start": 750.606,
- "end": 750.816,
- "text": "also"
- },
- {
- "id": 2246,
- "start": 750.816,
- "end": 750.876,
- "text": "be"
- },
- {
- "id": 2247,
- "start": 750.876,
- "end": 750.996,
- "text": "able"
- },
- {
- "id": 2248,
- "start": 750.996,
- "end": 751.066,
- "text": "to"
- },
- {
- "id": 2249,
- "start": 751.066,
- "end": 751.466,
- "text": "converse"
- },
- {
- "id": 2250,
- "start": 751.466,
- "end": 751.596,
- "text": "with"
- },
- {
- "id": 2251,
- "start": 751.5360000000001,
- "end": 751.721,
- "text": "the"
- },
- {
- "id": 2252,
- "start": 751.606,
- "end": 751.846,
- "text": "people"
- },
- {
- "id": 2253,
- "start": 751.846,
- "end": 752.096,
- "text": "around"
- },
- {
- "id": 2254,
- "start": 752.096,
- "end": 754.356,
- "text": "you."
- },
- {
- "id": 2255,
- "start": 754.356,
- "end": 754.696,
- "text": "And"
- },
- {
- "id": 2256,
- "start": 754.696,
- "end": 754.836,
- "text": "as"
- },
- {
- "id": 2257,
- "start": 754.836,
- "end": 755.116,
- "text": "part"
- },
- {
- "id": 2258,
- "start": 755.116,
- "end": 755.236,
- "text": "of"
- },
- {
- "id": 2259,
- "start": 755.236,
- "end": 755.576,
- "text": "that"
- },
- {
- "id": 2260,
- "start": 755.7410000000001,
- "end": 756.011,
- "text": "program,"
- },
- {
- "id": 2261,
- "start": 756.246,
- "end": 756.446,
- "text": "which"
- },
- {
- "id": 2262,
- "start": 756.446,
- "end": 756.526,
- "text": "we"
- },
- {
- "id": 2263,
- "start": 756.526,
- "end": 756.746,
- "text": "call"
- },
- {
- "id": 2264,
- "start": 756.746,
- "end": 756.836,
- "text": "the"
- },
- {
- "id": 2265,
- "start": 756.836,
- "end": 757.286,
- "text": "Universal"
- },
- {
- "id": 2266,
- "start": 757.286,
- "end": 757.746,
- "text": "Feedback"
- },
- {
- "id": 2267,
- "start": 758.3610000000003,
- "end": 758.7260000000001,
- "text": "Interface,"
- },
- {
- "id": 2268,
- "start": 759.436,
- "end": 759.706,
- "text": "we"
- },
- {
- "id": 2269,
- "start": 759.706,
- "end": 759.826,
- "text": "had"
- },
- {
- "id": 2270,
- "start": 759.826,
- "end": 759.966,
- "text": "sort"
- },
- {
- "id": 2271,
- "start": 759.966,
- "end": 760.026,
- "text": "of"
- },
- {
- "id": 2272,
- "start": 760.026,
- "end": 760.166,
- "text": "set"
- },
- {
- "id": 2273,
- "start": 760.166,
- "end": 760.246,
- "text": "the"
- },
- {
- "id": 2274,
- "start": 760.246,
- "end": 760.616,
- "text": "stage"
- },
- {
- "id": 2275,
- "start": 760.616,
- "end": 761.556,
- "text": "for"
- },
- {
- "id": 2276,
- "start": 761.556,
- "end": 761.956,
- "text": "finally"
- },
- {
- "id": 2277,
- "start": 761.956,
- "end": 762.726,
- "text": "releasing"
- },
- {
- "id": 2278,
- "start": 762.726,
- "end": 762.836,
- "text": "the"
- },
- {
- "id": 2279,
- "start": 762.836,
- "end": 763.026,
- "text": "Like"
- },
- {
- "id": 2280,
- "start": 763.026,
- "end": 764.056,
- "text": "button."
- },
- {
- "id": 2281,
- "start": 764.056,
- "end": 764.206,
- "text": "At"
- },
- {
- "id": 2282,
- "start": 764.206,
- "end": 764.286,
- "text": "the"
- },
- {
- "id": 2283,
- "start": 764.286,
- "end": 764.566,
- "text": "time,"
- },
- {
- "id": 2284,
- "start": 764.566,
- "end": 764.706,
- "text": "we"
- },
- {
- "id": 2285,
- "start": 764.706,
- "end": 765.496,
- "text": "were"
- },
- {
- "id": 2286,
- "start": 765.496,
- "end": 765.636,
- "text": "a"
- },
- {
- "id": 2287,
- "start": 765.636,
- "end": 765.856,
- "text": "little"
- },
- {
- "id": 2288,
- "start": 765.856,
- "end": 765.996,
- "text": "bit"
- },
- {
- "id": 2289,
- "start": 766.226,
- "end": 766.5109999999999,
- "text": "skeptical"
- },
- {
- "id": 2290,
- "start": 766.596,
- "end": 767.026,
- "text": "about"
- },
- {
- "id": 2291,
- "start": 766.8135,
- "end": 767.1935,
- "text": "the"
- },
- {
- "id": 2292,
- "start": 767.031,
- "end": 767.361,
- "text": "Like"
- },
- {
- "id": 2293,
- "start": 767.2484999999999,
- "end": 767.5285,
- "text": "button."
- },
- {
- "id": 2294,
- "start": 767.466,
- "end": 767.696,
- "text": "We"
- },
- {
- "id": 2295,
- "start": 767.696,
- "end": 767.796,
- "text": "were"
- },
- {
- "id": 2296,
- "start": 767.796,
- "end": 770.106,
- "text": "concerned"
- },
- {
- "id": 2297,
- "start": 770.106,
- "end": 770.376,
- "text": "that"
- },
- {
- "id": 2298,
- "start": 770.376,
- "end": 770.496,
- "text": "the"
- },
- {
- "id": 2299,
- "start": 770.496,
- "end": 770.696,
- "text": "Like"
- },
- {
- "id": 2300,
- "start": 770.696,
- "end": 770.996,
- "text": "button"
- },
- {
- "id": 2301,
- "start": 770.996,
- "end": 771.156,
- "text": "would"
- },
- {
- "id": 2302,
- "start": 771.8009999999999,
- "end": 772.431,
- "text": "cannibalize"
- },
- {
- "id": 2303,
- "start": 772.606,
- "end": 773.706,
- "text": "commenting,"
- },
- {
- "id": 2304,
- "start": 773.706,
- "end": 773.886,
- "text": "that"
- },
- {
- "id": 2305,
- "start": 773.886,
- "end": 773.966,
- "text": "it"
- },
- {
- "id": 2306,
- "start": 773.966,
- "end": 774.096,
- "text": "would"
- },
- {
- "id": 2307,
- "start": 774.096,
- "end": 774.296,
- "text": "start"
- },
- {
- "id": 2308,
- "start": 774.296,
- "end": 774.396,
- "text": "to"
- },
- {
- "id": 2309,
- "start": 774.581,
- "end": 774.8909999999998,
- "text": "erode"
- },
- {
- "id": 2310,
- "start": 774.866,
- "end": 775.386,
- "text": "engagement"
- },
- {
- "id": 2311,
- "start": 775.386,
- "end": 775.606,
- "text": "because"
- },
- {
- "id": 2312,
- "start": 775.606,
- "end": 775.836,
- "text": "people"
- },
- {
- "id": 2313,
- "start": 775.7693333333334,
- "end": 776.0659999999999,
- "text": "would"
- },
- {
- "id": 2314,
- "start": 775.9326666666666,
- "end": 776.2959999999999,
- "text": "just"
- },
- {
- "id": 2315,
- "start": 776.096,
- "end": 776.526,
- "text": "resort"
- },
- {
- "id": 2316,
- "start": 776.396,
- "end": 776.801,
- "text": "to"
- },
- {
- "id": 2317,
- "start": 776.696,
- "end": 777.076,
- "text": "clicking"
- },
- {
- "id": 2318,
- "start": 776.886,
- "end": 777.1809999999999,
- "text": "a"
- },
- {
- "id": 2319,
- "start": 777.076,
- "end": 777.286,
- "text": "Like"
- },
- {
- "id": 2320,
- "start": 777.286,
- "end": 777.816,
- "text": "button,"
- },
- {
- "id": 2321,
- "start": 777.816,
- "end": 778.136,
- "text": "not"
- },
- {
- "id": 2322,
- "start": 778.136,
- "end": 778.536,
- "text": "talking"
- },
- {
- "id": 2323,
- "start": 778.536,
- "end": 778.836,
- "text": "to"
- },
- {
- "id": 2324,
- "start": 778.9409999999999,
- "end": 779.241,
- "text": "the"
- },
- {
- "id": 2325,
- "start": 779.346,
- "end": 779.646,
- "text": "people"
- },
- {
- "id": 2326,
- "start": 779.646,
- "end": 779.706,
- "text": "in"
- },
- {
- "id": 2327,
- "start": 779.706,
- "end": 779.826,
- "text": "their"
- },
- {
- "id": 2328,
- "start": 779.826,
- "end": 781.616,
- "text": "community."
- },
- {
- "id": 2329,
- "start": 781.616,
- "end": 781.776,
- "text": "And"
- },
- {
- "id": 2330,
- "start": 781.776,
- "end": 781.886,
- "text": "as"
- },
- {
- "id": 2331,
- "start": 781.886,
- "end": 781.956,
- "text": "it"
- },
- {
- "id": 2332,
- "start": 781.956,
- "end": 782.136,
- "text": "turned"
- },
- {
- "id": 2333,
- "start": 782.136,
- "end": 782.266,
- "text": "out,"
- },
- {
- "id": 2334,
- "start": 782.266,
- "end": 782.426,
- "text": "our"
- },
- {
- "id": 2335,
- "start": 782.426,
- "end": 782.786,
- "text": "intuition"
- },
- {
- "id": 2336,
- "start": 782.786,
- "end": 782.936,
- "text": "was"
- },
- {
- "id": 2337,
- "start": 782.936,
- "end": 783.116,
- "text": "just"
- },
- {
- "id": 2338,
- "start": 783.116,
- "end": 783.256,
- "text": "dead"
- },
- {
- "id": 2339,
- "start": 783.256,
- "end": 784.056,
- "text": "wrong."
- },
- {
- "id": 2340,
- "start": 784.056,
- "end": 784.286,
- "text": "We"
- },
- {
- "id": 2341,
- "start": 784.286,
- "end": 784.636,
- "text": "ran"
- },
- {
- "id": 2342,
- "start": 784.636,
- "end": 784.976,
- "text": "these"
- },
- {
- "id": 2343,
- "start": 784.976,
- "end": 785.696,
- "text": "experiments."
- },
- {
- "id": 2344,
- "start": 785.696,
- "end": 785.786,
- "text": "We"
- },
- {
- "id": 2345,
- "start": 785.786,
- "end": 785.976,
- "text": "kind"
- },
- {
- "id": 2346,
- "start": 785.976,
- "end": 786.516,
- "text": "of"
- },
- {
- "id": 2347,
- "start": 786.516,
- "end": 786.936,
- "text": "launched"
- },
- {
- "id": 2348,
- "start": 786.936,
- "end": 786.996,
- "text": "the"
- },
- {
- "id": 2349,
- "start": 786.996,
- "end": 787.206,
- "text": "Like"
- },
- {
- "id": 2350,
- "start": 787.206,
- "end": 787.516,
- "text": "button"
- },
- {
- "id": 2351,
- "start": 787.516,
- "end": 787.656,
- "text": "in"
- },
- {
- "id": 2352,
- "start": 787.656,
- "end": 787.826,
- "text": "these"
- },
- {
- "id": 2353,
- "start": 787.826,
- "end": 788.526,
- "text": "controlled,"
- },
- {
- "id": 2354,
- "start": 788.5809999999999,
- "end": 789.1159999999999,
- "text": "self-contained"
- },
- {
- "id": 2355,
- "start": 789.336,
- "end": 789.706,
- "text": "networks"
- },
- {
- "id": 2356,
- "start": 789.706,
- "end": 789.796,
- "text": "to"
- },
- {
- "id": 2357,
- "start": 789.796,
- "end": 790.046,
- "text": "see"
- },
- {
- "id": 2358,
- "start": 790.046,
- "end": 790.196,
- "text": "what"
- },
- {
- "id": 2359,
- "start": 790.196,
- "end": 790.296,
- "text": "the"
- },
- {
- "id": 2360,
- "start": 790.296,
- "end": 790.626,
- "text": "usage"
- },
- {
- "id": 2361,
- "start": 790.5060000000001,
- "end": 790.751,
- "text": "would"
- },
- {
- "id": 2362,
- "start": 790.716,
- "end": 790.876,
- "text": "look"
- },
- {
- "id": 2363,
- "start": 790.876,
- "end": 791.276,
- "text": "like"
- },
- {
- "id": 2364,
- "start": 791.276,
- "end": 791.706,
- "text": "relative"
- },
- {
- "id": 2365,
- "start": 791.706,
- "end": 791.796,
- "text": "to"
- },
- {
- "id": 2366,
- "start": 791.796,
- "end": 791.876,
- "text": "the"
- },
- {
- "id": 2367,
- "start": 791.876,
- "end": 792.136,
- "text": "broader"
- },
- {
- "id": 2368,
- "start": 792.136,
- "end": 792.396,
- "text": "user"
- },
- {
- "id": 2369,
- "start": 792.396,
- "end": 793.256,
- "text": "base."
- },
- {
- "id": 2370,
- "start": 793.256,
- "end": 793.436,
- "text": "And"
- },
- {
- "id": 2371,
- "start": 793.436,
- "end": 793.526,
- "text": "what"
- },
- {
- "id": 2372,
- "start": 793.526,
- "end": 793.646,
- "text": "we"
- },
- {
- "id": 2373,
- "start": 793.646,
- "end": 793.946,
- "text": "found"
- },
- {
- "id": 2374,
- "start": 793.8309999999999,
- "end": 794.0310000000001,
- "text": "was"
- },
- {
- "id": 2375,
- "start": 794.016,
- "end": 794.116,
- "text": "that"
- },
- {
- "id": 2376,
- "start": 794.116,
- "end": 794.206,
- "text": "the"
- },
- {
- "id": 2377,
- "start": 794.206,
- "end": 794.386,
- "text": "Like"
- },
- {
- "id": 2378,
- "start": 794.386,
- "end": 794.626,
- "text": "button"
- },
- {
- "id": 2379,
- "start": 794.626,
- "end": 794.936,
- "text": "acted"
- },
- {
- "id": 2380,
- "start": 794.936,
- "end": 795.066,
- "text": "as"
- },
- {
- "id": 2381,
- "start": 795.066,
- "end": 795.126,
- "text": "a"
- },
- {
- "id": 2382,
- "start": 795.126,
- "end": 795.466,
- "text": "social"
- },
- {
- "id": 2383,
- "start": 795.466,
- "end": 796.356,
- "text": "lubricant."
- },
- {
- "id": 2384,
- "start": 796.356,
- "end": 796.566,
- "text": "It"
- },
- {
- "id": 2385,
- "start": 796.566,
- "end": 797.046,
- "text": "actually"
- },
- {
- "id": 2386,
- "start": 797.046,
- "end": 797.506,
- "text": "increased"
- },
- {
- "id": 2387,
- "start": 797.506,
- "end": 797.566,
- "text": "the"
- },
- {
- "id": 2388,
- "start": 797.566,
- "end": 797.966,
- "text": "likelihood"
- },
- {
- "id": 2389,
- "start": 797.966,
- "end": 798.046,
- "text": "of"
- },
- {
- "id": 2390,
- "start": 798.046,
- "end": 798.106,
- "text": "a"
- },
- {
- "id": 2391,
- "start": 798.106,
- "end": 798.926,
- "text": "comment"
- },
- {
- "id": 2392,
- "start": 798.926,
- "end": 799.106,
- "text": "if"
- },
- {
- "id": 2393,
- "start": 799.106,
- "end": 799.216,
- "text": "there"
- },
- {
- "id": 2394,
- "start": 799.216,
- "end": 799.326,
- "text": "were"
- },
- {
- "id": 2395,
- "start": 799.326,
- "end": 799.596,
- "text": "Likes"
- },
- {
- "id": 2396,
- "start": 799.596,
- "end": 799.686,
- "text": "on"
- },
- {
- "id": 2397,
- "start": 799.686,
- "end": 799.766,
- "text": "a"
- },
- {
- "id": 2398,
- "start": 799.766,
- "end": 800.116,
- "text": "particular"
- },
- {
- "id": 2399,
- "start": 800.381,
- "end": 800.646,
- "text": "post."
- },
- {
- "id": 2400,
- "start": 800.996,
- "end": 801.176,
- "text": "And"
- },
- {
- "id": 2401,
- "start": 801.176,
- "end": 801.276,
- "text": "of"
- },
- {
- "id": 2402,
- "start": 801.276,
- "end": 801.546,
- "text": "course,"
- },
- {
- "id": 2403,
- "start": 801.546,
- "end": 801.606,
- "text": "it"
- },
- {
- "id": 2404,
- "start": 801.606,
- "end": 801.736,
- "text": "was"
- },
- {
- "id": 2405,
- "start": 801.736,
- "end": 802.096,
- "text": "also"
- },
- {
- "id": 2406,
- "start": 802.096,
- "end": 802.546,
- "text": "driving"
- },
- {
- "id": 2407,
- "start": 802.546,
- "end": 802.746,
- "text": "this"
- },
- {
- "id": 2408,
- "start": 802.746,
- "end": 803.656,
- "text": "flywheel"
- },
- {
- "id": 2409,
- "start": 803.656,
- "end": 803.796,
- "text": "of"
- },
- {
- "id": 2410,
- "start": 803.796,
- "end": 804.596,
- "text": "engagement"
- },
- {
- "id": 2411,
- "start": 804.596,
- "end": 804.756,
- "text": "that"
- },
- {
- "id": 2412,
- "start": 804.756,
- "end": 805.016,
- "text": "people"
- },
- {
- "id": 2413,
- "start": 805.016,
- "end": 805.246,
- "text": "felt"
- },
- {
- "id": 2414,
- "start": 805.246,
- "end": 805.376,
- "text": "like"
- },
- {
- "id": 2415,
- "start": 805.376,
- "end": 805.446,
- "text": "they"
- },
- {
- "id": 2416,
- "start": 805.446,
- "end": 805.556,
- "text": "were"
- },
- {
- "id": 2417,
- "start": 805.556,
- "end": 805.896,
- "text": "heard"
- },
- {
- "id": 2418,
- "start": 805.896,
- "end": 806.016,
- "text": "on"
- },
- {
- "id": 2419,
- "start": 806.016,
- "end": 806.096,
- "text": "the"
- },
- {
- "id": 2420,
- "start": 806.096,
- "end": 806.806,
- "text": "platform"
- },
- {
- "id": 2421,
- "start": 806.806,
- "end": 807.216,
- "text": "whenever"
- },
- {
- "id": 2422,
- "start": 807.216,
- "end": 807.346,
- "text": "they"
- },
- {
- "id": 2423,
- "start": 807.346,
- "end": 807.656,
- "text": "shared"
- },
- {
- "id": 2424,
- "start": 807.656,
- "end": 808.506,
- "text": "something."
- },
- {
- "id": 2425,
- "start": 808.506,
- "end": 808.706,
- "text": "And"
- },
- {
- "id": 2426,
- "start": 808.706,
- "end": 808.866,
- "text": "so"
- },
- {
- "id": 2427,
- "start": 808.866,
- "end": 808.986,
- "text": "what"
- },
- {
- "id": 2428,
- "start": 808.986,
- "end": 809.116,
- "text": "we"
- },
- {
- "id": 2429,
- "start": 809.116,
- "end": 809.386,
- "text": "found"
- },
- {
- "id": 2430,
- "start": 809.386,
- "end": 809.496,
- "text": "was"
- },
- {
- "id": 2431,
- "start": 809.496,
- "end": 809.696,
- "text": "that"
- },
- {
- "id": 2432,
- "start": 809.696,
- "end": 809.836,
- "text": "we"
- },
- {
- "id": 2433,
- "start": 809.836,
- "end": 810.086,
- "text": "struck"
- },
- {
- "id": 2434,
- "start": 810.086,
- "end": 810.146,
- "text": "a"
- },
- {
- "id": 2435,
- "start": 810.281,
- "end": 810.356,
- "text": "chord"
- },
- {
- "id": 2436,
- "start": 810.476,
- "end": 810.566,
- "text": "of"
- },
- {
- "id": 2437,
- "start": 810.566,
- "end": 810.996,
- "text": "meaning"
- },
- {
- "id": 2438,
- "start": 810.996,
- "end": 811.956,
- "text": "that"
- },
- {
- "id": 2439,
- "start": 811.956,
- "end": 812.076,
- "text": "I"
- },
- {
- "id": 2440,
- "start": 812.076,
- "end": 812.206,
- "text": "don’t"
- },
- {
- "id": 2441,
- "start": 812.206,
- "end": 812.336,
- "text": "think"
- },
- {
- "id": 2442,
- "start": 812.336,
- "end": 812.456,
- "text": "any"
- },
- {
- "id": 2443,
- "start": 812.456,
- "end": 812.526,
- "text": "of"
- },
- {
- "id": 2444,
- "start": 812.526,
- "end": 812.686,
- "text": "us"
- },
- {
- "id": 2445,
- "start": 812.686,
- "end": 812.916,
- "text": "really"
- },
- {
- "id": 2446,
- "start": 812.916,
- "end": 813.096,
- "text": "had"
- },
- {
- "id": 2447,
- "start": 813.096,
- "end": 813.456,
- "text": "fully"
- },
- {
- "id": 2448,
- "start": 813.701,
- "end": 814.006,
- "text": "internalized"
- },
- {
- "id": 2449,
- "start": 814.306,
- "end": 814.556,
- "text": "would"
- },
- {
- "id": 2450,
- "start": 814.556,
- "end": 814.686,
- "text": "be"
- },
- {
- "id": 2451,
- "start": 814.686,
- "end": 814.776,
- "text": "the"
- },
- {
- "id": 2452,
- "start": 814.776,
- "end": 815.726,
- "text": "case."
- },
- {
- "id": 2453,
- "start": 815.726,
- "end": 815.776,
- "text": "I"
- },
- {
- "id": 2454,
- "start": 815.776,
- "end": 815.896,
- "text": "mean,"
- },
- {
- "id": 2455,
- "start": 815.896,
- "end": 815.976,
- "text": "the"
- },
- {
- "id": 2456,
- "start": 815.976,
- "end": 816.136,
- "text": "Like"
- },
- {
- "id": 2457,
- "start": 816.136,
- "end": 816.326,
- "text": "button"
- },
- {
- "id": 2458,
- "start": 816.326,
- "end": 816.446,
- "text": "was"
- },
- {
- "id": 2459,
- "start": 816.446,
- "end": 816.636,
- "text": "one"
- },
- {
- "id": 2460,
- "start": 816.636,
- "end": 816.706,
- "text": "of"
- },
- {
- "id": 2461,
- "start": 816.706,
- "end": 816.766,
- "text": "a"
- },
- {
- "id": 2462,
- "start": 816.766,
- "end": 817.196,
- "text": "thousand"
- },
- {
- "id": 2463,
- "start": 817.196,
- "end": 817.436,
- "text": "things"
- },
- {
- "id": 2464,
- "start": 817.436,
- "end": 817.536,
- "text": "that"
- },
- {
- "id": 2465,
- "start": 817.536,
- "end": 817.576,
- "text": "I"
- },
- {
- "id": 2466,
- "start": 817.576,
- "end": 817.806,
- "text": "worked"
- },
- {
- "id": 2467,
- "start": 817.806,
- "end": 818.026,
- "text": "on"
- },
- {
- "id": 2468,
- "start": 818.1393333333334,
- "end": 818.3526666666667,
- "text": "at"
- },
- {
- "id": 2469,
- "start": 818.4726666666668,
- "end": 818.6793333333334,
- "text": "Facebook."
- },
- {
- "id": 2470,
- "start": 818.806,
- "end": 819.006,
- "text": "But"
- },
- {
- "id": 2471,
- "start": 819.006,
- "end": 819.066,
- "text": "it"
- },
- {
- "id": 2472,
- "start": 819.066,
- "end": 819.386,
- "text": "somehow"
- },
- {
- "id": 2473,
- "start": 819.386,
- "end": 819.616,
- "text": "ended"
- },
- {
- "id": 2474,
- "start": 819.616,
- "end": 819.726,
- "text": "up"
- },
- {
- "id": 2475,
- "start": 819.726,
- "end": 820.046,
- "text": "being"
- },
- {
- "id": 2476,
- "start": 820.046,
- "end": 820.266,
- "text": "this"
- },
- {
- "id": 2477,
- "start": 820.266,
- "end": 820.766,
- "text": "cultural"
- },
- {
- "id": 2478,
- "start": 820.766,
- "end": 821.576,
- "text": "staple"
- },
- {
- "id": 2479,
- "start": 821.576,
- "end": 821.966,
- "text": "and"
- },
- {
- "id": 2480,
- "start": 821.966,
- "end": 822.086,
- "text": "it"
- },
- {
- "id": 2481,
- "start": 822.086,
- "end": 822.426,
- "text": "became"
- },
- {
- "id": 2482,
- "start": 822.426,
- "end": 822.576,
- "text": "like"
- },
- {
- "id": 2483,
- "start": 822.576,
- "end": 823.116,
- "text": "a"
- },
- {
- "id": 2484,
- "start": 823.116,
- "end": 823.676,
- "text": "driving"
- },
- {
- "id": 2485,
- "start": 823.676,
- "end": 824.116,
- "text": "force"
- },
- {
- "id": 2486,
- "start": 824.116,
- "end": 824.496,
- "text": "for"
- },
- {
- "id": 2487,
- "start": 824.496,
- "end": 824.606,
- "text": "the"
- },
- {
- "id": 2488,
- "start": 824.606,
- "end": 825.426,
- "text": "product."
- },
- {
- "id": 2489,
- "start": 825.426,
- "end": 825.866,
- "text": "Was"
- },
- {
- "id": 2490,
- "start": 825.866,
- "end": 825.996,
- "text": "it"
- },
- {
- "id": 2491,
- "start": 825.996,
- "end": 826.366,
- "text": "something"
- },
- {
- "id": 2492,
- "start": 826.366,
- "end": 826.516,
- "text": "that"
- },
- {
- "id": 2493,
- "start": 826.516,
- "end": 826.716,
- "text": "you"
- },
- {
- "id": 2494,
- "start": 826.716,
- "end": 826.886,
- "text": "all"
- },
- {
- "id": 2495,
- "start": 826.886,
- "end": 827.436,
- "text": "considered"
- },
- {
- "id": 2496,
- "start": 827.436,
- "end": 827.536,
- "text": "at"
- },
- {
- "id": 2497,
- "start": 827.536,
- "end": 827.626,
- "text": "the"
- },
- {
- "id": 2498,
- "start": 827.626,
- "end": 828.166,
- "text": "time"
- },
- {
- "id": 2499,
- "start": 828.3910000000001,
- "end": 828.821,
- "text": "–"
- },
- {
- "id": 2500,
- "start": 829.156,
- "end": 829.476,
- "text": "there’s"
- },
- {
- "id": 2501,
- "start": 829.476,
- "end": 829.636,
- "text": "been"
- },
- {
- "id": 2502,
- "start": 829.636,
- "end": 829.856,
- "text": "much"
- },
- {
- "id": 2503,
- "start": 829.856,
- "end": 830.036,
- "text": "more"
- },
- {
- "id": 2504,
- "start": 830.036,
- "end": 830.396,
- "text": "recent"
- },
- {
- "id": 2505,
- "start": 830.396,
- "end": 831.156,
- "text": "criticism"
- },
- {
- "id": 2506,
- "start": 831.156,
- "end": 831.606,
- "text": "of"
- },
- {
- "id": 2507,
- "start": 831.606,
- "end": 832.066,
- "text": "things"
- },
- {
- "id": 2508,
- "start": 832.066,
- "end": 832.256,
- "text": "like"
- },
- {
- "id": 2509,
- "start": 832.256,
- "end": 832.426,
- "text": "the"
- },
- {
- "id": 2510,
- "start": 832.426,
- "end": 832.726,
- "text": "Like"
- },
- {
- "id": 2511,
- "start": 832.726,
- "end": 833.096,
- "text": "button"
- },
- {
- "id": 2512,
- "start": 833.096,
- "end": 833.546,
- "text": "and"
- },
- {
- "id": 2513,
- "start": 833.546,
- "end": 833.666,
- "text": "the"
- },
- {
- "id": 2514,
- "start": 833.666,
- "end": 833.836,
- "text": "sort"
- },
- {
- "id": 2515,
- "start": 833.836,
- "end": 833.926,
- "text": "of"
- },
- {
- "id": 2516,
- "start": 833.926,
- "end": 834.476,
- "text": "addictive"
- },
- {
- "id": 2517,
- "start": 834.476,
- "end": 835.246,
- "text": "nature"
- },
- {
- "id": 2518,
- "start": 835.246,
- "end": 836.296,
- "text": "of"
- },
- {
- "id": 2519,
- "start": 836.296,
- "end": 836.716,
- "text": "social"
- },
- {
- "id": 2520,
- "start": 836.716,
- "end": 837.126,
- "text": "media"
- },
- {
- "id": 2521,
- "start": 837.126,
- "end": 837.516,
- "text": "and"
- },
- {
- "id": 2522,
- "start": 837.516,
- "end": 838.066,
- "text": "Facebook"
- },
- {
- "id": 2523,
- "start": 838.066,
- "end": 838.156,
- "text": "in"
- },
- {
- "id": 2524,
- "start": 838.156,
- "end": 838.726,
- "text": "particular,"
- },
- {
- "id": 2525,
- "start": 838.441,
- "end": 838.851,
- "text": "and"
- },
- {
- "id": 2526,
- "start": 838.726,
- "end": 838.976,
- "text": "that"
- },
- {
- "id": 2527,
- "start": 838.976,
- "end": 839.436,
- "text": "the"
- },
- {
- "id": 2528,
- "start": 839.436,
- "end": 839.836,
- "text": "Like"
- },
- {
- "id": 2529,
- "start": 839.836,
- "end": 840.176,
- "text": "button"
- },
- {
- "id": 2530,
- "start": 840.176,
- "end": 841.376,
- "text": "is"
- },
- {
- "id": 2531,
- "start": 841.376,
- "end": 841.436,
- "text": "a"
- },
- {
- "id": 2532,
- "start": 841.436,
- "end": 842.396,
- "text": "dopamine"
- },
- {
- "id": 2533,
- "start": 842.396,
- "end": 843.166,
- "text": "release"
- },
- {
- "id": 2534,
- "start": 843.166,
- "end": 843.606,
- "text": "every"
- },
- {
- "id": 2535,
- "start": 843.606,
- "end": 843.916,
- "text": "time"
- },
- {
- "id": 2536,
- "start": 843.916,
- "end": 844.016,
- "text": "you"
- },
- {
- "id": 2537,
- "start": 844.016,
- "end": 844.276,
- "text": "click"
- },
- {
- "id": 2538,
- "start": 844.276,
- "end": 844.426,
- "text": "on"
- },
- {
- "id": 2539,
- "start": 844.426,
- "end": 844.796,
- "text": "something"
- },
- {
- "id": 2540,
- "start": 844.796,
- "end": 844.916,
- "text": "or"
- },
- {
- "id": 2541,
- "start": 844.916,
- "end": 845.106,
- "text": "every"
- },
- {
- "id": 2542,
- "start": 845.106,
- "end": 845.346,
- "text": "time"
- },
- {
- "id": 2543,
- "start": 845.346,
- "end": 845.436,
- "text": "you"
- },
- {
- "id": 2544,
- "start": 845.436,
- "end": 845.576,
- "text": "get"
- },
- {
- "id": 2545,
- "start": 845.576,
- "end": 845.636,
- "text": "a"
- },
- {
- "id": 2546,
- "start": 845.8645,
- "end": 846.0895,
- "text": "Like."
- },
- {
- "id": 2547,
- "start": 846.153,
- "end": 846.543,
- "text": "Were"
- },
- {
- "id": 2548,
- "start": 846.543,
- "end": 846.663,
- "text": "you"
- },
- {
- "id": 2549,
- "start": 846.663,
- "end": 846.963,
- "text": "guys"
- },
- {
- "id": 2550,
- "start": 846.963,
- "end": 847.303,
- "text": "thinking"
- },
- {
- "id": 2551,
- "start": 847.303,
- "end": 847.393,
- "text": "at"
- },
- {
- "id": 2552,
- "start": 847.393,
- "end": 847.483,
- "text": "the"
- },
- {
- "id": 2553,
- "start": 847.483,
- "end": 847.853,
- "text": "time"
- },
- {
- "id": 2554,
- "start": 847.853,
- "end": 848.143,
- "text": "about"
- },
- {
- "id": 2555,
- "start": 848.143,
- "end": 848.323,
- "text": "how"
- },
- {
- "id": 2556,
- "start": 848.323,
- "end": 848.433,
- "text": "do"
- },
- {
- "id": 2557,
- "start": 848.433,
- "end": 848.793,
- "text": "we"
- },
- {
- "id": 2558,
- "start": 848.793,
- "end": 848.993,
- "text": "kind"
- },
- {
- "id": 2559,
- "start": 848.993,
- "end": 849.073,
- "text": "of"
- },
- {
- "id": 2560,
- "start": 849.073,
- "end": 849.453,
- "text": "addict"
- },
- {
- "id": 2561,
- "start": 849.443,
- "end": 849.923,
- "text": "people?"
- },
- {
- "id": 2562,
- "start": 850.5379999999998,
- "end": 850.8330000000003,
- "text": "No."
- },
- {
- "id": 2563,
- "start": 851.633,
- "end": 851.743,
- "text": "There"
- },
- {
- "id": 2564,
- "start": 851.743,
- "end": 851.873,
- "text": "was"
- },
- {
- "id": 2565,
- "start": 851.873,
- "end": 852.263,
- "text": "no"
- },
- {
- "id": 2566,
- "start": 852.263,
- "end": 852.983,
- "text": "addiction"
- },
- {
- "id": 2567,
- "start": 852.983,
- "end": 853.413,
- "text": "metric"
- },
- {
- "id": 2568,
- "start": 853.413,
- "end": 853.493,
- "text": "or"
- },
- {
- "id": 2569,
- "start": 853.493,
- "end": 853.913,
- "text": "anything"
- },
- {
- "id": 2570,
- "start": 853.913,
- "end": 854.043,
- "text": "to"
- },
- {
- "id": 2571,
- "start": 854.043,
- "end": 854.203,
- "text": "that"
- },
- {
- "id": 2572,
- "start": 854.433,
- "end": 854.593,
- "text": "extent."
- },
- {
- "id": 2573,
- "start": 854.823,
- "end": 854.983,
- "text": "But"
- },
- {
- "id": 2574,
- "start": 854.983,
- "end": 855.143,
- "text": "was"
- },
- {
- "id": 2575,
- "start": 855.143,
- "end": 855.823,
- "text": "engagement"
- },
- {
- "id": 2576,
- "start": 855.823,
- "end": 856.273,
- "text": "addiction"
- },
- {
- "id": 2577,
- "start": 856.273,
- "end": 856.373,
- "text": "to"
- },
- {
- "id": 2578,
- "start": 856.373,
- "end": 856.573,
- "text": "some"
- },
- {
- "id": 2579,
- "start": 856.8196666666668,
- "end": 856.9663333333333,
- "text": "degree?"
- },
- {
- "id": 2580,
- "start": 857.2663333333333,
- "end": 857.3596666666666,
- "text": "No."
- },
- {
- "id": 2581,
- "start": 857.713,
- "end": 857.753,
- "text": "I"
- },
- {
- "id": 2582,
- "start": 857.753,
- "end": 858.033,
- "text": "mean,"
- },
- {
- "id": 2583,
- "start": 858.1930000000001,
- "end": 858.388,
- "text": "again,"
- },
- {
- "id": 2584,
- "start": 858.633,
- "end": 858.743,
- "text": "it"
- },
- {
- "id": 2585,
- "start": 858.743,
- "end": 859.143,
- "text": "presumes"
- },
- {
- "id": 2586,
- "start": 859.143,
- "end": 859.263,
- "text": "that"
- },
- {
- "id": 2587,
- "start": 859.263,
- "end": 859.553,
- "text": "people"
- },
- {
- "id": 2588,
- "start": 859.553,
- "end": 859.723,
- "text": "are"
- },
- {
- "id": 2589,
- "start": 859.723,
- "end": 860.393,
- "text": "finding"
- },
- {
- "id": 2590,
- "start": 860.393,
- "end": 860.553,
- "text": "that"
- },
- {
- "id": 2591,
- "start": 860.553,
- "end": 860.643,
- "text": "the"
- },
- {
- "id": 2592,
- "start": 860.643,
- "end": 860.963,
- "text": "product"
- },
- {
- "id": 2593,
- "start": 860.963,
- "end": 861.103,
- "text": "is"
- },
- {
- "id": 2594,
- "start": 861.103,
- "end": 861.503,
- "text": "relevant"
- },
- {
- "id": 2595,
- "start": 861.503,
- "end": 861.603,
- "text": "to"
- },
- {
- "id": 2596,
- "start": 861.603,
- "end": 862.353,
- "text": "them."
- },
- {
- "id": 2597,
- "start": 862.353,
- "end": 863.613,
- "text": "And"
- },
- {
- "id": 2598,
- "start": 863.613,
- "end": 863.763,
- "text": "what"
- },
- {
- "id": 2599,
- "start": 863.763,
- "end": 863.923,
- "text": "we"
- },
- {
- "id": 2600,
- "start": 863.923,
- "end": 864.083,
- "text": "were"
- },
- {
- "id": 2601,
- "start": 864.083,
- "end": 864.513,
- "text": "focused"
- },
- {
- "id": 2602,
- "start": 864.513,
- "end": 865.183,
- "text": "on"
- },
- {
- "id": 2603,
- "start": 865.183,
- "end": 865.333,
- "text": "was:"
- },
- {
- "id": 2604,
- "start": 865.333,
- "end": 865.453,
- "text": "How"
- },
- {
- "id": 2605,
- "start": 865.453,
- "end": 865.543,
- "text": "do"
- },
- {
- "id": 2606,
- "start": 865.543,
- "end": 865.643,
- "text": "we"
- },
- {
- "id": 2607,
- "start": 865.643,
- "end": 865.853,
- "text": "make"
- },
- {
- "id": 2608,
- "start": 865.853,
- "end": 865.923,
- "text": "a"
- },
- {
- "id": 2609,
- "start": 865.923,
- "end": 866.493,
- "text": "product"
- },
- {
- "id": 2610,
- "start": 866.493,
- "end": 866.823,
- "text": "globally"
- },
- {
- "id": 2611,
- "start": 866.823,
- "end": 867.683,
- "text": "relevant?"
- },
- {
- "id": 2612,
- "start": 867.683,
- "end": 868.113,
- "text": "Again,"
- },
- {
- "id": 2613,
- "start": 868.113,
- "end": 868.303,
- "text": "this"
- },
- {
- "id": 2614,
- "start": 868.303,
- "end": 868.923,
- "text": "is"
- },
- {
- "id": 2615,
- "start": 868.703,
- "end": 869.143,
- "text": "an"
- },
- {
- "id": 2616,
- "start": 869.053,
- "end": 869.328,
- "text": "era"
- },
- {
- "id": 2617,
- "start": 869.403,
- "end": 869.513,
- "text": "in"
- },
- {
- "id": 2618,
- "start": 869.513,
- "end": 869.973,
- "text": "which"
- },
- {
- "id": 2619,
- "start": 870.4230000000002,
- "end": 870.9230000000002,
- "text": "the"
- },
- {
- "id": 2620,
- "start": 871.333,
- "end": 871.873,
- "text": "smartphone"
- },
- {
- "id": 2621,
- "start": 871.603,
- "end": 871.913,
- "text": "–"
- },
- {
- "id": 2622,
- "start": 871.873,
- "end": 871.953,
- "text": "it"
- },
- {
- "id": 2623,
- "start": 871.953,
- "end": 872.053,
- "text": "was"
- },
- {
- "id": 2624,
- "start": 872.053,
- "end": 872.193,
- "text": "not"
- },
- {
- "id": 2625,
- "start": 872.193,
- "end": 872.433,
- "text": "clear"
- },
- {
- "id": 2626,
- "start": 872.433,
- "end": 872.663,
- "text": "yet,"
- },
- {
- "id": 2627,
- "start": 872.663,
- "end": 872.843,
- "text": "like,"
- },
- {
- "id": 2628,
- "start": 872.843,
- "end": 873.143,
- "text": "how"
- },
- {
- "id": 2629,
- "start": 873.143,
- "end": 873.653,
- "text": "much"
- },
- {
- "id": 2630,
- "start": 873.653,
- "end": 874.113,
- "text": "larger"
- },
- {
- "id": 2631,
- "start": 874.113,
- "end": 874.233,
- "text": "the"
- },
- {
- "id": 2632,
- "start": 874.233,
- "end": 874.533,
- "text": "total"
- },
- {
- "id": 2633,
- "start": 874.533,
- "end": 874.963,
- "text": "addressable"
- },
- {
- "id": 2634,
- "start": 874.963,
- "end": 875.313,
- "text": "market"
- },
- {
- "id": 2635,
- "start": 875.313,
- "end": 875.433,
- "text": "would"
- },
- {
- "id": 2636,
- "start": 875.433,
- "end": 876.173,
- "text": "grow"
- },
- {
- "id": 2637,
- "start": 876.173,
- "end": 876.323,
- "text": "as"
- },
- {
- "id": 2638,
- "start": 876.323,
- "end": 876.373,
- "text": "a"
- },
- {
- "id": 2639,
- "start": 876.373,
- "end": 876.723,
- "text": "result"
- },
- {
- "id": 2640,
- "start": 876.723,
- "end": 876.823,
- "text": "of"
- },
- {
- "id": 2641,
- "start": 876.823,
- "end": 877.093,
- "text": "the"
- },
- {
- "id": 2642,
- "start": 877.093,
- "end": 879.413,
- "text": "smartphone."
- },
- {
- "id": 2643,
- "start": 879.413,
- "end": 879.513,
- "text": "It"
- },
- {
- "id": 2644,
- "start": 879.513,
- "end": 879.613,
- "text": "was"
- },
- {
- "id": 2645,
- "start": 879.613,
- "end": 879.743,
- "text": "not"
- },
- {
- "id": 2646,
- "start": 879.743,
- "end": 880.063,
- "text": "clear"
- },
- {
- "id": 2647,
- "start": 880.063,
- "end": 880.223,
- "text": "like"
- },
- {
- "id": 2648,
- "start": 880.223,
- "end": 880.523,
- "text": "how"
- },
- {
- "id": 2649,
- "start": 880.523,
- "end": 880.893,
- "text": "Facebook"
- },
- {
- "id": 2650,
- "start": 880.893,
- "end": 880.993,
- "text": "would"
- },
- {
- "id": 2651,
- "start": 880.993,
- "end": 881.533,
- "text": "survive"
- },
- {
- "id": 2652,
- "start": 881.533,
- "end": 882.093,
- "text": "inevitable"
- },
- {
- "id": 2653,
- "start": 882.093,
- "end": 882.723,
- "text": "competition"
- },
- {
- "id": 2654,
- "start": 882.723,
- "end": 883.243,
- "text": "from"
- },
- {
- "id": 2655,
- "start": 883.243,
- "end": 884.213,
- "text": "Google"
- },
- {
- "id": 2656,
- "start": 884.213,
- "end": 884.633,
- "text": "and"
- },
- {
- "id": 2657,
- "start": 884.633,
- "end": 884.913,
- "text": "all"
- },
- {
- "id": 2658,
- "start": 884.913,
- "end": 886.373,
- "text": "the"
- },
- {
- "id": 2659,
- "start": 886.373,
- "end": 886.723,
- "text": "whispers"
- },
- {
- "id": 2660,
- "start": 886.723,
- "end": 886.903,
- "text": "we"
- },
- {
- "id": 2661,
- "start": 886.903,
- "end": 887.513,
- "text": "heard"
- },
- {
- "id": 2662,
- "start": 887.513,
- "end": 887.793,
- "text": "about"
- },
- {
- "id": 2663,
- "start": 887.793,
- "end": 887.953,
- "text": "them"
- },
- {
- "id": 2664,
- "start": 887.953,
- "end": 888.433,
- "text": "launching"
- },
- {
- "id": 2665,
- "start": 888.433,
- "end": 888.533,
- "text": "a"
- },
- {
- "id": 2666,
- "start": 888.533,
- "end": 888.923,
- "text": "competing"
- },
- {
- "id": 2667,
- "start": 888.923,
- "end": 889.633,
- "text": "product"
- },
- {
- "id": 2668,
- "start": 889.633,
- "end": 889.803,
- "text": "and"
- },
- {
- "id": 2669,
- "start": 889.803,
- "end": 889.873,
- "text": "the"
- },
- {
- "id": 2670,
- "start": 889.873,
- "end": 890.203,
- "text": "sheer"
- },
- {
- "id": 2671,
- "start": 890.203,
- "end": 890.403,
- "text": "amount"
- },
- {
- "id": 2672,
- "start": 890.403,
- "end": 890.473,
- "text": "of"
- },
- {
- "id": 2673,
- "start": 890.473,
- "end": 891.013,
- "text": "distribution"
- },
- {
- "id": 2674,
- "start": 891.013,
- "end": 891.133,
- "text": "that"
- },
- {
- "id": 2675,
- "start": 891.133,
- "end": 891.253,
- "text": "they"
- },
- {
- "id": 2676,
- "start": 891.963,
- "end": 892.1380000000004,
- "text": "enjoyed."
- },
- {
- "id": 2677,
- "start": 892.793,
- "end": 893.023,
- "text": "For"
- },
- {
- "id": 2678,
- "start": 893.023,
- "end": 893.793,
- "text": "us,"
- },
- {
- "id": 2679,
- "start": 893.793,
- "end": 893.893,
- "text": "the"
- },
- {
- "id": 2680,
- "start": 893.893,
- "end": 894.103,
- "text": "key"
- },
- {
- "id": 2681,
- "start": 894.103,
- "end": 894.523,
- "text": "focus"
- },
- {
- "id": 2682,
- "start": 894.523,
- "end": 895.413,
- "text": "was"
- },
- {
- "id": 2683,
- "start": 895.413,
- "end": 895.693,
- "text": "building"
- },
- {
- "id": 2684,
- "start": 895.693,
- "end": 895.743,
- "text": "a"
- },
- {
- "id": 2685,
- "start": 895.743,
- "end": 896.063,
- "text": "company"
- },
- {
- "id": 2686,
- "start": 895.855,
- "end": 896.133,
- "text": "that"
- },
- {
- "id": 2687,
- "start": 895.9670000000001,
- "end": 896.203,
- "text": "was"
- },
- {
- "id": 2688,
- "start": 896.079,
- "end": 896.273,
- "text": "going"
- },
- {
- "id": 2689,
- "start": 896.191,
- "end": 896.343,
- "text": "to"
- },
- {
- "id": 2690,
- "start": 896.303,
- "end": 896.413,
- "text": "be"
- },
- {
- "id": 2691,
- "start": 896.7580000000002,
- "end": 896.9080000000001,
- "text": "relevant"
- },
- {
- "id": 2692,
- "start": 897.213,
- "end": 897.403,
- "text": "and"
- },
- {
- "id": 2693,
- "start": 897.403,
- "end": 897.603,
- "text": "that"
- },
- {
- "id": 2694,
- "start": 897.603,
- "end": 897.803,
- "text": "was"
- },
- {
- "id": 2695,
- "start": 897.803,
- "end": 898.613,
- "text": "not"
- },
- {
- "id": 2696,
- "start": 898.613,
- "end": 898.763,
- "text": "a"
- },
- {
- "id": 2697,
- "start": 898.763,
- "end": 899.203,
- "text": "foregone"
- },
- {
- "id": 2698,
- "start": 899.508,
- "end": 899.8979999999999,
- "text": "conclusion,"
- },
- {
- "id": 2699,
- "start": 900.253,
- "end": 900.593,
- "text": "certainly"
- },
- {
- "id": 2700,
- "start": 900.593,
- "end": 900.773,
- "text": "not"
- },
- {
- "id": 2701,
- "start": 900.773,
- "end": 900.833,
- "text": "in"
- },
- {
- "id": 2702,
- "start": 900.833,
- "end": 900.903,
- "text": "the"
- },
- {
- "id": 2703,
- "start": 900.903,
- "end": 901.123,
- "text": "time"
- },
- {
- "id": 2704,
- "start": 901.123,
- "end": 901.213,
- "text": "that"
- },
- {
- "id": 2705,
- "start": 901.168,
- "end": 901.268,
- "text": "we"
- },
- {
- "id": 2706,
- "start": 901.213,
- "end": 901.323,
- "text": "were"
- },
- {
- "id": 2707,
- "start": 901.323,
- "end": 901.763,
- "text": "developing"
- },
- {
- "id": 2708,
- "start": 901.763,
- "end": 901.923,
- "text": "those"
- },
- {
- "id": 2709,
- "start": 902.0796666666666,
- "end": 902.223,
- "text": "products."
- },
- {
- "id": 2710,
- "start": 902.3963333333334,
- "end": 902.523,
- "text": "…"
- },
- {
- "id": 2711,
- "start": 902.713,
- "end": 902.823,
- "text": "Do"
- },
- {
- "id": 2712,
- "start": 902.823,
- "end": 902.903,
- "text": "you"
- },
- {
- "id": 2713,
- "start": 902.903,
- "end": 903.113,
- "text": "look"
- },
- {
- "id": 2714,
- "start": 903.113,
- "end": 903.403,
- "text": "back"
- },
- {
- "id": 2715,
- "start": 903.403,
- "end": 903.513,
- "text": "and"
- },
- {
- "id": 2716,
- "start": 903.513,
- "end": 903.653,
- "text": "it’s"
- },
- {
- "id": 2717,
- "start": 903.653,
- "end": 903.853,
- "text": "sort"
- },
- {
- "id": 2718,
- "start": 903.853,
- "end": 903.943,
- "text": "of"
- },
- {
- "id": 2719,
- "start": 903.943,
- "end": 904.153,
- "text": "like,"
- },
- {
- "id": 2720,
- "start": 904.153,
- "end": 904.363,
- "text": "wow,"
- },
- {
- "id": 2721,
- "start": 904.363,
- "end": 904.483,
- "text": "be"
- },
- {
- "id": 2722,
- "start": 904.483,
- "end": 904.883,
- "text": "careful"
- },
- {
- "id": 2723,
- "start": 904.883,
- "end": 905.053,
- "text": "what"
- },
- {
- "id": 2724,
- "start": 905.053,
- "end": 905.143,
- "text": "you"
- },
- {
- "id": 2725,
- "start": 905.143,
- "end": 905.393,
- "text": "wish"
- },
- {
- "id": 2726,
- "start": 905.393,
- "end": 905.733,
- "text": "for"
- },
- {
- "id": 2727,
- "start": 905.733,
- "end": 906.093,
- "text": "here"
- },
- {
- "id": 2728,
- "start": 906.093,
- "end": 906.223,
- "text": "in"
- },
- {
- "id": 2729,
- "start": 906.223,
- "end": 906.543,
- "text": "terms"
- },
- {
- "id": 2730,
- "start": 906.543,
- "end": 906.643,
- "text": "of"
- },
- {
- "id": 2731,
- "start": 906.643,
- "end": 906.973,
- "text": "wanting"
- },
- {
- "id": 2732,
- "start": 907.133,
- "end": 907.4679999999998,
- "text": "to"
- },
- {
- "id": 2733,
- "start": 907.623,
- "end": 907.963,
- "text": "be"
- },
- {
- "id": 2734,
- "start": 907.963,
- "end": 908.323,
- "text": "the"
- },
- {
- "id": 2735,
- "start": 908.323,
- "end": 908.763,
- "text": "social"
- },
- {
- "id": 2736,
- "start": 908.763,
- "end": 909.673,
- "text": "network"
- },
- {
- "id": 2737,
- "start": 909.673,
- "end": 910.063,
- "text": "that"
- },
- {
- "id": 2738,
- "start": 910.063,
- "end": 910.493,
- "text": "connects"
- },
- {
- "id": 2739,
- "start": 910.493,
- "end": 911.033,
- "text": "everybody?"
- },
- {
- "id": 2740,
- "start": 911.033,
- "end": 911.673,
- "text": "That"
- },
- {
- "id": 2741,
- "start": 911.673,
- "end": 911.863,
- "text": "you"
- },
- {
- "id": 2742,
- "start": 911.863,
- "end": 912.163,
- "text": "didn’t"
- },
- {
- "id": 2743,
- "start": 912.163,
- "end": 912.763,
- "text": "necessarily"
- },
- {
- "id": 2744,
- "start": 912.763,
- "end": 912.993,
- "text": "think"
- },
- {
- "id": 2745,
- "start": 912.993,
- "end": 913.263,
- "text": "about"
- },
- {
- "id": 2746,
- "start": 913.263,
- "end": 913.353,
- "text": "the"
- },
- {
- "id": 2747,
- "start": 913.353,
- "end": 913.833,
- "text": "attendant"
- },
- {
- "id": 2748,
- "start": 913.833,
- "end": 914.173,
- "text": "risks"
- },
- {
- "id": 2749,
- "start": 914.173,
- "end": 914.253,
- "text": "of"
- },
- {
- "id": 2750,
- "start": 914.253,
- "end": 914.423,
- "text": "what"
- },
- {
- "id": 2751,
- "start": 914.423,
- "end": 914.503,
- "text": "it"
- },
- {
- "id": 2752,
- "start": 914.503,
- "end": 914.763,
- "text": "means"
- },
- {
- "id": 2753,
- "start": 914.763,
- "end": 914.873,
- "text": "to"
- },
- {
- "id": 2754,
- "start": 914.873,
- "end": 915.533,
- "text": "connect"
- },
- {
- "id": 2755,
- "start": 915.533,
- "end": 916.243,
- "text": "2.2"
- },
- {
- "id": 2756,
- "start": 915.903,
- "end": 916.523,
- "text": "billion"
- },
- {
- "id": 2757,
- "start": 916.4929999999999,
- "end": 916.9196666666666,
- "text": "people?"
- },
- {
- "id": 2758,
- "start": 917.0830000000001,
- "end": 917.3163333333333,
- "text": "Yeah."
- },
- {
- "id": 2759,
- "start": 917.673,
- "end": 917.713,
- "text": "I"
- },
- {
- "id": 2760,
- "start": 917.713,
- "end": 919.653,
- "text": "mean,"
- },
- {
- "id": 2761,
- "start": 919.653,
- "end": 919.953,
- "text": "there’s"
- },
- {
- "id": 2762,
- "start": 919.953,
- "end": 920.033,
- "text": "a"
- },
- {
- "id": 2763,
- "start": 920.033,
- "end": 920.203,
- "text": "lot"
- },
- {
- "id": 2764,
- "start": 920.203,
- "end": 920.263,
- "text": "of"
- },
- {
- "id": 2765,
- "start": 920.263,
- "end": 920.703,
- "text": "mistakes"
- },
- {
- "id": 2766,
- "start": 920.703,
- "end": 920.803,
- "text": "that"
- },
- {
- "id": 2767,
- "start": 920.803,
- "end": 920.913,
- "text": "were"
- },
- {
- "id": 2768,
- "start": 920.913,
- "end": 921.083,
- "text": "made"
- },
- {
- "id": 2769,
- "start": 921.083,
- "end": 921.353,
- "text": "along"
- },
- {
- "id": 2770,
- "start": 921.353,
- "end": 921.433,
- "text": "the"
- },
- {
- "id": 2771,
- "start": 921.433,
- "end": 922.553,
- "text": "way"
- },
- {
- "id": 2772,
- "start": 922.553,
- "end": 923.413,
- "text": "that"
- },
- {
- "id": 2773,
- "start": 923.413,
- "end": 923.603,
- "text": "can"
- },
- {
- "id": 2774,
- "start": 923.603,
- "end": 924.243,
- "text": "be,"
- },
- {
- "id": 2775,
- "start": 924.243,
- "end": 924.353,
- "text": "you"
- },
- {
- "id": 2776,
- "start": 924.353,
- "end": 924.673,
- "text": "know,"
- },
- {
- "id": 2777,
- "start": 924.673,
- "end": 924.863,
- "text": "that"
- },
- {
- "id": 2778,
- "start": 924.863,
- "end": 924.953,
- "text": "are"
- },
- {
- "id": 2779,
- "start": 924.953,
- "end": 925.223,
- "text": "clearly"
- },
- {
- "id": 2780,
- "start": 925.673,
- "end": 925.8530000000001,
- "text": "regrettable."
- },
- {
- "id": 2781,
- "start": 926.393,
- "end": 926.483,
- "text": "A"
- },
- {
- "id": 2782,
- "start": 926.483,
- "end": 926.633,
- "text": "lot"
- },
- {
- "id": 2783,
- "start": 926.633,
- "end": 926.703,
- "text": "of"
- },
- {
- "id": 2784,
- "start": 926.703,
- "end": 926.903,
- "text": "edge"
- },
- {
- "id": 2785,
- "start": 926.903,
- "end": 927.303,
- "text": "cases"
- },
- {
- "id": 2786,
- "start": 927.148,
- "end": 927.613,
- "text": "and"
- },
- {
- "id": 2787,
- "start": 927.393,
- "end": 927.923,
- "text": "scenarios"
- },
- {
- "id": 2788,
- "start": 927.923,
- "end": 928.103,
- "text": "that"
- },
- {
- "id": 2789,
- "start": 928.103,
- "end": 928.233,
- "text": "we"
- },
- {
- "id": 2790,
- "start": 928.233,
- "end": 928.513,
- "text": "certainly"
- },
- {
- "id": 2791,
- "start": 928.433,
- "end": 928.8679999999999,
- "text": "didn’t"
- },
- {
- "id": 2792,
- "start": 928.633,
- "end": 929.223,
- "text": "anticipate."
- },
- {
- "id": 2793,
- "start": 929.5596666666668,
- "end": 930.1096666666667,
- "text": "We"
- },
- {
- "id": 2794,
- "start": 930.4863333333335,
- "end": 930.9963333333335,
- "text": "didn’t"
- },
- {
- "id": 2795,
- "start": 931.413,
- "end": 931.883,
- "text": "anticipate"
- },
- {
- "id": 2796,
- "start": 931.883,
- "end": 932.013,
- "text": "that"
- },
- {
- "id": 2797,
- "start": 932.013,
- "end": 932.233,
- "text": "foreign"
- },
- {
- "id": 2798,
- "start": 932.233,
- "end": 932.533,
- "text": "actors"
- },
- {
- "id": 2799,
- "start": 932.533,
- "end": 932.643,
- "text": "would"
- },
- {
- "id": 2800,
- "start": 932.643,
- "end": 933.853,
- "text": "use"
- },
- {
- "id": 2801,
- "start": 933.853,
- "end": 934.673,
- "text": "Facebook"
- },
- {
- "id": 2802,
- "start": 934.673,
- "end": 934.833,
- "text": "to"
- },
- {
- "id": 2803,
- "start": 934.833,
- "end": 935.533,
- "text": "coordinate"
- },
- {
- "id": 2804,
- "start": 935.533,
- "end": 935.813,
- "text": "a"
- },
- {
- "id": 2805,
- "start": 935.813,
- "end": 937.163,
- "text": "campaign"
- },
- {
- "id": 2806,
- "start": 937.163,
- "end": 937.353,
- "text": "to"
- },
- {
- "id": 2807,
- "start": 937.353,
- "end": 937.733,
- "text": "influence"
- },
- {
- "id": 2808,
- "start": 937.733,
- "end": 937.803,
- "text": "an"
- },
- {
- "id": 2809,
- "start": 937.803,
- "end": 939.263,
- "text": "election."
- },
- {
- "id": 2810,
- "start": 939.263,
- "end": 939.423,
- "text": "But"
- },
- {
- "id": 2811,
- "start": 939.423,
- "end": 939.533,
- "text": "then"
- },
- {
- "id": 2812,
- "start": 939.533,
- "end": 939.903,
- "text": "again,"
- },
- {
- "id": 2813,
- "start": 939.903,
- "end": 940.193,
- "text": "neither"
- },
- {
- "id": 2814,
- "start": 940.193,
- "end": 940.373,
- "text": "did"
- },
- {
- "id": 2815,
- "start": 940.373,
- "end": 940.993,
- "text": "people"
- },
- {
- "id": 2816,
- "start": 940.993,
- "end": 941.673,
- "text": "in"
- },
- {
- "id": 2817,
- "start": 941.483,
- "end": 941.793,
- "text": "the"
- },
- {
- "id": 2818,
- "start": 941.733,
- "end": 942.353,
- "text": "U.S."
- },
- {
- "id": 2819,
- "start": 941.983,
- "end": 942.913,
- "text": "government"
- },
- {
- "id": 2820,
- "start": 942.913,
- "end": 943.233,
- "text": "or"
- },
- {
- "id": 2821,
- "start": 943.233,
- "end": 943.513,
- "text": "folks"
- },
- {
- "id": 2822,
- "start": 943.513,
- "end": 943.883,
- "text": "who"
- },
- {
- "id": 2823,
- "start": 943.883,
- "end": 944.273,
- "text": "similarly"
- },
- {
- "id": 2824,
- "start": 944.273,
- "end": 945.323,
- "text": "had"
- },
- {
- "id": 2825,
- "start": 945.323,
- "end": 945.433,
- "text": "the"
- },
- {
- "id": 2826,
- "start": 945.433,
- "end": 945.783,
- "text": "potential"
- },
- {
- "id": 2827,
- "start": 945.783,
- "end": 945.883,
- "text": "to"
- },
- {
- "id": 2828,
- "start": 945.883,
- "end": 946.183,
- "text": "stop"
- },
- {
- "id": 2829,
- "start": 946.183,
- "end": 947.273,
- "text": "it."
- },
- {
- "id": 2830,
- "start": 947.273,
- "end": 947.503,
- "text": "That,"
- },
- {
- "id": 2831,
- "start": 947.503,
- "end": 947.793,
- "text": "again,"
- },
- {
- "id": 2832,
- "start": 947.793,
- "end": 948.123,
- "text": "wasn’t"
- },
- {
- "id": 2833,
- "start": 948.123,
- "end": 948.303,
- "text": "like"
- },
- {
- "id": 2834,
- "start": 948.303,
- "end": 948.363,
- "text": "a"
- },
- {
- "id": 2835,
- "start": 948.518,
- "end": 948.7230000000001,
- "text": "high-level"
- },
- {
- "id": 2836,
- "start": 948.733,
- "end": 949.083,
- "text": "priority"
- },
- {
- "id": 2837,
- "start": 949.083,
- "end": 949.213,
- "text": "for"
- },
- {
- "id": 2838,
- "start": 949.213,
- "end": 949.343,
- "text": "us."
- },
- {
- "id": 2839,
- "start": 949.343,
- "end": 949.403,
- "text": "It"
- },
- {
- "id": 2840,
- "start": 949.403,
- "end": 949.593,
- "text": "wasn’t"
- },
- {
- "id": 2841,
- "start": 949.593,
- "end": 949.623,
- "text": "a"
- },
- {
- "id": 2842,
- "start": 949.623,
- "end": 950.063,
- "text": "scenario"
- },
- {
- "id": 2843,
- "start": 950.063,
- "end": 950.913,
- "text": "that"
- },
- {
- "id": 2844,
- "start": 950.913,
- "end": 951.053,
- "text": "we"
- },
- {
- "id": 2845,
- "start": 951.053,
- "end": 951.173,
- "text": "had"
- },
- {
- "id": 2846,
- "start": 951.173,
- "end": 951.363,
- "text": "really"
- },
- {
- "id": 2847,
- "start": 951.483,
- "end": 951.6496666666667,
- "text": "considered."
- },
- {
- "id": 2848,
- "start": 951.793,
- "end": 951.9363333333333,
- "text": "Instead,"
- },
- {
- "id": 2849,
- "start": 952.103,
- "end": 952.223,
- "text": "we"
- },
- {
- "id": 2850,
- "start": 952.223,
- "end": 952.343,
- "text": "were"
- },
- {
- "id": 2851,
- "start": 952.343,
- "end": 952.563,
- "text": "much"
- },
- {
- "id": 2852,
- "start": 952.563,
- "end": 952.703,
- "text": "more"
- },
- {
- "id": 2853,
- "start": 952.703,
- "end": 953.103,
- "text": "focused"
- },
- {
- "id": 2854,
- "start": 953.2579999999998,
- "end": 953.5180000000001,
- "text": "on:"
- },
- {
- "id": 2855,
- "start": 953.813,
- "end": 953.933,
- "text": "How"
- },
- {
- "id": 2856,
- "start": 953.933,
- "end": 954.023,
- "text": "do"
- },
- {
- "id": 2857,
- "start": 954.018,
- "end": 954.168,
- "text": "we"
- },
- {
- "id": 2858,
- "start": 954.103,
- "end": 954.313,
- "text": "make"
- },
- {
- "id": 2859,
- "start": 954.313,
- "end": 954.533,
- "text": "this"
- },
- {
- "id": 2860,
- "start": 954.533,
- "end": 955.043,
- "text": "product"
- },
- {
- "id": 2861,
- "start": 955.2930000000001,
- "end": 956.1780000000003,
- "text": "universally"
- },
- {
- "id": 2862,
- "start": 956.053,
- "end": 957.313,
- "text": "available,"
- },
- {
- "id": 2863,
- "start": 957.313,
- "end": 957.633,
- "text": "because"
- },
- {
- "id": 2864,
- "start": 957.633,
- "end": 957.773,
- "text": "we"
- },
- {
- "id": 2865,
- "start": 957.773,
- "end": 957.993,
- "text": "felt"
- },
- {
- "id": 2866,
- "start": 957.993,
- "end": 958.153,
- "text": "that"
- },
- {
- "id": 2867,
- "start": 958.153,
- "end": 958.273,
- "text": "the"
- },
- {
- "id": 2868,
- "start": 958.273,
- "end": 959.163,
- "text": "value,"
- },
- {
- "id": 2869,
- "start": 959.163,
- "end": 959.333,
- "text": "the"
- },
- {
- "id": 2870,
- "start": 959.333,
- "end": 959.623,
- "text": "good"
- },
- {
- "id": 2871,
- "start": 959.623,
- "end": 959.733,
- "text": "that"
- },
- {
- "id": 2872,
- "start": 959.723,
- "end": 959.893,
- "text": "it"
- },
- {
- "id": 2873,
- "start": 959.823,
- "end": 960.053,
- "text": "brought"
- },
- {
- "id": 2874,
- "start": 960.053,
- "end": 960.233,
- "text": "into"
- },
- {
- "id": 2875,
- "start": 960.233,
- "end": 960.353,
- "text": "the"
- },
- {
- "id": 2876,
- "start": 960.353,
- "end": 961.063,
- "text": "world,"
- },
- {
- "id": 2877,
- "start": 961.063,
- "end": 961.203,
- "text": "would"
- },
- {
- "id": 2878,
- "start": 961.203,
- "end": 961.493,
- "text": "far"
- },
- {
- "id": 2879,
- "start": 961.493,
- "end": 962.023,
- "text": "exceed"
- },
- {
- "id": 2880,
- "start": 962.023,
- "end": 962.213,
- "text": "these"
- },
- {
- "id": 2881,
- "start": 962.213,
- "end": 962.433,
- "text": "edge"
- },
- {
- "id": 2882,
- "start": 962.433,
- "end": 963.053,
- "text": "cases"
- },
- {
- "id": 2883,
- "start": 963.053,
- "end": 963.923,
- "text": "or"
- },
- {
- "id": 2884,
- "start": 963.923,
- "end": 964.393,
- "text": "methods"
- },
- {
- "id": 2885,
- "start": 964.393,
- "end": 964.553,
- "text": "through"
- },
- {
- "id": 2886,
- "start": 964.553,
- "end": 964.813,
- "text": "which"
- },
- {
- "id": 2887,
- "start": 964.813,
- "end": 965.143,
- "text": "people"
- },
- {
- "id": 2888,
- "start": 965.143,
- "end": 965.893,
- "text": "can"
- },
- {
- "id": 2889,
- "start": 965.893,
- "end": 966.093,
- "text": "use"
- },
- {
- "id": 2890,
- "start": 966.093,
- "end": 966.173,
- "text": "it"
- },
- {
- "id": 2891,
- "start": 966.173,
- "end": 966.273,
- "text": "for"
- },
- {
- "id": 2892,
- "start": 966.273,
- "end": 967.408,
- "text": "evil."
- },
- {
- "id": 2893,
- "start": 967.408,
- "end": 967.898,
- "text": "So"
- },
- {
- "id": 2894,
- "start": 967.898,
- "end": 968.268,
- "text": "was"
- },
- {
- "id": 2895,
- "start": 968.268,
- "end": 968.538,
- "text": "there"
- },
- {
- "id": 2896,
- "start": 968.403,
- "end": 968.818,
- "text": "a"
- },
- {
- "id": 2897,
- "start": 968.538,
- "end": 969.098,
- "text": "concern"
- },
- {
- "id": 2898,
- "start": 969.098,
- "end": 969.198,
- "text": "at"
- },
- {
- "id": 2899,
- "start": 969.198,
- "end": 969.288,
- "text": "the"
- },
- {
- "id": 2900,
- "start": 969.288,
- "end": 969.728,
- "text": "time"
- },
- {
- "id": 2901,
- "start": 969.728,
- "end": 969.988,
- "text": "because"
- },
- {
- "id": 2902,
- "start": 970.2020000000001,
- "end": 970.5440000000001,
- "text": "[in]"
- },
- {
- "id": 2903,
- "start": 970.676,
- "end": 971.1000000000001,
- "text": "2011,"
- },
- {
- "id": 2904,
- "start": 971.15,
- "end": 971.6560000000002,
- "text": "“The"
- },
- {
- "id": 2905,
- "start": 971.6240000000001,
- "end": 972.212,
- "text": "Filter"
- },
- {
- "id": 2906,
- "start": 972.098,
- "end": 972.768,
- "text": "Bubble,”"
- },
- {
- "id": 2907,
- "start": 972.608,
- "end": 973.238,
- "text": "Eli"
- },
- {
- "id": 2908,
- "start": 973.1879999999999,
- "end": 973.6030000000001,
- "text": "Pariser’s"
- },
- {
- "id": 2909,
- "start": 973.768,
- "end": 973.968,
- "text": "book,"
- },
- {
- "id": 2910,
- "start": 973.968,
- "end": 974.268,
- "text": "comes"
- },
- {
- "id": 2911,
- "start": 974.268,
- "end": 974.778,
- "text": "out,"
- },
- {
- "id": 2912,
- "start": 974.778,
- "end": 975.828,
- "text": "right?"
- },
- {
- "id": 2913,
- "start": 975.828,
- "end": 976.078,
- "text": "It’s"
- },
- {
- "id": 2914,
- "start": 976.078,
- "end": 976.288,
- "text": "not"
- },
- {
- "id": 2915,
- "start": 976.288,
- "end": 976.408,
- "text": "as"
- },
- {
- "id": 2916,
- "start": 976.408,
- "end": 976.578,
- "text": "if"
- },
- {
- "id": 2917,
- "start": 976.578,
- "end": 976.708,
- "text": "there"
- },
- {
- "id": 2918,
- "start": 976.708,
- "end": 976.988,
- "text": "weren’t"
- },
- {
- "id": 2919,
- "start": 976.988,
- "end": 977.338,
- "text": "people"
- },
- {
- "id": 2920,
- "start": 977.338,
- "end": 977.628,
- "text": "already"
- },
- {
- "id": 2921,
- "start": 977.628,
- "end": 978.168,
- "text": "talking"
- },
- {
- "id": 2922,
- "start": 978.168,
- "end": 978.598,
- "text": "about"
- },
- {
- "id": 2923,
- "start": 978.598,
- "end": 978.778,
- "text": "the"
- },
- {
- "id": 2924,
- "start": 978.778,
- "end": 979.178,
- "text": "idea"
- },
- {
- "id": 2925,
- "start": 979.178,
- "end": 979.478,
- "text": "that"
- },
- {
- "id": 2926,
- "start": 980.0430000000001,
- "end": 980.9280000000008,
- "text": "engagement-driven"
- },
- {
- "id": 2927,
- "start": 980.908,
- "end": 982.378,
- "text": "algorithms"
- },
- {
- "id": 2928,
- "start": 982.378,
- "end": 982.768,
- "text": "could"
- },
- {
- "id": 2929,
- "start": 982.768,
- "end": 983.368,
- "text": "have"
- },
- {
- "id": 2930,
- "start": 983.368,
- "end": 983.748,
- "text": "major"
- },
- {
- "id": 2931,
- "start": 983.748,
- "end": 984.238,
- "text": "effects"
- },
- {
- "id": 2932,
- "start": 984.238,
- "end": 984.398,
- "text": "on"
- },
- {
- "id": 2933,
- "start": 984.398,
- "end": 984.658,
- "text": "what"
- },
- {
- "id": 2934,
- "start": 984.658,
- "end": 985.218,
- "text": "information"
- },
- {
- "id": 2935,
- "start": 985.218,
- "end": 985.498,
- "text": "people"
- },
- {
- "id": 2936,
- "start": 985.398,
- "end": 985.798,
- "text": "are"
- },
- {
- "id": 2937,
- "start": 985.578,
- "end": 986.098,
- "text": "exposed"
- },
- {
- "id": 2938,
- "start": 986.123,
- "end": 986.4929999999999,
- "text": "to;"
- },
- {
- "id": 2939,
- "start": 986.668,
- "end": 986.888,
- "text": "how"
- },
- {
- "id": 2940,
- "start": 986.888,
- "end": 987.728,
- "text": "people"
- },
- {
- "id": 2941,
- "start": 987.728,
- "end": 988.038,
- "text": "saw"
- },
- {
- "id": 2942,
- "start": 988.038,
- "end": 988.188,
- "text": "the"
- },
- {
- "id": 2943,
- "start": 988.188,
- "end": 988.768,
- "text": "world"
- },
- {
- "id": 2944,
- "start": 988.768,
- "end": 989.328,
- "text": "and"
- },
- {
- "id": 2945,
- "start": 989.328,
- "end": 989.598,
- "text": "echo"
- },
- {
- "id": 2946,
- "start": 989.598,
- "end": 990.138,
- "text": "chambers"
- },
- {
- "id": 2947,
- "start": 990.138,
- "end": 990.248,
- "text": "and"
- },
- {
- "id": 2948,
- "start": 990.248,
- "end": 990.348,
- "text": "all"
- },
- {
- "id": 2949,
- "start": 990.348,
- "end": 990.608,
- "text": "sorts"
- },
- {
- "id": 2950,
- "start": 990.608,
- "end": 990.688,
- "text": "of"
- },
- {
- "id": 2951,
- "start": 990.688,
- "end": 991.128,
- "text": "concerns"
- },
- {
- "id": 2952,
- "start": 991.128,
- "end": 991.288,
- "text": "like"
- },
- {
- "id": 2953,
- "start": 992.248,
- "end": 992.4279999999999,
- "text": "that."
- },
- {
- "id": 2954,
- "start": 993.368,
- "end": 993.568,
- "text": "Was"
- },
- {
- "id": 2955,
- "start": 993.568,
- "end": 993.728,
- "text": "that"
- },
- {
- "id": 2956,
- "start": 993.728,
- "end": 994.428,
- "text": "criticism"
- },
- {
- "id": 2957,
- "start": 994.428,
- "end": 994.558,
- "text": "or"
- },
- {
- "id": 2958,
- "start": 994.558,
- "end": 994.818,
- "text": "those"
- },
- {
- "id": 2959,
- "start": 994.818,
- "end": 995.328,
- "text": "concerns"
- },
- {
- "id": 2960,
- "start": 995.328,
- "end": 996.398,
- "text": "permeating"
- },
- {
- "id": 2961,
- "start": 996.398,
- "end": 996.518,
- "text": "the"
- },
- {
- "id": 2962,
- "start": 996.518,
- "end": 996.788,
- "text": "walls"
- },
- {
- "id": 2963,
- "start": 996.788,
- "end": 996.868,
- "text": "of"
- },
- {
- "id": 2964,
- "start": 996.868,
- "end": 998.168,
- "text": "Facebook?"
- },
- {
- "id": 2965,
- "start": 998.168,
- "end": 998.288,
- "text": "I"
- },
- {
- "id": 2966,
- "start": 998.288,
- "end": 998.548,
- "text": "think"
- },
- {
- "id": 2967,
- "start": 998.548,
- "end": 999.248,
- "text": "to"
- },
- {
- "id": 2968,
- "start": 999.248,
- "end": 999.368,
- "text": "an"
- },
- {
- "id": 2969,
- "start": 999.368,
- "end": 999.968,
- "text": "extent,"
- },
- {
- "id": 2970,
- "start": 999.968,
- "end": 1000.188,
- "text": "you"
- },
- {
- "id": 2971,
- "start": 1000.188,
- "end": 1000.458,
- "text": "know,"
- },
- {
- "id": 2972,
- "start": 1000.458,
- "end": 1000.748,
- "text": "they’re"
- },
- {
- "id": 2973,
- "start": 1000.748,
- "end": 1000.968,
- "text": "being"
- },
- {
- "id": 2974,
- "start": 1000.968,
- "end": 1002.568,
- "text": "heard."
- },
- {
- "id": 2975,
- "start": 1002.568,
- "end": 1003.518,
- "text": "But"
- },
- {
- "id": 2976,
- "start": 1003.518,
- "end": 1003.818,
- "text": "again,"
- },
- {
- "id": 2977,
- "start": 1003.818,
- "end": 1004.228,
- "text": "at"
- },
- {
- "id": 2978,
- "start": 1004.228,
- "end": 1004.388,
- "text": "the"
- },
- {
- "id": 2979,
- "start": 1004.388,
- "end": 1004.648,
- "text": "time"
- },
- {
- "id": 2980,
- "start": 1004.648,
- "end": 1004.738,
- "text": "the"
- },
- {
- "id": 2981,
- "start": 1004.738,
- "end": 1006.168,
- "text": "company"
- },
- {
- "id": 2982,
- "start": 1006.168,
- "end": 1006.328,
- "text": "was"
- },
- {
- "id": 2983,
- "start": 1006.328,
- "end": 1006.548,
- "text": "trying"
- },
- {
- "id": 2984,
- "start": 1006.548,
- "end": 1006.628,
- "text": "to"
- },
- {
- "id": 2985,
- "start": 1006.628,
- "end": 1007.328,
- "text": "solve"
- },
- {
- "id": 2986,
- "start": 1007.328,
- "end": 1008.398,
- "text": "for"
- },
- {
- "id": 2987,
- "start": 1008.018,
- "end": 1008.678,
- "text": "mobile"
- },
- {
- "id": 2988,
- "start": 1008.6279999999999,
- "end": 1009.1079999999998,
- "text": "advertising."
- },
- {
- "id": 2989,
- "start": 1009.238,
- "end": 1009.5379999999999,
- "text": "…"
- },
- {
- "id": 2990,
- "start": 1009.848,
- "end": 1009.968,
- "text": "It"
- },
- {
- "id": 2991,
- "start": 1009.968,
- "end": 1010.068,
- "text": "was"
- },
- {
- "id": 2992,
- "start": 1010.068,
- "end": 1010.428,
- "text": "solving"
- },
- {
- "id": 2993,
- "start": 1010.428,
- "end": 1011.038,
- "text": "for"
- },
- {
- "id": 2994,
- "start": 1011.038,
- "end": 1011.258,
- "text": "its"
- },
- {
- "id": 2995,
- "start": 1011.258,
- "end": 1011.388,
- "text": "own"
- },
- {
- "id": 2996,
- "start": 1011.388,
- "end": 1011.918,
- "text": "existence"
- },
- {
- "id": 2997,
- "start": 1011.918,
- "end": 1012.008,
- "text": "and"
- },
- {
- "id": 2998,
- "start": 1012.008,
- "end": 1012.218,
- "text": "making"
- },
- {
- "id": 2999,
- "start": 1012.218,
- "end": 1012.478,
- "text": "sure"
- },
- {
- "id": 3000,
- "start": 1012.478,
- "end": 1012.598,
- "text": "that"
- },
- {
- "id": 3001,
- "start": 1012.598,
- "end": 1012.678,
- "text": "the"
- },
- {
- "id": 3002,
- "start": 1012.678,
- "end": 1012.958,
- "text": "product"
- },
- {
- "id": 3003,
- "start": 1012.958,
- "end": 1013.068,
- "text": "was"
- },
- {
- "id": 3004,
- "start": 1013.068,
- "end": 1014.328,
- "text": "relevant."
- },
- {
- "id": 3005,
- "start": 1014.328,
- "end": 1014.428,
- "text": "It"
- },
- {
- "id": 3006,
- "start": 1014.428,
- "end": 1014.528,
- "text": "was"
- },
- {
- "id": 3007,
- "start": 1014.648,
- "end": 1014.933,
- "text": "solvent"
- },
- {
- "id": 3008,
- "start": 1014.868,
- "end": 1015.338,
- "text": "for"
- },
- {
- "id": 3009,
- "start": 1015.338,
- "end": 1015.878,
- "text": "problems"
- },
- {
- "id": 3010,
- "start": 1015.878,
- "end": 1016.038,
- "text": "that"
- },
- {
- "id": 3011,
- "start": 1016.038,
- "end": 1016.698,
- "text": "were"
- },
- {
- "id": 3012,
- "start": 1016.698,
- "end": 1016.948,
- "text": "much"
- },
- {
- "id": 3013,
- "start": 1016.948,
- "end": 1017.108,
- "text": "more"
- },
- {
- "id": 3014,
- "start": 1017.108,
- "end": 1017.588,
- "text": "foundational."
- },
- {
- "id": 3015,
- "start": 1017.588,
- "end": 1017.938,
- "text": "And"
- },
- {
- "id": 3016,
- "start": 1017.938,
- "end": 1017.998,
- "text": "it"
- },
- {
- "id": 3017,
- "start": 1017.998,
- "end": 1018.138,
- "text": "would"
- },
- {
- "id": 3018,
- "start": 1018.138,
- "end": 1018.258,
- "text": "be"
- },
- {
- "id": 3019,
- "start": 1018.258,
- "end": 1018.828,
- "text": "presumptuous"
- },
- {
- "id": 3020,
- "start": 1018.828,
- "end": 1018.928,
- "text": "to"
- },
- {
- "id": 3021,
- "start": 1018.928,
- "end": 1019.098,
- "text": "think"
- },
- {
- "id": 3022,
- "start": 1019.098,
- "end": 1019.228,
- "text": "that"
- },
- {
- "id": 3023,
- "start": 1019.228,
- "end": 1019.408,
- "text": "like,"
- },
- {
- "id": 3024,
- "start": 1019.408,
- "end": 1020.138,
- "text": "oh,"
- },
- {
- "id": 3025,
- "start": 1020.138,
- "end": 1020.308,
- "text": "this"
- },
- {
- "id": 3026,
- "start": 1020.308,
- "end": 1020.448,
- "text": "was"
- },
- {
- "id": 3027,
- "start": 1020.448,
- "end": 1020.698,
- "text": "already"
- },
- {
- "id": 3028,
- "start": 1021.1096666666666,
- "end": 1021.3663333333333,
- "text": "a"
- },
- {
- "id": 3029,
- "start": 1021.7713333333332,
- "end": 1022.0346666666666,
- "text": "fully-realized,"
- },
- {
- "id": 3030,
- "start": 1022.4329999999999,
- "end": 1022.7030000000001,
- "text": "fully-optimized"
- },
- {
- "id": 3031,
- "start": 1023.0946666666665,
- "end": 1023.3713333333334,
- "text": "interface."
- },
- {
- "id": 3032,
- "start": 1023.7563333333331,
- "end": 1024.0396666666666,
- "text": "It"
- },
- {
- "id": 3033,
- "start": 1024.418,
- "end": 1024.708,
- "text": "certainly"
- },
- {
- "id": 3034,
- "start": 1024.923,
- "end": 1025.1879999999999,
- "text": "wasn’t."
- },
- {
- "id": 3035,
- "start": 1025.428,
- "end": 1025.668,
- "text": "People"
- },
- {
- "id": 3036,
- "start": 1025.668,
- "end": 1025.758,
- "text": "were"
- },
- {
- "id": 3037,
- "start": 1025.758,
- "end": 1025.878,
- "text": "not"
- },
- {
- "id": 3038,
- "start": 1025.878,
- "end": 1026.388,
- "text": "necessarily"
- },
- {
- "id": 3039,
- "start": 1026.388,
- "end": 1027.238,
- "text": "finding"
- },
- {
- "id": 3040,
- "start": 1027.238,
- "end": 1027.408,
- "text": "their"
- },
- {
- "id": 3041,
- "start": 1027.408,
- "end": 1027.668,
- "text": "friends"
- },
- {
- "id": 3042,
- "start": 1027.668,
- "end": 1027.778,
- "text": "on"
- },
- {
- "id": 3043,
- "start": 1027.778,
- "end": 1028.368,
- "text": "Facebook."
- },
- {
- "id": 3044,
- "start": 1028.368,
- "end": 1028.608,
- "text": "People"
- },
- {
- "id": 3045,
- "start": 1028.608,
- "end": 1028.678,
- "text": "were"
- },
- {
- "id": 3046,
- "start": 1028.678,
- "end": 1028.808,
- "text": "not"
- },
- {
- "id": 3047,
- "start": 1028.953,
- "end": 1029.148,
- "text": "necessarily"
- },
- {
- "id": 3048,
- "start": 1029.228,
- "end": 1029.488,
- "text": "finding"
- },
- {
- "id": 3049,
- "start": 1029.488,
- "end": 1029.908,
- "text": "information"
- },
- {
- "id": 3050,
- "start": 1029.6746666666668,
- "end": 1030.0046666666667,
- "text": "that"
- },
- {
- "id": 3051,
- "start": 1029.8613333333333,
- "end": 1030.1013333333333,
- "text": "they"
- },
- {
- "id": 3052,
- "start": 1030.048,
- "end": 1030.198,
- "text": "really"
- },
- {
- "id": 3053,
- "start": 1030.198,
- "end": 1030.418,
- "text": "cared"
- },
- {
- "id": 3054,
- "start": 1030.418,
- "end": 1030.678,
- "text": "about"
- },
- {
- "id": 3055,
- "start": 1030.7379999999998,
- "end": 1030.968,
- "text": "or"
- },
- {
- "id": 3056,
- "start": 1031.058,
- "end": 1031.258,
- "text": "found"
- },
- {
- "id": 3057,
- "start": 1031.258,
- "end": 1031.678,
- "text": "engaging"
- },
- {
- "id": 3058,
- "start": 1031.678,
- "end": 1033.668,
- "text": "whatsoever."
- },
- {
- "id": 3059,
- "start": 1033.668,
- "end": 1033.838,
- "text": "But"
- },
- {
- "id": 3060,
- "start": 1033.838,
- "end": 1033.868,
- "text": "I"
- },
- {
- "id": 3061,
- "start": 1033.868,
- "end": 1034.048,
- "text": "think"
- },
- {
- "id": 3062,
- "start": 1034.048,
- "end": 1034.238,
- "text": "that"
- },
- {
- "id": 3063,
- "start": 1034.238,
- "end": 1034.538,
- "text": "it’s"
- },
- {
- "id": 3064,
- "start": 1034.538,
- "end": 1034.798,
- "text": "now"
- },
- {
- "id": 3065,
- "start": 1034.798,
- "end": 1035.138,
- "text": "clear"
- },
- {
- "id": 3066,
- "start": 1035.138,
- "end": 1035.238,
- "text": "in"
- },
- {
- "id": 3067,
- "start": 1035.238,
- "end": 1035.728,
- "text": "hindsight"
- },
- {
- "id": 3068,
- "start": 1035.728,
- "end": 1035.868,
- "text": "that"
- },
- {
- "id": 3069,
- "start": 1035.868,
- "end": 1036.028,
- "text": "there"
- },
- {
- "id": 3070,
- "start": 1036.028,
- "end": 1036.308,
- "text": "were"
- },
- {
- "id": 3071,
- "start": 1036.308,
- "end": 1036.498,
- "text": "these"
- },
- {
- "id": 3072,
- "start": 1036.748,
- "end": 1036.893,
- "text": "anti-patterns"
- },
- {
- "id": 3073,
- "start": 1037.188,
- "end": 1037.288,
- "text": "that"
- },
- {
- "id": 3074,
- "start": 1037.288,
- "end": 1037.538,
- "text": "started"
- },
- {
- "id": 3075,
- "start": 1037.538,
- "end": 1037.658,
- "text": "to"
- },
- {
- "id": 3076,
- "start": 1037.658,
- "end": 1038.388,
- "text": "emerge"
- },
- {
- "id": 3077,
- "start": 1038.388,
- "end": 1039.148,
- "text": "when"
- },
- {
- "id": 3078,
- "start": 1039.148,
- "end": 1039.308,
- "text": "the"
- },
- {
- "id": 3079,
- "start": 1039.308,
- "end": 1039.528,
- "text": "bulk"
- },
- {
- "id": 3080,
- "start": 1039.528,
- "end": 1039.608,
- "text": "of"
- },
- {
- "id": 3081,
- "start": 1039.608,
- "end": 1039.668,
- "text": "a"
- },
- {
- "id": 3082,
- "start": 1039.668,
- "end": 1040.018,
- "text": "person’s"
- },
- {
- "id": 3083,
- "start": 1040.018,
- "end": 1041.628,
- "text": "community"
- },
- {
- "id": 3084,
- "start": 1041.628,
- "end": 1042.558,
- "text": "reflected"
- },
- {
- "id": 3085,
- "start": 1042.558,
- "end": 1042.828,
- "text": "either"
- },
- {
- "id": 3086,
- "start": 1042.828,
- "end": 1043.448,
- "text": "an"
- },
- {
- "id": 3087,
- "start": 1043.448,
- "end": 1044.408,
- "text": "ideology"
- },
- {
- "id": 3088,
- "start": 1044.408,
- "end": 1045.778,
- "text": "or"
- },
- {
- "id": 3089,
- "start": 1045.778,
- "end": 1046.088,
- "text": "a"
- },
- {
- "id": 3090,
- "start": 1046.088,
- "end": 1046.338,
- "text": "set"
- },
- {
- "id": 3091,
- "start": 1046.338,
- "end": 1047.278,
- "text": "of"
- },
- {
- "id": 3092,
- "start": 1047.278,
- "end": 1048.138,
- "text": "inputs"
- },
- {
- "id": 3093,
- "start": 1048.138,
- "end": 1048.408,
- "text": "that"
- },
- {
- "id": 3094,
- "start": 1048.408,
- "end": 1048.518,
- "text": "are"
- },
- {
- "id": 3095,
- "start": 1048.518,
- "end": 1049.438,
- "text": "specific"
- },
- {
- "id": 3096,
- "start": 1049.438,
- "end": 1049.638,
- "text": "to"
- },
- {
- "id": 3097,
- "start": 1049.638,
- "end": 1049.808,
- "text": "that"
- },
- {
- "id": 3098,
- "start": 1050.098,
- "end": 1050.3329999999999,
- "text": "community,"
- },
- {
- "id": 3099,
- "start": 1050.558,
- "end": 1050.858,
- "text": "and"
- },
- {
- "id": 3100,
- "start": 1050.858,
- "end": 1051.388,
- "text": "that"
- },
- {
- "id": 3101,
- "start": 1051.388,
- "end": 1051.618,
- "text": "kind"
- },
- {
- "id": 3102,
- "start": 1051.618,
- "end": 1051.678,
- "text": "of"
- },
- {
- "id": 3103,
- "start": 1051.678,
- "end": 1052.238,
- "text": "squeezed"
- },
- {
- "id": 3104,
- "start": 1052.238,
- "end": 1052.398,
- "text": "out"
- },
- {
- "id": 3105,
- "start": 1052.333,
- "end": 1052.5279999999998,
- "text": "or"
- },
- {
- "id": 3106,
- "start": 1052.428,
- "end": 1052.658,
- "text": "left"
- },
- {
- "id": 3107,
- "start": 1052.658,
- "end": 1052.948,
- "text": "little"
- },
- {
- "id": 3108,
- "start": 1052.948,
- "end": 1053.298,
- "text": "room"
- },
- {
- "id": 3109,
- "start": 1053.298,
- "end": 1053.708,
- "text": "for"
- },
- {
- "id": 3110,
- "start": 1053.708,
- "end": 1054.258,
- "text": "information"
- },
- {
- "id": 3111,
- "start": 1054.258,
- "end": 1054.598,
- "text": "outside"
- },
- {
- "id": 3112,
- "start": 1054.598,
- "end": 1054.678,
- "text": "of"
- },
- {
- "id": 3113,
- "start": 1054.678,
- "end": 1054.818,
- "text": "what"
- },
- {
- "id": 3114,
- "start": 1054.783,
- "end": 1055.108,
- "text": "that"
- },
- {
- "id": 3115,
- "start": 1054.888,
- "end": 1055.398,
- "text": "community"
- },
- {
- "id": 3116,
- "start": 1055.6580000000004,
- "end": 1056.073,
- "text": "sees"
- },
- {
- "id": 3117,
- "start": 1056.4280000000003,
- "end": 1056.7479999999998,
- "text": "and"
- },
- {
- "id": 3118,
- "start": 1057.1980000000003,
- "end": 1057.423,
- "text": "believes."
- },
- {
- "id": 3119,
- "start": 1057.968,
- "end": 1058.098,
- "text": "But"
- },
- {
- "id": 3120,
- "start": 1058.098,
- "end": 1058.278,
- "text": "again,"
- },
- {
- "id": 3121,
- "start": 1058.278,
- "end": 1058.328,
- "text": "I"
- },
- {
- "id": 3122,
- "start": 1058.328,
- "end": 1058.698,
- "text": "think"
- },
- {
- "id": 3123,
- "start": 1058.698,
- "end": 1058.938,
- "text": "it’s"
- },
- {
- "id": 3124,
- "start": 1058.938,
- "end": 1059.378,
- "text": "important"
- },
- {
- "id": 3125,
- "start": 1059.378,
- "end": 1059.478,
- "text": "to"
- },
- {
- "id": 3126,
- "start": 1059.478,
- "end": 1059.668,
- "text": "look"
- },
- {
- "id": 3127,
- "start": 1059.668,
- "end": 1060.388,
- "text": "back"
- },
- {
- "id": 3128,
- "start": 1060.388,
- "end": 1060.538,
- "text": "and"
- },
- {
- "id": 3129,
- "start": 1060.538,
- "end": 1060.968,
- "text": "consider"
- },
- {
- "id": 3130,
- "start": 1060.968,
- "end": 1061.548,
- "text": "that"
- },
- {
- "id": 3131,
- "start": 1061.548,
- "end": 1061.668,
- "text": "the"
- },
- {
- "id": 3132,
- "start": 1061.668,
- "end": 1062.128,
- "text": "genesis"
- },
- {
- "id": 3133,
- "start": 1062.128,
- "end": 1062.218,
- "text": "of"
- },
- {
- "id": 3134,
- "start": 1062.308,
- "end": 1062.768,
- "text": "News"
- },
- {
- "id": 3135,
- "start": 1062.488,
- "end": 1063.318,
- "text": "Feed"
- },
- {
- "id": 3136,
- "start": 1063.318,
- "end": 1064.158,
- "text": "was"
- },
- {
- "id": 3137,
- "start": 1064.158,
- "end": 1064.388,
- "text": "this"
- },
- {
- "id": 3138,
- "start": 1064.388,
- "end": 1064.798,
- "text": "idea"
- },
- {
- "id": 3139,
- "start": 1064.798,
- "end": 1065.368,
- "text": "that"
- },
- {
- "id": 3140,
- "start": 1065.368,
- "end": 1065.688,
- "text": "people"
- },
- {
- "id": 3141,
- "start": 1065.688,
- "end": 1065.888,
- "text": "don’t"
- },
- {
- "id": 3142,
- "start": 1065.888,
- "end": 1066.508,
- "text": "have"
- },
- {
- "id": 3143,
- "start": 1066.508,
- "end": 1067.068,
- "text": "access"
- },
- {
- "id": 3144,
- "start": 1067.068,
- "end": 1067.968,
- "text": "to"
- },
- {
- "id": 3145,
- "start": 1067.968,
- "end": 1068.158,
- "text": "the"
- },
- {
- "id": 3146,
- "start": 1068.158,
- "end": 1068.748,
- "text": "information"
- },
- {
- "id": 3147,
- "start": 1068.748,
- "end": 1068.908,
- "text": "that’s"
- },
- {
- "id": 3148,
- "start": 1069.3029999999999,
- "end": 1069.463,
- "text": "personal,"
- },
- {
- "id": 3149,
- "start": 1069.858,
- "end": 1070.018,
- "text": "that"
- },
- {
- "id": 3150,
- "start": 1070.018,
- "end": 1070.248,
- "text": "comes"
- },
- {
- "id": 3151,
- "start": 1070.248,
- "end": 1070.388,
- "text": "from"
- },
- {
- "id": 3152,
- "start": 1070.388,
- "end": 1070.498,
- "text": "their"
- },
- {
- "id": 3153,
- "start": 1070.498,
- "end": 1070.838,
- "text": "friends"
- },
- {
- "id": 3154,
- "start": 1070.838,
- "end": 1070.928,
- "text": "and"
- },
- {
- "id": 3155,
- "start": 1071.1779999999999,
- "end": 1071.3346666666666,
- "text": "their"
- },
- {
- "id": 3156,
- "start": 1071.518,
- "end": 1071.7413333333334,
- "text": "family."
- },
- {
- "id": 3157,
- "start": 1071.858,
- "end": 1072.148,
- "text": "And"
- },
- {
- "id": 3158,
- "start": 1072.148,
- "end": 1072.798,
- "text": "that,"
- },
- {
- "id": 3159,
- "start": 1072.798,
- "end": 1072.928,
- "text": "in"
- },
- {
- "id": 3160,
- "start": 1072.928,
- "end": 1073.038,
- "text": "and"
- },
- {
- "id": 3161,
- "start": 1073.038,
- "end": 1073.118,
- "text": "of"
- },
- {
- "id": 3162,
- "start": 1073.118,
- "end": 1073.378,
- "text": "itself,"
- },
- {
- "id": 3163,
- "start": 1073.378,
- "end": 1073.488,
- "text": "we"
- },
- {
- "id": 3164,
- "start": 1073.488,
- "end": 1073.988,
- "text": "thought"
- },
- {
- "id": 3165,
- "start": 1073.988,
- "end": 1074.188,
- "text": "would"
- },
- {
- "id": 3166,
- "start": 1074.188,
- "end": 1074.398,
- "text": "have"
- },
- {
- "id": 3167,
- "start": 1074.398,
- "end": 1074.878,
- "text": "universal"
- },
- {
- "id": 3168,
- "start": 1074.878,
- "end": 1075.628,
- "text": "appeal"
- },
- {
- "id": 3169,
- "start": 1075.628,
- "end": 1076.308,
- "text": "and"
- },
- {
- "id": 3170,
- "start": 1076.308,
- "end": 1076.748,
- "text": "would"
- },
- {
- "id": 3171,
- "start": 1076.748,
- "end": 1077.088,
- "text": "create"
- },
- {
- "id": 3172,
- "start": 1077.088,
- "end": 1077.138,
- "text": "a"
- },
- {
- "id": 3173,
- "start": 1077.138,
- "end": 1077.298,
- "text": "lot"
- },
- {
- "id": 3174,
- "start": 1077.298,
- "end": 1077.568,
- "text": "of"
- },
- {
- "id": 3175,
- "start": 1077.568,
- "end": 1077.878,
- "text": "social"
- },
- {
- "id": 3176,
- "start": 1077.878,
- "end": 1078.078,
- "text": "good"
- },
- {
- "id": 3177,
- "start": 1078.078,
- "end": 1078.218,
- "text": "and"
- },
- {
- "id": 3178,
- "start": 1078.218,
- "end": 1078.498,
- "text": "social"
- },
- {
- "id": 3179,
- "start": 1078.498,
- "end": 1078.868,
- "text": "value"
- },
- {
- "id": 3180,
- "start": 1078.868,
- "end": 1078.988,
- "text": "to"
- },
- {
- "id": 3181,
- "start": 1078.988,
- "end": 1079.568,
- "text": "people"
- },
- {
- "id": 3182,
- "start": 1079.568,
- "end": 1079.788,
- "text": "all"
- },
- {
- "id": 3183,
- "start": 1079.788,
- "end": 1079.918,
- "text": "over"
- },
- {
- "id": 3184,
- "start": 1079.918,
- "end": 1079.988,
- "text": "the"
- },
- {
- "id": 3185,
- "start": 1079.988,
- "end": 1080.278,
- "text": "world."
- },
- {
- "id": 3186,
- "start": 1080.698,
- "end": 1080.8980000000001,
- "text": "…"
- },
- {
- "id": 3187,
- "start": 1081.408,
- "end": 1081.518,
- "text": "I"
- },
- {
- "id": 3188,
- "start": 1081.518,
- "end": 1081.728,
- "text": "think"
- },
- {
- "id": 3189,
- "start": 1081.728,
- "end": 1081.898,
- "text": "it’s"
- },
- {
- "id": 3190,
- "start": 1081.898,
- "end": 1082.228,
- "text": "easy"
- },
- {
- "id": 3191,
- "start": 1082.228,
- "end": 1082.878,
- "text": "to"
- },
- {
- "id": 3192,
- "start": 1082.878,
- "end": 1084.468,
- "text": "overlook"
- },
- {
- "id": 3193,
- "start": 1084.468,
- "end": 1084.758,
- "text": "how"
- },
- {
- "id": 3194,
- "start": 1084.758,
- "end": 1085.748,
- "text": "quickly"
- },
- {
- "id": 3195,
- "start": 1085.568,
- "end": 1086.268,
- "text": "Facebook"
- },
- {
- "id": 3196,
- "start": 1086.2846666666667,
- "end": 1086.828,
- "text": "reacts"
- },
- {
- "id": 3197,
- "start": 1087.0013333333334,
- "end": 1087.388,
- "text": "or"
- },
- {
- "id": 3198,
- "start": 1087.718,
- "end": 1087.948,
- "text": "has"
- },
- {
- "id": 3199,
- "start": 1087.948,
- "end": 1088.428,
- "text": "historically"
- },
- {
- "id": 3200,
- "start": 1088.428,
- "end": 1089.218,
- "text": "reacted"
- },
- {
- "id": 3201,
- "start": 1089.088,
- "end": 1089.808,
- "text": "to"
- },
- {
- "id": 3202,
- "start": 1089.723,
- "end": 1090.143,
- "text": "pushback"
- },
- {
- "id": 3203,
- "start": 1090.358,
- "end": 1090.478,
- "text": "from"
- },
- {
- "id": 3204,
- "start": 1090.478,
- "end": 1090.558,
- "text": "the"
- },
- {
- "id": 3205,
- "start": 1090.558,
- "end": 1091.268,
- "text": "community"
- },
- {
- "id": 3206,
- "start": 1091.268,
- "end": 1091.568,
- "text": "when"
- },
- {
- "id": 3207,
- "start": 1091.568,
- "end": 1091.648,
- "text": "it"
- },
- {
- "id": 3208,
- "start": 1091.648,
- "end": 1092.058,
- "text": "launches"
- },
- {
- "id": 3209,
- "start": 1092.058,
- "end": 1092.538,
- "text": "features"
- },
- {
- "id": 3210,
- "start": 1092.538,
- "end": 1093.288,
- "text": "that"
- },
- {
- "id": 3211,
- "start": 1093.288,
- "end": 1093.468,
- "text": "were"
- },
- {
- "id": 3212,
- "start": 1093.468,
- "end": 1093.838,
- "text": "either"
- },
- {
- "id": 3213,
- "start": 1093.838,
- "end": 1094.078,
- "text": "not"
- },
- {
- "id": 3214,
- "start": 1094.393,
- "end": 1094.8379999999997,
- "text": "well-considered"
- },
- {
- "id": 3215,
- "start": 1094.948,
- "end": 1095.598,
- "text": "or"
- },
- {
- "id": 3216,
- "start": 1095.598,
- "end": 1096.308,
- "text": "that"
- },
- {
- "id": 3217,
- "start": 1096.308,
- "end": 1096.538,
- "text": "didn’t"
- },
- {
- "id": 3218,
- "start": 1096.538,
- "end": 1096.758,
- "text": "map"
- },
- {
- "id": 3219,
- "start": 1096.758,
- "end": 1096.868,
- "text": "to"
- },
- {
- "id": 3220,
- "start": 1096.868,
- "end": 1096.998,
- "text": "what"
- },
- {
- "id": 3221,
- "start": 1096.998,
- "end": 1097.218,
- "text": "people"
- },
- {
- "id": 3222,
- "start": 1097.218,
- "end": 1097.488,
- "text": "actually"
- },
- {
- "id": 3223,
- "start": 1097.488,
- "end": 1098.098,
- "text": "wanted."
- },
- {
- "id": 3224,
- "start": 1098.098,
- "end": 1098.908,
- "text": "And"
- },
- {
- "id": 3225,
- "start": 1098.908,
- "end": 1099.088,
- "text": "you"
- },
- {
- "id": 3226,
- "start": 1099.088,
- "end": 1099.558,
- "text": "know,"
- },
- {
- "id": 3227,
- "start": 1099.558,
- "end": 1099.678,
- "text": "the"
- },
- {
- "id": 3228,
- "start": 1099.678,
- "end": 1099.918,
- "text": "one"
- },
- {
- "id": 3229,
- "start": 1099.918,
- "end": 1100.078,
- "text": "that"
- },
- {
- "id": 3230,
- "start": 1100.078,
- "end": 1100.228,
- "text": "kind"
- },
- {
- "id": 3231,
- "start": 1100.228,
- "end": 1100.288,
- "text": "of"
- },
- {
- "id": 3232,
- "start": 1100.288,
- "end": 1100.428,
- "text": "like"
- },
- {
- "id": 3233,
- "start": 1100.428,
- "end": 1102.338,
- "text": "sits"
- },
- {
- "id": 3234,
- "start": 1102.338,
- "end": 1102.518,
- "text": "in"
- },
- {
- "id": 3235,
- "start": 1102.518,
- "end": 1102.618,
- "text": "the"
- },
- {
- "id": 3236,
- "start": 1102.618,
- "end": 1102.808,
- "text": "lore"
- },
- {
- "id": 3237,
- "start": 1102.808,
- "end": 1102.868,
- "text": "of"
- },
- {
- "id": 3238,
- "start": 1102.868,
- "end": 1102.938,
- "text": "the"
- },
- {
- "id": 3239,
- "start": 1102.938,
- "end": 1103.318,
- "text": "company"
- },
- {
- "id": 3240,
- "start": 1103.318,
- "end": 1103.478,
- "text": "is"
- },
- {
- "id": 3241,
- "start": 1103.478,
- "end": 1103.648,
- "text": "when"
- },
- {
- "id": 3242,
- "start": 1103.648,
- "end": 1103.758,
- "text": "we"
- },
- {
- "id": 3243,
- "start": 1103.758,
- "end": 1104.048,
- "text": "first"
- },
- {
- "id": 3244,
- "start": 1104.048,
- "end": 1104.278,
- "text": "launched"
- },
- {
- "id": 3245,
- "start": 1104.278,
- "end": 1104.468,
- "text": "News"
- },
- {
- "id": 3246,
- "start": 1104.468,
- "end": 1105.028,
- "text": "Feed;"
- },
- {
- "id": 3247,
- "start": 1105.028,
- "end": 1105.198,
- "text": "and"
- },
- {
- "id": 3248,
- "start": 1105.198,
- "end": 1105.378,
- "text": "just"
- },
- {
- "id": 3249,
- "start": 1105.378,
- "end": 1105.448,
- "text": "the"
- },
- {
- "id": 3250,
- "start": 1105.673,
- "end": 1105.8580000000002,
- "text": "shear"
- },
- {
- "id": 3251,
- "start": 1105.968,
- "end": 1106.268,
- "text": "amount"
- },
- {
- "id": 3252,
- "start": 1106.268,
- "end": 1106.368,
- "text": "of"
- },
- {
- "id": 3253,
- "start": 1106.368,
- "end": 1106.908,
- "text": "blowback"
- },
- {
- "id": 3254,
- "start": 1106.908,
- "end": 1106.998,
- "text": "that"
- },
- {
- "id": 3255,
- "start": 1106.998,
- "end": 1107.098,
- "text": "was"
- },
- {
- "id": 3256,
- "start": 1107.098,
- "end": 1107.238,
- "text": "kind"
- },
- {
- "id": 3257,
- "start": 1107.238,
- "end": 1107.308,
- "text": "of"
- },
- {
- "id": 3258,
- "start": 1107.693,
- "end": 1107.788,
- "text": "self-perpetuated"
- },
- {
- "id": 3259,
- "start": 1108.148,
- "end": 1108.268,
- "text": "by"
- },
- {
- "id": 3260,
- "start": 1108.268,
- "end": 1108.528,
- "text": "News"
- },
- {
- "id": 3261,
- "start": 1108.528,
- "end": 1109.198,
- "text": "Feed"
- },
- {
- "id": 3262,
- "start": 1109.198,
- "end": 1110.418,
- "text": "from"
- },
- {
- "id": 3263,
- "start": 1110.418,
- "end": 1110.608,
- "text": "the"
- },
- {
- "id": 3264,
- "start": 1110.608,
- "end": 1110.848,
- "text": "user"
- },
- {
- "id": 3265,
- "start": 1110.8229999999999,
- "end": 1110.993,
- "text": "base"
- },
- {
- "id": 3266,
- "start": 1111.038,
- "end": 1111.138,
- "text": "at"
- },
- {
- "id": 3267,
- "start": 1111.138,
- "end": 1111.268,
- "text": "that"
- },
- {
- "id": 3268,
- "start": 1111.268,
- "end": 1112.158,
- "text": "time"
- },
- {
- "id": 3269,
- "start": 1112.158,
- "end": 1112.318,
- "text": "where"
- },
- {
- "id": 3270,
- "start": 1112.318,
- "end": 1112.538,
- "text": "people"
- },
- {
- "id": 3271,
- "start": 1112.538,
- "end": 1112.758,
- "text": "didn’t"
- },
- {
- "id": 3272,
- "start": 1112.758,
- "end": 1113.888,
- "text": "understand"
- },
- {
- "id": 3273,
- "start": 1113.888,
- "end": 1114.138,
- "text": "why"
- },
- {
- "id": 3274,
- "start": 1114.138,
- "end": 1114.298,
- "text": "this"
- },
- {
- "id": 3275,
- "start": 1114.298,
- "end": 1114.568,
- "text": "feature"
- },
- {
- "id": 3276,
- "start": 1114.568,
- "end": 1114.778,
- "text": "was"
- },
- {
- "id": 3277,
- "start": 1114.778,
- "end": 1115.868,
- "text": "released,"
- },
- {
- "id": 3278,
- "start": 1115.868,
- "end": 1116.458,
- "text": "who"
- },
- {
- "id": 3279,
- "start": 1116.458,
- "end": 1116.608,
- "text": "can"
- },
- {
- "id": 3280,
- "start": 1116.608,
- "end": 1116.878,
- "text": "see"
- },
- {
- "id": 3281,
- "start": 1117.143,
- "end": 1117.328,
- "text": "what."
- },
- {
- "id": 3282,
- "start": 1117.678,
- "end": 1117.778,
- "text": "There"
- },
- {
- "id": 3283,
- "start": 1117.778,
- "end": 1117.868,
- "text": "was"
- },
- {
- "id": 3284,
- "start": 1117.868,
- "end": 1118.008,
- "text": "no"
- },
- {
- "id": 3285,
- "start": 1118.203,
- "end": 1118.523,
- "text": "onboarding"
- },
- {
- "id": 3286,
- "start": 1118.538,
- "end": 1119.038,
- "text": "experience"
- },
- {
- "id": 3287,
- "start": 1119.038,
- "end": 1119.128,
- "text": "that"
- },
- {
- "id": 3288,
- "start": 1119.128,
- "end": 1119.218,
- "text": "we"
- },
- {
- "id": 3289,
- "start": 1119.218,
- "end": 1119.358,
- "text": "had"
- },
- {
- "id": 3290,
- "start": 1119.358,
- "end": 1119.678,
- "text": "built"
- },
- {
- "id": 3291,
- "start": 1119.678,
- "end": 1119.798,
- "text": "when"
- },
- {
- "id": 3292,
- "start": 1119.798,
- "end": 1119.908,
- "text": "we"
- },
- {
- "id": 3293,
- "start": 1119.908,
- "end": 1120.198,
- "text": "released"
- },
- {
- "id": 3294,
- "start": 1120.198,
- "end": 1120.268,
- "text": "it."
- },
- {
- "id": 3295,
- "start": 1120.268,
- "end": 1120.358,
- "text": "We"
- },
- {
- "id": 3296,
- "start": 1120.358,
- "end": 1120.578,
- "text": "just"
- },
- {
- "id": 3297,
- "start": 1120.8213333333333,
- "end": 1121.431333333333,
- "text": "pressed"
- },
- {
- "id": 3298,
- "start": 1121.2846666666667,
- "end": 1122.2846666666665,
- "text": "go."
- },
- {
- "id": 3299,
- "start": 1121.748,
- "end": 1123.138,
- "text": "And"
- },
- {
- "id": 3300,
- "start": 1123.138,
- "end": 1123.388,
- "text": "more"
- },
- {
- "id": 3301,
- "start": 1123.388,
- "end": 1123.808,
- "text": "importantly,"
- },
- {
- "id": 3302,
- "start": 1123.808,
- "end": 1123.938,
- "text": "there"
- },
- {
- "id": 3303,
- "start": 1123.938,
- "end": 1124.088,
- "text": "was"
- },
- {
- "id": 3304,
- "start": 1124.088,
- "end": 1124.278,
- "text": "real"
- },
- {
- "id": 3305,
- "start": 1124.278,
- "end": 1124.738,
- "text": "concerns"
- },
- {
- "id": 3306,
- "start": 1124.738,
- "end": 1125.608,
- "text": "around"
- },
- {
- "id": 3307,
- "start": 1125.608,
- "end": 1125.728,
- "text": "I"
- },
- {
- "id": 3308,
- "start": 1125.728,
- "end": 1125.928,
- "text": "feel"
- },
- {
- "id": 3309,
- "start": 1125.928,
- "end": 1126.128,
- "text": "like"
- },
- {
- "id": 3310,
- "start": 1126.118,
- "end": 1126.328,
- "text": "my"
- },
- {
- "id": 3311,
- "start": 1126.4979999999998,
- "end": 1126.693,
- "text": "privacy’s"
- },
- {
- "id": 3312,
- "start": 1126.878,
- "end": 1127.058,
- "text": "being"
- },
- {
- "id": 3313,
- "start": 1127.058,
- "end": 1127.468,
- "text": "invaded."
- },
- {
- "id": 3314,
- "start": 1127.468,
- "end": 1127.518,
- "text": "I"
- },
- {
- "id": 3315,
- "start": 1127.518,
- "end": 1127.758,
- "text": "can’t"
- },
- {
- "id": 3316,
- "start": 1127.758,
- "end": 1128.278,
- "text": "articulate"
- },
- {
- "id": 3317,
- "start": 1128.278,
- "end": 1129.548,
- "text": "why,"
- },
- {
- "id": 3318,
- "start": 1129.548,
- "end": 1129.718,
- "text": "but"
- },
- {
- "id": 3319,
- "start": 1129.718,
- "end": 1130.188,
- "text": "I"
- },
- {
- "id": 3320,
- "start": 1130.188,
- "end": 1130.518,
- "text": "feel"
- },
- {
- "id": 3321,
- "start": 1130.518,
- "end": 1130.628,
- "text": "as"
- },
- {
- "id": 3322,
- "start": 1130.628,
- "end": 1131.188,
- "text": "though"
- },
- {
- "id": 3323,
- "start": 1131.188,
- "end": 1131.568,
- "text": "there’s"
- },
- {
- "id": 3324,
- "start": 1131.568,
- "end": 1131.628,
- "text": "a"
- },
- {
- "id": 3325,
- "start": 1131.628,
- "end": 1132.028,
- "text": "betrayal"
- },
- {
- "id": 3326,
- "start": 1132.028,
- "end": 1132.098,
- "text": "of"
- },
- {
- "id": 3327,
- "start": 1132.098,
- "end": 1134.388,
- "text": "trust."
- },
- {
- "id": 3328,
- "start": 1134.388,
- "end": 1134.628,
- "text": "We"
- },
- {
- "id": 3329,
- "start": 1134.628,
- "end": 1134.838,
- "text": "didn’t"
- },
- {
- "id": 3330,
- "start": 1134.838,
- "end": 1135.008,
- "text": "sit"
- },
- {
- "id": 3331,
- "start": 1135.008,
- "end": 1135.128,
- "text": "on"
- },
- {
- "id": 3332,
- "start": 1135.128,
- "end": 1135.188,
- "text": "our"
- },
- {
- "id": 3333,
- "start": 1135.188,
- "end": 1135.708,
- "text": "hands"
- },
- {
- "id": 3334,
- "start": 1135.708,
- "end": 1135.918,
- "text": "back"
- },
- {
- "id": 3335,
- "start": 1135.918,
- "end": 1136.278,
- "text": "then."
- },
- {
- "id": 3336,
- "start": 1136.278,
- "end": 1136.438,
- "text": "We"
- },
- {
- "id": 3337,
- "start": 1136.438,
- "end": 1136.708,
- "text": "spun"
- },
- {
- "id": 3338,
- "start": 1136.708,
- "end": 1136.808,
- "text": "up"
- },
- {
- "id": 3339,
- "start": 1136.808,
- "end": 1136.858,
- "text": "a"
- },
- {
- "id": 3340,
- "start": 1136.858,
- "end": 1137.278,
- "text": "task"
- },
- {
- "id": 3341,
- "start": 1137.278,
- "end": 1137.988,
- "text": "force"
- },
- {
- "id": 3342,
- "start": 1137.988,
- "end": 1138.108,
- "text": "to"
- },
- {
- "id": 3343,
- "start": 1138.108,
- "end": 1138.298,
- "text": "try"
- },
- {
- "id": 3344,
- "start": 1138.298,
- "end": 1138.378,
- "text": "to"
- },
- {
- "id": 3345,
- "start": 1138.378,
- "end": 1138.908,
- "text": "identify"
- },
- {
- "id": 3346,
- "start": 1138.908,
- "end": 1139.178,
- "text": "what"
- },
- {
- "id": 3347,
- "start": 1139.0430000000001,
- "end": 1139.223,
- "text": "are"
- },
- {
- "id": 3348,
- "start": 1139.178,
- "end": 1139.268,
- "text": "the"
- },
- {
- "id": 3349,
- "start": 1139.268,
- "end": 1139.788,
- "text": "specific"
- },
- {
- "id": 3350,
- "start": 1139.788,
- "end": 1141.028,
- "text": "concerns"
- },
- {
- "id": 3351,
- "start": 1141.028,
- "end": 1141.288,
- "text": "people"
- },
- {
- "id": 3352,
- "start": 1141.288,
- "end": 1141.348,
- "text": "are"
- },
- {
- "id": 3353,
- "start": 1141.938,
- "end": 1142.0879999999997,
- "text": "expressing."
- },
- {
- "id": 3354,
- "start": 1142.588,
- "end": 1142.828,
- "text": "What"
- },
- {
- "id": 3355,
- "start": 1142.828,
- "end": 1142.888,
- "text": "are"
- },
- {
- "id": 3356,
- "start": 1142.888,
- "end": 1143.008,
- "text": "the"
- },
- {
- "id": 3357,
- "start": 1143.008,
- "end": 1143.548,
- "text": "features"
- },
- {
- "id": 3358,
- "start": 1143.548,
- "end": 1143.768,
- "text": "and"
- },
- {
- "id": 3359,
- "start": 1143.978,
- "end": 1144.1380000000001,
- "text": "controls"
- },
- {
- "id": 3360,
- "start": 1144.408,
- "end": 1144.508,
- "text": "that"
- },
- {
- "id": 3361,
- "start": 1144.508,
- "end": 1144.598,
- "text": "we"
- },
- {
- "id": 3362,
- "start": 1144.598,
- "end": 1144.748,
- "text": "need"
- },
- {
- "id": 3363,
- "start": 1144.748,
- "end": 1144.838,
- "text": "to"
- },
- {
- "id": 3364,
- "start": 1144.838,
- "end": 1145.208,
- "text": "give"
- },
- {
- "id": 3365,
- "start": 1145.208,
- "end": 1145.328,
- "text": "to"
- },
- {
- "id": 3366,
- "start": 1145.328,
- "end": 1146.138,
- "text": "people"
- },
- {
- "id": 3367,
- "start": 1146.138,
- "end": 1146.328,
- "text": "so"
- },
- {
- "id": 3368,
- "start": 1146.328,
- "end": 1146.478,
- "text": "that"
- },
- {
- "id": 3369,
- "start": 1146.478,
- "end": 1146.618,
- "text": "they"
- },
- {
- "id": 3370,
- "start": 1146.618,
- "end": 1146.798,
- "text": "feel"
- },
- {
- "id": 3371,
- "start": 1146.798,
- "end": 1146.908,
- "text": "like"
- },
- {
- "id": 3372,
- "start": 1146.908,
- "end": 1146.998,
- "text": "they"
- },
- {
- "id": 3373,
- "start": 1146.998,
- "end": 1147.188,
- "text": "have"
- },
- {
- "id": 3374,
- "start": 1147.188,
- "end": 1147.388,
- "text": "some"
- },
- {
- "id": 3375,
- "start": 1147.388,
- "end": 1148.308,
- "text": "agency"
- },
- {
- "id": 3376,
- "start": 1148.308,
- "end": 1148.528,
- "text": "over"
- },
- {
- "id": 3377,
- "start": 1148.528,
- "end": 1148.628,
- "text": "the"
- },
- {
- "id": 3378,
- "start": 1148.628,
- "end": 1149.068,
- "text": "information"
- },
- {
- "id": 3379,
- "start": 1149.068,
- "end": 1149.198,
- "text": "that’s"
- },
- {
- "id": 3380,
- "start": 1149.198,
- "end": 1149.348,
- "text": "being"
- },
- {
- "id": 3381,
- "start": 1149.348,
- "end": 1149.618,
- "text": "shared"
- },
- {
- "id": 3382,
- "start": 1149.618,
- "end": 1149.778,
- "text": "over"
- },
- {
- "id": 3383,
- "start": 1150.028,
- "end": 1150.1813333333334,
- "text": "News"
- },
- {
- "id": 3384,
- "start": 1150.4379999999999,
- "end": 1150.5846666666666,
- "text": "Feed?"
- },
- {
- "id": 3385,
- "start": 1150.848,
- "end": 1150.988,
- "text": "And"
- },
- {
- "id": 3386,
- "start": 1150.988,
- "end": 1151.078,
- "text": "then"
- },
- {
- "id": 3387,
- "start": 1151.078,
- "end": 1151.188,
- "text": "we"
- },
- {
- "id": 3388,
- "start": 1151.188,
- "end": 1151.538,
- "text": "launched"
- },
- {
- "id": 3389,
- "start": 1151.538,
- "end": 1151.598,
- "text": "a"
- },
- {
- "id": 3390,
- "start": 1151.598,
- "end": 1151.968,
- "text": "whole"
- },
- {
- "id": 3391,
- "start": 1151.968,
- "end": 1152.128,
- "text": "new"
- },
- {
- "id": 3392,
- "start": 1152.128,
- "end": 1152.348,
- "text": "set"
- },
- {
- "id": 3393,
- "start": 1152.348,
- "end": 1152.448,
- "text": "of"
- },
- {
- "id": 3394,
- "start": 1152.448,
- "end": 1152.858,
- "text": "controls"
- },
- {
- "id": 3395,
- "start": 1152.858,
- "end": 1153.108,
- "text": "within,"
- },
- {
- "id": 3396,
- "start": 1153.108,
- "end": 1153.288,
- "text": "like,"
- },
- {
- "id": 3397,
- "start": 1153.288,
- "end": 1153.568,
- "text": "five"
- },
- {
- "id": 3398,
- "start": 1153.568,
- "end": 1153.868,
- "text": "business"
- },
- {
- "id": 3399,
- "start": 1153.868,
- "end": 1154.098,
- "text": "days"
- },
- {
- "id": 3400,
- "start": 1154.038,
- "end": 1154.193,
- "text": "of"
- },
- {
- "id": 3401,
- "start": 1154.208,
- "end": 1154.288,
- "text": "the"
- },
- {
- "id": 3402,
- "start": 1154.288,
- "end": 1154.478,
- "text": "News"
- },
- {
- "id": 3403,
- "start": 1154.478,
- "end": 1154.658,
- "text": "Feed"
- },
- {
- "id": 3404,
- "start": 1154.658,
- "end": 1156.488,
- "text": "launch."
- },
- {
- "id": 3405,
- "start": 1156.488,
- "end": 1156.608,
- "text": "There"
- },
- {
- "id": 3406,
- "start": 1156.608,
- "end": 1156.678,
- "text": "were"
- },
- {
- "id": 3407,
- "start": 1156.678,
- "end": 1157.068,
- "text": "engineers"
- },
- {
- "id": 3408,
- "start": 1157.068,
- "end": 1157.328,
- "text": "working"
- },
- {
- "id": 3409,
- "start": 1157.328,
- "end": 1157.508,
- "text": "around"
- },
- {
- "id": 3410,
- "start": 1157.508,
- "end": 1157.568,
- "text": "the"
- },
- {
- "id": 3411,
- "start": 1157.568,
- "end": 1157.988,
- "text": "clock"
- },
- {
- "id": 3412,
- "start": 1157.8846666666666,
- "end": 1158.1946666666668,
- "text": "to"
- },
- {
- "id": 3413,
- "start": 1158.2013333333332,
- "end": 1158.4013333333332,
- "text": "solve"
- },
- {
- "id": 3414,
- "start": 1158.518,
- "end": 1158.608,
- "text": "for"
- },
- {
- "id": 3415,
- "start": 1158.608,
- "end": 1159.388,
- "text": "this"
- },
- {
- "id": 3416,
- "start": 1159.388,
- "end": 1159.668,
- "text": "because"
- },
- {
- "id": 3417,
- "start": 1159.668,
- "end": 1159.798,
- "text": "we"
- },
- {
- "id": 3418,
- "start": 1159.798,
- "end": 1160.018,
- "text": "felt"
- },
- {
- "id": 3419,
- "start": 1160.018,
- "end": 1160.988,
- "text": "like"
- },
- {
- "id": 3420,
- "start": 1160.988,
- "end": 1161.338,
- "text": "beyond"
- },
- {
- "id": 3421,
- "start": 1161.338,
- "end": 1161.418,
- "text": "it"
- },
- {
- "id": 3422,
- "start": 1161.418,
- "end": 1161.718,
- "text": "being"
- },
- {
- "id": 3423,
- "start": 1161.718,
- "end": 1161.818,
- "text": "a"
- },
- {
- "id": 3424,
- "start": 1161.818,
- "end": 1162.288,
- "text": "potential"
- },
- {
- "id": 3425,
- "start": 1162.288,
- "end": 1162.868,
- "text": "existential"
- },
- {
- "id": 3426,
- "start": 1162.868,
- "end": 1163.368,
- "text": "crisis"
- },
- {
- "id": 3427,
- "start": 1163.368,
- "end": 1163.728,
- "text": "for"
- },
- {
- "id": 3428,
- "start": 1163.718,
- "end": 1163.878,
- "text": "the"
- },
- {
- "id": 3429,
- "start": 1164.4530000000002,
- "end": 1164.6879999999999,
- "text": "product,"
- },
- {
- "id": 3430,
- "start": 1165.188,
- "end": 1165.498,
- "text": "there"
- },
- {
- "id": 3431,
- "start": 1165.498,
- "end": 1165.628,
- "text": "was"
- },
- {
- "id": 3432,
- "start": 1165.628,
- "end": 1165.728,
- "text": "a"
- },
- {
- "id": 3433,
- "start": 1165.9979999999998,
- "end": 1166.193,
- "text": "real"
- },
- {
- "id": 3434,
- "start": 1166.368,
- "end": 1166.658,
- "text": "sense"
- },
- {
- "id": 3435,
- "start": 1166.658,
- "end": 1166.778,
- "text": "of"
- },
- {
- "id": 3436,
- "start": 1166.778,
- "end": 1167.108,
- "text": "duty"
- },
- {
- "id": 3437,
- "start": 1167.108,
- "end": 1167.548,
- "text": "to"
- },
- {
- "id": 3438,
- "start": 1167.548,
- "end": 1167.658,
- "text": "the"
- },
- {
- "id": 3439,
- "start": 1167.658,
- "end": 1167.928,
- "text": "user"
- },
- {
- "id": 3440,
- "start": 1167.928,
- "end": 1168.348,
- "text": "base"
- },
- {
- "id": 3441,
- "start": 1168.348,
- "end": 1168.488,
- "text": "and"
- },
- {
- "id": 3442,
- "start": 1168.488,
- "end": 1168.528,
- "text": "a"
- },
- {
- "id": 3443,
- "start": 1168.528,
- "end": 1168.728,
- "text": "sense"
- },
- {
- "id": 3444,
- "start": 1168.728,
- "end": 1168.798,
- "text": "of"
- },
- {
- "id": 3445,
- "start": 1168.798,
- "end": 1169.538,
- "text": "responsibility"
- },
- {
- "id": 3446,
- "start": 1169.538,
- "end": 1169.838,
- "text": "for"
- },
- {
- "id": 3447,
- "start": 1169.838,
- "end": 1170.888,
- "text": "launching"
- },
- {
- "id": 3448,
- "start": 1170.888,
- "end": 1171.078,
- "text": "that"
- },
- {
- "id": 3449,
- "start": 1171.078,
- "end": 1171.398,
- "text": "feature"
- },
- {
- "id": 3450,
- "start": 1171.2930000000001,
- "end": 1171.578,
- "text": "and"
- },
- {
- "id": 3451,
- "start": 1171.508,
- "end": 1171.758,
- "text": "getting"
- },
- {
- "id": 3452,
- "start": 1171.758,
- "end": 1171.908,
- "text": "that"
- },
- {
- "id": 3453,
- "start": 1171.908,
- "end": 1172.058,
- "text": "kind"
- },
- {
- "id": 3454,
- "start": 1172.058,
- "end": 1172.128,
- "text": "of"
- },
- {
- "id": 3455,
- "start": 1172.128,
- "end": 1174.388,
- "text": "response."
- },
- {
- "id": 3456,
- "start": 1174.388,
- "end": 1174.728,
- "text": "That’s"
- },
- {
- "id": 3457,
- "start": 1174.728,
- "end": 1174.888,
- "text": "been"
- },
- {
- "id": 3458,
- "start": 1174.888,
- "end": 1174.968,
- "text": "a"
- },
- {
- "id": 3459,
- "start": 1174.968,
- "end": 1175.268,
- "text": "really"
- },
- {
- "id": 3460,
- "start": 1175.268,
- "end": 1175.868,
- "text": "consistent"
- },
- {
- "id": 3461,
- "start": 1175.868,
- "end": 1176.398,
- "text": "thread"
- },
- {
- "id": 3462,
- "start": 1176.398,
- "end": 1176.598,
- "text": "with"
- },
- {
- "id": 3463,
- "start": 1176.598,
- "end": 1176.738,
- "text": "this"
- },
- {
- "id": 3464,
- "start": 1176.738,
- "end": 1177.318,
- "text": "company"
- },
- {
- "id": 3465,
- "start": 1177.318,
- "end": 1177.448,
- "text": "for"
- },
- {
- "id": 3466,
- "start": 1177.448,
- "end": 1177.558,
- "text": "as"
- },
- {
- "id": 3467,
- "start": 1177.558,
- "end": 1177.768,
- "text": "long"
- },
- {
- "id": 3468,
- "start": 1177.768,
- "end": 1177.898,
- "text": "as"
- },
- {
- "id": 3469,
- "start": 1177.898,
- "end": 1178.048,
- "text": "I’ve"
- },
- {
- "id": 3470,
- "start": 1178.048,
- "end": 1178.248,
- "text": "known"
- },
- {
- "id": 3471,
- "start": 1178.248,
- "end": 1178.348,
- "text": "it."
- },
- {
- "id": 3472,
- "start": 1178.618,
- "end": 1178.733,
- "text": "…"
- },
- {
- "id": 3473,
- "start": 1178.988,
- "end": 1179.118,
- "text": "I"
- },
- {
- "id": 3474,
- "start": 1179.118,
- "end": 1179.278,
- "text": "mean,"
- },
- {
- "id": 3475,
- "start": 1179.278,
- "end": 1179.398,
- "text": "you"
- },
- {
- "id": 3476,
- "start": 1179.398,
- "end": 1179.578,
- "text": "were"
- },
- {
- "id": 3477,
- "start": 1179.578,
- "end": 1179.648,
- "text": "a"
- },
- {
- "id": 3478,
- "start": 1179.648,
- "end": 1179.948,
- "text": "much"
- },
- {
- "id": 3479,
- "start": 1179.948,
- "end": 1180.278,
- "text": "smaller"
- },
- {
- "id": 3480,
- "start": 1180.278,
- "end": 1180.718,
- "text": "company"
- },
- {
- "id": 3481,
- "start": 1180.718,
- "end": 1181.008,
- "text": "back"
- },
- {
- "id": 3482,
- "start": 1181.113,
- "end": 1181.383,
- "text": "then."
- },
- {
- "id": 3483,
- "start": 1181.508,
- "end": 1181.758,
- "text": "And"
- },
- {
- "id": 3484,
- "start": 1181.758,
- "end": 1181.898,
- "text": "when"
- },
- {
- "id": 3485,
- "start": 1181.898,
- "end": 1182.008,
- "text": "you"
- },
- {
- "id": 3486,
- "start": 1182.008,
- "end": 1182.238,
- "text": "grow"
- },
- {
- "id": 3487,
- "start": 1182.238,
- "end": 1182.358,
- "text": "to"
- },
- {
- "id": 3488,
- "start": 1182.358,
- "end": 1182.438,
- "text": "a"
- },
- {
- "id": 3489,
- "start": 1182.438,
- "end": 1182.838,
- "text": "scale"
- },
- {
- "id": 3490,
- "start": 1182.838,
- "end": 1183.658,
- "text": "of"
- },
- {
- "id": 3491,
- "start": 1183.658,
- "end": 1183.838,
- "text": "2.2"
- },
- {
- "id": 3492,
- "start": 1183.838,
- "end": 1184.598,
- "text": "billion"
- },
- {
- "id": 3493,
- "start": 1184.598,
- "end": 1184.928,
- "text": "and"
- },
- {
- "id": 3494,
- "start": 1184.928,
- "end": 1185.128,
- "text": "you’ve"
- },
- {
- "id": 3495,
- "start": 1185.128,
- "end": 1185.478,
- "text": "got"
- },
- {
- "id": 3496,
- "start": 1185.478,
- "end": 1185.998,
- "text": "major"
- },
- {
- "id": 3497,
- "start": 1185.998,
- "end": 1186.698,
- "text": "problems"
- },
- {
- "id": 3498,
- "start": 1186.698,
- "end": 1186.878,
- "text": "that"
- },
- {
- "id": 3499,
- "start": 1187.343,
- "end": 1187.6030000000003,
- "text": "develop"
- },
- {
- "id": 3500,
- "start": 1187.988,
- "end": 1188.328,
- "text": "all"
- },
- {
- "id": 3501,
- "start": 1188.328,
- "end": 1188.548,
- "text": "over"
- },
- {
- "id": 3502,
- "start": 1188.548,
- "end": 1188.658,
- "text": "the"
- },
- {
- "id": 3503,
- "start": 1188.658,
- "end": 1189.208,
- "text": "world"
- },
- {
- "id": 3504,
- "start": 1189.208,
- "end": 1189.848,
- "text": "in"
- },
- {
- "id": 3505,
- "start": 1189.848,
- "end": 1190.138,
- "text": "all"
- },
- {
- "id": 3506,
- "start": 1190.138,
- "end": 1190.428,
- "text": "sorts"
- },
- {
- "id": 3507,
- "start": 1190.428,
- "end": 1190.518,
- "text": "of"
- },
- {
- "id": 3508,
- "start": 1190.518,
- "end": 1191.378,
- "text": "languages,"
- },
- {
- "id": 3509,
- "start": 1191.378,
- "end": 1191.508,
- "text": "do"
- },
- {
- "id": 3510,
- "start": 1191.508,
- "end": 1191.578,
- "text": "you"
- },
- {
- "id": 3511,
- "start": 1191.578,
- "end": 1191.868,
- "text": "think"
- },
- {
- "id": 3512,
- "start": 1191.868,
- "end": 1191.938,
- "text": "the"
- },
- {
- "id": 3513,
- "start": 1191.938,
- "end": 1192.458,
- "text": "company’s"
- },
- {
- "id": 3514,
- "start": 1192.458,
- "end": 1192.808,
- "text": "been"
- },
- {
- "id": 3515,
- "start": 1192.808,
- "end": 1194.078,
- "text": "responsive,"
- },
- {
- "id": 3516,
- "start": 1194.078,
- "end": 1194.318,
- "text": "and"
- },
- {
- "id": 3517,
- "start": 1194.318,
- "end": 1194.578,
- "text": "can"
- },
- {
- "id": 3518,
- "start": 1194.578,
- "end": 1194.828,
- "text": "be"
- },
- {
- "id": 3519,
- "start": 1194.828,
- "end": 1195.458,
- "text": "responsive"
- },
- {
- "id": 3520,
- "start": 1195.458,
- "end": 1195.568,
- "text": "at"
- },
- {
- "id": 3521,
- "start": 1195.568,
- "end": 1195.768,
- "text": "that"
- },
- {
- "id": 3522,
- "start": 1195.768,
- "end": 1195.978,
- "text": "type"
- },
- {
- "id": 3523,
- "start": 1195.978,
- "end": 1196.038,
- "text": "of"
- },
- {
- "id": 3524,
- "start": 1196.038,
- "end": 1196.838,
- "text": "scale?"
- },
- {
- "id": 3525,
- "start": 1196.838,
- "end": 1196.988,
- "text": "I"
- },
- {
- "id": 3526,
- "start": 1196.988,
- "end": 1197.218,
- "text": "think"
- },
- {
- "id": 3527,
- "start": 1197.218,
- "end": 1197.468,
- "text": "that"
- },
- {
- "id": 3528,
- "start": 1197.468,
- "end": 1197.918,
- "text": "it’s"
- },
- {
- "id": 3529,
- "start": 1197.918,
- "end": 1198.158,
- "text": "starting"
- },
- {
- "id": 3530,
- "start": 1198.158,
- "end": 1198.268,
- "text": "to"
- },
- {
- "id": 3531,
- "start": 1198.268,
- "end": 1198.638,
- "text": "show"
- },
- {
- "id": 3532,
- "start": 1198.638,
- "end": 1198.848,
- "text": "that"
- },
- {
- "id": 3533,
- "start": 1198.848,
- "end": 1198.998,
- "text": "at"
- },
- {
- "id": 3534,
- "start": 1198.998,
- "end": 1199.158,
- "text": "this"
- },
- {
- "id": 3535,
- "start": 1199.158,
- "end": 1199.498,
- "text": "scale,"
- },
- {
- "id": 3536,
- "start": 1199.498,
- "end": 1199.608,
- "text": "it"
- },
- {
- "id": 3537,
- "start": 1199.608,
- "end": 1199.768,
- "text": "is"
- },
- {
- "id": 3538,
- "start": 1199.768,
- "end": 1200.318,
- "text": "challenging"
- },
- {
- "id": 3539,
- "start": 1200.318,
- "end": 1200.528,
- "text": "to"
- },
- {
- "id": 3540,
- "start": 1200.528,
- "end": 1200.688,
- "text": "be"
- },
- {
- "id": 3541,
- "start": 1200.688,
- "end": 1201.238,
- "text": "speedy"
- },
- {
- "id": 3542,
- "start": 1201.238,
- "end": 1201.348,
- "text": "and"
- },
- {
- "id": 3543,
- "start": 1201.348,
- "end": 1202.448,
- "text": "hasty"
- },
- {
- "id": 3544,
- "start": 1202.448,
- "end": 1202.758,
- "text": "with"
- },
- {
- "id": 3545,
- "start": 1202.758,
- "end": 1203.848,
- "text": "responding"
- },
- {
- "id": 3546,
- "start": 1203.848,
- "end": 1204.328,
- "text": "to"
- },
- {
- "id": 3547,
- "start": 1204.328,
- "end": 1204.448,
- "text": "the"
- },
- {
- "id": 3548,
- "start": 1204.448,
- "end": 1204.688,
- "text": "kinds"
- },
- {
- "id": 3549,
- "start": 1204.688,
- "end": 1204.778,
- "text": "of"
- },
- {
- "id": 3550,
- "start": 1204.778,
- "end": 1205.148,
- "text": "problems"
- },
- {
- "id": 3551,
- "start": 1205.148,
- "end": 1205.308,
- "text": "that"
- },
- {
- "id": 3552,
- "start": 1205.308,
- "end": 1205.438,
- "text": "may"
- },
- {
- "id": 3553,
- "start": 1205.438,
- "end": 1206.228,
- "text": "emerge"
- },
- {
- "id": 3554,
- "start": 1206.228,
- "end": 1206.848,
- "text": "supporting"
- },
- {
- "id": 3555,
- "start": 1206.848,
- "end": 1206.898,
- "text": "a"
- },
- {
- "id": 3556,
- "start": 1206.898,
- "end": 1207.168,
- "text": "user"
- },
- {
- "id": 3557,
- "start": 1207.168,
- "end": 1207.418,
- "text": "base"
- },
- {
- "id": 3558,
- "start": 1207.418,
- "end": 1207.518,
- "text": "of"
- },
- {
- "id": 3559,
- "start": 1207.518,
- "end": 1207.768,
- "text": "that"
- },
- {
- "id": 3560,
- "start": 1207.768,
- "end": 1209.558,
- "text": "scope."
- },
- {
- "id": 3561,
- "start": 1209.558,
- "end": 1209.718,
- "text": "But"
- },
- {
- "id": 3562,
- "start": 1209.718,
- "end": 1209.868,
- "text": "it’s"
- },
- {
- "id": 3563,
- "start": 1209.868,
- "end": 1210.198,
- "text": "not"
- },
- {
- "id": 3564,
- "start": 1210.198,
- "end": 1210.848,
- "text": "for"
- },
- {
- "id": 3565,
- "start": 1210.848,
- "end": 1211.228,
- "text": "lack"
- },
- {
- "id": 3566,
- "start": 1211.228,
- "end": 1211.378,
- "text": "of"
- },
- {
- "id": 3567,
- "start": 1211.378,
- "end": 1212.248,
- "text": "desire"
- },
- {
- "id": 3568,
- "start": 1211.823,
- "end": 1212.4180000000001,
- "text": "or"
- },
- {
- "id": 3569,
- "start": 1212.268,
- "end": 1212.588,
- "text": "lack"
- },
- {
- "id": 3570,
- "start": 1212.588,
- "end": 1212.668,
- "text": "of"
- },
- {
- "id": 3571,
- "start": 1212.668,
- "end": 1213.278,
- "text": "integrity"
- },
- {
- "id": 3572,
- "start": 1213.278,
- "end": 1214.088,
- "text": "or"
- },
- {
- "id": 3573,
- "start": 1214.088,
- "end": 1215.018,
- "text": "because"
- },
- {
- "id": 3574,
- "start": 1214.758,
- "end": 1215.428,
- "text": "some"
- },
- {
- "id": 3575,
- "start": 1215.4329999999998,
- "end": 1215.938,
- "text": "profit-seeking"
- },
- {
- "id": 3576,
- "start": 1216.108,
- "end": 1216.448,
- "text": "motive"
- },
- {
- "id": 3577,
- "start": 1216.448,
- "end": 1216.838,
- "text": "is"
- },
- {
- "id": 3578,
- "start": 1216.838,
- "end": 1216.968,
- "text": "in"
- },
- {
- "id": 3579,
- "start": 1216.968,
- "end": 1217.068,
- "text": "the"
- },
- {
- "id": 3580,
- "start": 1217.068,
- "end": 1217.438,
- "text": "way."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 1.41,
- "end": 4.88,
- "speaker": "James Jacoby"
- },
- {
- "id": 1,
- "start": 4.88,
- "end": 7.21,
- "speaker": "James Jacoby"
- },
- {
- "id": 2,
- "start": 7.21,
- "end": 10.803333333333335,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 3,
- "start": 10.94,
- "end": 14.635000000000002,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 4,
- "start": 14.94,
- "end": 25.43,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 5,
- "start": 25.43,
- "end": 32.64,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 6,
- "start": 32.64,
- "end": 35.64,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 7,
- "start": 35.18,
- "end": 37.3,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 8,
- "start": 37.36937499999999,
- "end": 39.73,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 9,
- "start": 39.73,
- "end": 52.71,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 10,
- "start": 52.71,
- "end": 59.01,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 11,
- "start": 59.01,
- "end": 62.32,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 12,
- "start": 62.32,
- "end": 71.31,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 13,
- "start": 71.31,
- "end": 76.27,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 14,
- "start": 76.27,
- "end": 81.625,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 15,
- "start": 81.93,
- "end": 89.16,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 16,
- "start": 89.075,
- "end": 94.14666666666666,
- "speaker": "James Jacoby"
- },
- {
- "id": 17,
- "start": 93.935,
- "end": 101.42,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 18,
- "start": 101.72,
- "end": 110.58,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 19,
- "start": 110.58,
- "end": 119.816,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 20,
- "start": 119.58399999999997,
- "end": 122.63500000000002,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 21,
- "start": 123.12,
- "end": 149.29000000000002,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 22,
- "start": 149.82,
- "end": 151.77,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 23,
- "start": 151.77,
- "end": 160.67,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 24,
- "start": 160.67,
- "end": 164.52,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 25,
- "start": 164.52,
- "end": 166.11,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 26,
- "start": 166.11,
- "end": 168.73,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 27,
- "start": 168.73,
- "end": 183.83,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 28,
- "start": 183.83,
- "end": 187.92999999999995,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 29,
- "start": 188.81,
- "end": 195.02,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 30,
- "start": 195.02,
- "end": 199.45,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 31,
- "start": 199.45,
- "end": 201.065,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 32,
- "start": 201.3,
- "end": 207.30500000000004,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 33,
- "start": 207.62,
- "end": 210.66,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 34,
- "start": 210.66,
- "end": 214.58399999999995,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 35,
- "start": 214.21,
- "end": 225.02,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 36,
- "start": 225.02,
- "end": 237.19,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 37,
- "start": 237.19,
- "end": 242.41,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 38,
- "start": 242.41,
- "end": 244.74,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 39,
- "start": 244.495,
- "end": 248.94,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 40,
- "start": 248.94,
- "end": 250.33,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 41,
- "start": 250.33,
- "end": 254.3,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 42,
- "start": 254.3,
- "end": 255.88,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 43,
- "start": 255.88,
- "end": 258.16,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 44,
- "start": 258.16,
- "end": 259.48999999999995,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 45,
- "start": 260.02,
- "end": 264.34,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 46,
- "start": 264.34,
- "end": 266.99,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 47,
- "start": 267.38,
- "end": 268.08,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 48,
- "start": 268.08,
- "end": 269.58,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 49,
- "start": 270.01,
- "end": 280.37,
- "speaker": "James Jacoby"
- },
- {
- "id": 50,
- "start": 280.37,
- "end": 290.82,
- "speaker": "James Jacoby"
- },
- {
- "id": 51,
- "start": 290.82,
- "end": 304.09,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 52,
- "start": 304.09,
- "end": 308.59,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 53,
- "start": 308.59,
- "end": 315.875,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 54,
- "start": 316.33,
- "end": 333.05,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 55,
- "start": 333.73,
- "end": 341.6,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 56,
- "start": 341.05,
- "end": 347.64,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 57,
- "start": 347.64,
- "end": 350.77,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 58,
- "start": 350.77,
- "end": 352.92,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 59,
- "start": 352.92,
- "end": 355.67,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 60,
- "start": 355.67,
- "end": 368.916,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 61,
- "start": 368.916,
- "end": 381.546,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 62,
- "start": 381.481,
- "end": 385.206,
- "speaker": "James Jacoby"
- },
- {
- "id": 63,
- "start": 385.206,
- "end": 388.076,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 64,
- "start": 388.076,
- "end": 402.67100000000005,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 65,
- "start": 403.196,
- "end": 408.136,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 66,
- "start": 408.456,
- "end": 413.21099999999996,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 67,
- "start": 413.496,
- "end": 414.476,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 68,
- "start": 414.476,
- "end": 420.296,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 69,
- "start": 420.296,
- "end": 422.96600000000007,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 70,
- "start": 423.53600000000006,
- "end": 432.876,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 71,
- "start": 432.876,
- "end": 436.046,
- "speaker": "James Jacoby"
- },
- {
- "id": 72,
- "start": 436.266,
- "end": 439.236,
- "speaker": "James Jacoby"
- },
- {
- "id": 73,
- "start": 439.236,
- "end": 440.166,
- "speaker": "James Jacoby"
- },
- {
- "id": 74,
- "start": 440.26099999999997,
- "end": 440.57599999999996,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 75,
- "start": 440.696,
- "end": 452.396,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 76,
- "start": 452.396,
- "end": 469.586,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 77,
- "start": 469.586,
- "end": 488.576,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 78,
- "start": 488.776,
- "end": 500.716,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 79,
- "start": 500.716,
- "end": 517.176,
- "speaker": "James Jacoby"
- },
- {
- "id": 80,
- "start": 517.1659999999999,
- "end": 517.566,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 81,
- "start": 517.796,
- "end": 524.716,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 82,
- "start": 524.716,
- "end": 526.716,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 83,
- "start": 526.716,
- "end": 535.606,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 84,
- "start": 535.936,
- "end": 538.896,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 85,
- "start": 538.896,
- "end": 544.916,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 86,
- "start": 544.916,
- "end": 554.686,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 87,
- "start": 554.3960000000001,
- "end": 556.776,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 88,
- "start": 556.776,
- "end": 560.4409999999999,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 89,
- "start": 560.976,
- "end": 565.736,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 90,
- "start": 565.736,
- "end": 574.546,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 91,
- "start": 574.546,
- "end": 576.946,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 92,
- "start": 576.946,
- "end": 588.076,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 93,
- "start": 588.076,
- "end": 596.046,
- "speaker": "James Jacoby"
- },
- {
- "id": 94,
- "start": 596.046,
- "end": 596.956,
- "speaker": "James Jacoby"
- },
- {
- "id": 95,
- "start": 596.956,
- "end": 597.446,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 96,
- "start": 597.446,
- "end": 598.386,
- "speaker": "James Jacoby"
- },
- {
- "id": 97,
- "start": 598.386,
- "end": 603.476,
- "speaker": "James Jacoby"
- },
- {
- "id": 98,
- "start": 603.476,
- "end": 610.236,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 99,
- "start": 610.236,
- "end": 621.306,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 100,
- "start": 621.9226666666667,
- "end": 634.0310000000002,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 101,
- "start": 635.036,
- "end": 636.436,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 102,
- "start": 636.436,
- "end": 639.456,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 103,
- "start": 639.456,
- "end": 656.2393333333333,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 104,
- "start": 656.1326666666666,
- "end": 658.236,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 105,
- "start": 658.236,
- "end": 667.616,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 106,
- "start": 667.616,
- "end": 673.256,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 107,
- "start": 673.256,
- "end": 676.366,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 108,
- "start": 676.366,
- "end": 687.796,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 109,
- "start": 687.796,
- "end": 689.6659999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 110,
- "start": 689.766,
- "end": 694.536,
- "speaker": "James Jacoby"
- },
- {
- "id": 111,
- "start": 694.536,
- "end": 696.346,
- "speaker": "James Jacoby"
- },
- {
- "id": 112,
- "start": 696.346,
- "end": 702.541,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 113,
- "start": 702.686,
- "end": 705.1910000000001,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 114,
- "start": 705.636,
- "end": 708.9659999999999,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 115,
- "start": 709.036,
- "end": 715.836,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 116,
- "start": 715.836,
- "end": 720.0443333333334,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 117,
- "start": 719.476,
- "end": 726.166,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 118,
- "start": 727.1010000000001,
- "end": 735.5393333333334,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 119,
- "start": 735.866,
- "end": 741.916,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 120,
- "start": 741.916,
- "end": 754.356,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 121,
- "start": 754.356,
- "end": 764.056,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 122,
- "start": 764.056,
- "end": 767.5285,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 123,
- "start": 767.466,
- "end": 781.616,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 124,
- "start": 781.616,
- "end": 784.056,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 125,
- "start": 784.056,
- "end": 785.696,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 126,
- "start": 785.696,
- "end": 793.256,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 127,
- "start": 793.256,
- "end": 796.356,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 128,
- "start": 796.356,
- "end": 800.646,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 129,
- "start": 800.996,
- "end": 808.506,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 130,
- "start": 808.506,
- "end": 815.726,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 131,
- "start": 815.726,
- "end": 818.6793333333334,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 132,
- "start": 818.806,
- "end": 825.426,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 133,
- "start": 825.426,
- "end": 846.0895,
- "speaker": "James Jacoby"
- },
- {
- "id": 134,
- "start": 846.153,
- "end": 849.923,
- "speaker": "James Jacoby"
- },
- {
- "id": 135,
- "start": 850.5379999999998,
- "end": 850.8330000000003,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 136,
- "start": 851.633,
- "end": 854.593,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 137,
- "start": 854.823,
- "end": 856.9663333333333,
- "speaker": "James Jacoby"
- },
- {
- "id": 138,
- "start": 857.2663333333333,
- "end": 857.3596666666666,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 139,
- "start": 857.713,
- "end": 862.353,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 140,
- "start": 862.353,
- "end": 867.683,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 141,
- "start": 867.683,
- "end": 879.413,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 142,
- "start": 879.413,
- "end": 892.1380000000004,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 143,
- "start": 892.793,
- "end": 902.223,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 144,
- "start": 902.3963333333334,
- "end": 911.033,
- "speaker": "James Jacoby"
- },
- {
- "id": 145,
- "start": 911.033,
- "end": 916.9196666666666,
- "speaker": "James Jacoby"
- },
- {
- "id": 146,
- "start": 917.0830000000001,
- "end": 917.3163333333333,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 147,
- "start": 917.673,
- "end": 925.8530000000001,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 148,
- "start": 926.393,
- "end": 929.223,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 149,
- "start": 929.5596666666668,
- "end": 939.263,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 150,
- "start": 939.263,
- "end": 947.273,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 151,
- "start": 947.273,
- "end": 949.343,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 152,
- "start": 949.343,
- "end": 951.6496666666667,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 153,
- "start": 951.793,
- "end": 967.408,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 154,
- "start": 967.408,
- "end": 975.828,
- "speaker": "James Jacoby"
- },
- {
- "id": 155,
- "start": 975.828,
- "end": 992.4279999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 156,
- "start": 993.368,
- "end": 998.168,
- "speaker": "James Jacoby"
- },
- {
- "id": 157,
- "start": 998.168,
- "end": 1002.568,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 158,
- "start": 1002.568,
- "end": 1009.1079999999998,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 159,
- "start": 1009.238,
- "end": 1014.328,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 160,
- "start": 1014.328,
- "end": 1017.588,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 161,
- "start": 1017.588,
- "end": 1023.3713333333334,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 162,
- "start": 1023.7563333333331,
- "end": 1025.1879999999999,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 163,
- "start": 1025.428,
- "end": 1028.368,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 164,
- "start": 1028.368,
- "end": 1033.668,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 165,
- "start": 1033.668,
- "end": 1057.423,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 166,
- "start": 1057.968,
- "end": 1071.7413333333334,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 167,
- "start": 1071.858,
- "end": 1080.278,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 168,
- "start": 1080.698,
- "end": 1098.098,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 169,
- "start": 1098.098,
- "end": 1117.328,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 170,
- "start": 1117.678,
- "end": 1120.268,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 171,
- "start": 1120.268,
- "end": 1122.2846666666665,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 172,
- "start": 1121.748,
- "end": 1127.468,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 173,
- "start": 1127.468,
- "end": 1134.388,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 174,
- "start": 1134.388,
- "end": 1136.278,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 175,
- "start": 1136.278,
- "end": 1142.0879999999997,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 176,
- "start": 1142.588,
- "end": 1150.5846666666666,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 177,
- "start": 1150.848,
- "end": 1156.488,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 178,
- "start": 1156.488,
- "end": 1174.388,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 179,
- "start": 1174.388,
- "end": 1178.348,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 180,
- "start": 1178.618,
- "end": 1181.383,
- "speaker": "James Jacoby"
- },
- {
- "id": 181,
- "start": 1181.508,
- "end": 1196.838,
- "speaker": "James Jacoby"
- },
- {
- "id": 182,
- "start": 1196.838,
- "end": 1209.558,
- "speaker": "Soleio Cuervo"
- },
- {
- "id": 183,
- "start": 1209.558,
- "end": 1217.438,
- "speaker": "Soleio Cuervo"
- }
- ]
- }
- },
- {
- "_id": "1001cjw29xii80000ird74yb19swa",
- "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
- "title": "Nathaniel Gleicher",
- "description": "Nathaniel Gleicher, Facebook Head of Cybersecurity Policy. Interview for PBS Frontline, The Facebook Dilemma",
- "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Nathaniel+Gleicher-F0ykdaOck_M.mp4",
- "clipName": "The Facebook Dilemma - Nathaniel Gleicher-F0ykdaOck_M.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "id": 0,
- "start": 1.58,
- "end": 1.68,
- "text": "Is"
- },
- {
- "id": 1,
- "start": 1.68,
- "end": 1.78,
- "text": "it"
- },
- {
- "id": 2,
- "start": 1.78,
- "end": 2.28,
- "text": "basically"
- },
- {
- "id": 3,
- "start": 2.28,
- "end": 2.47,
- "text": "your"
- },
- {
- "id": 4,
- "start": 2.47,
- "end": 2.94,
- "text": "job"
- },
- {
- "id": 5,
- "start": 3.405,
- "end": 4.039999999999999,
- "text": "to"
- },
- {
- "id": 6,
- "start": 4.34,
- "end": 5.14,
- "text": "protect"
- },
- {
- "id": 7,
- "start": 5.14,
- "end": 5.35,
- "text": "these"
- },
- {
- "id": 8,
- "start": 5.35,
- "end": 5.99,
- "text": "elections"
- },
- {
- "id": 9,
- "start": 5.99,
- "end": 6.29,
- "text": "coming"
- },
- {
- "id": 10,
- "start": 6.29,
- "end": 6.8,
- "text": "up"
- },
- {
- "id": 11,
- "start": 6.8,
- "end": 7.38,
- "text": "from"
- },
- {
- "id": 12,
- "start": 7.38,
- "end": 7.73,
- "text": "foreign"
- },
- {
- "id": 13,
- "start": 7.73,
- "end": 8.11,
- "text": "actors"
- },
- {
- "id": 14,
- "start": 8.11,
- "end": 8.61,
- "text": "interfering"
- },
- {
- "id": 15,
- "start": 8.61,
- "end": 8.73,
- "text": "with"
- },
- {
- "id": 16,
- "start": 9.375,
- "end": 9.59,
- "text": "Facebook?"
- },
- {
- "id": 17,
- "start": 10.14,
- "end": 10.45,
- "text": "It’s"
- },
- {
- "id": 18,
- "start": 10.45,
- "end": 10.52,
- "text": "a"
- },
- {
- "id": 19,
- "start": 10.52,
- "end": 10.81,
- "text": "big"
- },
- {
- "id": 20,
- "start": 10.81,
- "end": 11.36,
- "text": "team,"
- },
- {
- "id": 21,
- "start": 11.36,
- "end": 11.71,
- "text": "but"
- },
- {
- "id": 22,
- "start": 11.71,
- "end": 12.26,
- "text": "I"
- },
- {
- "id": 23,
- "start": 12.26,
- "end": 12.43,
- "text": "think"
- },
- {
- "id": 24,
- "start": 12.43,
- "end": 12.52,
- "text": "what"
- },
- {
- "id": 25,
- "start": 12.52,
- "end": 12.64,
- "text": "we’re"
- },
- {
- "id": 26,
- "start": 12.64,
- "end": 13.02,
- "text": "focused"
- },
- {
- "id": 27,
- "start": 13.02,
- "end": 13.28,
- "text": "on"
- },
- {
- "id": 28,
- "start": 13.28,
- "end": 14.16,
- "text": "is"
- },
- {
- "id": 29,
- "start": 14.16,
- "end": 14.41,
- "text": "not"
- },
- {
- "id": 30,
- "start": 14.41,
- "end": 14.58,
- "text": "just"
- },
- {
- "id": 31,
- "start": 14.58,
- "end": 14.8,
- "text": "around"
- },
- {
- "id": 32,
- "start": 15.180000000000001,
- "end": 15.379999999999999,
- "text": "elections,"
- },
- {
- "id": 33,
- "start": 15.78,
- "end": 15.96,
- "text": "but"
- },
- {
- "id": 34,
- "start": 15.96,
- "end": 16.15,
- "text": "any"
- },
- {
- "id": 35,
- "start": 16.15,
- "end": 16.34,
- "text": "time"
- },
- {
- "id": 36,
- "start": 16.34,
- "end": 16.41,
- "text": "you"
- },
- {
- "id": 37,
- "start": 16.41,
- "end": 16.53,
- "text": "have"
- },
- {
- "id": 38,
- "start": 16.53,
- "end": 16.74,
- "text": "open"
- },
- {
- "id": 39,
- "start": 16.74,
- "end": 16.98,
- "text": "public"
- },
- {
- "id": 40,
- "start": 16.98,
- "end": 17.25,
- "text": "debate"
- },
- {
- "id": 41,
- "start": 17.25,
- "end": 17.41,
- "text": "like"
- },
- {
- "id": 42,
- "start": 17.4,
- "end": 17.63,
- "text": "this,"
- },
- {
- "id": 43,
- "start": 17.502,
- "end": 17.706,
- "text": "there"
- },
- {
- "id": 44,
- "start": 17.604,
- "end": 17.782,
- "text": "are"
- },
- {
- "id": 45,
- "start": 17.706,
- "end": 17.858,
- "text": "going"
- },
- {
- "id": 46,
- "start": 17.808,
- "end": 17.934,
- "text": "to"
- },
- {
- "id": 47,
- "start": 17.91,
- "end": 18.01,
- "text": "be"
- },
- {
- "id": 48,
- "start": 18.01,
- "end": 18.39,
- "text": "actors"
- },
- {
- "id": 49,
- "start": 18.39,
- "end": 18.49,
- "text": "that"
- },
- {
- "id": 50,
- "start": 18.49,
- "end": 18.55,
- "text": "are"
- },
- {
- "id": 51,
- "start": 18.55,
- "end": 18.67,
- "text": "going"
- },
- {
- "id": 52,
- "start": 18.67,
- "end": 18.73,
- "text": "to"
- },
- {
- "id": 53,
- "start": 18.73,
- "end": 18.84,
- "text": "try"
- },
- {
- "id": 54,
- "start": 18.84,
- "end": 18.91,
- "text": "to"
- },
- {
- "id": 55,
- "start": 18.91,
- "end": 19.63,
- "text": "manipulate"
- },
- {
- "id": 56,
- "start": 19.63,
- "end": 19.83,
- "text": "that"
- },
- {
- "id": 57,
- "start": 19.83,
- "end": 20.1,
- "text": "public"
- },
- {
- "id": 58,
- "start": 20.1,
- "end": 20.43,
- "text": "debate."
- },
- {
- "id": 59,
- "start": 20.43,
- "end": 20.68,
- "text": "How"
- },
- {
- "id": 60,
- "start": 20.68,
- "end": 20.76,
- "text": "do"
- },
- {
- "id": 61,
- "start": 20.76,
- "end": 20.86,
- "text": "we"
- },
- {
- "id": 62,
- "start": 20.86,
- "end": 21.16,
- "text": "figure"
- },
- {
- "id": 63,
- "start": 21.16,
- "end": 22.04,
- "text": "out"
- },
- {
- "id": 64,
- "start": 22.04,
- "end": 22.29,
- "text": "what"
- },
- {
- "id": 65,
- "start": 22.29,
- "end": 22.35,
- "text": "are"
- },
- {
- "id": 66,
- "start": 22.35,
- "end": 22.42,
- "text": "the"
- },
- {
- "id": 67,
- "start": 22.42,
- "end": 22.79,
- "text": "techniques"
- },
- {
- "id": 68,
- "start": 22.79,
- "end": 22.9,
- "text": "they’re"
- },
- {
- "id": 69,
- "start": 22.9,
- "end": 23.71,
- "text": "using,"
- },
- {
- "id": 70,
- "start": 23.71,
- "end": 23.85,
- "text": "and"
- },
- {
- "id": 71,
- "start": 23.85,
- "end": 23.93,
- "text": "how"
- },
- {
- "id": 72,
- "start": 23.93,
- "end": 24,
- "text": "do"
- },
- {
- "id": 73,
- "start": 24,
- "end": 24.07,
- "text": "we"
- },
- {
- "id": 74,
- "start": 24.07,
- "end": 24.22,
- "text": "make"
- },
- {
- "id": 75,
- "start": 24.22,
- "end": 24.29,
- "text": "it"
- },
- {
- "id": 76,
- "start": 24.29,
- "end": 24.48,
- "text": "much"
- },
- {
- "id": 77,
- "start": 24.48,
- "end": 25.4,
- "text": "harder?"
- },
- {
- "id": 78,
- "start": 25.4,
- "end": 26.31,
- "text": "And"
- },
- {
- "id": 79,
- "start": 26.31,
- "end": 26.58,
- "text": "how"
- },
- {
- "id": 80,
- "start": 26.58,
- "end": 26.91,
- "text": "actually"
- },
- {
- "id": 81,
- "start": 26.91,
- "end": 26.99,
- "text": "do"
- },
- {
- "id": 82,
- "start": 26.99,
- "end": 27.05,
- "text": "you"
- },
- {
- "id": 83,
- "start": 27.05,
- "end": 27.22,
- "text": "do"
- },
- {
- "id": 84,
- "start": 27.22,
- "end": 29.8,
- "text": "that?"
- },
- {
- "id": 85,
- "start": 28.32,
- "end": 30.46,
- "text": "So"
- },
- {
- "id": 86,
- "start": 29.635000000000005,
- "end": 31.004999999999995,
- "text": "two"
- },
- {
- "id": 87,
- "start": 30.95,
- "end": 31.55,
- "text": "pieces,"
- },
- {
- "id": 88,
- "start": 31.55,
- "end": 31.81,
- "text": "right?"
- },
- {
- "id": 89,
- "start": 31.81,
- "end": 31.9,
- "text": "The"
- },
- {
- "id": 90,
- "start": 31.9,
- "end": 32.45,
- "text": "first"
- },
- {
- "id": 91,
- "start": 32.45,
- "end": 33.09,
- "text": "is"
- },
- {
- "id": 92,
- "start": 33.09,
- "end": 33.39,
- "text": "we"
- },
- {
- "id": 93,
- "start": 33.39,
- "end": 33.77,
- "text": "have"
- },
- {
- "id": 94,
- "start": 33.77,
- "end": 33.82,
- "text": "a"
- },
- {
- "id": 95,
- "start": 33.82,
- "end": 34.25,
- "text": "manual"
- },
- {
- "id": 96,
- "start": 34.25,
- "end": 34.43,
- "text": "team"
- },
- {
- "id": 97,
- "start": 34.43,
- "end": 34.53,
- "text": "of"
- },
- {
- "id": 98,
- "start": 34.53,
- "end": 35.6,
- "text": "investigators"
- },
- {
- "id": 99,
- "start": 35.6,
- "end": 35.71,
- "text": "and"
- },
- {
- "id": 100,
- "start": 35.71,
- "end": 35.74,
- "text": "a"
- },
- {
- "id": 101,
- "start": 35.74,
- "end": 36.01,
- "text": "manual"
- },
- {
- "id": 102,
- "start": 36.01,
- "end": 36.16,
- "text": "team"
- },
- {
- "id": 103,
- "start": 36.16,
- "end": 36.25,
- "text": "of"
- },
- {
- "id": 104,
- "start": 36.25,
- "end": 36.8,
- "text": "investigators"
- },
- {
- "id": 105,
- "start": 36.8,
- "end": 36.92,
- "text": "that"
- },
- {
- "id": 106,
- "start": 36.864999999999995,
- "end": 37,
- "text": "is"
- },
- {
- "id": 107,
- "start": 36.93,
- "end": 37.08,
- "text": "sort"
- },
- {
- "id": 108,
- "start": 37.08,
- "end": 37.15,
- "text": "of"
- },
- {
- "id": 109,
- "start": 37.15,
- "end": 37.77,
- "text": "searching"
- },
- {
- "id": 110,
- "start": 37.77,
- "end": 38.47,
- "text": "for"
- },
- {
- "id": 111,
- "start": 38.47,
- "end": 38.57,
- "text": "the"
- },
- {
- "id": 112,
- "start": 38.57,
- "end": 38.76,
- "text": "bad"
- },
- {
- "id": 113,
- "start": 39.055,
- "end": 39.24,
- "text": "behavior."
- },
- {
- "id": 114,
- "start": 39.54,
- "end": 39.72,
- "text": "We"
- },
- {
- "id": 115,
- "start": 39.72,
- "end": 39.89,
- "text": "think"
- },
- {
- "id": 116,
- "start": 39.89,
- "end": 39.97,
- "text": "of"
- },
- {
- "id": 117,
- "start": 39.97,
- "end": 40.09,
- "text": "this"
- },
- {
- "id": 118,
- "start": 40.09,
- "end": 40.25,
- "text": "kind"
- },
- {
- "id": 119,
- "start": 40.25,
- "end": 40.31,
- "text": "of"
- },
- {
- "id": 120,
- "start": 40.31,
- "end": 40.47,
- "text": "like"
- },
- {
- "id": 121,
- "start": 40.47,
- "end": 40.68,
- "text": "looking"
- },
- {
- "id": 122,
- "start": 40.68,
- "end": 40.79,
- "text": "for"
- },
- {
- "id": 123,
- "start": 40.79,
- "end": 41.07,
- "text": "needles"
- },
- {
- "id": 124,
- "start": 41.07,
- "end": 41.14,
- "text": "in"
- },
- {
- "id": 125,
- "start": 41.14,
- "end": 41.18,
- "text": "a"
- },
- {
- "id": 126,
- "start": 41.18,
- "end": 42.03,
- "text": "haystack,"
- },
- {
- "id": 127,
- "start": 42.03,
- "end": 42.3,
- "text": "because"
- },
- {
- "id": 128,
- "start": 42.3,
- "end": 42.36,
- "text": "it"
- },
- {
- "id": 129,
- "start": 42.379999999999995,
- "end": 42.51,
- "text": "can"
- },
- {
- "id": 130,
- "start": 42.46,
- "end": 42.66,
- "text": "take"
- },
- {
- "id": 131,
- "start": 42.66,
- "end": 42.72,
- "text": "a"
- },
- {
- "id": 132,
- "start": 42.72,
- "end": 43.12,
- "text": "long"
- },
- {
- "id": 133,
- "start": 43.12,
- "end": 43.52,
- "text": "time."
- },
- {
- "id": 134,
- "start": 43.52,
- "end": 43.59,
- "text": "It"
- },
- {
- "id": 135,
- "start": 43.6,
- "end": 43.68000000000001,
- "text": "can"
- },
- {
- "id": 136,
- "start": 43.68,
- "end": 43.77,
- "text": "be"
- },
- {
- "id": 137,
- "start": 43.77,
- "end": 43.97,
- "text": "really"
- },
- {
- "id": 138,
- "start": 43.97,
- "end": 44.4,
- "text": "burdensome"
- },
- {
- "id": 139,
- "start": 44.4,
- "end": 44.5,
- "text": "to"
- },
- {
- "id": 140,
- "start": 44.58,
- "end": 44.71,
- "text": "run"
- },
- {
- "id": 141,
- "start": 44.76,
- "end": 44.92,
- "text": "these"
- },
- {
- "id": 142,
- "start": 45.04,
- "end": 45.18000000000001,
- "text": "investigations."
- },
- {
- "id": 143,
- "start": 45.32,
- "end": 45.440000000000005,
- "text": "It"
- },
- {
- "id": 144,
- "start": 45.6,
- "end": 45.7,
- "text": "can"
- },
- {
- "id": 145,
- "start": 45.7,
- "end": 45.86,
- "text": "take"
- },
- {
- "id": 146,
- "start": 45.86750000000001,
- "end": 46.03,
- "text": "weeks;"
- },
- {
- "id": 147,
- "start": 46.035000000000004,
- "end": 46.199999999999996,
- "text": "it"
- },
- {
- "id": 148,
- "start": 46.2025,
- "end": 46.37,
- "text": "can"
- },
- {
- "id": 149,
- "start": 46.37,
- "end": 46.54,
- "text": "take"
- },
- {
- "id": 150,
- "start": 46.54,
- "end": 47.05,
- "text": "months."
- },
- {
- "id": 151,
- "start": 47.05,
- "end": 47.24,
- "text": "But"
- },
- {
- "id": 152,
- "start": 47.24,
- "end": 47.4,
- "text": "this"
- },
- {
- "id": 153,
- "start": 47.4,
- "end": 47.51,
- "text": "is"
- },
- {
- "id": 154,
- "start": 47.51,
- "end": 47.58,
- "text": "the"
- },
- {
- "id": 155,
- "start": 47.58,
- "end": 47.77,
- "text": "most"
- },
- {
- "id": 156,
- "start": 47.77,
- "end": 48.24,
- "text": "effective"
- },
- {
- "id": 157,
- "start": 48.24,
- "end": 48.43,
- "text": "way"
- },
- {
- "id": 158,
- "start": 48.43,
- "end": 48.54,
- "text": "to"
- },
- {
- "id": 159,
- "start": 48.54,
- "end": 49.09,
- "text": "find"
- },
- {
- "id": 160,
- "start": 49.09,
- "end": 49.17,
- "text": "the"
- },
- {
- "id": 161,
- "start": 49.24,
- "end": 49.595,
- "text": "really"
- },
- {
- "id": 162,
- "start": 49.39,
- "end": 50.02,
- "text": "sophisticated"
- },
- {
- "id": 163,
- "start": 50.02,
- "end": 50.2,
- "text": "bad"
- },
- {
- "id": 164,
- "start": 50.2,
- "end": 51.04,
- "text": "actors."
- },
- {
- "id": 165,
- "start": 50.65,
- "end": 51.22,
- "text": "You"
- },
- {
- "id": 166,
- "start": 51.25499999999999,
- "end": 51.69500000000001,
- "text": "complement"
- },
- {
- "id": 167,
- "start": 51.86,
- "end": 52.17,
- "text": "that"
- },
- {
- "id": 168,
- "start": 52.17,
- "end": 52.41,
- "text": "with"
- },
- {
- "id": 169,
- "start": 52.41,
- "end": 52.58,
- "text": "much"
- },
- {
- "id": 170,
- "start": 52.58,
- "end": 52.71,
- "text": "more"
- },
- {
- "id": 171,
- "start": 52.71,
- "end": 53.26,
- "text": "scaled"
- },
- {
- "id": 172,
- "start": 53.305,
- "end": 53.755,
- "text": "work."
- },
- {
- "id": 173,
- "start": 53.9,
- "end": 54.25,
- "text": "With"
- },
- {
- "id": 174,
- "start": 54.25,
- "end": 54.34,
- "text": "the"
- },
- {
- "id": 175,
- "start": 54.34,
- "end": 54.64,
- "text": "ability"
- },
- {
- "id": 176,
- "start": 54.64,
- "end": 54.72,
- "text": "to"
- },
- {
- "id": 177,
- "start": 55.05499999999999,
- "end": 55.144999999999996,
- "text": "work—so"
- },
- {
- "id": 178,
- "start": 55.47,
- "end": 55.57,
- "text": "a"
- },
- {
- "id": 179,
- "start": 55.57,
- "end": 55.72,
- "text": "good"
- },
- {
- "id": 180,
- "start": 55.72,
- "end": 56.19,
- "text": "example"
- },
- {
- "id": 181,
- "start": 56.19,
- "end": 56.29,
- "text": "of"
- },
- {
- "id": 182,
- "start": 56.29,
- "end": 56.56,
- "text": "this"
- },
- {
- "id": 183,
- "start": 56.56,
- "end": 57.15,
- "text": "is,"
- },
- {
- "id": 184,
- "start": 57.15,
- "end": 57.51,
- "text": "we’ve"
- },
- {
- "id": 185,
- "start": 57.51,
- "end": 58.1,
- "text": "seen"
- },
- {
- "id": 186,
- "start": 58.1,
- "end": 58.2,
- "text": "a"
- },
- {
- "id": 187,
- "start": 58.2,
- "end": 58.49,
- "text": "lot"
- },
- {
- "id": 188,
- "start": 58.49,
- "end": 58.58,
- "text": "of"
- },
- {
- "id": 189,
- "start": 58.58,
- "end": 58.84,
- "text": "bad"
- },
- {
- "id": 190,
- "start": 58.84,
- "end": 59.55,
- "text": "actors"
- },
- {
- "id": 191,
- "start": 59.55,
- "end": 59.88,
- "text": "rely"
- },
- {
- "id": 192,
- "start": 59.88,
- "end": 60.02,
- "text": "on"
- },
- {
- "id": 193,
- "start": 60.02,
- "end": 60.2,
- "text": "fake"
- },
- {
- "id": 194,
- "start": 60.2,
- "end": 61.2,
- "text": "accounts"
- },
- {
- "id": 195,
- "start": 61.2,
- "end": 61.33,
- "text": "that"
- },
- {
- "id": 196,
- "start": 61.33,
- "end": 61.41,
- "text": "they"
- },
- {
- "id": 197,
- "start": 61.41,
- "end": 61.54,
- "text": "will"
- },
- {
- "id": 198,
- "start": 61.54,
- "end": 61.76,
- "text": "use"
- },
- {
- "id": 199,
- "start": 61.76,
- "end": 61.84,
- "text": "to"
- },
- {
- "id": 200,
- "start": 61.84,
- "end": 62.16,
- "text": "conceal"
- },
- {
- "id": 201,
- "start": 62.16,
- "end": 62.27,
- "text": "their"
- },
- {
- "id": 202,
- "start": 62.27,
- "end": 62.8,
- "text": "identity"
- },
- {
- "id": 203,
- "start": 62.8,
- "end": 62.9,
- "text": "and"
- },
- {
- "id": 204,
- "start": 62.9,
- "end": 62.97,
- "text": "to"
- },
- {
- "id": 205,
- "start": 62.97,
- "end": 63.31,
- "text": "drive"
- },
- {
- "id": 206,
- "start": 63.31,
- "end": 63.43,
- "text": "their"
- },
- {
- "id": 207,
- "start": 63.43,
- "end": 63.66,
- "text": "false"
- },
- {
- "id": 208,
- "start": 63.66,
- "end": 64.88,
- "text": "narratives."
- },
- {
- "id": 209,
- "start": 64.88,
- "end": 65.18,
- "text": "Even"
- },
- {
- "id": 210,
- "start": 65.18,
- "end": 65.51,
- "text": "though"
- },
- {
- "id": 211,
- "start": 65.51,
- "end": 65.62,
- "text": "there"
- },
- {
- "id": 212,
- "start": 65.62,
- "end": 65.69,
- "text": "are"
- },
- {
- "id": 213,
- "start": 65.69,
- "end": 66.03,
- "text": "plenty"
- },
- {
- "id": 214,
- "start": 66.03,
- "end": 66.19,
- "text": "of"
- },
- {
- "id": 215,
- "start": 66.19,
- "end": 66.43,
- "text": "less"
- },
- {
- "id": 216,
- "start": 66.43,
- "end": 67.15,
- "text": "sophisticated"
- },
- {
- "id": 217,
- "start": 67.15,
- "end": 67.36,
- "text": "bad"
- },
- {
- "id": 218,
- "start": 67.36,
- "end": 67.66,
- "text": "actors"
- },
- {
- "id": 219,
- "start": 67.66,
- "end": 67.76,
- "text": "that"
- },
- {
- "id": 220,
- "start": 67.76,
- "end": 67.92,
- "text": "use"
- },
- {
- "id": 221,
- "start": 67.92,
- "end": 68.09,
- "text": "fake"
- },
- {
- "id": 222,
- "start": 68.09,
- "end": 68.71,
- "text": "accounts,"
- },
- {
- "id": 223,
- "start": 68.71,
- "end": 68.89,
- "text": "by"
- },
- {
- "id": 224,
- "start": 68.89,
- "end": 69.34,
- "text": "scaling"
- },
- {
- "id": 225,
- "start": 69.34,
- "end": 69.46,
- "text": "up"
- },
- {
- "id": 226,
- "start": 69.46,
- "end": 69.63,
- "text": "our"
- },
- {
- "id": 227,
- "start": 69.63,
- "end": 69.89,
- "text": "ability"
- },
- {
- "id": 228,
- "start": 69.89,
- "end": 70.01,
- "text": "and"
- },
- {
- "id": 229,
- "start": 70.01,
- "end": 70.35,
- "text": "taking"
- },
- {
- "id": 230,
- "start": 70.35,
- "end": 70.55,
- "text": "those"
- },
- {
- "id": 231,
- "start": 70.55,
- "end": 70.9,
- "text": "down,"
- },
- {
- "id": 232,
- "start": 70.9,
- "end": 70.99,
- "text": "we"
- },
- {
- "id": 233,
- "start": 70.99,
- "end": 71.14,
- "text": "make"
- },
- {
- "id": 234,
- "start": 71.14,
- "end": 71.23,
- "text": "it"
- },
- {
- "id": 235,
- "start": 71.23,
- "end": 71.37,
- "text": "much"
- },
- {
- "id": 236,
- "start": 71.37,
- "end": 71.82,
- "text": "harder"
- },
- {
- "id": 237,
- "start": 71.82,
- "end": 71.93,
- "text": "for"
- },
- {
- "id": 238,
- "start": 71.93,
- "end": 72.05,
- "text": "them"
- },
- {
- "id": 239,
- "start": 72.05,
- "end": 72.17,
- "text": "to"
- },
- {
- "id": 240,
- "start": 72.17,
- "end": 72.45,
- "text": "use"
- },
- {
- "id": 241,
- "start": 72.45,
- "end": 72.65,
- "text": "that"
- },
- {
- "id": 242,
- "start": 72.65,
- "end": 73.73,
- "text": "tool."
- },
- {
- "id": 243,
- "start": 73.73,
- "end": 73.91,
- "text": "So"
- },
- {
- "id": 244,
- "start": 73.91,
- "end": 73.99,
- "text": "the"
- },
- {
- "id": 245,
- "start": 73.99,
- "end": 74.3,
- "text": "first"
- },
- {
- "id": 246,
- "start": 74.3,
- "end": 74.52,
- "text": "half"
- },
- {
- "id": 247,
- "start": 74.52,
- "end": 74.65,
- "text": "is"
- },
- {
- "id": 248,
- "start": 74.65,
- "end": 74.88,
- "text": "like"
- },
- {
- "id": 249,
- "start": 74.88,
- "end": 75.17,
- "text": "looking"
- },
- {
- "id": 250,
- "start": 75.17,
- "end": 75.28,
- "text": "for"
- },
- {
- "id": 251,
- "start": 75.28,
- "end": 75.32,
- "text": "a"
- },
- {
- "id": 252,
- "start": 75.32,
- "end": 75.54,
- "text": "needle"
- },
- {
- "id": 253,
- "start": 75.54,
- "end": 75.61,
- "text": "in"
- },
- {
- "id": 254,
- "start": 75.61,
- "end": 75.66,
- "text": "a"
- },
- {
- "id": 255,
- "start": 75.66,
- "end": 76.33,
- "text": "haystack."
- },
- {
- "id": 256,
- "start": 76.33,
- "end": 76.43,
- "text": "The"
- },
- {
- "id": 257,
- "start": 76.43,
- "end": 76.77,
- "text": "second"
- },
- {
- "id": 258,
- "start": 76.77,
- "end": 77.36,
- "text": "piece"
- },
- {
- "id": 259,
- "start": 77.36,
- "end": 77.49,
- "text": "is"
- },
- {
- "id": 260,
- "start": 77.49,
- "end": 77.61,
- "text": "sort"
- },
- {
- "id": 261,
- "start": 77.61,
- "end": 77.67,
- "text": "of"
- },
- {
- "id": 262,
- "start": 77.67,
- "end": 78.13,
- "text": "shrinking"
- },
- {
- "id": 263,
- "start": 77.95333333333333,
- "end": 78.28999999999999,
- "text": "the"
- },
- {
- "id": 264,
- "start": 78.23666666666666,
- "end": 78.44999999999999,
- "text": "haystack"
- },
- {
- "id": 265,
- "start": 78.52,
- "end": 78.61,
- "text": "and"
- },
- {
- "id": 266,
- "start": 78.61,
- "end": 78.86,
- "text": "making"
- },
- {
- "id": 267,
- "start": 78.86,
- "end": 79,
- "text": "that"
- },
- {
- "id": 268,
- "start": 79,
- "end": 79.84,
- "text": "investigation"
- },
- {
- "id": 269,
- "start": 79.74000000000001,
- "end": 80.21000000000001,
- "text": "easier,"
- },
- {
- "id": 270,
- "start": 80.48,
- "end": 80.58,
- "text": "and"
- },
- {
- "id": 271,
- "start": 80.58,
- "end": 80.65,
- "text": "you"
- },
- {
- "id": 272,
- "start": 80.65,
- "end": 80.84,
- "text": "have"
- },
- {
- "id": 273,
- "start": 80.84,
- "end": 80.92,
- "text": "to"
- },
- {
- "id": 274,
- "start": 80.92,
- "end": 81.1,
- "text": "have"
- },
- {
- "id": 275,
- "start": 81.1,
- "end": 82.6,
- "text": "both."
- },
- {
- "id": 276,
- "start": 81.45,
- "end": 83.32,
- "text": "Going"
- },
- {
- "id": 277,
- "start": 82.59499999999997,
- "end": 83.625,
- "text": "backward"
- },
- {
- "id": 278,
- "start": 83.74,
- "end": 83.93,
- "text": "for"
- },
- {
- "id": 279,
- "start": 83.93,
- "end": 84.11,
- "text": "one"
- },
- {
- "id": 280,
- "start": 84.44,
- "end": 84.62499999999999,
- "text": "second,"
- },
- {
- "id": 281,
- "start": 84.95,
- "end": 85.14,
- "text": "tell"
- },
- {
- "id": 282,
- "start": 85.14,
- "end": 85.55,
- "text": "me"
- },
- {
- "id": 283,
- "start": 85.55,
- "end": 85.68,
- "text": "the"
- },
- {
- "id": 284,
- "start": 85.68,
- "end": 86.43,
- "text": "circumstances"
- },
- {
- "id": 285,
- "start": 86.43,
- "end": 86.56,
- "text": "of"
- },
- {
- "id": 286,
- "start": 86.72000000000001,
- "end": 87.07500000000002,
- "text": "you"
- },
- {
- "id": 287,
- "start": 87.01,
- "end": 87.59,
- "text": "arriving"
- },
- {
- "id": 288,
- "start": 87.6675,
- "end": 88.16499999999999,
- "text": "here"
- },
- {
- "id": 289,
- "start": 88.325,
- "end": 88.73999999999998,
- "text": "at"
- },
- {
- "id": 290,
- "start": 88.9825,
- "end": 89.315,
- "text": "Facebook."
- },
- {
- "id": 291,
- "start": 89.64,
- "end": 89.89,
- "text": "What"
- },
- {
- "id": 292,
- "start": 89.89,
- "end": 90.13,
- "text": "were"
- },
- {
- "id": 293,
- "start": 90.13,
- "end": 90.89,
- "text": "they?"
- },
- {
- "id": 294,
- "start": 90.89,
- "end": 91.14,
- "text": "Bring"
- },
- {
- "id": 295,
- "start": 91.14,
- "end": 91.25,
- "text": "me"
- },
- {
- "id": 296,
- "start": 91.25,
- "end": 91.52,
- "text": "through"
- },
- {
- "id": 297,
- "start": 91.52,
- "end": 91.85,
- "text": "the"
- },
- {
- "id": 298,
- "start": 91.85,
- "end": 92.3,
- "text": "beginning"
- },
- {
- "id": 299,
- "start": 92.3,
- "end": 92.41,
- "text": "of"
- },
- {
- "id": 300,
- "start": 92.41,
- "end": 92.58,
- "text": "how"
- },
- {
- "id": 301,
- "start": 92.58,
- "end": 92.74,
- "text": "you"
- },
- {
- "id": 302,
- "start": 92.74,
- "end": 93.18,
- "text": "arrived"
- },
- {
- "id": 303,
- "start": 93.18,
- "end": 93.4,
- "text": "here"
- },
- {
- "id": 304,
- "start": 93.4,
- "end": 93.89,
- "text": "and"
- },
- {
- "id": 305,
- "start": 93.89,
- "end": 94.13,
- "text": "why"
- },
- {
- "id": 306,
- "start": 94.13,
- "end": 94.29,
- "text": "you"
- },
- {
- "id": 307,
- "start": 94.29,
- "end": 94.41,
- "text": "were"
- },
- {
- "id": 308,
- "start": 94.41,
- "end": 94.67,
- "text": "brought"
- },
- {
- "id": 309,
- "start": 94.67,
- "end": 94.78,
- "text": "in"
- },
- {
- "id": 310,
- "start": 94.78,
- "end": 94.91,
- "text": "for"
- },
- {
- "id": 311,
- "start": 94.91,
- "end": 95.07,
- "text": "this"
- },
- {
- "id": 312,
- "start": 95.07,
- "end": 99.44,
- "text": "job."
- },
- {
- "id": 313,
- "start": 99.44,
- "end": 99.61,
- "text": "My"
- },
- {
- "id": 314,
- "start": 99.61,
- "end": 100.12,
- "text": "career"
- },
- {
- "id": 315,
- "start": 100.12,
- "end": 100.25,
- "text": "has"
- },
- {
- "id": 316,
- "start": 100.25,
- "end": 100.37,
- "text": "been"
- },
- {
- "id": 317,
- "start": 100.37,
- "end": 100.84,
- "text": "focused"
- },
- {
- "id": 318,
- "start": 100.84,
- "end": 101.4,
- "text": "on"
- },
- {
- "id": 319,
- "start": 101.4,
- "end": 101.85,
- "text": "how"
- },
- {
- "id": 320,
- "start": 101.85,
- "end": 102.41,
- "text": "technology"
- },
- {
- "id": 321,
- "start": 102.41,
- "end": 102.51,
- "text": "and"
- },
- {
- "id": 322,
- "start": 102.51,
- "end": 103.54,
- "text": "society"
- },
- {
- "id": 323,
- "start": 103.54,
- "end": 104.84,
- "text": "interact."
- },
- {
- "id": 324,
- "start": 104.84,
- "end": 105.44,
- "text": "Technology"
- },
- {
- "id": 325,
- "start": 105.44,
- "end": 105.62,
- "text": "has"
- },
- {
- "id": 326,
- "start": 105.60499999999999,
- "end": 105.895,
- "text": "this"
- },
- {
- "id": 327,
- "start": 105.77,
- "end": 106.17,
- "text": "incredible"
- },
- {
- "id": 328,
- "start": 106.17,
- "end": 106.8,
- "text": "potential"
- },
- {
- "id": 329,
- "start": 106.8,
- "end": 106.94,
- "text": "to"
- },
- {
- "id": 330,
- "start": 106.94,
- "end": 107.2,
- "text": "make"
- },
- {
- "id": 331,
- "start": 107.2,
- "end": 107.58,
- "text": "things"
- },
- {
- "id": 332,
- "start": 107.58,
- "end": 108.05,
- "text": "better,"
- },
- {
- "id": 333,
- "start": 108.05,
- "end": 108.82,
- "text": "to"
- },
- {
- "id": 334,
- "start": 108.82,
- "end": 109.21,
- "text": "encourage"
- },
- {
- "id": 335,
- "start": 109.21,
- "end": 110.1,
- "text": "communication,"
- },
- {
- "id": 336,
- "start": 109.79,
- "end": 110.48999999999998,
- "text": "to"
- },
- {
- "id": 337,
- "start": 110.37,
- "end": 110.88,
- "text": "build"
- },
- {
- "id": 338,
- "start": 110.88,
- "end": 111.14,
- "text": "out"
- },
- {
- "id": 339,
- "start": 111.14,
- "end": 111.36,
- "text": "all"
- },
- {
- "id": 340,
- "start": 111.36,
- "end": 111.44,
- "text": "the"
- },
- {
- "id": 341,
- "start": 111.44,
- "end": 111.72,
- "text": "ways"
- },
- {
- "id": 342,
- "start": 111.72,
- "end": 111.83,
- "text": "we"
- },
- {
- "id": 343,
- "start": 111.83,
- "end": 112.15,
- "text": "talk"
- },
- {
- "id": 344,
- "start": 112.15,
- "end": 112.23,
- "text": "to"
- },
- {
- "id": 345,
- "start": 112.23,
- "end": 112.35,
- "text": "each"
- },
- {
- "id": 346,
- "start": 112.35,
- "end": 112.46,
- "text": "other"
- },
- {
- "id": 347,
- "start": 112.46,
- "end": 112.55,
- "text": "and"
- },
- {
- "id": 348,
- "start": 112.55,
- "end": 112.97,
- "text": "understand"
- },
- {
- "id": 349,
- "start": 112.97,
- "end": 113.1,
- "text": "each"
- },
- {
- "id": 350,
- "start": 113.1,
- "end": 113.57,
- "text": "other."
- },
- {
- "id": 351,
- "start": 113.57,
- "end": 113.96,
- "text": "But"
- },
- {
- "id": 352,
- "start": 113.96,
- "end": 114.13,
- "text": "one"
- },
- {
- "id": 353,
- "start": 114.13,
- "end": 114.19,
- "text": "of"
- },
- {
- "id": 354,
- "start": 114.19,
- "end": 114.25,
- "text": "the"
- },
- {
- "id": 355,
- "start": 114.25,
- "end": 114.55,
- "text": "side"
- },
- {
- "id": 356,
- "start": 114.55,
- "end": 114.85,
- "text": "effects"
- },
- {
- "id": 357,
- "start": 114.85,
- "end": 114.94,
- "text": "of"
- },
- {
- "id": 358,
- "start": 114.94,
- "end": 115.05,
- "text": "new"
- },
- {
- "id": 359,
- "start": 115.05,
- "end": 115.6,
- "text": "communications"
- },
- {
- "id": 360,
- "start": 115.59500000000001,
- "end": 115.955,
- "text": "media"
- },
- {
- "id": 361,
- "start": 116.14,
- "end": 116.31,
- "text": "is"
- },
- {
- "id": 362,
- "start": 116.31,
- "end": 116.45,
- "text": "that"
- },
- {
- "id": 363,
- "start": 116.45,
- "end": 116.7,
- "text": "people"
- },
- {
- "id": 364,
- "start": 116.7,
- "end": 116.76,
- "text": "are"
- },
- {
- "id": 365,
- "start": 116.76,
- "end": 116.88,
- "text": "going"
- },
- {
- "id": 366,
- "start": 116.88,
- "end": 116.94,
- "text": "to"
- },
- {
- "id": 367,
- "start": 116.94,
- "end": 117.05,
- "text": "try"
- },
- {
- "id": 368,
- "start": 117.05,
- "end": 117.13,
- "text": "to"
- },
- {
- "id": 369,
- "start": 117.13,
- "end": 117.3,
- "text": "take"
- },
- {
- "id": 370,
- "start": 117.3,
- "end": 117.64,
- "text": "advantage"
- },
- {
- "id": 371,
- "start": 117.64,
- "end": 117.75,
- "text": "of"
- },
- {
- "id": 372,
- "start": 118.33575000000002,
- "end": 118.44075000000004,
- "text": "them."
- },
- {
- "id": 373,
- "start": 119.0315,
- "end": 119.13150000000002,
- "text": "That"
- },
- {
- "id": 374,
- "start": 119.72725000000003,
- "end": 119.82225,
- "text": "tension—how"
- },
- {
- "id": 375,
- "start": 120.423,
- "end": 120.513,
- "text": "do"
- },
- {
- "id": 376,
- "start": 120.513,
- "end": 120.653,
- "text": "you"
- },
- {
- "id": 377,
- "start": 120.653,
- "end": 121.663,
- "text": "ensure"
- },
- {
- "id": 378,
- "start": 121.663,
- "end": 121.883,
- "text": "that"
- },
- {
- "id": 379,
- "start": 121.883,
- "end": 122.003,
- "text": "the"
- },
- {
- "id": 380,
- "start": 122.003,
- "end": 122.753,
- "text": "positive"
- },
- {
- "id": 381,
- "start": 122.753,
- "end": 123.193,
- "text": "benefits"
- },
- {
- "id": 382,
- "start": 123.193,
- "end": 123.253,
- "text": "of"
- },
- {
- "id": 383,
- "start": 123.253,
- "end": 123.643,
- "text": "technology"
- },
- {
- "id": 384,
- "start": 123.643,
- "end": 123.783,
- "text": "can"
- },
- {
- "id": 385,
- "start": 123.783,
- "end": 123.963,
- "text": "be"
- },
- {
- "id": 386,
- "start": 124.36800000000001,
- "end": 124.548,
- "text": "realized?—is"
- },
- {
- "id": 387,
- "start": 124.953,
- "end": 125.133,
- "text": "what"
- },
- {
- "id": 388,
- "start": 125.133,
- "end": 125.203,
- "text": "I"
- },
- {
- "id": 389,
- "start": 125.203,
- "end": 125.583,
- "text": "focused"
- },
- {
- "id": 390,
- "start": 125.583,
- "end": 125.693,
- "text": "on"
- },
- {
- "id": 391,
- "start": 125.693,
- "end": 125.773,
- "text": "in"
- },
- {
- "id": 392,
- "start": 125.773,
- "end": 126.443,
- "text": "government,"
- },
- {
- "id": 393,
- "start": 126.443,
- "end": 126.923,
- "text": "whether"
- },
- {
- "id": 394,
- "start": 126.923,
- "end": 127.063,
- "text": "I"
- },
- {
- "id": 395,
- "start": 127.063,
- "end": 127.833,
- "text": "was"
- },
- {
- "id": 396,
- "start": 127.593,
- "end": 128.383,
- "text": "investigating"
- },
- {
- "id": 397,
- "start": 128.253,
- "end": 128.978,
- "text": "cybercrime"
- },
- {
- "id": 398,
- "start": 128.913,
- "end": 129.573,
- "text": "cases"
- },
- {
- "id": 399,
- "start": 129.573,
- "end": 130.173,
- "text": "or"
- },
- {
- "id": 400,
- "start": 130.173,
- "end": 130.233,
- "text": "I"
- },
- {
- "id": 401,
- "start": 130.233,
- "end": 130.373,
- "text": "was"
- },
- {
- "id": 402,
- "start": 130.373,
- "end": 130.713,
- "text": "working"
- },
- {
- "id": 403,
- "start": 130.713,
- "end": 130.793,
- "text": "at"
- },
- {
- "id": 404,
- "start": 130.793,
- "end": 130.893,
- "text": "the"
- },
- {
- "id": 405,
- "start": 130.893,
- "end": 131.463,
- "text": "NSC,"
- },
- {
- "id": 406,
- "start": 131.463,
- "end": 131.553,
- "text": "the"
- },
- {
- "id": 407,
- "start": 131.553,
- "end": 131.823,
- "text": "National"
- },
- {
- "id": 408,
- "start": 131.823,
- "end": 132.163,
- "text": "Security"
- },
- {
- "id": 409,
- "start": 132.163,
- "end": 132.803,
- "text": "Council,"
- },
- {
- "id": 410,
- "start": 132.803,
- "end": 133.123,
- "text": "thinking"
- },
- {
- "id": 411,
- "start": 133.123,
- "end": 133.313,
- "text": "about"
- },
- {
- "id": 412,
- "start": 133.63899999999998,
- "end": 134.103,
- "text": "cybersecurity"
- },
- {
- "id": 413,
- "start": 134.155,
- "end": 134.89300000000003,
- "text": "policy."
- },
- {
- "id": 414,
- "start": 134.671,
- "end": 135.683,
- "text": "Here"
- },
- {
- "id": 415,
- "start": 135.18699999999998,
- "end": 136.473,
- "text": "at"
- },
- {
- "id": 416,
- "start": 135.703,
- "end": 137.263,
- "text": "Facebook"
- },
- {
- "id": 417,
- "start": 137.263,
- "end": 137.363,
- "text": "I’m"
- },
- {
- "id": 418,
- "start": 137.363,
- "end": 137.503,
- "text": "able"
- },
- {
- "id": 419,
- "start": 137.503,
- "end": 137.563,
- "text": "to"
- },
- {
- "id": 420,
- "start": 137.563,
- "end": 137.813,
- "text": "work"
- },
- {
- "id": 421,
- "start": 137.813,
- "end": 138.133,
- "text": "on"
- },
- {
- "id": 422,
- "start": 138.133,
- "end": 138.213,
- "text": "a"
- },
- {
- "id": 423,
- "start": 138.213,
- "end": 138.573,
- "text": "very"
- },
- {
- "id": 424,
- "start": 138.573,
- "end": 138.913,
- "text": "similar"
- },
- {
- "id": 425,
- "start": 138.913,
- "end": 139.443,
- "text": "problem,"
- },
- {
- "id": 426,
- "start": 139.443,
- "end": 139.683,
- "text": "right,"
- },
- {
- "id": 427,
- "start": 139.683,
- "end": 139.833,
- "text": "which"
- },
- {
- "id": 428,
- "start": 139.833,
- "end": 139.953,
- "text": "is"
- },
- {
- "id": 429,
- "start": 139.953,
- "end": 140.333,
- "text": "social"
- },
- {
- "id": 430,
- "start": 140.333,
- "end": 141.143,
- "text": "media"
- },
- {
- "id": 431,
- "start": 141.143,
- "end": 141.523,
- "text": "as"
- },
- {
- "id": 432,
- "start": 141.523,
- "end": 141.923,
- "text": "the"
- },
- {
- "id": 433,
- "start": 141.923,
- "end": 142.303,
- "text": "public"
- },
- {
- "id": 434,
- "start": 142.303,
- "end": 143.093,
- "text": "square"
- },
- {
- "id": 435,
- "start": 143.093,
- "end": 143.753,
- "text": "for"
- },
- {
- "id": 436,
- "start": 143.753,
- "end": 144.153,
- "text": "political"
- },
- {
- "id": 437,
- "start": 144.153,
- "end": 144.903,
- "text": "communications"
- },
- {
- "id": 438,
- "start": 144.903,
- "end": 145.063,
- "text": "and"
- },
- {
- "id": 439,
- "start": 145.063,
- "end": 145.373,
- "text": "public"
- },
- {
- "id": 440,
- "start": 145.373,
- "end": 146.003,
- "text": "debate."
- },
- {
- "id": 441,
- "start": 146.003,
- "end": 146.213,
- "text": "How"
- },
- {
- "id": 442,
- "start": 146.213,
- "end": 146.283,
- "text": "do"
- },
- {
- "id": 443,
- "start": 146.283,
- "end": 146.403,
- "text": "we"
- },
- {
- "id": 444,
- "start": 146.403,
- "end": 147.353,
- "text": "ensure"
- },
- {
- "id": 445,
- "start": 147.353,
- "end": 147.453,
- "text": "that"
- },
- {
- "id": 446,
- "start": 147.453,
- "end": 147.643,
- "text": "that"
- },
- {
- "id": 447,
- "start": 147.643,
- "end": 148.093,
- "text": "public"
- },
- {
- "id": 448,
- "start": 148.093,
- "end": 148.833,
- "text": "debate"
- },
- {
- "id": 449,
- "start": 148.833,
- "end": 148.993,
- "text": "can"
- },
- {
- "id": 450,
- "start": 148.993,
- "end": 149.163,
- "text": "be"
- },
- {
- "id": 451,
- "start": 149.163,
- "end": 149.753,
- "text": "open,"
- },
- {
- "id": 452,
- "start": 149.753,
- "end": 149.913,
- "text": "can"
- },
- {
- "id": 453,
- "start": 149.913,
- "end": 150.073,
- "text": "be"
- },
- {
- "id": 454,
- "start": 150.073,
- "end": 150.483,
- "text": "free"
- },
- {
- "id": 455,
- "start": 150.483,
- "end": 150.623,
- "text": "and"
- },
- {
- "id": 456,
- "start": 150.623,
- "end": 151.983,
- "text": "fair?"
- },
- {
- "id": 457,
- "start": 151.983,
- "end": 152.733,
- "text": "Without"
- },
- {
- "id": 458,
- "start": 152.733,
- "end": 153.043,
- "text": "being"
- },
- {
- "id": 459,
- "start": 153.043,
- "end": 153.543,
- "text": "interfered"
- },
- {
- "id": 460,
- "start": 153.543,
- "end": 153.783,
- "text": "with"
- },
- {
- "id": 461,
- "start": 153.783,
- "end": 153.963,
- "text": "by"
- },
- {
- "id": 462,
- "start": 153.963,
- "end": 154.283,
- "text": "people"
- },
- {
- "id": 463,
- "start": 154.283,
- "end": 154.443,
- "text": "that"
- },
- {
- "id": 464,
- "start": 154.54966666666667,
- "end": 154.75633333333334,
- "text": "want"
- },
- {
- "id": 465,
- "start": 154.81633333333332,
- "end": 155.06966666666668,
- "text": "to"
- },
- {
- "id": 466,
- "start": 155.083,
- "end": 155.383,
- "text": "mess"
- },
- {
- "id": 467,
- "start": 155.383,
- "end": 155.523,
- "text": "with"
- },
- {
- "id": 468,
- "start": 155.68300000000002,
- "end": 155.8455,
- "text": "things."
- },
- {
- "id": 469,
- "start": 155.98300000000003,
- "end": 156.16799999999998,
- "text": "Right."
- },
- {
- "id": 470,
- "start": 156.28300000000002,
- "end": 156.4905,
- "text": "…"
- },
- {
- "id": 471,
- "start": 156.583,
- "end": 156.813,
- "text": "What"
- },
- {
- "id": 472,
- "start": 156.813,
- "end": 156.963,
- "text": "was"
- },
- {
- "id": 473,
- "start": 156.963,
- "end": 157.083,
- "text": "your"
- },
- {
- "id": 474,
- "start": 157.083,
- "end": 157.613,
- "text": "thinking"
- },
- {
- "id": 475,
- "start": 157.613,
- "end": 157.993,
- "text": "coming"
- },
- {
- "id": 476,
- "start": 157.993,
- "end": 158.153,
- "text": "in"
- },
- {
- "id": 477,
- "start": 158.153,
- "end": 159.303,
- "text": "here,"
- },
- {
- "id": 478,
- "start": 159.303,
- "end": 159.433,
- "text": "if"
- },
- {
- "id": 479,
- "start": 159.433,
- "end": 159.533,
- "text": "you"
- },
- {
- "id": 480,
- "start": 159.533,
- "end": 159.673,
- "text": "can"
- },
- {
- "id": 481,
- "start": 159.673,
- "end": 159.873,
- "text": "kind"
- },
- {
- "id": 482,
- "start": 159.873,
- "end": 159.943,
- "text": "of"
- },
- {
- "id": 483,
- "start": 159.943,
- "end": 160.143,
- "text": "bring"
- },
- {
- "id": 484,
- "start": 160.143,
- "end": 160.303,
- "text": "me"
- },
- {
- "id": 485,
- "start": 160.303,
- "end": 161.003,
- "text": "into"
- },
- {
- "id": 486,
- "start": 161.003,
- "end": 161.223,
- "text": "if"
- },
- {
- "id": 487,
- "start": 161.223,
- "end": 161.403,
- "text": "there"
- },
- {
- "id": 488,
- "start": 161.403,
- "end": 161.703,
- "text": "has"
- },
- {
- "id": 489,
- "start": 161.703,
- "end": 161.863,
- "text": "been"
- },
- {
- "id": 490,
- "start": 161.863,
- "end": 161.973,
- "text": "an"
- },
- {
- "id": 491,
- "start": 162.308,
- "end": 162.613,
- "text": "evolution."
- },
- {
- "id": 492,
- "start": 162.753,
- "end": 163.253,
- "text": "Here"
- },
- {
- "id": 493,
- "start": 163.253,
- "end": 163.443,
- "text": "you"
- },
- {
- "id": 494,
- "start": 163.433,
- "end": 163.618,
- "text": "are:"
- },
- {
- "id": 495,
- "start": 163.613,
- "end": 163.793,
- "text": "You’re"
- },
- {
- "id": 496,
- "start": 163.793,
- "end": 163.903,
- "text": "at"
- },
- {
- "id": 497,
- "start": 164.21300000000002,
- "end": 164.49300000000002,
- "text": "Facebook;"
- },
- {
- "id": 498,
- "start": 164.633,
- "end": 165.083,
- "text": "it’s"
- },
- {
- "id": 499,
- "start": 165.083,
- "end": 165.203,
- "text": "in"
- },
- {
- "id": 500,
- "start": 165.203,
- "end": 165.273,
- "text": "the"
- },
- {
- "id": 501,
- "start": 165.273,
- "end": 165.683,
- "text": "midst"
- },
- {
- "id": 502,
- "start": 166.118,
- "end": 166.38800000000003,
- "text": "of—what"
- },
- {
- "id": 503,
- "start": 166.963,
- "end": 167.093,
- "text": "did"
- },
- {
- "id": 504,
- "start": 167.093,
- "end": 167.213,
- "text": "you"
- },
- {
- "id": 505,
- "start": 167.213,
- "end": 167.543,
- "text": "walk"
- },
- {
- "id": 506,
- "start": 167.543,
- "end": 167.943,
- "text": "into"
- },
- {
- "id": 507,
- "start": 167.943,
- "end": 169.883,
- "text": "exactly,"
- },
- {
- "id": 508,
- "start": 169.883,
- "end": 170.003,
- "text": "and"
- },
- {
- "id": 509,
- "start": 170.003,
- "end": 170.133,
- "text": "what"
- },
- {
- "id": 510,
- "start": 170.133,
- "end": 170.233,
- "text": "were"
- },
- {
- "id": 511,
- "start": 170.233,
- "end": 170.313,
- "text": "you"
- },
- {
- "id": 512,
- "start": 170.313,
- "end": 170.693,
- "text": "thinking"
- },
- {
- "id": 513,
- "start": 170.693,
- "end": 170.973,
- "text": "about"
- },
- {
- "id": 514,
- "start": 170.973,
- "end": 171.573,
- "text": "it?"
- },
- {
- "id": 515,
- "start": 171.573,
- "end": 171.723,
- "text": "There"
- },
- {
- "id": 516,
- "start": 171.723,
- "end": 171.843,
- "text": "are"
- },
- {
- "id": 517,
- "start": 171.843,
- "end": 171.953,
- "text": "a"
- },
- {
- "id": 518,
- "start": 171.953,
- "end": 172.243,
- "text": "number"
- },
- {
- "id": 519,
- "start": 172.243,
- "end": 172.303,
- "text": "of"
- },
- {
- "id": 520,
- "start": 172.303,
- "end": 172.553,
- "text": "different"
- },
- {
- "id": 521,
- "start": 172.553,
- "end": 172.813,
- "text": "teams"
- },
- {
- "id": 522,
- "start": 172.813,
- "end": 172.923,
- "text": "that"
- },
- {
- "id": 523,
- "start": 172.923,
- "end": 173.173,
- "text": "work"
- },
- {
- "id": 524,
- "start": 173.173,
- "end": 173.303,
- "text": "on"
- },
- {
- "id": 525,
- "start": 173.303,
- "end": 173.763,
- "text": "information"
- },
- {
- "id": 526,
- "start": 173.763,
- "end": 174.483,
- "text": "operations"
- },
- {
- "id": 527,
- "start": 174.483,
- "end": 175.173,
- "text": "or"
- },
- {
- "id": 528,
- "start": 175.173,
- "end": 175.993,
- "text": "manipulation"
- },
- {
- "id": 529,
- "start": 175.993,
- "end": 176.193,
- "text": "within"
- },
- {
- "id": 530,
- "start": 176.193,
- "end": 176.273,
- "text": "the"
- },
- {
- "id": 531,
- "start": 176.273,
- "end": 177.063,
- "text": "company."
- },
- {
- "id": 532,
- "start": 177.063,
- "end": 177.383,
- "text": "Part"
- },
- {
- "id": 533,
- "start": 177.383,
- "end": 177.463,
- "text": "of"
- },
- {
- "id": 534,
- "start": 177.463,
- "end": 177.633,
- "text": "what"
- },
- {
- "id": 535,
- "start": 177.633,
- "end": 177.683,
- "text": "I"
- },
- {
- "id": 536,
- "start": 177.683,
- "end": 177.883,
- "text": "think"
- },
- {
- "id": 537,
- "start": 177.883,
- "end": 178.013,
- "text": "we"
- },
- {
- "id": 538,
- "start": 178.013,
- "end": 178.413,
- "text": "wanted"
- },
- {
- "id": 539,
- "start": 178.413,
- "end": 178.523,
- "text": "to"
- },
- {
- "id": 540,
- "start": 178.523,
- "end": 179.303,
- "text": "do"
- },
- {
- "id": 541,
- "start": 179.303,
- "end": 179.493,
- "text": "with"
- },
- {
- "id": 542,
- "start": 179.493,
- "end": 179.753,
- "text": "me"
- },
- {
- "id": 543,
- "start": 179.753,
- "end": 180.343,
- "text": "joining"
- },
- {
- "id": 544,
- "start": 180.343,
- "end": 180.583,
- "text": "was"
- },
- {
- "id": 545,
- "start": 180.583,
- "end": 180.693,
- "text": "how"
- },
- {
- "id": 546,
- "start": 180.693,
- "end": 180.753,
- "text": "do"
- },
- {
- "id": 547,
- "start": 180.753,
- "end": 180.843,
- "text": "we"
- },
- {
- "id": 548,
- "start": 180.843,
- "end": 181.473,
- "text": "connect"
- },
- {
- "id": 549,
- "start": 181.473,
- "end": 181.673,
- "text": "all"
- },
- {
- "id": 550,
- "start": 181.673,
- "end": 181.873,
- "text": "those"
- },
- {
- "id": 551,
- "start": 181.873,
- "end": 182.373,
- "text": "efforts,"
- },
- {
- "id": 552,
- "start": 182.218,
- "end": 182.523,
- "text": "and"
- },
- {
- "id": 553,
- "start": 182.563,
- "end": 182.673,
- "text": "how"
- },
- {
- "id": 554,
- "start": 182.673,
- "end": 182.743,
- "text": "do"
- },
- {
- "id": 555,
- "start": 182.743,
- "end": 182.833,
- "text": "we"
- },
- {
- "id": 556,
- "start": 182.833,
- "end": 183.023,
- "text": "think"
- },
- {
- "id": 557,
- "start": 183.023,
- "end": 183.183,
- "text": "about"
- },
- {
- "id": 558,
- "start": 183.183,
- "end": 183.213,
- "text": "a"
- },
- {
- "id": 559,
- "start": 183.213,
- "end": 183.803,
- "text": "strategic"
- },
- {
- "id": 560,
- "start": 183.893,
- "end": 184.27800000000002,
- "text": "layer"
- },
- {
- "id": 561,
- "start": 184.573,
- "end": 184.753,
- "text": "that"
- },
- {
- "id": 562,
- "start": 184.753,
- "end": 185.463,
- "text": "connects"
- },
- {
- "id": 563,
- "start": 185.463,
- "end": 185.593,
- "text": "the"
- },
- {
- "id": 564,
- "start": 185.593,
- "end": 185.843,
- "text": "Threat"
- },
- {
- "id": 565,
- "start": 185.843,
- "end": 186.973,
- "text": "investigators,"
- },
- {
- "id": 566,
- "start": 186.973,
- "end": 187.333,
- "text": "the"
- },
- {
- "id": 567,
- "start": 187.333,
- "end": 187.713,
- "text": "legal"
- },
- {
- "id": 568,
- "start": 187.713,
- "end": 188.523,
- "text": "teams,"
- },
- {
- "id": 569,
- "start": 188.523,
- "end": 188.653,
- "text": "the"
- },
- {
- "id": 570,
- "start": 188.653,
- "end": 189.133,
- "text": "product"
- },
- {
- "id": 571,
- "start": 189.133,
- "end": 189.573,
- "text": "teams,"
- },
- {
- "id": 572,
- "start": 189.573,
- "end": 189.803,
- "text": "all"
- },
- {
- "id": 573,
- "start": 189.803,
- "end": 189.873,
- "text": "the"
- },
- {
- "id": 574,
- "start": 189.873,
- "end": 190.133,
- "text": "different"
- },
- {
- "id": 575,
- "start": 190.133,
- "end": 190.783,
- "text": "efforts"
- },
- {
- "id": 576,
- "start": 190.783,
- "end": 190.923,
- "text": "that"
- },
- {
- "id": 577,
- "start": 190.923,
- "end": 190.983,
- "text": "are"
- },
- {
- "id": 578,
- "start": 190.983,
- "end": 191.363,
- "text": "trying"
- },
- {
- "id": 579,
- "start": 191.363,
- "end": 191.433,
- "text": "to"
- },
- {
- "id": 580,
- "start": 191.433,
- "end": 191.733,
- "text": "combat"
- },
- {
- "id": 581,
- "start": 191.733,
- "end": 191.943,
- "text": "different"
- },
- {
- "id": 582,
- "start": 191.943,
- "end": 192.183,
- "text": "parts"
- },
- {
- "id": 583,
- "start": 192.183,
- "end": 192.243,
- "text": "of"
- },
- {
- "id": 584,
- "start": 192.243,
- "end": 192.353,
- "text": "this"
- },
- {
- "id": 585,
- "start": 192.603,
- "end": 192.71800000000002,
- "text": "problem?"
- },
- {
- "id": 586,
- "start": 192.963,
- "end": 193.083,
- "text": "When"
- },
- {
- "id": 587,
- "start": 193.083,
- "end": 193.183,
- "text": "I"
- },
- {
- "id": 588,
- "start": 193.183,
- "end": 193.703,
- "text": "joined,"
- },
- {
- "id": 589,
- "start": 193.703,
- "end": 193.763,
- "text": "it"
- },
- {
- "id": 590,
- "start": 193.763,
- "end": 193.893,
- "text": "was"
- },
- {
- "id": 591,
- "start": 193.893,
- "end": 194.103,
- "text": "really"
- },
- {
- "id": 592,
- "start": 194.103,
- "end": 194.523,
- "text": "about"
- },
- {
- "id": 593,
- "start": 194.523,
- "end": 194.713,
- "text": "how"
- },
- {
- "id": 594,
- "start": 194.713,
- "end": 194.773,
- "text": "do"
- },
- {
- "id": 595,
- "start": 194.773,
- "end": 194.863,
- "text": "we"
- },
- {
- "id": 596,
- "start": 194.863,
- "end": 195.193,
- "text": "pull"
- },
- {
- "id": 597,
- "start": 195.193,
- "end": 195.363,
- "text": "these"
- },
- {
- "id": 598,
- "start": 195.363,
- "end": 195.733,
- "text": "pieces"
- },
- {
- "id": 599,
- "start": 195.733,
- "end": 198.363,
- "text": "together?"
- },
- {
- "id": 600,
- "start": 198.363,
- "end": 198.593,
- "text": "If"
- },
- {
- "id": 601,
- "start": 198.593,
- "end": 198.703,
- "text": "you"
- },
- {
- "id": 602,
- "start": 198.703,
- "end": 198.873,
- "text": "had"
- },
- {
- "id": 603,
- "start": 198.873,
- "end": 198.953,
- "text": "to"
- },
- {
- "id": 604,
- "start": 198.953,
- "end": 199.143,
- "text": "give"
- },
- {
- "id": 605,
- "start": 199.143,
- "end": 199.223,
- "text": "an"
- },
- {
- "id": 606,
- "start": 199.223,
- "end": 199.863,
- "text": "assessment"
- },
- {
- "id": 607,
- "start": 199.863,
- "end": 200.043,
- "text": "as"
- },
- {
- "id": 608,
- "start": 200.043,
- "end": 200.193,
- "text": "to"
- },
- {
- "id": 609,
- "start": 200.193,
- "end": 201.183,
- "text": "what"
- },
- {
- "id": 610,
- "start": 201.183,
- "end": 201.573,
- "text": "the"
- },
- {
- "id": 611,
- "start": 201.573,
- "end": 202.423,
- "text": "priorities"
- },
- {
- "id": 612,
- "start": 202.423,
- "end": 202.663,
- "text": "were"
- },
- {
- "id": 613,
- "start": 202.663,
- "end": 202.773,
- "text": "at"
- },
- {
- "id": 614,
- "start": 202.773,
- "end": 203.003,
- "text": "that"
- },
- {
- "id": 615,
- "start": 203.003,
- "end": 203.593,
- "text": "time"
- },
- {
- "id": 616,
- "start": 203.593,
- "end": 203.793,
- "text": "when"
- },
- {
- "id": 617,
- "start": 203.793,
- "end": 204.253,
- "text": "you"
- },
- {
- "id": 618,
- "start": 204.253,
- "end": 204.563,
- "text": "came"
- },
- {
- "id": 619,
- "start": 204.563,
- "end": 205.453,
- "text": "in,"
- },
- {
- "id": 620,
- "start": 205.453,
- "end": 205.743,
- "text": "set"
- },
- {
- "id": 621,
- "start": 205.743,
- "end": 205.833,
- "text": "the"
- },
- {
- "id": 622,
- "start": 205.833,
- "end": 206.303,
- "text": "scene."
- },
- {
- "id": 623,
- "start": 206.303,
- "end": 206.723,
- "text": "Where"
- },
- {
- "id": 624,
- "start": 206.723,
- "end": 206.933,
- "text": "are"
- },
- {
- "id": 625,
- "start": 206.933,
- "end": 207.103,
- "text": "we"
- },
- {
- "id": 626,
- "start": 207.103,
- "end": 207.223,
- "text": "in"
- },
- {
- "id": 627,
- "start": 207.223,
- "end": 207.633,
- "text": "time?"
- },
- {
- "id": 628,
- "start": 207.633,
- "end": 207.723,
- "text": "It"
- },
- {
- "id": 629,
- "start": 207.723,
- "end": 207.843,
- "text": "was"
- },
- {
- "id": 630,
- "start": 207.843,
- "end": 208.133,
- "text": "seven"
- },
- {
- "id": 631,
- "start": 208.133,
- "end": 208.413,
- "text": "months"
- },
- {
- "id": 632,
- "start": 208.413,
- "end": 209.253,
- "text": "ago."
- },
- {
- "id": 633,
- "start": 209.253,
- "end": 209.723,
- "text": "What"
- },
- {
- "id": 634,
- "start": 209.723,
- "end": 209.873,
- "text": "was"
- },
- {
- "id": 635,
- "start": 209.873,
- "end": 210.223,
- "text": "going"
- },
- {
- "id": 636,
- "start": 210.223,
- "end": 210.793,
- "text": "on?"
- },
- {
- "id": 637,
- "start": 210.793,
- "end": 212.383,
- "text": "What"
- },
- {
- "id": 638,
- "start": 212.383,
- "end": 212.943,
- "text": "the"
- },
- {
- "id": 639,
- "start": 212.943,
- "end": 213.523,
- "text": "atmosphere"
- },
- {
- "id": 640,
- "start": 213.523,
- "end": 213.763,
- "text": "here"
- },
- {
- "id": 641,
- "start": 213.763,
- "end": 214.233,
- "text": "like?"
- },
- {
- "id": 642,
- "start": 214.223,
- "end": 214.583,
- "text": "Because"
- },
- {
- "id": 643,
- "start": 214.55800000000002,
- "end": 214.82299999999998,
- "text": "you’d"
- },
- {
- "id": 644,
- "start": 214.893,
- "end": 215.063,
- "text": "been"
- },
- {
- "id": 645,
- "start": 215.063,
- "end": 215.433,
- "text": "outside"
- },
- {
- "id": 646,
- "start": 215.433,
- "end": 215.493,
- "text": "of"
- },
- {
- "id": 647,
- "start": 215.493,
- "end": 215.643,
- "text": "this"
- },
- {
- "id": 648,
- "start": 215.643,
- "end": 216.043,
- "text": "company;"
- },
- {
- "id": 649,
- "start": 216.043,
- "end": 216.193,
- "text": "you’d"
- },
- {
- "id": 650,
- "start": 216.193,
- "end": 216.343,
- "text": "been"
- },
- {
- "id": 651,
- "start": 216.343,
- "end": 216.453,
- "text": "in"
- },
- {
- "id": 652,
- "start": 216.74299999999997,
- "end": 216.92800000000003,
- "text": "government."
- },
- {
- "id": 653,
- "start": 217.143,
- "end": 217.403,
- "text": "And"
- },
- {
- "id": 654,
- "start": 217.403,
- "end": 217.813,
- "text": "I’m"
- },
- {
- "id": 655,
- "start": 217.473,
- "end": 218.293,
- "text": "curious,"
- },
- {
- "id": 656,
- "start": 218.24966666666666,
- "end": 218.82966666666664,
- "text": "I"
- },
- {
- "id": 657,
- "start": 219.0263333333333,
- "end": 219.36633333333327,
- "text": "mean,"
- },
- {
- "id": 658,
- "start": 219.803,
- "end": 219.903,
- "text": "I"
- },
- {
- "id": 659,
- "start": 219.903,
- "end": 220.033,
- "text": "don’t"
- },
- {
- "id": 660,
- "start": 220.033,
- "end": 220.183,
- "text": "work"
- },
- {
- "id": 661,
- "start": 220.183,
- "end": 220.243,
- "text": "at"
- },
- {
- "id": 662,
- "start": 220.523,
- "end": 220.65300000000002,
- "text": "Facebook:"
- },
- {
- "id": 663,
- "start": 220.863,
- "end": 221.063,
- "text": "What’s"
- },
- {
- "id": 664,
- "start": 221.063,
- "end": 221.173,
- "text": "it"
- },
- {
- "id": 665,
- "start": 221.173,
- "end": 221.463,
- "text": "like"
- },
- {
- "id": 666,
- "start": 221.463,
- "end": 221.853,
- "text": "walking"
- },
- {
- "id": 667,
- "start": 221.853,
- "end": 222.013,
- "text": "in"
- },
- {
- "id": 668,
- "start": 222.013,
- "end": 222.233,
- "text": "from"
- },
- {
- "id": 669,
- "start": 222.233,
- "end": 222.853,
- "text": "having"
- },
- {
- "id": 670,
- "start": 222.853,
- "end": 223.133,
- "text": "had"
- },
- {
- "id": 671,
- "start": 223.133,
- "end": 223.213,
- "text": "the"
- },
- {
- "id": 672,
- "start": 223.213,
- "end": 223.803,
- "text": "experiences"
- },
- {
- "id": 673,
- "start": 223.803,
- "end": 223.953,
- "text": "that"
- },
- {
- "id": 674,
- "start": 223.953,
- "end": 224.083,
- "text": "you"
- },
- {
- "id": 675,
- "start": 224.083,
- "end": 224.343,
- "text": "had"
- },
- {
- "id": 676,
- "start": 224.213,
- "end": 224.44299999999998,
- "text": "—"
- },
- {
- "id": 677,
- "start": 224.343,
- "end": 224.543,
- "text": "what’s"
- },
- {
- "id": 678,
- "start": 224.543,
- "end": 224.643,
- "text": "it"
- },
- {
- "id": 679,
- "start": 224.643,
- "end": 224.823,
- "text": "like"
- },
- {
- "id": 680,
- "start": 225.19050000000001,
- "end": 225.37800000000001,
- "text": "walking"
- },
- {
- "id": 681,
- "start": 225.73800000000003,
- "end": 225.93300000000002,
- "text": "in"
- },
- {
- "id": 682,
- "start": 226.28550000000004,
- "end": 226.48800000000003,
- "text": "here?"
- },
- {
- "id": 683,
- "start": 226.833,
- "end": 227.043,
- "text": "When"
- },
- {
- "id": 684,
- "start": 227.043,
- "end": 227.173,
- "text": "I"
- },
- {
- "id": 685,
- "start": 227.173,
- "end": 227.463,
- "text": "joined"
- },
- {
- "id": 686,
- "start": 227.463,
- "end": 227.773,
- "text": "seven"
- },
- {
- "id": 687,
- "start": 227.773,
- "end": 228.043,
- "text": "months"
- },
- {
- "id": 688,
- "start": 228.043,
- "end": 228.533,
- "text": "ago,"
- },
- {
- "id": 689,
- "start": 228.403,
- "end": 228.753,
- "text": "we"
- },
- {
- "id": 690,
- "start": 228.57799999999997,
- "end": 229.04299999999998,
- "text": "had"
- },
- {
- "id": 691,
- "start": 228.753,
- "end": 229.333,
- "text": "done"
- },
- {
- "id": 692,
- "start": 229.333,
- "end": 229.643,
- "text": "some"
- },
- {
- "id": 693,
- "start": 229.833,
- "end": 230.30299999999997,
- "text": "high-profile"
- },
- {
- "id": 694,
- "start": 230.333,
- "end": 230.963,
- "text": "takedowns"
- },
- {
- "id": 695,
- "start": 230.963,
- "end": 231.083,
- "text": "of"
- },
- {
- "id": 696,
- "start": 231.083,
- "end": 231.253,
- "text": "the"
- },
- {
- "id": 697,
- "start": 231.253,
- "end": 231.773,
- "text": "IRA"
- },
- {
- "id": 698,
- "start": 231.453,
- "end": 231.898,
- "text": "[Internet"
- },
- {
- "id": 699,
- "start": 231.65300000000002,
- "end": 232.023,
- "text": "Research"
- },
- {
- "id": 700,
- "start": 231.853,
- "end": 232.148,
- "text": "Agency],"
- },
- {
- "id": 701,
- "start": 232.053,
- "end": 232.273,
- "text": "of"
- },
- {
- "id": 702,
- "start": 232.273,
- "end": 232.713,
- "text": "assets"
- },
- {
- "id": 703,
- "start": 232.713,
- "end": 232.813,
- "text": "that"
- },
- {
- "id": 704,
- "start": 232.813,
- "end": 232.913,
- "text": "they"
- },
- {
- "id": 705,
- "start": 232.913,
- "end": 233.053,
- "text": "were"
- },
- {
- "id": 706,
- "start": 233.268,
- "end": 233.538,
- "text": "running,"
- },
- {
- "id": 707,
- "start": 233.623,
- "end": 234.023,
- "text": "and"
- },
- {
- "id": 708,
- "start": 234.023,
- "end": 234.113,
- "text": "I"
- },
- {
- "id": 709,
- "start": 234.113,
- "end": 234.323,
- "text": "think"
- },
- {
- "id": 710,
- "start": 234.323,
- "end": 234.393,
- "text": "the"
- },
- {
- "id": 711,
- "start": 234.393,
- "end": 234.943,
- "text": "question"
- },
- {
- "id": 712,
- "start": 234.943,
- "end": 235.453,
- "text": "was"
- },
- {
- "id": 713,
- "start": 235.453,
- "end": 235.703,
- "text": "how"
- },
- {
- "id": 714,
- "start": 235.703,
- "end": 235.803,
- "text": "do"
- },
- {
- "id": 715,
- "start": 235.803,
- "end": 235.913,
- "text": "we"
- },
- {
- "id": 716,
- "start": 235.913,
- "end": 236.893,
- "text": "scale"
- },
- {
- "id": 717,
- "start": 236.893,
- "end": 237.053,
- "text": "that"
- },
- {
- "id": 718,
- "start": 237.053,
- "end": 237.823,
- "text": "ability"
- },
- {
- "id": 719,
- "start": 237.823,
- "end": 238.033,
- "text": "to"
- },
- {
- "id": 720,
- "start": 238.033,
- "end": 238.403,
- "text": "look"
- },
- {
- "id": 721,
- "start": 238.403,
- "end": 238.853,
- "text": "for"
- },
- {
- "id": 722,
- "start": 238.853,
- "end": 239.003,
- "text": "and"
- },
- {
- "id": 723,
- "start": 239.003,
- "end": 239.783,
- "text": "disrupt"
- },
- {
- "id": 724,
- "start": 239.783,
- "end": 240.173,
- "text": "foreign"
- },
- {
- "id": 725,
- "start": 240.173,
- "end": 240.573,
- "text": "actors"
- },
- {
- "id": 726,
- "start": 240.573,
- "end": 240.683,
- "text": "and"
- },
- {
- "id": 727,
- "start": 240.683,
- "end": 240.913,
- "text": "any"
- },
- {
- "id": 728,
- "start": 240.913,
- "end": 241.153,
- "text": "kind"
- },
- {
- "id": 729,
- "start": 241.153,
- "end": 241.263,
- "text": "of"
- },
- {
- "id": 730,
- "start": 241.263,
- "end": 241.613,
- "text": "malicious"
- },
- {
- "id": 731,
- "start": 241.613,
- "end": 242.353,
- "text": "actors"
- },
- {
- "id": 732,
- "start": 242.353,
- "end": 242.573,
- "text": "so"
- },
- {
- "id": 733,
- "start": 242.573,
- "end": 242.663,
- "text": "that"
- },
- {
- "id": 734,
- "start": 242.663,
- "end": 242.733,
- "text": "we"
- },
- {
- "id": 735,
- "start": 242.733,
- "end": 242.843,
- "text": "can"
- },
- {
- "id": 736,
- "start": 242.843,
- "end": 243.033,
- "text": "deal"
- },
- {
- "id": 737,
- "start": 243.033,
- "end": 243.133,
- "text": "with"
- },
- {
- "id": 738,
- "start": 243.133,
- "end": 243.353,
- "text": "all"
- },
- {
- "id": 739,
- "start": 243.353,
- "end": 243.433,
- "text": "the"
- },
- {
- "id": 740,
- "start": 243.433,
- "end": 243.653,
- "text": "types"
- },
- {
- "id": 741,
- "start": 243.653,
- "end": 243.743,
- "text": "of"
- },
- {
- "id": 742,
- "start": 243.743,
- "end": 244.293,
- "text": "threats"
- },
- {
- "id": 743,
- "start": 244.293,
- "end": 244.493,
- "text": "that"
- },
- {
- "id": 744,
- "start": 244.493,
- "end": 244.663,
- "text": "are"
- },
- {
- "id": 745,
- "start": 244.663,
- "end": 245.243,
- "text": "manifesting"
- },
- {
- "id": 746,
- "start": 245.243,
- "end": 245.343,
- "text": "on"
- },
- {
- "id": 747,
- "start": 245.343,
- "end": 245.413,
- "text": "the"
- },
- {
- "id": 748,
- "start": 245.413,
- "end": 246.213,
- "text": "platform?"
- },
- {
- "id": 749,
- "start": 246.213,
- "end": 246.473,
- "text": "How"
- },
- {
- "id": 750,
- "start": 246.473,
- "end": 246.573,
- "text": "do"
- },
- {
- "id": 751,
- "start": 246.573,
- "end": 247.133,
- "text": "we"
- },
- {
- "id": 752,
- "start": 247.133,
- "end": 247.603,
- "text": "build"
- },
- {
- "id": 753,
- "start": 247.603,
- "end": 247.763,
- "text": "out"
- },
- {
- "id": 754,
- "start": 247.763,
- "end": 247.853,
- "text": "our"
- },
- {
- "id": 755,
- "start": 247.853,
- "end": 248.353,
- "text": "capacity,"
- },
- {
- "id": 756,
- "start": 248.353,
- "end": 248.453,
- "text": "how"
- },
- {
- "id": 757,
- "start": 248.453,
- "end": 248.523,
- "text": "do"
- },
- {
- "id": 758,
- "start": 248.523,
- "end": 248.603,
- "text": "we"
- },
- {
- "id": 759,
- "start": 248.603,
- "end": 249.103,
- "text": "expand"
- },
- {
- "id": 760,
- "start": 249.103,
- "end": 249.193,
- "text": "our"
- },
- {
- "id": 761,
- "start": 249.193,
- "end": 250.043,
- "text": "teams,"
- },
- {
- "id": 762,
- "start": 250.043,
- "end": 250.303,
- "text": "and"
- },
- {
- "id": 763,
- "start": 250.303,
- "end": 250.613,
- "text": "how"
- },
- {
- "id": 764,
- "start": 250.613,
- "end": 250.743,
- "text": "do"
- },
- {
- "id": 765,
- "start": 250.743,
- "end": 251.153,
- "text": "we"
- },
- {
- "id": 766,
- "start": 251.153,
- "end": 251.693,
- "text": "connect"
- },
- {
- "id": 767,
- "start": 251.693,
- "end": 252.083,
- "text": "everyone"
- },
- {
- "id": 768,
- "start": 252.083,
- "end": 252.403,
- "text": "inside"
- },
- {
- "id": 769,
- "start": 252.403,
- "end": 252.483,
- "text": "the"
- },
- {
- "id": 770,
- "start": 252.483,
- "end": 253.163,
- "text": "company"
- },
- {
- "id": 771,
- "start": 253.163,
- "end": 253.633,
- "text": "so"
- },
- {
- "id": 772,
- "start": 253.633,
- "end": 253.883,
- "text": "that"
- },
- {
- "id": 773,
- "start": 253.883,
- "end": 254.023,
- "text": "we"
- },
- {
- "id": 774,
- "start": 254.023,
- "end": 254.233,
- "text": "can"
- },
- {
- "id": 775,
- "start": 254.233,
- "end": 254.403,
- "text": "run"
- },
- {
- "id": 776,
- "start": 254.403,
- "end": 254.573,
- "text": "this"
- },
- {
- "id": 777,
- "start": 254.573,
- "end": 254.743,
- "text": "more"
- },
- {
- "id": 778,
- "start": 254.743,
- "end": 255.403,
- "text": "quickly,"
- },
- {
- "id": 779,
- "start": 255.403,
- "end": 255.623,
- "text": "more"
- },
- {
- "id": 780,
- "start": 255.623,
- "end": 256.243,
- "text": "effectively"
- },
- {
- "id": 781,
- "start": 256.243,
- "end": 256.393,
- "text": "and"
- },
- {
- "id": 782,
- "start": 256.393,
- "end": 257.503,
- "text": "repeatedly?"
- },
- {
- "id": 783,
- "start": 257.113,
- "end": 257.683,
- "text": "You"
- },
- {
- "id": 784,
- "start": 257.563,
- "end": 257.923,
- "text": "mention"
- },
- {
- "id": 785,
- "start": 258.013,
- "end": 258.163,
- "text": "the"
- },
- {
- "id": 786,
- "start": 258.163,
- "end": 259.163,
- "text": "IRA."
- },
- {
- "id": 787,
- "start": 259.163,
- "end": 259.513,
- "text": "Are"
- },
- {
- "id": 788,
- "start": 259.513,
- "end": 259.693,
- "text": "there"
- },
- {
- "id": 789,
- "start": 259.693,
- "end": 260.123,
- "text": "people"
- },
- {
- "id": 790,
- "start": 260.123,
- "end": 260.553,
- "text": "working"
- },
- {
- "id": 791,
- "start": 260.553,
- "end": 260.823,
- "text": "here"
- },
- {
- "id": 792,
- "start": 260.823,
- "end": 261.093,
- "text": "every"
- },
- {
- "id": 793,
- "start": 261.093,
- "end": 261.503,
- "text": "day"
- },
- {
- "id": 794,
- "start": 261.503,
- "end": 262.173,
- "text": "on"
- },
- {
- "id": 795,
- "start": 262.173,
- "end": 262.723,
- "text": "figuring"
- },
- {
- "id": 796,
- "start": 262.723,
- "end": 263.603,
- "text": "out"
- },
- {
- "id": 797,
- "start": 263.603,
- "end": 263.893,
- "text": "what"
- },
- {
- "id": 798,
- "start": 263.893,
- "end": 264.063,
- "text": "the"
- },
- {
- "id": 799,
- "start": 264.063,
- "end": 264.483,
- "text": "IRA"
- },
- {
- "id": 800,
- "start": 264.483,
- "end": 264.643,
- "text": "is"
- },
- {
- "id": 801,
- "start": 264.643,
- "end": 265.103,
- "text": "doing,"
- },
- {
- "id": 802,
- "start": 265.103,
- "end": 265.273,
- "text": "what"
- },
- {
- "id": 803,
- "start": 265.273,
- "end": 265.443,
- "text": "their"
- },
- {
- "id": 804,
- "start": 265.443,
- "end": 266.003,
- "text": "playbook"
- },
- {
- "id": 805,
- "start": 266.003,
- "end": 266.843,
- "text": "is?"
- },
- {
- "id": 806,
- "start": 266.843,
- "end": 267.053,
- "text": "Give"
- },
- {
- "id": 807,
- "start": 267.053,
- "end": 267.153,
- "text": "me"
- },
- {
- "id": 808,
- "start": 267.153,
- "end": 267.203,
- "text": "a"
- },
- {
- "id": 809,
- "start": 267.203,
- "end": 267.613,
- "text": "sense"
- },
- {
- "id": 810,
- "start": 267.703,
- "end": 268.07300000000004,
- "text": "as"
- },
- {
- "id": 811,
- "start": 268.203,
- "end": 268.533,
- "text": "to"
- },
- {
- "id": 812,
- "start": 268.703,
- "end": 268.993,
- "text": "who’s"
- },
- {
- "id": 813,
- "start": 268.993,
- "end": 269.373,
- "text": "working"
- },
- {
- "id": 814,
- "start": 269.373,
- "end": 269.583,
- "text": "on"
- },
- {
- "id": 815,
- "start": 269.583,
- "end": 269.943,
- "text": "what"
- },
- {
- "id": 816,
- "start": 269.943,
- "end": 270.133,
- "text": "in"
- },
- {
- "id": 817,
- "start": 270.133,
- "end": 270.433,
- "text": "terms"
- },
- {
- "id": 818,
- "start": 270.433,
- "end": 270.773,
- "text": "of"
- },
- {
- "id": 819,
- "start": 270.773,
- "end": 271.563,
- "text": "these,"
- },
- {
- "id": 820,
- "start": 271.563,
- "end": 271.913,
- "text": "people"
- },
- {
- "id": 821,
- "start": 271.913,
- "end": 272.043,
- "text": "that"
- },
- {
- "id": 822,
- "start": 272.043,
- "end": 272.153,
- "text": "had"
- },
- {
- "id": 823,
- "start": 272.153,
- "end": 272.493,
- "text": "meddled"
- },
- {
- "id": 824,
- "start": 272.493,
- "end": 272.633,
- "text": "in"
- },
- {
- "id": 825,
- "start": 273.128,
- "end": 273.483,
- "text": "2016"
- },
- {
- "id": 826,
- "start": 273.763,
- "end": 274.333,
- "text": "and"
- },
- {
- "id": 827,
- "start": 274.333,
- "end": 274.663,
- "text": "what"
- },
- {
- "id": 828,
- "start": 274.663,
- "end": 274.793,
- "text": "they"
- },
- {
- "id": 829,
- "start": 274.793,
- "end": 275.083,
- "text": "did"
- },
- {
- "id": 830,
- "start": 275.083,
- "end": 275.653,
- "text": "there"
- },
- {
- "id": 831,
- "start": 275.653,
- "end": 275.993,
- "text": "and"
- },
- {
- "id": 832,
- "start": 275.993,
- "end": 276.143,
- "text": "what"
- },
- {
- "id": 833,
- "start": 276.143,
- "end": 276.253,
- "text": "they’re"
- },
- {
- "id": 834,
- "start": 276.253,
- "end": 276.523,
- "text": "doing"
- },
- {
- "id": 835,
- "start": 276.823,
- "end": 277.028,
- "text": "now."
- },
- {
- "id": 836,
- "start": 277.393,
- "end": 277.533,
- "text": "We"
- },
- {
- "id": 837,
- "start": 277.533,
- "end": 277.633,
- "text": "have"
- },
- {
- "id": 838,
- "start": 277.633,
- "end": 277.693,
- "text": "a"
- },
- {
- "id": 839,
- "start": 277.693,
- "end": 277.943,
- "text": "core"
- },
- {
- "id": 840,
- "start": 277.943,
- "end": 278.153,
- "text": "team"
- },
- {
- "id": 841,
- "start": 278.153,
- "end": 278.253,
- "text": "of"
- },
- {
- "id": 842,
- "start": 278.253,
- "end": 279.253,
- "text": "investigators"
- },
- {
- "id": 843,
- "start": 279.253,
- "end": 279.423,
- "text": "that"
- },
- {
- "id": 844,
- "start": 279.423,
- "end": 279.533,
- "text": "are"
- },
- {
- "id": 845,
- "start": 279.533,
- "end": 279.963,
- "text": "focused"
- },
- {
- "id": 846,
- "start": 279.963,
- "end": 280.143,
- "text": "on"
- },
- {
- "id": 847,
- "start": 280.143,
- "end": 280.473,
- "text": "threats"
- },
- {
- "id": 848,
- "start": 280.473,
- "end": 280.633,
- "text": "from"
- },
- {
- "id": 849,
- "start": 280.633,
- "end": 280.853,
- "text": "all"
- },
- {
- "id": 850,
- "start": 280.853,
- "end": 281.153,
- "text": "sorts"
- },
- {
- "id": 851,
- "start": 281.153,
- "end": 281.223,
- "text": "of"
- },
- {
- "id": 852,
- "start": 281.223,
- "end": 281.393,
- "text": "bad"
- },
- {
- "id": 853,
- "start": 281.393,
- "end": 282.563,
- "text": "actors."
- },
- {
- "id": 854,
- "start": 282.563,
- "end": 283.103,
- "text": "Yes,"
- },
- {
- "id": 855,
- "start": 283.103,
- "end": 283.213,
- "text": "we"
- },
- {
- "id": 856,
- "start": 283.213,
- "end": 283.773,
- "text": "have"
- },
- {
- "id": 857,
- "start": 283.773,
- "end": 284.443,
- "text": "investigators"
- },
- {
- "id": 858,
- "start": 284.443,
- "end": 284.673,
- "text": "that"
- },
- {
- "id": 859,
- "start": 284.673,
- "end": 284.873,
- "text": "are"
- },
- {
- "id": 860,
- "start": 284.873,
- "end": 285.323,
- "text": "focused"
- },
- {
- "id": 861,
- "start": 285.313,
- "end": 285.883,
- "text": "on"
- },
- {
- "id": 862,
- "start": 286.188,
- "end": 286.68300000000005,
- "text": "IRA-style"
- },
- {
- "id": 863,
- "start": 287.063,
- "end": 287.483,
- "text": "malicious"
- },
- {
- "id": 864,
- "start": 287.483,
- "end": 288.133,
- "text": "actors."
- },
- {
- "id": 865,
- "start": 288.133,
- "end": 288.363,
- "text": "We"
- },
- {
- "id": 866,
- "start": 288.363,
- "end": 288.453,
- "text": "have"
- },
- {
- "id": 867,
- "start": 288.453,
- "end": 288.963,
- "text": "investigators"
- },
- {
- "id": 868,
- "start": 288.963,
- "end": 289.053,
- "text": "that"
- },
- {
- "id": 869,
- "start": 289.053,
- "end": 289.113,
- "text": "are"
- },
- {
- "id": 870,
- "start": 289.113,
- "end": 289.553,
- "text": "focused"
- },
- {
- "id": 871,
- "start": 289.543,
- "end": 290.003,
- "text": "on"
- },
- {
- "id": 872,
- "start": 290.103,
- "end": 290.758,
- "text": "non-state"
- },
- {
- "id": 873,
- "start": 290.663,
- "end": 291.513,
- "text": "actors."
- },
- {
- "id": 874,
- "start": 291.513,
- "end": 291.673,
- "text": "They’re"
- },
- {
- "id": 875,
- "start": 291.673,
- "end": 292.263,
- "text": "constantly"
- },
- {
- "id": 876,
- "start": 292.263,
- "end": 292.543,
- "text": "thinking"
- },
- {
- "id": 877,
- "start": 292.543,
- "end": 292.843,
- "text": "about"
- },
- {
- "id": 878,
- "start": 292.843,
- "end": 293.313,
- "text": "what"
- },
- {
- "id": 879,
- "start": 293.313,
- "end": 293.583,
- "text": "are"
- },
- {
- "id": 880,
- "start": 293.583,
- "end": 293.793,
- "text": "these"
- },
- {
- "id": 881,
- "start": 293.793,
- "end": 294.173,
- "text": "actors"
- },
- {
- "id": 882,
- "start": 294.173,
- "end": 294.503,
- "text": "trying"
- },
- {
- "id": 883,
- "start": 294.503,
- "end": 294.603,
- "text": "to"
- },
- {
- "id": 884,
- "start": 294.603,
- "end": 295.203,
- "text": "do,"
- },
- {
- "id": 885,
- "start": 295.203,
- "end": 295.823,
- "text": "what"
- },
- {
- "id": 886,
- "start": 295.823,
- "end": 296.003,
- "text": "and"
- },
- {
- "id": 887,
- "start": 296.003,
- "end": 296.353,
- "text": "how"
- },
- {
- "id": 888,
- "start": 296.353,
- "end": 296.563,
- "text": "can"
- },
- {
- "id": 889,
- "start": 296.563,
- "end": 297.303,
- "text": "we"
- },
- {
- "id": 890,
- "start": 297.303,
- "end": 297.653,
- "text": "stop"
- },
- {
- "id": 891,
- "start": 297.653,
- "end": 297.893,
- "text": "them,"
- },
- {
- "id": 892,
- "start": 297.893,
- "end": 298.003,
- "text": "and"
- },
- {
- "id": 893,
- "start": 298.003,
- "end": 298.193,
- "text": "how"
- },
- {
- "id": 894,
- "start": 298.10299999999995,
- "end": 298.243,
- "text": "can"
- },
- {
- "id": 895,
- "start": 298.203,
- "end": 298.293,
- "text": "we"
- },
- {
- "id": 896,
- "start": 298.293,
- "end": 298.443,
- "text": "make"
- },
- {
- "id": 897,
- "start": 298.443,
- "end": 298.513,
- "text": "it"
- },
- {
- "id": 898,
- "start": 298.513,
- "end": 299.473,
- "text": "harder."
- },
- {
- "id": 899,
- "start": 299.473,
- "end": 299.853,
- "text": "So"
- },
- {
- "id": 900,
- "start": 299.853,
- "end": 300.063,
- "text": "would"
- },
- {
- "id": 901,
- "start": 300.063,
- "end": 300.163,
- "text": "you"
- },
- {
- "id": 902,
- "start": 300.163,
- "end": 300.273,
- "text": "have"
- },
- {
- "id": 903,
- "start": 300.273,
- "end": 300.763,
- "text": "considered"
- },
- {
- "id": 904,
- "start": 300.763,
- "end": 301.003,
- "text": "what"
- },
- {
- "id": 905,
- "start": 301.003,
- "end": 301.583,
- "text": "the"
- },
- {
- "id": 906,
- "start": 301.583,
- "end": 301.973,
- "text": "Internet"
- },
- {
- "id": 907,
- "start": 301.973,
- "end": 302.363,
- "text": "Research"
- },
- {
- "id": 908,
- "start": 302.363,
- "end": 302.843,
- "text": "Agency"
- },
- {
- "id": 909,
- "start": 302.843,
- "end": 302.963,
- "text": "and"
- },
- {
- "id": 910,
- "start": 302.903,
- "end": 303.003,
- "text": "what"
- },
- {
- "id": 911,
- "start": 302.963,
- "end": 303.043,
- "text": "the"
- },
- {
- "id": 912,
- "start": 303.043,
- "end": 303.443,
- "text": "Russians"
- },
- {
- "id": 913,
- "start": 303.443,
- "end": 303.653,
- "text": "did"
- },
- {
- "id": 914,
- "start": 303.653,
- "end": 303.863,
- "text": "in"
- },
- {
- "id": 915,
- "start": 304.403,
- "end": 304.788,
- "text": "2016"
- },
- {
- "id": 916,
- "start": 305.153,
- "end": 305.713,
- "text": "campaign,"
- },
- {
- "id": 917,
- "start": 305.713,
- "end": 305.893,
- "text": "did"
- },
- {
- "id": 918,
- "start": 305.893,
- "end": 306.023,
- "text": "you"
- },
- {
- "id": 919,
- "start": 306.023,
- "end": 306.313,
- "text": "come"
- },
- {
- "id": 920,
- "start": 306.313,
- "end": 306.943,
- "text": "in"
- },
- {
- "id": 921,
- "start": 306.943,
- "end": 307.363,
- "text": "thinking"
- },
- {
- "id": 922,
- "start": 307.363,
- "end": 307.743,
- "text": "that"
- },
- {
- "id": 923,
- "start": 307.533,
- "end": 307.983,
- "text": "was"
- },
- {
- "id": 924,
- "start": 307.953,
- "end": 308.633,
- "text": "a"
- },
- {
- "id": 925,
- "start": 308.373,
- "end": 309.283,
- "text": "sophisticated"
- },
- {
- "id": 926,
- "start": 309.283,
- "end": 309.833,
- "text": "campaign"
- },
- {
- "id": 927,
- "start": 309.833,
- "end": 309.983,
- "text": "on"
- },
- {
- "id": 928,
- "start": 309.983,
- "end": 311.003,
- "text": "Facebook,"
- },
- {
- "id": 929,
- "start": 311.003,
- "end": 311.173,
- "text": "what"
- },
- {
- "id": 930,
- "start": 311.173,
- "end": 311.333,
- "text": "they"
- },
- {
- "id": 931,
- "start": 311.333,
- "end": 312.073,
- "text": "ran?"
- },
- {
- "id": 932,
- "start": 312.073,
- "end": 312.333,
- "text": "What"
- },
- {
- "id": 933,
- "start": 312.333,
- "end": 312.393,
- "text": "do"
- },
- {
- "id": 934,
- "start": 312.393,
- "end": 312.473,
- "text": "you"
- },
- {
- "id": 935,
- "start": 312.473,
- "end": 312.923,
- "text": "mean"
- },
- {
- "id": 936,
- "start": 312.923,
- "end": 313.063,
- "text": "by"
- },
- {
- "id": 937,
- "start": 313.063,
- "end": 313.603,
- "text": "that?"
- },
- {
- "id": 938,
- "start": 313.603,
- "end": 313.843,
- "text": "What"
- },
- {
- "id": 939,
- "start": 313.843,
- "end": 313.893,
- "text": "I"
- },
- {
- "id": 940,
- "start": 313.893,
- "end": 314.153,
- "text": "mean"
- },
- {
- "id": 941,
- "start": 314.153,
- "end": 314.303,
- "text": "by"
- },
- {
- "id": 942,
- "start": 314.303,
- "end": 314.513,
- "text": "that"
- },
- {
- "id": 943,
- "start": 314.513,
- "end": 314.683,
- "text": "is"
- },
- {
- "id": 944,
- "start": 314.683,
- "end": 314.853,
- "text": "were"
- },
- {
- "id": 945,
- "start": 314.853,
- "end": 315.013,
- "text": "they"
- },
- {
- "id": 946,
- "start": 315.013,
- "end": 315.243,
- "text": "really"
- },
- {
- "id": 947,
- "start": 315.243,
- "end": 315.713,
- "text": "clever"
- },
- {
- "id": 948,
- "start": 315.858,
- "end": 316.158,
- "text": "in"
- },
- {
- "id": 949,
- "start": 316.473,
- "end": 316.603,
- "text": "how"
- },
- {
- "id": 950,
- "start": 316.603,
- "end": 317.043,
- "text": "they"
- },
- {
- "id": 951,
- "start": 317.043,
- "end": 317.993,
- "text": "operated"
- },
- {
- "id": 952,
- "start": 317.993,
- "end": 318.143,
- "text": "and"
- },
- {
- "id": 953,
- "start": 318.143,
- "end": 318.253,
- "text": "how"
- },
- {
- "id": 954,
- "start": 318.253,
- "end": 318.373,
- "text": "they"
- },
- {
- "id": 955,
- "start": 318.373,
- "end": 318.713,
- "text": "gamed"
- },
- {
- "id": 956,
- "start": 319.018,
- "end": 319.268,
- "text": "it?"
- },
- {
- "id": 957,
- "start": 319.663,
- "end": 319.823,
- "text": "They"
- },
- {
- "id": 958,
- "start": 319.823,
- "end": 320.003,
- "text": "were"
- },
- {
- "id": 959,
- "start": 320.003,
- "end": 320.443,
- "text": "using"
- },
- {
- "id": 960,
- "start": 320.443,
- "end": 320.483,
- "text": "a"
- },
- {
- "id": 961,
- "start": 320.483,
- "end": 320.693,
- "text": "new"
- },
- {
- "id": 962,
- "start": 320.693,
- "end": 321.353,
- "text": "medium"
- },
- {
- "id": 963,
- "start": 321.353,
- "end": 321.493,
- "text": "in"
- },
- {
- "id": 964,
- "start": 321.493,
- "end": 321.563,
- "text": "a"
- },
- {
- "id": 965,
- "start": 321.563,
- "end": 321.743,
- "text": "way"
- },
- {
- "id": 966,
- "start": 321.743,
- "end": 321.913,
- "text": "that"
- },
- {
- "id": 967,
- "start": 321.913,
- "end": 322.183,
- "text": "no"
- },
- {
- "id": 968,
- "start": 322.183,
- "end": 322.283,
- "text": "one"
- },
- {
- "id": 969,
- "start": 322.283,
- "end": 322.383,
- "text": "had"
- },
- {
- "id": 970,
- "start": 322.383,
- "end": 322.633,
- "text": "seen"
- },
- {
- "id": 971,
- "start": 322.633,
- "end": 323.063,
- "text": "before,"
- },
- {
- "id": 972,
- "start": 323.063,
- "end": 323.873,
- "text": "right?"
- },
- {
- "id": 973,
- "start": 323.873,
- "end": 323.983,
- "text": "I"
- },
- {
- "id": 974,
- "start": 323.983,
- "end": 324.743,
- "text": "think"
- },
- {
- "id": 975,
- "start": 324.743,
- "end": 324.993,
- "text": "we"
- },
- {
- "id": 976,
- "start": 324.993,
- "end": 325.283,
- "text": "have"
- },
- {
- "id": 977,
- "start": 325.283,
- "end": 325.753,
- "text": "learned"
- },
- {
- "id": 978,
- "start": 325.753,
- "end": 326.153,
- "text": "since"
- },
- {
- "id": 979,
- "start": 326.153,
- "end": 326.813,
- "text": "then"
- },
- {
- "id": 980,
- "start": 326.813,
- "end": 327.013,
- "text": "all"
- },
- {
- "id": 981,
- "start": 327.013,
- "end": 327.283,
- "text": "sorts"
- },
- {
- "id": 982,
- "start": 327.283,
- "end": 327.363,
- "text": "of"
- },
- {
- "id": 983,
- "start": 327.363,
- "end": 327.693,
- "text": "ways"
- },
- {
- "id": 984,
- "start": 327.693,
- "end": 327.853,
- "text": "in"
- },
- {
- "id": 985,
- "start": 327.853,
- "end": 328.343,
- "text": "which"
- },
- {
- "id": 986,
- "start": 328.343,
- "end": 329.023,
- "text": "they"
- },
- {
- "id": 987,
- "start": 329.023,
- "end": 329.553,
- "text": "didn’t"
- },
- {
- "id": 988,
- "start": 329.553,
- "end": 330.063,
- "text": "conceal"
- },
- {
- "id": 989,
- "start": 330.063,
- "end": 330.213,
- "text": "their"
- },
- {
- "id": 990,
- "start": 330.213,
- "end": 330.703,
- "text": "identity"
- },
- {
- "id": 991,
- "start": 330.703,
- "end": 330.833,
- "text": "as"
- },
- {
- "id": 992,
- "start": 330.833,
- "end": 331.013,
- "text": "much"
- },
- {
- "id": 993,
- "start": 331.013,
- "end": 331.113,
- "text": "as"
- },
- {
- "id": 994,
- "start": 331.113,
- "end": 331.213,
- "text": "they"
- },
- {
- "id": 995,
- "start": 331.213,
- "end": 331.473,
- "text": "might"
- },
- {
- "id": 996,
- "start": 331.473,
- "end": 331.623,
- "text": "have"
- },
- {
- "id": 997,
- "start": 331.623,
- "end": 331.773,
- "text": "which"
- },
- {
- "id": 998,
- "start": 331.773,
- "end": 331.873,
- "text": "has"
- },
- {
- "id": 999,
- "start": 331.873,
- "end": 332.413,
- "text": "enabled"
- },
- {
- "id": 1000,
- "start": 332.413,
- "end": 332.543,
- "text": "us"
- },
- {
- "id": 1001,
- "start": 332.543,
- "end": 332.663,
- "text": "to"
- },
- {
- "id": 1002,
- "start": 332.663,
- "end": 332.853,
- "text": "really"
- },
- {
- "id": 1003,
- "start": 332.853,
- "end": 333.183,
- "text": "map"
- },
- {
- "id": 1004,
- "start": 333.183,
- "end": 333.323,
- "text": "out"
- },
- {
- "id": 1005,
- "start": 333.323,
- "end": 333.473,
- "text": "what"
- },
- {
- "id": 1006,
- "start": 333.473,
- "end": 333.563,
- "text": "they"
- },
- {
- "id": 1007,
- "start": 333.563,
- "end": 333.693,
- "text": "were"
- },
- {
- "id": 1008,
- "start": 333.693,
- "end": 334.303,
- "text": "doing."
- },
- {
- "id": 1009,
- "start": 334.303,
- "end": 334.523,
- "text": "But"
- },
- {
- "id": 1010,
- "start": 334.523,
- "end": 334.623,
- "text": "the"
- },
- {
- "id": 1011,
- "start": 334.623,
- "end": 334.913,
- "text": "way"
- },
- {
- "id": 1012,
- "start": 334.913,
- "end": 335.043,
- "text": "that"
- },
- {
- "id": 1013,
- "start": 335.043,
- "end": 335.183,
- "text": "they"
- },
- {
- "id": 1014,
- "start": 335.183,
- "end": 335.453,
- "text": "used"
- },
- {
- "id": 1015,
- "start": 335.453,
- "end": 335.593,
- "text": "this"
- },
- {
- "id": 1016,
- "start": 335.593,
- "end": 335.713,
- "text": "new"
- },
- {
- "id": 1017,
- "start": 335.713,
- "end": 336.423,
- "text": "medium,"
- },
- {
- "id": 1018,
- "start": 336.423,
- "end": 336.673,
- "text": "we’ve"
- },
- {
- "id": 1019,
- "start": 336.673,
- "end": 337.993,
- "text": "said"
- },
- {
- "id": 1020,
- "start": 337.993,
- "end": 338.333,
- "text": "it"
- },
- {
- "id": 1021,
- "start": 338.333,
- "end": 338.443,
- "text": "was"
- },
- {
- "id": 1022,
- "start": 338.443,
- "end": 338.503,
- "text": "a"
- },
- {
- "id": 1023,
- "start": 338.503,
- "end": 338.943,
- "text": "surprise"
- },
- {
- "id": 1024,
- "start": 338.943,
- "end": 339.023,
- "text": "to"
- },
- {
- "id": 1025,
- "start": 339.023,
- "end": 339.243,
- "text": "us."
- },
- {
- "id": 1026,
- "start": 339.243,
- "end": 339.393,
- "text": "We’ve"
- },
- {
- "id": 1027,
- "start": 339.393,
- "end": 339.753,
- "text": "said"
- },
- {
- "id": 1028,
- "start": 339.753,
- "end": 339.873,
- "text": "we"
- },
- {
- "id": 1029,
- "start": 339.873,
- "end": 340.083,
- "text": "didn’t"
- },
- {
- "id": 1030,
- "start": 340.083,
- "end": 340.203,
- "text": "see"
- },
- {
- "id": 1031,
- "start": 340.203,
- "end": 340.293,
- "text": "it"
- },
- {
- "id": 1032,
- "start": 340.293,
- "end": 340.583,
- "text": "fast"
- },
- {
- "id": 1033,
- "start": 340.728,
- "end": 341.07800000000003,
- "text": "enough;"
- },
- {
- "id": 1034,
- "start": 341.163,
- "end": 341.573,
- "text": "government"
- },
- {
- "id": 1035,
- "start": 341.573,
- "end": 341.813,
- "text": "didn’t"
- },
- {
- "id": 1036,
- "start": 341.813,
- "end": 341.943,
- "text": "see"
- },
- {
- "id": 1037,
- "start": 341.943,
- "end": 342.043,
- "text": "it"
- },
- {
- "id": 1038,
- "start": 342.043,
- "end": 342.363,
- "text": "fast"
- },
- {
- "id": 1039,
- "start": 342.363,
- "end": 342.853,
- "text": "enough."
- },
- {
- "id": 1040,
- "start": 342.853,
- "end": 343.043,
- "text": "I"
- },
- {
- "id": 1041,
- "start": 343.043,
- "end": 343.263,
- "text": "think"
- },
- {
- "id": 1042,
- "start": 343.263,
- "end": 343.363,
- "text": "what"
- },
- {
- "id": 1043,
- "start": 343.363,
- "end": 343.483,
- "text": "we’ve"
- },
- {
- "id": 1044,
- "start": 343.483,
- "end": 343.643,
- "text": "all"
- },
- {
- "id": 1045,
- "start": 343.643,
- "end": 343.773,
- "text": "been"
- },
- {
- "id": 1046,
- "start": 343.773,
- "end": 344.233,
- "text": "focused"
- },
- {
- "id": 1047,
- "start": 344.233,
- "end": 344.453,
- "text": "on"
- },
- {
- "id": 1048,
- "start": 344.453,
- "end": 345.213,
- "text": "is"
- },
- {
- "id": 1049,
- "start": 345.213,
- "end": 345.393,
- "text": "as"
- },
- {
- "id": 1050,
- "start": 345.393,
- "end": 345.523,
- "text": "we"
- },
- {
- "id": 1051,
- "start": 345.523,
- "end": 345.943,
- "text": "see"
- },
- {
- "id": 1052,
- "start": 345.943,
- "end": 346.083,
- "text": "the"
- },
- {
- "id": 1053,
- "start": 346.083,
- "end": 346.633,
- "text": "ways"
- },
- {
- "id": 1054,
- "start": 346.553,
- "end": 346.983,
- "text": "these"
- },
- {
- "id": 1055,
- "start": 347.023,
- "end": 347.333,
- "text": "bad"
- },
- {
- "id": 1056,
- "start": 347.333,
- "end": 347.643,
- "text": "actors"
- },
- {
- "id": 1057,
- "start": 347.643,
- "end": 347.713,
- "text": "are"
- },
- {
- "id": 1058,
- "start": 347.713,
- "end": 348.153,
- "text": "trying"
- },
- {
- "id": 1059,
- "start": 348.153,
- "end": 348.243,
- "text": "to"
- },
- {
- "id": 1060,
- "start": 348.243,
- "end": 348.423,
- "text": "use"
- },
- {
- "id": 1061,
- "start": 348.423,
- "end": 348.513,
- "text": "the"
- },
- {
- "id": 1062,
- "start": 349.0830000000001,
- "end": 349.2730000000001,
- "text": "platform,"
- },
- {
- "id": 1063,
- "start": 349.743,
- "end": 350.033,
- "text": "how"
- },
- {
- "id": 1064,
- "start": 350.033,
- "end": 350.263,
- "text": "can"
- },
- {
- "id": 1065,
- "start": 350.263,
- "end": 350.493,
- "text": "we"
- },
- {
- "id": 1066,
- "start": 350.493,
- "end": 350.643,
- "text": "get"
- },
- {
- "id": 1067,
- "start": 350.643,
- "end": 350.923,
- "text": "ahead"
- },
- {
- "id": 1068,
- "start": 350.923,
- "end": 351.033,
- "text": "of"
- },
- {
- "id": 1069,
- "start": 351.023,
- "end": 351.313,
- "text": "that?"
- },
- {
- "id": 1070,
- "start": 351.413,
- "end": 351.738,
- "text": "And"
- },
- {
- "id": 1071,
- "start": 351.803,
- "end": 352.163,
- "text": "having"
- },
- {
- "id": 1072,
- "start": 352.163,
- "end": 352.473,
- "text": "come"
- },
- {
- "id": 1073,
- "start": 352.473,
- "end": 352.633,
- "text": "out"
- },
- {
- "id": 1074,
- "start": 352.633,
- "end": 352.743,
- "text": "of"
- },
- {
- "id": 1075,
- "start": 352.743,
- "end": 355.193,
- "text": "government,"
- },
- {
- "id": 1076,
- "start": 355.193,
- "end": 355.543,
- "text": "what"
- },
- {
- "id": 1077,
- "start": 355.543,
- "end": 355.773,
- "text": "years"
- },
- {
- "id": 1078,
- "start": 355.773,
- "end": 355.923,
- "text": "were"
- },
- {
- "id": 1079,
- "start": 355.923,
- "end": 356.033,
- "text": "you"
- },
- {
- "id": 1080,
- "start": 356.033,
- "end": 356.103,
- "text": "in"
- },
- {
- "id": 1081,
- "start": 356.103,
- "end": 356.213,
- "text": "the"
- },
- {
- "id": 1082,
- "start": 356.538,
- "end": 356.713,
- "text": "Obama—what"
- },
- {
- "id": 1083,
- "start": 356.973,
- "end": 357.213,
- "text": "years"
- },
- {
- "id": 1084,
- "start": 357.213,
- "end": 357.343,
- "text": "were"
- },
- {
- "id": 1085,
- "start": 357.343,
- "end": 357.413,
- "text": "you"
- },
- {
- "id": 1086,
- "start": 357.413,
- "end": 357.483,
- "text": "at"
- },
- {
- "id": 1087,
- "start": 357.483,
- "end": 357.573,
- "text": "the"
- },
- {
- "id": 1088,
- "start": 357.573,
- "end": 358.303,
- "text": "NSC?"
- },
- {
- "id": 1089,
- "start": 358.303,
- "end": 358.473,
- "text": "At"
- },
- {
- "id": 1090,
- "start": 358.473,
- "end": 358.593,
- "text": "the"
- },
- {
- "id": 1091,
- "start": 358.593,
- "end": 359.113,
- "text": "NSC"
- },
- {
- "id": 1092,
- "start": 359.113,
- "end": 359.713,
- "text": "from"
- },
- {
- "id": 1093,
- "start": 359.65299999999996,
- "end": 360.17075,
- "text": "2013"
- },
- {
- "id": 1094,
- "start": 360.1929999999999,
- "end": 360.62850000000003,
- "text": "to"
- },
- {
- "id": 1095,
- "start": 360.733,
- "end": 361.08625,
- "text": "2015."
- },
- {
- "id": 1096,
- "start": 361.273,
- "end": 361.544,
- "text": "So"
- },
- {
- "id": 1097,
- "start": 361.544,
- "end": 361.944,
- "text": "during"
- },
- {
- "id": 1098,
- "start": 361.944,
- "end": 362.134,
- "text": "that"
- },
- {
- "id": 1099,
- "start": 362.134,
- "end": 362.434,
- "text": "period"
- },
- {
- "id": 1100,
- "start": 362.434,
- "end": 362.534,
- "text": "of"
- },
- {
- "id": 1101,
- "start": 362.534,
- "end": 363.264,
- "text": "time,"
- },
- {
- "id": 1102,
- "start": 363.264,
- "end": 363.714,
- "text": "the"
- },
- {
- "id": 1103,
- "start": 363.714,
- "end": 364.544,
- "text": "Russians"
- },
- {
- "id": 1104,
- "start": 364.544,
- "end": 364.824,
- "text": "and"
- },
- {
- "id": 1105,
- "start": 364.824,
- "end": 364.894,
- "text": "the"
- },
- {
- "id": 1106,
- "start": 364.894,
- "end": 365.204,
- "text": "Internet"
- },
- {
- "id": 1107,
- "start": 365.204,
- "end": 365.594,
- "text": "Research"
- },
- {
- "id": 1108,
- "start": 365.594,
- "end": 366.494,
- "text": "Agency,"
- },
- {
- "id": 1109,
- "start": 366.494,
- "end": 366.674,
- "text": "they"
- },
- {
- "id": 1110,
- "start": 366.674,
- "end": 366.844,
- "text": "were"
- },
- {
- "id": 1111,
- "start": 366.844,
- "end": 367.674,
- "text": "waging"
- },
- {
- "id": 1112,
- "start": 367.674,
- "end": 368.444,
- "text": "disinformation"
- },
- {
- "id": 1113,
- "start": 368.444,
- "end": 369.024,
- "text": "campaigns"
- },
- {
- "id": 1114,
- "start": 369.024,
- "end": 369.124,
- "text": "in"
- },
- {
- "id": 1115,
- "start": 369.124,
- "end": 369.524,
- "text": "Ukraine,"
- },
- {
- "id": 1116,
- "start": 369.524,
- "end": 369.694,
- "text": "for"
- },
- {
- "id": 1117,
- "start": 369.694,
- "end": 370.894,
- "text": "instance,"
- },
- {
- "id": 1118,
- "start": 370.894,
- "end": 371.214,
- "text": "on"
- },
- {
- "id": 1119,
- "start": 371.214,
- "end": 371.554,
- "text": "social"
- },
- {
- "id": 1120,
- "start": 371.554,
- "end": 371.904,
- "text": "media"
- },
- {
- "id": 1121,
- "start": 371.729,
- "end": 371.964,
- "text": "and"
- },
- {
- "id": 1122,
- "start": 371.904,
- "end": 372.024,
- "text": "in"
- },
- {
- "id": 1123,
- "start": 372.024,
- "end": 372.264,
- "text": "part"
- },
- {
- "id": 1124,
- "start": 372.264,
- "end": 372.374,
- "text": "on"
- },
- {
- "id": 1125,
- "start": 372.72400000000005,
- "end": 372.899,
- "text": "Facebook."
- },
- {
- "id": 1126,
- "start": 373.184,
- "end": 373.424,
- "text": "Was"
- },
- {
- "id": 1127,
- "start": 373.424,
- "end": 373.604,
- "text": "that"
- },
- {
- "id": 1128,
- "start": 373.604,
- "end": 373.894,
- "text": "something"
- },
- {
- "id": 1129,
- "start": 373.894,
- "end": 374.004,
- "text": "that"
- },
- {
- "id": 1130,
- "start": 374.004,
- "end": 374.154,
- "text": "was"
- },
- {
- "id": 1131,
- "start": 374.154,
- "end": 374.374,
- "text": "on"
- },
- {
- "id": 1132,
- "start": 374.374,
- "end": 374.464,
- "text": "the"
- },
- {
- "id": 1133,
- "start": 374.464,
- "end": 374.804,
- "text": "radar"
- },
- {
- "id": 1134,
- "start": 374.804,
- "end": 375.414,
- "text": "screen"
- },
- {
- "id": 1135,
- "start": 375.414,
- "end": 375.634,
- "text": "of"
- },
- {
- "id": 1136,
- "start": 375.634,
- "end": 376.164,
- "text": "government"
- },
- {
- "id": 1137,
- "start": 376.164,
- "end": 376.254,
- "text": "at"
- },
- {
- "id": 1138,
- "start": 376.254,
- "end": 376.434,
- "text": "that"
- },
- {
- "id": 1139,
- "start": 376.434,
- "end": 377.784,
- "text": "point?"
- },
- {
- "id": 1140,
- "start": 377.784,
- "end": 377.824,
- "text": "I"
- },
- {
- "id": 1141,
- "start": 377.824,
- "end": 378.014,
- "text": "mean,"
- },
- {
- "id": 1142,
- "start": 378.014,
- "end": 378.144,
- "text": "we’ve"
- },
- {
- "id": 1143,
- "start": 378.144,
- "end": 378.254,
- "text": "had"
- },
- {
- "id": 1144,
- "start": 378.254,
- "end": 378.324,
- "text": "a"
- },
- {
- "id": 1145,
- "start": 378.324,
- "end": 378.574,
- "text": "heavy"
- },
- {
- "id": 1146,
- "start": 378.574,
- "end": 379.054,
- "text": "focus"
- },
- {
- "id": 1147,
- "start": 379.054,
- "end": 379.504,
- "text": "on"
- },
- {
- "id": 1148,
- "start": 379.504,
- "end": 379.624,
- "text": "the"
- },
- {
- "id": 1149,
- "start": 379.624,
- "end": 380.094,
- "text": "activity"
- },
- {
- "id": 1150,
- "start": 380.094,
- "end": 380.364,
- "text": "of"
- },
- {
- "id": 1151,
- "start": 380.364,
- "end": 380.664,
- "text": "threat"
- },
- {
- "id": 1152,
- "start": 380.664,
- "end": 381.114,
- "text": "actors"
- },
- {
- "id": 1153,
- "start": 381.114,
- "end": 381.414,
- "text": "like"
- },
- {
- "id": 1154,
- "start": 381.414,
- "end": 383.884,
- "text": "Russia."
- },
- {
- "id": 1155,
- "start": 383.884,
- "end": 384.374,
- "text": "Often"
- },
- {
- "id": 1156,
- "start": 384.374,
- "end": 384.524,
- "text": "it’s"
- },
- {
- "id": 1157,
- "start": 384.524,
- "end": 384.674,
- "text": "been"
- },
- {
- "id": 1158,
- "start": 384.674,
- "end": 385.074,
- "text": "more"
- },
- {
- "id": 1159,
- "start": 385.074,
- "end": 385.494,
- "text": "focused"
- },
- {
- "id": 1160,
- "start": 385.494,
- "end": 385.754,
- "text": "on"
- },
- {
- "id": 1161,
- "start": 385.754,
- "end": 386.154,
- "text": "traditional"
- },
- {
- "id": 1162,
- "start": 386.21399999999994,
- "end": 386.55400000000003,
- "text": "cybersecurity"
- },
- {
- "id": 1163,
- "start": 386.674,
- "end": 386.954,
- "text": "threats,"
- },
- {
- "id": 1164,
- "start": 386.954,
- "end": 387.094,
- "text": "right,"
- },
- {
- "id": 1165,
- "start": 387.489,
- "end": 388.33899999999994,
- "text": "espionage-related"
- },
- {
- "id": 1166,
- "start": 388.024,
- "end": 389.584,
- "text": "activity."
- },
- {
- "id": 1167,
- "start": 389.584,
- "end": 390.464,
- "text": "So"
- },
- {
- "id": 1168,
- "start": 390.464,
- "end": 390.614,
- "text": "is"
- },
- {
- "id": 1169,
- "start": 390.614,
- "end": 390.834,
- "text": "that"
- },
- {
- "id": 1170,
- "start": 390.834,
- "end": 390.904,
- "text": "a"
- },
- {
- "id": 1171,
- "start": 390.904,
- "end": 392.284,
- "text": "yes?"
- },
- {
- "id": 1172,
- "start": 391.454,
- "end": 392.534,
- "text": "Was"
- },
- {
- "id": 1173,
- "start": 392.59400000000005,
- "end": 393.3506666666666,
- "text": "that"
- },
- {
- "id": 1174,
- "start": 393.7339999999999,
- "end": 394.1673333333333,
- "text": "something—was"
- },
- {
- "id": 1175,
- "start": 394.874,
- "end": 394.984,
- "text": "the"
- },
- {
- "id": 1176,
- "start": 394.984,
- "end": 395.534,
- "text": "activity"
- },
- {
- "id": 1177,
- "start": 395.534,
- "end": 395.644,
- "text": "of"
- },
- {
- "id": 1178,
- "start": 395.644,
- "end": 395.734,
- "text": "the"
- },
- {
- "id": 1179,
- "start": 395.734,
- "end": 396.094,
- "text": "Internet"
- },
- {
- "id": 1180,
- "start": 396.094,
- "end": 396.484,
- "text": "Research"
- },
- {
- "id": 1181,
- "start": 396.484,
- "end": 397.054,
- "text": "Agency,"
- },
- {
- "id": 1182,
- "start": 397.054,
- "end": 397.644,
- "text": "was"
- },
- {
- "id": 1183,
- "start": 397.644,
- "end": 398.014,
- "text": "fake"
- },
- {
- "id": 1184,
- "start": 398.014,
- "end": 398.634,
- "text": "accounts,"
- },
- {
- "id": 1185,
- "start": 398.634,
- "end": 400.304,
- "text": "was"
- },
- {
- "id": 1186,
- "start": 400.304,
- "end": 400.974,
- "text": "the"
- },
- {
- "id": 1187,
- "start": 400.974,
- "end": 401.524,
- "text": "tactics"
- },
- {
- "id": 1188,
- "start": 401.524,
- "end": 401.624,
- "text": "of"
- },
- {
- "id": 1189,
- "start": 401.624,
- "end": 402.024,
- "text": "spreading"
- },
- {
- "id": 1190,
- "start": 402.024,
- "end": 402.804,
- "text": "misinformation"
- },
- {
- "id": 1191,
- "start": 402.804,
- "end": 402.894,
- "text": "and"
- },
- {
- "id": 1192,
- "start": 403.179,
- "end": 403.284,
- "text": "disinformation,"
- },
- {
- "id": 1193,
- "start": 403.554,
- "end": 403.674,
- "text": "was"
- },
- {
- "id": 1194,
- "start": 403.674,
- "end": 403.874,
- "text": "that"
- },
- {
- "id": 1195,
- "start": 403.874,
- "end": 405.084,
- "text": "something"
- },
- {
- "id": 1196,
- "start": 405.084,
- "end": 405.254,
- "text": "in"
- },
- {
- "id": 1197,
- "start": 405.254,
- "end": 405.794,
- "text": "government,"
- },
- {
- "id": 1198,
- "start": 405.794,
- "end": 405.924,
- "text": "was"
- },
- {
- "id": 1199,
- "start": 405.924,
- "end": 406.094,
- "text": "that"
- },
- {
- "id": 1200,
- "start": 406.094,
- "end": 406.424,
- "text": "something"
- },
- {
- "id": 1201,
- "start": 406.424,
- "end": 407.574,
- "text": "that"
- },
- {
- "id": 1202,
- "start": 407.574,
- "end": 407.754,
- "text": "was"
- },
- {
- "id": 1203,
- "start": 407.754,
- "end": 407.834,
- "text": "a"
- },
- {
- "id": 1204,
- "start": 407.834,
- "end": 408.384,
- "text": "priority"
- },
- {
- "id": 1205,
- "start": 408.384,
- "end": 408.464,
- "text": "or"
- },
- {
- "id": 1206,
- "start": 408.464,
- "end": 408.634,
- "text": "was"
- },
- {
- "id": 1207,
- "start": 408.634,
- "end": 408.804,
- "text": "being"
- },
- {
- "id": 1208,
- "start": 408.804,
- "end": 409.884,
- "text": "studied?"
- },
- {
- "id": 1209,
- "start": 409.884,
- "end": 410.204,
- "text": "That"
- },
- {
- "id": 1210,
- "start": 410.204,
- "end": 410.434,
- "text": "wasn’t"
- },
- {
- "id": 1211,
- "start": 410.434,
- "end": 410.474,
- "text": "a"
- },
- {
- "id": 1212,
- "start": 410.474,
- "end": 410.864,
- "text": "focus"
- },
- {
- "id": 1213,
- "start": 410.864,
- "end": 411.124,
- "text": "of"
- },
- {
- "id": 1214,
- "start": 411.124,
- "end": 411.364,
- "text": "my"
- },
- {
- "id": 1215,
- "start": 411.364,
- "end": 411.584,
- "text": "work"
- },
- {
- "id": 1216,
- "start": 411.584,
- "end": 411.664,
- "text": "in"
- },
- {
- "id": 1217,
- "start": 411.664,
- "end": 413.864,
- "text": "government."
- },
- {
- "id": 1218,
- "start": 413.864,
- "end": 414.034,
- "text": "In"
- },
- {
- "id": 1219,
- "start": 414.034,
- "end": 414.344,
- "text": "terms"
- },
- {
- "id": 1220,
- "start": 414.344,
- "end": 414.834,
- "text": "of"
- },
- {
- "id": 1221,
- "start": 414.834,
- "end": 415.474,
- "text": "what"
- },
- {
- "id": 1222,
- "start": 415.474,
- "end": 415.694,
- "text": "kind"
- },
- {
- "id": 1223,
- "start": 415.694,
- "end": 415.804,
- "text": "of"
- },
- {
- "id": 1224,
- "start": 415.804,
- "end": 416.574,
- "text": "relationship"
- },
- {
- "id": 1225,
- "start": 416.574,
- "end": 416.734,
- "text": "there"
- },
- {
- "id": 1226,
- "start": 416.734,
- "end": 417.104,
- "text": "was"
- },
- {
- "id": 1227,
- "start": 417.104,
- "end": 418.174,
- "text": "between"
- },
- {
- "id": 1228,
- "start": 418.174,
- "end": 418.654,
- "text": "the"
- },
- {
- "id": 1229,
- "start": 418.654,
- "end": 419.464,
- "text": "government"
- },
- {
- "id": 1230,
- "start": 419.454,
- "end": 420.004,
- "text": "and"
- },
- {
- "id": 1231,
- "start": 420.01400000000007,
- "end": 420.414,
- "text": "tech"
- },
- {
- "id": 1232,
- "start": 420.574,
- "end": 420.82399999999996,
- "text": "companies"
- },
- {
- "id": 1233,
- "start": 421.134,
- "end": 421.234,
- "text": "at"
- },
- {
- "id": 1234,
- "start": 421.234,
- "end": 421.444,
- "text": "that"
- },
- {
- "id": 1235,
- "start": 421.444,
- "end": 421.674,
- "text": "point"
- },
- {
- "id": 1236,
- "start": 421.674,
- "end": 421.744,
- "text": "in"
- },
- {
- "id": 1237,
- "start": 421.744,
- "end": 422.694,
- "text": "time,"
- },
- {
- "id": 1238,
- "start": 422.694,
- "end": 422.884,
- "text": "was"
- },
- {
- "id": 1239,
- "start": 422.884,
- "end": 423.094,
- "text": "there"
- },
- {
- "id": 1240,
- "start": 423.094,
- "end": 423.354,
- "text": "good"
- },
- {
- "id": 1241,
- "start": 423.354,
- "end": 424.014,
- "text": "information"
- },
- {
- "id": 1242,
- "start": 424.014,
- "end": 424.474,
- "text": "sharing"
- },
- {
- "id": 1243,
- "start": 424.474,
- "end": 424.804,
- "text": "going"
- },
- {
- "id": 1244,
- "start": 424.804,
- "end": 425.054,
- "text": "on"
- },
- {
- "id": 1245,
- "start": 425.054,
- "end": 425.674,
- "text": "between,"
- },
- {
- "id": 1246,
- "start": 425.674,
- "end": 425.814,
- "text": "for"
- },
- {
- "id": 1247,
- "start": 425.814,
- "end": 426.204,
- "text": "instance,"
- },
- {
- "id": 1248,
- "start": 426.204,
- "end": 426.304,
- "text": "the"
- },
- {
- "id": 1249,
- "start": 426.304,
- "end": 426.514,
- "text": "White"
- },
- {
- "id": 1250,
- "start": 426.514,
- "end": 426.844,
- "text": "House"
- },
- {
- "id": 1251,
- "start": 426.844,
- "end": 426.934,
- "text": "and"
- },
- {
- "id": 1252,
- "start": 426.934,
- "end": 427.004,
- "text": "the"
- },
- {
- "id": 1253,
- "start": 427.004,
- "end": 427.224,
- "text": "tech"
- },
- {
- "id": 1254,
- "start": 427.224,
- "end": 427.624,
- "text": "community"
- },
- {
- "id": 1255,
- "start": 427.624,
- "end": 428.284,
- "text": "about"
- },
- {
- "id": 1256,
- "start": 428.284,
- "end": 428.784,
- "text": "potential"
- },
- {
- "id": 1257,
- "start": 428.784,
- "end": 430.114,
- "text": "threats?"
- },
- {
- "id": 1258,
- "start": 430.114,
- "end": 430.674,
- "text": "Information"
- },
- {
- "id": 1259,
- "start": 430.674,
- "end": 431.114,
- "text": "sharing"
- },
- {
- "id": 1260,
- "start": 431.114,
- "end": 431.244,
- "text": "is"
- },
- {
- "id": 1261,
- "start": 431.244,
- "end": 431.574,
- "text": "always"
- },
- {
- "id": 1262,
- "start": 431.574,
- "end": 431.624,
- "text": "a"
- },
- {
- "id": 1263,
- "start": 431.624,
- "end": 431.824,
- "text": "little"
- },
- {
- "id": 1264,
- "start": 431.824,
- "end": 432.274,
- "text": "challenging"
- },
- {
- "id": 1265,
- "start": 432.274,
- "end": 432.374,
- "text": "when"
- },
- {
- "id": 1266,
- "start": 432.374,
- "end": 432.454,
- "text": "you"
- },
- {
- "id": 1267,
- "start": 432.454,
- "end": 432.674,
- "text": "think"
- },
- {
- "id": 1268,
- "start": 432.674,
- "end": 432.844,
- "text": "about"
- },
- {
- "id": 1269,
- "start": 432.844,
- "end": 432.984,
- "text": "how"
- },
- {
- "id": 1270,
- "start": 432.984,
- "end": 433.414,
- "text": "government"
- },
- {
- "id": 1271,
- "start": 433.414,
- "end": 433.504,
- "text": "and"
- },
- {
- "id": 1272,
- "start": 433.504,
- "end": 433.574,
- "text": "the"
- },
- {
- "id": 1273,
- "start": 433.574,
- "end": 433.854,
- "text": "private"
- },
- {
- "id": 1274,
- "start": 433.854,
- "end": 434.064,
- "text": "sector"
- },
- {
- "id": 1275,
- "start": 434.064,
- "end": 434.224,
- "text": "should"
- },
- {
- "id": 1276,
- "start": 434.224,
- "end": 434.414,
- "text": "work"
- },
- {
- "id": 1277,
- "start": 434.414,
- "end": 434.984,
- "text": "together,"
- },
- {
- "id": 1278,
- "start": 434.984,
- "end": 435.684,
- "text": "because"
- },
- {
- "id": 1279,
- "start": 435.684,
- "end": 435.914,
- "text": "the"
- },
- {
- "id": 1280,
- "start": 435.914,
- "end": 436.334,
- "text": "two"
- },
- {
- "id": 1281,
- "start": 436.334,
- "end": 437.354,
- "text": "communities"
- },
- {
- "id": 1282,
- "start": 437.354,
- "end": 437.634,
- "text": "have"
- },
- {
- "id": 1283,
- "start": 437.634,
- "end": 438.314,
- "text": "different"
- },
- {
- "id": 1284,
- "start": 438.314,
- "end": 439.234,
- "text": "capabilities"
- },
- {
- "id": 1285,
- "start": 439.234,
- "end": 439.484,
- "text": "and"
- },
- {
- "id": 1286,
- "start": 439.484,
- "end": 439.664,
- "text": "need"
- },
- {
- "id": 1287,
- "start": 439.664,
- "end": 439.934,
- "text": "different"
- },
- {
- "id": 1288,
- "start": 439.934,
- "end": 440.134,
- "text": "kinds"
- },
- {
- "id": 1289,
- "start": 440.134,
- "end": 440.204,
- "text": "of"
- },
- {
- "id": 1290,
- "start": 440.529,
- "end": 440.609,
- "text": "information."
- },
- {
- "id": 1291,
- "start": 440.92400000000004,
- "end": 441.01400000000007,
- "text": "And"
- },
- {
- "id": 1292,
- "start": 441.319,
- "end": 441.41900000000004,
- "text": "figuring"
- },
- {
- "id": 1293,
- "start": 441.714,
- "end": 441.824,
- "text": "out"
- },
- {
- "id": 1294,
- "start": 441.824,
- "end": 441.914,
- "text": "the"
- },
- {
- "id": 1295,
- "start": 441.914,
- "end": 442.154,
- "text": "right"
- },
- {
- "id": 1296,
- "start": 442.154,
- "end": 442.274,
- "text": "way"
- },
- {
- "id": 1297,
- "start": 442.274,
- "end": 442.354,
- "text": "to"
- },
- {
- "id": 1298,
- "start": 442.354,
- "end": 442.574,
- "text": "do"
- },
- {
- "id": 1299,
- "start": 442.574,
- "end": 443.434,
- "text": "that"
- },
- {
- "id": 1300,
- "start": 443.434,
- "end": 443.814,
- "text": "is"
- },
- {
- "id": 1301,
- "start": 443.814,
- "end": 443.984,
- "text": "sort"
- },
- {
- "id": 1302,
- "start": 443.984,
- "end": 444.044,
- "text": "of"
- },
- {
- "id": 1303,
- "start": 444.044,
- "end": 444.104,
- "text": "an"
- },
- {
- "id": 1304,
- "start": 444.104,
- "end": 444.444,
- "text": "ongoing"
- },
- {
- "id": 1305,
- "start": 444.3606666666667,
- "end": 444.644,
- "text": "challenge."
- },
- {
- "id": 1306,
- "start": 444.61733333333336,
- "end": 444.844,
- "text": "It’s"
- },
- {
- "id": 1307,
- "start": 444.874,
- "end": 445.044,
- "text": "one"
- },
- {
- "id": 1308,
- "start": 445.044,
- "end": 445.104,
- "text": "of"
- },
- {
- "id": 1309,
- "start": 445.104,
- "end": 445.194,
- "text": "the"
- },
- {
- "id": 1310,
- "start": 445.194,
- "end": 446.044,
- "text": "things"
- },
- {
- "id": 1311,
- "start": 446.044,
- "end": 446.204,
- "text": "that"
- },
- {
- "id": 1312,
- "start": 446.204,
- "end": 446.324,
- "text": "we"
- },
- {
- "id": 1313,
- "start": 446.324,
- "end": 446.454,
- "text": "were"
- },
- {
- "id": 1314,
- "start": 446.454,
- "end": 446.784,
- "text": "focused"
- },
- {
- "id": 1315,
- "start": 446.784,
- "end": 446.904,
- "text": "on"
- },
- {
- "id": 1316,
- "start": 446.904,
- "end": 446.994,
- "text": "when"
- },
- {
- "id": 1317,
- "start": 446.994,
- "end": 447.064,
- "text": "I"
- },
- {
- "id": 1318,
- "start": 447.064,
- "end": 447.184,
- "text": "was"
- },
- {
- "id": 1319,
- "start": 447.184,
- "end": 447.264,
- "text": "in"
- },
- {
- "id": 1320,
- "start": 447.67400000000004,
- "end": 447.80899999999997,
- "text": "government—how"
- },
- {
- "id": 1321,
- "start": 448.164,
- "end": 448.354,
- "text": "can"
- },
- {
- "id": 1322,
- "start": 448.354,
- "end": 448.764,
- "text": "government"
- },
- {
- "id": 1323,
- "start": 448.764,
- "end": 449.114,
- "text": "better"
- },
- {
- "id": 1324,
- "start": 449.114,
- "end": 449.524,
- "text": "share"
- },
- {
- "id": 1325,
- "start": 449.524,
- "end": 450.024,
- "text": "information"
- },
- {
- "id": 1326,
- "start": 450.024,
- "end": 450.144,
- "text": "with"
- },
- {
- "id": 1327,
- "start": 450.144,
- "end": 450.224,
- "text": "the"
- },
- {
- "id": 1328,
- "start": 450.224,
- "end": 450.504,
- "text": "private"
- },
- {
- "id": 1329,
- "start": 450.77399999999994,
- "end": 450.96400000000006,
- "text": "sector?—and"
- },
- {
- "id": 1330,
- "start": 451.324,
- "end": 451.424,
- "text": "it’s"
- },
- {
- "id": 1331,
- "start": 451.424,
- "end": 451.564,
- "text": "one"
- },
- {
- "id": 1332,
- "start": 451.564,
- "end": 451.624,
- "text": "of"
- },
- {
- "id": 1333,
- "start": 451.624,
- "end": 451.694,
- "text": "the"
- },
- {
- "id": 1334,
- "start": 451.694,
- "end": 451.904,
- "text": "things"
- },
- {
- "id": 1335,
- "start": 451.904,
- "end": 452.084,
- "text": "we’re"
- },
- {
- "id": 1336,
- "start": 452.084,
- "end": 452.474,
- "text": "focused"
- },
- {
- "id": 1337,
- "start": 452.474,
- "end": 452.604,
- "text": "on"
- },
- {
- "id": 1338,
- "start": 452.60066666666665,
- "end": 452.804,
- "text": "here"
- },
- {
- "id": 1339,
- "start": 452.7273333333333,
- "end": 453.004,
- "text": "at"
- },
- {
- "id": 1340,
- "start": 452.854,
- "end": 453.204,
- "text": "Facebook"
- },
- {
- "id": 1341,
- "start": 453.30400000000003,
- "end": 453.62399999999997,
- "text": "now."
- },
- {
- "id": 1342,
- "start": 453.754,
- "end": 454.044,
- "text": "How"
- },
- {
- "id": 1343,
- "start": 454.044,
- "end": 454.264,
- "text": "can"
- },
- {
- "id": 1344,
- "start": 454.264,
- "end": 454.434,
- "text": "we"
- },
- {
- "id": 1345,
- "start": 454.434,
- "end": 454.674,
- "text": "work"
- },
- {
- "id": 1346,
- "start": 454.674,
- "end": 454.794,
- "text": "with"
- },
- {
- "id": 1347,
- "start": 454.794,
- "end": 455.154,
- "text": "government"
- },
- {
- "id": 1348,
- "start": 455.154,
- "end": 455.264,
- "text": "and"
- },
- {
- "id": 1349,
- "start": 455.264,
- "end": 455.394,
- "text": "get"
- },
- {
- "id": 1350,
- "start": 455.394,
- "end": 455.894,
- "text": "information"
- },
- {
- "id": 1351,
- "start": 455.894,
- "end": 456.084,
- "text": "from"
- },
- {
- "id": 1352,
- "start": 456.084,
- "end": 456.334,
- "text": "them"
- },
- {
- "id": 1353,
- "start": 456.334,
- "end": 456.474,
- "text": "and"
- },
- {
- "id": 1354,
- "start": 456.474,
- "end": 456.694,
- "text": "share"
- },
- {
- "id": 1355,
- "start": 456.694,
- "end": 457.174,
- "text": "information"
- },
- {
- "id": 1356,
- "start": 457.174,
- "end": 457.374,
- "text": "with"
- },
- {
- "id": 1357,
- "start": 457.374,
- "end": 457.604,
- "text": "them"
- },
- {
- "id": 1358,
- "start": 457.604,
- "end": 457.704,
- "text": "to"
- },
- {
- "id": 1359,
- "start": 457.704,
- "end": 457.814,
- "text": "be"
- },
- {
- "id": 1360,
- "start": 457.814,
- "end": 457.894,
- "text": "as"
- },
- {
- "id": 1361,
- "start": 457.894,
- "end": 458.224,
- "text": "effective"
- },
- {
- "id": 1362,
- "start": 458.224,
- "end": 458.314,
- "text": "as"
- },
- {
- "id": 1363,
- "start": 458.314,
- "end": 459.664,
- "text": "possible?"
- },
- {
- "id": 1364,
- "start": 459.664,
- "end": 460.104,
- "text": "I’m"
- },
- {
- "id": 1365,
- "start": 460.104,
- "end": 460.584,
- "text": "curious"
- },
- {
- "id": 1366,
- "start": 460.584,
- "end": 460.834,
- "text": "just"
- },
- {
- "id": 1367,
- "start": 460.834,
- "end": 461.554,
- "text": "historically,"
- },
- {
- "id": 1368,
- "start": 461.554,
- "end": 461.924,
- "text": "because"
- },
- {
- "id": 1369,
- "start": 461.924,
- "end": 462.864,
- "text": "it’s"
- },
- {
- "id": 1370,
- "start": 462.864,
- "end": 463.034,
- "text": "sort"
- },
- {
- "id": 1371,
- "start": 463.034,
- "end": 463.124,
- "text": "of"
- },
- {
- "id": 1372,
- "start": 463.124,
- "end": 463.214,
- "text": "a"
- },
- {
- "id": 1373,
- "start": 463.214,
- "end": 463.554,
- "text": "black"
- },
- {
- "id": 1374,
- "start": 463.554,
- "end": 464.604,
- "text": "hole"
- },
- {
- "id": 1375,
- "start": 464.604,
- "end": 464.814,
- "text": "in"
- },
- {
- "id": 1376,
- "start": 464.814,
- "end": 465.094,
- "text": "terms"
- },
- {
- "id": 1377,
- "start": 465.094,
- "end": 465.214,
- "text": "of"
- },
- {
- "id": 1378,
- "start": 465.214,
- "end": 465.324,
- "text": "the"
- },
- {
- "id": 1379,
- "start": 465.324,
- "end": 466.384,
- "text": "record"
- },
- {
- "id": 1380,
- "start": 466.384,
- "end": 466.544,
- "text": "There"
- },
- {
- "id": 1381,
- "start": 466.544,
- "end": 466.674,
- "text": "were"
- },
- {
- "id": 1382,
- "start": 466.674,
- "end": 467.204,
- "text": "articles"
- },
- {
- "id": 1383,
- "start": 467.204,
- "end": 467.424,
- "text": "written"
- },
- {
- "id": 1384,
- "start": 467.424,
- "end": 467.724,
- "text": "about"
- },
- {
- "id": 1385,
- "start": 467.724,
- "end": 467.824,
- "text": "the"
- },
- {
- "id": 1386,
- "start": 467.824,
- "end": 468.164,
- "text": "Internet"
- },
- {
- "id": 1387,
- "start": 468.164,
- "end": 468.584,
- "text": "Research"
- },
- {
- "id": 1388,
- "start": 468.584,
- "end": 469.354,
- "text": "Agency"
- },
- {
- "id": 1389,
- "start": 469.25066666666675,
- "end": 469.8206666666667,
- "text": "in"
- },
- {
- "id": 1390,
- "start": 469.9173333333334,
- "end": 470.2873333333334,
- "text": "2015;"
- },
- {
- "id": 1391,
- "start": 470.584,
- "end": 470.754,
- "text": "there"
- },
- {
- "id": 1392,
- "start": 470.754,
- "end": 471.064,
- "text": "was"
- },
- {
- "id": 1393,
- "start": 471.064,
- "end": 471.374,
- "text": "already"
- },
- {
- "id": 1394,
- "start": 471.374,
- "end": 471.874,
- "text": "reports"
- },
- {
- "id": 1395,
- "start": 471.874,
- "end": 472.074,
- "text": "even"
- },
- {
- "id": 1396,
- "start": 472.074,
- "end": 472.204,
- "text": "as"
- },
- {
- "id": 1397,
- "start": 472.204,
- "end": 472.414,
- "text": "early"
- },
- {
- "id": 1398,
- "start": 472.414,
- "end": 472.494,
- "text": "as"
- },
- {
- "id": 1399,
- "start": 472.82900000000006,
- "end": 473.21400000000006,
- "text": "2014"
- },
- {
- "id": 1400,
- "start": 473.244,
- "end": 473.934,
- "text": "about"
- },
- {
- "id": 1401,
- "start": 473.934,
- "end": 474.514,
- "text": "the"
- },
- {
- "id": 1402,
- "start": 474.514,
- "end": 475.314,
- "text": "disinformation"
- },
- {
- "id": 1403,
- "start": 475.314,
- "end": 475.974,
- "text": "campaigns"
- },
- {
- "id": 1404,
- "start": 475.974,
- "end": 476.284,
- "text": "coming"
- },
- {
- "id": 1405,
- "start": 476.284,
- "end": 476.374,
- "text": "out"
- },
- {
- "id": 1406,
- "start": 476.374,
- "end": 476.434,
- "text": "of"
- },
- {
- "id": 1407,
- "start": 476.80066666666664,
- "end": 477.26066666666657,
- "text": "St."
- },
- {
- "id": 1408,
- "start": 477.2273333333334,
- "end": 478.08733333333316,
- "text": "Petersburg,"
- },
- {
- "id": 1409,
- "start": 477.654,
- "end": 478.914,
- "text": "and"
- },
- {
- "id": 1410,
- "start": 478.394,
- "end": 479.454,
- "text": "DARPA"
- },
- {
- "id": 1411,
- "start": 478.5706666666667,
- "end": 479.48400000000004,
- "text": "[Defense"
- },
- {
- "id": 1412,
- "start": 478.74733333333336,
- "end": 479.514,
- "text": "Advanced"
- },
- {
- "id": 1413,
- "start": 478.924,
- "end": 479.544,
- "text": "Research"
- },
- {
- "id": 1414,
- "start": 479.1006666666667,
- "end": 479.574,
- "text": "Projects"
- },
- {
- "id": 1415,
- "start": 479.27733333333333,
- "end": 479.60400000000004,
- "text": "Agency]"
- },
- {
- "id": 1416,
- "start": 479.454,
- "end": 479.634,
- "text": "had"
- },
- {
- "id": 1417,
- "start": 479.634,
- "end": 479.694,
- "text": "a"
- },
- {
- "id": 1418,
- "start": 479.894,
- "end": 479.994,
- "text": "program"
- },
- {
- "id": 1419,
- "start": 480.154,
- "end": 480.294,
- "text": "that"
- },
- {
- "id": 1420,
- "start": 480.294,
- "end": 480.404,
- "text": "was"
- },
- {
- "id": 1421,
- "start": 480.404,
- "end": 481.304,
- "text": "studying"
- },
- {
- "id": 1422,
- "start": 481.304,
- "end": 482.104,
- "text": "how"
- },
- {
- "id": 1423,
- "start": 482.104,
- "end": 482.504,
- "text": "social"
- },
- {
- "id": 1424,
- "start": 482.504,
- "end": 482.834,
- "text": "media"
- },
- {
- "id": 1425,
- "start": 482.834,
- "end": 483.004,
- "text": "could"
- },
- {
- "id": 1426,
- "start": 483.004,
- "end": 483.114,
- "text": "be"
- },
- {
- "id": 1427,
- "start": 483.649,
- "end": 483.7490000000001,
- "text": "weaponized."
- },
- {
- "id": 1428,
- "start": 484.294,
- "end": 484.384,
- "text": "I’m"
- },
- {
- "id": 1429,
- "start": 484.384,
- "end": 484.614,
- "text": "just"
- },
- {
- "id": 1430,
- "start": 484.614,
- "end": 484.744,
- "text": "kind"
- },
- {
- "id": 1431,
- "start": 484.744,
- "end": 484.834,
- "text": "of"
- },
- {
- "id": 1432,
- "start": 484.834,
- "end": 485.324,
- "text": "curious"
- },
- {
- "id": 1433,
- "start": 485.324,
- "end": 486.094,
- "text": "about"
- },
- {
- "id": 1434,
- "start": 486.094,
- "end": 487.094,
- "text": "was"
- },
- {
- "id": 1435,
- "start": 487.094,
- "end": 487.344,
- "text": "this"
- },
- {
- "id": 1436,
- "start": 487.284,
- "end": 487.564,
- "text": "something"
- },
- {
- "id": 1437,
- "start": 487.474,
- "end": 487.78400000000005,
- "text": "that"
- },
- {
- "id": 1438,
- "start": 487.664,
- "end": 488.004,
- "text": "was"
- },
- {
- "id": 1439,
- "start": 489.04399999999987,
- "end": 489.4073333333333,
- "text": "on—I"
- },
- {
- "id": 1440,
- "start": 490.424,
- "end": 490.81066666666675,
- "text": "mean,"
- },
- {
- "id": 1441,
- "start": 491.804,
- "end": 492.214,
- "text": "how"
- },
- {
- "id": 1442,
- "start": 492.214,
- "end": 492.384,
- "text": "was"
- },
- {
- "id": 1443,
- "start": 492.384,
- "end": 492.504,
- "text": "it"
- },
- {
- "id": 1444,
- "start": 492.504,
- "end": 492.824,
- "text": "not"
- },
- {
- "id": 1445,
- "start": 492.824,
- "end": 493.024,
- "text": "on"
- },
- {
- "id": 1446,
- "start": 493.024,
- "end": 493.114,
- "text": "the"
- },
- {
- "id": 1447,
- "start": 493.114,
- "end": 493.434,
- "text": "radar"
- },
- {
- "id": 1448,
- "start": 493.434,
- "end": 495.504,
- "text": "screen?"
- },
- {
- "id": 1449,
- "start": 495.504,
- "end": 495.824,
- "text": "It’s"
- },
- {
- "id": 1450,
- "start": 495.824,
- "end": 496.354,
- "text": "using"
- },
- {
- "id": 1451,
- "start": 496.354,
- "end": 496.454,
- "text": "a"
- },
- {
- "id": 1452,
- "start": 496.454,
- "end": 496.774,
- "text": "new"
- },
- {
- "id": 1453,
- "start": 496.774,
- "end": 497.734,
- "text": "medium"
- },
- {
- "id": 1454,
- "start": 497.734,
- "end": 497.904,
- "text": "in"
- },
- {
- "id": 1455,
- "start": 497.904,
- "end": 497.964,
- "text": "a"
- },
- {
- "id": 1456,
- "start": 497.964,
- "end": 498.374,
- "text": "different"
- },
- {
- "id": 1457,
- "start": 498.374,
- "end": 499.184,
- "text": "way,"
- },
- {
- "id": 1458,
- "start": 499.184,
- "end": 499.354,
- "text": "and"
- },
- {
- "id": 1459,
- "start": 499.354,
- "end": 499.404,
- "text": "I"
- },
- {
- "id": 1460,
- "start": 499.404,
- "end": 500.064,
- "text": "think"
- },
- {
- "id": 1461,
- "start": 500.064,
- "end": 500.424,
- "text": "we’ve"
- },
- {
- "id": 1462,
- "start": 500.424,
- "end": 500.594,
- "text": "been"
- },
- {
- "id": 1463,
- "start": 500.894,
- "end": 501.04900000000004,
- "text": "focused,we"
- },
- {
- "id": 1464,
- "start": 501.364,
- "end": 501.504,
- "text": "were"
- },
- {
- "id": 1465,
- "start": 501.504,
- "end": 501.824,
- "text": "certainly"
- },
- {
- "id": 1466,
- "start": 501.914,
- "end": 502.334,
- "text": "focused"
- },
- {
- "id": 1467,
- "start": 502.324,
- "end": 502.844,
- "text": "on"
- },
- {
- "id": 1468,
- "start": 502.844,
- "end": 502.954,
- "text": "the"
- },
- {
- "id": 1469,
- "start": 502.954,
- "end": 503.084,
- "text": "more"
- },
- {
- "id": 1470,
- "start": 503.084,
- "end": 503.454,
- "text": "traditional"
- },
- {
- "id": 1471,
- "start": 503.454,
- "end": 503.944,
- "text": "cybersecurity"
- },
- {
- "id": 1472,
- "start": 503.944,
- "end": 504.644,
- "text": "threats."
- },
- {
- "id": 1473,
- "start": 504.644,
- "end": 504.744,
- "text": "I"
- },
- {
- "id": 1474,
- "start": 504.744,
- "end": 504.914,
- "text": "think"
- },
- {
- "id": 1475,
- "start": 504.914,
- "end": 505.214,
- "text": "government"
- },
- {
- "id": 1476,
- "start": 505.214,
- "end": 505.324,
- "text": "was"
- },
- {
- "id": 1477,
- "start": 505.454,
- "end": 505.564,
- "text": "focused"
- },
- {
- "id": 1478,
- "start": 505.694,
- "end": 505.804,
- "text": "on"
- },
- {
- "id": 1479,
- "start": 505.804,
- "end": 505.864,
- "text": "the"
- },
- {
- "id": 1480,
- "start": 505.864,
- "end": 505.984,
- "text": "more"
- },
- {
- "id": 1481,
- "start": 505.984,
- "end": 506.314,
- "text": "traditional"
- },
- {
- "id": 1482,
- "start": 506.40399999999994,
- "end": 506.959,
- "text": "cybersecurity"
- },
- {
- "id": 1483,
- "start": 506.824,
- "end": 507.604,
- "text": "threats."
- },
- {
- "id": 1484,
- "start": 507.604,
- "end": 508.174,
- "text": "So"
- },
- {
- "id": 1485,
- "start": 508.174,
- "end": 508.404,
- "text": "when"
- },
- {
- "id": 1486,
- "start": 508.404,
- "end": 508.514,
- "text": "you"
- },
- {
- "id": 1487,
- "start": 508.514,
- "end": 508.824,
- "text": "come"
- },
- {
- "id": 1488,
- "start": 508.824,
- "end": 508.934,
- "text": "in"
- },
- {
- "id": 1489,
- "start": 508.934,
- "end": 509.334,
- "text": "here,"
- },
- {
- "id": 1490,
- "start": 509.334,
- "end": 509.794,
- "text": "then,"
- },
- {
- "id": 1491,
- "start": 509.794,
- "end": 510.094,
- "text": "with"
- },
- {
- "id": 1492,
- "start": 510.094,
- "end": 510.244,
- "text": "the"
- },
- {
- "id": 1493,
- "start": 510.244,
- "end": 510.734,
- "text": "purview"
- },
- {
- "id": 1494,
- "start": 510.734,
- "end": 511.904,
- "text": "of"
- },
- {
- "id": 1495,
- "start": 511.904,
- "end": 513.704,
- "text": "understanding"
- },
- {
- "id": 1496,
- "start": 513.704,
- "end": 513.974,
- "text": "things"
- },
- {
- "id": 1497,
- "start": 513.974,
- "end": 514.114,
- "text": "from"
- },
- {
- "id": 1498,
- "start": 514.114,
- "end": 514.234,
- "text": "the"
- },
- {
- "id": 1499,
- "start": 514.234,
- "end": 516.304,
- "text": "outside,"
- },
- {
- "id": 1500,
- "start": 514.814,
- "end": 516.934,
- "text": "how"
- },
- {
- "id": 1501,
- "start": 515.8739999999998,
- "end": 517.3906666666666,
- "text": "organized"
- },
- {
- "id": 1502,
- "start": 516.9339999999997,
- "end": 517.8473333333333,
- "text": "were"
- },
- {
- "id": 1503,
- "start": 517.994,
- "end": 518.304,
- "text": "things"
- },
- {
- "id": 1504,
- "start": 518.304,
- "end": 518.404,
- "text": "in"
- },
- {
- "id": 1505,
- "start": 518.404,
- "end": 518.674,
- "text": "here"
- },
- {
- "id": 1506,
- "start": 518.674,
- "end": 519.014,
- "text": "actually"
- },
- {
- "id": 1507,
- "start": 519.014,
- "end": 519.104,
- "text": "to"
- },
- {
- "id": 1508,
- "start": 519.104,
- "end": 519.324,
- "text": "deal"
- },
- {
- "id": 1509,
- "start": 519.324,
- "end": 519.464,
- "text": "with"
- },
- {
- "id": 1510,
- "start": 519.464,
- "end": 519.534,
- "text": "the"
- },
- {
- "id": 1511,
- "start": 519.534,
- "end": 519.694,
- "text": "new"
- },
- {
- "id": 1512,
- "start": 519.694,
- "end": 520.124,
- "text": "threats"
- },
- {
- "id": 1513,
- "start": 520.124,
- "end": 520.244,
- "text": "that"
- },
- {
- "id": 1514,
- "start": 520.244,
- "end": 520.344,
- "text": "were"
- },
- {
- "id": 1515,
- "start": 520.344,
- "end": 520.634,
- "text": "coming"
- },
- {
- "id": 1516,
- "start": 520.634,
- "end": 521.304,
- "text": "up?"
- },
- {
- "id": 1517,
- "start": 521.304,
- "end": 521.554,
- "text": "When"
- },
- {
- "id": 1518,
- "start": 521.554,
- "end": 521.634,
- "text": "I"
- },
- {
- "id": 1519,
- "start": 521.634,
- "end": 521.874,
- "text": "joined"
- },
- {
- "id": 1520,
- "start": 522.032,
- "end": 522.2800000000001,
- "text": "Facebook,"
- },
- {
- "id": 1521,
- "start": 522.4300000000001,
- "end": 522.686,
- "text": "you"
- },
- {
- "id": 1522,
- "start": 522.828,
- "end": 523.0920000000001,
- "text": "mean?"
- },
- {
- "id": 1523,
- "start": 523.226,
- "end": 523.498,
- "text": "Yes."
- },
- {
- "id": 1524,
- "start": 523.624,
- "end": 523.904,
- "text": "We"
- },
- {
- "id": 1525,
- "start": 523.904,
- "end": 524.904,
- "text": "have"
- },
- {
- "id": 1526,
- "start": 524.904,
- "end": 525.364,
- "text": "several"
- },
- {
- "id": 1527,
- "start": 525.364,
- "end": 525.634,
- "text": "different"
- },
- {
- "id": 1528,
- "start": 525.634,
- "end": 525.964,
- "text": "teams"
- },
- {
- "id": 1529,
- "start": 525.964,
- "end": 526.074,
- "text": "that"
- },
- {
- "id": 1530,
- "start": 526.074,
- "end": 526.224,
- "text": "work"
- },
- {
- "id": 1531,
- "start": 526.224,
- "end": 526.324,
- "text": "on"
- },
- {
- "id": 1532,
- "start": 526.324,
- "end": 526.724,
- "text": "aspects"
- },
- {
- "id": 1533,
- "start": 526.724,
- "end": 526.784,
- "text": "of"
- },
- {
- "id": 1534,
- "start": 526.784,
- "end": 526.914,
- "text": "this"
- },
- {
- "id": 1535,
- "start": 527.019,
- "end": 527.134,
- "text": "problem,"
- },
- {
- "id": 1536,
- "start": 527.254,
- "end": 527.354,
- "text": "and"
- },
- {
- "id": 1537,
- "start": 527.354,
- "end": 527.414,
- "text": "they"
- },
- {
- "id": 1538,
- "start": 527.414,
- "end": 527.534,
- "text": "were"
- },
- {
- "id": 1539,
- "start": 527.534,
- "end": 527.794,
- "text": "all"
- },
- {
- "id": 1540,
- "start": 527.794,
- "end": 528.174,
- "text": "working"
- },
- {
- "id": 1541,
- "start": 528.174,
- "end": 528.934,
- "text": "together."
- },
- {
- "id": 1542,
- "start": 528.934,
- "end": 529.044,
- "text": "I"
- },
- {
- "id": 1543,
- "start": 529.044,
- "end": 529.234,
- "text": "think"
- },
- {
- "id": 1544,
- "start": 529.234,
- "end": 529.354,
- "text": "what"
- },
- {
- "id": 1545,
- "start": 529.354,
- "end": 529.474,
- "text": "we"
- },
- {
- "id": 1546,
- "start": 529.474,
- "end": 529.914,
- "text": "wanted"
- },
- {
- "id": 1547,
- "start": 529.914,
- "end": 530.014,
- "text": "to"
- },
- {
- "id": 1548,
- "start": 530.014,
- "end": 530.424,
- "text": "do"
- },
- {
- "id": 1549,
- "start": 530.8839999999999,
- "end": 531.3789999999999,
- "text": "was"
- },
- {
- "id": 1550,
- "start": 531.754,
- "end": 532.334,
- "text": "build"
- },
- {
- "id": 1551,
- "start": 532.334,
- "end": 532.594,
- "text": "up"
- },
- {
- "id": 1552,
- "start": 532.594,
- "end": 532.764,
- "text": "that"
- },
- {
- "id": 1553,
- "start": 532.764,
- "end": 533.384,
- "text": "capability,"
- },
- {
- "id": 1554,
- "start": 533.384,
- "end": 533.604,
- "text": "right?"
- },
- {
- "id": 1555,
- "start": 533.604,
- "end": 533.754,
- "text": "We"
- },
- {
- "id": 1556,
- "start": 533.6790000000001,
- "end": 533.894,
- "text": "had"
- },
- {
- "id": 1557,
- "start": 533.754,
- "end": 534.034,
- "text": "already"
- },
- {
- "id": 1558,
- "start": 534.034,
- "end": 534.804,
- "text": "done"
- },
- {
- "id": 1559,
- "start": 534.804,
- "end": 534.994,
- "text": "this"
- },
- {
- "id": 1560,
- "start": 534.994,
- "end": 535.644,
- "text": "disruption,"
- },
- {
- "id": 1561,
- "start": 535.644,
- "end": 535.734,
- "text": "the"
- },
- {
- "id": 1562,
- "start": 535.734,
- "end": 536.004,
- "text": "major"
- },
- {
- "id": 1563,
- "start": 536.004,
- "end": 536.404,
- "text": "disruption"
- },
- {
- "id": 1564,
- "start": 536.404,
- "end": 536.544,
- "text": "from"
- },
- {
- "id": 1565,
- "start": 536.544,
- "end": 536.864,
- "text": "last"
- },
- {
- "id": 1566,
- "start": 536.864,
- "end": 537.414,
- "text": "fall."
- },
- {
- "id": 1567,
- "start": 537.399,
- "end": 537.889,
- "text": "We’d"
- },
- {
- "id": 1568,
- "start": 537.934,
- "end": 538.364,
- "text": "already"
- },
- {
- "id": 1569,
- "start": 538.364,
- "end": 538.854,
- "text": "started"
- },
- {
- "id": 1570,
- "start": 538.854,
- "end": 538.954,
- "text": "to"
- },
- {
- "id": 1571,
- "start": 538.954,
- "end": 539.464,
- "text": "scale"
- },
- {
- "id": 1572,
- "start": 539.464,
- "end": 539.654,
- "text": "up"
- },
- {
- "id": 1573,
- "start": 539.654,
- "end": 540.334,
- "text": "substantially"
- },
- {
- "id": 1574,
- "start": 540.334,
- "end": 540.484,
- "text": "our"
- },
- {
- "id": 1575,
- "start": 540.484,
- "end": 540.854,
- "text": "ability"
- },
- {
- "id": 1576,
- "start": 540.854,
- "end": 540.944,
- "text": "to"
- },
- {
- "id": 1577,
- "start": 540.944,
- "end": 541.394,
- "text": "find"
- },
- {
- "id": 1578,
- "start": 541.394,
- "end": 541.504,
- "text": "and"
- },
- {
- "id": 1579,
- "start": 541.504,
- "end": 541.664,
- "text": "take"
- },
- {
- "id": 1580,
- "start": 541.664,
- "end": 541.864,
- "text": "down"
- },
- {
- "id": 1581,
- "start": 541.864,
- "end": 542.014,
- "text": "these"
- },
- {
- "id": 1582,
- "start": 542.339,
- "end": 542.524,
- "text": "actors,"
- },
- {
- "id": 1583,
- "start": 542.814,
- "end": 543.034,
- "text": "and"
- },
- {
- "id": 1584,
- "start": 543.034,
- "end": 543.134,
- "text": "the"
- },
- {
- "id": 1585,
- "start": 543.134,
- "end": 543.464,
- "text": "goal"
- },
- {
- "id": 1586,
- "start": 543.464,
- "end": 543.874,
- "text": "was"
- },
- {
- "id": 1587,
- "start": 543.874,
- "end": 544.194,
- "text": "how"
- },
- {
- "id": 1588,
- "start": 544.194,
- "end": 544.284,
- "text": "do"
- },
- {
- "id": 1589,
- "start": 544.284,
- "end": 544.404,
- "text": "we"
- },
- {
- "id": 1590,
- "start": 544.404,
- "end": 544.984,
- "text": "accelerate"
- },
- {
- "id": 1591,
- "start": 544.974,
- "end": 545.274,
- "text": "that,"
- },
- {
- "id": 1592,
- "start": 545.129,
- "end": 545.404,
- "text": "and"
- },
- {
- "id": 1593,
- "start": 545.284,
- "end": 545.534,
- "text": "how"
- },
- {
- "id": 1594,
- "start": 545.534,
- "end": 545.594,
- "text": "do"
- },
- {
- "id": 1595,
- "start": 545.594,
- "end": 545.674,
- "text": "we"
- },
- {
- "id": 1596,
- "start": 545.674,
- "end": 545.824,
- "text": "make"
- },
- {
- "id": 1597,
- "start": 545.824,
- "end": 545.884,
- "text": "it"
- },
- {
- "id": 1598,
- "start": 545.884,
- "end": 545.964,
- "text": "so"
- },
- {
- "id": 1599,
- "start": 545.964,
- "end": 546.024,
- "text": "we"
- },
- {
- "id": 1600,
- "start": 546.109,
- "end": 546.2015,
- "text": "can"
- },
- {
- "id": 1601,
- "start": 546.254,
- "end": 546.379,
- "text": "do"
- },
- {
- "id": 1602,
- "start": 546.399,
- "end": 546.5565,
- "text": "it"
- },
- {
- "id": 1603,
- "start": 546.544,
- "end": 546.734,
- "text": "not"
- },
- {
- "id": 1604,
- "start": 546.734,
- "end": 546.894,
- "text": "just"
- },
- {
- "id": 1605,
- "start": 546.894,
- "end": 547.024,
- "text": "more"
- },
- {
- "id": 1606,
- "start": 547.024,
- "end": 547.524,
- "text": "quickly,"
- },
- {
- "id": 1607,
- "start": 547.524,
- "end": 547.734,
- "text": "but"
- },
- {
- "id": 1608,
- "start": 547.734,
- "end": 547.924,
- "text": "more"
- },
- {
- "id": 1609,
- "start": 548.169,
- "end": 548.384,
- "text": "effectively?"
- },
- {
- "id": 1610,
- "start": 548.604,
- "end": 548.844,
- "text": "And"
- },
- {
- "id": 1611,
- "start": 548.844,
- "end": 549.144,
- "text": "how"
- },
- {
- "id": 1612,
- "start": 549.144,
- "end": 549.294,
- "text": "is"
- },
- {
- "id": 1613,
- "start": 549.294,
- "end": 549.474,
- "text": "that"
- },
- {
- "id": 1614,
- "start": 549.474,
- "end": 550.594,
- "text": "done?"
- },
- {
- "id": 1615,
- "start": 550.594,
- "end": 550.754,
- "text": "What"
- },
- {
- "id": 1616,
- "start": 550.754,
- "end": 550.874,
- "text": "does"
- },
- {
- "id": 1617,
- "start": 550.874,
- "end": 551.064,
- "text": "that"
- },
- {
- "id": 1618,
- "start": 551.064,
- "end": 551.444,
- "text": "mean"
- },
- {
- "id": 1619,
- "start": 551.444,
- "end": 551.724,
- "text": "for"
- },
- {
- "id": 1620,
- "start": 551.724,
- "end": 551.814,
- "text": "a"
- },
- {
- "id": 1621,
- "start": 552.9389999999999,
- "end": 553.1789999999996,
- "text": "layperson?"
- },
- {
- "id": 1622,
- "start": 554.154,
- "end": 554.544,
- "text": "What"
- },
- {
- "id": 1623,
- "start": 554.544,
- "end": 554.674,
- "text": "does"
- },
- {
- "id": 1624,
- "start": 554.674,
- "end": 554.834,
- "text": "that"
- },
- {
- "id": 1625,
- "start": 554.834,
- "end": 555.204,
- "text": "actually"
- },
- {
- "id": 1626,
- "start": 555.204,
- "end": 555.664,
- "text": "mean"
- },
- {
- "id": 1627,
- "start": 555.664,
- "end": 555.794,
- "text": "to"
- },
- {
- "id": 1628,
- "start": 555.794,
- "end": 556.274,
- "text": "scale"
- },
- {
- "id": 1629,
- "start": 556.274,
- "end": 556.544,
- "text": "up,"
- },
- {
- "id": 1630,
- "start": 556.544,
- "end": 556.984,
- "text": "and"
- },
- {
- "id": 1631,
- "start": 556.984,
- "end": 557.354,
- "text": "what"
- },
- {
- "id": 1632,
- "start": 557.354,
- "end": 557.534,
- "text": "kind"
- },
- {
- "id": 1633,
- "start": 557.534,
- "end": 557.604,
- "text": "of"
- },
- {
- "id": 1634,
- "start": 558.349,
- "end": 558.4940000000001,
- "text": "challenge—inject"
- },
- {
- "id": 1635,
- "start": 559.164,
- "end": 559.384,
- "text": "me"
- },
- {
- "id": 1636,
- "start": 559.384,
- "end": 559.754,
- "text": "into"
- },
- {
- "id": 1637,
- "start": 559.754,
- "end": 560.054,
- "text": "what"
- },
- {
- "id": 1638,
- "start": 560.054,
- "end": 560.244,
- "text": "you"
- },
- {
- "id": 1639,
- "start": 560.244,
- "end": 560.384,
- "text": "have"
- },
- {
- "id": 1640,
- "start": 560.384,
- "end": 560.494,
- "text": "to"
- },
- {
- "id": 1641,
- "start": 560.494,
- "end": 560.824,
- "text": "face"
- },
- {
- "id": 1642,
- "start": 560.824,
- "end": 561.074,
- "text": "every"
- },
- {
- "id": 1643,
- "start": 561.074,
- "end": 564.824,
- "text": "day."
- },
- {
- "id": 1644,
- "start": 564.824,
- "end": 564.974,
- "text": "There’s"
- },
- {
- "id": 1645,
- "start": 564.974,
- "end": 565.044,
- "text": "a"
- },
- {
- "id": 1646,
- "start": 565.044,
- "end": 565.324,
- "text": "core"
- },
- {
- "id": 1647,
- "start": 565.324,
- "end": 565.544,
- "text": "team"
- },
- {
- "id": 1648,
- "start": 565.544,
- "end": 565.654,
- "text": "of"
- },
- {
- "id": 1649,
- "start": 565.654,
- "end": 566.574,
- "text": "investigators"
- },
- {
- "id": 1650,
- "start": 566.574,
- "end": 566.714,
- "text": "that"
- },
- {
- "id": 1651,
- "start": 566.714,
- "end": 566.794,
- "text": "are"
- },
- {
- "id": 1652,
- "start": 566.794,
- "end": 567.154,
- "text": "looking"
- },
- {
- "id": 1653,
- "start": 567.154,
- "end": 567.244,
- "text": "for"
- },
- {
- "id": 1654,
- "start": 567.244,
- "end": 567.364,
- "text": "this"
- },
- {
- "id": 1655,
- "start": 567.364,
- "end": 567.584,
- "text": "bad"
- },
- {
- "id": 1656,
- "start": 567.6690000000001,
- "end": 567.8589999999999,
- "text": "behavior,"
- },
- {
- "id": 1657,
- "start": 567.974,
- "end": 568.134,
- "text": "right,"
- },
- {
- "id": 1658,
- "start": 568.134,
- "end": 568.254,
- "text": "and"
- },
- {
- "id": 1659,
- "start": 568.254,
- "end": 568.404,
- "text": "they"
- },
- {
- "id": 1660,
- "start": 568.404,
- "end": 569.124,
- "text": "run"
- },
- {
- "id": 1661,
- "start": 569.124,
- "end": 569.594,
- "text": "constant"
- },
- {
- "id": 1662,
- "start": 569.594,
- "end": 570.364,
- "text": "analysis."
- },
- {
- "id": 1663,
- "start": 570.364,
- "end": 570.724,
- "text": "What"
- },
- {
- "id": 1664,
- "start": 570.724,
- "end": 570.804,
- "text": "do"
- },
- {
- "id": 1665,
- "start": 570.804,
- "end": 570.924,
- "text": "they"
- },
- {
- "id": 1666,
- "start": 570.924,
- "end": 571.164,
- "text": "see"
- },
- {
- "id": 1667,
- "start": 571.164,
- "end": 571.254,
- "text": "on"
- },
- {
- "id": 1668,
- "start": 571.254,
- "end": 571.334,
- "text": "the"
- },
- {
- "id": 1669,
- "start": 571.334,
- "end": 572.104,
- "text": "platform?"
- },
- {
- "id": 1670,
- "start": 572.104,
- "end": 572.414,
- "text": "What"
- },
- {
- "id": 1671,
- "start": 572.414,
- "end": 572.704,
- "text": "sorts"
- },
- {
- "id": 1672,
- "start": 572.704,
- "end": 572.774,
- "text": "of"
- },
- {
- "id": 1673,
- "start": 572.774,
- "end": 573.254,
- "text": "suspicious"
- },
- {
- "id": 1674,
- "start": 573.219,
- "end": 573.524,
- "text": "behavior"
- },
- {
- "id": 1675,
- "start": 573.664,
- "end": 573.794,
- "text": "are"
- },
- {
- "id": 1676,
- "start": 573.794,
- "end": 573.914,
- "text": "they"
- },
- {
- "id": 1677,
- "start": 573.914,
- "end": 574.484,
- "text": "seeing?"
- },
- {
- "id": 1678,
- "start": 574.484,
- "end": 574.954,
- "text": "Particularly"
- },
- {
- "id": 1679,
- "start": 574.954,
- "end": 575.364,
- "text": "focused"
- },
- {
- "id": 1680,
- "start": 575.364,
- "end": 575.924,
- "text": "on"
- },
- {
- "id": 1681,
- "start": 575.924,
- "end": 576.374,
- "text": "tactics"
- },
- {
- "id": 1682,
- "start": 576.374,
- "end": 576.514,
- "text": "and"
- },
- {
- "id": 1683,
- "start": 576.514,
- "end": 577.354,
- "text": "techniques"
- },
- {
- "id": 1684,
- "start": 577.354,
- "end": 577.474,
- "text": "that"
- },
- {
- "id": 1685,
- "start": 577.474,
- "end": 577.594,
- "text": "we’ve"
- },
- {
- "id": 1686,
- "start": 577.594,
- "end": 577.774,
- "text": "seen"
- },
- {
- "id": 1687,
- "start": 577.774,
- "end": 577.844,
- "text": "in"
- },
- {
- "id": 1688,
- "start": 577.844,
- "end": 577.914,
- "text": "the"
- },
- {
- "id": 1689,
- "start": 577.914,
- "end": 578.604,
- "text": "past"
- },
- {
- "id": 1690,
- "start": 578.604,
- "end": 579.044,
- "text": "or"
- },
- {
- "id": 1691,
- "start": 579.044,
- "end": 579.144,
- "text": "that"
- },
- {
- "id": 1692,
- "start": 579.144,
- "end": 579.274,
- "text": "are"
- },
- {
- "id": 1693,
- "start": 579.274,
- "end": 579.604,
- "text": "rooted"
- },
- {
- "id": 1694,
- "start": 579.604,
- "end": 579.724,
- "text": "in"
- },
- {
- "id": 1695,
- "start": 579.724,
- "end": 580.104,
- "text": "maybe"
- },
- {
- "id": 1696,
- "start": 580.104,
- "end": 580.184,
- "text": "a"
- },
- {
- "id": 1697,
- "start": 580.184,
- "end": 580.424,
- "text": "tip"
- },
- {
- "id": 1698,
- "start": 580.424,
- "end": 580.494,
- "text": "we"
- },
- {
- "id": 1699,
- "start": 580.494,
- "end": 580.654,
- "text": "might"
- },
- {
- "id": 1700,
- "start": 580.654,
- "end": 580.824,
- "text": "get"
- },
- {
- "id": 1701,
- "start": 580.824,
- "end": 581.014,
- "text": "from"
- },
- {
- "id": 1702,
- "start": 581.014,
- "end": 581.154,
- "text": "law"
- },
- {
- "id": 1703,
- "start": 581.154,
- "end": 581.904,
- "text": "enforcement"
- },
- {
- "id": 1704,
- "start": 581.904,
- "end": 582.444,
- "text": "or"
- },
- {
- "id": 1705,
- "start": 582.444,
- "end": 582.544,
- "text": "an"
- },
- {
- "id": 1706,
- "start": 582.544,
- "end": 582.944,
- "text": "indication"
- },
- {
- "id": 1707,
- "start": 582.944,
- "end": 583.014,
- "text": "we"
- },
- {
- "id": 1708,
- "start": 583.014,
- "end": 583.214,
- "text": "might"
- },
- {
- "id": 1709,
- "start": 583.214,
- "end": 583.504,
- "text": "get"
- },
- {
- "id": 1710,
- "start": 583.504,
- "end": 583.844,
- "text": "from"
- },
- {
- "id": 1711,
- "start": 583.844,
- "end": 583.924,
- "text": "an"
- },
- {
- "id": 1712,
- "start": 583.924,
- "end": 584.334,
- "text": "outside"
- },
- {
- "id": 1713,
- "start": 584.334,
- "end": 584.794,
- "text": "partner"
- },
- {
- "id": 1714,
- "start": 584.794,
- "end": 585.214,
- "text": "like"
- },
- {
- "id": 1715,
- "start": 585.5289999999999,
- "end": 585.879,
- "text": "FireEye"
- },
- {
- "id": 1716,
- "start": 586.264,
- "end": 586.544,
- "text": "or"
- },
- {
- "id": 1717,
- "start": 586.544,
- "end": 586.654,
- "text": "the"
- },
- {
- "id": 1718,
- "start": 586.654,
- "end": 586.964,
- "text": "Atlantic"
- },
- {
- "id": 1719,
- "start": 586.964,
- "end": 587.844,
- "text": "Council."
- },
- {
- "id": 1720,
- "start": 587.844,
- "end": 587.954,
- "text": "They"
- },
- {
- "id": 1721,
- "start": 587.954,
- "end": 588.304,
- "text": "take"
- },
- {
- "id": 1722,
- "start": 588.304,
- "end": 588.444,
- "text": "that"
- },
- {
- "id": 1723,
- "start": 588.444,
- "end": 589.304,
- "text": "information,"
- },
- {
- "id": 1724,
- "start": 589.304,
- "end": 589.394,
- "text": "and"
- },
- {
- "id": 1725,
- "start": 589.394,
- "end": 589.484,
- "text": "they"
- },
- {
- "id": 1726,
- "start": 589.484,
- "end": 589.844,
- "text": "build"
- },
- {
- "id": 1727,
- "start": 589.844,
- "end": 590.024,
- "text": "that"
- },
- {
- "id": 1728,
- "start": 590.024,
- "end": 590.514,
- "text": "out"
- },
- {
- "id": 1729,
- "start": 590.514,
- "end": 590.724,
- "text": "into"
- },
- {
- "id": 1730,
- "start": 590.724,
- "end": 590.794,
- "text": "a"
- },
- {
- "id": 1731,
- "start": 590.794,
- "end": 591.054,
- "text": "full"
- },
- {
- "id": 1732,
- "start": 591.054,
- "end": 591.454,
- "text": "picture"
- },
- {
- "id": 1733,
- "start": 591.454,
- "end": 591.554,
- "text": "of"
- },
- {
- "id": 1734,
- "start": 591.554,
- "end": 591.764,
- "text": "what’s"
- },
- {
- "id": 1735,
- "start": 591.764,
- "end": 592.224,
- "text": "happening,"
- },
- {
- "id": 1736,
- "start": 592.124,
- "end": 592.404,
- "text": "right,"
- },
- {
- "id": 1737,
- "start": 592.484,
- "end": 592.584,
- "text": "and"
- },
- {
- "id": 1738,
- "start": 592.584,
- "end": 592.684,
- "text": "we"
- },
- {
- "id": 1739,
- "start": 592.684,
- "end": 592.944,
- "text": "work"
- },
- {
- "id": 1740,
- "start": 592.944,
- "end": 593.024,
- "text": "to"
- },
- {
- "id": 1741,
- "start": 593.024,
- "end": 593.234,
- "text": "try"
- },
- {
- "id": 1742,
- "start": 593.234,
- "end": 593.374,
- "text": "get"
- },
- {
- "id": 1743,
- "start": 593.374,
- "end": 593.474,
- "text": "an"
- },
- {
- "id": 1744,
- "start": 593.474,
- "end": 594.794,
- "text": "understanding"
- },
- {
- "id": 1745,
- "start": 594.794,
- "end": 595.214,
- "text": "of"
- },
- {
- "id": 1746,
- "start": 595.214,
- "end": 595.354,
- "text": "the"
- },
- {
- "id": 1747,
- "start": 596.024,
- "end": 596.2240000000002,
- "text": "operation."
- },
- {
- "id": 1748,
- "start": 596.834,
- "end": 597.094,
- "text": "Then"
- },
- {
- "id": 1749,
- "start": 597.094,
- "end": 597.264,
- "text": "as"
- },
- {
- "id": 1750,
- "start": 597.264,
- "end": 597.394,
- "text": "we"
- },
- {
- "id": 1751,
- "start": 597.394,
- "end": 597.634,
- "text": "do"
- },
- {
- "id": 1752,
- "start": 597.634,
- "end": 597.844,
- "text": "that,"
- },
- {
- "id": 1753,
- "start": 597.844,
- "end": 597.954,
- "text": "we"
- },
- {
- "id": 1754,
- "start": 597.954,
- "end": 598.134,
- "text": "reach"
- },
- {
- "id": 1755,
- "start": 598.134,
- "end": 598.174,
- "text": "a"
- },
- {
- "id": 1756,
- "start": 598.2006666666666,
- "end": 598.2706666666667,
- "text": "point"
- },
- {
- "id": 1757,
- "start": 598.2673333333333,
- "end": 598.3673333333334,
- "text": "where"
- },
- {
- "id": 1758,
- "start": 598.334,
- "end": 598.464,
- "text": "we"
- },
- {
- "id": 1759,
- "start": 598.464,
- "end": 598.744,
- "text": "know"
- },
- {
- "id": 1760,
- "start": 598.744,
- "end": 598.964,
- "text": "enough"
- },
- {
- "id": 1761,
- "start": 598.964,
- "end": 599.264,
- "text": "about"
- },
- {
- "id": 1762,
- "start": 599.264,
- "end": 599.694,
- "text": "it"
- },
- {
- "id": 1763,
- "start": 599.694,
- "end": 599.974,
- "text": "that"
- },
- {
- "id": 1764,
- "start": 599.974,
- "end": 600.344,
- "text": "we"
- },
- {
- "id": 1765,
- "start": 600.344,
- "end": 600.554,
- "text": "can"
- },
- {
- "id": 1766,
- "start": 600.554,
- "end": 600.814,
- "text": "take"
- },
- {
- "id": 1767,
- "start": 600.814,
- "end": 601.224,
- "text": "action,"
- },
- {
- "id": 1768,
- "start": 601.224,
- "end": 601.314,
- "text": "and"
- },
- {
- "id": 1769,
- "start": 601.314,
- "end": 601.384,
- "text": "we"
- },
- {
- "id": 1770,
- "start": 601.384,
- "end": 601.484,
- "text": "can"
- },
- {
- "id": 1771,
- "start": 601.484,
- "end": 601.604,
- "text": "try"
- },
- {
- "id": 1772,
- "start": 601.604,
- "end": 601.694,
- "text": "to"
- },
- {
- "id": 1773,
- "start": 601.694,
- "end": 601.984,
- "text": "take"
- },
- {
- "id": 1774,
- "start": 601.984,
- "end": 602.104,
- "text": "all"
- },
- {
- "id": 1775,
- "start": 602.104,
- "end": 602.364,
- "text": "that"
- },
- {
- "id": 1776,
- "start": 602.428,
- "end": 602.783,
- "text": "infrastructure"
- },
- {
- "id": 1777,
- "start": 602.752,
- "end": 603.202,
- "text": "down;"
- },
- {
- "id": 1778,
- "start": 602.9053333333334,
- "end": 603.2653333333334,
- "text": "we"
- },
- {
- "id": 1779,
- "start": 603.0586666666667,
- "end": 603.3286666666667,
- "text": "can"
- },
- {
- "id": 1780,
- "start": 603.212,
- "end": 603.392,
- "text": "try"
- },
- {
- "id": 1781,
- "start": 603.392,
- "end": 603.462,
- "text": "to"
- },
- {
- "id": 1782,
- "start": 603.462,
- "end": 604.042,
- "text": "eliminate"
- },
- {
- "id": 1783,
- "start": 604.042,
- "end": 604.132,
- "text": "the"
- },
- {
- "id": 1784,
- "start": 604.132,
- "end": 604.352,
- "text": "bad"
- },
- {
- "id": 1785,
- "start": 604.9720000000001,
- "end": 605.2320000000001,
- "text": "behavior."
- },
- {
- "id": 1786,
- "start": 605.812,
- "end": 606.112,
- "text": "And"
- },
- {
- "id": 1787,
- "start": 606.112,
- "end": 606.292,
- "text": "what"
- },
- {
- "id": 1788,
- "start": 606.292,
- "end": 606.612,
- "text": "sorts"
- },
- {
- "id": 1789,
- "start": 606.612,
- "end": 606.712,
- "text": "of"
- },
- {
- "id": 1790,
- "start": 606.712,
- "end": 606.962,
- "text": "bad"
- },
- {
- "id": 1791,
- "start": 607.062,
- "end": 607.242,
- "text": "behavior"
- },
- {
- "id": 1792,
- "start": 607.412,
- "end": 607.522,
- "text": "have"
- },
- {
- "id": 1793,
- "start": 607.522,
- "end": 607.632,
- "text": "you"
- },
- {
- "id": 1794,
- "start": 607.632,
- "end": 607.782,
- "text": "been"
- },
- {
- "id": 1795,
- "start": 607.782,
- "end": 609.712,
- "text": "detecting"
- },
- {
- "id": 1796,
- "start": 609.712,
- "end": 609.822,
- "text": "in"
- },
- {
- "id": 1797,
- "start": 609.822,
- "end": 609.912,
- "text": "the"
- },
- {
- "id": 1798,
- "start": 609.912,
- "end": 610.182,
- "text": "past"
- },
- {
- "id": 1799,
- "start": 610.182,
- "end": 610.432,
- "text": "seven"
- },
- {
- "id": 1800,
- "start": 610.432,
- "end": 610.822,
- "text": "months?"
- },
- {
- "id": 1801,
- "start": 610.9886666666667,
- "end": 611.4853333333332,
- "text": "We"
- },
- {
- "id": 1802,
- "start": 611.5453333333334,
- "end": 612.1486666666666,
- "text": "focus"
- },
- {
- "id": 1803,
- "start": 612.102,
- "end": 612.812,
- "text": "particularly"
- },
- {
- "id": 1804,
- "start": 612.812,
- "end": 613.152,
- "text": "on"
- },
- {
- "id": 1805,
- "start": 613.152,
- "end": 613.252,
- "text": "what"
- },
- {
- "id": 1806,
- "start": 613.252,
- "end": 613.332,
- "text": "we"
- },
- {
- "id": 1807,
- "start": 613.332,
- "end": 613.422,
- "text": "would"
- },
- {
- "id": 1808,
- "start": 613.422,
- "end": 613.582,
- "text": "call"
- },
- {
- "id": 1809,
- "start": 613.582,
- "end": 614.292,
- "text": "coordinated"
- },
- {
- "id": 1810,
- "start": 614.292,
- "end": 614.852,
- "text": "inauthentic"
- },
- {
- "id": 1811,
- "start": 615.0370000000001,
- "end": 615.377,
- "text": "behavior."
- },
- {
- "id": 1812,
- "start": 615.782,
- "end": 615.902,
- "text": "What"
- },
- {
- "id": 1813,
- "start": 615.902,
- "end": 615.952,
- "text": "I"
- },
- {
- "id": 1814,
- "start": 615.952,
- "end": 616.142,
- "text": "mean"
- },
- {
- "id": 1815,
- "start": 616.142,
- "end": 616.282,
- "text": "by"
- },
- {
- "id": 1816,
- "start": 616.282,
- "end": 616.582,
- "text": "that"
- },
- {
- "id": 1817,
- "start": 616.582,
- "end": 616.842,
- "text": "is"
- },
- {
- "id": 1818,
- "start": 616.842,
- "end": 617.552,
- "text": "essentially"
- },
- {
- "id": 1819,
- "start": 617.552,
- "end": 617.682,
- "text": "a"
- },
- {
- "id": 1820,
- "start": 617.682,
- "end": 618.002,
- "text": "group"
- },
- {
- "id": 1821,
- "start": 618.002,
- "end": 618.092,
- "text": "of"
- },
- {
- "id": 1822,
- "start": 618.092,
- "end": 618.692,
- "text": "accounts,"
- },
- {
- "id": 1823,
- "start": 618.692,
- "end": 618.782,
- "text": "a"
- },
- {
- "id": 1824,
- "start": 618.782,
- "end": 618.942,
- "text": "group"
- },
- {
- "id": 1825,
- "start": 618.942,
- "end": 619.032,
- "text": "of"
- },
- {
- "id": 1826,
- "start": 619.032,
- "end": 620.132,
- "text": "individuals"
- },
- {
- "id": 1827,
- "start": 620.132,
- "end": 620.392,
- "text": "that"
- },
- {
- "id": 1828,
- "start": 620.392,
- "end": 620.602,
- "text": "are"
- },
- {
- "id": 1829,
- "start": 620.602,
- "end": 621.702,
- "text": "misrepresenting"
- },
- {
- "id": 1830,
- "start": 621.702,
- "end": 621.962,
- "text": "who"
- },
- {
- "id": 1831,
- "start": 621.962,
- "end": 622.132,
- "text": "they"
- },
- {
- "id": 1832,
- "start": 622.132,
- "end": 622.322,
- "text": "are"
- },
- {
- "id": 1833,
- "start": 622.322,
- "end": 622.402,
- "text": "on"
- },
- {
- "id": 1834,
- "start": 622.402,
- "end": 622.482,
- "text": "the"
- },
- {
- "id": 1835,
- "start": 622.482,
- "end": 623.272,
- "text": "platform."
- },
- {
- "id": 1836,
- "start": 623.272,
- "end": 623.402,
- "text": "They"
- },
- {
- "id": 1837,
- "start": 623.402,
- "end": 623.802,
- "text": "appear"
- },
- {
- "id": 1838,
- "start": 623.802,
- "end": 623.922,
- "text": "to"
- },
- {
- "id": 1839,
- "start": 623.922,
- "end": 624.282,
- "text": "be,"
- },
- {
- "id": 1840,
- "start": 624.282,
- "end": 624.462,
- "text": "for"
- },
- {
- "id": 1841,
- "start": 624.462,
- "end": 625.152,
- "text": "instance,"
- },
- {
- "id": 1842,
- "start": 625.152,
- "end": 626.122,
- "text": "independent,"
- },
- {
- "id": 1843,
- "start": 625.952,
- "end": 626.322,
- "text": "but"
- },
- {
- "id": 1844,
- "start": 626.1320000000001,
- "end": 626.4153333333334,
- "text": "they"
- },
- {
- "id": 1845,
- "start": 626.312,
- "end": 626.5086666666666,
- "text": "are"
- },
- {
- "id": 1846,
- "start": 626.492,
- "end": 626.602,
- "text": "in"
- },
- {
- "id": 1847,
- "start": 626.602,
- "end": 627.202,
- "text": "fact"
- },
- {
- "id": 1848,
- "start": 627.202,
- "end": 628.052,
- "text": "coordinated"
- },
- {
- "id": 1849,
- "start": 628.052,
- "end": 628.882,
- "text": "surreptitiously"
- },
- {
- "id": 1850,
- "start": 628.882,
- "end": 629.052,
- "text": "by"
- },
- {
- "id": 1851,
- "start": 629.052,
- "end": 629.332,
- "text": "one"
- },
- {
- "id": 1852,
- "start": 629.332,
- "end": 629.792,
- "text": "particular"
- },
- {
- "id": 1853,
- "start": 629.792,
- "end": 630.072,
- "text": "actor"
- },
- {
- "id": 1854,
- "start": 630.072,
- "end": 630.132,
- "text": "in"
- },
- {
- "id": 1855,
- "start": 630.132,
- "end": 630.202,
- "text": "the"
- },
- {
- "id": 1856,
- "start": 630.202,
- "end": 631.012,
- "text": "background."
- },
- {
- "id": 1857,
- "start": 631.012,
- "end": 631.192,
- "text": "And"
- },
- {
- "id": 1858,
- "start": 631.192,
- "end": 631.342,
- "text": "who"
- },
- {
- "id": 1859,
- "start": 631.342,
- "end": 631.452,
- "text": "are"
- },
- {
- "id": 1860,
- "start": 631.452,
- "end": 631.612,
- "text": "the"
- },
- {
- "id": 1861,
- "start": 631.612,
- "end": 631.992,
- "text": "actors"
- },
- {
- "id": 1862,
- "start": 631.992,
- "end": 633.572,
- "text": "that"
- },
- {
- "id": 1863,
- "start": 633.572,
- "end": 633.672,
- "text": "you’re"
- },
- {
- "id": 1864,
- "start": 633.672,
- "end": 634.232,
- "text": "discovering"
- },
- {
- "id": 1865,
- "start": 634.232,
- "end": 634.422,
- "text": "these"
- },
- {
- "id": 1866,
- "start": 634.422,
- "end": 635.212,
- "text": "days?"
- },
- {
- "id": 1867,
- "start": 635.212,
- "end": 635.472,
- "text": "We"
- },
- {
- "id": 1868,
- "start": 635.472,
- "end": 635.622,
- "text": "see"
- },
- {
- "id": 1869,
- "start": 635.852,
- "end": 636.0269999999999,
- "text": "states."
- },
- {
- "id": 1870,
- "start": 636.232,
- "end": 636.432,
- "text": "We’ve"
- },
- {
- "id": 1871,
- "start": 636.432,
- "end": 636.782,
- "text": "talked"
- },
- {
- "id": 1872,
- "start": 636.782,
- "end": 637.272,
- "text": "about"
- },
- {
- "id": 1873,
- "start": 637.272,
- "end": 637.922,
- "text": "content"
- },
- {
- "id": 1874,
- "start": 637.922,
- "end": 638.232,
- "text": "and"
- },
- {
- "id": 1875,
- "start": 638.232,
- "end": 638.712,
- "text": "activity"
- },
- {
- "id": 1876,
- "start": 638.712,
- "end": 638.862,
- "text": "that"
- },
- {
- "id": 1877,
- "start": 638.862,
- "end": 639.212,
- "text": "emanates"
- },
- {
- "id": 1878,
- "start": 639.212,
- "end": 639.412,
- "text": "from"
- },
- {
- "id": 1879,
- "start": 639.412,
- "end": 639.932,
- "text": "Russia,"
- },
- {
- "id": 1880,
- "start": 639.932,
- "end": 640.092,
- "text": "that"
- },
- {
- "id": 1881,
- "start": 640.092,
- "end": 640.412,
- "text": "emanates"
- },
- {
- "id": 1882,
- "start": 640.412,
- "end": 640.552,
- "text": "from"
- },
- {
- "id": 1883,
- "start": 640.552,
- "end": 641.072,
- "text": "Iran"
- },
- {
- "id": 1884,
- "start": 641.072,
- "end": 641.192,
- "text": "with"
- },
- {
- "id": 1885,
- "start": 641.192,
- "end": 641.422,
- "text": "links"
- },
- {
- "id": 1886,
- "start": 641.422,
- "end": 641.532,
- "text": "to"
- },
- {
- "id": 1887,
- "start": 641.532,
- "end": 641.892,
- "text": "Iranian"
- },
- {
- "id": 1888,
- "start": 641.892,
- "end": 642.142,
- "text": "state"
- },
- {
- "id": 1889,
- "start": 642.142,
- "end": 642.642,
- "text": "media."
- },
- {
- "id": 1890,
- "start": 642.5245000000001,
- "end": 643.067,
- "text": "There"
- },
- {
- "id": 1891,
- "start": 642.9070000000002,
- "end": 643.4920000000001,
- "text": "are"
- },
- {
- "id": 1892,
- "start": 643.2895000000001,
- "end": 643.917,
- "text": "non-state"
- },
- {
- "id": 1893,
- "start": 643.672,
- "end": 644.342,
- "text": "entities."
- },
- {
- "id": 1894,
- "start": 644.342,
- "end": 644.702,
- "text": "We’ve"
- },
- {
- "id": 1895,
- "start": 644.702,
- "end": 645.272,
- "text": "done"
- },
- {
- "id": 1896,
- "start": 645.272,
- "end": 646.022,
- "text": "takedowns,"
- },
- {
- "id": 1897,
- "start": 646.022,
- "end": 646.112,
- "text": "for"
- },
- {
- "id": 1898,
- "start": 646.112,
- "end": 646.372,
- "text": "instance,"
- },
- {
- "id": 1899,
- "start": 646.372,
- "end": 646.522,
- "text": "in"
- },
- {
- "id": 1900,
- "start": 646.522,
- "end": 647.442,
- "text": "Brazil"
- },
- {
- "id": 1901,
- "start": 647.442,
- "end": 647.582,
- "text": "that"
- },
- {
- "id": 1902,
- "start": 647.582,
- "end": 647.722,
- "text": "was"
- },
- {
- "id": 1903,
- "start": 647.722,
- "end": 647.992,
- "text": "linked"
- },
- {
- "id": 1904,
- "start": 647.992,
- "end": 648.512,
- "text": "entirely"
- },
- {
- "id": 1905,
- "start": 648.512,
- "end": 648.612,
- "text": "to"
- },
- {
- "id": 1906,
- "start": 648.612,
- "end": 649.042,
- "text": "domestic"
- },
- {
- "id": 1907,
- "start": 649.067,
- "end": 649.3420000000001,
- "text": "behavior,"
- },
- {
- "id": 1908,
- "start": 649.522,
- "end": 649.642,
- "text": "a"
- },
- {
- "id": 1909,
- "start": 649.642,
- "end": 650.292,
- "text": "network"
- },
- {
- "id": 1910,
- "start": 650.292,
- "end": 651.262,
- "text": "of"
- },
- {
- "id": 1911,
- "start": 651.262,
- "end": 652.002,
- "text": "apparently"
- },
- {
- "id": 1912,
- "start": 652.002,
- "end": 652.712,
- "text": "independent"
- },
- {
- "id": 1913,
- "start": 652.712,
- "end": 653.012,
- "text": "news"
- },
- {
- "id": 1914,
- "start": 653.3619999999999,
- "end": 653.577,
- "text": "organizations"
- },
- {
- "id": 1915,
- "start": 654.012,
- "end": 654.142,
- "text": "that"
- },
- {
- "id": 1916,
- "start": 654.142,
- "end": 654.232,
- "text": "were"
- },
- {
- "id": 1917,
- "start": 654.232,
- "end": 654.942,
- "text": "coordinated"
- },
- {
- "id": 1918,
- "start": 654.942,
- "end": 655.012,
- "text": "in"
- },
- {
- "id": 1919,
- "start": 655.012,
- "end": 655.072,
- "text": "the"
- },
- {
- "id": 1920,
- "start": 655.072,
- "end": 655.472,
- "text": "background"
- },
- {
- "id": 1921,
- "start": 655.472,
- "end": 655.582,
- "text": "by"
- },
- {
- "id": 1922,
- "start": 655.582,
- "end": 656.052,
- "text": "domestic"
- },
- {
- "id": 1923,
- "start": 656.097,
- "end": 656.402,
- "text": "entities."
- },
- {
- "id": 1924,
- "start": 656.612,
- "end": 656.752,
- "text": "It’s"
- },
- {
- "id": 1925,
- "start": 656.752,
- "end": 656.812,
- "text": "a"
- },
- {
- "id": 1926,
- "start": 656.812,
- "end": 657.182,
- "text": "wide"
- },
- {
- "id": 1927,
- "start": 657.182,
- "end": 657.412,
- "text": "range"
- },
- {
- "id": 1928,
- "start": 657.412,
- "end": 657.482,
- "text": "of"
- },
- {
- "id": 1929,
- "start": 657.482,
- "end": 658.352,
- "text": "actors."
- },
- {
- "id": 1930,
- "start": 658.352,
- "end": 658.672,
- "text": "How"
- },
- {
- "id": 1931,
- "start": 658.672,
- "end": 658.852,
- "text": "many"
- },
- {
- "id": 1932,
- "start": 658.852,
- "end": 659.552,
- "text": "investigators"
- },
- {
- "id": 1933,
- "start": 659.552,
- "end": 659.652,
- "text": "do"
- },
- {
- "id": 1934,
- "start": 659.652,
- "end": 659.732,
- "text": "you"
- },
- {
- "id": 1935,
- "start": 659.732,
- "end": 660.792,
- "text": "have?"
- },
- {
- "id": 1936,
- "start": 660.792,
- "end": 661.162,
- "text": "We’ve"
- },
- {
- "id": 1937,
- "start": 661.162,
- "end": 661.672,
- "text": "been"
- },
- {
- "id": 1938,
- "start": 661.672,
- "end": 662.232,
- "text": "radically"
- },
- {
- "id": 1939,
- "start": 662.232,
- "end": 663.202,
- "text": "increasing"
- },
- {
- "id": 1940,
- "start": 663.202,
- "end": 663.372,
- "text": "the"
- },
- {
- "id": 1941,
- "start": 663.372,
- "end": 663.822,
- "text": "size"
- },
- {
- "id": 1942,
- "start": 663.822,
- "end": 663.922,
- "text": "of"
- },
- {
- "id": 1943,
- "start": 663.922,
- "end": 664.032,
- "text": "our"
- },
- {
- "id": 1944,
- "start": 664.032,
- "end": 664.282,
- "text": "teams"
- },
- {
- "id": 1945,
- "start": 664.282,
- "end": 664.532,
- "text": "working"
- },
- {
- "id": 1946,
- "start": 664.532,
- "end": 664.602,
- "text": "on"
- },
- {
- "id": 1947,
- "start": 664.602,
- "end": 664.962,
- "text": "security"
- },
- {
- "id": 1948,
- "start": 664.962,
- "end": 665.072,
- "text": "in"
- },
- {
- "id": 1949,
- "start": 665.177,
- "end": 665.317,
- "text": "general."
- },
- {
- "id": 1950,
- "start": 665.392,
- "end": 665.562,
- "text": "We’ve"
- },
- {
- "id": 1951,
- "start": 665.562,
- "end": 665.952,
- "text": "doubled"
- },
- {
- "id": 1952,
- "start": 665.952,
- "end": 666.042,
- "text": "it"
- },
- {
- "id": 1953,
- "start": 666.042,
- "end": 666.232,
- "text": "from"
- },
- {
- "id": 1954,
- "start": 666.4495000000001,
- "end": 666.6519999999999,
- "text": "10,000"
- },
- {
- "id": 1955,
- "start": 666.857,
- "end": 667.0719999999999,
- "text": "to"
- },
- {
- "id": 1956,
- "start": 667.2645,
- "end": 667.492,
- "text": "20,000"
- },
- {
- "id": 1957,
- "start": 667.672,
- "end": 667.912,
- "text": "people"
- },
- {
- "id": 1958,
- "start": 667.912,
- "end": 668.272,
- "text": "across"
- },
- {
- "id": 1959,
- "start": 668.272,
- "end": 668.342,
- "text": "the"
- },
- {
- "id": 1960,
- "start": 668.342,
- "end": 669.182,
- "text": "company."
- },
- {
- "id": 1961,
- "start": 669.182,
- "end": 669.382,
- "text": "But"
- },
- {
- "id": 1962,
- "start": 669.382,
- "end": 669.492,
- "text": "as"
- },
- {
- "id": 1963,
- "start": 669.492,
- "end": 669.722,
- "text": "far"
- },
- {
- "id": 1964,
- "start": 669.722,
- "end": 669.812,
- "text": "as"
- },
- {
- "id": 1965,
- "start": 669.812,
- "end": 669.902,
- "text": "the"
- },
- {
- "id": 1966,
- "start": 669.902,
- "end": 670.412,
- "text": "investigative"
- },
- {
- "id": 1967,
- "start": 670.412,
- "end": 670.642,
- "text": "team,"
- },
- {
- "id": 1968,
- "start": 670.642,
- "end": 670.792,
- "text": "we"
- },
- {
- "id": 1969,
- "start": 670.792,
- "end": 671.042,
- "text": "don’t"
- },
- {
- "id": 1970,
- "start": 671.042,
- "end": 671.422,
- "text": "share"
- },
- {
- "id": 1971,
- "start": 671.422,
- "end": 671.892,
- "text": "particular"
- },
- {
- "id": 1972,
- "start": 671.892,
- "end": 672.112,
- "text": "team"
- },
- {
- "id": 1973,
- "start": 672.112,
- "end": 672.592,
- "text": "sizes."
- },
- {
- "id": 1974,
- "start": 672.592,
- "end": 672.732,
- "text": "Why"
- },
- {
- "id": 1975,
- "start": 672.732,
- "end": 673.612,
- "text": "not?"
- },
- {
- "id": 1976,
- "start": 673.612,
- "end": 674.372,
- "text": "Because"
- },
- {
- "id": 1977,
- "start": 674.372,
- "end": 674.502,
- "text": "there"
- },
- {
- "id": 1978,
- "start": 674.502,
- "end": 674.562,
- "text": "are"
- },
- {
- "id": 1979,
- "start": 674.562,
- "end": 674.612,
- "text": "a"
- },
- {
- "id": 1980,
- "start": 674.612,
- "end": 674.842,
- "text": "lot"
- },
- {
- "id": 1981,
- "start": 674.842,
- "end": 674.912,
- "text": "of"
- },
- {
- "id": 1982,
- "start": 674.912,
- "end": 675.172,
- "text": "different"
- },
- {
- "id": 1983,
- "start": 675.172,
- "end": 675.362,
- "text": "people"
- },
- {
- "id": 1984,
- "start": 675.362,
- "end": 675.472,
- "text": "that"
- },
- {
- "id": 1985,
- "start": 675.472,
- "end": 675.622,
- "text": "work"
- },
- {
- "id": 1986,
- "start": 675.622,
- "end": 675.932,
- "text": "together"
- },
- {
- "id": 1987,
- "start": 675.932,
- "end": 676.012,
- "text": "in"
- },
- {
- "id": 1988,
- "start": 676.012,
- "end": 676.132,
- "text": "this"
- },
- {
- "id": 1989,
- "start": 676.132,
- "end": 676.582,
- "text": "space,"
- },
- {
- "id": 1990,
- "start": 676.582,
- "end": 676.772,
- "text": "and"
- },
- {
- "id": 1991,
- "start": 676.772,
- "end": 677.002,
- "text": "thinking"
- },
- {
- "id": 1992,
- "start": 677.002,
- "end": 677.172,
- "text": "about"
- },
- {
- "id": 1993,
- "start": 677.172,
- "end": 677.382,
- "text": "one"
- },
- {
- "id": 1994,
- "start": 677.382,
- "end": 677.612,
- "text": "team"
- },
- {
- "id": 1995,
- "start": 677.612,
- "end": 677.712,
- "text": "in"
- },
- {
- "id": 1996,
- "start": 677.712,
- "end": 678.202,
- "text": "particular"
- },
- {
- "id": 1997,
- "start": 678.202,
- "end": 678.352,
- "text": "kind"
- },
- {
- "id": 1998,
- "start": 678.352,
- "end": 678.412,
- "text": "of"
- },
- {
- "id": 1999,
- "start": 678.412,
- "end": 678.712,
- "text": "misses"
- },
- {
- "id": 2000,
- "start": 678.712,
- "end": 678.782,
- "text": "the"
- },
- {
- "id": 2001,
- "start": 678.782,
- "end": 680.012,
- "text": "point."
- },
- {
- "id": 2002,
- "start": 680.012,
- "end": 680.162,
- "text": "How"
- },
- {
- "id": 2003,
- "start": 680.162,
- "end": 680.342,
- "text": "does"
- },
- {
- "id": 2004,
- "start": 680.342,
- "end": 680.492,
- "text": "that"
- },
- {
- "id": 2005,
- "start": 680.492,
- "end": 680.652,
- "text": "miss"
- },
- {
- "id": 2006,
- "start": 680.652,
- "end": 680.732,
- "text": "the"
- },
- {
- "id": 2007,
- "start": 680.732,
- "end": 681.152,
- "text": "point,"
- },
- {
- "id": 2008,
- "start": 681.152,
- "end": 681.712,
- "text": "though?"
- },
- {
- "id": 2009,
- "start": 681.712,
- "end": 681.892,
- "text": "In"
- },
- {
- "id": 2010,
- "start": 681.892,
- "end": 682.322,
- "text": "asking,"
- },
- {
- "id": 2011,
- "start": 682.322,
- "end": 682.562,
- "text": "just"
- },
- {
- "id": 2012,
- "start": 682.562,
- "end": 682.672,
- "text": "it"
- },
- {
- "id": 2013,
- "start": 682.672,
- "end": 682.892,
- "text": "seems"
- },
- {
- "id": 2014,
- "start": 682.892,
- "end": 683.002,
- "text": "like"
- },
- {
- "id": 2015,
- "start": 683.002,
- "end": 683.072,
- "text": "a"
- },
- {
- "id": 2016,
- "start": 683.072,
- "end": 683.382,
- "text": "basic"
- },
- {
- "id": 2017,
- "start": 683.382,
- "end": 683.752,
- "text": "question"
- },
- {
- "id": 2018,
- "start": 683.752,
- "end": 683.872,
- "text": "to"
- },
- {
- "id": 2019,
- "start": 683.872,
- "end": 684.052,
- "text": "me."
- },
- {
- "id": 2020,
- "start": 684.052,
- "end": 684.092,
- "text": "I"
- },
- {
- "id": 2021,
- "start": 684.092,
- "end": 684.282,
- "text": "could"
- },
- {
- "id": 2022,
- "start": 684.282,
- "end": 684.502,
- "text": "ask"
- },
- {
- "id": 2023,
- "start": 684.502,
- "end": 684.602,
- "text": "the"
- },
- {
- "id": 2024,
- "start": 684.602,
- "end": 685.072,
- "text": "FBI"
- },
- {
- "id": 2025,
- "start": 685.072,
- "end": 685.192,
- "text": "how"
- },
- {
- "id": 2026,
- "start": 685.192,
- "end": 685.362,
- "text": "many"
- },
- {
- "id": 2027,
- "start": 685.362,
- "end": 685.652,
- "text": "people"
- },
- {
- "id": 2028,
- "start": 685.652,
- "end": 685.832,
- "text": "they’ve"
- },
- {
- "id": 2029,
- "start": 685.832,
- "end": 686.062,
- "text": "got"
- },
- {
- "id": 2030,
- "start": 686.062,
- "end": 687.082,
- "text": "investigating"
- },
- {
- "id": 2031,
- "start": 687.082,
- "end": 687.852,
- "text": "cybercrime,"
- },
- {
- "id": 2032,
- "start": 687.852,
- "end": 688.012,
- "text": "for"
- },
- {
- "id": 2033,
- "start": 688.012,
- "end": 688.822,
- "text": "instance."
- },
- {
- "id": 2034,
- "start": 688.822,
- "end": 689.022,
- "text": "They’d"
- },
- {
- "id": 2035,
- "start": 689.022,
- "end": 689.452,
- "text": "probably"
- },
- {
- "id": 2036,
- "start": 689.452,
- "end": 689.712,
- "text": "tell"
- },
- {
- "id": 2037,
- "start": 689.832,
- "end": 690.112,
- "text": "me,"
- },
- {
- "id": 2038,
- "start": 690.212,
- "end": 690.512,
- "text": "so"
- },
- {
- "id": 2039,
- "start": 690.512,
- "end": 690.722,
- "text": "why"
- },
- {
- "id": 2040,
- "start": 690.722,
- "end": 690.992,
- "text": "can’t"
- },
- {
- "id": 2041,
- "start": 690.992,
- "end": 691.112,
- "text": "you"
- },
- {
- "id": 2042,
- "start": 691.112,
- "end": 691.332,
- "text": "tell"
- },
- {
- "id": 2043,
- "start": 691.332,
- "end": 692.112,
- "text": "me?"
- },
- {
- "id": 2044,
- "start": 692.112,
- "end": 692.762,
- "text": "Because"
- },
- {
- "id": 2045,
- "start": 692.762,
- "end": 692.982,
- "text": "our"
- },
- {
- "id": 2046,
- "start": 692.982,
- "end": 693.272,
- "text": "Threat"
- },
- {
- "id": 2047,
- "start": 693.272,
- "end": 693.822,
- "text": "investigative"
- },
- {
- "id": 2048,
- "start": 693.822,
- "end": 694.372,
- "text": "team"
- },
- {
- "id": 2049,
- "start": 694.372,
- "end": 694.722,
- "text": "works"
- },
- {
- "id": 2050,
- "start": 694.722,
- "end": 694.952,
- "text": "really"
- },
- {
- "id": 2051,
- "start": 694.952,
- "end": 695.372,
- "text": "closely"
- },
- {
- "id": 2052,
- "start": 695.372,
- "end": 695.522,
- "text": "with,"
- },
- {
- "id": 2053,
- "start": 695.522,
- "end": 695.672,
- "text": "for"
- },
- {
- "id": 2054,
- "start": 695.672,
- "end": 696.052,
- "text": "instance,"
- },
- {
- "id": 2055,
- "start": 695.8969999999999,
- "end": 696.287,
- "text": "our"
- },
- {
- "id": 2056,
- "start": 696.122,
- "end": 696.522,
- "text": "Community"
- },
- {
- "id": 2057,
- "start": 696.522,
- "end": 697.182,
- "text": "Operations"
- },
- {
- "id": 2058,
- "start": 697.182,
- "end": 697.552,
- "text": "team,"
- },
- {
- "id": 2059,
- "start": 697.552,
- "end": 697.762,
- "text": "who"
- },
- {
- "id": 2060,
- "start": 697.762,
- "end": 698.192,
- "text": "supports"
- },
- {
- "id": 2061,
- "start": 698.192,
- "end": 698.262,
- "text": "a"
- },
- {
- "id": 2062,
- "start": 698.262,
- "end": 698.442,
- "text": "lot"
- },
- {
- "id": 2063,
- "start": 698.442,
- "end": 698.502,
- "text": "of"
- },
- {
- "id": 2064,
- "start": 698.502,
- "end": 698.662,
- "text": "those"
- },
- {
- "id": 2065,
- "start": 698.662,
- "end": 699.642,
- "text": "investigations."
- },
- {
- "id": 2066,
- "start": 699.642,
- "end": 699.832,
- "text": "That’s"
- },
- {
- "id": 2067,
- "start": 699.832,
- "end": 700.052,
- "text": "why"
- },
- {
- "id": 2068,
- "start": 700.052,
- "end": 700.192,
- "text": "when"
- },
- {
- "id": 2069,
- "start": 700.192,
- "end": 700.292,
- "text": "we"
- },
- {
- "id": 2070,
- "start": 700.292,
- "end": 700.642,
- "text": "say"
- },
- {
- "id": 2071,
- "start": 700.642,
- "end": 700.782,
- "text": "we"
- },
- {
- "id": 2072,
- "start": 700.782,
- "end": 701.752,
- "text": "have"
- },
- {
- "id": 2073,
- "start": 701.162,
- "end": 702.082,
- "text": "first"
- },
- {
- "id": 2074,
- "start": 701.4653333333334,
- "end": 702.2603333333334,
- "text": "10,000"
- },
- {
- "id": 2075,
- "start": 701.7686666666667,
- "end": 702.4386666666667,
- "text": "at"
- },
- {
- "id": 2076,
- "start": 702.072,
- "end": 702.617,
- "text": "the"
- },
- {
- "id": 2077,
- "start": 702.3753333333334,
- "end": 702.7953333333334,
- "text": "beginning"
- },
- {
- "id": 2078,
- "start": 702.6786666666667,
- "end": 702.9736666666668,
- "text": "of"
- },
- {
- "id": 2079,
- "start": 702.982,
- "end": 703.152,
- "text": "this"
- },
- {
- "id": 2080,
- "start": 703.152,
- "end": 703.282,
- "text": "year"
- },
- {
- "id": 2081,
- "start": 703.282,
- "end": 703.382,
- "text": "and"
- },
- {
- "id": 2082,
- "start": 703.652,
- "end": 703.8219999999999,
- "text": "20,000"
- },
- {
- "id": 2083,
- "start": 704.022,
- "end": 704.262,
- "text": "people"
- },
- {
- "id": 2084,
- "start": 704.262,
- "end": 704.332,
- "text": "at"
- },
- {
- "id": 2085,
- "start": 704.332,
- "end": 704.442,
- "text": "the"
- },
- {
- "id": 2086,
- "start": 704.442,
- "end": 704.542,
- "text": "end"
- },
- {
- "id": 2087,
- "start": 704.542,
- "end": 704.602,
- "text": "of"
- },
- {
- "id": 2088,
- "start": 704.602,
- "end": 704.712,
- "text": "this"
- },
- {
- "id": 2089,
- "start": 704.712,
- "end": 704.812,
- "text": "year"
- },
- {
- "id": 2090,
- "start": 704.812,
- "end": 705.142,
- "text": "working"
- },
- {
- "id": 2091,
- "start": 705.142,
- "end": 705.252,
- "text": "on"
- },
- {
- "id": 2092,
- "start": 705.547,
- "end": 705.717,
- "text": "security,"
- },
- {
- "id": 2093,
- "start": 705.952,
- "end": 706.182,
- "text": "that"
- },
- {
- "id": 2094,
- "start": 706.182,
- "end": 706.412,
- "text": "really"
- },
- {
- "id": 2095,
- "start": 706.412,
- "end": 706.542,
- "text": "is"
- },
- {
- "id": 2096,
- "start": 706.542,
- "end": 706.602,
- "text": "a"
- },
- {
- "id": 2097,
- "start": 706.602,
- "end": 707.032,
- "text": "meaningful"
- },
- {
- "id": 2098,
- "start": 707.1519999999999,
- "end": 707.5369999999999,
- "text": "number,"
- },
- {
- "id": 2099,
- "start": 707.702,
- "end": 708.042,
- "text": "because"
- },
- {
- "id": 2100,
- "start": 708.042,
- "end": 708.172,
- "text": "to"
- },
- {
- "id": 2101,
- "start": 708.172,
- "end": 708.432,
- "text": "do"
- },
- {
- "id": 2102,
- "start": 708.432,
- "end": 708.582,
- "text": "this"
- },
- {
- "id": 2103,
- "start": 708.582,
- "end": 708.752,
- "text": "kind"
- },
- {
- "id": 2104,
- "start": 708.752,
- "end": 708.822,
- "text": "of"
- },
- {
- "id": 2105,
- "start": 708.822,
- "end": 709.592,
- "text": "operation,"
- },
- {
- "id": 2106,
- "start": 709.592,
- "end": 709.762,
- "text": "you"
- },
- {
- "id": 2107,
- "start": 709.762,
- "end": 710.002,
- "text": "need"
- },
- {
- "id": 2108,
- "start": 710.002,
- "end": 710.372,
- "text": "all"
- },
- {
- "id": 2109,
- "start": 710.372,
- "end": 710.482,
- "text": "of"
- },
- {
- "id": 2110,
- "start": 710.482,
- "end": 710.572,
- "text": "the"
- },
- {
- "id": 2111,
- "start": 710.572,
- "end": 710.862,
- "text": "different"
- },
- {
- "id": 2112,
- "start": 710.862,
- "end": 711.462,
- "text": "players."
- },
- {
- "id": 2113,
- "start": 712.002,
- "end": 712.4519999999998,
- "text": "OK,"
- },
- {
- "id": 2114,
- "start": 713.142,
- "end": 713.442,
- "text": "but"
- },
- {
- "id": 2115,
- "start": 713.442,
- "end": 713.622,
- "text": "it’s"
- },
- {
- "id": 2116,
- "start": 713.622,
- "end": 714.052,
- "text": "interesting,"
- },
- {
- "id": 2117,
- "start": 714.052,
- "end": 714.322,
- "text": "because"
- },
- {
- "id": 2118,
- "start": 714.322,
- "end": 714.442,
- "text": "in"
- },
- {
- "id": 2119,
- "start": 714.442,
- "end": 714.562,
- "text": "the"
- },
- {
- "id": 2120,
- "start": 714.562,
- "end": 715.062,
- "text": "interviews"
- },
- {
- "id": 2121,
- "start": 715.062,
- "end": 715.262,
- "text": "over"
- },
- {
- "id": 2122,
- "start": 715.262,
- "end": 715.352,
- "text": "the"
- },
- {
- "id": 2123,
- "start": 715.352,
- "end": 715.662,
- "text": "past"
- },
- {
- "id": 2124,
- "start": 715.662,
- "end": 715.922,
- "text": "couple"
- },
- {
- "id": 2125,
- "start": 715.922,
- "end": 716.002,
- "text": "of"
- },
- {
- "id": 2126,
- "start": 716.002,
- "end": 716.432,
- "text": "days,"
- },
- {
- "id": 2127,
- "start": 716.5069999999998,
- "end": 716.942,
- "text": "everyone’s"
- },
- {
- "id": 2128,
- "start": 717.012,
- "end": 717.452,
- "text": "citing"
- },
- {
- "id": 2129,
- "start": 717.452,
- "end": 717.542,
- "text": "the"
- },
- {
- "id": 2130,
- "start": 717.827,
- "end": 718.0244999999999,
- "text": "10,000"
- },
- {
- "id": 2131,
- "start": 718.202,
- "end": 718.507,
- "text": "to"
- },
- {
- "id": 2132,
- "start": 718.577,
- "end": 718.9894999999998,
- "text": "20,000"
- },
- {
- "id": 2133,
- "start": 718.952,
- "end": 719.472,
- "text": "mark,"
- },
- {
- "id": 2134,
- "start": 719.3670000000001,
- "end": 719.8545,
- "text": "and"
- },
- {
- "id": 2135,
- "start": 719.782,
- "end": 720.2370000000001,
- "text": "that"
- },
- {
- "id": 2136,
- "start": 720.197,
- "end": 720.6195,
- "text": "can"
- },
- {
- "id": 2137,
- "start": 720.612,
- "end": 721.002,
- "text": "include"
- },
- {
- "id": 2138,
- "start": 721.002,
- "end": 721.532,
- "text": "content"
- },
- {
- "id": 2139,
- "start": 721.532,
- "end": 722.242,
- "text": "moderators;"
- },
- {
- "id": 2140,
- "start": 722.242,
- "end": 722.492,
- "text": "that"
- },
- {
- "id": 2141,
- "start": 722.5293333333333,
- "end": 722.7259999999999,
- "text": "can"
- },
- {
- "id": 2142,
- "start": 722.8166666666666,
- "end": 722.9599999999999,
- "text": "include"
- },
- {
- "id": 2143,
- "start": 723.104,
- "end": 723.194,
- "text": "it"
- },
- {
- "id": 2144,
- "start": 723.194,
- "end": 723.444,
- "text": "seems"
- },
- {
- "id": 2145,
- "start": 723.444,
- "end": 723.564,
- "text": "like"
- },
- {
- "id": 2146,
- "start": 723.564,
- "end": 723.634,
- "text": "a"
- },
- {
- "id": 2147,
- "start": 723.634,
- "end": 724.034,
- "text": "wide"
- },
- {
- "id": 2148,
- "start": 724.034,
- "end": 724.274,
- "text": "array"
- },
- {
- "id": 2149,
- "start": 724.274,
- "end": 724.374,
- "text": "of"
- },
- {
- "id": 2150,
- "start": 724.364,
- "end": 724.954,
- "text": "people."
- },
- {
- "id": 2151,
- "start": 725.0540000000001,
- "end": 725.519,
- "text": "…"
- },
- {
- "id": 2152,
- "start": 725.744,
- "end": 726.084,
- "text": "How"
- },
- {
- "id": 2153,
- "start": 726.084,
- "end": 726.194,
- "text": "are"
- },
- {
- "id": 2154,
- "start": 726.194,
- "end": 726.404,
- "text": "we"
- },
- {
- "id": 2155,
- "start": 726.404,
- "end": 727.004,
- "text": "supposed"
- },
- {
- "id": 2156,
- "start": 727.004,
- "end": 727.114,
- "text": "to"
- },
- {
- "id": 2157,
- "start": 727.114,
- "end": 727.674,
- "text": "know,"
- },
- {
- "id": 2158,
- "start": 727.674,
- "end": 728.554,
- "text": "considering"
- },
- {
- "id": 2159,
- "start": 728.554,
- "end": 728.714,
- "text": "the"
- },
- {
- "id": 2160,
- "start": 728.714,
- "end": 729.394,
- "text": "gravity"
- },
- {
- "id": 2161,
- "start": 729.394,
- "end": 729.514,
- "text": "of"
- },
- {
- "id": 2162,
- "start": 729.514,
- "end": 729.614,
- "text": "the"
- },
- {
- "id": 2163,
- "start": 729.614,
- "end": 730.054,
- "text": "task"
- },
- {
- "id": 2164,
- "start": 730.054,
- "end": 730.224,
- "text": "that"
- },
- {
- "id": 2165,
- "start": 730.224,
- "end": 730.394,
- "text": "you"
- },
- {
- "id": 2166,
- "start": 730.394,
- "end": 731.044,
- "text": "have,"
- },
- {
- "id": 2167,
- "start": 731.044,
- "end": 731.334,
- "text": "which"
- },
- {
- "id": 2168,
- "start": 731.334,
- "end": 731.464,
- "text": "is"
- },
- {
- "id": 2169,
- "start": 731.464,
- "end": 732.524,
- "text": "essentially"
- },
- {
- "id": 2170,
- "start": 732.524,
- "end": 733.484,
- "text": "protecting"
- },
- {
- "id": 2171,
- "start": 733.484,
- "end": 733.854,
- "text": "one"
- },
- {
- "id": 2172,
- "start": 733.854,
- "end": 733.914,
- "text": "of"
- },
- {
- "id": 2173,
- "start": 733.914,
- "end": 734.004,
- "text": "the"
- },
- {
- "id": 2174,
- "start": 734.004,
- "end": 734.414,
- "text": "largest"
- },
- {
- "id": 2175,
- "start": 734.414,
- "end": 735.024,
- "text": "information"
- },
- {
- "id": 2176,
- "start": 735.024,
- "end": 735.504,
- "text": "sources"
- },
- {
- "id": 2177,
- "start": 735.504,
- "end": 735.674,
- "text": "for"
- },
- {
- "id": 2178,
- "start": 735.674,
- "end": 736.114,
- "text": "American"
- },
- {
- "id": 2179,
- "start": 736.114,
- "end": 736.544,
- "text": "voters"
- },
- {
- "id": 2180,
- "start": 736.544,
- "end": 736.634,
- "text": "in"
- },
- {
- "id": 2181,
- "start": 736.634,
- "end": 736.784,
- "text": "this"
- },
- {
- "id": 2182,
- "start": 736.784,
- "end": 737.164,
- "text": "upcoming"
- },
- {
- "id": 2183,
- "start": 737.4889999999999,
- "end": 737.7539999999999,
- "text": "election—how"
- },
- {
- "id": 2184,
- "start": 738.194,
- "end": 738.344,
- "text": "are"
- },
- {
- "id": 2185,
- "start": 738.344,
- "end": 738.484,
- "text": "we"
- },
- {
- "id": 2186,
- "start": 738.484,
- "end": 738.884,
- "text": "supposed"
- },
- {
- "id": 2187,
- "start": 738.884,
- "end": 738.964,
- "text": "to"
- },
- {
- "id": 2188,
- "start": 738.964,
- "end": 739.334,
- "text": "trust"
- },
- {
- "id": 2189,
- "start": 739.334,
- "end": 739.464,
- "text": "that"
- },
- {
- "id": 2190,
- "start": 739.464,
- "end": 739.634,
- "text": "you"
- },
- {
- "id": 2191,
- "start": 739.634,
- "end": 740.124,
- "text": "have"
- },
- {
- "id": 2192,
- "start": 740.124,
- "end": 740.584,
- "text": "all"
- },
- {
- "id": 2193,
- "start": 740.584,
- "end": 740.674,
- "text": "of"
- },
- {
- "id": 2194,
- "start": 740.674,
- "end": 740.784,
- "text": "the"
- },
- {
- "id": 2195,
- "start": 741.029,
- "end": 741.139,
- "text": "resources"
- },
- {
- "id": 2196,
- "start": 741.384,
- "end": 741.494,
- "text": "at"
- },
- {
- "id": 2197,
- "start": 741.494,
- "end": 741.664,
- "text": "your"
- },
- {
- "id": 2198,
- "start": 741.664,
- "end": 742.764,
- "text": "disposal"
- },
- {
- "id": 2199,
- "start": 742.764,
- "end": 742.954,
- "text": "that"
- },
- {
- "id": 2200,
- "start": 742.954,
- "end": 743.074,
- "text": "you"
- },
- {
- "id": 2201,
- "start": 743.074,
- "end": 743.414,
- "text": "need"
- },
- {
- "id": 2202,
- "start": 743.414,
- "end": 743.494,
- "text": "to"
- },
- {
- "id": 2203,
- "start": 743.494,
- "end": 743.604,
- "text": "be"
- },
- {
- "id": 2204,
- "start": 743.604,
- "end": 743.744,
- "text": "able"
- },
- {
- "id": 2205,
- "start": 743.744,
- "end": 743.824,
- "text": "to"
- },
- {
- "id": 2206,
- "start": 743.824,
- "end": 744.254,
- "text": "catch"
- },
- {
- "id": 2207,
- "start": 744.254,
- "end": 744.464,
- "text": "bad"
- },
- {
- "id": 2208,
- "start": 744.464,
- "end": 745.444,
- "text": "actors?"
- },
- {
- "id": 2209,
- "start": 745.444,
- "end": 745.544,
- "text": "I"
- },
- {
- "id": 2210,
- "start": 745.544,
- "end": 745.704,
- "text": "think"
- },
- {
- "id": 2211,
- "start": 745.704,
- "end": 745.814,
- "text": "one"
- },
- {
- "id": 2212,
- "start": 745.814,
- "end": 745.874,
- "text": "of"
- },
- {
- "id": 2213,
- "start": 745.874,
- "end": 745.964,
- "text": "the"
- },
- {
- "id": 2214,
- "start": 745.964,
- "end": 746.314,
- "text": "best"
- },
- {
- "id": 2215,
- "start": 746.314,
- "end": 746.534,
- "text": "ways"
- },
- {
- "id": 2216,
- "start": 746.534,
- "end": 746.644,
- "text": "to"
- },
- {
- "id": 2217,
- "start": 746.644,
- "end": 746.824,
- "text": "look"
- },
- {
- "id": 2218,
- "start": 746.824,
- "end": 746.914,
- "text": "to"
- },
- {
- "id": 2219,
- "start": 746.914,
- "end": 747.194,
- "text": "that"
- },
- {
- "id": 2220,
- "start": 747.194,
- "end": 747.354,
- "text": "is"
- },
- {
- "id": 2221,
- "start": 747.354,
- "end": 747.484,
- "text": "to"
- },
- {
- "id": 2222,
- "start": 747.484,
- "end": 747.694,
- "text": "look"
- },
- {
- "id": 2223,
- "start": 747.694,
- "end": 747.784,
- "text": "at"
- },
- {
- "id": 2224,
- "start": 747.784,
- "end": 747.884,
- "text": "the"
- },
- {
- "id": 2225,
- "start": 747.884,
- "end": 748.474,
- "text": "pattern"
- },
- {
- "id": 2226,
- "start": 748.474,
- "end": 749.444,
- "text": "of"
- },
- {
- "id": 2227,
- "start": 749.444,
- "end": 750.134,
- "text": "disruptions,"
- },
- {
- "id": 2228,
- "start": 750.134,
- "end": 750.824,
- "text": "takedowns,"
- },
- {
- "id": 2229,
- "start": 750.824,
- "end": 751.124,
- "text": "we’ve"
- },
- {
- "id": 2230,
- "start": 751.124,
- "end": 751.384,
- "text": "done"
- },
- {
- "id": 2231,
- "start": 751.384,
- "end": 751.554,
- "text": "over"
- },
- {
- "id": 2232,
- "start": 751.554,
- "end": 751.624,
- "text": "the"
- },
- {
- "id": 2233,
- "start": 751.624,
- "end": 751.944,
- "text": "past"
- },
- {
- "id": 2234,
- "start": 751.944,
- "end": 752.194,
- "text": "several"
- },
- {
- "id": 2235,
- "start": 752.194,
- "end": 752.804,
- "text": "months."
- },
- {
- "id": 2236,
- "start": 752.804,
- "end": 752.954,
- "text": "If"
- },
- {
- "id": 2237,
- "start": 752.954,
- "end": 753.084,
- "text": "you"
- },
- {
- "id": 2238,
- "start": 753.084,
- "end": 753.444,
- "text": "look"
- },
- {
- "id": 2239,
- "start": 753.444,
- "end": 753.634,
- "text": "at"
- },
- {
- "id": 2240,
- "start": 753.624,
- "end": 753.854,
- "text": "our"
- },
- {
- "id": 2241,
- "start": 754.049,
- "end": 754.259,
- "text": "takedowns"
- },
- {
- "id": 2242,
- "start": 754.474,
- "end": 754.664,
- "text": "from"
- },
- {
- "id": 2243,
- "start": 754.664,
- "end": 755.034,
- "text": "earlier"
- },
- {
- "id": 2244,
- "start": 755.034,
- "end": 755.114,
- "text": "in"
- },
- {
- "id": 2245,
- "start": 755.114,
- "end": 755.194,
- "text": "the"
- },
- {
- "id": 2246,
- "start": 755.194,
- "end": 755.344,
- "text": "year"
- },
- {
- "id": 2247,
- "start": 755.344,
- "end": 755.454,
- "text": "when"
- },
- {
- "id": 2248,
- "start": 755.454,
- "end": 755.534,
- "text": "I"
- },
- {
- "id": 2249,
- "start": 755.534,
- "end": 755.924,
- "text": "joined"
- },
- {
- "id": 2250,
- "start": 755.924,
- "end": 756.034,
- "text": "to"
- },
- {
- "id": 2251,
- "start": 756.034,
- "end": 756.684,
- "text": "now,"
- },
- {
- "id": 2252,
- "start": 756.684,
- "end": 756.854,
- "text": "there’s"
- },
- {
- "id": 2253,
- "start": 756.854,
- "end": 756.954,
- "text": "been"
- },
- {
- "id": 2254,
- "start": 756.954,
- "end": 757.014,
- "text": "a"
- },
- {
- "id": 2255,
- "start": 757.014,
- "end": 757.184,
- "text": "pretty"
- },
- {
- "id": 2256,
- "start": 757.184,
- "end": 757.804,
- "text": "substantial"
- },
- {
- "id": 2257,
- "start": 757.804,
- "end": 758.124,
- "text": "uptick"
- },
- {
- "id": 2258,
- "start": 758.124,
- "end": 758.214,
- "text": "in"
- },
- {
- "id": 2259,
- "start": 758.4340000000001,
- "end": 758.5965000000001,
- "text": "pace."
- },
- {
- "id": 2260,
- "start": 758.744,
- "end": 758.979,
- "text": "These"
- },
- {
- "id": 2261,
- "start": 759.054,
- "end": 759.3615,
- "text": "are"
- },
- {
- "id": 2262,
- "start": 759.364,
- "end": 759.744,
- "text": "manual"
- },
- {
- "id": 2263,
- "start": 759.844,
- "end": 760.0989999999999,
- "text": "disruptions,"
- },
- {
- "id": 2264,
- "start": 760.324,
- "end": 760.454,
- "text": "so"
- },
- {
- "id": 2265,
- "start": 760.454,
- "end": 760.534,
- "text": "the"
- },
- {
- "id": 2266,
- "start": 760.534,
- "end": 760.804,
- "text": "numbers"
- },
- {
- "id": 2267,
- "start": 760.804,
- "end": 760.914,
- "text": "are"
- },
- {
- "id": 2268,
- "start": 760.914,
- "end": 761.144,
- "text": "always"
- },
- {
- "id": 2269,
- "start": 761.044,
- "end": 761.2306666666666,
- "text": "going"
- },
- {
- "id": 2270,
- "start": 761.174,
- "end": 761.3173333333333,
- "text": "to"
- },
- {
- "id": 2271,
- "start": 761.304,
- "end": 761.404,
- "text": "be"
- },
- {
- "id": 2272,
- "start": 761.404,
- "end": 761.874,
- "text": "small,"
- },
- {
- "id": 2273,
- "start": 761.874,
- "end": 762.064,
- "text": "because"
- },
- {
- "id": 2274,
- "start": 762.064,
- "end": 762.154,
- "text": "what"
- },
- {
- "id": 2275,
- "start": 762.2073333333333,
- "end": 762.2906666666667,
- "text": "we"
- },
- {
- "id": 2276,
- "start": 762.3506666666667,
- "end": 762.4273333333333,
- "text": "do"
- },
- {
- "id": 2277,
- "start": 762.494,
- "end": 762.564,
- "text": "is"
- },
- {
- "id": 2278,
- "start": 762.564,
- "end": 762.684,
- "text": "we’re"
- },
- {
- "id": 2279,
- "start": 762.684,
- "end": 763.044,
- "text": "looking"
- },
- {
- "id": 2280,
- "start": 763.044,
- "end": 763.154,
- "text": "for"
- },
- {
- "id": 2281,
- "start": 763.154,
- "end": 763.214,
- "text": "the"
- },
- {
- "id": 2282,
- "start": 763.214,
- "end": 763.384,
- "text": "most"
- },
- {
- "id": 2283,
- "start": 763.384,
- "end": 763.994,
- "text": "sophisticated"
- },
- {
- "id": 2284,
- "start": 763.994,
- "end": 764.224,
- "text": "bad"
- },
- {
- "id": 2285,
- "start": 764.224,
- "end": 764.564,
- "text": "actors"
- },
- {
- "id": 2286,
- "start": 764.564,
- "end": 764.674,
- "text": "to"
- },
- {
- "id": 2287,
- "start": 764.674,
- "end": 764.904,
- "text": "take"
- },
- {
- "id": 2288,
- "start": 764.904,
- "end": 765.034,
- "text": "them"
- },
- {
- "id": 2289,
- "start": 765.034,
- "end": 765.674,
- "text": "down,"
- },
- {
- "id": 2290,
- "start": 765.674,
- "end": 766.124,
- "text": "but"
- },
- {
- "id": 2291,
- "start": 766.124,
- "end": 766.324,
- "text": "they’re"
- },
- {
- "id": 2292,
- "start": 766.324,
- "end": 766.714,
- "text": "coming"
- },
- {
- "id": 2293,
- "start": 766.714,
- "end": 766.894,
- "text": "much"
- },
- {
- "id": 2294,
- "start": 766.894,
- "end": 767.044,
- "text": "more"
- },
- {
- "id": 2295,
- "start": 767.3690000000001,
- "end": 767.599,
- "text": "quickly."
- },
- {
- "id": 2296,
- "start": 767.844,
- "end": 768.154,
- "text": "And"
- },
- {
- "id": 2297,
- "start": 768.154,
- "end": 768.314,
- "text": "what’s"
- },
- {
- "id": 2298,
- "start": 768.314,
- "end": 768.704,
- "text": "important"
- },
- {
- "id": 2299,
- "start": 768.704,
- "end": 768.974,
- "text": "about"
- },
- {
- "id": 2300,
- "start": 768.974,
- "end": 769.284,
- "text": "that"
- },
- {
- "id": 2301,
- "start": 769.284,
- "end": 769.474,
- "text": "is"
- },
- {
- "id": 2302,
- "start": 769.474,
- "end": 769.574,
- "text": "when"
- },
- {
- "id": 2303,
- "start": 769.574,
- "end": 769.664,
- "text": "we"
- },
- {
- "id": 2304,
- "start": 769.664,
- "end": 769.984,
- "text": "take"
- },
- {
- "id": 2305,
- "start": 769.984,
- "end": 770.154,
- "text": "these"
- },
- {
- "id": 2306,
- "start": 770.154,
- "end": 770.984,
- "text": "actions,"
- },
- {
- "id": 2307,
- "start": 770.984,
- "end": 771.134,
- "text": "it’s"
- },
- {
- "id": 2308,
- "start": 771.134,
- "end": 771.304,
- "text": "not"
- },
- {
- "id": 2309,
- "start": 771.304,
- "end": 771.514,
- "text": "just"
- },
- {
- "id": 2310,
- "start": 771.514,
- "end": 772.364,
- "text": "us."
- },
- {
- "id": 2311,
- "start": 772.364,
- "end": 772.484,
- "text": "The"
- },
- {
- "id": 2312,
- "start": 772.484,
- "end": 772.594,
- "text": "other"
- },
- {
- "id": 2313,
- "start": 772.594,
- "end": 772.954,
- "text": "technology"
- },
- {
- "id": 2314,
- "start": 772.954,
- "end": 773.394,
- "text": "companies"
- },
- {
- "id": 2315,
- "start": 773.394,
- "end": 773.894,
- "text": "are"
- },
- {
- "id": 2316,
- "start": 773.894,
- "end": 774.204,
- "text": "taking"
- },
- {
- "id": 2317,
- "start": 774.204,
- "end": 774.604,
- "text": "disruption"
- },
- {
- "id": 2318,
- "start": 774.604,
- "end": 774.924,
- "text": "actions"
- },
- {
- "id": 2319,
- "start": 774.924,
- "end": 775.074,
- "text": "as"
- },
- {
- "id": 2320,
- "start": 775.074,
- "end": 775.694,
- "text": "well."
- },
- {
- "id": 2321,
- "start": 775.694,
- "end": 775.914,
- "text": "We"
- },
- {
- "id": 2322,
- "start": 775.914,
- "end": 776.044,
- "text": "see"
- },
- {
- "id": 2323,
- "start": 776.044,
- "end": 776.614,
- "text": "government"
- },
- {
- "id": 2324,
- "start": 776.614,
- "end": 777.144,
- "text": "providing"
- },
- {
- "id": 2325,
- "start": 777.144,
- "end": 777.284,
- "text": "us"
- },
- {
- "id": 2326,
- "start": 777.284,
- "end": 777.404,
- "text": "with"
- },
- {
- "id": 2327,
- "start": 777.734,
- "end": 777.934,
- "text": "support."
- },
- {
- "id": 2328,
- "start": 778.184,
- "end": 778.464,
- "text": "As"
- },
- {
- "id": 2329,
- "start": 778.464,
- "end": 778.604,
- "text": "the"
- },
- {
- "id": 2330,
- "start": 778.604,
- "end": 779.014,
- "text": "community"
- },
- {
- "id": 2331,
- "start": 779.014,
- "end": 779.294,
- "text": "comes"
- },
- {
- "id": 2332,
- "start": 779.5390000000001,
- "end": 779.764,
- "text": "together,"
- },
- {
- "id": 2333,
- "start": 780.064,
- "end": 780.234,
- "text": "this"
- },
- {
- "id": 2334,
- "start": 780.234,
- "end": 780.474,
- "text": "isn’t"
- },
- {
- "id": 2335,
- "start": 780.474,
- "end": 780.544,
- "text": "a"
- },
- {
- "id": 2336,
- "start": 780.544,
- "end": 780.974,
- "text": "problem"
- },
- {
- "id": 2337,
- "start": 780.974,
- "end": 781.114,
- "text": "that"
- },
- {
- "id": 2338,
- "start": 781.114,
- "end": 781.314,
- "text": "any"
- },
- {
- "id": 2339,
- "start": 781.314,
- "end": 781.624,
- "text": "one"
- },
- {
- "id": 2340,
- "start": 781.624,
- "end": 782.054,
- "text": "company"
- },
- {
- "id": 2341,
- "start": 782.054,
- "end": 782.194,
- "text": "can"
- },
- {
- "id": 2342,
- "start": 782.444,
- "end": 782.619,
- "text": "tackle,"
- },
- {
- "id": 2343,
- "start": 782.834,
- "end": 783.044,
- "text": "but"
- },
- {
- "id": 2344,
- "start": 783.044,
- "end": 783.154,
- "text": "when"
- },
- {
- "id": 2345,
- "start": 783.154,
- "end": 783.374,
- "text": "all"
- },
- {
- "id": 2346,
- "start": 783.374,
- "end": 783.434,
- "text": "of"
- },
- {
- "id": 2347,
- "start": 783.434,
- "end": 783.544,
- "text": "us"
- },
- {
- "id": 2348,
- "start": 783.544,
- "end": 783.704,
- "text": "come"
- },
- {
- "id": 2349,
- "start": 783.704,
- "end": 784.034,
- "text": "together,"
- },
- {
- "id": 2350,
- "start": 784.034,
- "end": 784.074,
- "text": "I"
- },
- {
- "id": 2351,
- "start": 784.074,
- "end": 784.244,
- "text": "think"
- },
- {
- "id": 2352,
- "start": 784.244,
- "end": 784.364,
- "text": "we"
- },
- {
- "id": 2353,
- "start": 784.364,
- "end": 784.614,
- "text": "really"
- },
- {
- "id": 2354,
- "start": 784.614,
- "end": 785.054,
- "text": "do"
- },
- {
- "id": 2355,
- "start": 785.054,
- "end": 785.734,
- "text": "have"
- },
- {
- "id": 2356,
- "start": 785.734,
- "end": 785.894,
- "text": "a"
- },
- {
- "id": 2357,
- "start": 785.894,
- "end": 786.494,
- "text": "substantial"
- },
- {
- "id": 2358,
- "start": 786.494,
- "end": 786.844,
- "text": "uptick"
- },
- {
- "id": 2359,
- "start": 786.844,
- "end": 786.954,
- "text": "in"
- },
- {
- "id": 2360,
- "start": 786.954,
- "end": 787.894,
- "text": "capacity"
- },
- {
- "id": 2361,
- "start": 787.894,
- "end": 788.014,
- "text": "to"
- },
- {
- "id": 2362,
- "start": 788.014,
- "end": 788.414,
- "text": "disrupt"
- },
- {
- "id": 2363,
- "start": 788.414,
- "end": 788.564,
- "text": "this"
- },
- {
- "id": 2364,
- "start": 788.564,
- "end": 788.804,
- "text": "bad"
- },
- {
- "id": 2365,
- "start": 788.899,
- "end": 789.069,
- "text": "behavior"
- },
- {
- "id": 2366,
- "start": 789.234,
- "end": 789.334,
- "text": "and"
- },
- {
- "id": 2367,
- "start": 789.334,
- "end": 789.534,
- "text": "take"
- },
- {
- "id": 2368,
- "start": 789.534,
- "end": 789.614,
- "text": "it"
- },
- {
- "id": 2369,
- "start": 789.614,
- "end": 790.194,
- "text": "down."
- },
- {
- "id": 2370,
- "start": 790.194,
- "end": 791.384,
- "text": "And"
- },
- {
- "id": 2371,
- "start": 791.384,
- "end": 791.904,
- "text": "for"
- },
- {
- "id": 2372,
- "start": 791.904,
- "end": 792.024,
- "text": "the"
- },
- {
- "id": 2373,
- "start": 792.024,
- "end": 795.044,
- "text": "public,"
- },
- {
- "id": 2374,
- "start": 795.044,
- "end": 795.334,
- "text": "what"
- },
- {
- "id": 2375,
- "start": 795.334,
- "end": 795.904,
- "text": "measure,"
- },
- {
- "id": 2376,
- "start": 795.904,
- "end": 796.104,
- "text": "what"
- },
- {
- "id": 2377,
- "start": 796.104,
- "end": 796.984,
- "text": "standard"
- },
- {
- "id": 2378,
- "start": 796.984,
- "end": 797.234,
- "text": "should"
- },
- {
- "id": 2379,
- "start": 797.234,
- "end": 797.394,
- "text": "we"
- },
- {
- "id": 2380,
- "start": 797.394,
- "end": 797.764,
- "text": "have"
- },
- {
- "id": 2381,
- "start": 797.764,
- "end": 798.224,
- "text": "for"
- },
- {
- "id": 2382,
- "start": 798.224,
- "end": 799.034,
- "text": "you"
- },
- {
- "id": 2383,
- "start": 799.034,
- "end": 799.194,
- "text": "in"
- },
- {
- "id": 2384,
- "start": 799.194,
- "end": 799.554,
- "text": "terms"
- },
- {
- "id": 2385,
- "start": 799.554,
- "end": 799.664,
- "text": "of"
- },
- {
- "id": 2386,
- "start": 799.664,
- "end": 799.834,
- "text": "your"
- },
- {
- "id": 2387,
- "start": 799.834,
- "end": 800.954,
- "text": "success"
- },
- {
- "id": 2388,
- "start": 800.954,
- "end": 801.334,
- "text": "in"
- },
- {
- "id": 2389,
- "start": 801.334,
- "end": 801.814,
- "text": "protecting"
- },
- {
- "id": 2390,
- "start": 801.814,
- "end": 801.974,
- "text": "this"
- },
- {
- "id": 2391,
- "start": 801.974,
- "end": 802.354,
- "text": "upcoming"
- },
- {
- "id": 2392,
- "start": 802.354,
- "end": 803.244,
- "text": "election"
- },
- {
- "id": 2393,
- "start": 803.244,
- "end": 803.344,
- "text": "and"
- },
- {
- "id": 2394,
- "start": 803.344,
- "end": 803.414,
- "text": "the"
- },
- {
- "id": 2395,
- "start": 803.414,
- "end": 803.894,
- "text": "integrity"
- },
- {
- "id": 2396,
- "start": 803.894,
- "end": 804.034,
- "text": "of"
- },
- {
- "id": 2397,
- "start": 804.034,
- "end": 804.944,
- "text": "it?"
- },
- {
- "id": 2398,
- "start": 804.944,
- "end": 805.384,
- "text": "We"
- },
- {
- "id": 2399,
- "start": 805.384,
- "end": 806.174,
- "text": "have"
- },
- {
- "id": 2400,
- "start": 806.174,
- "end": 806.394,
- "text": "and"
- },
- {
- "id": 2401,
- "start": 806.394,
- "end": 806.714,
- "text": "I"
- },
- {
- "id": 2402,
- "start": 806.714,
- "end": 807.184,
- "text": "have"
- },
- {
- "id": 2403,
- "start": 807.184,
- "end": 807.264,
- "text": "a"
- },
- {
- "id": 2404,
- "start": 807.264,
- "end": 808.004,
- "text": "responsibility"
- },
- {
- "id": 2405,
- "start": 808.004,
- "end": 808.114,
- "text": "to"
- },
- {
- "id": 2406,
- "start": 808.114,
- "end": 808.214,
- "text": "the"
- },
- {
- "id": 2407,
- "start": 808.214,
- "end": 808.524,
- "text": "users"
- },
- {
- "id": 2408,
- "start": 808.524,
- "end": 808.594,
- "text": "on"
- },
- {
- "id": 2409,
- "start": 808.594,
- "end": 808.674,
- "text": "the"
- },
- {
- "id": 2410,
- "start": 808.674,
- "end": 809.594,
- "text": "platform"
- },
- {
- "id": 2411,
- "start": 809.594,
- "end": 809.714,
- "text": "to"
- },
- {
- "id": 2412,
- "start": 809.714,
- "end": 809.904,
- "text": "make"
- },
- {
- "id": 2413,
- "start": 809.904,
- "end": 810.284,
- "text": "sure"
- },
- {
- "id": 2414,
- "start": 810.284,
- "end": 810.814,
- "text": "that"
- },
- {
- "id": 2415,
- "start": 810.814,
- "end": 811.134,
- "text": "public"
- },
- {
- "id": 2416,
- "start": 811.134,
- "end": 811.854,
- "text": "debate"
- },
- {
- "id": 2417,
- "start": 811.854,
- "end": 812.104,
- "text": "can"
- },
- {
- "id": 2418,
- "start": 812.104,
- "end": 812.324,
- "text": "be"
- },
- {
- "id": 2419,
- "start": 812.419,
- "end": 812.5889999999999,
- "text": "open;"
- },
- {
- "id": 2420,
- "start": 812.734,
- "end": 812.854,
- "text": "it"
- },
- {
- "id": 2421,
- "start": 812.854,
- "end": 813.054,
- "text": "can"
- },
- {
- "id": 2422,
- "start": 813.054,
- "end": 813.224,
- "text": "be"
- },
- {
- "id": 2423,
- "start": 813.224,
- "end": 814.134,
- "text": "authentic."
- },
- {
- "id": 2424,
- "start": 814.134,
- "end": 814.454,
- "text": "That’s"
- },
- {
- "id": 2425,
- "start": 814.454,
- "end": 814.644,
- "text": "my"
- },
- {
- "id": 2426,
- "start": 814.644,
- "end": 816.944,
- "text": "goal."
- },
- {
- "id": 2427,
- "start": 816.944,
- "end": 817.314,
- "text": "What"
- },
- {
- "id": 2428,
- "start": 817.314,
- "end": 817.444,
- "text": "if"
- },
- {
- "id": 2429,
- "start": 817.444,
- "end": 817.544,
- "text": "it"
- },
- {
- "id": 2430,
- "start": 817.544,
- "end": 817.844,
- "text": "doesn’t"
- },
- {
- "id": 2431,
- "start": 817.844,
- "end": 818.024,
- "text": "go"
- },
- {
- "id": 2432,
- "start": 818.024,
- "end": 818.674,
- "text": "well?"
- },
- {
- "id": 2433,
- "start": 818.674,
- "end": 818.954,
- "text": "What"
- },
- {
- "id": 2434,
- "start": 818.954,
- "end": 819.424,
- "text": "if"
- },
- {
- "id": 2435,
- "start": 819.424,
- "end": 819.664,
- "text": "in"
- },
- {
- "id": 2436,
- "start": 819.664,
- "end": 819.724,
- "text": "a"
- },
- {
- "id": 2437,
- "start": 819.724,
- "end": 820.994,
- "text": "hypothetical,"
- },
- {
- "id": 2438,
- "start": 820.994,
- "end": 821.204,
- "text": "what"
- },
- {
- "id": 2439,
- "start": 821.204,
- "end": 821.424,
- "text": "if"
- },
- {
- "id": 2440,
- "start": 821.424,
- "end": 821.744,
- "text": "there"
- },
- {
- "id": 2441,
- "start": 821.744,
- "end": 821.964,
- "text": "are"
- },
- {
- "id": 2442,
- "start": 821.964,
- "end": 822.224,
- "text": "bad"
- },
- {
- "id": 2443,
- "start": 822.224,
- "end": 822.734,
- "text": "actors"
- },
- {
- "id": 2444,
- "start": 822.734,
- "end": 823.094,
- "text": "that"
- },
- {
- "id": 2445,
- "start": 823.094,
- "end": 823.754,
- "text": "interfere"
- },
- {
- "id": 2446,
- "start": 823.754,
- "end": 823.844,
- "text": "in"
- },
- {
- "id": 2447,
- "start": 823.844,
- "end": 823.974,
- "text": "the"
- },
- {
- "id": 2448,
- "start": 823.974,
- "end": 824.344,
- "text": "upcoming"
- },
- {
- "id": 2449,
- "start": 824.344,
- "end": 825.644,
- "text": "election"
- },
- {
- "id": 2450,
- "start": 825.644,
- "end": 825.884,
- "text": "on"
- },
- {
- "id": 2451,
- "start": 825.884,
- "end": 826.564,
- "text": "Facebook"
- },
- {
- "id": 2452,
- "start": 826.564,
- "end": 826.854,
- "text": "and"
- },
- {
- "id": 2453,
- "start": 826.854,
- "end": 827.074,
- "text": "other"
- },
- {
- "id": 2454,
- "start": 827.074,
- "end": 827.684,
- "text": "platforms"
- },
- {
- "id": 2455,
- "start": 827.824,
- "end": 828.684,
- "text": "potentially?"
- },
- {
- "id": 2456,
- "start": 828.574,
- "end": 829.684,
- "text": "What"
- },
- {
- "id": 2457,
- "start": 829.684,
- "end": 829.844,
- "text": "is"
- },
- {
- "id": 2458,
- "start": 829.844,
- "end": 829.974,
- "text": "the"
- },
- {
- "id": 2459,
- "start": 829.974,
- "end": 830.594,
- "text": "public"
- },
- {
- "id": 2460,
- "start": 830.594,
- "end": 831.124,
- "text": "supposed"
- },
- {
- "id": 2461,
- "start": 831.094,
- "end": 831.5840000000001,
- "text": "to"
- },
- {
- "id": 2462,
- "start": 831.594,
- "end": 832.044,
- "text": "do"
- },
- {
- "id": 2463,
- "start": 832.044,
- "end": 832.154,
- "text": "at"
- },
- {
- "id": 2464,
- "start": 832.154,
- "end": 832.374,
- "text": "that"
- },
- {
- "id": 2465,
- "start": 832.374,
- "end": 832.694,
- "text": "point?"
- },
- {
- "id": 2466,
- "start": 832.694,
- "end": 832.824,
- "text": "What"
- },
- {
- "id": 2467,
- "start": 832.824,
- "end": 832.934,
- "text": "is"
- },
- {
- "id": 2468,
- "start": 832.934,
- "end": 833.024,
- "text": "the"
- },
- {
- "id": 2469,
- "start": 833.024,
- "end": 833.374,
- "text": "public"
- },
- {
- "id": 2470,
- "start": 833.374,
- "end": 833.754,
- "text": "supposed"
- },
- {
- "id": 2471,
- "start": 833.754,
- "end": 833.834,
- "text": "to"
- },
- {
- "id": 2472,
- "start": 833.834,
- "end": 834.374,
- "text": "expect"
- },
- {
- "id": 2473,
- "start": 834.374,
- "end": 834.454,
- "text": "of"
- },
- {
- "id": 2474,
- "start": 834.6840000000001,
- "end": 834.824,
- "text": "Facebook?"
- },
- {
- "id": 2475,
- "start": 834.994,
- "end": 835.194,
- "text": "What’s"
- },
- {
- "id": 2476,
- "start": 835.194,
- "end": 835.284,
- "text": "the"
- },
- {
- "id": 2477,
- "start": 835.284,
- "end": 836.374,
- "text": "accountability"
- },
- {
- "id": 2478,
- "start": 836.374,
- "end": 836.614,
- "text": "if"
- },
- {
- "id": 2479,
- "start": 836.614,
- "end": 836.874,
- "text": "things"
- },
- {
- "id": 2480,
- "start": 836.874,
- "end": 837.154,
- "text": "don’t"
- },
- {
- "id": 2481,
- "start": 837.154,
- "end": 837.364,
- "text": "go"
- },
- {
- "id": 2482,
- "start": 837.364,
- "end": 837.924,
- "text": "well?"
- },
- {
- "id": 2483,
- "start": 837.924,
- "end": 838.454,
- "text": "We"
- },
- {
- "id": 2484,
- "start": 838.454,
- "end": 838.744,
- "text": "know"
- },
- {
- "id": 2485,
- "start": 838.744,
- "end": 838.894,
- "text": "that"
- },
- {
- "id": 2486,
- "start": 838.894,
- "end": 839.054,
- "text": "there"
- },
- {
- "id": 2487,
- "start": 839.054,
- "end": 839.214,
- "text": "are"
- },
- {
- "id": 2488,
- "start": 839.214,
- "end": 839.504,
- "text": "bad"
- },
- {
- "id": 2489,
- "start": 839.504,
- "end": 840.224,
- "text": "actors"
- },
- {
- "id": 2490,
- "start": 840.224,
- "end": 840.494,
- "text": "trying"
- },
- {
- "id": 2491,
- "start": 840.494,
- "end": 840.574,
- "text": "to"
- },
- {
- "id": 2492,
- "start": 840.574,
- "end": 840.914,
- "text": "target"
- },
- {
- "id": 2493,
- "start": 840.914,
- "end": 841.224,
- "text": "public"
- },
- {
- "id": 2494,
- "start": 841.224,
- "end": 841.554,
- "text": "debate"
- },
- {
- "id": 2495,
- "start": 841.554,
- "end": 841.654,
- "text": "on"
- },
- {
- "id": 2496,
- "start": 841.654,
- "end": 841.944,
- "text": "social"
- },
- {
- "id": 2497,
- "start": 841.944,
- "end": 843.154,
- "text": "media"
- },
- {
- "id": 2498,
- "start": 843.154,
- "end": 844.004,
- "text": "continually,"
- },
- {
- "id": 2499,
- "start": 844.004,
- "end": 844.304,
- "text": "right?"
- },
- {
- "id": 2500,
- "start": 844.304,
- "end": 844.514,
- "text": "Our"
- },
- {
- "id": 2501,
- "start": 844.514,
- "end": 844.744,
- "text": "teams"
- },
- {
- "id": 2502,
- "start": 844.744,
- "end": 844.844,
- "text": "would"
- },
- {
- "id": 2503,
- "start": 844.844,
- "end": 845.064,
- "text": "never"
- },
- {
- "id": 2504,
- "start": 845.064,
- "end": 845.534,
- "text": "suggest"
- },
- {
- "id": 2505,
- "start": 845.534,
- "end": 845.724,
- "text": "that"
- },
- {
- "id": 2506,
- "start": 846.2011428571428,
- "end": 846.3911428571429,
- "text": "you"
- },
- {
- "id": 2507,
- "start": 846.8682857142857,
- "end": 847.0582857142857,
- "text": "can—let"
- },
- {
- "id": 2508,
- "start": 847.5354285714285,
- "end": 847.7254285714286,
- "text": "me"
- },
- {
- "id": 2509,
- "start": 848.2025714285713,
- "end": 848.3925714285714,
- "text": "start"
- },
- {
- "id": 2510,
- "start": 848.8697142857142,
- "end": 849.0597142857142,
- "text": "that"
- },
- {
- "id": 2511,
- "start": 849.536857142857,
- "end": 849.726857142857,
- "text": "over—we"
- },
- {
- "id": 2512,
- "start": 850.204,
- "end": 850.394,
- "text": "know"
- },
- {
- "id": 2513,
- "start": 850.394,
- "end": 850.504,
- "text": "that"
- },
- {
- "id": 2514,
- "start": 850.504,
- "end": 850.604,
- "text": "there"
- },
- {
- "id": 2515,
- "start": 850.604,
- "end": 850.674,
- "text": "are"
- },
- {
- "id": 2516,
- "start": 850.674,
- "end": 850.894,
- "text": "bad"
- },
- {
- "id": 2517,
- "start": 850.894,
- "end": 852.464,
- "text": "actors."
- },
- {
- "id": 2518,
- "start": 852.464,
- "end": 852.594,
- "text": "We"
- },
- {
- "id": 2519,
- "start": 852.594,
- "end": 852.754,
- "text": "know"
- },
- {
- "id": 2520,
- "start": 852.754,
- "end": 852.874,
- "text": "that"
- },
- {
- "id": 2521,
- "start": 852.874,
- "end": 852.984,
- "text": "there"
- },
- {
- "id": 2522,
- "start": 852.984,
- "end": 853.054,
- "text": "are"
- },
- {
- "id": 2523,
- "start": 853.054,
- "end": 853.284,
- "text": "bad"
- },
- {
- "id": 2524,
- "start": 853.284,
- "end": 853.574,
- "text": "actors"
- },
- {
- "id": 2525,
- "start": 853.574,
- "end": 854.244,
- "text": "targeting"
- },
- {
- "id": 2526,
- "start": 854.244,
- "end": 855.444,
- "text": "debate,"
- },
- {
- "id": 2527,
- "start": 855.444,
- "end": 856.204,
- "text": "and"
- },
- {
- "id": 2528,
- "start": 856.204,
- "end": 856.364,
- "text": "I"
- },
- {
- "id": 2529,
- "start": 856.364,
- "end": 856.684,
- "text": "think"
- },
- {
- "id": 2530,
- "start": 856.684,
- "end": 856.914,
- "text": "our"
- },
- {
- "id": 2531,
- "start": 856.914,
- "end": 857.194,
- "text": "goal"
- },
- {
- "id": 2532,
- "start": 857.194,
- "end": 857.784,
- "text": "here"
- },
- {
- "id": 2533,
- "start": 857.784,
- "end": 858.414,
- "text": "is"
- },
- {
- "id": 2534,
- "start": 858.414,
- "end": 858.844,
- "text": "how"
- },
- {
- "id": 2535,
- "start": 858.844,
- "end": 859.014,
- "text": "do"
- },
- {
- "id": 2536,
- "start": 859.014,
- "end": 859.594,
- "text": "we"
- },
- {
- "id": 2537,
- "start": 859.594,
- "end": 860.234,
- "text": "identify"
- },
- {
- "id": 2538,
- "start": 860.234,
- "end": 860.344,
- "text": "the"
- },
- {
- "id": 2539,
- "start": 860.344,
- "end": 860.674,
- "text": "core"
- },
- {
- "id": 2540,
- "start": 860.8040000000001,
- "end": 861.029,
- "text": "behaviors"
- },
- {
- "id": 2541,
- "start": 861.264,
- "end": 861.384,
- "text": "that"
- },
- {
- "id": 2542,
- "start": 861.384,
- "end": 861.504,
- "text": "they"
- },
- {
- "id": 2543,
- "start": 861.504,
- "end": 861.814,
- "text": "rely"
- },
- {
- "id": 2544,
- "start": 861.814,
- "end": 862.024,
- "text": "on,"
- },
- {
- "id": 2545,
- "start": 862.024,
- "end": 862.234,
- "text": "for"
- },
- {
- "id": 2546,
- "start": 862.234,
- "end": 863.194,
- "text": "instance,"
- },
- {
- "id": 2547,
- "start": 863.194,
- "end": 863.474,
- "text": "using"
- },
- {
- "id": 2548,
- "start": 863.474,
- "end": 863.664,
- "text": "fake"
- },
- {
- "id": 2549,
- "start": 863.664,
- "end": 865.034,
- "text": "accounts,"
- },
- {
- "id": 2550,
- "start": 865.034,
- "end": 865.594,
- "text": "leveraging"
- },
- {
- "id": 2551,
- "start": 865.594,
- "end": 866.884,
- "text": "advertising,"
- },
- {
- "id": 2552,
- "start": 866.884,
- "end": 867.334,
- "text": "operating"
- },
- {
- "id": 2553,
- "start": 867.334,
- "end": 867.404,
- "text": "in"
- },
- {
- "id": 2554,
- "start": 867.404,
- "end": 867.474,
- "text": "the"
- },
- {
- "id": 2555,
- "start": 867.474,
- "end": 867.944,
- "text": "shadows"
- },
- {
- "id": 2556,
- "start": 867.944,
- "end": 868.144,
- "text": "without"
- },
- {
- "id": 2557,
- "start": 868.144,
- "end": 868.854,
- "text": "transparency"
- },
- {
- "id": 2558,
- "start": 868.854,
- "end": 869.014,
- "text": "and"
- },
- {
- "id": 2559,
- "start": 869.014,
- "end": 869.264,
- "text": "make"
- },
- {
- "id": 2560,
- "start": 869.264,
- "end": 869.434,
- "text": "those"
- },
- {
- "id": 2561,
- "start": 869.554,
- "end": 869.7239999999999,
- "text": "behaviors"
- },
- {
- "id": 2562,
- "start": 869.844,
- "end": 870.014,
- "text": "much"
- },
- {
- "id": 2563,
- "start": 870.1506666666668,
- "end": 870.3706666666666,
- "text": "more"
- },
- {
- "id": 2564,
- "start": 870.4573333333334,
- "end": 870.7273333333333,
- "text": "difficult."
- },
- {
- "id": 2565,
- "start": 870.764,
- "end": 871.084,
- "text": "But"
- },
- {
- "id": 2566,
- "start": 871.084,
- "end": 871.324,
- "text": "look"
- },
- {
- "id": 2567,
- "start": 871.324,
- "end": 871.404,
- "text": "at"
- },
- {
- "id": 2568,
- "start": 871.404,
- "end": 871.514,
- "text": "it"
- },
- {
- "id": 2569,
- "start": 871.514,
- "end": 871.684,
- "text": "from"
- },
- {
- "id": 2570,
- "start": 871.684,
- "end": 871.834,
- "text": "my"
- },
- {
- "id": 2571,
- "start": 871.834,
- "end": 872.494,
- "text": "perspective,"
- },
- {
- "id": 2572,
- "start": 872.494,
- "end": 872.644,
- "text": "or"
- },
- {
- "id": 2573,
- "start": 872.644,
- "end": 872.834,
- "text": "look"
- },
- {
- "id": 2574,
- "start": 872.834,
- "end": 872.904,
- "text": "at"
- },
- {
- "id": 2575,
- "start": 872.904,
- "end": 872.984,
- "text": "it"
- },
- {
- "id": 2576,
- "start": 872.984,
- "end": 873.144,
- "text": "from"
- },
- {
- "id": 2577,
- "start": 873.144,
- "end": 873.224,
- "text": "the"
- },
- {
- "id": 2578,
- "start": 873.224,
- "end": 873.624,
- "text": "public’s"
- },
- {
- "id": 2579,
- "start": 873.624,
- "end": 874.134,
- "text": "perspective"
- },
- {
- "id": 2580,
- "start": 874.134,
- "end": 874.274,
- "text": "for"
- },
- {
- "id": 2581,
- "start": 874.274,
- "end": 874.334,
- "text": "a"
- },
- {
- "id": 2582,
- "start": 874.334,
- "end": 874.784,
- "text": "second."
- },
- {
- "id": 2583,
- "start": 874.784,
- "end": 874.964,
- "text": "If"
- },
- {
- "id": 2584,
- "start": 874.964,
- "end": 875.134,
- "text": "this"
- },
- {
- "id": 2585,
- "start": 875.134,
- "end": 875.514,
- "text": "doesn’t"
- },
- {
- "id": 2586,
- "start": 875.514,
- "end": 875.714,
- "text": "go"
- },
- {
- "id": 2587,
- "start": 875.714,
- "end": 876.174,
- "text": "well,"
- },
- {
- "id": 2588,
- "start": 876.174,
- "end": 877.044,
- "text": "if"
- },
- {
- "id": 2589,
- "start": 877.044,
- "end": 877.234,
- "text": "there’s"
- },
- {
- "id": 2590,
- "start": 877.234,
- "end": 877.314,
- "text": "a"
- },
- {
- "id": 2591,
- "start": 877.314,
- "end": 877.764,
- "text": "problem"
- },
- {
- "id": 2592,
- "start": 877.764,
- "end": 877.854,
- "text": "in"
- },
- {
- "id": 2593,
- "start": 877.854,
- "end": 877.924,
- "text": "the"
- },
- {
- "id": 2594,
- "start": 877.924,
- "end": 878.964,
- "text": "midterms"
- },
- {
- "id": 2595,
- "start": 878.964,
- "end": 879.194,
- "text": "that"
- },
- {
- "id": 2596,
- "start": 879.194,
- "end": 879.564,
- "text": "happens"
- },
- {
- "id": 2597,
- "start": 879.564,
- "end": 879.704,
- "text": "on"
- },
- {
- "id": 2598,
- "start": 879.704,
- "end": 881.164,
- "text": "Facebook,"
- },
- {
- "id": 2599,
- "start": 881.164,
- "end": 881.664,
- "text": "how"
- },
- {
- "id": 2600,
- "start": 881.664,
- "end": 881.944,
- "text": "are"
- },
- {
- "id": 2601,
- "start": 881.944,
- "end": 882.134,
- "text": "we"
- },
- {
- "id": 2602,
- "start": 882.134,
- "end": 882.604,
- "text": "supposed"
- },
- {
- "id": 2603,
- "start": 882.604,
- "end": 882.674,
- "text": "to"
- },
- {
- "id": 2604,
- "start": 882.674,
- "end": 882.984,
- "text": "hold"
- },
- {
- "id": 2605,
- "start": 882.984,
- "end": 883.474,
- "text": "Facebook"
- },
- {
- "id": 2606,
- "start": 883.474,
- "end": 884.764,
- "text": "accountable"
- },
- {
- "id": 2607,
- "start": 884.764,
- "end": 885.664,
- "text": "if"
- },
- {
- "id": 2608,
- "start": 885.664,
- "end": 885.844,
- "text": "the"
- },
- {
- "id": 2609,
- "start": 885.844,
- "end": 886.404,
- "text": "platform"
- },
- {
- "id": 2610,
- "start": 886.404,
- "end": 887.564,
- "text": "again"
- },
- {
- "id": 2611,
- "start": 887.564,
- "end": 888.284,
- "text": "is"
- },
- {
- "id": 2612,
- "start": 888.284,
- "end": 888.754,
- "text": "gamed"
- },
- {
- "id": 2613,
- "start": 888.754,
- "end": 888.924,
- "text": "by"
- },
- {
- "id": 2614,
- "start": 888.924,
- "end": 889.404,
- "text": "malicious"
- },
- {
- "id": 2615,
- "start": 889.404,
- "end": 890.564,
- "text": "actors?"
- },
- {
- "id": 2616,
- "start": 890.564,
- "end": 890.854,
- "text": "What"
- },
- {
- "id": 2617,
- "start": 890.854,
- "end": 891.144,
- "text": "we’ve"
- },
- {
- "id": 2618,
- "start": 891.144,
- "end": 891.654,
- "text": "done"
- },
- {
- "id": 2619,
- "start": 891.654,
- "end": 892.584,
- "text": "consistently"
- },
- {
- "id": 2620,
- "start": 892.584,
- "end": 892.844,
- "text": "is"
- },
- {
- "id": 2621,
- "start": 892.844,
- "end": 893.054,
- "text": "we"
- },
- {
- "id": 2622,
- "start": 893.054,
- "end": 893.584,
- "text": "have"
- },
- {
- "id": 2623,
- "start": 893.584,
- "end": 894.374,
- "text": "identified"
- },
- {
- "id": 2624,
- "start": 894.374,
- "end": 894.464,
- "text": "the"
- },
- {
- "id": 2625,
- "start": 894.464,
- "end": 894.694,
- "text": "bad"
- },
- {
- "id": 2626,
- "start": 894.779,
- "end": 894.974,
- "text": "behavior."
- },
- {
- "id": 2627,
- "start": 895.094,
- "end": 895.254,
- "text": "We’ve"
- },
- {
- "id": 2628,
- "start": 895.254,
- "end": 896.014,
- "text": "investigated"
- },
- {
- "id": 2629,
- "start": 895.634,
- "end": 896.094,
- "text": "it"
- },
- {
- "id": 2630,
- "start": 896.014,
- "end": 896.174,
- "text": "as"
- },
- {
- "id": 2631,
- "start": 896.174,
- "end": 896.494,
- "text": "quickly"
- },
- {
- "id": 2632,
- "start": 896.494,
- "end": 896.584,
- "text": "as"
- },
- {
- "id": 2633,
- "start": 896.6473333333333,
- "end": 896.784,
- "text": "possible,"
- },
- {
- "id": 2634,
- "start": 896.8006666666666,
- "end": 896.9839999999999,
- "text": "and"
- },
- {
- "id": 2635,
- "start": 896.954,
- "end": 897.184,
- "text": "we’ve"
- },
- {
- "id": 2636,
- "start": 897.184,
- "end": 897.664,
- "text": "moved"
- },
- {
- "id": 2637,
- "start": 897.664,
- "end": 897.784,
- "text": "to"
- },
- {
- "id": 2638,
- "start": 897.784,
- "end": 898.224,
- "text": "eliminate"
- },
- {
- "id": 2639,
- "start": 898.224,
- "end": 898.794,
- "text": "it,"
- },
- {
- "id": 2640,
- "start": 898.794,
- "end": 898.944,
- "text": "and"
- },
- {
- "id": 2641,
- "start": 898.944,
- "end": 899.074,
- "text": "not"
- },
- {
- "id": 2642,
- "start": 899.074,
- "end": 899.234,
- "text": "just"
- },
- {
- "id": 2643,
- "start": 899.234,
- "end": 899.444,
- "text": "that"
- },
- {
- "id": 2644,
- "start": 899.444,
- "end": 899.564,
- "text": "but"
- },
- {
- "id": 2645,
- "start": 899.564,
- "end": 899.634,
- "text": "to"
- },
- {
- "id": 2646,
- "start": 899.844,
- "end": 899.919,
- "text": "publicize"
- },
- {
- "id": 2647,
- "start": 900.124,
- "end": 900.204,
- "text": "it,"
- },
- {
- "id": 2648,
- "start": 900.204,
- "end": 900.284,
- "text": "to"
- },
- {
- "id": 2649,
- "start": 900.284,
- "end": 900.414,
- "text": "make"
- },
- {
- "id": 2650,
- "start": 900.414,
- "end": 900.534,
- "text": "sure"
- },
- {
- "id": 2651,
- "start": 900.479,
- "end": 900.694,
- "text": "that"
- },
- {
- "id": 2652,
- "start": 900.544,
- "end": 900.854,
- "text": "people"
- },
- {
- "id": 2653,
- "start": 900.854,
- "end": 901.514,
- "text": "understand"
- },
- {
- "id": 2654,
- "start": 901.514,
- "end": 901.644,
- "text": "what"
- },
- {
- "id": 2655,
- "start": 901.644,
- "end": 902.194,
- "text": "happened."
- },
- {
- "id": 2656,
- "start": 902.194,
- "end": 902.504,
- "text": "One"
- },
- {
- "id": 2657,
- "start": 902.504,
- "end": 902.564,
- "text": "of"
- },
- {
- "id": 2658,
- "start": 902.564,
- "end": 902.644,
- "text": "the"
- },
- {
- "id": 2659,
- "start": 902.644,
- "end": 905.704,
- "text": "core"
- },
- {
- "id": 2660,
- "start": 905.704,
- "end": 905.914,
- "text": "things"
- },
- {
- "id": 2661,
- "start": 905.914,
- "end": 906.024,
- "text": "we"
- },
- {
- "id": 2662,
- "start": 906.024,
- "end": 906.244,
- "text": "all"
- },
- {
- "id": 2663,
- "start": 906.244,
- "end": 906.414,
- "text": "need"
- },
- {
- "id": 2664,
- "start": 906.414,
- "end": 906.524,
- "text": "to"
- },
- {
- "id": 2665,
- "start": 906.784,
- "end": 906.909,
- "text": "do"
- },
- {
- "id": 2666,
- "start": 907.154,
- "end": 907.294,
- "text": "is"
- },
- {
- "id": 2667,
- "start": 907.294,
- "end": 907.394,
- "text": "to"
- },
- {
- "id": 2668,
- "start": 907.394,
- "end": 908.104,
- "text": "understand"
- },
- {
- "id": 2669,
- "start": 908.104,
- "end": 908.894,
- "text": "better"
- },
- {
- "id": 2670,
- "start": 908.894,
- "end": 909.264,
- "text": "the"
- },
- {
- "id": 2671,
- "start": 909.254,
- "end": 909.534,
- "text": "bad"
- },
- {
- "id": 2672,
- "start": 909.619,
- "end": 909.849,
- "text": "behavior"
- },
- {
- "id": 2673,
- "start": 909.984,
- "end": 910.164,
- "text": "that’s"
- },
- {
- "id": 2674,
- "start": 910.164,
- "end": 910.634,
- "text": "occurring"
- },
- {
- "id": 2675,
- "start": 910.634,
- "end": 910.764,
- "text": "and"
- },
- {
- "id": 2676,
- "start": 910.764,
- "end": 910.854,
- "text": "the"
- },
- {
- "id": 2677,
- "start": 910.854,
- "end": 911.274,
- "text": "ways"
- },
- {
- "id": 2678,
- "start": 911.274,
- "end": 911.374,
- "text": "that"
- },
- {
- "id": 2679,
- "start": 911.374,
- "end": 911.544,
- "text": "these"
- },
- {
- "id": 2680,
- "start": 911.544,
- "end": 911.844,
- "text": "actors"
- },
- {
- "id": 2681,
- "start": 911.844,
- "end": 911.914,
- "text": "are"
- },
- {
- "id": 2682,
- "start": 911.914,
- "end": 912.324,
- "text": "trying"
- },
- {
- "id": 2683,
- "start": 912.324,
- "end": 912.414,
- "text": "to"
- },
- {
- "id": 2684,
- "start": 912.414,
- "end": 912.834,
- "text": "manipulate"
- },
- {
- "id": 2685,
- "start": 912.834,
- "end": 913.104,
- "text": "public"
- },
- {
- "id": 2686,
- "start": 913.104,
- "end": 913.554,
- "text": "debate"
- },
- {
- "id": 2687,
- "start": 913.554,
- "end": 913.864,
- "text": "so"
- },
- {
- "id": 2688,
- "start": 913.864,
- "end": 913.954,
- "text": "that"
- },
- {
- "id": 2689,
- "start": 913.954,
- "end": 914.044,
- "text": "we"
- },
- {
- "id": 2690,
- "start": 914.064,
- "end": 914.184,
- "text": "can"
- },
- {
- "id": 2691,
- "start": 914.174,
- "end": 914.324,
- "text": "make"
- },
- {
- "id": 2692,
- "start": 914.324,
- "end": 914.394,
- "text": "it"
- },
- {
- "id": 2693,
- "start": 914.394,
- "end": 914.514,
- "text": "more"
- },
- {
- "id": 2694,
- "start": 914.514,
- "end": 914.874,
- "text": "difficult"
- },
- {
- "id": 2695,
- "start": 914.874,
- "end": 915.084,
- "text": "going"
- },
- {
- "id": 2696,
- "start": 915.084,
- "end": 916.894,
- "text": "forward."
- },
- {
- "id": 2697,
- "start": 916.894,
- "end": 917.014,
- "text": "Do"
- },
- {
- "id": 2698,
- "start": 917.014,
- "end": 917.084,
- "text": "you"
- },
- {
- "id": 2699,
- "start": 917.084,
- "end": 917.334,
- "text": "think"
- },
- {
- "id": 2700,
- "start": 917.334,
- "end": 917.474,
- "text": "that"
- },
- {
- "id": 2701,
- "start": 917.474,
- "end": 917.754,
- "text": "answered"
- },
- {
- "id": 2702,
- "start": 917.754,
- "end": 917.844,
- "text": "my"
- },
- {
- "id": 2703,
- "start": 917.844,
- "end": 918.774,
- "text": "question?"
- },
- {
- "id": 2704,
- "start": 918.774,
- "end": 918.884,
- "text": "I"
- },
- {
- "id": 2705,
- "start": 918.884,
- "end": 919.064,
- "text": "mean,"
- },
- {
- "id": 2706,
- "start": 919.064,
- "end": 919.264,
- "text": "I’m"
- },
- {
- "id": 2707,
- "start": 919.6289999999998,
- "end": 920.1590000000001,
- "text": "serious."
- },
- {
- "id": 2708,
- "start": 920.194,
- "end": 921.054,
- "text": "Honestly,"
- },
- {
- "id": 2709,
- "start": 921.054,
- "end": 921.534,
- "text": "this"
- },
- {
- "id": 2710,
- "start": 921.534,
- "end": 921.654,
- "text": "is"
- },
- {
- "id": 2711,
- "start": 921.654,
- "end": 921.734,
- "text": "a"
- },
- {
- "id": 2712,
- "start": 921.734,
- "end": 921.984,
- "text": "really"
- },
- {
- "id": 2713,
- "start": 921.984,
- "end": 922.384,
- "text": "important"
- },
- {
- "id": 2714,
- "start": 922.384,
- "end": 923.034,
- "text": "question"
- },
- {
- "id": 2715,
- "start": 923.034,
- "end": 923.224,
- "text": "in"
- },
- {
- "id": 2716,
- "start": 923.224,
- "end": 923.604,
- "text": "terms"
- },
- {
- "id": 2717,
- "start": 923.604,
- "end": 924.974,
- "text": "of"
- },
- {
- "id": 2718,
- "start": 924.974,
- "end": 925.304,
- "text": "if"
- },
- {
- "id": 2719,
- "start": 925.304,
- "end": 925.604,
- "text": "things"
- },
- {
- "id": 2720,
- "start": 925.604,
- "end": 925.884,
- "text": "don’t"
- },
- {
- "id": 2721,
- "start": 925.884,
- "end": 926.104,
- "text": "go"
- },
- {
- "id": 2722,
- "start": 926.104,
- "end": 926.554,
- "text": "well,"
- },
- {
- "id": 2723,
- "start": 926.554,
- "end": 926.854,
- "text": "and"
- },
- {
- "id": 2724,
- "start": 926.854,
- "end": 926.964,
- "text": "I"
- },
- {
- "id": 2725,
- "start": 926.964,
- "end": 927.344,
- "text": "certainly"
- },
- {
- "id": 2726,
- "start": 927.344,
- "end": 927.594,
- "text": "hope"
- },
- {
- "id": 2727,
- "start": 927.594,
- "end": 927.744,
- "text": "that"
- },
- {
- "id": 2728,
- "start": 927.744,
- "end": 927.884,
- "text": "they"
- },
- {
- "id": 2729,
- "start": 927.884,
- "end": 928.864,
- "text": "do,"
- },
- {
- "id": 2730,
- "start": 928.864,
- "end": 929.274,
- "text": "what"
- },
- {
- "id": 2731,
- "start": 929.274,
- "end": 930.074,
- "text": "recourse"
- },
- {
- "id": 2732,
- "start": 930.074,
- "end": 930.394,
- "text": "does"
- },
- {
- "id": 2733,
- "start": 930.394,
- "end": 930.504,
- "text": "the"
- },
- {
- "id": 2734,
- "start": 930.504,
- "end": 930.904,
- "text": "public"
- },
- {
- "id": 2735,
- "start": 930.904,
- "end": 931.494,
- "text": "have"
- },
- {
- "id": 2736,
- "start": 931.494,
- "end": 931.854,
- "text": "for"
- },
- {
- "id": 2737,
- "start": 931.854,
- "end": 932.074,
- "text": "what"
- },
- {
- "id": 2738,
- "start": 932.074,
- "end": 932.184,
- "text": "is"
- },
- {
- "id": 2739,
- "start": 932.184,
- "end": 932.864,
- "text": "essentially"
- },
- {
- "id": 2740,
- "start": 932.864,
- "end": 933.054,
- "text": "kind"
- },
- {
- "id": 2741,
- "start": 933.054,
- "end": 933.154,
- "text": "of"
- },
- {
- "id": 2742,
- "start": 933.154,
- "end": 933.244,
- "text": "an"
- },
- {
- "id": 2743,
- "start": 933.244,
- "end": 933.804,
- "text": "information"
- },
- {
- "id": 2744,
- "start": 933.804,
- "end": 934.374,
- "text": "utility"
- },
- {
- "id": 2745,
- "start": 934.374,
- "end": 934.564,
- "text": "for"
- },
- {
- "id": 2746,
- "start": 934.564,
- "end": 934.884,
- "text": "so"
- },
- {
- "id": 2747,
- "start": 934.884,
- "end": 935.664,
- "text": "many"
- },
- {
- "id": 2748,
- "start": 935.664,
- "end": 936.384,
- "text": "voters"
- },
- {
- "id": 2749,
- "start": 936.384,
- "end": 936.564,
- "text": "in"
- },
- {
- "id": 2750,
- "start": 936.564,
- "end": 936.714,
- "text": "this"
- },
- {
- "id": 2751,
- "start": 936.714,
- "end": 937.374,
- "text": "electorate?"
- },
- {
- "id": 2752,
- "start": 937.374,
- "end": 937.574,
- "text": "What"
- },
- {
- "id": 2753,
- "start": 937.574,
- "end": 937.944,
- "text": "are"
- },
- {
- "id": 2754,
- "start": 937.944,
- "end": 938.074,
- "text": "we"
- },
- {
- "id": 2755,
- "start": 938.074,
- "end": 938.564,
- "text": "supposed"
- },
- {
- "id": 2756,
- "start": 938.564,
- "end": 938.644,
- "text": "to"
- },
- {
- "id": 2757,
- "start": 938.644,
- "end": 939.014,
- "text": "think?"
- },
- {
- "id": 2758,
- "start": 939.014,
- "end": 939.144,
- "text": "What"
- },
- {
- "id": 2759,
- "start": 939.144,
- "end": 939.204,
- "text": "are"
- },
- {
- "id": 2760,
- "start": 939.204,
- "end": 939.294,
- "text": "we"
- },
- {
- "id": 2761,
- "start": 939.294,
- "end": 939.574,
- "text": "supposed"
- },
- {
- "id": 2762,
- "start": 939.574,
- "end": 939.644,
- "text": "to"
- },
- {
- "id": 2763,
- "start": 941.4889999999996,
- "end": 941.6990000000005,
- "text": "do?"
- },
- {
- "id": 2764,
- "start": 943.404,
- "end": 943.754,
- "text": "Public"
- },
- {
- "id": 2765,
- "start": 943.754,
- "end": 944.134,
- "text": "debate"
- },
- {
- "id": 2766,
- "start": 944.134,
- "end": 944.264,
- "text": "is"
- },
- {
- "id": 2767,
- "start": 944.264,
- "end": 944.524,
- "text": "really"
- },
- {
- "id": 2768,
- "start": 944.524,
- "end": 945.774,
- "text": "essential,"
- },
- {
- "id": 2769,
- "start": 945.774,
- "end": 946.144,
- "text": "and"
- },
- {
- "id": 2770,
- "start": 946.144,
- "end": 946.244,
- "text": "I"
- },
- {
- "id": 2771,
- "start": 946.244,
- "end": 946.464,
- "text": "think"
- },
- {
- "id": 2772,
- "start": 946.464,
- "end": 946.544,
- "text": "the"
- },
- {
- "id": 2773,
- "start": 946.544,
- "end": 946.764,
- "text": "most"
- },
- {
- "id": 2774,
- "start": 946.764,
- "end": 947.194,
- "text": "important"
- },
- {
- "id": 2775,
- "start": 947.194,
- "end": 947.414,
- "text": "thing"
- },
- {
- "id": 2776,
- "start": 947.414,
- "end": 947.884,
- "text": "here"
- },
- {
- "id": 2777,
- "start": 947.884,
- "end": 948.054,
- "text": "is"
- },
- {
- "id": 2778,
- "start": 948.054,
- "end": 948.164,
- "text": "to"
- },
- {
- "id": 2779,
- "start": 948.164,
- "end": 948.464,
- "text": "make"
- },
- {
- "id": 2780,
- "start": 948.464,
- "end": 949.104,
- "text": "sure"
- },
- {
- "id": 2781,
- "start": 949.104,
- "end": 949.334,
- "text": "that"
- },
- {
- "id": 2782,
- "start": 949.334,
- "end": 949.454,
- "text": "it"
- },
- {
- "id": 2783,
- "start": 949.454,
- "end": 949.694,
- "text": "does"
- },
- {
- "id": 2784,
- "start": 949.694,
- "end": 949.884,
- "text": "go"
- },
- {
- "id": 2785,
- "start": 949.884,
- "end": 950.404,
- "text": "well,"
- },
- {
- "id": 2786,
- "start": 950.404,
- "end": 950.504,
- "text": "and"
- },
- {
- "id": 2787,
- "start": 950.504,
- "end": 950.654,
- "text": "that’s"
- },
- {
- "id": 2788,
- "start": 950.579,
- "end": 950.7239999999999,
- "text": "what"
- },
- {
- "id": 2789,
- "start": 950.654,
- "end": 950.794,
- "text": "we’re"
- },
- {
- "id": 2790,
- "start": 950.794,
- "end": 951.234,
- "text": "focused"
- },
- {
- "id": 2791,
- "start": 951.234,
- "end": 951.524,
- "text": "on."
- },
- {
- "id": 2792,
- "start": 951.5590000000001,
- "end": 951.814,
- "text": "What"
- },
- {
- "id": 2793,
- "start": 951.884,
- "end": 952.104,
- "text": "we’re"
- },
- {
- "id": 2794,
- "start": 952.104,
- "end": 952.454,
- "text": "focused"
- },
- {
- "id": 2795,
- "start": 952.454,
- "end": 952.574,
- "text": "on"
- },
- {
- "id": 2796,
- "start": 952.574,
- "end": 952.664,
- "text": "is"
- },
- {
- "id": 2797,
- "start": 952.664,
- "end": 952.794,
- "text": "how"
- },
- {
- "id": 2798,
- "start": 952.794,
- "end": 952.854,
- "text": "do"
- },
- {
- "id": 2799,
- "start": 952.854,
- "end": 952.954,
- "text": "we"
- },
- {
- "id": 2800,
- "start": 952.954,
- "end": 953.094,
- "text": "have"
- },
- {
- "id": 2801,
- "start": 953.094,
- "end": 953.204,
- "text": "the"
- },
- {
- "id": 2802,
- "start": 953.6890000000001,
- "end": 953.8389999999999,
- "text": "resources,"
- },
- {
- "id": 2803,
- "start": 954.284,
- "end": 954.474,
- "text": "how"
- },
- {
- "id": 2804,
- "start": 954.474,
- "end": 954.544,
- "text": "do"
- },
- {
- "id": 2805,
- "start": 954.544,
- "end": 954.624,
- "text": "we"
- },
- {
- "id": 2806,
- "start": 954.624,
- "end": 954.754,
- "text": "have"
- },
- {
- "id": 2807,
- "start": 954.754,
- "end": 954.874,
- "text": "the"
- },
- {
- "id": 2808,
- "start": 954.874,
- "end": 955.844,
- "text": "teams,"
- },
- {
- "id": 2809,
- "start": 955.844,
- "end": 955.964,
- "text": "and"
- },
- {
- "id": 2810,
- "start": 955.964,
- "end": 956.034,
- "text": "how"
- },
- {
- "id": 2811,
- "start": 956.034,
- "end": 956.094,
- "text": "do"
- },
- {
- "id": 2812,
- "start": 956.094,
- "end": 956.154,
- "text": "we"
- },
- {
- "id": 2813,
- "start": 956.154,
- "end": 956.244,
- "text": "have"
- },
- {
- "id": 2814,
- "start": 956.244,
- "end": 956.334,
- "text": "the"
- },
- {
- "id": 2815,
- "start": 956.334,
- "end": 956.854,
- "text": "capability"
- },
- {
- "id": 2816,
- "start": 956.854,
- "end": 956.924,
- "text": "to"
- },
- {
- "id": 2817,
- "start": 956.924,
- "end": 957.084,
- "text": "put"
- },
- {
- "id": 2818,
- "start": 957.084,
- "end": 957.224,
- "text": "this"
- },
- {
- "id": 2819,
- "start": 957.8240000000001,
- "end": 958.3240000000001,
- "text": "together."
- },
- {
- "id": 2820,
- "start": 958.564,
- "end": 959.424,
- "text": "But"
- },
- {
- "id": 2821,
- "start": 959.424,
- "end": 959.684,
- "text": "this"
- },
- {
- "id": 2822,
- "start": 959.684,
- "end": 959.794,
- "text": "is"
- },
- {
- "id": 2823,
- "start": 959.794,
- "end": 959.874,
- "text": "an"
- },
- {
- "id": 2824,
- "start": 959.874,
- "end": 960.204,
- "text": "effort"
- },
- {
- "id": 2825,
- "start": 960.204,
- "end": 960.304,
- "text": "that"
- },
- {
- "id": 2826,
- "start": 960.304,
- "end": 960.394,
- "text": "we"
- },
- {
- "id": 2827,
- "start": 960.394,
- "end": 960.564,
- "text": "need"
- },
- {
- "id": 2828,
- "start": 960.564,
- "end": 960.924,
- "text": "many"
- },
- {
- "id": 2829,
- "start": 961.0290000000001,
- "end": 961.2539999999999,
- "text": "organizations"
- },
- {
- "id": 2830,
- "start": 961.494,
- "end": 961.584,
- "text": "to"
- },
- {
- "id": 2831,
- "start": 961.584,
- "end": 961.724,
- "text": "work"
- },
- {
- "id": 2832,
- "start": 961.724,
- "end": 962.034,
- "text": "together"
- },
- {
- "id": 2833,
- "start": 962.034,
- "end": 962.554,
- "text": "on."
- },
- {
- "id": 2834,
- "start": 962.554,
- "end": 962.644,
- "text": "I"
- },
- {
- "id": 2835,
- "start": 962.644,
- "end": 962.874,
- "text": "think"
- },
- {
- "id": 2836,
- "start": 962.874,
- "end": 963.314,
- "text": "Facebook"
- },
- {
- "id": 2837,
- "start": 963.1655000000001,
- "end": 963.4105,
- "text": "has"
- },
- {
- "id": 2838,
- "start": 963.457,
- "end": 963.507,
- "text": "a"
- },
- {
- "id": 2839,
- "start": 963.507,
- "end": 963.847,
- "text": "critical"
- },
- {
- "id": 2840,
- "start": 963.847,
- "end": 964.087,
- "text": "piece"
- },
- {
- "id": 2841,
- "start": 964.087,
- "end": 964.167,
- "text": "of"
- },
- {
- "id": 2842,
- "start": 964.167,
- "end": 964.897,
- "text": "this,"
- },
- {
- "id": 2843,
- "start": 964.897,
- "end": 965.167,
- "text": "just"
- },
- {
- "id": 2844,
- "start": 965.167,
- "end": 965.307,
- "text": "like"
- },
- {
- "id": 2845,
- "start": 965.307,
- "end": 965.377,
- "text": "the"
- },
- {
- "id": 2846,
- "start": 965.377,
- "end": 965.477,
- "text": "other"
- },
- {
- "id": 2847,
- "start": 965.477,
- "end": 965.897,
- "text": "technology"
- },
- {
- "id": 2848,
- "start": 965.897,
- "end": 966.267,
- "text": "companies"
- },
- {
- "id": 2849,
- "start": 966.292,
- "end": 966.512,
- "text": "do;"
- },
- {
- "id": 2850,
- "start": 966.687,
- "end": 966.757,
- "text": "I"
- },
- {
- "id": 2851,
- "start": 966.757,
- "end": 966.957,
- "text": "think"
- },
- {
- "id": 2852,
- "start": 966.957,
- "end": 967.357,
- "text": "government"
- },
- {
- "id": 2853,
- "start": 967.357,
- "end": 967.487,
- "text": "has"
- },
- {
- "id": 2854,
- "start": 967.487,
- "end": 967.537,
- "text": "a"
- },
- {
- "id": 2855,
- "start": 967.537,
- "end": 967.827,
- "text": "critical"
- },
- {
- "id": 2856,
- "start": 967.827,
- "end": 968.067,
- "text": "piece"
- },
- {
- "id": 2857,
- "start": 968.067,
- "end": 968.137,
- "text": "of"
- },
- {
- "id": 2858,
- "start": 968.137,
- "end": 968.867,
- "text": "this."
- },
- {
- "id": 2859,
- "start": 968.867,
- "end": 969.267,
- "text": "The"
- },
- {
- "id": 2860,
- "start": 969.267,
- "end": 969.917,
- "text": "public"
- },
- {
- "id": 2861,
- "start": 969.917,
- "end": 970.087,
- "text": "has"
- },
- {
- "id": 2862,
- "start": 970.087,
- "end": 970.137,
- "text": "a"
- },
- {
- "id": 2863,
- "start": 970.137,
- "end": 970.517,
- "text": "component"
- },
- {
- "id": 2864,
- "start": 970.517,
- "end": 970.577,
- "text": "of"
- },
- {
- "id": 2865,
- "start": 970.577,
- "end": 970.747,
- "text": "this,"
- },
- {
- "id": 2866,
- "start": 970.747,
- "end": 970.917,
- "text": "sort"
- },
- {
- "id": 2867,
- "start": 970.917,
- "end": 970.977,
- "text": "of"
- },
- {
- "id": 2868,
- "start": 971.2669999999999,
- "end": 971.362,
- "text": "understanding"
- },
- {
- "id": 2869,
- "start": 971.617,
- "end": 971.747,
- "text": "what’s"
- },
- {
- "id": 2870,
- "start": 971.747,
- "end": 972.657,
- "text": "happening"
- },
- {
- "id": 2871,
- "start": 972.657,
- "end": 972.827,
- "text": "in"
- },
- {
- "id": 2872,
- "start": 972.827,
- "end": 972.957,
- "text": "this"
- },
- {
- "id": 2873,
- "start": 973.057,
- "end": 973.3570000000001,
- "text": "space."
- },
- {
- "id": 2874,
- "start": 973.287,
- "end": 973.757,
- "text": "Media"
- },
- {
- "id": 2875,
- "start": 973.757,
- "end": 973.887,
- "text": "has"
- },
- {
- "id": 2876,
- "start": 973.887,
- "end": 973.947,
- "text": "a"
- },
- {
- "id": 2877,
- "start": 973.947,
- "end": 974.167,
- "text": "piece"
- },
- {
- "id": 2878,
- "start": 974.167,
- "end": 974.257,
- "text": "of"
- },
- {
- "id": 2879,
- "start": 974.257,
- "end": 974.467,
- "text": "this."
- },
- {
- "id": 2880,
- "start": 974.467,
- "end": 974.807,
- "text": "All"
- },
- {
- "id": 2881,
- "start": 974.807,
- "end": 974.867,
- "text": "of"
- },
- {
- "id": 2882,
- "start": 974.867,
- "end": 974.937,
- "text": "us"
- },
- {
- "id": 2883,
- "start": 974.937,
- "end": 975.067,
- "text": "have"
- },
- {
- "id": 2884,
- "start": 975.067,
- "end": 975.147,
- "text": "to"
- },
- {
- "id": 2885,
- "start": 975.147,
- "end": 975.327,
- "text": "work"
- },
- {
- "id": 2886,
- "start": 975.327,
- "end": 975.687,
- "text": "together"
- },
- {
- "id": 2887,
- "start": 975.687,
- "end": 975.767,
- "text": "to"
- },
- {
- "id": 2888,
- "start": 975.767,
- "end": 975.927,
- "text": "make"
- },
- {
- "id": 2889,
- "start": 975.927,
- "end": 976.077,
- "text": "sure"
- },
- {
- "id": 2890,
- "start": 976.077,
- "end": 976.147,
- "text": "it"
- },
- {
- "id": 2891,
- "start": 976.147,
- "end": 976.347,
- "text": "goes"
- },
- {
- "id": 2892,
- "start": 976.347,
- "end": 977.047,
- "text": "well."
- },
- {
- "id": 2893,
- "start": 977.047,
- "end": 977.267,
- "text": "How"
- },
- {
- "id": 2894,
- "start": 977.267,
- "end": 977.347,
- "text": "are"
- },
- {
- "id": 2895,
- "start": 977.347,
- "end": 977.517,
- "text": "you"
- },
- {
- "id": 2896,
- "start": 977.517,
- "end": 978.147,
- "text": "coordinating"
- },
- {
- "id": 2897,
- "start": 978.147,
- "end": 978.297,
- "text": "with"
- },
- {
- "id": 2898,
- "start": 978.297,
- "end": 981.057,
- "text": "government?"
- },
- {
- "id": 2899,
- "start": 981.057,
- "end": 981.197,
- "text": "Is"
- },
- {
- "id": 2900,
- "start": 981.197,
- "end": 981.367,
- "text": "there"
- },
- {
- "id": 2901,
- "start": 981.367,
- "end": 981.427,
- "text": "a"
- },
- {
- "id": 2902,
- "start": 981.427,
- "end": 982.037,
- "text": "coordinated"
- },
- {
- "id": 2903,
- "start": 982.037,
- "end": 982.357,
- "text": "effort"
- },
- {
- "id": 2904,
- "start": 982.357,
- "end": 982.567,
- "text": "right"
- },
- {
- "id": 2905,
- "start": 982.567,
- "end": 982.807,
- "text": "now"
- },
- {
- "id": 2906,
- "start": 982.807,
- "end": 982.917,
- "text": "in"
- },
- {
- "id": 2907,
- "start": 982.917,
- "end": 983.227,
- "text": "terms"
- },
- {
- "id": 2908,
- "start": 983.227,
- "end": 983.317,
- "text": "of"
- },
- {
- "id": 2909,
- "start": 983.317,
- "end": 983.677,
- "text": "election"
- },
- {
- "id": 2910,
- "start": 983.677,
- "end": 985.227,
- "text": "integrity?"
- },
- {
- "id": 2911,
- "start": 985.227,
- "end": 985.397,
- "text": "When"
- },
- {
- "id": 2912,
- "start": 985.397,
- "end": 985.537,
- "text": "we’re"
- },
- {
- "id": 2913,
- "start": 985.537,
- "end": 985.727,
- "text": "getting"
- },
- {
- "id": 2914,
- "start": 985.727,
- "end": 985.967,
- "text": "ready"
- },
- {
- "id": 2915,
- "start": 985.967,
- "end": 986.097,
- "text": "to,"
- },
- {
- "id": 2916,
- "start": 986.097,
- "end": 986.217,
- "text": "for"
- },
- {
- "id": 2917,
- "start": 986.217,
- "end": 986.457,
- "text": "instance,"
- },
- {
- "id": 2918,
- "start": 986.457,
- "end": 986.627,
- "text": "take"
- },
- {
- "id": 2919,
- "start": 986.627,
- "end": 986.667,
- "text": "a"
- },
- {
- "id": 2920,
- "start": 986.667,
- "end": 987.587,
- "text": "disruption,"
- },
- {
- "id": 2921,
- "start": 987.587,
- "end": 987.747,
- "text": "we"
- },
- {
- "id": 2922,
- "start": 987.747,
- "end": 988.007,
- "text": "work"
- },
- {
- "id": 2923,
- "start": 988.007,
- "end": 988.117,
- "text": "with"
- },
- {
- "id": 2924,
- "start": 988.117,
- "end": 988.457,
- "text": "government"
- },
- {
- "id": 2925,
- "start": 988.457,
- "end": 988.517,
- "text": "to"
- },
- {
- "id": 2926,
- "start": 988.517,
- "end": 988.667,
- "text": "make"
- },
- {
- "id": 2927,
- "start": 988.667,
- "end": 988.877,
- "text": "sure"
- },
- {
- "id": 2928,
- "start": 988.877,
- "end": 989.017,
- "text": "they"
- },
- {
- "id": 2929,
- "start": 989.017,
- "end": 989.387,
- "text": "understand"
- },
- {
- "id": 2930,
- "start": 989.387,
- "end": 989.537,
- "text": "what’s"
- },
- {
- "id": 2931,
- "start": 989.667,
- "end": 989.792,
- "text": "happening,"
- },
- {
- "id": 2932,
- "start": 989.947,
- "end": 990.047,
- "text": "to"
- },
- {
- "id": 2933,
- "start": 990.047,
- "end": 990.167,
- "text": "make"
- },
- {
- "id": 2934,
- "start": 990.167,
- "end": 990.277,
- "text": "sure"
- },
- {
- "id": 2935,
- "start": 990.277,
- "end": 990.397,
- "text": "that"
- },
- {
- "id": 2936,
- "start": 990.397,
- "end": 990.617,
- "text": "law"
- },
- {
- "id": 2937,
- "start": 990.617,
- "end": 992.037,
- "text": "enforcement"
- },
- {
- "id": 2938,
- "start": 992.037,
- "end": 992.217,
- "text": "is"
- },
- {
- "id": 2939,
- "start": 992.217,
- "end": 992.317,
- "text": "in"
- },
- {
- "id": 2940,
- "start": 992.317,
- "end": 992.387,
- "text": "a"
- },
- {
- "id": 2941,
- "start": 992.387,
- "end": 992.777,
- "text": "position"
- },
- {
- "id": 2942,
- "start": 992.777,
- "end": 992.857,
- "text": "to"
- },
- {
- "id": 2943,
- "start": 992.857,
- "end": 993.177,
- "text": "conduct"
- },
- {
- "id": 2944,
- "start": 993.177,
- "end": 993.257,
- "text": "the"
- },
- {
- "id": 2945,
- "start": 993.257,
- "end": 993.917,
- "text": "investigations"
- },
- {
- "id": 2946,
- "start": 993.917,
- "end": 994.007,
- "text": "they"
- },
- {
- "id": 2947,
- "start": 994.007,
- "end": 994.167,
- "text": "need"
- },
- {
- "id": 2948,
- "start": 994.167,
- "end": 994.247,
- "text": "to"
- },
- {
- "id": 2949,
- "start": 994.247,
- "end": 994.887,
- "text": "conduct,"
- },
- {
- "id": 2950,
- "start": 994.887,
- "end": 995.017,
- "text": "to"
- },
- {
- "id": 2951,
- "start": 995.017,
- "end": 995.427,
- "text": "run"
- },
- {
- "id": 2952,
- "start": 995.427,
- "end": 995.547,
- "text": "the"
- },
- {
- "id": 2953,
- "start": 995.547,
- "end": 995.987,
- "text": "activities"
- },
- {
- "id": 2954,
- "start": 995.987,
- "end": 996.137,
- "text": "they"
- },
- {
- "id": 2955,
- "start": 996.137,
- "end": 996.307,
- "text": "need"
- },
- {
- "id": 2956,
- "start": 996.307,
- "end": 996.437,
- "text": "to"
- },
- {
- "id": 2957,
- "start": 996.437,
- "end": 997.047,
- "text": "run."
- },
- {
- "id": 2958,
- "start": 997.047,
- "end": 997.207,
- "text": "We"
- },
- {
- "id": 2959,
- "start": 997.207,
- "end": 997.667,
- "text": "regularly"
- },
- {
- "id": 2960,
- "start": 997.667,
- "end": 997.837,
- "text": "hear"
- },
- {
- "id": 2961,
- "start": 997.837,
- "end": 998.067,
- "text": "back"
- },
- {
- "id": 2962,
- "start": 998.067,
- "end": 998.197,
- "text": "from"
- },
- {
- "id": 2963,
- "start": 998.197,
- "end": 998.537,
- "text": "government"
- },
- {
- "id": 2964,
- "start": 998.537,
- "end": 998.657,
- "text": "when"
- },
- {
- "id": 2965,
- "start": 998.657,
- "end": 998.837,
- "text": "they"
- },
- {
- "id": 2966,
- "start": 998.837,
- "end": 999.127,
- "text": "see"
- },
- {
- "id": 2967,
- "start": 999.127,
- "end": 999.767,
- "text": "things"
- },
- {
- "id": 2968,
- "start": 999.767,
- "end": 999.907,
- "text": "that"
- },
- {
- "id": 2969,
- "start": 999.907,
- "end": 1000.087,
- "text": "might"
- },
- {
- "id": 2970,
- "start": 1000.087,
- "end": 1000.347,
- "text": "help"
- },
- {
- "id": 2971,
- "start": 1000.347,
- "end": 1000.587,
- "text": "us"
- },
- {
- "id": 2972,
- "start": 1000.587,
- "end": 1000.777,
- "text": "take"
- },
- {
- "id": 2973,
- "start": 1000.777,
- "end": 1000.867,
- "text": "our"
- },
- {
- "id": 2974,
- "start": 1000.867,
- "end": 1001.417,
- "text": "disruptions"
- },
- {
- "id": 2975,
- "start": 1001.417,
- "end": 1002.137,
- "text": "and"
- },
- {
- "id": 2976,
- "start": 1002.137,
- "end": 1002.317,
- "text": "take"
- },
- {
- "id": 2977,
- "start": 1002.317,
- "end": 1002.647,
- "text": "action"
- },
- {
- "id": 2978,
- "start": 1002.647,
- "end": 1002.897,
- "text": "against"
- },
- {
- "id": 2979,
- "start": 1002.897,
- "end": 1003.027,
- "text": "these"
- },
- {
- "id": 2980,
- "start": 1003.027,
- "end": 1003.217,
- "text": "bad"
- },
- {
- "id": 2981,
- "start": 1003.337,
- "end": 1003.5336666666667,
- "text": "actors,"
- },
- {
- "id": 2982,
- "start": 1003.6469999999999,
- "end": 1003.8503333333334,
- "text": "so"
- },
- {
- "id": 2983,
- "start": 1003.957,
- "end": 1004.167,
- "text": "there’s"
- },
- {
- "id": 2984,
- "start": 1004.167,
- "end": 1004.227,
- "text": "a"
- },
- {
- "id": 2985,
- "start": 1004.227,
- "end": 1004.727,
- "text": "constant"
- },
- {
- "id": 2986,
- "start": 1005.4169999999999,
- "end": 1005.7669999999998,
- "text": "dialogue."
- },
- {
- "id": 2987,
- "start": 1006.607,
- "end": 1006.807,
- "text": "Do"
- },
- {
- "id": 2988,
- "start": 1006.807,
- "end": 1006.907,
- "text": "you"
- },
- {
- "id": 2989,
- "start": 1006.907,
- "end": 1007.337,
- "text": "see"
- },
- {
- "id": 2990,
- "start": 1007.337,
- "end": 1008.087,
- "text": "Facebook,"
- },
- {
- "id": 2991,
- "start": 1008.087,
- "end": 1008.237,
- "text": "for"
- },
- {
- "id": 2992,
- "start": 1008.237,
- "end": 1008.737,
- "text": "instance,"
- },
- {
- "id": 2993,
- "start": 1008.737,
- "end": 1008.867,
- "text": "as"
- },
- {
- "id": 2994,
- "start": 1008.867,
- "end": 1008.937,
- "text": "a"
- },
- {
- "id": 2995,
- "start": 1008.937,
- "end": 1009.157,
- "text": "sort"
- },
- {
- "id": 2996,
- "start": 1009.157,
- "end": 1009.227,
- "text": "of"
- },
- {
- "id": 2997,
- "start": 1009.227,
- "end": 1009.607,
- "text": "first"
- },
- {
- "id": 2998,
- "start": 1009.607,
- "end": 1009.847,
- "text": "line"
- },
- {
- "id": 2999,
- "start": 1009.847,
- "end": 1010.017,
- "text": "of"
- },
- {
- "id": 3000,
- "start": 1010.502,
- "end": 1010.722,
- "text": "defense"
- },
- {
- "id": 3001,
- "start": 1011.157,
- "end": 1011.427,
- "text": "in"
- },
- {
- "id": 3002,
- "start": 1011.427,
- "end": 1011.927,
- "text": "terms"
- },
- {
- "id": 3003,
- "start": 1011.927,
- "end": 1013.167,
- "text": "of,"
- },
- {
- "id": 3004,
- "start": 1013.167,
- "end": 1013.277,
- "text": "the"
- },
- {
- "id": 3005,
- "start": 1013.277,
- "end": 1013.617,
- "text": "federal"
- },
- {
- "id": 3006,
- "start": 1013.617,
- "end": 1014.097,
- "text": "government"
- },
- {
- "id": 3007,
- "start": 1014.097,
- "end": 1014.527,
- "text": "can’t"
- },
- {
- "id": 3008,
- "start": 1014.527,
- "end": 1015.257,
- "text": "monitor"
- },
- {
- "id": 3009,
- "start": 1015.3969999999999,
- "end": 1015.8870000000001,
- "text": "behavior"
- },
- {
- "id": 3010,
- "start": 1016.267,
- "end": 1016.517,
- "text": "on"
- },
- {
- "id": 3011,
- "start": 1016.517,
- "end": 1016.887,
- "text": "social"
- },
- {
- "id": 3012,
- "start": 1016.887,
- "end": 1017.537,
- "text": "media,"
- },
- {
- "id": 3013,
- "start": 1017.537,
- "end": 1017.877,
- "text": "so"
- },
- {
- "id": 3014,
- "start": 1017.877,
- "end": 1018.017,
- "text": "we"
- },
- {
- "id": 3015,
- "start": 1018.017,
- "end": 1018.247,
- "text": "have"
- },
- {
- "id": 3016,
- "start": 1018.247,
- "end": 1018.467,
- "text": "to"
- },
- {
- "id": 3017,
- "start": 1018.467,
- "end": 1018.877,
- "text": "rely"
- },
- {
- "id": 3018,
- "start": 1018.877,
- "end": 1019.377,
- "text": "upon"
- },
- {
- "id": 3019,
- "start": 1019.377,
- "end": 1019.427,
- "text": "a"
- },
- {
- "id": 3020,
- "start": 1019.427,
- "end": 1019.807,
- "text": "company"
- },
- {
- "id": 3021,
- "start": 1019.807,
- "end": 1019.997,
- "text": "like"
- },
- {
- "id": 3022,
- "start": 1019.997,
- "end": 1020.507,
- "text": "Facebook"
- },
- {
- "id": 3023,
- "start": 1020.4819999999999,
- "end": 1021.032,
- "text": "to"
- },
- {
- "id": 3024,
- "start": 1020.967,
- "end": 1021.557,
- "text": "monitor"
- },
- {
- "id": 3025,
- "start": 1021.557,
- "end": 1021.667,
- "text": "the"
- },
- {
- "id": 3026,
- "start": 1021.667,
- "end": 1022.187,
- "text": "network"
- },
- {
- "id": 3027,
- "start": 1022.187,
- "end": 1022.457,
- "text": "for"
- },
- {
- "id": 3028,
- "start": 1022.457,
- "end": 1022.907,
- "text": "malicious"
- },
- {
- "id": 3029,
- "start": 1022.907,
- "end": 1023.397,
- "text": "actors,"
- },
- {
- "id": 3030,
- "start": 1023.397,
- "end": 1023.667,
- "text": "right?"
- },
- {
- "id": 3031,
- "start": 1023.667,
- "end": 1023.887,
- "text": "Isn’t"
- },
- {
- "id": 3032,
- "start": 1023.887,
- "end": 1024.007,
- "text": "that"
- },
- {
- "id": 3033,
- "start": 1024.007,
- "end": 1027.797,
- "text": "correct?"
- },
- {
- "id": 3034,
- "start": 1027.797,
- "end": 1028.127,
- "text": "We"
- },
- {
- "id": 3035,
- "start": 1028.127,
- "end": 1028.227,
- "text": "and"
- },
- {
- "id": 3036,
- "start": 1028.227,
- "end": 1028.297,
- "text": "the"
- },
- {
- "id": 3037,
- "start": 1028.297,
- "end": 1028.587,
- "text": "government"
- },
- {
- "id": 3038,
- "start": 1028.492,
- "end": 1028.787,
- "text": "have"
- },
- {
- "id": 3039,
- "start": 1028.687,
- "end": 1028.987,
- "text": "different"
- },
- {
- "id": 3040,
- "start": 1028.987,
- "end": 1029.237,
- "text": "tools"
- },
- {
- "id": 3041,
- "start": 1029.237,
- "end": 1029.347,
- "text": "to"
- },
- {
- "id": 3042,
- "start": 1029.347,
- "end": 1029.487,
- "text": "do"
- },
- {
- "id": 3043,
- "start": 1029.487,
- "end": 1029.737,
- "text": "that,"
- },
- {
- "id": 3044,
- "start": 1029.737,
- "end": 1030.297,
- "text": "right."
- },
- {
- "id": 3045,
- "start": 1030.297,
- "end": 1030.747,
- "text": "Government"
- },
- {
- "id": 3046,
- "start": 1030.747,
- "end": 1030.887,
- "text": "has"
- },
- {
- "id": 3047,
- "start": 1030.887,
- "end": 1030.947,
- "text": "a"
- },
- {
- "id": 3048,
- "start": 1030.947,
- "end": 1031.167,
- "text": "set"
- },
- {
- "id": 3049,
- "start": 1031.167,
- "end": 1031.257,
- "text": "of"
- },
- {
- "id": 3050,
- "start": 1031.257,
- "end": 1031.737,
- "text": "capacity"
- },
- {
- "id": 3051,
- "start": 1031.737,
- "end": 1031.897,
- "text": "that’s"
- },
- {
- "id": 3052,
- "start": 1031.897,
- "end": 1032.067,
- "text": "really"
- },
- {
- "id": 3053,
- "start": 1032.067,
- "end": 1032.667,
- "text": "important."
- },
- {
- "id": 3054,
- "start": 1032.4803333333332,
- "end": 1032.9136666666666,
- "text": "They"
- },
- {
- "id": 3055,
- "start": 1032.8936666666666,
- "end": 1033.1603333333333,
- "text": "are"
- },
- {
- "id": 3056,
- "start": 1033.307,
- "end": 1033.407,
- "text": "the"
- },
- {
- "id": 3057,
- "start": 1033.407,
- "end": 1033.657,
- "text": "best"
- },
- {
- "id": 3058,
- "start": 1033.6419999999998,
- "end": 1033.842,
- "text": "place,"
- },
- {
- "id": 3059,
- "start": 1033.877,
- "end": 1034.027,
- "text": "for"
- },
- {
- "id": 3060,
- "start": 1034.027,
- "end": 1034.677,
- "text": "example,"
- },
- {
- "id": 3061,
- "start": 1034.5320000000002,
- "end": 1035.292,
- "text": "to"
- },
- {
- "id": 3062,
- "start": 1035.037,
- "end": 1035.907,
- "text": "understand"
- },
- {
- "id": 3063,
- "start": 1035.907,
- "end": 1036.047,
- "text": "the"
- },
- {
- "id": 3064,
- "start": 1036.047,
- "end": 1036.557,
- "text": "intent"
- },
- {
- "id": 3065,
- "start": 1036.557,
- "end": 1037.697,
- "text": "behind"
- },
- {
- "id": 3066,
- "start": 1037.697,
- "end": 1037.827,
- "text": "a"
- },
- {
- "id": 3067,
- "start": 1037.827,
- "end": 1038.187,
- "text": "state"
- },
- {
- "id": 3068,
- "start": 1038.187,
- "end": 1038.847,
- "text": "actor"
- },
- {
- "id": 3069,
- "start": 1038.847,
- "end": 1039.087,
- "text": "and"
- },
- {
- "id": 3070,
- "start": 1039.087,
- "end": 1039.197,
- "text": "the"
- },
- {
- "id": 3071,
- "start": 1039.197,
- "end": 1039.617,
- "text": "reason"
- },
- {
- "id": 3072,
- "start": 1039.617,
- "end": 1039.757,
- "text": "they’re"
- },
- {
- "id": 3073,
- "start": 1039.757,
- "end": 1040.157,
- "text": "engaging"
- },
- {
- "id": 3074,
- "start": 1039.9920000000002,
- "end": 1040.2269999999999,
- "text": "it"
- },
- {
- "id": 3075,
- "start": 1040.227,
- "end": 1040.297,
- "text": "the"
- },
- {
- "id": 3076,
- "start": 1040.297,
- "end": 1040.427,
- "text": "way"
- },
- {
- "id": 3077,
- "start": 1040.427,
- "end": 1040.577,
- "text": "they’re"
- },
- {
- "id": 3078,
- "start": 1040.877,
- "end": 1041.2919999999997,
- "text": "engaging."
- },
- {
- "id": 3079,
- "start": 1041.327,
- "end": 1042.007,
- "text": "Facebook"
- },
- {
- "id": 3080,
- "start": 1042.007,
- "end": 1042.547,
- "text": "and"
- },
- {
- "id": 3081,
- "start": 1042.547,
- "end": 1042.917,
- "text": "the"
- },
- {
- "id": 3082,
- "start": 1042.917,
- "end": 1043.287,
- "text": "value"
- },
- {
- "id": 3083,
- "start": 1043.287,
- "end": 1043.417,
- "text": "that"
- },
- {
- "id": 3084,
- "start": 1043.417,
- "end": 1043.557,
- "text": "we"
- },
- {
- "id": 3085,
- "start": 1043.557,
- "end": 1043.697,
- "text": "can"
- },
- {
- "id": 3086,
- "start": 1043.697,
- "end": 1044.067,
- "text": "bring"
- },
- {
- "id": 3087,
- "start": 1043.942,
- "end": 1044.182,
- "text": "is"
- },
- {
- "id": 3088,
- "start": 1044.187,
- "end": 1044.297,
- "text": "our"
- },
- {
- "id": 3089,
- "start": 1044.297,
- "end": 1044.617,
- "text": "ability"
- },
- {
- "id": 3090,
- "start": 1044.617,
- "end": 1044.697,
- "text": "to"
- },
- {
- "id": 3091,
- "start": 1044.697,
- "end": 1045.097,
- "text": "understand"
- },
- {
- "id": 3092,
- "start": 1045.097,
- "end": 1045.237,
- "text": "what’s"
- },
- {
- "id": 3093,
- "start": 1045.237,
- "end": 1045.557,
- "text": "happening"
- },
- {
- "id": 3094,
- "start": 1045.557,
- "end": 1045.637,
- "text": "on"
- },
- {
- "id": 3095,
- "start": 1045.637,
- "end": 1045.707,
- "text": "our"
- },
- {
- "id": 3096,
- "start": 1045.707,
- "end": 1046.617,
- "text": "platform"
- },
- {
- "id": 3097,
- "start": 1046.617,
- "end": 1046.737,
- "text": "and"
- },
- {
- "id": 3098,
- "start": 1046.737,
- "end": 1046.837,
- "text": "to"
- },
- {
- "id": 3099,
- "start": 1046.837,
- "end": 1047.357,
- "text": "investigate"
- },
- {
- "id": 3100,
- "start": 1047.347,
- "end": 1047.547,
- "text": "bad"
- },
- {
- "id": 3101,
- "start": 1047.627,
- "end": 1047.772,
- "text": "behavior"
- },
- {
- "id": 3102,
- "start": 1047.907,
- "end": 1047.997,
- "text": "on"
- },
- {
- "id": 3103,
- "start": 1047.997,
- "end": 1048.077,
- "text": "the"
- },
- {
- "id": 3104,
- "start": 1048.077,
- "end": 1048.697,
- "text": "platform."
- },
- {
- "id": 3105,
- "start": 1048.697,
- "end": 1048.977,
- "text": "But"
- },
- {
- "id": 3106,
- "start": 1048.977,
- "end": 1049.467,
- "text": "government"
- },
- {
- "id": 3107,
- "start": 1049.467,
- "end": 1049.767,
- "text": "doesn’t"
- },
- {
- "id": 3108,
- "start": 1049.767,
- "end": 1049.967,
- "text": "have"
- },
- {
- "id": 3109,
- "start": 1049.967,
- "end": 1050.047,
- "text": "a"
- },
- {
- "id": 3110,
- "start": 1050.047,
- "end": 1050.367,
- "text": "view"
- },
- {
- "id": 3111,
- "start": 1050.367,
- "end": 1050.647,
- "text": "into"
- },
- {
- "id": 3112,
- "start": 1050.647,
- "end": 1051.157,
- "text": "what"
- },
- {
- "id": 3113,
- "start": 1051.157,
- "end": 1051.417,
- "text": "is"
- },
- {
- "id": 3114,
- "start": 1051.417,
- "end": 1051.947,
- "text": "happening"
- },
- {
- "id": 3115,
- "start": 1051.947,
- "end": 1052.077,
- "text": "on"
- },
- {
- "id": 3116,
- "start": 1052.077,
- "end": 1052.577,
- "text": "Facebook’s"
- },
- {
- "id": 3117,
- "start": 1052.577,
- "end": 1053.407,
- "text": "platform"
- },
- {
- "id": 3118,
- "start": 1053.407,
- "end": 1053.657,
- "text": "on"
- },
- {
- "id": 3119,
- "start": 1053.657,
- "end": 1054.087,
- "text": "American"
- },
- {
- "id": 3120,
- "start": 1054.087,
- "end": 1054.657,
- "text": "citizens"
- },
- {
- "id": 3121,
- "start": 1054.657,
- "end": 1054.887,
- "text": "right"
- },
- {
- "id": 3122,
- "start": 1054.887,
- "end": 1055.077,
- "text": "now,"
- },
- {
- "id": 3123,
- "start": 1055.077,
- "end": 1055.277,
- "text": "for"
- },
- {
- "id": 3124,
- "start": 1055.607,
- "end": 1055.9470000000001,
- "text": "instance."
- },
- {
- "id": 3125,
- "start": 1056.137,
- "end": 1056.617,
- "text": "Government"
- },
- {
- "id": 3126,
- "start": 1056.617,
- "end": 1056.787,
- "text": "has"
- },
- {
- "id": 3127,
- "start": 1056.787,
- "end": 1056.857,
- "text": "the"
- },
- {
- "id": 3128,
- "start": 1056.857,
- "end": 1057.057,
- "text": "view"
- },
- {
- "id": 3129,
- "start": 1057.057,
- "end": 1057.207,
- "text": "that"
- },
- {
- "id": 3130,
- "start": 1057.207,
- "end": 1057.377,
- "text": "any"
- },
- {
- "id": 3131,
- "start": 1057.377,
- "end": 1057.667,
- "text": "user"
- },
- {
- "id": 3132,
- "start": 1057.667,
- "end": 1057.727,
- "text": "of"
- },
- {
- "id": 3133,
- "start": 1057.732,
- "end": 1057.9569999999999,
- "text": "a"
- },
- {
- "id": 3134,
- "start": 1057.797,
- "end": 1058.187,
- "text": "platform"
- },
- {
- "id": 3135,
- "start": 1058.187,
- "end": 1058.297,
- "text": "would"
- },
- {
- "id": 3136,
- "start": 1058.297,
- "end": 1059.357,
- "text": "have,"
- },
- {
- "id": 3137,
- "start": 1059.357,
- "end": 1059.647,
- "text": "although"
- },
- {
- "id": 3138,
- "start": 1059.647,
- "end": 1059.747,
- "text": "of"
- },
- {
- "id": 3139,
- "start": 1059.747,
- "end": 1059.957,
- "text": "course"
- },
- {
- "id": 3140,
- "start": 1059.957,
- "end": 1060.117,
- "text": "law"
- },
- {
- "id": 3141,
- "start": 1060.267,
- "end": 1060.397,
- "text": "enforcement,"
- },
- {
- "id": 3142,
- "start": 1060.577,
- "end": 1060.677,
- "text": "when"
- },
- {
- "id": 3143,
- "start": 1060.677,
- "end": 1060.747,
- "text": "they"
- },
- {
- "id": 3144,
- "start": 1060.747,
- "end": 1061.057,
- "text": "provide"
- },
- {
- "id": 3145,
- "start": 1061.057,
- "end": 1061.187,
- "text": "us"
- },
- {
- "id": 3146,
- "start": 1061.187,
- "end": 1061.317,
- "text": "with"
- },
- {
- "id": 3147,
- "start": 1061.317,
- "end": 1061.567,
- "text": "lawful"
- },
- {
- "id": 3148,
- "start": 1061.567,
- "end": 1061.997,
- "text": "process,"
- },
- {
- "id": 3149,
- "start": 1061.997,
- "end": 1062.087,
- "text": "we"
- },
- {
- "id": 3150,
- "start": 1062.087,
- "end": 1062.527,
- "text": "respond"
- },
- {
- "id": 3151,
- "start": 1062.527,
- "end": 1062.617,
- "text": "and"
- },
- {
- "id": 3152,
- "start": 1062.617,
- "end": 1062.927,
- "text": "provide"
- },
- {
- "id": 3153,
- "start": 1062.777,
- "end": 1063.272,
- "text": "them"
- },
- {
- "id": 3154,
- "start": 1062.937,
- "end": 1063.617,
- "text": "information."
- },
- {
- "id": 3155,
- "start": 1063.617,
- "end": 1063.787,
- "text": "So"
- },
- {
- "id": 3156,
- "start": 1063.787,
- "end": 1063.897,
- "text": "we"
- },
- {
- "id": 3157,
- "start": 1063.897,
- "end": 1064.277,
- "text": "regularly"
- },
- {
- "id": 3158,
- "start": 1064.172,
- "end": 1064.4070000000002,
- "text": "work"
- },
- {
- "id": 3159,
- "start": 1064.447,
- "end": 1064.537,
- "text": "with"
- },
- {
- "id": 3160,
- "start": 1064.537,
- "end": 1064.647,
- "text": "law"
- },
- {
- "id": 3161,
- "start": 1064.647,
- "end": 1065.047,
- "text": "enforcement"
- },
- {
- "id": 3162,
- "start": 1065.047,
- "end": 1065.137,
- "text": "to"
- },
- {
- "id": 3163,
- "start": 1065.137,
- "end": 1065.507,
- "text": "enable"
- },
- {
- "id": 3164,
- "start": 1065.507,
- "end": 1065.657,
- "text": "them"
- },
- {
- "id": 3165,
- "start": 1065.657,
- "end": 1065.737,
- "text": "to"
- },
- {
- "id": 3166,
- "start": 1065.737,
- "end": 1066.037,
- "text": "conduct"
- },
- {
- "id": 3167,
- "start": 1066.037,
- "end": 1066.157,
- "text": "their"
- },
- {
- "id": 3168,
- "start": 1066.157,
- "end": 1067.257,
- "text": "investigations."
- },
- {
- "id": 3169,
- "start": 1067.257,
- "end": 1067.357,
- "text": "Are"
- },
- {
- "id": 3170,
- "start": 1067.357,
- "end": 1067.577,
- "text": "you"
- },
- {
- "id": 3171,
- "start": 1067.577,
- "end": 1067.877,
- "text": "getting"
- },
- {
- "id": 3172,
- "start": 1067.877,
- "end": 1068.247,
- "text": "tips"
- },
- {
- "id": 3173,
- "start": 1068.247,
- "end": 1068.447,
- "text": "from"
- },
- {
- "id": 3174,
- "start": 1068.447,
- "end": 1068.617,
- "text": "law"
- },
- {
- "id": 3175,
- "start": 1068.617,
- "end": 1069.297,
- "text": "enforcement,"
- },
- {
- "id": 3176,
- "start": 1069.297,
- "end": 1069.467,
- "text": "for"
- },
- {
- "id": 3177,
- "start": 1069.467,
- "end": 1069.847,
- "text": "instance,"
- },
- {
- "id": 3178,
- "start": 1069.847,
- "end": 1069.987,
- "text": "from"
- },
- {
- "id": 3179,
- "start": 1069.987,
- "end": 1070.087,
- "text": "the"
- },
- {
- "id": 3180,
- "start": 1070.087,
- "end": 1070.657,
- "text": "FBI"
- },
- {
- "id": 3181,
- "start": 1070.657,
- "end": 1071.497,
- "text": "about"
- },
- {
- "id": 3182,
- "start": 1071.497,
- "end": 1072.647,
- "text": "potential"
- },
- {
- "id": 3183,
- "start": 1072.647,
- "end": 1073.097,
- "text": "active"
- },
- {
- "id": 3184,
- "start": 1073.097,
- "end": 1073.757,
- "text": "operations"
- },
- {
- "id": 3185,
- "start": 1073.757,
- "end": 1073.877,
- "text": "that"
- },
- {
- "id": 3186,
- "start": 1073.877,
- "end": 1073.937,
- "text": "are"
- },
- {
- "id": 3187,
- "start": 1073.937,
- "end": 1074.517,
- "text": "playing"
- },
- {
- "id": 3188,
- "start": 1074.517,
- "end": 1074.647,
- "text": "out"
- },
- {
- "id": 3189,
- "start": 1074.647,
- "end": 1074.727,
- "text": "on"
- },
- {
- "id": 3190,
- "start": 1074.727,
- "end": 1074.837,
- "text": "your"
- },
- {
- "id": 3191,
- "start": 1074.837,
- "end": 1075.667,
- "text": "platform?"
- },
- {
- "id": 3192,
- "start": 1075.407,
- "end": 1076.067,
- "text": "Yes."
- },
- {
- "id": 3193,
- "start": 1076.157,
- "end": 1076.642,
- "text": "A"
- },
- {
- "id": 3194,
- "start": 1076.907,
- "end": 1077.217,
- "text": "really"
- },
- {
- "id": 3195,
- "start": 1077.217,
- "end": 1077.357,
- "text": "good"
- },
- {
- "id": 3196,
- "start": 1077.357,
- "end": 1077.827,
- "text": "example"
- },
- {
- "id": 3197,
- "start": 1077.827,
- "end": 1077.917,
- "text": "of"
- },
- {
- "id": 3198,
- "start": 1077.917,
- "end": 1078.527,
- "text": "this"
- },
- {
- "id": 3199,
- "start": 1078.527,
- "end": 1078.927,
- "text": "is"
- },
- {
- "id": 3200,
- "start": 1078.927,
- "end": 1079.027,
- "text": "the"
- },
- {
- "id": 3201,
- "start": 1079.027,
- "end": 1079.507,
- "text": "disruption"
- },
- {
- "id": 3202,
- "start": 1079.507,
- "end": 1079.627,
- "text": "we"
- },
- {
- "id": 3203,
- "start": 1079.627,
- "end": 1079.877,
- "text": "did"
- },
- {
- "id": 3204,
- "start": 1079.877,
- "end": 1079.987,
- "text": "in"
- },
- {
- "id": 3205,
- "start": 1079.987,
- "end": 1080.157,
- "text": "late"
- },
- {
- "id": 3206,
- "start": 1080.157,
- "end": 1080.697,
- "text": "July"
- },
- {
- "id": 3207,
- "start": 1080.697,
- "end": 1080.827,
- "text": "when"
- },
- {
- "id": 3208,
- "start": 1080.827,
- "end": 1080.917,
- "text": "we"
- },
- {
- "id": 3209,
- "start": 1080.917,
- "end": 1081.117,
- "text": "took"
- },
- {
- "id": 3210,
- "start": 1081.117,
- "end": 1081.577,
- "text": "down"
- },
- {
- "id": 3211,
- "start": 1081.632,
- "end": 1081.9070000000002,
- "text": "32"
- },
- {
- "id": 3212,
- "start": 1082.147,
- "end": 1082.237,
- "text": "or"
- },
- {
- "id": 3213,
- "start": 1082.237,
- "end": 1082.487,
- "text": "so"
- },
- {
- "id": 3214,
- "start": 1082.487,
- "end": 1083.287,
- "text": "assets"
- },
- {
- "id": 3215,
- "start": 1083.287,
- "end": 1083.427,
- "text": "that"
- },
- {
- "id": 3216,
- "start": 1083.427,
- "end": 1083.737,
- "text": "showed"
- },
- {
- "id": 3217,
- "start": 1083.737,
- "end": 1084.067,
- "text": "some"
- },
- {
- "id": 3218,
- "start": 1084.067,
- "end": 1084.747,
- "text": "links"
- },
- {
- "id": 3219,
- "start": 1084.747,
- "end": 1084.967,
- "text": "to"
- },
- {
- "id": 3220,
- "start": 1084.967,
- "end": 1086.287,
- "text": "Russia;"
- },
- {
- "id": 3221,
- "start": 1086.287,
- "end": 1086.607,
- "text": "that"
- },
- {
- "id": 3222,
- "start": 1086.607,
- "end": 1086.697,
- "text": "in"
- },
- {
- "id": 3223,
- "start": 1086.697,
- "end": 1086.877,
- "text": "that"
- },
- {
- "id": 3224,
- "start": 1086.877,
- "end": 1087.067,
- "text": "case"
- },
- {
- "id": 3225,
- "start": 1087.067,
- "end": 1087.147,
- "text": "we"
- },
- {
- "id": 3226,
- "start": 1087.147,
- "end": 1087.397,
- "text": "talked"
- },
- {
- "id": 3227,
- "start": 1087.397,
- "end": 1087.547,
- "text": "about"
- },
- {
- "id": 3228,
- "start": 1087.547,
- "end": 1087.807,
- "text": "where"
- },
- {
- "id": 3229,
- "start": 1087.807,
- "end": 1088.007,
- "text": "that"
- },
- {
- "id": 3230,
- "start": 1088.007,
- "end": 1088.237,
- "text": "came"
- },
- {
- "id": 3231,
- "start": 1088.237,
- "end": 1088.927,
- "text": "from,"
- },
- {
- "id": 3232,
- "start": 1088.927,
- "end": 1089.067,
- "text": "and"
- },
- {
- "id": 3233,
- "start": 1089.067,
- "end": 1089.127,
- "text": "it"
- },
- {
- "id": 3234,
- "start": 1089.127,
- "end": 1089.297,
- "text": "came"
- },
- {
- "id": 3235,
- "start": 1089.297,
- "end": 1089.607,
- "text": "from"
- },
- {
- "id": 3236,
- "start": 1089.417,
- "end": 1089.937,
- "text": "three"
- },
- {
- "id": 3237,
- "start": 1089.962,
- "end": 1090.4470000000001,
- "text": "sources."
- },
- {
- "id": 3238,
- "start": 1090.507,
- "end": 1090.957,
- "text": "One"
- },
- {
- "id": 3239,
- "start": 1090.957,
- "end": 1091.107,
- "text": "was"
- },
- {
- "id": 3240,
- "start": 1091.107,
- "end": 1091.347,
- "text": "our"
- },
- {
- "id": 3241,
- "start": 1091.347,
- "end": 1091.667,
- "text": "own"
- },
- {
- "id": 3242,
- "start": 1091.667,
- "end": 1092.157,
- "text": "analysis"
- },
- {
- "id": 3243,
- "start": 1092.157,
- "end": 1092.257,
- "text": "and"
- },
- {
- "id": 3244,
- "start": 1092.747,
- "end": 1093.092,
- "text": "investigation;"
- },
- {
- "id": 3245,
- "start": 1093.337,
- "end": 1093.927,
- "text": "second"
- },
- {
- "id": 3246,
- "start": 1093.927,
- "end": 1094.397,
- "text": "was"
- },
- {
- "id": 3247,
- "start": 1094.397,
- "end": 1094.987,
- "text": "support"
- },
- {
- "id": 3248,
- "start": 1094.987,
- "end": 1095.427,
- "text": "from"
- },
- {
- "id": 3249,
- "start": 1095.427,
- "end": 1095.887,
- "text": "outside"
- },
- {
- "id": 3250,
- "start": 1095.887,
- "end": 1096.587,
- "text": "researchers;"
- },
- {
- "id": 3251,
- "start": 1096.587,
- "end": 1096.847,
- "text": "and"
- },
- {
- "id": 3252,
- "start": 1096.847,
- "end": 1097.427,
- "text": "third"
- },
- {
- "id": 3253,
- "start": 1097.427,
- "end": 1098.007,
- "text": "was"
- },
- {
- "id": 3254,
- "start": 1098.007,
- "end": 1098.607,
- "text": "information"
- },
- {
- "id": 3255,
- "start": 1098.607,
- "end": 1098.967,
- "text": "from"
- },
- {
- "id": 3256,
- "start": 1098.967,
- "end": 1099.377,
- "text": "tips"
- },
- {
- "id": 3257,
- "start": 1099.377,
- "end": 1099.587,
- "text": "from"
- },
- {
- "id": 3258,
- "start": 1099.587,
- "end": 1099.707,
- "text": "law"
- },
- {
- "id": 3259,
- "start": 1100.1953333333333,
- "end": 1100.3470000000004,
- "text": "enforcement."
- },
- {
- "id": 3260,
- "start": 1100.8036666666667,
- "end": 1100.9870000000003,
- "text": "In"
- },
- {
- "id": 3261,
- "start": 1101.412,
- "end": 1101.6270000000002,
- "text": "a"
- },
- {
- "id": 3262,
- "start": 1102.0203333333334,
- "end": 1102.2670000000005,
- "text": "bigger-picture"
- },
- {
- "id": 3263,
- "start": 1102.6286666666667,
- "end": 1102.9070000000004,
- "text": "sense,"
- },
- {
- "id": 3264,
- "start": 1103.237,
- "end": 1103.547,
- "text": "isn’t"
- },
- {
- "id": 3265,
- "start": 1103.547,
- "end": 1104.237,
- "text": "there"
- },
- {
- "id": 3266,
- "start": 1104.237,
- "end": 1104.397,
- "text": "an"
- },
- {
- "id": 3267,
- "start": 1104.397,
- "end": 1104.847,
- "text": "aspect"
- },
- {
- "id": 3268,
- "start": 1104.847,
- "end": 1104.947,
- "text": "of"
- },
- {
- "id": 3269,
- "start": 1104.947,
- "end": 1105.167,
- "text": "this"
- },
- {
- "id": 3270,
- "start": 1105.167,
- "end": 1105.327,
- "text": "where"
- },
- {
- "id": 3271,
- "start": 1105.327,
- "end": 1105.477,
- "text": "we"
- },
- {
- "id": 3272,
- "start": 1105.477,
- "end": 1105.727,
- "text": "kind"
- },
- {
- "id": 3273,
- "start": 1105.727,
- "end": 1105.807,
- "text": "of"
- },
- {
- "id": 3274,
- "start": 1105.807,
- "end": 1106.077,
- "text": "just"
- },
- {
- "id": 3275,
- "start": 1106.077,
- "end": 1106.237,
- "text": "have"
- },
- {
- "id": 3276,
- "start": 1106.237,
- "end": 1106.357,
- "text": "to"
- },
- {
- "id": 3277,
- "start": 1106.357,
- "end": 1106.687,
- "text": "take"
- },
- {
- "id": 3278,
- "start": 1106.687,
- "end": 1107.237,
- "text": "Facebook’s"
- },
- {
- "id": 3279,
- "start": 1107.237,
- "end": 1107.587,
- "text": "word"
- },
- {
- "id": 3280,
- "start": 1107.587,
- "end": 1107.867,
- "text": "for"
- },
- {
- "id": 3281,
- "start": 1107.867,
- "end": 1108.837,
- "text": "it;"
- },
- {
- "id": 3282,
- "start": 1108.837,
- "end": 1108.967,
- "text": "if"
- },
- {
- "id": 3283,
- "start": 1108.967,
- "end": 1109.087,
- "text": "you"
- },
- {
- "id": 3284,
- "start": 1109.087,
- "end": 1109.377,
- "text": "take"
- },
- {
- "id": 3285,
- "start": 1109.377,
- "end": 1109.897,
- "text": "down"
- },
- {
- "id": 3286,
- "start": 1109.897,
- "end": 1110.157,
- "text": "X"
- },
- {
- "id": 3287,
- "start": 1110.157,
- "end": 1110.437,
- "text": "number"
- },
- {
- "id": 3288,
- "start": 1110.437,
- "end": 1110.517,
- "text": "of"
- },
- {
- "id": 3289,
- "start": 1110.517,
- "end": 1111.397,
- "text": "accounts,"
- },
- {
- "id": 3290,
- "start": 1111.397,
- "end": 1111.697,
- "text": "we"
- },
- {
- "id": 3291,
- "start": 1111.697,
- "end": 1111.877,
- "text": "have"
- },
- {
- "id": 3292,
- "start": 1111.877,
- "end": 1112.137,
- "text": "no"
- },
- {
- "id": 3293,
- "start": 1112.137,
- "end": 1112.557,
- "text": "idea"
- },
- {
- "id": 3294,
- "start": 1112.557,
- "end": 1112.717,
- "text": "how"
- },
- {
- "id": 3295,
- "start": 1112.717,
- "end": 1112.987,
- "text": "many"
- },
- {
- "id": 3296,
- "start": 1112.987,
- "end": 1113.247,
- "text": "other"
- },
- {
- "id": 3297,
- "start": 1113.247,
- "end": 1113.757,
- "text": "possible"
- },
- {
- "id": 3298,
- "start": 1113.757,
- "end": 1114.177,
- "text": "accounts"
- },
- {
- "id": 3299,
- "start": 1114.177,
- "end": 1114.367,
- "text": "there"
- },
- {
- "id": 3300,
- "start": 1114.422,
- "end": 1114.7769999999998,
- "text": "are,"
- },
- {
- "id": 3301,
- "start": 1114.667,
- "end": 1115.187,
- "text": "and"
- },
- {
- "id": 3302,
- "start": 1115.187,
- "end": 1115.477,
- "text": "you’re"
- },
- {
- "id": 3303,
- "start": 1115.477,
- "end": 1115.687,
- "text": "only"
- },
- {
- "id": 3304,
- "start": 1115.687,
- "end": 1115.957,
- "text": "doing"
- },
- {
- "id": 3305,
- "start": 1115.957,
- "end": 1116.067,
- "text": "as"
- },
- {
- "id": 3306,
- "start": 1116.067,
- "end": 1116.297,
- "text": "well"
- },
- {
- "id": 3307,
- "start": 1116.297,
- "end": 1116.427,
- "text": "as"
- },
- {
- "id": 3308,
- "start": 1116.427,
- "end": 1116.537,
- "text": "you"
- },
- {
- "id": 3309,
- "start": 1116.537,
- "end": 1116.807,
- "text": "say"
- },
- {
- "id": 3310,
- "start": 1116.807,
- "end": 1116.967,
- "text": "you’re"
- },
- {
- "id": 3311,
- "start": 1116.967,
- "end": 1117.447,
- "text": "doing,"
- },
- {
- "id": 3312,
- "start": 1117.5520000000001,
- "end": 1118.082,
- "text": "right?"
- },
- {
- "id": 3313,
- "start": 1118.137,
- "end": 1118.717,
- "text": "So"
- },
- {
- "id": 3314,
- "start": 1118.717,
- "end": 1118.947,
- "text": "there’s"
- },
- {
- "id": 3315,
- "start": 1118.947,
- "end": 1119.287,
- "text": "no"
- },
- {
- "id": 3316,
- "start": 1119.287,
- "end": 1119.707,
- "text": "way"
- },
- {
- "id": 3317,
- "start": 1119.707,
- "end": 1119.947,
- "text": "for"
- },
- {
- "id": 3318,
- "start": 1119.947,
- "end": 1120.177,
- "text": "us"
- },
- {
- "id": 3319,
- "start": 1120.177,
- "end": 1120.287,
- "text": "to"
- },
- {
- "id": 3320,
- "start": 1120.287,
- "end": 1121.367,
- "text": "audit"
- },
- {
- "id": 3321,
- "start": 1121.367,
- "end": 1121.687,
- "text": "how"
- },
- {
- "id": 3322,
- "start": 1121.687,
- "end": 1121.917,
- "text": "well"
- },
- {
- "id": 3323,
- "start": 1121.917,
- "end": 1122.077,
- "text": "you’re"
- },
- {
- "id": 3324,
- "start": 1122.367,
- "end": 1122.5836666666667,
- "text": "doing"
- },
- {
- "id": 3325,
- "start": 1122.817,
- "end": 1123.0903333333333,
- "text": "or"
- },
- {
- "id": 3326,
- "start": 1123.267,
- "end": 1123.597,
- "text": "how"
- },
- {
- "id": 3327,
- "start": 1123.597,
- "end": 1123.967,
- "text": "well"
- },
- {
- "id": 3328,
- "start": 1123.967,
- "end": 1124.297,
- "text": "you’re"
- },
- {
- "id": 3329,
- "start": 1124.297,
- "end": 1124.537,
- "text": "not"
- },
- {
- "id": 3330,
- "start": 1124.9319999999998,
- "end": 1125.202,
- "text": "doing."
- },
- {
- "id": 3331,
- "start": 1125.567,
- "end": 1125.867,
- "text": "Doesn’t"
- },
- {
- "id": 3332,
- "start": 1125.867,
- "end": 1126.037,
- "text": "that"
- },
- {
- "id": 3333,
- "start": 1126.037,
- "end": 1126.207,
- "text": "put"
- },
- {
- "id": 3334,
- "start": 1126.207,
- "end": 1126.317,
- "text": "the"
- },
- {
- "id": 3335,
- "start": 1126.317,
- "end": 1126.887,
- "text": "public"
- },
- {
- "id": 3336,
- "start": 1126.887,
- "end": 1127.087,
- "text": "in"
- },
- {
- "id": 3337,
- "start": 1127.087,
- "end": 1127.227,
- "text": "an"
- },
- {
- "id": 3338,
- "start": 1127.227,
- "end": 1127.507,
- "text": "odd"
- },
- {
- "id": 3339,
- "start": 1127.507,
- "end": 1127.967,
- "text": "position"
- },
- {
- "id": 3340,
- "start": 1127.967,
- "end": 1128.087,
- "text": "to"
- },
- {
- "id": 3341,
- "start": 1128.087,
- "end": 1128.347,
- "text": "just"
- },
- {
- "id": 3342,
- "start": 1128.347,
- "end": 1128.487,
- "text": "have"
- },
- {
- "id": 3343,
- "start": 1128.487,
- "end": 1128.587,
- "text": "to"
- },
- {
- "id": 3344,
- "start": 1128.587,
- "end": 1128.787,
- "text": "kind"
- },
- {
- "id": 3345,
- "start": 1128.787,
- "end": 1129.277,
- "text": "of"
- },
- {
- "id": 3346,
- "start": 1129.277,
- "end": 1129.547,
- "text": "take"
- },
- {
- "id": 3347,
- "start": 1129.547,
- "end": 1129.677,
- "text": "your"
- },
- {
- "id": 3348,
- "start": 1129.677,
- "end": 1129.947,
- "text": "word"
- },
- {
- "id": 3349,
- "start": 1129.947,
- "end": 1130.177,
- "text": "for"
- },
- {
- "id": 3350,
- "start": 1130.177,
- "end": 1130.867,
- "text": "it?"
- },
- {
- "id": 3351,
- "start": 1130.867,
- "end": 1131.637,
- "text": "Transparency"
- },
- {
- "id": 3352,
- "start": 1131.637,
- "end": 1131.737,
- "text": "and"
- },
- {
- "id": 3353,
- "start": 1131.737,
- "end": 1132.217,
- "text": "understanding"
- },
- {
- "id": 3354,
- "start": 1132.217,
- "end": 1132.347,
- "text": "this"
- },
- {
- "id": 3355,
- "start": 1132.347,
- "end": 1132.687,
- "text": "stuff,"
- },
- {
- "id": 3356,
- "start": 1132.687,
- "end": 1132.817,
- "text": "which"
- },
- {
- "id": 3357,
- "start": 1132.817,
- "end": 1132.927,
- "text": "is"
- },
- {
- "id": 3358,
- "start": 1132.927,
- "end": 1132.967,
- "text": "I"
- },
- {
- "id": 3359,
- "start": 1132.967,
- "end": 1133.147,
- "text": "think"
- },
- {
- "id": 3360,
- "start": 1133.147,
- "end": 1133.237,
- "text": "what"
- },
- {
- "id": 3361,
- "start": 1133.237,
- "end": 1133.357,
- "text": "you’re"
- },
- {
- "id": 3362,
- "start": 1133.357,
- "end": 1133.727,
- "text": "focused"
- },
- {
- "id": 3363,
- "start": 1133.727,
- "end": 1133.897,
- "text": "on,"
- },
- {
- "id": 3364,
- "start": 1133.897,
- "end": 1134.057,
- "text": "is"
- },
- {
- "id": 3365,
- "start": 1134.057,
- "end": 1134.407,
- "text": "really"
- },
- {
- "id": 3366,
- "start": 1134.407,
- "end": 1134.957,
- "text": "important,"
- },
- {
- "id": 3367,
- "start": 1134.957,
- "end": 1135.647,
- "text": "understanding"
- },
- {
- "id": 3368,
- "start": 1135.647,
- "end": 1135.747,
- "text": "the"
- },
- {
- "id": 3369,
- "start": 1135.747,
- "end": 1136.017,
- "text": "type"
- },
- {
- "id": 3370,
- "start": 1136.017,
- "end": 1136.097,
- "text": "of"
- },
- {
- "id": 3371,
- "start": 1136.097,
- "end": 1136.327,
- "text": "bad"
- },
- {
- "id": 3372,
- "start": 1136.502,
- "end": 1136.672,
- "text": "behavior"
- },
- {
- "id": 3373,
- "start": 1136.907,
- "end": 1137.017,
- "text": "and"
- },
- {
- "id": 3374,
- "start": 1137.017,
- "end": 1137.347,
- "text": "how"
- },
- {
- "id": 3375,
- "start": 1137.347,
- "end": 1137.497,
- "text": "it’s"
- },
- {
- "id": 3376,
- "start": 1137.497,
- "end": 1137.737,
- "text": "being"
- },
- {
- "id": 3377,
- "start": 1137.737,
- "end": 1138.067,
- "text": "acted"
- },
- {
- "id": 3378,
- "start": 1138.287,
- "end": 1138.5420000000001,
- "text": "against."
- },
- {
- "id": 3379,
- "start": 1138.837,
- "end": 1139.017,
- "text": "Part"
- },
- {
- "id": 3380,
- "start": 1139.017,
- "end": 1139.067,
- "text": "of"
- },
- {
- "id": 3381,
- "start": 1139.067,
- "end": 1139.157,
- "text": "what"
- },
- {
- "id": 3382,
- "start": 1139.157,
- "end": 1139.247,
- "text": "we’re"
- },
- {
- "id": 3383,
- "start": 1139.247,
- "end": 1139.467,
- "text": "trying"
- },
- {
- "id": 3384,
- "start": 1139.467,
- "end": 1139.547,
- "text": "to"
- },
- {
- "id": 3385,
- "start": 1139.602,
- "end": 1139.962,
- "text": "do"
- },
- {
- "id": 3386,
- "start": 1139.737,
- "end": 1140.377,
- "text": "there"
- },
- {
- "id": 3387,
- "start": 1140.087,
- "end": 1140.517,
- "text": "is"
- },
- {
- "id": 3388,
- "start": 1140.357,
- "end": 1140.6770000000001,
- "text": "to"
- },
- {
- "id": 3389,
- "start": 1140.627,
- "end": 1140.837,
- "text": "work"
- },
- {
- "id": 3390,
- "start": 1140.837,
- "end": 1141.067,
- "text": "more"
- },
- {
- "id": 3391,
- "start": 1141.067,
- "end": 1141.157,
- "text": "with"
- },
- {
- "id": 3392,
- "start": 1141.157,
- "end": 1141.217,
- "text": "the"
- },
- {
- "id": 3393,
- "start": 1141.570333333333,
- "end": 1141.857,
- "text": "cybersecurity"
- },
- {
- "id": 3394,
- "start": 1141.9836666666665,
- "end": 1142.4969999999998,
- "text": "community,"
- },
- {
- "id": 3395,
- "start": 1142.397,
- "end": 1143.137,
- "text": "so"
- },
- {
- "id": 3396,
- "start": 1143.137,
- "end": 1143.407,
- "text": "we’ve"
- },
- {
- "id": 3397,
- "start": 1143.407,
- "end": 1143.667,
- "text": "worked"
- },
- {
- "id": 3398,
- "start": 1143.667,
- "end": 1144.057,
- "text": "recently"
- },
- {
- "id": 3399,
- "start": 1144.057,
- "end": 1144.247,
- "text": "with"
- },
- {
- "id": 3400,
- "start": 1144.237,
- "end": 1144.447,
- "text": "both"
- },
- {
- "id": 3401,
- "start": 1144.792,
- "end": 1144.9869999999999,
- "text": "FireEye,"
- },
- {
- "id": 3402,
- "start": 1145.347,
- "end": 1145.527,
- "text": "but"
- },
- {
- "id": 3403,
- "start": 1145.527,
- "end": 1145.877,
- "text": "before"
- },
- {
- "id": 3404,
- "start": 1145.877,
- "end": 1146.017,
- "text": "that"
- },
- {
- "id": 3405,
- "start": 1146.017,
- "end": 1146.117,
- "text": "with"
- },
- {
- "id": 3406,
- "start": 1146.117,
- "end": 1146.187,
- "text": "the"
- },
- {
- "id": 3407,
- "start": 1146.187,
- "end": 1146.507,
- "text": "Atlantic"
- },
- {
- "id": 3408,
- "start": 1146.507,
- "end": 1147.167,
- "text": "Council,"
- },
- {
- "id": 3409,
- "start": 1147.167,
- "end": 1147.337,
- "text": "and"
- },
- {
- "id": 3410,
- "start": 1147.337,
- "end": 1147.477,
- "text": "the"
- },
- {
- "id": 3411,
- "start": 1147.477,
- "end": 1147.877,
- "text": "goal"
- },
- {
- "id": 3412,
- "start": 1147.877,
- "end": 1147.967,
- "text": "of"
- },
- {
- "id": 3413,
- "start": 1147.967,
- "end": 1148.167,
- "text": "those"
- },
- {
- "id": 3414,
- "start": 1148.167,
- "end": 1149.067,
- "text": "relationships"
- },
- {
- "id": 3415,
- "start": 1149.067,
- "end": 1149.237,
- "text": "is"
- },
- {
- "id": 3416,
- "start": 1149.237,
- "end": 1149.407,
- "text": "that"
- },
- {
- "id": 3417,
- "start": 1149.407,
- "end": 1149.867,
- "text": "those"
- },
- {
- "id": 3418,
- "start": 1149.867,
- "end": 1150.347,
- "text": "experts"
- },
- {
- "id": 3419,
- "start": 1150.347,
- "end": 1150.457,
- "text": "who"
- },
- {
- "id": 3420,
- "start": 1150.457,
- "end": 1150.607,
- "text": "are"
- },
- {
- "id": 3421,
- "start": 1150.607,
- "end": 1150.967,
- "text": "outside"
- },
- {
- "id": 3422,
- "start": 1150.967,
- "end": 1151.637,
- "text": "Facebook"
- },
- {
- "id": 3423,
- "start": 1151.637,
- "end": 1151.847,
- "text": "can"
- },
- {
- "id": 3424,
- "start": 1151.847,
- "end": 1152.267,
- "text": "conduct"
- },
- {
- "id": 3425,
- "start": 1152.267,
- "end": 1152.447,
- "text": "their"
- },
- {
- "id": 3426,
- "start": 1152.447,
- "end": 1152.557,
- "text": "own"
- },
- {
- "id": 3427,
- "start": 1152.557,
- "end": 1153.617,
- "text": "analysis"
- },
- {
- "id": 3428,
- "start": 1153.617,
- "end": 1154.087,
- "text": "of"
- },
- {
- "id": 3429,
- "start": 1154.087,
- "end": 1154.167,
- "text": "the"
- },
- {
- "id": 3430,
- "start": 1154.167,
- "end": 1154.887,
- "text": "content"
- },
- {
- "id": 3431,
- "start": 1154.887,
- "end": 1155.077,
- "text": "and"
- },
- {
- "id": 3432,
- "start": 1155.077,
- "end": 1155.257,
- "text": "of"
- },
- {
- "id": 3433,
- "start": 1155.257,
- "end": 1155.397,
- "text": "the"
- },
- {
- "id": 3434,
- "start": 1155.397,
- "end": 1155.887,
- "text": "activity"
- },
- {
- "id": 3435,
- "start": 1155.887,
- "end": 1156.167,
- "text": "that"
- },
- {
- "id": 3436,
- "start": 1156.167,
- "end": 1156.397,
- "text": "we’ve"
- },
- {
- "id": 3437,
- "start": 1156.397,
- "end": 1156.947,
- "text": "identified"
- },
- {
- "id": 3438,
- "start": 1156.947,
- "end": 1157.077,
- "text": "and"
- },
- {
- "id": 3439,
- "start": 1157.077,
- "end": 1157.197,
- "text": "that"
- },
- {
- "id": 3440,
- "start": 1157.257,
- "end": 1157.677,
- "text": "they’ve"
- },
- {
- "id": 3441,
- "start": 1157.437,
- "end": 1158.157,
- "text": "identified,"
- },
- {
- "id": 3442,
- "start": 1158.157,
- "end": 1158.377,
- "text": "and"
- },
- {
- "id": 3443,
- "start": 1158.377,
- "end": 1158.587,
- "text": "help"
- },
- {
- "id": 3444,
- "start": 1158.587,
- "end": 1158.657,
- "text": "the"
- },
- {
- "id": 3445,
- "start": 1158.657,
- "end": 1158.967,
- "text": "public"
- },
- {
- "id": 3446,
- "start": 1158.967,
- "end": 1159.457,
- "text": "understand"
- },
- {
- "id": 3447,
- "start": 1159.457,
- "end": 1159.627,
- "text": "more"
- },
- {
- "id": 3448,
- "start": 1159.627,
- "end": 1159.787,
- "text": "what"
- },
- {
- "id": 3449,
- "start": 1159.787,
- "end": 1159.927,
- "text": "is"
- },
- {
- "id": 3450,
- "start": 1159.927,
- "end": 1160.177,
- "text": "going"
- },
- {
- "id": 3451,
- "start": 1160.177,
- "end": 1160.287,
- "text": "on."
- },
- {
- "id": 3452,
- "start": 1160.287,
- "end": 1160.387,
- "text": "So"
- },
- {
- "id": 3453,
- "start": 1160.387,
- "end": 1160.477,
- "text": "if"
- },
- {
- "id": 3454,
- "start": 1160.477,
- "end": 1160.577,
- "text": "you"
- },
- {
- "id": 3455,
- "start": 1160.577,
- "end": 1161.037,
- "text": "look,"
- },
- {
- "id": 3456,
- "start": 1160.977,
- "end": 1161.247,
- "text": "…"
- },
- {
- "id": 3457,
- "start": 1161.377,
- "end": 1161.457,
- "text": "the"
- },
- {
- "id": 3458,
- "start": 1161.457,
- "end": 1161.807,
- "text": "Atlantic"
- },
- {
- "id": 3459,
- "start": 1161.807,
- "end": 1162.097,
- "text": "Council"
- },
- {
- "id": 3460,
- "start": 1162.097,
- "end": 1162.517,
- "text": "provided"
- },
- {
- "id": 3461,
- "start": 1162.517,
- "end": 1162.577,
- "text": "a"
- },
- {
- "id": 3462,
- "start": 1162.577,
- "end": 1162.807,
- "text": "pretty"
- },
- {
- "id": 3463,
- "start": 1162.807,
- "end": 1163.187,
- "text": "detailed"
- },
- {
- "id": 3464,
- "start": 1163.187,
- "end": 1163.647,
- "text": "analysis"
- },
- {
- "id": 3465,
- "start": 1163.647,
- "end": 1163.737,
- "text": "of"
- },
- {
- "id": 3466,
- "start": 1163.737,
- "end": 1163.827,
- "text": "the"
- },
- {
- "id": 3467,
- "start": 1163.827,
- "end": 1164.207,
- "text": "takedown"
- },
- {
- "id": 3468,
- "start": 1164.207,
- "end": 1164.347,
- "text": "from"
- },
- {
- "id": 3469,
- "start": 1164.347,
- "end": 1164.957,
- "text": "July,"
- },
- {
- "id": 3470,
- "start": 1164.827,
- "end": 1165.197,
- "text": "and"
- },
- {
- "id": 3471,
- "start": 1165.2820000000002,
- "end": 1165.6819999999998,
- "text": "FireEye"
- },
- {
- "id": 3472,
- "start": 1165.737,
- "end": 1166.167,
- "text": "provided"
- },
- {
- "id": 3473,
- "start": 1166.167,
- "end": 1166.367,
- "text": "their"
- },
- {
- "id": 3474,
- "start": 1166.367,
- "end": 1166.597,
- "text": "own"
- },
- {
- "id": 3475,
- "start": 1166.597,
- "end": 1166.957,
- "text": "detailed"
- },
- {
- "id": 3476,
- "start": 1166.957,
- "end": 1167.477,
- "text": "analysis"
- },
- {
- "id": 3477,
- "start": 1167.477,
- "end": 1167.647,
- "text": "of"
- },
- {
- "id": 3478,
- "start": 1167.647,
- "end": 1167.717,
- "text": "the"
- },
- {
- "id": 3479,
- "start": 1167.717,
- "end": 1167.907,
- "text": "more"
- },
- {
- "id": 3480,
- "start": 1167.907,
- "end": 1168.227,
- "text": "recent"
- },
- {
- "id": 3481,
- "start": 1168.227,
- "end": 1169.137,
- "text": "takedown."
- },
- {
- "id": 3482,
- "start": 1168.677,
- "end": 1169.497,
- "text": "Wasn’t"
- },
- {
- "id": 3483,
- "start": 1169.1419999999998,
- "end": 1169.612,
- "text": "it"
- },
- {
- "id": 3484,
- "start": 1169.607,
- "end": 1169.727,
- "text": "the"
- },
- {
- "id": 3485,
- "start": 1169.727,
- "end": 1170.037,
- "text": "Atlantic"
- },
- {
- "id": 3486,
- "start": 1170.037,
- "end": 1170.367,
- "text": "Council"
- },
- {
- "id": 3487,
- "start": 1170.367,
- "end": 1170.497,
- "text": "that"
- },
- {
- "id": 3488,
- "start": 1170.497,
- "end": 1170.777,
- "text": "actually"
- },
- {
- "id": 3489,
- "start": 1170.777,
- "end": 1171.177,
- "text": "found"
- },
- {
- "id": 3490,
- "start": 1171.177,
- "end": 1171.427,
- "text": "those"
- },
- {
- "id": 3491,
- "start": 1172.2469999999994,
- "end": 1172.4170000000004,
- "text": "accounts?"
- },
- {
- "id": 3492,
- "start": 1173.317,
- "end": 1173.407,
- "text": "I"
- },
- {
- "id": 3493,
- "start": 1173.407,
- "end": 1173.687,
- "text": "think"
- },
- {
- "id": 3494,
- "start": 1173.687,
- "end": 1173.777,
- "text": "you’re"
- },
- {
- "id": 3495,
- "start": 1173.777,
- "end": 1174.067,
- "text": "talking"
- },
- {
- "id": 3496,
- "start": 1174.067,
- "end": 1174.297,
- "text": "about"
- },
- {
- "id": 3497,
- "start": 1174.6620000000003,
- "end": 1174.9320000000002,
- "text": "FireEye,"
- },
- {
- "id": 3498,
- "start": 1175.257,
- "end": 1175.567,
- "text": "which"
- },
- {
- "id": 3499,
- "start": 1175.567,
- "end": 1175.887,
- "text": "found"
- },
- {
- "id": 3500,
- "start": 1175.887,
- "end": 1176.157,
- "text": "some"
- },
- {
- "id": 3501,
- "start": 1176.157,
- "end": 1176.247,
- "text": "of"
- },
- {
- "id": 3502,
- "start": 1176.247,
- "end": 1176.337,
- "text": "the"
- },
- {
- "id": 3503,
- "start": 1176.337,
- "end": 1177.657,
- "text": "accounts."
- },
- {
- "id": 3504,
- "start": 1177.657,
- "end": 1178.047,
- "text": "In"
- },
- {
- "id": 3505,
- "start": 1178.047,
- "end": 1178.357,
- "text": "the"
- },
- {
- "id": 3506,
- "start": 1178.357,
- "end": 1178.837,
- "text": "takedown"
- },
- {
- "id": 3507,
- "start": 1178.837,
- "end": 1178.937,
- "text": "in"
- },
- {
- "id": 3508,
- "start": 1178.937,
- "end": 1179.407,
- "text": "July,"
- },
- {
- "id": 3509,
- "start": 1179.407,
- "end": 1179.557,
- "text": "which"
- },
- {
- "id": 3510,
- "start": 1179.557,
- "end": 1179.807,
- "text": "involved"
- },
- {
- "id": 3511,
- "start": 1179.807,
- "end": 1179.977,
- "text": "both"
- },
- {
- "id": 3512,
- "start": 1179.977,
- "end": 1180.887,
- "text": "Iran"
- },
- {
- "id": 3513,
- "start": 1180.887,
- "end": 1181.217,
- "text": "and"
- },
- {
- "id": 3514,
- "start": 1181.217,
- "end": 1182.657,
- "text": "Russia,"
- },
- {
- "id": 3515,
- "start": 1182.657,
- "end": 1182.797,
- "text": "there"
- },
- {
- "id": 3516,
- "start": 1182.797,
- "end": 1182.997,
- "text": "were"
- },
- {
- "id": 3517,
- "start": 1182.997,
- "end": 1183.407,
- "text": "four"
- },
- {
- "id": 3518,
- "start": 1183.407,
- "end": 1183.857,
- "text": "separate"
- },
- {
- "id": 3519,
- "start": 1184.1119999999999,
- "end": 1184.5369999999998,
- "text": "investigations."
- },
- {
- "id": 3520,
- "start": 1184.817,
- "end": 1185.217,
- "text": "One"
- },
- {
- "id": 3521,
- "start": 1185.217,
- "end": 1185.327,
- "text": "of"
- },
- {
- "id": 3522,
- "start": 1185.327,
- "end": 1185.707,
- "text": "them"
- },
- {
- "id": 3523,
- "start": 1185.707,
- "end": 1186.147,
- "text": "was"
- },
- {
- "id": 3524,
- "start": 1186.147,
- "end": 1186.327,
- "text": "a"
- },
- {
- "id": 3525,
- "start": 1186.317,
- "end": 1186.717,
- "text": "tip,"
- },
- {
- "id": 3526,
- "start": 1186.747,
- "end": 1187.012,
- "text": "[came]"
- },
- {
- "id": 3527,
- "start": 1187.177,
- "end": 1187.307,
- "text": "from"
- },
- {
- "id": 3528,
- "start": 1187.307,
- "end": 1187.367,
- "text": "a"
- },
- {
- "id": 3529,
- "start": 1187.367,
- "end": 1188.197,
- "text": "tip"
- },
- {
- "id": 3530,
- "start": 1188.197,
- "end": 1188.607,
- "text": "that"
- },
- {
- "id": 3531,
- "start": 1188.607,
- "end": 1188.767,
- "text": "was"
- },
- {
- "id": 3532,
- "start": 1188.767,
- "end": 1189.117,
- "text": "provided"
- },
- {
- "id": 3533,
- "start": 1189.117,
- "end": 1189.177,
- "text": "to"
- },
- {
- "id": 3534,
- "start": 1189.177,
- "end": 1189.267,
- "text": "us"
- },
- {
- "id": 3535,
- "start": 1189.267,
- "end": 1189.367,
- "text": "by"
- },
- {
- "id": 3536,
- "start": 1189.887,
- "end": 1190.052,
- "text": "FireEye."
- },
- {
- "id": 3537,
- "start": 1190.507,
- "end": 1190.737,
- "text": "The"
- },
- {
- "id": 3538,
- "start": 1190.737,
- "end": 1191.067,
- "text": "other"
- },
- {
- "id": 3539,
- "start": 1191.067,
- "end": 1191.397,
- "text": "two"
- },
- {
- "id": 3540,
- "start": 1191.397,
- "end": 1192.027,
- "text": "investigations"
- },
- {
- "id": 3541,
- "start": 1192.027,
- "end": 1192.227,
- "text": "into"
- },
- {
- "id": 3542,
- "start": 1192.227,
- "end": 1192.937,
- "text": "Iran"
- },
- {
- "id": 3543,
- "start": 1192.937,
- "end": 1193.047,
- "text": "were"
- },
- {
- "id": 3544,
- "start": 1193.047,
- "end": 1193.117,
- "text": "the"
- },
- {
- "id": 3545,
- "start": 1193.117,
- "end": 1193.367,
- "text": "result"
- },
- {
- "id": 3546,
- "start": 1193.367,
- "end": 1193.437,
- "text": "of"
- },
- {
- "id": 3547,
- "start": 1193.437,
- "end": 1193.567,
- "text": "our"
- },
- {
- "id": 3548,
- "start": 1193.567,
- "end": 1193.687,
- "text": "own"
- },
- {
- "id": 3549,
- "start": 1193.687,
- "end": 1194.047,
- "text": "internal"
- },
- {
- "id": 3550,
- "start": 1194.047,
- "end": 1195.037,
- "text": "investigations,"
- },
- {
- "id": 3551,
- "start": 1195.037,
- "end": 1195.517,
- "text": "and"
- },
- {
- "id": 3552,
- "start": 1195.517,
- "end": 1195.617,
- "text": "the"
- },
- {
- "id": 3553,
- "start": 1195.617,
- "end": 1195.907,
- "text": "Russia"
- },
- {
- "id": 3554,
- "start": 1195.907,
- "end": 1196.057,
- "text": "one"
- },
- {
- "id": 3555,
- "start": 1196.057,
- "end": 1196.487,
- "text": "similarly"
- },
- {
- "id": 3556,
- "start": 1196.487,
- "end": 1196.597,
- "text": "was"
- },
- {
- "id": 3557,
- "start": 1196.557,
- "end": 1196.7269999999999,
- "text": "the"
- },
- {
- "id": 3558,
- "start": 1196.627,
- "end": 1196.857,
- "text": "result"
- },
- {
- "id": 3559,
- "start": 1196.857,
- "end": 1196.937,
- "text": "of"
- },
- {
- "id": 3560,
- "start": 1196.937,
- "end": 1197.057,
- "text": "our"
- },
- {
- "id": 3561,
- "start": 1197.057,
- "end": 1197.147,
- "text": "own"
- },
- {
- "id": 3562,
- "start": 1197.147,
- "end": 1197.477,
- "text": "internal"
- },
- {
- "id": 3563,
- "start": 1197.477,
- "end": 1198.057,
- "text": "investigations"
- },
- {
- "id": 3564,
- "start": 1198.057,
- "end": 1198.177,
- "text": "and"
- },
- {
- "id": 3565,
- "start": 1198.2069999999999,
- "end": 1198.3220000000001,
- "text": "work"
- },
- {
- "id": 3566,
- "start": 1198.357,
- "end": 1198.467,
- "text": "with"
- },
- {
- "id": 3567,
- "start": 1198.467,
- "end": 1198.617,
- "text": "law"
- },
- {
- "id": 3568,
- "start": 1198.617,
- "end": 1199.077,
- "text": "enforcement."
- },
- {
- "id": 3569,
- "start": 1199.392,
- "end": 1199.767,
- "text": "…"
- },
- {
- "id": 3570,
- "start": 1200.167,
- "end": 1200.457,
- "text": "One"
- },
- {
- "id": 3571,
- "start": 1200.457,
- "end": 1200.567,
- "text": "of"
- },
- {
- "id": 3572,
- "start": 1200.567,
- "end": 1201.277,
- "text": "the"
- },
- {
- "id": 3573,
- "start": 1201.277,
- "end": 1202.377,
- "text": "interesting"
- },
- {
- "id": 3574,
- "start": 1202.377,
- "end": 1202.987,
- "text": "ironies"
- },
- {
- "id": 3575,
- "start": 1202.987,
- "end": 1203.327,
- "text": "here"
- },
- {
- "id": 3576,
- "start": 1203.327,
- "end": 1203.527,
- "text": "is"
- },
- {
- "id": 3577,
- "start": 1203.527,
- "end": 1205.378,
- "text": "that"
- },
- {
- "id": 3578,
- "start": 1205.378,
- "end": 1205.568,
- "text": "in"
- },
- {
- "id": 3579,
- "start": 1205.568,
- "end": 1205.798,
- "text": "order"
- },
- {
- "id": 3580,
- "start": 1205.798,
- "end": 1205.888,
- "text": "to"
- },
- {
- "id": 3581,
- "start": 1205.888,
- "end": 1206.278,
- "text": "find"
- },
- {
- "id": 3582,
- "start": 1206.278,
- "end": 1206.558,
- "text": "bad"
- },
- {
- "id": 3583,
- "start": 1206.558,
- "end": 1207.648,
- "text": "actors"
- },
- {
- "id": 3584,
- "start": 1207.648,
- "end": 1208.288,
- "text": "on"
- },
- {
- "id": 3585,
- "start": 1208.288,
- "end": 1208.418,
- "text": "the"
- },
- {
- "id": 3586,
- "start": 1208.418,
- "end": 1209.428,
- "text": "platform,"
- },
- {
- "id": 3587,
- "start": 1209.428,
- "end": 1209.678,
- "text": "are"
- },
- {
- "id": 3588,
- "start": 1209.678,
- "end": 1209.888,
- "text": "you"
- },
- {
- "id": 3589,
- "start": 1209.888,
- "end": 1210.188,
- "text": "having"
- },
- {
- "id": 3590,
- "start": 1210.188,
- "end": 1210.298,
- "text": "to"
- },
- {
- "id": 3591,
- "start": 1210.298,
- "end": 1210.498,
- "text": "do"
- },
- {
- "id": 3592,
- "start": 1210.498,
- "end": 1210.808,
- "text": "more"
- },
- {
- "id": 3593,
- "start": 1210.808,
- "end": 1211.748,
- "text": "surveillance"
- },
- {
- "id": 3594,
- "start": 1211.748,
- "end": 1212.098,
- "text": "of"
- },
- {
- "id": 3595,
- "start": 1212.098,
- "end": 1212.818,
- "text": "Facebook"
- },
- {
- "id": 3596,
- "start": 1212.818,
- "end": 1213.278,
- "text": "users"
- },
- {
- "id": 3597,
- "start": 1213.278,
- "end": 1213.448,
- "text": "more"
- },
- {
- "id": 3598,
- "start": 1213.448,
- "end": 1214.828,
- "text": "generally?"
- },
- {
- "id": 3599,
- "start": 1214.828,
- "end": 1214.908,
- "text": "I"
- },
- {
- "id": 3600,
- "start": 1214.908,
- "end": 1215.088,
- "text": "think"
- },
- {
- "id": 3601,
- "start": 1215.088,
- "end": 1215.388,
- "text": "one"
- },
- {
- "id": 3602,
- "start": 1215.388,
- "end": 1215.448,
- "text": "of"
- },
- {
- "id": 3603,
- "start": 1215.448,
- "end": 1215.518,
- "text": "the"
- },
- {
- "id": 3604,
- "start": 1215.518,
- "end": 1215.928,
- "text": "important"
- },
- {
- "id": 3605,
- "start": 1215.9479999999999,
- "end": 1216.218,
- "text": "things—and"
- },
- {
- "id": 3606,
- "start": 1216.378,
- "end": 1216.508,
- "text": "this"
- },
- {
- "id": 3607,
- "start": 1216.508,
- "end": 1216.718,
- "text": "gets"
- },
- {
- "id": 3608,
- "start": 1216.718,
- "end": 1216.788,
- "text": "to"
- },
- {
- "id": 3609,
- "start": 1216.788,
- "end": 1216.888,
- "text": "your"
- },
- {
- "id": 3610,
- "start": 1217.213,
- "end": 1217.293,
- "text": "point—there’s"
- },
- {
- "id": 3611,
- "start": 1217.638,
- "end": 1217.698,
- "text": "a"
- },
- {
- "id": 3612,
- "start": 1217.698,
- "end": 1217.938,
- "text": "lot"
- },
- {
- "id": 3613,
- "start": 1217.938,
- "end": 1218.008,
- "text": "of"
- },
- {
- "id": 3614,
- "start": 1218.008,
- "end": 1218.338,
- "text": "focus"
- },
- {
- "id": 3615,
- "start": 1218.338,
- "end": 1218.458,
- "text": "on"
- },
- {
- "id": 3616,
- "start": 1218.458,
- "end": 1218.528,
- "text": "the"
- },
- {
- "id": 3617,
- "start": 1218.528,
- "end": 1218.888,
- "text": "nature"
- },
- {
- "id": 3618,
- "start": 1218.888,
- "end": 1218.978,
- "text": "of"
- },
- {
- "id": 3619,
- "start": 1218.978,
- "end": 1219.058,
- "text": "the"
- },
- {
- "id": 3620,
- "start": 1219.058,
- "end": 1219.608,
- "text": "content"
- },
- {
- "id": 3621,
- "start": 1219.598,
- "end": 1219.768,
- "text": "that"
- },
- {
- "id": 3622,
- "start": 1219.7730000000001,
- "end": 1219.958,
- "text": "these"
- },
- {
- "id": 3623,
- "start": 1219.948,
- "end": 1220.148,
- "text": "threat"
- },
- {
- "id": 3624,
- "start": 1220.148,
- "end": 1220.448,
- "text": "actors"
- },
- {
- "id": 3625,
- "start": 1220.338,
- "end": 1220.733,
- "text": "are"
- },
- {
- "id": 3626,
- "start": 1220.528,
- "end": 1221.018,
- "text": "sharing,"
- },
- {
- "id": 3627,
- "start": 1221.008,
- "end": 1221.128,
- "text": "and"
- },
- {
- "id": 3628,
- "start": 1221.246,
- "end": 1221.382,
- "text": "in"
- },
- {
- "id": 3629,
- "start": 1221.484,
- "end": 1221.636,
- "text": "the"
- },
- {
- "id": 3630,
- "start": 1221.722,
- "end": 1221.8899999999999,
- "text": "debate,"
- },
- {
- "id": 3631,
- "start": 1221.96,
- "end": 1222.1439999999998,
- "text": "there’s"
- },
- {
- "id": 3632,
- "start": 1222.198,
- "end": 1222.398,
- "text": "this"
- },
- {
- "id": 3633,
- "start": 1222.398,
- "end": 1222.608,
- "text": "heavy"
- },
- {
- "id": 3634,
- "start": 1222.608,
- "end": 1222.908,
- "text": "focus"
- },
- {
- "id": 3635,
- "start": 1222.908,
- "end": 1223.008,
- "text": "on"
- },
- {
- "id": 3636,
- "start": 1223.3629999999998,
- "end": 1223.5130000000001,
- "text": "misinformation,"
- },
- {
- "id": 3637,
- "start": 1223.818,
- "end": 1224.018,
- "text": "what’s"
- },
- {
- "id": 3638,
- "start": 1224.018,
- "end": 1224.228,
- "text": "being"
- },
- {
- "id": 3639,
- "start": 1224.228,
- "end": 1224.658,
- "text": "said,"
- },
- {
- "id": 3640,
- "start": 1224.658,
- "end": 1224.848,
- "text": "whether"
- },
- {
- "id": 3641,
- "start": 1224.848,
- "end": 1224.988,
- "text": "it’s"
- },
- {
- "id": 3642,
- "start": 1224.988,
- "end": 1225.318,
- "text": "true"
- },
- {
- "id": 3643,
- "start": 1225.318,
- "end": 1225.418,
- "text": "or"
- },
- {
- "id": 3644,
- "start": 1225.693,
- "end": 1225.8929999999998,
- "text": "not."
- },
- {
- "id": 3645,
- "start": 1226.068,
- "end": 1226.368,
- "text": "One"
- },
- {
- "id": 3646,
- "start": 1226.368,
- "end": 1226.428,
- "text": "of"
- },
- {
- "id": 3647,
- "start": 1226.428,
- "end": 1226.488,
- "text": "the"
- },
- {
- "id": 3648,
- "start": 1226.488,
- "end": 1226.888,
- "text": "important"
- },
- {
- "id": 3649,
- "start": 1226.888,
- "end": 1227.048,
- "text": "tools"
- },
- {
- "id": 3650,
- "start": 1227.048,
- "end": 1227.138,
- "text": "that"
- },
- {
- "id": 3651,
- "start": 1227.138,
- "end": 1227.248,
- "text": "we"
- },
- {
- "id": 3652,
- "start": 1227.248,
- "end": 1227.568,
- "text": "focus"
- },
- {
- "id": 3653,
- "start": 1227.568,
- "end": 1227.718,
- "text": "on"
- },
- {
- "id": 3654,
- "start": 1227.718,
- "end": 1227.838,
- "text": "is"
- },
- {
- "id": 3655,
- "start": 1227.838,
- "end": 1228.218,
- "text": "rather"
- },
- {
- "id": 3656,
- "start": 1228.218,
- "end": 1228.378,
- "text": "than"
- },
- {
- "id": 3657,
- "start": 1228.378,
- "end": 1228.638,
- "text": "looking"
- },
- {
- "id": 3658,
- "start": 1228.638,
- "end": 1228.708,
- "text": "at"
- },
- {
- "id": 3659,
- "start": 1228.708,
- "end": 1228.778,
- "text": "the"
- },
- {
- "id": 3660,
- "start": 1228.778,
- "end": 1229.318,
- "text": "content,"
- },
- {
- "id": 3661,
- "start": 1229.318,
- "end": 1229.488,
- "text": "look"
- },
- {
- "id": 3662,
- "start": 1229.488,
- "end": 1229.558,
- "text": "at"
- },
- {
- "id": 3663,
- "start": 1229.558,
- "end": 1229.658,
- "text": "the"
- },
- {
- "id": 3664,
- "start": 1230.123,
- "end": 1230.2379999999998,
- "text": "behavior."
- },
- {
- "id": 3665,
- "start": 1230.688,
- "end": 1230.818,
- "text": "For"
- },
- {
- "id": 3666,
- "start": 1230.818,
- "end": 1231.098,
- "text": "instance,"
- },
- {
- "id": 3667,
- "start": 1231.098,
- "end": 1231.218,
- "text": "the"
- },
- {
- "id": 3668,
- "start": 1231.218,
- "end": 1231.488,
- "text": "use"
- },
- {
- "id": 3669,
- "start": 1231.488,
- "end": 1231.568,
- "text": "of"
- },
- {
- "id": 3670,
- "start": 1231.568,
- "end": 1231.818,
- "text": "fake"
- },
- {
- "id": 3671,
- "start": 1231.818,
- "end": 1232.758,
- "text": "accounts,"
- },
- {
- "id": 3672,
- "start": 1232.758,
- "end": 1232.968,
- "text": "right?"
- },
- {
- "id": 3673,
- "start": 1232.968,
- "end": 1233.178,
- "text": "This"
- },
- {
- "id": 3674,
- "start": 1233.178,
- "end": 1233.288,
- "text": "is"
- },
- {
- "id": 3675,
- "start": 1233.288,
- "end": 1233.368,
- "text": "a"
- },
- {
- "id": 3676,
- "start": 1233.368,
- "end": 1234.318,
- "text": "pattern"
- },
- {
- "id": 3677,
- "start": 1234.318,
- "end": 1234.578,
- "text": "that"
- },
- {
- "id": 3678,
- "start": 1234.578,
- "end": 1234.728,
- "text": "is"
- },
- {
- "id": 3679,
- "start": 1234.728,
- "end": 1234.788,
- "text": "a"
- },
- {
- "id": 3680,
- "start": 1234.788,
- "end": 1235.078,
- "text": "clear"
- },
- {
- "id": 3681,
- "start": 1235.078,
- "end": 1235.618,
- "text": "violation"
- },
- {
- "id": 3682,
- "start": 1235.618,
- "end": 1235.878,
- "text": "of"
- },
- {
- "id": 3683,
- "start": 1235.878,
- "end": 1236.108,
- "text": "our"
- },
- {
- "id": 3684,
- "start": 1236.108,
- "end": 1236.328,
- "text": "terms"
- },
- {
- "id": 3685,
- "start": 1236.328,
- "end": 1236.398,
- "text": "of"
- },
- {
- "id": 3686,
- "start": 1236.398,
- "end": 1237.138,
- "text": "service,"
- },
- {
- "id": 3687,
- "start": 1237.138,
- "end": 1237.338,
- "text": "is"
- },
- {
- "id": 3688,
- "start": 1237.338,
- "end": 1237.988,
- "text": "also"
- },
- {
- "id": 3689,
- "start": 1237.988,
- "end": 1238.058,
- "text": "a"
- },
- {
- "id": 3690,
- "start": 1238.058,
- "end": 1238.428,
- "text": "clear"
- },
- {
- "id": 3691,
- "start": 1238.428,
- "end": 1238.898,
- "text": "indicator"
- },
- {
- "id": 3692,
- "start": 1238.898,
- "end": 1239.148,
- "text": "of"
- },
- {
- "id": 3693,
- "start": 1239.148,
- "end": 1239.838,
- "text": "inauthentic"
- },
- {
- "id": 3694,
- "start": 1239.838,
- "end": 1240.458,
- "text": "engagement"
- },
- {
- "id": 3695,
- "start": 1240.458,
- "end": 1240.608,
- "text": "that"
- },
- {
- "id": 3696,
- "start": 1240.608,
- "end": 1240.898,
- "text": "doesn’t"
- },
- {
- "id": 3697,
- "start": 1240.898,
- "end": 1241.238,
- "text": "involve"
- },
- {
- "id": 3698,
- "start": 1241.238,
- "end": 1241.648,
- "text": "looking"
- },
- {
- "id": 3699,
- "start": 1241.648,
- "end": 1242.238,
- "text": "at"
- },
- {
- "id": 3700,
- "start": 1242.238,
- "end": 1242.388,
- "text": "the"
- },
- {
- "id": 3701,
- "start": 1242.388,
- "end": 1242.828,
- "text": "nature"
- },
- {
- "id": 3702,
- "start": 1242.828,
- "end": 1242.908,
- "text": "of"
- },
- {
- "id": 3703,
- "start": 1242.908,
- "end": 1242.978,
- "text": "the"
- },
- {
- "id": 3704,
- "start": 1242.978,
- "end": 1243.338,
- "text": "speech"
- },
- {
- "id": 3705,
- "start": 1243.338,
- "end": 1243.438,
- "text": "or"
- },
- {
- "id": 3706,
- "start": 1243.438,
- "end": 1244.338,
- "text": "considering"
- },
- {
- "id": 3707,
- "start": 1244.338,
- "end": 1244.808,
- "text": "what"
- },
- {
- "id": 3708,
- "start": 1244.808,
- "end": 1245.118,
- "text": "type"
- },
- {
- "id": 3709,
- "start": 1245.118,
- "end": 1245.208,
- "text": "of"
- },
- {
- "id": 3710,
- "start": 1245.208,
- "end": 1245.488,
- "text": "debate"
- },
- {
- "id": 3711,
- "start": 1245.488,
- "end": 1245.578,
- "text": "is"
- },
- {
- "id": 3712,
- "start": 1245.968,
- "end": 1246.1280000000002,
- "text": "happening."
- },
- {
- "id": 3713,
- "start": 1246.448,
- "end": 1246.678,
- "text": "For"
- },
- {
- "id": 3714,
- "start": 1246.678,
- "end": 1246.948,
- "text": "the"
- },
- {
- "id": 3715,
- "start": 1246.948,
- "end": 1247.498,
- "text": "simple"
- },
- {
- "id": 3716,
- "start": 1247.498,
- "end": 1248.278,
- "text": "forensics"
- },
- {
- "id": 3717,
- "start": 1248.278,
- "end": 1248.418,
- "text": "of"
- },
- {
- "id": 3718,
- "start": 1248.418,
- "end": 1248.678,
- "text": "even"
- },
- {
- "id": 3719,
- "start": 1248.678,
- "end": 1249.058,
- "text": "finding"
- },
- {
- "id": 3720,
- "start": 1249.058,
- "end": 1249.338,
- "text": "fake"
- },
- {
- "id": 3721,
- "start": 1249.9830000000002,
- "end": 1250.3029999999999,
- "text": "accounts,"
- },
- {
- "id": 3722,
- "start": 1250.908,
- "end": 1251.268,
- "text": "do"
- },
- {
- "id": 3723,
- "start": 1251.268,
- "end": 1251.428,
- "text": "you"
- },
- {
- "id": 3724,
- "start": 1251.428,
- "end": 1251.638,
- "text": "have"
- },
- {
- "id": 3725,
- "start": 1251.638,
- "end": 1251.748,
- "text": "to"
- },
- {
- "id": 3726,
- "start": 1251.748,
- "end": 1252.308,
- "text": "augment"
- },
- {
- "id": 3727,
- "start": 1252.308,
- "end": 1252.448,
- "text": "your"
- },
- {
- "id": 3728,
- "start": 1252.448,
- "end": 1253.098,
- "text": "surveillance"
- },
- {
- "id": 3729,
- "start": 1253.098,
- "end": 1253.528,
- "text": "efforts"
- },
- {
- "id": 3730,
- "start": 1253.528,
- "end": 1253.678,
- "text": "of"
- },
- {
- "id": 3731,
- "start": 1253.678,
- "end": 1253.918,
- "text": "the"
- },
- {
- "id": 3732,
- "start": 1253.918,
- "end": 1254.388,
- "text": "Facebook"
- },
- {
- "id": 3733,
- "start": 1254.388,
- "end": 1254.898,
- "text": "community"
- },
- {
- "id": 3734,
- "start": 1254.898,
- "end": 1255.008,
- "text": "in"
- },
- {
- "id": 3735,
- "start": 1255.008,
- "end": 1255.208,
- "text": "order"
- },
- {
- "id": 3736,
- "start": 1255.208,
- "end": 1255.308,
- "text": "to"
- },
- {
- "id": 3737,
- "start": 1255.308,
- "end": 1255.668,
- "text": "find"
- },
- {
- "id": 3738,
- "start": 1255.668,
- "end": 1256.348,
- "text": "them?"
- },
- {
- "id": 3739,
- "start": 1256.348,
- "end": 1256.658,
- "text": "We"
- },
- {
- "id": 3740,
- "start": 1256.658,
- "end": 1256.888,
- "text": "use"
- },
- {
- "id": 3741,
- "start": 1256.888,
- "end": 1256.968,
- "text": "the"
- },
- {
- "id": 3742,
- "start": 1256.968,
- "end": 1257.318,
- "text": "same"
- },
- {
- "id": 3743,
- "start": 1257.318,
- "end": 1257.728,
- "text": "tools"
- },
- {
- "id": 3744,
- "start": 1257.728,
- "end": 1257.838,
- "text": "to"
- },
- {
- "id": 3745,
- "start": 1257.838,
- "end": 1258.458,
- "text": "identify"
- },
- {
- "id": 3746,
- "start": 1258.868,
- "end": 1259.2979999999998,
- "text": "these"
- },
- {
- "id": 3747,
- "start": 1259.898,
- "end": 1260.138,
- "text": "types"
- },
- {
- "id": 3748,
- "start": 1260.138,
- "end": 1260.208,
- "text": "of"
- },
- {
- "id": 3749,
- "start": 1260.208,
- "end": 1260.518,
- "text": "malicious"
- },
- {
- "id": 3750,
- "start": 1260.518,
- "end": 1261.118,
- "text": "actors"
- },
- {
- "id": 3751,
- "start": 1261.118,
- "end": 1261.278,
- "text": "as"
- },
- {
- "id": 3752,
- "start": 1261.278,
- "end": 1261.398,
- "text": "we"
- },
- {
- "id": 3753,
- "start": 1261.458,
- "end": 1261.5529999999999,
- "text": "use"
- },
- {
- "id": 3754,
- "start": 1261.638,
- "end": 1261.708,
- "text": "to"
- },
- {
- "id": 3755,
- "start": 1261.708,
- "end": 1261.898,
- "text": "make"
- },
- {
- "id": 3756,
- "start": 1261.898,
- "end": 1262.288,
- "text": "sure"
- },
- {
- "id": 3757,
- "start": 1262.288,
- "end": 1262.408,
- "text": "that"
- },
- {
- "id": 3758,
- "start": 1262.408,
- "end": 1262.518,
- "text": "we’re"
- },
- {
- "id": 3759,
- "start": 1262.518,
- "end": 1262.988,
- "text": "stopping"
- },
- {
- "id": 3760,
- "start": 1262.988,
- "end": 1263.208,
- "text": "bad"
- },
- {
- "id": 3761,
- "start": 1263.208,
- "end": 1263.528,
- "text": "actors"
- },
- {
- "id": 3762,
- "start": 1263.528,
- "end": 1263.628,
- "text": "that"
- },
- {
- "id": 3763,
- "start": 1263.628,
- "end": 1263.688,
- "text": "are"
- },
- {
- "id": 3764,
- "start": 1263.688,
- "end": 1264.118,
- "text": "driving,"
- },
- {
- "id": 3765,
- "start": 1264.118,
- "end": 1264.268,
- "text": "for"
- },
- {
- "id": 3766,
- "start": 1264.268,
- "end": 1264.738,
- "text": "example,"
- },
- {
- "id": 3767,
- "start": 1264.738,
- "end": 1264.898,
- "text": "hate"
- },
- {
- "id": 3768,
- "start": 1264.898,
- "end": 1265.308,
- "text": "speech"
- },
- {
- "id": 3769,
- "start": 1265.308,
- "end": 1265.728,
- "text": "or"
- },
- {
- "id": 3770,
- "start": 1265.728,
- "end": 1266.358,
- "text": "bullying"
- },
- {
- "id": 3771,
- "start": 1266.358,
- "end": 1267.048,
- "text": "or"
- },
- {
- "id": 3772,
- "start": 1267.048,
- "end": 1267.288,
- "text": "child"
- },
- {
- "id": 3773,
- "start": 1267.898,
- "end": 1268.2379999999998,
- "text": "pornography."
- },
- {
- "id": 3774,
- "start": 1268.748,
- "end": 1269.188,
- "text": "So"
- },
- {
- "id": 3775,
- "start": 1269.188,
- "end": 1269.288,
- "text": "it"
- },
- {
- "id": 3776,
- "start": 1269.288,
- "end": 1269.588,
- "text": "doesn’t"
- },
- {
- "id": 3777,
- "start": 1269.588,
- "end": 1270.058,
- "text": "require"
- },
- {
- "id": 3778,
- "start": 1270.058,
- "end": 1270.328,
- "text": "any"
- },
- {
- "id": 3779,
- "start": 1270.328,
- "end": 1270.578,
- "text": "more"
- },
- {
- "id": 3780,
- "start": 1270.578,
- "end": 1270.998,
- "text": "data"
- },
- {
- "id": 3781,
- "start": 1270.998,
- "end": 1271.848,
- "text": "analysis"
- },
- {
- "id": 3782,
- "start": 1271.848,
- "end": 1272.078,
- "text": "or"
- },
- {
- "id": 3783,
- "start": 1272.078,
- "end": 1272.488,
- "text": "looking"
- },
- {
- "id": 3784,
- "start": 1272.488,
- "end": 1273.308,
- "text": "at"
- },
- {
- "id": 3785,
- "start": 1273.308,
- "end": 1273.768,
- "text": "what"
- },
- {
- "id": 3786,
- "start": 1273.768,
- "end": 1273.998,
- "text": "could"
- },
- {
- "id": 3787,
- "start": 1273.998,
- "end": 1274.238,
- "text": "be"
- },
- {
- "id": 3788,
- "start": 1274.238,
- "end": 1274.528,
- "text": "someone"
- },
- {
- "id": 3789,
- "start": 1274.458,
- "end": 1275.1380000000001,
- "text": "who’s"
- },
- {
- "id": 3790,
- "start": 1274.678,
- "end": 1275.748,
- "text": "not"
- },
- {
- "id": 3791,
- "start": 1275.748,
- "end": 1276.198,
- "text": "a"
- },
- {
- "id": 3792,
- "start": 1276.198,
- "end": 1276.498,
- "text": "bad"
- },
- {
- "id": 3793,
- "start": 1276.498,
- "end": 1277.098,
- "text": "actor"
- },
- {
- "id": 3794,
- "start": 1277.098,
- "end": 1277.318,
- "text": "but"
- },
- {
- "id": 3795,
- "start": 1277.318,
- "end": 1277.668,
- "text": "finding"
- },
- {
- "id": 3796,
- "start": 1277.668,
- "end": 1277.808,
- "text": "out"
- },
- {
- "id": 3797,
- "start": 1277.808,
- "end": 1278.018,
- "text": "more"
- },
- {
- "id": 3798,
- "start": 1278.018,
- "end": 1278.268,
- "text": "about"
- },
- {
- "id": 3799,
- "start": 1278.268,
- "end": 1278.468,
- "text": "him"
- },
- {
- "id": 3800,
- "start": 1278.468,
- "end": 1278.548,
- "text": "or"
- },
- {
- "id": 3801,
- "start": 1278.843,
- "end": 1278.963,
- "text": "her?"
- },
- {
- "id": 3802,
- "start": 1279.218,
- "end": 1279.378,
- "text": "It"
- },
- {
- "id": 3803,
- "start": 1279.378,
- "end": 1279.688,
- "text": "doesn’t"
- },
- {
- "id": 3804,
- "start": 1279.688,
- "end": 1280.148,
- "text": "require"
- },
- {
- "id": 3805,
- "start": 1280.148,
- "end": 1280.758,
- "text": "more"
- },
- {
- "id": 3806,
- "start": 1281.5013333333336,
- "end": 1282.1979999999994,
- "text": "data"
- },
- {
- "id": 3807,
- "start": 1282.854666666667,
- "end": 1283.638,
- "text": "than"
- },
- {
- "id": 3808,
- "start": 1284.208,
- "end": 1285.078,
- "text": "previously"
- },
- {
- "id": 3809,
- "start": 1285.078,
- "end": 1285.238,
- "text": "in"
- },
- {
- "id": 3810,
- "start": 1285.238,
- "end": 1285.418,
- "text": "order"
- },
- {
- "id": 3811,
- "start": 1285.418,
- "end": 1285.508,
- "text": "to"
- },
- {
- "id": 3812,
- "start": 1285.508,
- "end": 1285.978,
- "text": "find"
- },
- {
- "id": 3813,
- "start": 1285.968,
- "end": 1286.198,
- "text": "bad"
- },
- {
- "id": 3814,
- "start": 1286.6280000000004,
- "end": 1286.8080000000002,
- "text": "actors?"
- },
- {
- "id": 3815,
- "start": 1287.288,
- "end": 1287.418,
- "text": "I"
- },
- {
- "id": 3816,
- "start": 1287.418,
- "end": 1287.578,
- "text": "mean,"
- },
- {
- "id": 3817,
- "start": 1287.561333333333,
- "end": 1287.748,
- "text": "our"
- },
- {
- "id": 3818,
- "start": 1287.7046666666665,
- "end": 1287.918,
- "text": "invest—"
- },
- {
- "id": 3819,
- "start": 1287.848,
- "end": 1288.088,
- "text": "We"
- },
- {
- "id": 3820,
- "start": 1288.088,
- "end": 1288.308,
- "text": "know"
- },
- {
- "id": 3821,
- "start": 1288.308,
- "end": 1288.468,
- "text": "how"
- },
- {
- "id": 3822,
- "start": 1288.468,
- "end": 1289.228,
- "text": "investigations"
- },
- {
- "id": 3823,
- "start": 1289.228,
- "end": 1289.878,
- "text": "work,"
- },
- {
- "id": 3824,
- "start": 1289.878,
- "end": 1290.928,
- "text": "so"
- },
- {
- "id": 3825,
- "start": 1290.928,
- "end": 1291.418,
- "text": "you"
- },
- {
- "id": 3826,
- "start": 1291.418,
- "end": 1291.668,
- "text": "need"
- },
- {
- "id": 3827,
- "start": 1291.668,
- "end": 1291.938,
- "text": "more"
- },
- {
- "id": 3828,
- "start": 1291.938,
- "end": 1292.848,
- "text": "intel"
- },
- {
- "id": 3829,
- "start": 1292.848,
- "end": 1292.998,
- "text": "in"
- },
- {
- "id": 3830,
- "start": 1292.998,
- "end": 1293.178,
- "text": "order"
- },
- {
- "id": 3831,
- "start": 1293.178,
- "end": 1293.258,
- "text": "to"
- },
- {
- "id": 3832,
- "start": 1293.258,
- "end": 1293.548,
- "text": "find"
- },
- {
- "id": 3833,
- "start": 1293.548,
- "end": 1293.788,
- "text": "bad"
- },
- {
- "id": 3834,
- "start": 1293.788,
- "end": 1294.248,
- "text": "actors."
- },
- {
- "id": 3835,
- "start": 1294.248,
- "end": 1294.458,
- "text": "That’s"
- },
- {
- "id": 3836,
- "start": 1294.458,
- "end": 1294.658,
- "text": "just"
- },
- {
- "id": 3837,
- "start": 1294.658,
- "end": 1294.798,
- "text": "kind"
- },
- {
- "id": 3838,
- "start": 1294.798,
- "end": 1294.868,
- "text": "of"
- },
- {
- "id": 3839,
- "start": 1294.868,
- "end": 1294.938,
- "text": "the"
- },
- {
- "id": 3840,
- "start": 1294.938,
- "end": 1295.298,
- "text": "nature"
- },
- {
- "id": 3841,
- "start": 1295.298,
- "end": 1295.438,
- "text": "of"
- },
- {
- "id": 3842,
- "start": 1295.438,
- "end": 1295.808,
- "text": "it."
- },
- {
- "id": 3843,
- "start": 1295.808,
- "end": 1296.118,
- "text": "So"
- },
- {
- "id": 3844,
- "start": 1296.118,
- "end": 1296.268,
- "text": "is"
- },
- {
- "id": 3845,
- "start": 1296.268,
- "end": 1296.498,
- "text": "that"
- },
- {
- "id": 3846,
- "start": 1296.498,
- "end": 1296.748,
- "text": "not"
- },
- {
- "id": 3847,
- "start": 1296.748,
- "end": 1296.958,
- "text": "what’s"
- },
- {
- "id": 3848,
- "start": 1296.958,
- "end": 1297.188,
- "text": "going"
- },
- {
- "id": 3849,
- "start": 1297.188,
- "end": 1297.308,
- "text": "on"
- },
- {
- "id": 3850,
- "start": 1297.308,
- "end": 1297.858,
- "text": "here?"
- },
- {
- "id": 3851,
- "start": 1297.858,
- "end": 1298.068,
- "text": "Well,"
- },
- {
- "id": 3852,
- "start": 1298.068,
- "end": 1298.128,
- "text": "I"
- },
- {
- "id": 3853,
- "start": 1298.128,
- "end": 1298.298,
- "text": "think"
- },
- {
- "id": 3854,
- "start": 1298.298,
- "end": 1298.428,
- "text": "there’s"
- },
- {
- "id": 3855,
- "start": 1298.428,
- "end": 1298.618,
- "text": "two"
- },
- {
- "id": 3856,
- "start": 1298.618,
- "end": 1299.098,
- "text": "pieces"
- },
- {
- "id": 3857,
- "start": 1299.098,
- "end": 1299.208,
- "text": "that"
- },
- {
- "id": 3858,
- "start": 1299.208,
- "end": 1299.278,
- "text": "are"
- },
- {
- "id": 3859,
- "start": 1299.278,
- "end": 1300.118,
- "text": "important."
- },
- {
- "id": 3860,
- "start": 1300.118,
- "end": 1300.238,
- "text": "The"
- },
- {
- "id": 3861,
- "start": 1300.238,
- "end": 1300.538,
- "text": "first"
- },
- {
- "id": 3862,
- "start": 1300.538,
- "end": 1300.778,
- "text": "is"
- },
- {
- "id": 3863,
- "start": 1300.778,
- "end": 1301.108,
- "text": "our"
- },
- {
- "id": 3864,
- "start": 1301.108,
- "end": 1301.798,
- "text": "investigators"
- },
- {
- "id": 3865,
- "start": 1301.798,
- "end": 1302.178,
- "text": "work"
- },
- {
- "id": 3866,
- "start": 1302.178,
- "end": 1302.398,
- "text": "within"
- },
- {
- "id": 3867,
- "start": 1302.398,
- "end": 1302.458,
- "text": "a"
- },
- {
- "id": 3868,
- "start": 1302.458,
- "end": 1302.778,
- "text": "very"
- },
- {
- "id": 3869,
- "start": 1302.778,
- "end": 1303.208,
- "text": "rigorous"
- },
- {
- "id": 3870,
- "start": 1303.208,
- "end": 1303.488,
- "text": "ethical"
- },
- {
- "id": 3871,
- "start": 1303.488,
- "end": 1304.118,
- "text": "framework"
- },
- {
- "id": 3872,
- "start": 1304.118,
- "end": 1304.298,
- "text": "of"
- },
- {
- "id": 3873,
- "start": 1304.298,
- "end": 1304.518,
- "text": "when"
- },
- {
- "id": 3874,
- "start": 1304.518,
- "end": 1304.618,
- "text": "they"
- },
- {
- "id": 3875,
- "start": 1304.618,
- "end": 1304.778,
- "text": "look"
- },
- {
- "id": 3876,
- "start": 1304.778,
- "end": 1304.858,
- "text": "at"
- },
- {
- "id": 3877,
- "start": 1304.858,
- "end": 1305.058,
- "text": "things"
- },
- {
- "id": 3878,
- "start": 1305.058,
- "end": 1305.158,
- "text": "and"
- },
- {
- "id": 3879,
- "start": 1305.158,
- "end": 1305.268,
- "text": "when"
- },
- {
- "id": 3880,
- "start": 1305.268,
- "end": 1305.368,
- "text": "they"
- },
- {
- "id": 3881,
- "start": 1305.368,
- "end": 1305.708,
- "text": "don’t"
- },
- {
- "id": 3882,
- "start": 1305.708,
- "end": 1305.818,
- "text": "in"
- },
- {
- "id": 3883,
- "start": 1305.818,
- "end": 1305.888,
- "text": "the"
- },
- {
- "id": 3884,
- "start": 1305.888,
- "end": 1306.248,
- "text": "course"
- },
- {
- "id": 3885,
- "start": 1306.248,
- "end": 1306.338,
- "text": "of"
- },
- {
- "id": 3886,
- "start": 1306.338,
- "end": 1306.418,
- "text": "an"
- },
- {
- "id": 3887,
- "start": 1306.418,
- "end": 1307.108,
- "text": "investigation"
- },
- {
- "id": 3888,
- "start": 1307.108,
- "end": 1307.238,
- "text": "to"
- },
- {
- "id": 3889,
- "start": 1307.238,
- "end": 1307.568,
- "text": "ensure"
- },
- {
- "id": 3890,
- "start": 1307.568,
- "end": 1307.698,
- "text": "that"
- },
- {
- "id": 3891,
- "start": 1307.698,
- "end": 1307.838,
- "text": "they’re"
- },
- {
- "id": 3892,
- "start": 1308.3280000000002,
- "end": 1308.4929999999997,
- "text": "minimizing"
- },
- {
- "id": 3893,
- "start": 1308.958,
- "end": 1309.148,
- "text": "any"
- },
- {
- "id": 3894,
- "start": 1309.148,
- "end": 1309.308,
- "text": "kind"
- },
- {
- "id": 3895,
- "start": 1309.308,
- "end": 1309.378,
- "text": "of"
- },
- {
- "id": 3896,
- "start": 1309.378,
- "end": 1310.118,
- "text": "impact"
- },
- {
- "id": 3897,
- "start": 1310.118,
- "end": 1310.418,
- "text": "of"
- },
- {
- "id": 3898,
- "start": 1310.418,
- "end": 1310.498,
- "text": "the"
- },
- {
- "id": 3899,
- "start": 1310.578,
- "end": 1310.808,
- "text": "sorts"
- },
- {
- "id": 3900,
- "start": 1310.738,
- "end": 1311.118,
- "text": "of"
- },
- {
- "id": 3901,
- "start": 1311.118,
- "end": 1311.728,
- "text": "investigation"
- },
- {
- "id": 3902,
- "start": 1311.728,
- "end": 1311.818,
- "text": "you’re"
- },
- {
- "id": 3903,
- "start": 1311.818,
- "end": 1312.188,
- "text": "talking"
- },
- {
- "id": 3904,
- "start": 1312.188,
- "end": 1312.948,
- "text": "about."
- },
- {
- "id": 3905,
- "start": 1312.948,
- "end": 1313.028,
- "text": "The"
- },
- {
- "id": 3906,
- "start": 1313.028,
- "end": 1313.178,
- "text": "other"
- },
- {
- "id": 3907,
- "start": 1313.178,
- "end": 1313.478,
- "text": "piece"
- },
- {
- "id": 3908,
- "start": 1313.468,
- "end": 1313.818,
- "text": "is"
- },
- {
- "id": 3909,
- "start": 1313.788,
- "end": 1314.028,
- "text": "when"
- },
- {
- "id": 3910,
- "start": 1314.108,
- "end": 1314.238,
- "text": "we’re"
- },
- {
- "id": 3911,
- "start": 1314.238,
- "end": 1314.568,
- "text": "doing"
- },
- {
- "id": 3912,
- "start": 1314.568,
- "end": 1314.678,
- "text": "the"
- },
- {
- "id": 3913,
- "start": 1314.678,
- "end": 1315.008,
- "text": "broader"
- },
- {
- "id": 3914,
- "start": 1315.008,
- "end": 1315.688,
- "text": "analysis,"
- },
- {
- "id": 3915,
- "start": 1315.688,
- "end": 1315.778,
- "text": "when"
- },
- {
- "id": 3916,
- "start": 1315.778,
- "end": 1315.888,
- "text": "we’re"
- },
- {
- "id": 3917,
- "start": 1315.888,
- "end": 1316.198,
- "text": "looking"
- },
- {
- "id": 3918,
- "start": 1316.198,
- "end": 1316.268,
- "text": "at"
- },
- {
- "id": 3919,
- "start": 1316.268,
- "end": 1316.668,
- "text": "pattern"
- },
- {
- "id": 3920,
- "start": 1316.668,
- "end": 1317.058,
- "text": "matching,"
- },
- {
- "id": 3921,
- "start": 1317.058,
- "end": 1317.148,
- "text": "when"
- },
- {
- "id": 3922,
- "start": 1317.148,
- "end": 1317.238,
- "text": "we’re"
- },
- {
- "id": 3923,
- "start": 1317.238,
- "end": 1317.448,
- "text": "trying"
- },
- {
- "id": 3924,
- "start": 1317.448,
- "end": 1317.538,
- "text": "to"
- },
- {
- "id": 3925,
- "start": 1317.538,
- "end": 1318.148,
- "text": "identify"
- },
- {
- "id": 3926,
- "start": 1318.148,
- "end": 1318.328,
- "text": "these"
- },
- {
- "id": 3927,
- "start": 1318.328,
- "end": 1318.538,
- "text": "bad"
- },
- {
- "id": 3928,
- "start": 1318.833,
- "end": 1319.0430000000001,
- "text": "behaviors,"
- },
- {
- "id": 3929,
- "start": 1319.338,
- "end": 1319.548,
- "text": "we"
- },
- {
- "id": 3930,
- "start": 1319.548,
- "end": 1319.978,
- "text": "look"
- },
- {
- "id": 3931,
- "start": 1320.058,
- "end": 1320.3746666666666,
- "text": "at—these"
- },
- {
- "id": 3932,
- "start": 1320.568,
- "end": 1320.7713333333331,
- "text": "can"
- },
- {
- "id": 3933,
- "start": 1321.078,
- "end": 1321.168,
- "text": "be"
- },
- {
- "id": 3934,
- "start": 1321.168,
- "end": 1321.298,
- "text": "sort"
- },
- {
- "id": 3935,
- "start": 1321.298,
- "end": 1321.358,
- "text": "of"
- },
- {
- "id": 3936,
- "start": 1321.788,
- "end": 1321.9946666666667,
- "text": "anonymized"
- },
- {
- "id": 3937,
- "start": 1322.278,
- "end": 1322.6313333333335,
- "text": "behavior"
- },
- {
- "id": 3938,
- "start": 1322.768,
- "end": 1323.268,
- "text": "patterns."
- },
- {
- "id": 3939,
- "start": 1323.268,
- "end": 1323.488,
- "text": "Are"
- },
- {
- "id": 3940,
- "start": 1323.488,
- "end": 1323.638,
- "text": "these"
- },
- {
- "id": 3941,
- "start": 1323.878,
- "end": 1324.313,
- "text": "organizations"
- },
- {
- "id": 3942,
- "start": 1324.268,
- "end": 1324.988,
- "text": "using"
- },
- {
- "id": 3943,
- "start": 1324.828,
- "end": 1325.278,
- "text": "large"
- },
- {
- "id": 3944,
- "start": 1325.0963333333334,
- "end": 1325.4563333333335,
- "text": "amounts"
- },
- {
- "id": 3945,
- "start": 1325.3646666666666,
- "end": 1325.6346666666668,
- "text": "of"
- },
- {
- "id": 3946,
- "start": 1325.633,
- "end": 1325.813,
- "text": "fake"
- },
- {
- "id": 3947,
- "start": 1326.018,
- "end": 1326.3680000000004,
- "text": "accounts?"
- },
- {
- "id": 3948,
- "start": 1326.403,
- "end": 1326.923,
- "text": "What"
- },
- {
- "id": 3949,
- "start": 1326.923,
- "end": 1327.123,
- "text": "sort"
- },
- {
- "id": 3950,
- "start": 1327.123,
- "end": 1327.243,
- "text": "of"
- },
- {
- "id": 3951,
- "start": 1327.243,
- "end": 1327.573,
- "text": "ads,"
- },
- {
- "id": 3952,
- "start": 1327.573,
- "end": 1327.673,
- "text": "and"
- },
- {
- "id": 3953,
- "start": 1327.673,
- "end": 1327.833,
- "text": "where"
- },
- {
- "id": 3954,
- "start": 1327.7696666666666,
- "end": 1327.9396666666667,
- "text": "are"
- },
- {
- "id": 3955,
- "start": 1327.8663333333334,
- "end": 1328.0463333333335,
- "text": "these"
- },
- {
- "id": 3956,
- "start": 1327.963,
- "end": 1328.153,
- "text": "ads"
- },
- {
- "id": 3957,
- "start": 1328.153,
- "end": 1328.483,
- "text": "coming"
- },
- {
- "id": 3958,
- "start": 1328.483,
- "end": 1328.803,
- "text": "from?"
- },
- {
- "id": 3959,
- "start": 1328.793,
- "end": 1328.953,
- "text": "These"
- },
- {
- "id": 3960,
- "start": 1328.9279999999999,
- "end": 1329.408,
- "text": "are"
- },
- {
- "id": 3961,
- "start": 1329.063,
- "end": 1329.863,
- "text": "indicators"
- },
- {
- "id": 3962,
- "start": 1329.603,
- "end": 1330.078,
- "text": "that"
- },
- {
- "id": 3963,
- "start": 1330.143,
- "end": 1330.293,
- "text": "can"
- },
- {
- "id": 3964,
- "start": 1330.293,
- "end": 1330.573,
- "text": "help"
- },
- {
- "id": 3965,
- "start": 1330.573,
- "end": 1330.653,
- "text": "us"
- },
- {
- "id": 3966,
- "start": 1330.653,
- "end": 1331.013,
- "text": "understand"
- },
- {
- "id": 3967,
- "start": 1331.013,
- "end": 1331.103,
- "text": "where"
- },
- {
- "id": 3968,
- "start": 1331.103,
- "end": 1331.163,
- "text": "to"
- },
- {
- "id": 3969,
- "start": 1331.163,
- "end": 1331.493,
- "text": "start"
- },
- {
- "id": 3970,
- "start": 1331.493,
- "end": 1333.343,
- "text": "looking."
- },
- {
- "id": 3971,
- "start": 1333.343,
- "end": 1333.593,
- "text": "What’s"
- },
- {
- "id": 3972,
- "start": 1333.593,
- "end": 1333.723,
- "text": "your"
- },
- {
- "id": 3973,
- "start": 1334.088,
- "end": 1334.453,
- "text": "worst-case"
- },
- {
- "id": 3974,
- "start": 1334.583,
- "end": 1335.183,
- "text": "scenario"
- },
- {
- "id": 3975,
- "start": 1335.183,
- "end": 1335.373,
- "text": "for"
- },
- {
- "id": 3976,
- "start": 1335.373,
- "end": 1335.833,
- "text": "Election"
- },
- {
- "id": 3977,
- "start": 1335.833,
- "end": 1336.053,
- "text": "Day?"
- },
- {
- "id": 3978,
- "start": 1336.7863333333335,
- "end": 1337.1529999999993,
- "text": "Our"
- },
- {
- "id": 3979,
- "start": 1337.7396666666668,
- "end": 1338.2529999999997,
- "text": "worst-case"
- },
- {
- "id": 3980,
- "start": 1338.693,
- "end": 1339.353,
- "text": "scenario?"
- },
- {
- "id": 3981,
- "start": 1340.1679999999997,
- "end": 1340.5529999999999,
- "text": "Yeah."
- },
- {
- "id": 3982,
- "start": 1341.643,
- "end": 1341.753,
- "text": "I"
- },
- {
- "id": 3983,
- "start": 1341.753,
- "end": 1342.743,
- "text": "think"
- },
- {
- "id": 3984,
- "start": 1342.743,
- "end": 1342.933,
- "text": "we"
- },
- {
- "id": 3985,
- "start": 1342.933,
- "end": 1343.093,
- "text": "all"
- },
- {
- "id": 3986,
- "start": 1343.093,
- "end": 1343.503,
- "text": "know"
- },
- {
- "id": 3987,
- "start": 1343.503,
- "end": 1343.903,
- "text": "some"
- },
- {
- "id": 3988,
- "start": 1343.903,
- "end": 1343.993,
- "text": "of"
- },
- {
- "id": 3989,
- "start": 1343.993,
- "end": 1344.093,
- "text": "the"
- },
- {
- "id": 3990,
- "start": 1344.093,
- "end": 1344.863,
- "text": "things"
- },
- {
- "id": 3991,
- "start": 1344.863,
- "end": 1345.083,
- "text": "that"
- },
- {
- "id": 3992,
- "start": 1345.083,
- "end": 1345.143,
- "text": "are"
- },
- {
- "id": 3993,
- "start": 1345.1663333333336,
- "end": 1345.3196666666668,
- "text": "going"
- },
- {
- "id": 3994,
- "start": 1345.2496666666668,
- "end": 1345.4963333333335,
- "text": "to"
- },
- {
- "id": 3995,
- "start": 1345.333,
- "end": 1345.673,
- "text": "come"
- },
- {
- "id": 3996,
- "start": 1345.673,
- "end": 1345.843,
- "text": "and"
- },
- {
- "id": 3997,
- "start": 1345.843,
- "end": 1346.023,
- "text": "some"
- },
- {
- "id": 3998,
- "start": 1346.023,
- "end": 1346.113,
- "text": "of"
- },
- {
- "id": 3999,
- "start": 1346.113,
- "end": 1346.183,
- "text": "the"
- },
- {
- "id": 4000,
- "start": 1346.183,
- "end": 1346.453,
- "text": "things"
- },
- {
- "id": 4001,
- "start": 1346.453,
- "end": 1346.513,
- "text": "we"
- },
- {
- "id": 4002,
- "start": 1346.513,
- "end": 1346.843,
- "text": "expect"
- },
- {
- "id": 4003,
- "start": 1346.843,
- "end": 1346.993,
- "text": "these"
- },
- {
- "id": 4004,
- "start": 1346.993,
- "end": 1347.303,
- "text": "actors"
- },
- {
- "id": 4005,
- "start": 1347.303,
- "end": 1347.403,
- "text": "to"
- },
- {
- "id": 4006,
- "start": 1347.403,
- "end": 1348.023,
- "text": "use."
- },
- {
- "id": 4007,
- "start": 1348.023,
- "end": 1348.193,
- "text": "I"
- },
- {
- "id": 4008,
- "start": 1348.193,
- "end": 1348.403,
- "text": "think"
- },
- {
- "id": 4009,
- "start": 1348.403,
- "end": 1348.583,
- "text": "from"
- },
- {
- "id": 4010,
- "start": 1348.583,
- "end": 1348.743,
- "text": "my"
- },
- {
- "id": 4011,
- "start": 1348.743,
- "end": 1349.733,
- "text": "perspective,"
- },
- {
- "id": 4012,
- "start": 1349.733,
- "end": 1349.863,
- "text": "I"
- },
- {
- "id": 4013,
- "start": 1349.863,
- "end": 1350.393,
- "text": "know"
- },
- {
- "id": 4014,
- "start": 1350.393,
- "end": 1350.503,
- "text": "that"
- },
- {
- "id": 4015,
- "start": 1350.503,
- "end": 1350.593,
- "text": "they’re"
- },
- {
- "id": 4016,
- "start": 1350.593,
- "end": 1350.713,
- "text": "going"
- },
- {
- "id": 4017,
- "start": 1350.713,
- "end": 1350.773,
- "text": "to"
- },
- {
- "id": 4018,
- "start": 1350.773,
- "end": 1350.873,
- "text": "do"
- },
- {
- "id": 4019,
- "start": 1350.873,
- "end": 1351.183,
- "text": "things"
- },
- {
- "id": 4020,
- "start": 1351.183,
- "end": 1351.263,
- "text": "I"
- },
- {
- "id": 4021,
- "start": 1351.263,
- "end": 1351.553,
- "text": "haven’t"
- },
- {
- "id": 4022,
- "start": 1351.553,
- "end": 1351.743,
- "text": "thought"
- },
- {
- "id": 4023,
- "start": 1351.848,
- "end": 1352.0330000000001,
- "text": "of,"
- },
- {
- "id": 4024,
- "start": 1352.143,
- "end": 1352.323,
- "text": "and"
- },
- {
- "id": 4025,
- "start": 1352.323,
- "end": 1352.453,
- "text": "we"
- },
- {
- "id": 4026,
- "start": 1352.453,
- "end": 1352.623,
- "text": "know"
- },
- {
- "id": 4027,
- "start": 1352.623,
- "end": 1352.713,
- "text": "that"
- },
- {
- "id": 4028,
- "start": 1352.713,
- "end": 1352.813,
- "text": "they’re"
- },
- {
- "id": 4029,
- "start": 1352.813,
- "end": 1352.933,
- "text": "going"
- },
- {
- "id": 4030,
- "start": 1352.933,
- "end": 1352.993,
- "text": "to"
- },
- {
- "id": 4031,
- "start": 1352.993,
- "end": 1353.053,
- "text": "do"
- },
- {
- "id": 4032,
- "start": 1353.053,
- "end": 1353.273,
- "text": "things"
- },
- {
- "id": 4033,
- "start": 1353.273,
- "end": 1353.403,
- "text": "we"
- },
- {
- "id": 4034,
- "start": 1353.403,
- "end": 1353.663,
- "text": "haven’t"
- },
- {
- "id": 4035,
- "start": 1353.663,
- "end": 1353.883,
- "text": "thought"
- },
- {
- "id": 4036,
- "start": 1353.943,
- "end": 1354.1879999999999,
- "text": "of."
- },
- {
- "id": 4037,
- "start": 1354.223,
- "end": 1354.493,
- "text": "Trying"
- },
- {
- "id": 4038,
- "start": 1354.493,
- "end": 1354.583,
- "text": "to"
- },
- {
- "id": 4039,
- "start": 1354.583,
- "end": 1354.953,
- "text": "guess"
- },
- {
- "id": 4040,
- "start": 1354.953,
- "end": 1355.253,
- "text": "every"
- },
- {
- "id": 4041,
- "start": 1355.253,
- "end": 1355.543,
- "text": "single"
- },
- {
- "id": 4042,
- "start": 1355.543,
- "end": 1356.153,
- "text": "thing"
- },
- {
- "id": 4043,
- "start": 1356.043,
- "end": 1356.293,
- "text": "is"
- },
- {
- "id": 4044,
- "start": 1356.1796666666667,
- "end": 1356.4029999999998,
- "text": "going"
- },
- {
- "id": 4045,
- "start": 1356.3163333333332,
- "end": 1356.513,
- "text": "to"
- },
- {
- "id": 4046,
- "start": 1356.453,
- "end": 1356.623,
- "text": "mean"
- },
- {
- "id": 4047,
- "start": 1356.623,
- "end": 1356.763,
- "text": "we’re"
- },
- {
- "id": 4048,
- "start": 1356.763,
- "end": 1357.213,
- "text": "always"
- },
- {
- "id": 4049,
- "start": 1357.213,
- "end": 1357.373,
- "text": "one"
- },
- {
- "id": 4050,
- "start": 1357.373,
- "end": 1357.603,
- "text": "step"
- },
- {
- "id": 4051,
- "start": 1357.603,
- "end": 1358.643,
- "text": "behind."
- },
- {
- "id": 4052,
- "start": 1358.643,
- "end": 1358.883,
- "text": "What’s"
- },
- {
- "id": 4053,
- "start": 1358.883,
- "end": 1359.163,
- "text": "more"
- },
- {
- "id": 4054,
- "start": 1359.163,
- "end": 1359.613,
- "text": "important"
- },
- {
- "id": 4055,
- "start": 1359.613,
- "end": 1359.723,
- "text": "is"
- },
- {
- "id": 4056,
- "start": 1359.723,
- "end": 1359.793,
- "text": "to"
- },
- {
- "id": 4057,
- "start": 1359.793,
- "end": 1359.913,
- "text": "have"
- },
- {
- "id": 4058,
- "start": 1359.913,
- "end": 1359.993,
- "text": "a"
- },
- {
- "id": 4059,
- "start": 1359.993,
- "end": 1360.443,
- "text": "process"
- },
- {
- "id": 4060,
- "start": 1360.443,
- "end": 1360.543,
- "text": "in"
- },
- {
- "id": 4061,
- "start": 1360.543,
- "end": 1360.903,
- "text": "place"
- },
- {
- "id": 4062,
- "start": 1360.903,
- "end": 1361.063,
- "text": "and"
- },
- {
- "id": 4063,
- "start": 1360.9830000000002,
- "end": 1361.1280000000002,
- "text": "to"
- },
- {
- "id": 4064,
- "start": 1361.063,
- "end": 1361.193,
- "text": "have"
- },
- {
- "id": 4065,
- "start": 1361.193,
- "end": 1361.233,
- "text": "a"
- },
- {
- "id": 4066,
- "start": 1361.233,
- "end": 1361.633,
- "text": "system"
- },
- {
- "id": 4067,
- "start": 1361.633,
- "end": 1361.723,
- "text": "in"
- },
- {
- "id": 4068,
- "start": 1361.723,
- "end": 1362.353,
- "text": "place"
- },
- {
- "id": 4069,
- "start": 1362.353,
- "end": 1362.553,
- "text": "so"
- },
- {
- "id": 4070,
- "start": 1362.553,
- "end": 1362.703,
- "text": "that"
- },
- {
- "id": 4071,
- "start": 1362.703,
- "end": 1362.833,
- "text": "we"
- },
- {
- "id": 4072,
- "start": 1362.833,
- "end": 1362.963,
- "text": "can"
- },
- {
- "id": 4073,
- "start": 1362.963,
- "end": 1363.673,
- "text": "identify"
- },
- {
- "id": 4074,
- "start": 1363.673,
- "end": 1363.863,
- "text": "these"
- },
- {
- "id": 4075,
- "start": 1363.863,
- "end": 1364.083,
- "text": "things"
- },
- {
- "id": 4076,
- "start": 1364.083,
- "end": 1364.523,
- "text": "early"
- },
- {
- "id": 4077,
- "start": 1364.523,
- "end": 1364.723,
- "text": "and"
- },
- {
- "id": 4078,
- "start": 1364.723,
- "end": 1364.793,
- "text": "we"
- },
- {
- "id": 4079,
- "start": 1364.813,
- "end": 1364.9279999999999,
- "text": "can"
- },
- {
- "id": 4080,
- "start": 1364.903,
- "end": 1365.063,
- "text": "move"
- },
- {
- "id": 4081,
- "start": 1365.063,
- "end": 1365.433,
- "text": "very"
- },
- {
- "id": 4082,
- "start": 1365.433,
- "end": 1365.783,
- "text": "quickly"
- },
- {
- "id": 4083,
- "start": 1365.783,
- "end": 1365.903,
- "text": "to"
- },
- {
- "id": 4084,
- "start": 1365.903,
- "end": 1367.033,
- "text": "respond."
- },
- {
- "id": 4085,
- "start": 1367.033,
- "end": 1367.083,
- "text": "I"
- },
- {
- "id": 4086,
- "start": 1367.083,
- "end": 1367.353,
- "text": "talked"
- },
- {
- "id": 4087,
- "start": 1367.353,
- "end": 1367.783,
- "text": "earlier"
- },
- {
- "id": 4088,
- "start": 1367.783,
- "end": 1367.983,
- "text": "about"
- },
- {
- "id": 4089,
- "start": 1367.983,
- "end": 1368.163,
- "text": "this"
- },
- {
- "id": 4090,
- "start": 1368.163,
- "end": 1368.673,
- "text": "idea"
- },
- {
- "id": 4091,
- "start": 1368.673,
- "end": 1369.433,
- "text": "of"
- },
- {
- "id": 4092,
- "start": 1369.433,
- "end": 1369.773,
- "text": "looking"
- },
- {
- "id": 4093,
- "start": 1369.773,
- "end": 1369.903,
- "text": "for"
- },
- {
- "id": 4094,
- "start": 1369.903,
- "end": 1370.923,
- "text": "needles"
- },
- {
- "id": 4095,
- "start": 1370.923,
- "end": 1371.073,
- "text": "and"
- },
- {
- "id": 4096,
- "start": 1371.073,
- "end": 1371.513,
- "text": "shrinking"
- },
- {
- "id": 4097,
- "start": 1371.513,
- "end": 1371.593,
- "text": "the"
- },
- {
- "id": 4098,
- "start": 1371.593,
- "end": 1372.943,
- "text": "haystack."
- },
- {
- "id": 4099,
- "start": 1372.943,
- "end": 1373.263,
- "text": "Putting"
- },
- {
- "id": 4100,
- "start": 1373.263,
- "end": 1373.483,
- "text": "those"
- },
- {
- "id": 4101,
- "start": 1373.483,
- "end": 1373.673,
- "text": "two"
- },
- {
- "id": 4102,
- "start": 1373.673,
- "end": 1373.923,
- "text": "types"
- },
- {
- "id": 4103,
- "start": 1373.923,
- "end": 1374.003,
- "text": "of"
- },
- {
- "id": 4104,
- "start": 1374.003,
- "end": 1374.333,
- "text": "efforts"
- },
- {
- "id": 4105,
- "start": 1374.333,
- "end": 1375.333,
- "text": "together"
- },
- {
- "id": 4106,
- "start": 1375.333,
- "end": 1375.513,
- "text": "is"
- },
- {
- "id": 4107,
- "start": 1375.513,
- "end": 1375.793,
- "text": "really"
- },
- {
- "id": 4108,
- "start": 1375.793,
- "end": 1376.173,
- "text": "important"
- },
- {
- "id": 4109,
- "start": 1376.173,
- "end": 1376.313,
- "text": "here,"
- },
- {
- "id": 4110,
- "start": 1376.313,
- "end": 1376.553,
- "text": "because"
- },
- {
- "id": 4111,
- "start": 1376.553,
- "end": 1376.743,
- "text": "when"
- },
- {
- "id": 4112,
- "start": 1376.743,
- "end": 1376.853,
- "text": "you"
- },
- {
- "id": 4113,
- "start": 1376.853,
- "end": 1377.053,
- "text": "look"
- },
- {
- "id": 4114,
- "start": 1377.053,
- "end": 1377.153,
- "text": "for"
- },
- {
- "id": 4115,
- "start": 1377.153,
- "end": 1377.743,
- "text": "needles,"
- },
- {
- "id": 4116,
- "start": 1377.743,
- "end": 1377.983,
- "text": "when"
- },
- {
- "id": 4117,
- "start": 1377.983,
- "end": 1378.103,
- "text": "you’re"
- },
- {
- "id": 4118,
- "start": 1378.103,
- "end": 1378.393,
- "text": "looking"
- },
- {
- "id": 4119,
- "start": 1378.393,
- "end": 1378.483,
- "text": "for"
- },
- {
- "id": 4120,
- "start": 1378.483,
- "end": 1378.543,
- "text": "the"
- },
- {
- "id": 4121,
- "start": 1378.543,
- "end": 1378.743,
- "text": "most"
- },
- {
- "id": 4122,
- "start": 1378.743,
- "end": 1379.583,
- "text": "sophisticated"
- },
- {
- "id": 4123,
- "start": 1379.583,
- "end": 1379.813,
- "text": "bad"
- },
- {
- "id": 4124,
- "start": 1379.813,
- "end": 1380.443,
- "text": "actors,"
- },
- {
- "id": 4125,
- "start": 1380.233,
- "end": 1380.733,
- "text": "those"
- },
- {
- "id": 4126,
- "start": 1380.483,
- "end": 1380.773,
- "text": "are"
- },
- {
- "id": 4127,
- "start": 1380.733,
- "end": 1380.813,
- "text": "the"
- },
- {
- "id": 4128,
- "start": 1380.813,
- "end": 1381.023,
- "text": "ones"
- },
- {
- "id": 4129,
- "start": 1381.023,
- "end": 1381.113,
- "text": "that"
- },
- {
- "id": 4130,
- "start": 1381.113,
- "end": 1381.173,
- "text": "are"
- },
- {
- "id": 4131,
- "start": 1381.183,
- "end": 1381.3796666666667,
- "text": "going"
- },
- {
- "id": 4132,
- "start": 1381.253,
- "end": 1381.5863333333332,
- "text": "to"
- },
- {
- "id": 4133,
- "start": 1381.323,
- "end": 1381.793,
- "text": "try"
- },
- {
- "id": 4134,
- "start": 1381.793,
- "end": 1381.993,
- "text": "new"
- },
- {
- "id": 4135,
- "start": 1381.993,
- "end": 1382.533,
- "text": "techniques"
- },
- {
- "id": 4136,
- "start": 1382.533,
- "end": 1383.333,
- "text": "first,"
- },
- {
- "id": 4137,
- "start": 1383.333,
- "end": 1383.493,
- "text": "and"
- },
- {
- "id": 4138,
- "start": 1383.493,
- "end": 1384.363,
- "text": "having"
- },
- {
- "id": 4139,
- "start": 1384.363,
- "end": 1384.523,
- "text": "this"
- },
- {
- "id": 4140,
- "start": 1384.523,
- "end": 1384.703,
- "text": "sort"
- },
- {
- "id": 4141,
- "start": 1384.703,
- "end": 1384.793,
- "text": "of"
- },
- {
- "id": 4142,
- "start": 1384.793,
- "end": 1385.253,
- "text": "core"
- },
- {
- "id": 4143,
- "start": 1385.253,
- "end": 1385.713,
- "text": "team"
- },
- {
- "id": 4144,
- "start": 1385.713,
- "end": 1385.843,
- "text": "of"
- },
- {
- "id": 4145,
- "start": 1385.843,
- "end": 1386.423,
- "text": "investigators"
- },
- {
- "id": 4146,
- "start": 1386.423,
- "end": 1386.773,
- "text": "focused"
- },
- {
- "id": 4147,
- "start": 1386.773,
- "end": 1386.883,
- "text": "on"
- },
- {
- "id": 4148,
- "start": 1386.883,
- "end": 1387.403,
- "text": "that"
- },
- {
- "id": 4149,
- "start": 1387.403,
- "end": 1387.763,
- "text": "means"
- },
- {
- "id": 4150,
- "start": 1387.763,
- "end": 1387.853,
- "text": "you"
- },
- {
- "id": 4151,
- "start": 1387.853,
- "end": 1387.973,
- "text": "will"
- },
- {
- "id": 4152,
- "start": 1387.973,
- "end": 1388.183,
- "text": "get"
- },
- {
- "id": 4153,
- "start": 1388.183,
- "end": 1388.373,
- "text": "the"
- },
- {
- "id": 4154,
- "start": 1388.373,
- "end": 1388.823,
- "text": "earliest"
- },
- {
- "id": 4155,
- "start": 1388.823,
- "end": 1389.473,
- "text": "indications"
- },
- {
- "id": 4156,
- "start": 1389.473,
- "end": 1389.643,
- "text": "of"
- },
- {
- "id": 4157,
- "start": 1389.643,
- "end": 1389.883,
- "text": "new"
- },
- {
- "id": 4158,
- "start": 1389.883,
- "end": 1390.803,
- "text": "techniques"
- },
- {
- "id": 4159,
- "start": 1390.803,
- "end": 1390.973,
- "text": "like"
- },
- {
- "id": 4160,
- "start": 1390.973,
- "end": 1391.093,
- "text": "what"
- },
- {
- "id": 4161,
- "start": 1391.093,
- "end": 1391.193,
- "text": "you’re"
- },
- {
- "id": 4162,
- "start": 1391.193,
- "end": 1391.513,
- "text": "talking"
- },
- {
- "id": 4163,
- "start": 1391.798,
- "end": 1392.2580000000003,
- "text": "about."
- },
- {
- "id": 4164,
- "start": 1392.403,
- "end": 1393.003,
- "text": "Then"
- },
- {
- "id": 4165,
- "start": 1393.003,
- "end": 1393.153,
- "text": "you"
- },
- {
- "id": 4166,
- "start": 1393.153,
- "end": 1393.283,
- "text": "can"
- },
- {
- "id": 4167,
- "start": 1393.283,
- "end": 1393.713,
- "text": "scale"
- },
- {
- "id": 4168,
- "start": 1393.713,
- "end": 1393.893,
- "text": "those"
- },
- {
- "id": 4169,
- "start": 1393.893,
- "end": 1394.403,
- "text": "up"
- },
- {
- "id": 4170,
- "start": 1394.403,
- "end": 1394.503,
- "text": "to"
- },
- {
- "id": 4171,
- "start": 1394.503,
- "end": 1394.653,
- "text": "have"
- },
- {
- "id": 4172,
- "start": 1394.653,
- "end": 1394.703,
- "text": "a"
- },
- {
- "id": 4173,
- "start": 1394.703,
- "end": 1394.943,
- "text": "much"
- },
- {
- "id": 4174,
- "start": 1394.943,
- "end": 1395.313,
- "text": "larger"
- },
- {
- "id": 4175,
- "start": 1395.313,
- "end": 1395.753,
- "text": "impact"
- },
- {
- "id": 4176,
- "start": 1395.753,
- "end": 1396.163,
- "text": "across"
- },
- {
- "id": 4177,
- "start": 1396.163,
- "end": 1396.243,
- "text": "the"
- },
- {
- "id": 4178,
- "start": 1396.243,
- "end": 1397.013,
- "text": "platform."
- },
- {
- "id": 4179,
- "start": 1397.013,
- "end": 1397.183,
- "text": "Are"
- },
- {
- "id": 4180,
- "start": 1397.183,
- "end": 1397.373,
- "text": "you"
- },
- {
- "id": 4181,
- "start": 1397.373,
- "end": 1397.583,
- "text": "able"
- },
- {
- "id": 4182,
- "start": 1397.583,
- "end": 1397.683,
- "text": "to"
- },
- {
- "id": 4183,
- "start": 1397.683,
- "end": 1397.973,
- "text": "talk"
- },
- {
- "id": 4184,
- "start": 1397.973,
- "end": 1398.083,
- "text": "to"
- },
- {
- "id": 4185,
- "start": 1398.083,
- "end": 1398.213,
- "text": "me"
- },
- {
- "id": 4186,
- "start": 1398.213,
- "end": 1398.313,
- "text": "at"
- },
- {
- "id": 4187,
- "start": 1398.313,
- "end": 1398.493,
- "text": "all"
- },
- {
- "id": 4188,
- "start": 1398.493,
- "end": 1398.733,
- "text": "about"
- },
- {
- "id": 4189,
- "start": 1398.733,
- "end": 1398.933,
- "text": "what"
- },
- {
- "id": 4190,
- "start": 1398.933,
- "end": 1399.113,
- "text": "new"
- },
- {
- "id": 4191,
- "start": 1399.113,
- "end": 1399.633,
- "text": "techniques"
- },
- {
- "id": 4192,
- "start": 1399.773,
- "end": 1400.1963333333335,
- "text": "you’re"
- },
- {
- "id": 4193,
- "start": 1400.4329999999998,
- "end": 1400.759666666667,
- "text": "seeing"
- },
- {
- "id": 4194,
- "start": 1401.093,
- "end": 1401.323,
- "text": "bad"
- },
- {
- "id": 4195,
- "start": 1401.323,
- "end": 1401.683,
- "text": "actors"
- },
- {
- "id": 4196,
- "start": 1401.683,
- "end": 1401.893,
- "text": "use"
- },
- {
- "id": 4197,
- "start": 1401.893,
- "end": 1403.133,
- "text": "here?"
- },
- {
- "id": 4198,
- "start": 1403.133,
- "end": 1403.333,
- "text": "One"
- },
- {
- "id": 4199,
- "start": 1403.333,
- "end": 1403.393,
- "text": "of"
- },
- {
- "id": 4200,
- "start": 1403.393,
- "end": 1403.483,
- "text": "the"
- },
- {
- "id": 4201,
- "start": 1403.483,
- "end": 1403.793,
- "text": "things"
- },
- {
- "id": 4202,
- "start": 1403.793,
- "end": 1404.313,
- "text": "that"
- },
- {
- "id": 4203,
- "start": 1404.313,
- "end": 1404.413,
- "text": "a"
- },
- {
- "id": 4204,
- "start": 1404.413,
- "end": 1404.673,
- "text": "number"
- },
- {
- "id": 4205,
- "start": 1404.673,
- "end": 1404.733,
- "text": "of"
- },
- {
- "id": 4206,
- "start": 1404.733,
- "end": 1404.923,
- "text": "people"
- },
- {
- "id": 4207,
- "start": 1404.923,
- "end": 1405.053,
- "text": "have"
- },
- {
- "id": 4208,
- "start": 1405.053,
- "end": 1405.443,
- "text": "focused"
- },
- {
- "id": 4209,
- "start": 1405.443,
- "end": 1405.543,
- "text": "on"
- },
- {
- "id": 4210,
- "start": 1405.543,
- "end": 1405.633,
- "text": "and"
- },
- {
- "id": 4211,
- "start": 1405.633,
- "end": 1405.763,
- "text": "that"
- },
- {
- "id": 4212,
- "start": 1405.763,
- "end": 1406.023,
- "text": "we’re"
- },
- {
- "id": 4213,
- "start": 1406.023,
- "end": 1406.363,
- "text": "certainly"
- },
- {
- "id": 4214,
- "start": 1406.363,
- "end": 1406.733,
- "text": "focused"
- },
- {
- "id": 4215,
- "start": 1406.733,
- "end": 1406.863,
- "text": "on"
- },
- {
- "id": 4216,
- "start": 1406.863,
- "end": 1406.993,
- "text": "is"
- },
- {
- "id": 4217,
- "start": 1407.2963333333335,
- "end": 1407.4796666666666,
- "text": "manipulated"
- },
- {
- "id": 4218,
- "start": 1407.7296666666666,
- "end": 1407.9663333333333,
- "text": "media."
- },
- {
- "id": 4219,
- "start": 1408.163,
- "end": 1408.453,
- "text": "People"
- },
- {
- "id": 4220,
- "start": 1408.453,
- "end": 1408.673,
- "text": "talk"
- },
- {
- "id": 4221,
- "start": 1408.673,
- "end": 1408.943,
- "text": "about;"
- },
- {
- "id": 4222,
- "start": 1408.943,
- "end": 1409.163,
- "text": "people"
- },
- {
- "id": 4223,
- "start": 1409.163,
- "end": 1409.303,
- "text": "call"
- },
- {
- "id": 4224,
- "start": 1409.303,
- "end": 1409.423,
- "text": "them"
- },
- {
- "id": 4225,
- "start": 1409.7896666666668,
- "end": 1410.0963333333332,
- "text": "deepfakes,"
- },
- {
- "id": 4226,
- "start": 1410.2763333333335,
- "end": 1410.7696666666664,
- "text": "whether"
- },
- {
- "id": 4227,
- "start": 1410.763,
- "end": 1411.443,
- "text": "video"
- },
- {
- "id": 4228,
- "start": 1411.443,
- "end": 1411.593,
- "text": "or"
- },
- {
- "id": 4229,
- "start": 1411.593,
- "end": 1411.653,
- "text": "it"
- },
- {
- "id": 4230,
- "start": 1411.653,
- "end": 1411.793,
- "text": "could"
- },
- {
- "id": 4231,
- "start": 1411.793,
- "end": 1412.033,
- "text": "also"
- },
- {
- "id": 4232,
- "start": 1412.033,
- "end": 1412.133,
- "text": "be"
- },
- {
- "id": 4233,
- "start": 1412.133,
- "end": 1412.843,
- "text": "photographs"
- },
- {
- "id": 4234,
- "start": 1412.843,
- "end": 1413.063,
- "text": "or"
- },
- {
- "id": 4235,
- "start": 1413.063,
- "end": 1413.943,
- "text": "audio"
- },
- {
- "id": 4236,
- "start": 1413.943,
- "end": 1414.153,
- "text": "that"
- },
- {
- "id": 4237,
- "start": 1414.153,
- "end": 1414.753,
- "text": "is"
- },
- {
- "id": 4238,
- "start": 1414.753,
- "end": 1415.293,
- "text": "untrue"
- },
- {
- "id": 4239,
- "start": 1415.293,
- "end": 1415.393,
- "text": "and"
- },
- {
- "id": 4240,
- "start": 1415.393,
- "end": 1415.493,
- "text": "has"
- },
- {
- "id": 4241,
- "start": 1415.493,
- "end": 1415.623,
- "text": "been"
- },
- {
- "id": 4242,
- "start": 1415.623,
- "end": 1416.303,
- "text": "manipulated"
- },
- {
- "id": 4243,
- "start": 1416.028,
- "end": 1416.528,
- "text": "to"
- },
- {
- "id": 4244,
- "start": 1416.433,
- "end": 1416.753,
- "text": "appear"
- },
- {
- "id": 4245,
- "start": 1416.753,
- "end": 1417.293,
- "text": "legitimate,"
- },
- {
- "id": 4246,
- "start": 1417.293,
- "end": 1417.853,
- "text": "right?"
- },
- {
- "id": 4247,
- "start": 1417.853,
- "end": 1418.013,
- "text": "This"
- },
- {
- "id": 4248,
- "start": 1418.013,
- "end": 1418.123,
- "text": "is"
- },
- {
- "id": 4249,
- "start": 1418.123,
- "end": 1418.563,
- "text": "another"
- },
- {
- "id": 4250,
- "start": 1418.563,
- "end": 1419.003,
- "text": "kind"
- },
- {
- "id": 4251,
- "start": 1419.003,
- "end": 1419.093,
- "text": "of"
- },
- {
- "id": 4252,
- "start": 1419.093,
- "end": 1420.073,
- "text": "misinformation"
- },
- {
- "id": 4253,
- "start": 1420.073,
- "end": 1420.203,
- "text": "that"
- },
- {
- "id": 4254,
- "start": 1420.203,
- "end": 1420.293,
- "text": "we"
- },
- {
- "id": 4255,
- "start": 1420.313,
- "end": 1420.748,
- "text": "can"
- },
- {
- "id": 4256,
- "start": 1420.423,
- "end": 1421.203,
- "text": "see"
- },
- {
- "id": 4257,
- "start": 1421.203,
- "end": 1422.313,
- "text": "being"
- },
- {
- "id": 4258,
- "start": 1422.313,
- "end": 1422.833,
- "text": "used"
- },
- {
- "id": 4259,
- "start": 1422.833,
- "end": 1422.943,
- "text": "and"
- },
- {
- "id": 4260,
- "start": 1423.393,
- "end": 1423.5179999999998,
- "text": "utilized,"
- },
- {
- "id": 4261,
- "start": 1423.953,
- "end": 1424.093,
- "text": "so"
- },
- {
- "id": 4262,
- "start": 1424.093,
- "end": 1424.223,
- "text": "this"
- },
- {
- "id": 4263,
- "start": 1424.223,
- "end": 1424.343,
- "text": "is"
- },
- {
- "id": 4264,
- "start": 1424.343,
- "end": 1424.513,
- "text": "one"
- },
- {
- "id": 4265,
- "start": 1424.513,
- "end": 1424.583,
- "text": "of"
- },
- {
- "id": 4266,
- "start": 1424.583,
- "end": 1424.673,
- "text": "the"
- },
- {
- "id": 4267,
- "start": 1424.673,
- "end": 1424.943,
- "text": "things"
- },
- {
- "id": 4268,
- "start": 1424.943,
- "end": 1425.063,
- "text": "that"
- },
- {
- "id": 4269,
- "start": 1425.063,
- "end": 1425.323,
- "text": "we’re"
- },
- {
- "id": 4270,
- "start": 1425.323,
- "end": 1425.643,
- "text": "focused"
- },
- {
- "id": 4271,
- "start": 1425.573,
- "end": 1425.808,
- "text": "on."
- },
- {
- "id": 4272,
- "start": 1425.823,
- "end": 1425.973,
- "text": "How"
- },
- {
- "id": 4273,
- "start": 1425.973,
- "end": 1426.063,
- "text": "do"
- },
- {
- "id": 4274,
- "start": 1426.063,
- "end": 1426.173,
- "text": "we"
- },
- {
- "id": 4275,
- "start": 1426.173,
- "end": 1426.533,
- "text": "detect"
- },
- {
- "id": 4276,
- "start": 1426.533,
- "end": 1426.633,
- "text": "it?"
- },
- {
- "id": 4277,
- "start": 1426.633,
- "end": 1426.793,
- "text": "How"
- },
- {
- "id": 4278,
- "start": 1426.793,
- "end": 1426.853,
- "text": "do"
- },
- {
- "id": 4279,
- "start": 1426.853,
- "end": 1426.953,
- "text": "we"
- },
- {
- "id": 4280,
- "start": 1426.953,
- "end": 1427.513,
- "text": "understand"
- },
- {
- "id": 4281,
- "start": 1427.513,
- "end": 1427.613,
- "text": "it?"
- },
- {
- "id": 4282,
- "start": 1427.613,
- "end": 1427.713,
- "text": "How"
- },
- {
- "id": 4283,
- "start": 1427.713,
- "end": 1427.783,
- "text": "do"
- },
- {
- "id": 4284,
- "start": 1427.783,
- "end": 1427.873,
- "text": "we"
- },
- {
- "id": 4285,
- "start": 1427.873,
- "end": 1428.613,
- "text": "ensure"
- },
- {
- "id": 4286,
- "start": 1428.613,
- "end": 1428.793,
- "text": "that"
- },
- {
- "id": 4287,
- "start": 1428.793,
- "end": 1428.913,
- "text": "our"
- },
- {
- "id": 4288,
- "start": 1428.913,
- "end": 1429.353,
- "text": "policies"
- },
- {
- "id": 4289,
- "start": 1429.193,
- "end": 1429.5230000000001,
- "text": "are"
- },
- {
- "id": 4290,
- "start": 1429.473,
- "end": 1429.693,
- "text": "ready"
- },
- {
- "id": 4291,
- "start": 1429.693,
- "end": 1429.943,
- "text": "for"
- },
- {
- "id": 4292,
- "start": 1429.943,
- "end": 1430.173,
- "text": "it?"
- },
- {
- "id": 4293,
- "start": 1430.173,
- "end": 1430.383,
- "text": "And"
- },
- {
- "id": 4294,
- "start": 1430.383,
- "end": 1430.453,
- "text": "you"
- },
- {
- "id": 4295,
- "start": 1430.453,
- "end": 1430.733,
- "text": "actually"
- },
- {
- "id": 4296,
- "start": 1430.733,
- "end": 1430.933,
- "text": "have"
- },
- {
- "id": 4297,
- "start": 1430.933,
- "end": 1431.003,
- "text": "an"
- },
- {
- "id": 4298,
- "start": 1431.003,
- "end": 1431.623,
- "text": "ability"
- },
- {
- "id": 4299,
- "start": 1431.623,
- "end": 1431.773,
- "text": "to"
- },
- {
- "id": 4300,
- "start": 1431.773,
- "end": 1432.223,
- "text": "detect"
- },
- {
- "id": 4301,
- "start": 1432.223,
- "end": 1433.443,
- "text": "it?"
- },
- {
- "id": 4302,
- "start": 1433.443,
- "end": 1433.593,
- "text": "We’re"
- },
- {
- "id": 4303,
- "start": 1433.593,
- "end": 1433.943,
- "text": "working"
- },
- {
- "id": 4304,
- "start": 1433.943,
- "end": 1434.033,
- "text": "on"
- },
- {
- "id": 4305,
- "start": 1434.033,
- "end": 1434.123,
- "text": "an"
- },
- {
- "id": 4306,
- "start": 1434.123,
- "end": 1434.443,
- "text": "ability"
- },
- {
- "id": 4307,
- "start": 1434.443,
- "end": 1434.533,
- "text": "to"
- },
- {
- "id": 4308,
- "start": 1434.613,
- "end": 1434.7063333333333,
- "text": "detect"
- },
- {
- "id": 4309,
- "start": 1434.783,
- "end": 1434.8796666666667,
- "text": "it."
- },
- {
- "id": 4310,
- "start": 1434.953,
- "end": 1435.053,
- "text": "I"
- },
- {
- "id": 4311,
- "start": 1435.053,
- "end": 1435.253,
- "text": "think"
- },
- {
- "id": 4312,
- "start": 1435.253,
- "end": 1435.533,
- "text": "one"
- },
- {
- "id": 4313,
- "start": 1435.533,
- "end": 1435.613,
- "text": "of"
- },
- {
- "id": 4314,
- "start": 1435.613,
- "end": 1435.693,
- "text": "the"
- },
- {
- "id": 4315,
- "start": 1435.693,
- "end": 1435.903,
- "text": "things"
- },
- {
- "id": 4316,
- "start": 1435.903,
- "end": 1436.043,
- "text": "that’s"
- },
- {
- "id": 4317,
- "start": 1436.043,
- "end": 1436.503,
- "text": "important"
- },
- {
- "id": 4318,
- "start": 1436.503,
- "end": 1436.773,
- "text": "here"
- },
- {
- "id": 4319,
- "start": 1436.773,
- "end": 1437.443,
- "text": "is"
- },
- {
- "id": 4320,
- "start": 1437.443,
- "end": 1437.623,
- "text": "there"
- },
- {
- "id": 4321,
- "start": 1437.623,
- "end": 1437.793,
- "text": "is"
- },
- {
- "id": 4322,
- "start": 1437.793,
- "end": 1437.903,
- "text": "no"
- },
- {
- "id": 4323,
- "start": 1437.903,
- "end": 1438.243,
- "text": "silver"
- },
- {
- "id": 4324,
- "start": 1438.243,
- "end": 1438.783,
- "text": "bullet"
- },
- {
- "id": 4325,
- "start": 1438.783,
- "end": 1438.923,
- "text": "for"
- },
- {
- "id": 4326,
- "start": 1438.923,
- "end": 1439.173,
- "text": "something"
- },
- {
- "id": 4327,
- "start": 1439.173,
- "end": 1439.323,
- "text": "like"
- },
- {
- "id": 4328,
- "start": 1439.3229999999999,
- "end": 1439.4430000000002,
- "text": "this,"
- },
- {
- "id": 4329,
- "start": 1439.473,
- "end": 1439.563,
- "text": "and"
- },
- {
- "id": 4330,
- "start": 1439.563,
- "end": 1440.203,
- "text": "technology"
- },
- {
- "id": 4331,
- "start": 1440.203,
- "end": 1440.733,
- "text": "automated"
- },
- {
- "id": 4332,
- "start": 1440.733,
- "end": 1441.493,
- "text": "detection"
- },
- {
- "id": 4333,
- "start": 1441.493,
- "end": 1441.693,
- "text": "is"
- },
- {
- "id": 4334,
- "start": 1441.693,
- "end": 1442.013,
- "text": "never"
- },
- {
- "id": 4335,
- "start": 1442.013,
- "end": 1442.073,
- "text": "a"
- },
- {
- "id": 4336,
- "start": 1442.073,
- "end": 1442.513,
- "text": "solution"
- },
- {
- "id": 4337,
- "start": 1442.513,
- "end": 1442.663,
- "text": "by"
- },
- {
- "id": 4338,
- "start": 1442.663,
- "end": 1443.533,
- "text": "itself."
- },
- {
- "id": 4339,
- "start": 1443.533,
- "end": 1443.683,
- "text": "It’s"
- },
- {
- "id": 4340,
- "start": 1443.683,
- "end": 1443.753,
- "text": "a"
- },
- {
- "id": 4341,
- "start": 1443.753,
- "end": 1443.983,
- "text": "part"
- },
- {
- "id": 4342,
- "start": 1443.983,
- "end": 1444.043,
- "text": "of"
- },
- {
- "id": 4343,
- "start": 1444.043,
- "end": 1444.103,
- "text": "the"
- },
- {
- "id": 4344,
- "start": 1444.103,
- "end": 1444.753,
- "text": "solution,"
- },
- {
- "id": 4345,
- "start": 1444.753,
- "end": 1445.053,
- "text": "which"
- },
- {
- "id": 4346,
- "start": 1445.053,
- "end": 1445.173,
- "text": "is"
- },
- {
- "id": 4347,
- "start": 1445.173,
- "end": 1445.463,
- "text": "why"
- },
- {
- "id": 4348,
- "start": 1445.463,
- "end": 1445.633,
- "text": "we"
- },
- {
- "id": 4349,
- "start": 1445.633,
- "end": 1445.883,
- "text": "have"
- },
- {
- "id": 4350,
- "start": 1445.883,
- "end": 1446.398,
- "text": "partners"
- },
- {
- "id": 4351,
- "start": 1446.383,
- "end": 1446.548,
- "text": "like"
- },
- {
- "id": 4352,
- "start": 1446.6705,
- "end": 1446.873,
- "text": "third-party"
- },
- {
- "id": 4353,
- "start": 1446.958,
- "end": 1447.198,
- "text": "fact"
- },
- {
- "id": 4354,
- "start": 1447.198,
- "end": 1447.538,
- "text": "checkers"
- },
- {
- "id": 4355,
- "start": 1447.538,
- "end": 1447.628,
- "text": "that"
- },
- {
- "id": 4356,
- "start": 1447.628,
- "end": 1447.718,
- "text": "can"
- },
- {
- "id": 4357,
- "start": 1447.718,
- "end": 1447.878,
- "text": "help"
- },
- {
- "id": 4358,
- "start": 1447.878,
- "end": 1447.978,
- "text": "us"
- },
- {
- "id": 4359,
- "start": 1447.978,
- "end": 1448.648,
- "text": "understand"
- },
- {
- "id": 4360,
- "start": 1448.648,
- "end": 1448.728,
- "text": "the"
- },
- {
- "id": 4361,
- "start": 1448.728,
- "end": 1449.038,
- "text": "nature"
- },
- {
- "id": 4362,
- "start": 1449.038,
- "end": 1449.538,
- "text": "of"
- },
- {
- "id": 4363,
- "start": 1449.538,
- "end": 1449.758,
- "text": "what’s"
- },
- {
- "id": 4364,
- "start": 1449.758,
- "end": 1449.988,
- "text": "out"
- },
- {
- "id": 4365,
- "start": 1449.988,
- "end": 1450.358,
- "text": "there;"
- },
- {
- "id": 4366,
- "start": 1450.358,
- "end": 1450.728,
- "text": "which"
- },
- {
- "id": 4367,
- "start": 1450.728,
- "end": 1450.848,
- "text": "is"
- },
- {
- "id": 4368,
- "start": 1450.848,
- "end": 1451.128,
- "text": "why"
- },
- {
- "id": 4369,
- "start": 1451.128,
- "end": 1451.278,
- "text": "we"
- },
- {
- "id": 4370,
- "start": 1451.278,
- "end": 1451.438,
- "text": "have"
- },
- {
- "id": 4371,
- "start": 1451.438,
- "end": 1451.828,
- "text": "internal"
- },
- {
- "id": 4372,
- "start": 1452.288,
- "end": 1452.5430000000001,
- "text": "teams;"
- },
- {
- "id": 4373,
- "start": 1453.138,
- "end": 1453.258,
- "text": "which"
- },
- {
- "id": 4374,
- "start": 1453.258,
- "end": 1453.368,
- "text": "is"
- },
- {
- "id": 4375,
- "start": 1453.368,
- "end": 1453.538,
- "text": "why"
- },
- {
- "id": 4376,
- "start": 1453.538,
- "end": 1453.678,
- "text": "we"
- },
- {
- "id": 4377,
- "start": 1453.678,
- "end": 1454.318,
- "text": "have"
- },
- {
- "id": 4378,
- "start": 1454.318,
- "end": 1454.428,
- "text": "the"
- },
- {
- "id": 4379,
- "start": 1454.428,
- "end": 1454.768,
- "text": "movement"
- },
- {
- "id": 4380,
- "start": 1454.768,
- "end": 1454.938,
- "text": "from"
- },
- {
- "id": 4381,
- "start": 1455.138,
- "end": 1455.328,
- "text": "10,000"
- },
- {
- "id": 4382,
- "start": 1455.508,
- "end": 1455.718,
- "text": "people"
- },
- {
- "id": 4383,
- "start": 1455.718,
- "end": 1455.798,
- "text": "to"
- },
- {
- "id": 4384,
- "start": 1456.038,
- "end": 1456.358,
- "text": "20,000"
- },
- {
- "id": 4385,
- "start": 1456.358,
- "end": 1456.918,
- "text": "people,"
- },
- {
- "id": 4386,
- "start": 1456.918,
- "end": 1457.158,
- "text": "so"
- },
- {
- "id": 4387,
- "start": 1457.158,
- "end": 1457.288,
- "text": "that"
- },
- {
- "id": 4388,
- "start": 1457.288,
- "end": 1457.418,
- "text": "you"
- },
- {
- "id": 4389,
- "start": 1457.418,
- "end": 1457.848,
- "text": "have"
- },
- {
- "id": 4390,
- "start": 1457.848,
- "end": 1458.448,
- "text": "automated"
- },
- {
- "id": 4391,
- "start": 1458.448,
- "end": 1459.008,
- "text": "tools"
- },
- {
- "id": 4392,
- "start": 1459.008,
- "end": 1459.988,
- "text": "complemented"
- },
- {
- "id": 4393,
- "start": 1459.988,
- "end": 1460.758,
- "text": "with"
- },
- {
- "id": 4394,
- "start": 1460.758,
- "end": 1461.068,
- "text": "human"
- },
- {
- "id": 4395,
- "start": 1461.068,
- "end": 1462.378,
- "text": "analysis."
- },
- {
- "id": 4396,
- "start": 1462.378,
- "end": 1462.648,
- "text": "What’s"
- },
- {
- "id": 4397,
- "start": 1462.648,
- "end": 1462.758,
- "text": "your"
- },
- {
- "id": 4398,
- "start": 1462.758,
- "end": 1463.398,
- "text": "confidence"
- },
- {
- "id": 4399,
- "start": 1463.398,
- "end": 1463.698,
- "text": "level"
- },
- {
- "id": 4400,
- "start": 1463.698,
- "end": 1463.998,
- "text": "going"
- },
- {
- "id": 4401,
- "start": 1463.998,
- "end": 1464.238,
- "text": "into"
- },
- {
- "id": 4402,
- "start": 1464.238,
- "end": 1464.338,
- "text": "the"
- },
- {
- "id": 4403,
- "start": 1464.338,
- "end": 1464.928,
- "text": "midterms"
- },
- {
- "id": 4404,
- "start": 1464.698,
- "end": 1465.228,
- "text": "then"
- },
- {
- "id": 4405,
- "start": 1465.058,
- "end": 1465.528,
- "text": "and"
- },
- {
- "id": 4406,
- "start": 1465.418,
- "end": 1465.828,
- "text": "Election"
- },
- {
- "id": 4407,
- "start": 1465.828,
- "end": 1466.498,
- "text": "Day"
- },
- {
- "id": 4408,
- "start": 1466.498,
- "end": 1466.658,
- "text": "in"
- },
- {
- "id": 4409,
- "start": 1466.658,
- "end": 1466.998,
- "text": "terms"
- },
- {
- "id": 4410,
- "start": 1466.998,
- "end": 1467.538,
- "text": "of"
- },
- {
- "id": 4411,
- "start": 1467.538,
- "end": 1467.828,
- "text": "how"
- },
- {
- "id": 4412,
- "start": 1467.828,
- "end": 1468.248,
- "text": "well"
- },
- {
- "id": 4413,
- "start": 1468.248,
- "end": 1469.128,
- "text": "prepared"
- },
- {
- "id": 4414,
- "start": 1469.128,
- "end": 1469.698,
- "text": "Facebook"
- },
- {
- "id": 4415,
- "start": 1469.698,
- "end": 1469.858,
- "text": "is"
- },
- {
- "id": 4416,
- "start": 1469.858,
- "end": 1469.968,
- "text": "to"
- },
- {
- "id": 4417,
- "start": 1469.968,
- "end": 1470.148,
- "text": "deal"
- },
- {
- "id": 4418,
- "start": 1470.148,
- "end": 1470.288,
- "text": "with"
- },
- {
- "id": 4419,
- "start": 1470.288,
- "end": 1470.518,
- "text": "bad"
- },
- {
- "id": 4420,
- "start": 1470.518,
- "end": 1471.628,
- "text": "actors?"
- },
- {
- "id": 4421,
- "start": 1471.628,
- "end": 1471.808,
- "text": "We"
- },
- {
- "id": 4422,
- "start": 1471.808,
- "end": 1471.908,
- "text": "have"
- },
- {
- "id": 4423,
- "start": 1471.908,
- "end": 1472.078,
- "text": "been"
- },
- {
- "id": 4424,
- "start": 1472.318,
- "end": 1472.4479999999999,
- "text": "laser-focused"
- },
- {
- "id": 4425,
- "start": 1472.728,
- "end": 1472.818,
- "text": "on"
- },
- {
- "id": 4426,
- "start": 1472.818,
- "end": 1472.948,
- "text": "this"
- },
- {
- "id": 4427,
- "start": 1472.948,
- "end": 1473.768,
- "text": "problem,"
- },
- {
- "id": 4428,
- "start": 1473.768,
- "end": 1473.898,
- "text": "and"
- },
- {
- "id": 4429,
- "start": 1473.898,
- "end": 1473.948,
- "text": "I"
- },
- {
- "id": 4430,
- "start": 1473.948,
- "end": 1474.238,
- "text": "think"
- },
- {
- "id": 4431,
- "start": 1474.238,
- "end": 1474.348,
- "text": "the"
- },
- {
- "id": 4432,
- "start": 1474.348,
- "end": 1474.678,
- "text": "best"
- },
- {
- "id": 4433,
- "start": 1474.678,
- "end": 1474.788,
- "text": "way"
- },
- {
- "id": 4434,
- "start": 1474.788,
- "end": 1474.868,
- "text": "to"
- },
- {
- "id": 4435,
- "start": 1474.868,
- "end": 1475.138,
- "text": "measure"
- },
- {
- "id": 4436,
- "start": 1475.138,
- "end": 1475.248,
- "text": "our"
- },
- {
- "id": 4437,
- "start": 1475.248,
- "end": 1475.768,
- "text": "confidence"
- },
- {
- "id": 4438,
- "start": 1475.768,
- "end": 1476.298,
- "text": "level"
- },
- {
- "id": 4439,
- "start": 1476.298,
- "end": 1476.458,
- "text": "is"
- },
- {
- "id": 4440,
- "start": 1476.458,
- "end": 1476.558,
- "text": "to"
- },
- {
- "id": 4441,
- "start": 1476.558,
- "end": 1476.778,
- "text": "look"
- },
- {
- "id": 4442,
- "start": 1476.778,
- "end": 1476.848,
- "text": "at"
- },
- {
- "id": 4443,
- "start": 1476.848,
- "end": 1476.998,
- "text": "the"
- },
- {
- "id": 4444,
- "start": 1476.998,
- "end": 1477.448,
- "text": "impacts"
- },
- {
- "id": 4445,
- "start": 1477.448,
- "end": 1477.618,
- "text": "we’ve"
- },
- {
- "id": 4446,
- "start": 1477.9430000000004,
- "end": 1478.163,
- "text": "had."
- },
- {
- "id": 4447,
- "start": 1478.438,
- "end": 1478.708,
- "text": "From"
- },
- {
- "id": 4448,
- "start": 1478.708,
- "end": 1478.878,
- "text": "my"
- },
- {
- "id": 4449,
- "start": 1478.878,
- "end": 1479.718,
- "text": "perspective,"
- },
- {
- "id": 4450,
- "start": 1479.718,
- "end": 1479.968,
- "text": "one"
- },
- {
- "id": 4451,
- "start": 1479.968,
- "end": 1480.028,
- "text": "of"
- },
- {
- "id": 4452,
- "start": 1479.998,
- "end": 1480.1280000000002,
- "text": "the"
- },
- {
- "id": 4453,
- "start": 1480.028,
- "end": 1480.228,
- "text": "most"
- },
- {
- "id": 4454,
- "start": 1480.228,
- "end": 1480.548,
- "text": "critical"
- },
- {
- "id": 4455,
- "start": 1480.548,
- "end": 1480.968,
- "text": "things"
- },
- {
- "id": 4456,
- "start": 1480.968,
- "end": 1481.078,
- "text": "in"
- },
- {
- "id": 4457,
- "start": 1481.078,
- "end": 1481.258,
- "text": "any"
- },
- {
- "id": 4458,
- "start": 1481.258,
- "end": 1481.678,
- "text": "crisis"
- },
- {
- "id": 4459,
- "start": 1481.678,
- "end": 1482.208,
- "text": "situation,"
- },
- {
- "id": 4460,
- "start": 1482.208,
- "end": 1482.318,
- "text": "which"
- },
- {
- "id": 4461,
- "start": 1482.318,
- "end": 1482.388,
- "text": "is"
- },
- {
- "id": 4462,
- "start": 1482.388,
- "end": 1482.488,
- "text": "what"
- },
- {
- "id": 4463,
- "start": 1482.488,
- "end": 1482.578,
- "text": "we’re"
- },
- {
- "id": 4464,
- "start": 1482.578,
- "end": 1482.898,
- "text": "talking"
- },
- {
- "id": 4465,
- "start": 1482.898,
- "end": 1483.088,
- "text": "about"
- },
- {
- "id": 4466,
- "start": 1483.088,
- "end": 1483.328,
- "text": "here"
- },
- {
- "id": 4467,
- "start": 1483.328,
- "end": 1483.428,
- "text": "in"
- },
- {
- "id": 4468,
- "start": 1483.428,
- "end": 1483.518,
- "text": "an"
- },
- {
- "id": 4469,
- "start": 1483.518,
- "end": 1484.378,
- "text": "election,"
- },
- {
- "id": 4470,
- "start": 1484.378,
- "end": 1484.578,
- "text": "is"
- },
- {
- "id": 4471,
- "start": 1484.578,
- "end": 1484.788,
- "text": "do"
- },
- {
- "id": 4472,
- "start": 1484.788,
- "end": 1484.998,
- "text": "you"
- },
- {
- "id": 4473,
- "start": 1484.998,
- "end": 1485.418,
- "text": "have"
- },
- {
- "id": 4474,
- "start": 1485.418,
- "end": 1485.518,
- "text": "the"
- },
- {
- "id": 4475,
- "start": 1485.518,
- "end": 1486.518,
- "text": "relationships,"
- },
- {
- "id": 4476,
- "start": 1486.518,
- "end": 1486.638,
- "text": "do"
- },
- {
- "id": 4477,
- "start": 1486.638,
- "end": 1486.778,
- "text": "you"
- },
- {
- "id": 4478,
- "start": 1486.778,
- "end": 1487.008,
- "text": "have"
- },
- {
- "id": 4479,
- "start": 1487.008,
- "end": 1487.098,
- "text": "the"
- },
- {
- "id": 4480,
- "start": 1487.098,
- "end": 1487.568,
- "text": "pathways"
- },
- {
- "id": 4481,
- "start": 1487.568,
- "end": 1487.698,
- "text": "and"
- },
- {
- "id": 4482,
- "start": 1487.698,
- "end": 1488.428,
- "text": "channels"
- },
- {
- "id": 4483,
- "start": 1488.428,
- "end": 1488.538,
- "text": "to"
- },
- {
- "id": 4484,
- "start": 1488.538,
- "end": 1488.728,
- "text": "make"
- },
- {
- "id": 4485,
- "start": 1488.728,
- "end": 1488.938,
- "text": "sure"
- },
- {
- "id": 4486,
- "start": 1488.843,
- "end": 1489.0529999999999,
- "text": "that"
- },
- {
- "id": 4487,
- "start": 1488.958,
- "end": 1489.168,
- "text": "you"
- },
- {
- "id": 4488,
- "start": 1489.073,
- "end": 1489.283,
- "text": "can"
- },
- {
- "id": 4489,
- "start": 1489.188,
- "end": 1489.398,
- "text": "move"
- },
- {
- "id": 4490,
- "start": 1489.398,
- "end": 1489.708,
- "text": "quickly"
- },
- {
- "id": 4491,
- "start": 1489.708,
- "end": 1489.828,
- "text": "when"
- },
- {
- "id": 4492,
- "start": 1489.828,
- "end": 1489.948,
- "text": "that"
- },
- {
- "id": 4493,
- "start": 1490.308,
- "end": 1490.463,
- "text": "happens."
- },
- {
- "id": 4494,
- "start": 1490.788,
- "end": 1490.978,
- "text": "One"
- },
- {
- "id": 4495,
- "start": 1490.978,
- "end": 1491.498,
- "text": "advantage"
- },
- {
- "id": 4496,
- "start": 1491.498,
- "end": 1491.608,
- "text": "that"
- },
- {
- "id": 4497,
- "start": 1491.608,
- "end": 1491.728,
- "text": "we"
- },
- {
- "id": 4498,
- "start": 1491.728,
- "end": 1492.308,
- "text": "have"
- },
- {
- "id": 4499,
- "start": 1492.308,
- "end": 1492.408,
- "text": "is"
- },
- {
- "id": 4500,
- "start": 1492.408,
- "end": 1492.508,
- "text": "that"
- },
- {
- "id": 4501,
- "start": 1492.508,
- "end": 1492.648,
- "text": "we’ve"
- },
- {
- "id": 4502,
- "start": 1492.648,
- "end": 1492.788,
- "text": "been"
- },
- {
- "id": 4503,
- "start": 1492.788,
- "end": 1493.178,
- "text": "doing"
- },
- {
- "id": 4504,
- "start": 1493.178,
- "end": 1493.368,
- "text": "these"
- },
- {
- "id": 4505,
- "start": 1493.368,
- "end": 1494.158,
- "text": "disruptions,"
- },
- {
- "id": 4506,
- "start": 1494.158,
- "end": 1494.448,
- "text": "which"
- },
- {
- "id": 4507,
- "start": 1494.448,
- "end": 1494.638,
- "text": "means"
- },
- {
- "id": 4508,
- "start": 1494.638,
- "end": 1494.738,
- "text": "we’ve"
- },
- {
- "id": 4509,
- "start": 1494.738,
- "end": 1494.918,
- "text": "been"
- },
- {
- "id": 4510,
- "start": 1494.918,
- "end": 1495.728,
- "text": "exercising"
- },
- {
- "id": 4511,
- "start": 1495.728,
- "end": 1495.888,
- "text": "this"
- },
- {
- "id": 4512,
- "start": 1495.888,
- "end": 1496.768,
- "text": "process"
- },
- {
- "id": 4513,
- "start": 1496.768,
- "end": 1496.998,
- "text": "and"
- },
- {
- "id": 4514,
- "start": 1496.998,
- "end": 1497.148,
- "text": "these"
- },
- {
- "id": 4515,
- "start": 1497.148,
- "end": 1498.118,
- "text": "pathways,"
- },
- {
- "id": 4516,
- "start": 1498.118,
- "end": 1498.348,
- "text": "both"
- },
- {
- "id": 4517,
- "start": 1498.348,
- "end": 1498.648,
- "text": "inside"
- },
- {
- "id": 4518,
- "start": 1498.648,
- "end": 1498.718,
- "text": "the"
- },
- {
- "id": 4519,
- "start": 1498.718,
- "end": 1499.188,
- "text": "company"
- },
- {
- "id": 4520,
- "start": 1499.188,
- "end": 1499.278,
- "text": "to"
- },
- {
- "id": 4521,
- "start": 1499.278,
- "end": 1499.368,
- "text": "make"
- },
- {
- "id": 4522,
- "start": 1499.368,
- "end": 1499.468,
- "text": "sure"
- },
- {
- "id": 4523,
- "start": 1499.468,
- "end": 1499.568,
- "text": "that"
- },
- {
- "id": 4524,
- "start": 1499.568,
- "end": 1499.858,
- "text": "all"
- },
- {
- "id": 4525,
- "start": 1499.858,
- "end": 1499.958,
- "text": "the"
- },
- {
- "id": 4526,
- "start": 1499.958,
- "end": 1500.298,
- "text": "teams"
- },
- {
- "id": 4527,
- "start": 1500.298,
- "end": 1500.358,
- "text": "are"
- },
- {
- "id": 4528,
- "start": 1500.358,
- "end": 1500.748,
- "text": "working"
- },
- {
- "id": 4529,
- "start": 1500.748,
- "end": 1501.108,
- "text": "together"
- },
- {
- "id": 4530,
- "start": 1500.978,
- "end": 1501.193,
- "text": "in"
- },
- {
- "id": 4531,
- "start": 1501.208,
- "end": 1501.278,
- "text": "the"
- },
- {
- "id": 4532,
- "start": 1501.278,
- "end": 1501.428,
- "text": "way"
- },
- {
- "id": 4533,
- "start": 1501.428,
- "end": 1501.538,
- "text": "they"
- },
- {
- "id": 4534,
- "start": 1501.538,
- "end": 1501.758,
- "text": "need"
- },
- {
- "id": 4535,
- "start": 1501.903,
- "end": 1502.078,
- "text": "to,"
- },
- {
- "id": 4536,
- "start": 1502.268,
- "end": 1502.398,
- "text": "and"
- },
- {
- "id": 4537,
- "start": 1502.398,
- "end": 1502.618,
- "text": "also"
- },
- {
- "id": 4538,
- "start": 1502.618,
- "end": 1502.978,
- "text": "outside"
- },
- {
- "id": 4539,
- "start": 1502.978,
- "end": 1503.058,
- "text": "the"
- },
- {
- "id": 4540,
- "start": 1503.058,
- "end": 1503.598,
- "text": "company,"
- },
- {
- "id": 4541,
- "start": 1503.598,
- "end": 1503.888,
- "text": "because"
- },
- {
- "id": 4542,
- "start": 1503.888,
- "end": 1504.088,
- "text": "for"
- },
- {
- "id": 4543,
- "start": 1504.088,
- "end": 1504.368,
- "text": "everything"
- },
- {
- "id": 4544,
- "start": 1504.368,
- "end": 1504.518,
- "text": "that"
- },
- {
- "id": 4545,
- "start": 1504.518,
- "end": 1504.738,
- "text": "we"
- },
- {
- "id": 4546,
- "start": 1504.738,
- "end": 1504.958,
- "text": "do,"
- },
- {
- "id": 4547,
- "start": 1504.958,
- "end": 1505.268,
- "text": "we’re"
- },
- {
- "id": 4548,
- "start": 1505.268,
- "end": 1505.478,
- "text": "only"
- },
- {
- "id": 4549,
- "start": 1505.478,
- "end": 1505.768,
- "text": "one"
- },
- {
- "id": 4550,
- "start": 1505.768,
- "end": 1506.058,
- "text": "piece"
- },
- {
- "id": 4551,
- "start": 1506.058,
- "end": 1506.118,
- "text": "of"
- },
- {
- "id": 4552,
- "start": 1506.118,
- "end": 1506.198,
- "text": "the"
- },
- {
- "id": 4553,
- "start": 1506.198,
- "end": 1507.038,
- "text": "puzzle,"
- },
- {
- "id": 4554,
- "start": 1507.038,
- "end": 1507.488,
- "text": "and"
- },
- {
- "id": 4555,
- "start": 1507.488,
- "end": 1507.868,
- "text": "making"
- },
- {
- "id": 4556,
- "start": 1507.868,
- "end": 1508.138,
- "text": "sure"
- },
- {
- "id": 4557,
- "start": 1508.138,
- "end": 1508.268,
- "text": "that"
- },
- {
- "id": 4558,
- "start": 1508.268,
- "end": 1508.448,
- "text": "we"
- },
- {
- "id": 4559,
- "start": 1508.448,
- "end": 1508.578,
- "text": "can"
- },
- {
- "id": 4560,
- "start": 1508.578,
- "end": 1508.728,
- "text": "get"
- },
- {
- "id": 4561,
- "start": 1508.728,
- "end": 1509.248,
- "text": "information"
- },
- {
- "id": 4562,
- "start": 1509.248,
- "end": 1509.448,
- "text": "to"
- },
- {
- "id": 4563,
- "start": 1509.448,
- "end": 1509.578,
- "text": "and"
- },
- {
- "id": 4564,
- "start": 1509.578,
- "end": 1509.968,
- "text": "from"
- },
- {
- "id": 4565,
- "start": 1509.968,
- "end": 1510.348,
- "text": "government"
- },
- {
- "id": 4566,
- "start": 1510.348,
- "end": 1510.448,
- "text": "as"
- },
- {
- "id": 4567,
- "start": 1510.448,
- "end": 1510.528,
- "text": "we"
- },
- {
- "id": 4568,
- "start": 1510.528,
- "end": 1510.788,
- "text": "talked"
- },
- {
- "id": 4569,
- "start": 1510.788,
- "end": 1511.058,
- "text": "about"
- },
- {
- "id": 4570,
- "start": 1511.058,
- "end": 1511.678,
- "text": "quickly,"
- },
- {
- "id": 4571,
- "start": 1511.678,
- "end": 1511.848,
- "text": "to"
- },
- {
- "id": 4572,
- "start": 1511.848,
- "end": 1511.958,
- "text": "our"
- },
- {
- "id": 4573,
- "start": 1511.958,
- "end": 1512.588,
- "text": "partners"
- },
- {
- "id": 4574,
- "start": 1512.588,
- "end": 1512.808,
- "text": "in"
- },
- {
- "id": 4575,
- "start": 1512.808,
- "end": 1512.878,
- "text": "the"
- },
- {
- "id": 4576,
- "start": 1512.878,
- "end": 1513.158,
- "text": "private"
- },
- {
- "id": 4577,
- "start": 1513.158,
- "end": 1513.448,
- "text": "sector"
- },
- {
- "id": 4578,
- "start": 1513.448,
- "end": 1514.208,
- "text": "quickly,"
- },
- {
- "id": 4579,
- "start": 1514.208,
- "end": 1514.478,
- "text": "to"
- },
- {
- "id": 4580,
- "start": 1514.478,
- "end": 1514.628,
- "text": "the"
- },
- {
- "id": 4581,
- "start": 1514.628,
- "end": 1515.008,
- "text": "research"
- },
- {
- "id": 4582,
- "start": 1515.008,
- "end": 1515.338,
- "text": "community"
- },
- {
- "id": 4583,
- "start": 1515.363,
- "end": 1515.673,
- "text": "quickly,"
- },
- {
- "id": 4584,
- "start": 1515.718,
- "end": 1516.008,
- "text": "that’s"
- },
- {
- "id": 4585,
- "start": 1515.9313333333334,
- "end": 1516.2613333333334,
- "text": "just"
- },
- {
- "id": 4586,
- "start": 1516.1446666666666,
- "end": 1516.5146666666667,
- "text": "as"
- },
- {
- "id": 4587,
- "start": 1516.358,
- "end": 1516.768,
- "text": "important"
- },
- {
- "id": 4588,
- "start": 1516.768,
- "end": 1516.868,
- "text": "as"
- },
- {
- "id": 4589,
- "start": 1516.868,
- "end": 1517.188,
- "text": "everything"
- },
- {
- "id": 4590,
- "start": 1517.2113333333334,
- "end": 1517.5046666666667,
- "text": "else."
- },
- {
- "id": 4591,
- "start": 1517.5546666666667,
- "end": 1517.8213333333333,
- "text": "And"
- },
- {
- "id": 4592,
- "start": 1517.898,
- "end": 1518.138,
- "text": "what"
- },
- {
- "id": 4593,
- "start": 1518.138,
- "end": 1518.578,
- "text": "about"
- },
- {
- "id": 4594,
- "start": 1518.578,
- "end": 1518.688,
- "text": "a"
- },
- {
- "id": 4595,
- "start": 1518.688,
- "end": 1519.028,
- "text": "war"
- },
- {
- "id": 4596,
- "start": 1519.028,
- "end": 1519.388,
- "text": "room?"
- },
- {
- "id": 4597,
- "start": 1519.388,
- "end": 1519.908,
- "text": "Here’s"
- },
- {
- "id": 4598,
- "start": 1519.908,
- "end": 1519.978,
- "text": "a"
- },
- {
- "id": 4599,
- "start": 1519.978,
- "end": 1520.678,
- "text": "scenario,"
- },
- {
- "id": 4600,
- "start": 1520.678,
- "end": 1520.988,
- "text": "right?"
- },
- {
- "id": 4601,
- "start": 1520.988,
- "end": 1521.448,
- "text": "Election"
- },
- {
- "id": 4602,
- "start": 1521.448,
- "end": 1521.608,
- "text": "Day"
- },
- {
- "id": 4603,
- "start": 1521.608,
- "end": 1521.928,
- "text": "comes"
- },
- {
- "id": 4604,
- "start": 1521.928,
- "end": 1522.808,
- "text": "along,"
- },
- {
- "id": 4605,
- "start": 1522.808,
- "end": 1523.298,
- "text": "and"
- },
- {
- "id": 4606,
- "start": 1523.298,
- "end": 1523.518,
- "text": "all"
- },
- {
- "id": 4607,
- "start": 1523.518,
- "end": 1523.598,
- "text": "of"
- },
- {
- "id": 4608,
- "start": 1523.598,
- "end": 1523.648,
- "text": "a"
- },
- {
- "id": 4609,
- "start": 1523.648,
- "end": 1524.348,
- "text": "sudden"
- },
- {
- "id": 4610,
- "start": 1524.338,
- "end": 1524.738,
- "text": "there’s"
- },
- {
- "id": 4611,
- "start": 1524.8229999999996,
- "end": 1525.1680000000001,
- "text": "a"
- },
- {
- "id": 4612,
- "start": 1525.308,
- "end": 1525.598,
- "text": "piece"
- },
- {
- "id": 4613,
- "start": 1525.598,
- "end": 1526.338,
- "text": "of"
- },
- {
- "id": 4614,
- "start": 1526.338,
- "end": 1526.748,
- "text": "false"
- },
- {
- "id": 4615,
- "start": 1526.748,
- "end": 1527.628,
- "text": "information"
- },
- {
- "id": 4616,
- "start": 1527.628,
- "end": 1527.798,
- "text": "that"
- },
- {
- "id": 4617,
- "start": 1527.798,
- "end": 1527.898,
- "text": "there"
- },
- {
- "id": 4618,
- "start": 1527.898,
- "end": 1527.988,
- "text": "had"
- },
- {
- "id": 4619,
- "start": 1527.988,
- "end": 1528.108,
- "text": "been"
- },
- {
- "id": 4620,
- "start": 1528.108,
- "end": 1528.168,
- "text": "a"
- },
- {
- "id": 4621,
- "start": 1528.168,
- "end": 1528.558,
- "text": "hack"
- },
- {
- "id": 4622,
- "start": 1528.558,
- "end": 1528.708,
- "text": "on"
- },
- {
- "id": 4623,
- "start": 1528.708,
- "end": 1529.048,
- "text": "voting"
- },
- {
- "id": 4624,
- "start": 1529.048,
- "end": 1529.968,
- "text": "machines"
- },
- {
- "id": 4625,
- "start": 1529.968,
- "end": 1531.418,
- "text": "in"
- },
- {
- "id": 4626,
- "start": 1531.418,
- "end": 1531.558,
- "text": "a"
- },
- {
- "id": 4627,
- "start": 1531.558,
- "end": 1532.098,
- "text": "congressional"
- },
- {
- "id": 4628,
- "start": 1532.098,
- "end": 1532.318,
- "text": "race"
- },
- {
- "id": 4629,
- "start": 1532.318,
- "end": 1532.418,
- "text": "in"
- },
- {
- "id": 4630,
- "start": 1532.418,
- "end": 1532.828,
- "text": "Ohio"
- },
- {
- "id": 4631,
- "start": 1532.828,
- "end": 1533.668,
- "text": "somewhere,"
- },
- {
- "id": 4632,
- "start": 1533.668,
- "end": 1534.478,
- "text": "and"
- },
- {
- "id": 4633,
- "start": 1534.478,
- "end": 1534.718,
- "text": "there’s"
- },
- {
- "id": 4634,
- "start": 1534.718,
- "end": 1534.878,
- "text": "this"
- },
- {
- "id": 4635,
- "start": 1534.878,
- "end": 1535.118,
- "text": "piece"
- },
- {
- "id": 4636,
- "start": 1535.118,
- "end": 1535.208,
- "text": "of"
- },
- {
- "id": 4637,
- "start": 1535.208,
- "end": 1536.028,
- "text": "misinformation"
- },
- {
- "id": 4638,
- "start": 1535.623,
- "end": 1536.243,
- "text": "that"
- },
- {
- "id": 4639,
- "start": 1536.038,
- "end": 1536.458,
- "text": "actually"
- },
- {
- "id": 4640,
- "start": 1536.458,
- "end": 1536.738,
- "text": "doesn’t"
- },
- {
- "id": 4641,
- "start": 1536.738,
- "end": 1537.098,
- "text": "happen,"
- },
- {
- "id": 4642,
- "start": 1537.098,
- "end": 1537.208,
- "text": "and"
- },
- {
- "id": 4643,
- "start": 1537.208,
- "end": 1537.338,
- "text": "it’s"
- },
- {
- "id": 4644,
- "start": 1537.338,
- "end": 1537.678,
- "text": "starting"
- },
- {
- "id": 4645,
- "start": 1537.793,
- "end": 1538.0330000000001,
- "text": "to"
- },
- {
- "id": 4646,
- "start": 1538.248,
- "end": 1538.388,
- "text": "be"
- },
- {
- "id": 4647,
- "start": 1538.388,
- "end": 1538.768,
- "text": "passed"
- },
- {
- "id": 4648,
- "start": 1538.768,
- "end": 1539.088,
- "text": "around"
- },
- {
- "id": 4649,
- "start": 1539.088,
- "end": 1539.188,
- "text": "on"
- },
- {
- "id": 4650,
- "start": 1539.188,
- "end": 1539.548,
- "text": "social"
- },
- {
- "id": 4651,
- "start": 1539.548,
- "end": 1540.188,
- "text": "media."
- },
- {
- "id": 4652,
- "start": 1540.188,
- "end": 1540.968,
- "text": "What"
- },
- {
- "id": 4653,
- "start": 1540.968,
- "end": 1541.778,
- "text": "preparedness"
- },
- {
- "id": 4654,
- "start": 1541.778,
- "end": 1541.938,
- "text": "is"
- },
- {
- "id": 4655,
- "start": 1541.938,
- "end": 1542.108,
- "text": "there"
- },
- {
- "id": 4656,
- "start": 1542.108,
- "end": 1542.188,
- "text": "to"
- },
- {
- "id": 4657,
- "start": 1542.188,
- "end": 1542.448,
- "text": "deal"
- },
- {
- "id": 4658,
- "start": 1542.448,
- "end": 1542.588,
- "text": "with"
- },
- {
- "id": 4659,
- "start": 1542.588,
- "end": 1542.918,
- "text": "something"
- },
- {
- "id": 4660,
- "start": 1542.918,
- "end": 1543.128,
- "text": "like"
- },
- {
- "id": 4661,
- "start": 1543.128,
- "end": 1543.418,
- "text": "that"
- },
- {
- "id": 4662,
- "start": 1543.418,
- "end": 1543.498,
- "text": "or"
- },
- {
- "id": 4663,
- "start": 1543.498,
- "end": 1543.868,
- "text": "if"
- },
- {
- "id": 4664,
- "start": 1543.868,
- "end": 1544.148,
- "text": "there’s"
- },
- {
- "id": 4665,
- "start": 1544.138,
- "end": 1544.448,
- "text": "any"
- },
- {
- "id": 4666,
- "start": 1544.4379999999999,
- "end": 1544.6480000000001,
- "text": "sort"
- },
- {
- "id": 4667,
- "start": 1544.738,
- "end": 1544.848,
- "text": "of"
- },
- {
- "id": 4668,
- "start": 1544.848,
- "end": 1545.408,
- "text": "information"
- },
- {
- "id": 4669,
- "start": 1545.408,
- "end": 1545.588,
- "text": "that’s"
- },
- {
- "id": 4670,
- "start": 1545.588,
- "end": 1545.868,
- "text": "being"
- },
- {
- "id": 4671,
- "start": 1546.093,
- "end": 1546.4679999999998,
- "text": "seeded"
- },
- {
- "id": 4672,
- "start": 1546.598,
- "end": 1547.068,
- "text": "all"
- },
- {
- "id": 4673,
- "start": 1547.068,
- "end": 1547.588,
- "text": "throughout"
- },
- {
- "id": 4674,
- "start": 1547.588,
- "end": 1547.668,
- "text": "the"
- },
- {
- "id": 4675,
- "start": 1547.668,
- "end": 1548.048,
- "text": "social"
- },
- {
- "id": 4676,
- "start": 1548.048,
- "end": 1549.898,
- "text": "network"
- },
- {
- "id": 4677,
- "start": 1549.898,
- "end": 1550.278,
- "text": "that’s"
- },
- {
- "id": 4678,
- "start": 1550.278,
- "end": 1550.598,
- "text": "trying"
- },
- {
- "id": 4679,
- "start": 1550.598,
- "end": 1550.708,
- "text": "to"
- },
- {
- "id": 4680,
- "start": 1550.708,
- "end": 1551.158,
- "text": "sow"
- },
- {
- "id": 4681,
- "start": 1551.158,
- "end": 1552.338,
- "text": "distrust"
- },
- {
- "id": 4682,
- "start": 1552.338,
- "end": 1552.568,
- "text": "in"
- },
- {
- "id": 4683,
- "start": 1552.568,
- "end": 1552.678,
- "text": "the"
- },
- {
- "id": 4684,
- "start": 1552.678,
- "end": 1553.048,
- "text": "actual"
- },
- {
- "id": 4685,
- "start": 1553.6580000000004,
- "end": 1553.8880000000004,
- "text": "process?"
- },
- {
- "id": 4686,
- "start": 1554.638,
- "end": 1554.728,
- "text": "We"
- },
- {
- "id": 4687,
- "start": 1554.728,
- "end": 1554.998,
- "text": "have"
- },
- {
- "id": 4688,
- "start": 1554.998,
- "end": 1555.468,
- "text": "policies"
- },
- {
- "id": 4689,
- "start": 1555.468,
- "end": 1555.568,
- "text": "in"
- },
- {
- "id": 4690,
- "start": 1555.568,
- "end": 1556.068,
- "text": "place"
- },
- {
- "id": 4691,
- "start": 1556.0230000000004,
- "end": 1556.458,
- "text": "to"
- },
- {
- "id": 4692,
- "start": 1556.478,
- "end": 1556.848,
- "text": "act"
- },
- {
- "id": 4693,
- "start": 1556.848,
- "end": 1556.958,
- "text": "on"
- },
- {
- "id": 4694,
- "start": 1556.958,
- "end": 1557.428,
- "text": "information"
- },
- {
- "id": 4695,
- "start": 1557.428,
- "end": 1557.628,
- "text": "like"
- },
- {
- "id": 4696,
- "start": 1557.628,
- "end": 1558.098,
- "text": "that."
- },
- {
- "id": 4697,
- "start": 1558.098,
- "end": 1558.228,
- "text": "But"
- },
- {
- "id": 4698,
- "start": 1558.228,
- "end": 1558.348,
- "text": "it’s"
- },
- {
- "id": 4699,
- "start": 1558.488,
- "end": 1558.643,
- "text": "really—I"
- },
- {
- "id": 4700,
- "start": 1558.748,
- "end": 1558.938,
- "text": "think"
- },
- {
- "id": 4701,
- "start": 1558.938,
- "end": 1559.008,
- "text": "the"
- },
- {
- "id": 4702,
- "start": 1559.008,
- "end": 1559.308,
- "text": "question"
- },
- {
- "id": 4703,
- "start": 1559.203,
- "end": 1559.508,
- "text": "you’re"
- },
- {
- "id": 4704,
- "start": 1559.398,
- "end": 1559.708,
- "text": "asking"
- },
- {
- "id": 4705,
- "start": 1559.708,
- "end": 1559.838,
- "text": "is"
- },
- {
- "id": 4706,
- "start": 1559.838,
- "end": 1560.078,
- "text": "bigger"
- },
- {
- "id": 4707,
- "start": 1560.078,
- "end": 1560.208,
- "text": "than"
- },
- {
- "id": 4708,
- "start": 1560.243,
- "end": 1560.533,
- "text": "that,"
- },
- {
- "id": 4709,
- "start": 1560.408,
- "end": 1560.858,
- "text": "right?"
- },
- {
- "id": 4710,
- "start": 1560.858,
- "end": 1561.218,
- "text": "First"
- },
- {
- "id": 4711,
- "start": 1561.218,
- "end": 1561.318,
- "text": "is,"
- },
- {
- "id": 4712,
- "start": 1561.318,
- "end": 1561.488,
- "text": "how"
- },
- {
- "id": 4713,
- "start": 1561.488,
- "end": 1561.568,
- "text": "do"
- },
- {
- "id": 4714,
- "start": 1561.568,
- "end": 1561.688,
- "text": "we"
- },
- {
- "id": 4715,
- "start": 1561.688,
- "end": 1561.948,
- "text": "learn"
- },
- {
- "id": 4716,
- "start": 1561.948,
- "end": 1562.158,
- "text": "about"
- },
- {
- "id": 4717,
- "start": 1562.158,
- "end": 1562.618,
- "text": "it,"
- },
- {
- "id": 4718,
- "start": 1562.618,
- "end": 1562.718,
- "text": "and"
- },
- {
- "id": 4719,
- "start": 1562.718,
- "end": 1562.788,
- "text": "how"
- },
- {
- "id": 4720,
- "start": 1562.788,
- "end": 1562.858,
- "text": "do"
- },
- {
- "id": 4721,
- "start": 1562.858,
- "end": 1562.918,
- "text": "we"
- },
- {
- "id": 4722,
- "start": 1562.918,
- "end": 1563.048,
- "text": "learn"
- },
- {
- "id": 4723,
- "start": 1563.048,
- "end": 1563.218,
- "text": "about"
- },
- {
- "id": 4724,
- "start": 1563.218,
- "end": 1563.288,
- "text": "it"
- },
- {
- "id": 4725,
- "start": 1563.288,
- "end": 1563.688,
- "text": "quickly"
- },
- {
- "id": 4726,
- "start": 1563.688,
- "end": 1564.078,
- "text": "enough;"
- },
- {
- "id": 4727,
- "start": 1564.078,
- "end": 1564.298,
- "text": "and"
- },
- {
- "id": 4728,
- "start": 1564.298,
- "end": 1564.388,
- "text": "then"
- },
- {
- "id": 4729,
- "start": 1564.388,
- "end": 1564.708,
- "text": "second"
- },
- {
- "id": 4730,
- "start": 1564.708,
- "end": 1564.768,
- "text": "is,"
- },
- {
- "id": 4731,
- "start": 1564.768,
- "end": 1564.868,
- "text": "how"
- },
- {
- "id": 4732,
- "start": 1564.868,
- "end": 1564.938,
- "text": "do"
- },
- {
- "id": 4733,
- "start": 1564.938,
- "end": 1565.108,
- "text": "we"
- },
- {
- "id": 4734,
- "start": 1565.108,
- "end": 1565.478,
- "text": "act"
- },
- {
- "id": 4735,
- "start": 1565.478,
- "end": 1565.608,
- "text": "on"
- },
- {
- "id": 4736,
- "start": 1565.608,
- "end": 1565.678,
- "text": "it"
- },
- {
- "id": 4737,
- "start": 1565.678,
- "end": 1565.988,
- "text": "quickly"
- },
- {
- "id": 4738,
- "start": 1565.988,
- "end": 1566.158,
- "text": "enough"
- },
- {
- "id": 4739,
- "start": 1566.158,
- "end": 1566.248,
- "text": "to"
- },
- {
- "id": 4740,
- "start": 1566.248,
- "end": 1566.388,
- "text": "make"
- },
- {
- "id": 4741,
- "start": 1566.388,
- "end": 1566.518,
- "text": "sure"
- },
- {
- "id": 4742,
- "start": 1566.518,
- "end": 1566.608,
- "text": "that"
- },
- {
- "id": 4743,
- "start": 1566.608,
- "end": 1566.708,
- "text": "we’re"
- },
- {
- "id": 4744,
- "start": 1566.9165,
- "end": 1567.0415,
- "text": "mitigating"
- },
- {
- "id": 4745,
- "start": 1567.225,
- "end": 1567.375,
- "text": "any"
- },
- {
- "id": 4746,
- "start": 1567.375,
- "end": 1568.625,
- "text": "consequences?"
- },
- {
- "id": 4747,
- "start": 1568.625,
- "end": 1568.755,
- "text": "This"
- },
- {
- "id": 4748,
- "start": 1568.755,
- "end": 1568.945,
- "text": "gets"
- },
- {
- "id": 4749,
- "start": 1568.945,
- "end": 1569.155,
- "text": "back"
- },
- {
- "id": 4750,
- "start": 1569.155,
- "end": 1569.235,
- "text": "to"
- },
- {
- "id": 4751,
- "start": 1569.235,
- "end": 1569.345,
- "text": "my"
- },
- {
- "id": 4752,
- "start": 1569.61,
- "end": 1569.8500000000001,
- "text": "point:"
- },
- {
- "id": 4753,
- "start": 1569.985,
- "end": 1570.355,
- "text": "We"
- },
- {
- "id": 4754,
- "start": 1570.355,
- "end": 1570.535,
- "text": "need"
- },
- {
- "id": 4755,
- "start": 1570.535,
- "end": 1570.635,
- "text": "to"
- },
- {
- "id": 4756,
- "start": 1570.635,
- "end": 1571.125,
- "text": "know"
- },
- {
- "id": 4757,
- "start": 1571.125,
- "end": 1571.235,
- "text": "and"
- },
- {
- "id": 4758,
- "start": 1571.235,
- "end": 1571.325,
- "text": "we"
- },
- {
- "id": 4759,
- "start": 1571.325,
- "end": 1571.445,
- "text": "need"
- },
- {
- "id": 4760,
- "start": 1571.445,
- "end": 1571.505,
- "text": "to"
- },
- {
- "id": 4761,
- "start": 1571.505,
- "end": 1571.695,
- "text": "have"
- },
- {
- "id": 4762,
- "start": 1571.695,
- "end": 1572.305,
- "text": "communications"
- },
- {
- "id": 4763,
- "start": 1572.305,
- "end": 1572.405,
- "text": "and"
- },
- {
- "id": 4764,
- "start": 1572.575,
- "end": 1572.71,
- "text": "connections"
- },
- {
- "id": 4765,
- "start": 1572.845,
- "end": 1573.015,
- "text": "with"
- },
- {
- "id": 4766,
- "start": 1573.015,
- "end": 1573.095,
- "text": "the"
- },
- {
- "id": 4767,
- "start": 1573.095,
- "end": 1573.505,
- "text": "people"
- },
- {
- "id": 4768,
- "start": 1573.505,
- "end": 1573.615,
- "text": "in"
- },
- {
- "id": 4769,
- "start": 1573.615,
- "end": 1573.695,
- "text": "the"
- },
- {
- "id": 4770,
- "start": 1573.835,
- "end": 1573.925,
- "text": "states"
- },
- {
- "id": 4771,
- "start": 1574.0549999999998,
- "end": 1574.155,
- "text": "who"
- },
- {
- "id": 4772,
- "start": 1574.2749999999999,
- "end": 1574.385,
- "text": "are"
- },
- {
- "id": 4773,
- "start": 1574.495,
- "end": 1574.615,
- "text": "going"
- },
- {
- "id": 4774,
- "start": 1574.615,
- "end": 1574.675,
- "text": "to"
- },
- {
- "id": 4775,
- "start": 1574.675,
- "end": 1574.915,
- "text": "see"
- },
- {
- "id": 4776,
- "start": 1574.915,
- "end": 1575.105,
- "text": "these"
- },
- {
- "id": 4777,
- "start": 1575.105,
- "end": 1575.295,
- "text": "things"
- },
- {
- "id": 4778,
- "start": 1575.295,
- "end": 1576.145,
- "text": "happening,"
- },
- {
- "id": 4779,
- "start": 1576.145,
- "end": 1576.455,
- "text": "with"
- },
- {
- "id": 4780,
- "start": 1576.455,
- "end": 1576.565,
- "text": "the"
- },
- {
- "id": 4781,
- "start": 1576.565,
- "end": 1576.975,
- "text": "people"
- },
- {
- "id": 4782,
- "start": 1576.975,
- "end": 1577.115,
- "text": "in"
- },
- {
- "id": 4783,
- "start": 1577.115,
- "end": 1577.565,
- "text": "government"
- },
- {
- "id": 4784,
- "start": 1577.565,
- "end": 1577.685,
- "text": "who"
- },
- {
- "id": 4785,
- "start": 1577.685,
- "end": 1577.745,
- "text": "are"
- },
- {
- "id": 4786,
- "start": 1577.745,
- "end": 1577.865,
- "text": "going"
- },
- {
- "id": 4787,
- "start": 1577.865,
- "end": 1577.925,
- "text": "to"
- },
- {
- "id": 4788,
- "start": 1577.925,
- "end": 1578.045,
- "text": "see"
- },
- {
- "id": 4789,
- "start": 1578.045,
- "end": 1578.195,
- "text": "these"
- },
- {
- "id": 4790,
- "start": 1578.195,
- "end": 1578.355,
- "text": "things"
- },
- {
- "id": 4791,
- "start": 1578.355,
- "end": 1578.835,
- "text": "happening,"
- },
- {
- "id": 4792,
- "start": 1578.835,
- "end": 1579.095,
- "text": "with"
- },
- {
- "id": 4793,
- "start": 1579.095,
- "end": 1579.315,
- "text": "all"
- },
- {
- "id": 4794,
- "start": 1579.315,
- "end": 1579.375,
- "text": "the"
- },
- {
- "id": 4795,
- "start": 1579.375,
- "end": 1579.605,
- "text": "different"
- },
- {
- "id": 4796,
- "start": 1579.605,
- "end": 1579.885,
- "text": "places"
- },
- {
- "id": 4797,
- "start": 1579.885,
- "end": 1579.985,
- "text": "where"
- },
- {
- "id": 4798,
- "start": 1579.985,
- "end": 1580.125,
- "text": "this"
- },
- {
- "id": 4799,
- "start": 1580.125,
- "end": 1580.595,
- "text": "information"
- },
- {
- "id": 4800,
- "start": 1580.595,
- "end": 1580.685,
- "text": "will"
- },
- {
- "id": 4801,
- "start": 1580.685,
- "end": 1580.985,
- "text": "bubble"
- },
- {
- "id": 4802,
- "start": 1580.985,
- "end": 1581.255,
- "text": "up,"
- },
- {
- "id": 4803,
- "start": 1581.255,
- "end": 1581.445,
- "text": "so"
- },
- {
- "id": 4804,
- "start": 1581.445,
- "end": 1581.535,
- "text": "we"
- },
- {
- "id": 4805,
- "start": 1581.535,
- "end": 1581.685,
- "text": "can"
- },
- {
- "id": 4806,
- "start": 1581.685,
- "end": 1581.885,
- "text": "learn"
- },
- {
- "id": 4807,
- "start": 1581.885,
- "end": 1581.975,
- "text": "it"
- },
- {
- "id": 4808,
- "start": 1581.975,
- "end": 1582.085,
- "text": "as"
- },
- {
- "id": 4809,
- "start": 1582.085,
- "end": 1582.385,
- "text": "quickly"
- },
- {
- "id": 4810,
- "start": 1582.385,
- "end": 1582.485,
- "text": "as"
- },
- {
- "id": 4811,
- "start": 1582.65,
- "end": 1582.79,
- "text": "possible."
- },
- {
- "id": 4812,
- "start": 1582.915,
- "end": 1583.095,
- "text": "And"
- },
- {
- "id": 4813,
- "start": 1583.095,
- "end": 1583.215,
- "text": "you’re"
- },
- {
- "id": 4814,
- "start": 1583.1916666666666,
- "end": 1583.3083333333334,
- "text": "going"
- },
- {
- "id": 4815,
- "start": 1583.2883333333334,
- "end": 1583.4016666666666,
- "text": "to"
- },
- {
- "id": 4816,
- "start": 1583.385,
- "end": 1583.495,
- "text": "be"
- },
- {
- "id": 4817,
- "start": 1583.495,
- "end": 1583.635,
- "text": "able"
- },
- {
- "id": 4818,
- "start": 1583.635,
- "end": 1583.715,
- "text": "to"
- },
- {
- "id": 4819,
- "start": 1583.715,
- "end": 1583.885,
- "text": "do"
- },
- {
- "id": 4820,
- "start": 1583.885,
- "end": 1584.075,
- "text": "that"
- },
- {
- "id": 4821,
- "start": 1584.075,
- "end": 1584.175,
- "text": "in"
- },
- {
- "id": 4822,
- "start": 1584.175,
- "end": 1584.395,
- "text": "real"
- },
- {
- "id": 4823,
- "start": 1584.7,
- "end": 1584.8899999999999,
- "text": "time?"
- },
- {
- "id": 4824,
- "start": 1585.225,
- "end": 1585.385,
- "text": "You"
- },
- {
- "id": 4825,
- "start": 1585.385,
- "end": 1585.635,
- "text": "said"
- },
- {
- "id": 4826,
- "start": 1585.635,
- "end": 1585.715,
- "text": "a"
- },
- {
- "id": 4827,
- "start": 1585.715,
- "end": 1585.975,
- "text": "war"
- },
- {
- "id": 4828,
- "start": 1585.975,
- "end": 1586.495,
- "text": "room,"
- },
- {
- "id": 4829,
- "start": 1586.495,
- "end": 1586.645,
- "text": "and"
- },
- {
- "id": 4830,
- "start": 1586.645,
- "end": 1586.685,
- "text": "I"
- },
- {
- "id": 4831,
- "start": 1586.685,
- "end": 1587.495,
- "text": "think"
- },
- {
- "id": 4832,
- "start": 1587.495,
- "end": 1587.805,
- "text": "that’s"
- },
- {
- "id": 4833,
- "start": 1587.805,
- "end": 1587.875,
- "text": "a"
- },
- {
- "id": 4834,
- "start": 1587.875,
- "end": 1588.395,
- "text": "good"
- },
- {
- "id": 4835,
- "start": 1588.4900000000002,
- "end": 1588.835,
- "text": "image,"
- },
- {
- "id": 4836,
- "start": 1589.105,
- "end": 1589.275,
- "text": "but"
- },
- {
- "id": 4837,
- "start": 1589.275,
- "end": 1589.375,
- "text": "it’s"
- },
- {
- "id": 4838,
- "start": 1589.375,
- "end": 1589.685,
- "text": "important"
- },
- {
- "id": 4839,
- "start": 1589.685,
- "end": 1589.755,
- "text": "to"
- },
- {
- "id": 4840,
- "start": 1589.755,
- "end": 1590.595,
- "text": "remember"
- },
- {
- "id": 4841,
- "start": 1590.595,
- "end": 1590.735,
- "text": "we’re"
- },
- {
- "id": 4842,
- "start": 1590.735,
- "end": 1590.885,
- "text": "not"
- },
- {
- "id": 4843,
- "start": 1590.885,
- "end": 1591.045,
- "text": "just"
- },
- {
- "id": 4844,
- "start": 1591.045,
- "end": 1591.365,
- "text": "talking"
- },
- {
- "id": 4845,
- "start": 1591.365,
- "end": 1591.565,
- "text": "about"
- },
- {
- "id": 4846,
- "start": 1591.565,
- "end": 1591.615,
- "text": "a"
- },
- {
- "id": 4847,
- "start": 1591.615,
- "end": 1591.805,
- "text": "bunch"
- },
- {
- "id": 4848,
- "start": 1591.805,
- "end": 1591.865,
- "text": "of"
- },
- {
- "id": 4849,
- "start": 1591.865,
- "end": 1592.045,
- "text": "people"
- },
- {
- "id": 4850,
- "start": 1592.045,
- "end": 1592.275,
- "text": "sitting"
- },
- {
- "id": 4851,
- "start": 1592.275,
- "end": 1592.495,
- "text": "around"
- },
- {
- "id": 4852,
- "start": 1592.495,
- "end": 1592.535,
- "text": "a"
- },
- {
- "id": 4853,
- "start": 1592.535,
- "end": 1593.165,
- "text": "table."
- },
- {
- "id": 4854,
- "start": 1593.165,
- "end": 1593.285,
- "text": "What"
- },
- {
- "id": 4855,
- "start": 1593.285,
- "end": 1593.405,
- "text": "we’re"
- },
- {
- "id": 4856,
- "start": 1593.405,
- "end": 1593.645,
- "text": "really"
- },
- {
- "id": 4857,
- "start": 1593.645,
- "end": 1594.045,
- "text": "talking"
- },
- {
- "id": 4858,
- "start": 1594.045,
- "end": 1594.685,
- "text": "about"
- },
- {
- "id": 4859,
- "start": 1594.685,
- "end": 1595.815,
- "text": "is"
- },
- {
- "id": 4860,
- "start": 1595.815,
- "end": 1596.475,
- "text": "distributed"
- },
- {
- "id": 4861,
- "start": 1596.475,
- "end": 1597.485,
- "text": "communications"
- },
- {
- "id": 4862,
- "start": 1597.485,
- "end": 1597.605,
- "text": "to"
- },
- {
- "id": 4863,
- "start": 1597.605,
- "end": 1597.825,
- "text": "make"
- },
- {
- "id": 4864,
- "start": 1597.825,
- "end": 1598.005,
- "text": "sure"
- },
- {
- "id": 4865,
- "start": 1598.005,
- "end": 1598.135,
- "text": "that"
- },
- {
- "id": 4866,
- "start": 1598.135,
- "end": 1598.215,
- "text": "the"
- },
- {
- "id": 4867,
- "start": 1598.215,
- "end": 1598.735,
- "text": "contact"
- },
- {
- "id": 4868,
- "start": 1598.735,
- "end": 1599.015,
- "text": "points"
- },
- {
- "id": 4869,
- "start": 1599.015,
- "end": 1599.085,
- "text": "are"
- },
- {
- "id": 4870,
- "start": 1599.085,
- "end": 1599.865,
- "text": "established"
- },
- {
- "id": 4871,
- "start": 1599.865,
- "end": 1600.035,
- "text": "so"
- },
- {
- "id": 4872,
- "start": 1600.035,
- "end": 1600.145,
- "text": "that"
- },
- {
- "id": 4873,
- "start": 1600.145,
- "end": 1600.275,
- "text": "this"
- },
- {
- "id": 4874,
- "start": 1600.275,
- "end": 1600.755,
- "text": "information"
- },
- {
- "id": 4875,
- "start": 1600.515,
- "end": 1600.99,
- "text": "can"
- },
- {
- "id": 4876,
- "start": 1600.755,
- "end": 1601.225,
- "text": "flow"
- },
- {
- "id": 4877,
- "start": 1601.225,
- "end": 1601.765,
- "text": "through"
- },
- {
- "id": 4878,
- "start": 1601.765,
- "end": 1602.095,
- "text": "all"
- },
- {
- "id": 4879,
- "start": 1602.095,
- "end": 1602.165,
- "text": "the"
- },
- {
- "id": 4880,
- "start": 1602.165,
- "end": 1602.415,
- "text": "different"
- },
- {
- "id": 4881,
- "start": 1602.415,
- "end": 1602.695,
- "text": "teams"
- },
- {
- "id": 4882,
- "start": 1602.695,
- "end": 1602.785,
- "text": "that"
- },
- {
- "id": 4883,
- "start": 1602.785,
- "end": 1602.905,
- "text": "need"
- },
- {
- "id": 4884,
- "start": 1602.905,
- "end": 1602.985,
- "text": "to"
- },
- {
- "id": 4885,
- "start": 1602.985,
- "end": 1603.185,
- "text": "work"
- },
- {
- "id": 4886,
- "start": 1603.185,
- "end": 1603.265,
- "text": "on"
- },
- {
- "id": 4887,
- "start": 1603.295,
- "end": 1603.38,
- "text": "this,"
- },
- {
- "id": 4888,
- "start": 1603.405,
- "end": 1603.495,
- "text": "and"
- },
- {
- "id": 4889,
- "start": 1603.495,
- "end": 1603.625,
- "text": "that’s"
- },
- {
- "id": 4890,
- "start": 1603.625,
- "end": 1603.965,
- "text": "both"
- },
- {
- "id": 4891,
- "start": 1603.965,
- "end": 1604.245,
- "text": "inside"
- },
- {
- "id": 4892,
- "start": 1604.245,
- "end": 1604.315,
- "text": "the"
- },
- {
- "id": 4893,
- "start": 1604.315,
- "end": 1604.855,
- "text": "company"
- },
- {
- "id": 4894,
- "start": 1604.855,
- "end": 1605.055,
- "text": "but"
- },
- {
- "id": 4895,
- "start": 1605.055,
- "end": 1605.615,
- "text": "also"
- },
- {
- "id": 4896,
- "start": 1605.615,
- "end": 1605.895,
- "text": "with"
- },
- {
- "id": 4897,
- "start": 1605.895,
- "end": 1606.075,
- "text": "all"
- },
- {
- "id": 4898,
- "start": 1606.075,
- "end": 1606.145,
- "text": "of"
- },
- {
- "id": 4899,
- "start": 1606.145,
- "end": 1606.225,
- "text": "our"
- },
- {
- "id": 4900,
- "start": 1606.225,
- "end": 1606.585,
- "text": "partners"
- },
- {
- "id": 4901,
- "start": 1606.585,
- "end": 1607.415,
- "text": "externally."
- },
- {
- "id": 4902,
- "start": 1607.415,
- "end": 1607.615,
- "text": "Is"
- },
- {
- "id": 4903,
- "start": 1607.615,
- "end": 1607.755,
- "text": "there"
- },
- {
- "id": 4904,
- "start": 1607.7116666666666,
- "end": 1607.8583333333336,
- "text": "going"
- },
- {
- "id": 4905,
- "start": 1607.8083333333334,
- "end": 1607.9616666666668,
- "text": "to"
- },
- {
- "id": 4906,
- "start": 1607.905,
- "end": 1608.065,
- "text": "be"
- },
- {
- "id": 4907,
- "start": 1608.2649999999999,
- "end": 1608.73,
- "text": "real-time"
- },
- {
- "id": 4908,
- "start": 1608.625,
- "end": 1609.395,
- "text": "monitoring"
- },
- {
- "id": 4909,
- "start": 1609.395,
- "end": 1609.665,
- "text": "on"
- },
- {
- "id": 4910,
- "start": 1609.665,
- "end": 1610.115,
- "text": "Election"
- },
- {
- "id": 4911,
- "start": 1610.115,
- "end": 1610.765,
- "text": "Day"
- },
- {
- "id": 4912,
- "start": 1610.765,
- "end": 1610.925,
- "text": "of"
- },
- {
- "id": 4913,
- "start": 1610.925,
- "end": 1611.265,
- "text": "what’s"
- },
- {
- "id": 4914,
- "start": 1611.265,
- "end": 1611.605,
- "text": "going"
- },
- {
- "id": 4915,
- "start": 1611.605,
- "end": 1611.875,
- "text": "on"
- },
- {
- "id": 4916,
- "start": 1611.875,
- "end": 1612.075,
- "text": "on"
- },
- {
- "id": 4917,
- "start": 1612.4250000000002,
- "end": 1612.6000000000001,
- "text": "Facebook,"
- },
- {
- "id": 4918,
- "start": 1612.975,
- "end": 1613.125,
- "text": "in"
- },
- {
- "id": 4919,
- "start": 1613.125,
- "end": 1613.215,
- "text": "the"
- },
- {
- "id": 4920,
- "start": 1613.215,
- "end": 1614.545,
- "text": "conversation,"
- },
- {
- "id": 4921,
- "start": 1614.545,
- "end": 1614.735,
- "text": "as"
- },
- {
- "id": 4922,
- "start": 1614.735,
- "end": 1614.825,
- "text": "you"
- },
- {
- "id": 4923,
- "start": 1614.825,
- "end": 1614.965,
- "text": "put"
- },
- {
- "id": 4924,
- "start": 1614.965,
- "end": 1615.035,
- "text": "it,"
- },
- {
- "id": 4925,
- "start": 1615,
- "end": 1615.08,
- "text": "in"
- },
- {
- "id": 4926,
- "start": 1615.035,
- "end": 1615.125,
- "text": "the"
- },
- {
- "id": 4927,
- "start": 1615.125,
- "end": 1615.455,
- "text": "public"
- },
- {
- "id": 4928,
- "start": 1615.455,
- "end": 1615.765,
- "text": "square"
- },
- {
- "id": 4929,
- "start": 1615.765,
- "end": 1615.855,
- "text": "of"
- },
- {
- "id": 4930,
- "start": 1615.855,
- "end": 1616.645,
- "text": "Facebook"
- },
- {
- "id": 4931,
- "start": 1616.645,
- "end": 1616.865,
- "text": "on"
- },
- {
- "id": 4932,
- "start": 1616.865,
- "end": 1617.305,
- "text": "Election"
- },
- {
- "id": 4933,
- "start": 1617.305,
- "end": 1617.615,
- "text": "Day,"
- },
- {
- "id": 4934,
- "start": 1617.615,
- "end": 1618.125,
- "text": "and"
- },
- {
- "id": 4935,
- "start": 1618.125,
- "end": 1618.455,
- "text": "how"
- },
- {
- "id": 4936,
- "start": 1618.455,
- "end": 1618.545,
- "text": "are"
- },
- {
- "id": 4937,
- "start": 1618.545,
- "end": 1618.765,
- "text": "you"
- },
- {
- "id": 4938,
- "start": 1618.695,
- "end": 1618.9916666666668,
- "text": "going"
- },
- {
- "id": 4939,
- "start": 1618.8449999999998,
- "end": 1619.2183333333332,
- "text": "to"
- },
- {
- "id": 4940,
- "start": 1618.995,
- "end": 1619.445,
- "text": "actually"
- },
- {
- "id": 4941,
- "start": 1619.445,
- "end": 1620.355,
- "text": "find"
- },
- {
- "id": 4942,
- "start": 1620.355,
- "end": 1620.895,
- "text": "things"
- },
- {
- "id": 4943,
- "start": 1620.895,
- "end": 1621.075,
- "text": "that"
- },
- {
- "id": 4944,
- "start": 1621.075,
- "end": 1621.225,
- "text": "may"
- },
- {
- "id": 4945,
- "start": 1621.225,
- "end": 1621.635,
- "text": "actually"
- },
- {
- "id": 4946,
- "start": 1621.5849999999998,
- "end": 1622.235,
- "text": "sow"
- },
- {
- "id": 4947,
- "start": 1621.945,
- "end": 1622.835,
- "text": "distrust"
- },
- {
- "id": 4948,
- "start": 1622.835,
- "end": 1622.965,
- "text": "in"
- },
- {
- "id": 4949,
- "start": 1622.965,
- "end": 1623.055,
- "text": "the"
- },
- {
- "id": 4950,
- "start": 1623.055,
- "end": 1623.915,
- "text": "election?"
- },
- {
- "id": 4951,
- "start": 1623.915,
- "end": 1624.665,
- "text": "Absolutely."
- },
- {
- "id": 4952,
- "start": 1624.505,
- "end": 1624.805,
- "text": "We’re"
- },
- {
- "id": 4953,
- "start": 1624.655,
- "end": 1624.895,
- "text": "going"
- },
- {
- "id": 4954,
- "start": 1624.8049999999998,
- "end": 1624.985,
- "text": "to"
- },
- {
- "id": 4955,
- "start": 1624.955,
- "end": 1625.075,
- "text": "have"
- },
- {
- "id": 4956,
- "start": 1625.075,
- "end": 1625.135,
- "text": "a"
- },
- {
- "id": 4957,
- "start": 1625.135,
- "end": 1625.955,
- "text": "team"
- },
- {
- "id": 4958,
- "start": 1625.955,
- "end": 1626.225,
- "text": "on"
- },
- {
- "id": 4959,
- "start": 1626.225,
- "end": 1626.635,
- "text": "Election"
- },
- {
- "id": 4960,
- "start": 1626.635,
- "end": 1626.935,
- "text": "Day"
- },
- {
- "id": 4961,
- "start": 1626.935,
- "end": 1627.295,
- "text": "focused"
- },
- {
- "id": 4962,
- "start": 1627.295,
- "end": 1627.385,
- "text": "on"
- },
- {
- "id": 4963,
- "start": 1627.385,
- "end": 1627.545,
- "text": "that"
- },
- {
- "id": 4964,
- "start": 1627.545,
- "end": 1627.875,
- "text": "problem,"
- },
- {
- "id": 4965,
- "start": 1627.875,
- "end": 1628.075,
- "text": "and"
- },
- {
- "id": 4966,
- "start": 1628.075,
- "end": 1628.295,
- "text": "one"
- },
- {
- "id": 4967,
- "start": 1628.295,
- "end": 1628.435,
- "text": "thing"
- },
- {
- "id": 4968,
- "start": 1628.435,
- "end": 1628.615,
- "text": "that’s"
- },
- {
- "id": 4969,
- "start": 1628.615,
- "end": 1628.925,
- "text": "useful"
- },
- {
- "id": 4970,
- "start": 1628.925,
- "end": 1629.105,
- "text": "here"
- },
- {
- "id": 4971,
- "start": 1629.105,
- "end": 1629.365,
- "text": "is"
- },
- {
- "id": 4972,
- "start": 1629.365,
- "end": 1629.675,
- "text": "we’ve"
- },
- {
- "id": 4973,
- "start": 1629.675,
- "end": 1629.885,
- "text": "already"
- },
- {
- "id": 4974,
- "start": 1629.885,
- "end": 1630.215,
- "text": "done"
- },
- {
- "id": 4975,
- "start": 1630.215,
- "end": 1630.435,
- "text": "this"
- },
- {
- "id": 4976,
- "start": 1630.435,
- "end": 1630.535,
- "text": "in"
- },
- {
- "id": 4977,
- "start": 1630.535,
- "end": 1630.745,
- "text": "other"
- },
- {
- "id": 4978,
- "start": 1630.745,
- "end": 1631.625,
- "text": "elections,"
- },
- {
- "id": 4979,
- "start": 1631.625,
- "end": 1632.025,
- "text": "with"
- },
- {
- "id": 4980,
- "start": 1632.025,
- "end": 1632.335,
- "text": "recent"
- },
- {
- "id": 4981,
- "start": 1632.335,
- "end": 1632.635,
- "text": "elections"
- },
- {
- "id": 4982,
- "start": 1632.635,
- "end": 1632.725,
- "text": "that"
- },
- {
- "id": 4983,
- "start": 1632.725,
- "end": 1632.825,
- "text": "have"
- },
- {
- "id": 4984,
- "start": 1632.825,
- "end": 1633.035,
- "text": "come"
- },
- {
- "id": 4985,
- "start": 1632.9850000000001,
- "end": 1633.1550000000002,
- "text": "up."
- },
- {
- "id": 4986,
- "start": 1633.145,
- "end": 1633.275,
- "text": "Whether"
- },
- {
- "id": 4987,
- "start": 1633.305,
- "end": 1633.395,
- "text": "you’re"
- },
- {
- "id": 4988,
- "start": 1633.395,
- "end": 1633.565,
- "text": "talking"
- },
- {
- "id": 4989,
- "start": 1633.565,
- "end": 1633.695,
- "text": "about"
- },
- {
- "id": 4990,
- "start": 1634.1599999999999,
- "end": 1634.4299999999996,
- "text": "Mexico,"
- },
- {
- "id": 4991,
- "start": 1634.755,
- "end": 1635.165,
- "text": "recent"
- },
- {
- "id": 4992,
- "start": 1635.205,
- "end": 1635.4850000000001,
- "text": "elections,"
- },
- {
- "id": 4993,
- "start": 1635.655,
- "end": 1635.805,
- "text": "we’ve"
- },
- {
- "id": 4994,
- "start": 1635.805,
- "end": 1635.925,
- "text": "been"
- },
- {
- "id": 4995,
- "start": 1635.925,
- "end": 1636.185,
- "text": "able"
- },
- {
- "id": 4996,
- "start": 1636.185,
- "end": 1636.285,
- "text": "to"
- },
- {
- "id": 4997,
- "start": 1636.285,
- "end": 1636.455,
- "text": "sort"
- },
- {
- "id": 4998,
- "start": 1636.455,
- "end": 1636.815,
- "text": "of"
- },
- {
- "id": 4999,
- "start": 1636.815,
- "end": 1637.285,
- "text": "build"
- },
- {
- "id": 5000,
- "start": 1637.285,
- "end": 1637.565,
- "text": "out"
- },
- {
- "id": 5001,
- "start": 1637.565,
- "end": 1637.675,
- "text": "our"
- },
- {
- "id": 5002,
- "start": 1637.675,
- "end": 1638.175,
- "text": "understanding"
- },
- {
- "id": 5003,
- "start": 1638.175,
- "end": 1638.255,
- "text": "of"
- },
- {
- "id": 5004,
- "start": 1638.255,
- "end": 1638.555,
- "text": "how"
- },
- {
- "id": 5005,
- "start": 1638.555,
- "end": 1638.885,
- "text": "best"
- },
- {
- "id": 5006,
- "start": 1638.885,
- "end": 1638.965,
- "text": "to"
- },
- {
- "id": 5007,
- "start": 1638.965,
- "end": 1639.135,
- "text": "do"
- },
- {
- "id": 5008,
- "start": 1639.135,
- "end": 1640.445,
- "text": "this."
- },
- {
- "id": 5009,
- "start": 1640.445,
- "end": 1640.745,
- "text": "And"
- },
- {
- "id": 5010,
- "start": 1640.745,
- "end": 1640.875,
- "text": "you’re"
- },
- {
- "id": 5011,
- "start": 1640.875,
- "end": 1641.385,
- "text": "confident"
- },
- {
- "id": 5012,
- "start": 1641.385,
- "end": 1641.475,
- "text": "you"
- },
- {
- "id": 5013,
- "start": 1641.475,
- "end": 1641.595,
- "text": "can"
- },
- {
- "id": 5014,
- "start": 1641.595,
- "end": 1641.745,
- "text": "do"
- },
- {
- "id": 5015,
- "start": 1641.745,
- "end": 1641.915,
- "text": "that"
- },
- {
- "id": 5016,
- "start": 1644.2749999999978,
- "end": 1644.4399999999987,
- "text": "here?"
- },
- {
- "id": 5017,
- "start": 1646.805,
- "end": 1646.965,
- "text": "I"
- },
- {
- "id": 5018,
- "start": 1646.965,
- "end": 1647.295,
- "text": "think"
- },
- {
- "id": 5019,
- "start": 1648.3300000000008,
- "end": 1648.5750000000007,
- "text": "that—yes."
- },
- {
- "id": 5020,
- "start": 1649.695,
- "end": 1649.855,
- "text": "I’m"
- },
- {
- "id": 5021,
- "start": 1649.855,
- "end": 1650.435,
- "text": "confident"
- },
- {
- "id": 5022,
- "start": 1650.435,
- "end": 1650.535,
- "text": "that"
- },
- {
- "id": 5023,
- "start": 1650.535,
- "end": 1650.615,
- "text": "we"
- },
- {
- "id": 5024,
- "start": 1650.615,
- "end": 1650.715,
- "text": "can"
- },
- {
- "id": 5025,
- "start": 1650.715,
- "end": 1650.815,
- "text": "do"
- },
- {
- "id": 5026,
- "start": 1650.815,
- "end": 1650.945,
- "text": "this"
- },
- {
- "id": 5027,
- "start": 1651.5550000000003,
- "end": 1651.8999999999996,
- "text": "here."
- },
- {
- "id": 5028,
- "start": 1652.295,
- "end": 1652.855,
- "text": "Now,"
- },
- {
- "id": 5029,
- "start": 1652.855,
- "end": 1652.945,
- "text": "I"
- },
- {
- "id": 5030,
- "start": 1652.945,
- "end": 1653.085,
- "text": "think"
- },
- {
- "id": 5031,
- "start": 1653.085,
- "end": 1653.185,
- "text": "this"
- },
- {
- "id": 5032,
- "start": 1653.185,
- "end": 1653.275,
- "text": "is"
- },
- {
- "id": 5033,
- "start": 1653.275,
- "end": 1653.375,
- "text": "a"
- },
- {
- "id": 5034,
- "start": 1653.375,
- "end": 1653.755,
- "text": "really"
- },
- {
- "id": 5035,
- "start": 1653.755,
- "end": 1654.015,
- "text": "hard"
- },
- {
- "id": 5036,
- "start": 1654.245,
- "end": 1654.51,
- "text": "problem,"
- },
- {
- "id": 5037,
- "start": 1654.735,
- "end": 1655.005,
- "text": "and"
- },
- {
- "id": 5038,
- "start": 1655.005,
- "end": 1655.055,
- "text": "I"
- },
- {
- "id": 5039,
- "start": 1655.055,
- "end": 1655.305,
- "text": "think,"
- },
- {
- "id": 5040,
- "start": 1655.305,
- "end": 1655.415,
- "text": "as"
- },
- {
- "id": 5041,
- "start": 1655.415,
- "end": 1655.475,
- "text": "I"
- },
- {
- "id": 5042,
- "start": 1655.475,
- "end": 1655.695,
- "text": "said"
- },
- {
- "id": 5043,
- "start": 1655.695,
- "end": 1656.415,
- "text": "before,"
- },
- {
- "id": 5044,
- "start": 1656.415,
- "end": 1656.535,
- "text": "the"
- },
- {
- "id": 5045,
- "start": 1656.535,
- "end": 1657.035,
- "text": "potential"
- },
- {
- "id": 5046,
- "start": 1657.035,
- "end": 1657.625,
- "text": "for"
- },
- {
- "id": 5047,
- "start": 1657.625,
- "end": 1657.965,
- "text": "some"
- },
- {
- "id": 5048,
- "start": 1657.965,
- "end": 1658.135,
- "text": "sort"
- },
- {
- "id": 5049,
- "start": 1658.135,
- "end": 1658.205,
- "text": "of"
- },
- {
- "id": 5050,
- "start": 1658.205,
- "end": 1658.405,
- "text": "bad"
- },
- {
- "id": 5051,
- "start": 1658.77,
- "end": 1658.9549999999997,
- "text": "behavior"
- },
- {
- "id": 5052,
- "start": 1659.335,
- "end": 1659.505,
- "text": "is"
- },
- {
- "id": 5053,
- "start": 1659.505,
- "end": 1659.785,
- "text": "very"
- },
- {
- "id": 5054,
- "start": 1659.785,
- "end": 1660.255,
- "text": "high."
- },
- {
- "id": 5055,
- "start": 1660.255,
- "end": 1660.435,
- "text": "There"
- },
- {
- "id": 5056,
- "start": 1660.435,
- "end": 1660.775,
- "text": "will"
- },
- {
- "id": 5057,
- "start": 1660.775,
- "end": 1660.935,
- "text": "be"
- },
- {
- "id": 5058,
- "start": 1660.935,
- "end": 1661.215,
- "text": "some"
- },
- {
- "id": 5059,
- "start": 1661.215,
- "end": 1661.425,
- "text": "kind"
- },
- {
- "id": 5060,
- "start": 1661.425,
- "end": 1661.495,
- "text": "of"
- },
- {
- "id": 5061,
- "start": 1661.495,
- "end": 1662.015,
- "text": "problematic"
- },
- {
- "id": 5062,
- "start": 1662.1150000000002,
- "end": 1662.4250000000004,
- "text": "behavior."
- },
- {
- "id": 5063,
- "start": 1662.735,
- "end": 1662.835,
- "text": "The"
- },
- {
- "id": 5064,
- "start": 1662.835,
- "end": 1663.165,
- "text": "question"
- },
- {
- "id": 5065,
- "start": 1663.165,
- "end": 1663.285,
- "text": "is,"
- },
- {
- "id": 5066,
- "start": 1663.285,
- "end": 1663.405,
- "text": "do"
- },
- {
- "id": 5067,
- "start": 1663.405,
- "end": 1663.615,
- "text": "we"
- },
- {
- "id": 5068,
- "start": 1663.615,
- "end": 1663.805,
- "text": "have"
- },
- {
- "id": 5069,
- "start": 1663.805,
- "end": 1663.895,
- "text": "the"
- },
- {
- "id": 5070,
- "start": 1663.895,
- "end": 1664.235,
- "text": "teams"
- },
- {
- "id": 5071,
- "start": 1664.235,
- "end": 1664.345,
- "text": "and"
- },
- {
- "id": 5072,
- "start": 1664.345,
- "end": 1664.885,
- "text": "processes"
- },
- {
- "id": 5073,
- "start": 1664.885,
- "end": 1665.015,
- "text": "and"
- },
- {
- "id": 5074,
- "start": 1665.17,
- "end": 1665.29,
- "text": "resources"
- },
- {
- "id": 5075,
- "start": 1665.455,
- "end": 1665.565,
- "text": "in"
- },
- {
- "id": 5076,
- "start": 1665.565,
- "end": 1665.935,
- "text": "place,"
- },
- {
- "id": 5077,
- "start": 1665.935,
- "end": 1666.035,
- "text": "and"
- },
- {
- "id": 5078,
- "start": 1666.035,
- "end": 1666.155,
- "text": "does"
- },
- {
- "id": 5079,
- "start": 1666.155,
- "end": 1666.235,
- "text": "the"
- },
- {
- "id": 5080,
- "start": 1666.235,
- "end": 1667.095,
- "text": "community"
- },
- {
- "id": 5081,
- "start": 1667.095,
- "end": 1667.355,
- "text": "have"
- },
- {
- "id": 5082,
- "start": 1667.355,
- "end": 1667.425,
- "text": "the"
- },
- {
- "id": 5083,
- "start": 1667.425,
- "end": 1667.845,
- "text": "resources"
- },
- {
- "id": 5084,
- "start": 1667.845,
- "end": 1667.945,
- "text": "in"
- },
- {
- "id": 5085,
- "start": 1667.945,
- "end": 1668.165,
- "text": "place"
- },
- {
- "id": 5086,
- "start": 1668.165,
- "end": 1668.245,
- "text": "to"
- },
- {
- "id": 5087,
- "start": 1668.245,
- "end": 1668.665,
- "text": "respond"
- },
- {
- "id": 5088,
- "start": 1668.665,
- "end": 1668.725,
- "text": "to"
- },
- {
- "id": 5089,
- "start": 1668.725,
- "end": 1668.865,
- "text": "that"
- },
- {
- "id": 5090,
- "start": 1668.865,
- "end": 1669.235,
- "text": "quickly"
- },
- {
- "id": 5091,
- "start": 1669.235,
- "end": 1669.385,
- "text": "when"
- },
- {
- "id": 5092,
- "start": 1669.385,
- "end": 1669.445,
- "text": "it"
- },
- {
- "id": 5093,
- "start": 1669.445,
- "end": 1670.065,
- "text": "develops?"
- },
- {
- "id": 5094,
- "start": 1670.025,
- "end": 1670.285,
- "text": "If"
- },
- {
- "id": 5095,
- "start": 1670.2150000000001,
- "end": 1670.48,
- "text": "there"
- },
- {
- "id": 5096,
- "start": 1670.405,
- "end": 1670.675,
- "text": "were"
- },
- {
- "id": 5097,
- "start": 1670.54,
- "end": 1670.8799999999999,
- "text": "a"
- },
- {
- "id": 5098,
- "start": 1670.675,
- "end": 1671.085,
- "text": "legal"
- },
- {
- "id": 5099,
- "start": 1671.085,
- "end": 1672.345,
- "text": "standard,"
- },
- {
- "id": 5100,
- "start": 1672.345,
- "end": 1672.845,
- "text": "for"
- },
- {
- "id": 5101,
- "start": 1672.845,
- "end": 1673.275,
- "text": "instance,"
- },
- {
- "id": 5102,
- "start": 1673.275,
- "end": 1673.345,
- "text": "a"
- },
- {
- "id": 5103,
- "start": 1673.345,
- "end": 1673.655,
- "text": "legal"
- },
- {
- "id": 5104,
- "start": 1673.655,
- "end": 1674.075,
- "text": "standard"
- },
- {
- "id": 5105,
- "start": 1674.075,
- "end": 1676.745,
- "text": "that"
- },
- {
- "id": 5106,
- "start": 1676.745,
- "end": 1677.475,
- "text": "Facebook"
- },
- {
- "id": 5107,
- "start": 1677.475,
- "end": 1677.715,
- "text": "has"
- },
- {
- "id": 5108,
- "start": 1677.715,
- "end": 1677.835,
- "text": "to"
- },
- {
- "id": 5109,
- "start": 1677.835,
- "end": 1678.155,
- "text": "take"
- },
- {
- "id": 5110,
- "start": 1678.155,
- "end": 1678.545,
- "text": "down"
- },
- {
- "id": 5111,
- "start": 1678.7700000000002,
- "end": 1679.27,
- "text": "deepfake"
- },
- {
- "id": 5112,
- "start": 1679.385,
- "end": 1679.995,
- "text": "videos,"
- },
- {
- "id": 5113,
- "start": 1679.995,
- "end": 1680.175,
- "text": "for"
- },
- {
- "id": 5114,
- "start": 1680.175,
- "end": 1681.145,
- "text": "instance,"
- },
- {
- "id": 5115,
- "start": 1681.145,
- "end": 1681.395,
- "text": "would"
- },
- {
- "id": 5116,
- "start": 1681.395,
- "end": 1681.615,
- "text": "that"
- },
- {
- "id": 5117,
- "start": 1681.9,
- "end": 1682.0850000000003,
- "text": "incentivize"
- },
- {
- "id": 5118,
- "start": 1682.405,
- "end": 1682.555,
- "text": "you"
- },
- {
- "id": 5119,
- "start": 1682.555,
- "end": 1682.745,
- "text": "any"
- },
- {
- "id": 5120,
- "start": 1682.745,
- "end": 1683.455,
- "text": "further"
- },
- {
- "id": 5121,
- "start": 1683.455,
- "end": 1683.565,
- "text": "to"
- },
- {
- "id": 5122,
- "start": 1683.565,
- "end": 1684.165,
- "text": "actually"
- },
- {
- "id": 5123,
- "start": 1684.165,
- "end": 1684.355,
- "text": "get"
- },
- {
- "id": 5124,
- "start": 1684.355,
- "end": 1684.435,
- "text": "it"
- },
- {
- "id": 5125,
- "start": 1684.435,
- "end": 1684.855,
- "text": "done?"
- },
- {
- "id": 5126,
- "start": 1685.085,
- "end": 1685.5575000000003,
- "text": "You’re"
- },
- {
- "id": 5127,
- "start": 1685.7350000000001,
- "end": 1686.2600000000002,
- "text": "talking"
- },
- {
- "id": 5128,
- "start": 1686.3850000000002,
- "end": 1686.9625,
- "text": "about"
- },
- {
- "id": 5129,
- "start": 1687.035,
- "end": 1687.665,
- "text": "regulation"
- },
- {
- "id": 5130,
- "start": 1687.4,
- "end": 1687.91,
- "text": "here,"
- },
- {
- "id": 5131,
- "start": 1687.765,
- "end": 1688.155,
- "text": "right?"
- },
- {
- "id": 5132,
- "start": 1688.105,
- "end": 1688.425,
- "text": "Yeah,"
- },
- {
- "id": 5133,
- "start": 1688.4283333333335,
- "end": 1688.6716666666666,
- "text": "sure."
- },
- {
- "id": 5134,
- "start": 1688.7516666666668,
- "end": 1688.9183333333333,
- "text": "Yeah."
- },
- {
- "id": 5135,
- "start": 1689.075,
- "end": 1689.165,
- "text": "I"
- },
- {
- "id": 5136,
- "start": 1689.165,
- "end": 1689.365,
- "text": "think"
- },
- {
- "id": 5137,
- "start": 1689.365,
- "end": 1689.425,
- "text": "in"
- },
- {
- "id": 5138,
- "start": 1689.425,
- "end": 1689.495,
- "text": "the"
- },
- {
- "id": 5139,
- "start": 1689.605,
- "end": 1689.6799999999998,
- "text": "context"
- },
- {
- "id": 5140,
- "start": 1689.785,
- "end": 1689.865,
- "text": "of"
- },
- {
- "id": 5141,
- "start": 1689.865,
- "end": 1690.475,
- "text": "regulation,"
- },
- {
- "id": 5142,
- "start": 1690.475,
- "end": 1690.675,
- "text": "we’ve"
- },
- {
- "id": 5143,
- "start": 1690.675,
- "end": 1690.875,
- "text": "said"
- },
- {
- "id": 5144,
- "start": 1690.875,
- "end": 1691.175,
- "text": "very"
- },
- {
- "id": 5145,
- "start": 1691.175,
- "end": 1691.475,
- "text": "clearly"
- },
- {
- "id": 5146,
- "start": 1691.475,
- "end": 1691.635,
- "text": "that"
- },
- {
- "id": 5147,
- "start": 1691.635,
- "end": 1691.785,
- "text": "for"
- },
- {
- "id": 5148,
- "start": 1691.785,
- "end": 1692.025,
- "text": "us,"
- },
- {
- "id": 5149,
- "start": 1692.025,
- "end": 1692.175,
- "text": "it’s"
- },
- {
- "id": 5150,
- "start": 1692.175,
- "end": 1692.325,
- "text": "not"
- },
- {
- "id": 5151,
- "start": 1692.325,
- "end": 1692.355,
- "text": "a"
- },
- {
- "id": 5152,
- "start": 1692.355,
- "end": 1692.705,
- "text": "question"
- },
- {
- "id": 5153,
- "start": 1692.705,
- "end": 1692.765,
- "text": "of"
- },
- {
- "id": 5154,
- "start": 1692.765,
- "end": 1692.975,
- "text": "whether"
- },
- {
- "id": 5155,
- "start": 1692.975,
- "end": 1693.095,
- "text": "there"
- },
- {
- "id": 5156,
- "start": 1693.095,
- "end": 1693.285,
- "text": "should"
- },
- {
- "id": 5157,
- "start": 1693.285,
- "end": 1693.515,
- "text": "be;"
- },
- {
- "id": 5158,
- "start": 1693.52,
- "end": 1693.6550000000002,
- "text": "it’s"
- },
- {
- "id": 5159,
- "start": 1693.755,
- "end": 1693.795,
- "text": "a"
- },
- {
- "id": 5160,
- "start": 1693.795,
- "end": 1694.075,
- "text": "question"
- },
- {
- "id": 5161,
- "start": 1694.075,
- "end": 1694.135,
- "text": "of"
- },
- {
- "id": 5162,
- "start": 1694.135,
- "end": 1694.255,
- "text": "can"
- },
- {
- "id": 5163,
- "start": 1694.255,
- "end": 1694.335,
- "text": "we"
- },
- {
- "id": 5164,
- "start": 1694.335,
- "end": 1694.445,
- "text": "have"
- },
- {
- "id": 5165,
- "start": 1694.445,
- "end": 1694.545,
- "text": "the"
- },
- {
- "id": 5166,
- "start": 1694.545,
- "end": 1694.865,
- "text": "right"
- },
- {
- "id": 5167,
- "start": 1695.6500000000005,
- "end": 1695.8849999999993,
- "text": "regulation."
- },
- {
- "id": 5168,
- "start": 1696.755,
- "end": 1696.905,
- "text": "If"
- },
- {
- "id": 5169,
- "start": 1696.905,
- "end": 1696.985,
- "text": "you"
- },
- {
- "id": 5170,
- "start": 1696.985,
- "end": 1697.165,
- "text": "take"
- },
- {
- "id": 5171,
- "start": 1697.165,
- "end": 1697.225,
- "text": "an"
- },
- {
- "id": 5172,
- "start": 1697.225,
- "end": 1697.665,
- "text": "example"
- },
- {
- "id": 5173,
- "start": 1697.665,
- "end": 1697.825,
- "text": "like"
- },
- {
- "id": 5174,
- "start": 1697.825,
- "end": 1697.905,
- "text": "the"
- },
- {
- "id": 5175,
- "start": 1697.905,
- "end": 1698.205,
- "text": "Honest"
- },
- {
- "id": 5176,
- "start": 1698.2050000000002,
- "end": 1698.6599999999999,
- "text": "Ads"
- },
- {
- "id": 5177,
- "start": 1698.505,
- "end": 1699.115,
- "text": "Act,"
- },
- {
- "id": 5178,
- "start": 1699.115,
- "end": 1699.275,
- "text": "this"
- },
- {
- "id": 5179,
- "start": 1699.275,
- "end": 1699.365,
- "text": "is"
- },
- {
- "id": 5180,
- "start": 1699.365,
- "end": 1699.625,
- "text": "something"
- },
- {
- "id": 5181,
- "start": 1699.625,
- "end": 1699.745,
- "text": "where"
- },
- {
- "id": 5182,
- "start": 1699.745,
- "end": 1699.895,
- "text": "we"
- },
- {
- "id": 5183,
- "start": 1699.895,
- "end": 1699.995,
- "text": "have"
- },
- {
- "id": 5184,
- "start": 1699.995,
- "end": 1700.345,
- "text": "actually"
- },
- {
- "id": 5185,
- "start": 1700.345,
- "end": 1700.825,
- "text": "already"
- },
- {
- "id": 5186,
- "start": 1700.825,
- "end": 1701.985,
- "text": "implemented"
- },
- {
- "id": 5187,
- "start": 1701.985,
- "end": 1702.435,
- "text": "the"
- },
- {
- "id": 5188,
- "start": 1702.435,
- "end": 1702.995,
- "text": "controls"
- },
- {
- "id": 5189,
- "start": 1702.995,
- "end": 1703.115,
- "text": "that"
- },
- {
- "id": 5190,
- "start": 1703.115,
- "end": 1703.215,
- "text": "it"
- },
- {
- "id": 5191,
- "start": 1703.215,
- "end": 1703.325,
- "text": "would"
- },
- {
- "id": 5192,
- "start": 1703.325,
- "end": 1704.635,
- "text": "envision"
- },
- {
- "id": 5193,
- "start": 1704.635,
- "end": 1704.915,
- "text": "even"
- },
- {
- "id": 5194,
- "start": 1704.915,
- "end": 1705.065,
- "text": "though"
- },
- {
- "id": 5195,
- "start": 1705.065,
- "end": 1705.915,
- "text": "the"
- },
- {
- "id": 5196,
- "start": 1705.915,
- "end": 1706.175,
- "text": "law,"
- },
- {
- "id": 5197,
- "start": 1706.175,
- "end": 1706.365,
- "text": "which"
- },
- {
- "id": 5198,
- "start": 1706.365,
- "end": 1706.455,
- "text": "we"
- },
- {
- "id": 5199,
- "start": 1706.455,
- "end": 1707.095,
- "text": "support,"
- },
- {
- "id": 5200,
- "start": 1707.095,
- "end": 1707.545,
- "text": "hasn’t"
- },
- {
- "id": 5201,
- "start": 1707.545,
- "end": 1707.665,
- "text": "been"
- },
- {
- "id": 5202,
- "start": 1707.665,
- "end": 1707.895,
- "text": "signed"
- },
- {
- "id": 5203,
- "start": 1707.895,
- "end": 1708.055,
- "text": "into"
- },
- {
- "id": 5204,
- "start": 1708.055,
- "end": 1708.225,
- "text": "law"
- },
- {
- "id": 5205,
- "start": 1708.225,
- "end": 1708.475,
- "text": "yet."
- },
- {
- "id": 5206,
- "start": 1708.475,
- "end": 1708.955,
- "text": "So"
- },
- {
- "id": 5207,
- "start": 1708.955,
- "end": 1709.065,
- "text": "to"
- },
- {
- "id": 5208,
- "start": 1709.065,
- "end": 1709.175,
- "text": "your"
- },
- {
- "id": 5209,
- "start": 1709.175,
- "end": 1709.455,
- "text": "question"
- },
- {
- "id": 5210,
- "start": 1709.455,
- "end": 1709.565,
- "text": "about"
- },
- {
- "id": 5211,
- "start": 1709.565,
- "end": 1710.415,
- "text": "incentive,"
- },
- {
- "id": 5212,
- "start": 1710.415,
- "end": 1710.785,
- "text": "we’re"
- },
- {
- "id": 5213,
- "start": 1710.785,
- "end": 1711.265,
- "text": "focused"
- },
- {
- "id": 5214,
- "start": 1711.265,
- "end": 1711.375,
- "text": "on"
- },
- {
- "id": 5215,
- "start": 1711.375,
- "end": 1711.525,
- "text": "this"
- },
- {
- "id": 5216,
- "start": 1711.525,
- "end": 1712.015,
- "text": "problem,"
- },
- {
- "id": 5217,
- "start": 1712.015,
- "end": 1712.315,
- "text": "and"
- },
- {
- "id": 5218,
- "start": 1712.315,
- "end": 1712.445,
- "text": "we’re"
- },
- {
- "id": 5219,
- "start": 1712.445,
- "end": 1712.835,
- "text": "driving"
- },
- {
- "id": 5220,
- "start": 1712.835,
- "end": 1712.935,
- "text": "as"
- },
- {
- "id": 5221,
- "start": 1712.935,
- "end": 1713.205,
- "text": "far"
- },
- {
- "id": 5222,
- "start": 1713.205,
- "end": 1713.295,
- "text": "as"
- },
- {
- "id": 5223,
- "start": 1713.295,
- "end": 1713.365,
- "text": "we"
- },
- {
- "id": 5224,
- "start": 1713.365,
- "end": 1713.765,
- "text": "possibly"
- },
- {
- "id": 5225,
- "start": 1713.765,
- "end": 1713.905,
- "text": "can"
- },
- {
- "id": 5226,
- "start": 1713.905,
- "end": 1713.985,
- "text": "to"
- },
- {
- "id": 5227,
- "start": 1713.985,
- "end": 1714.145,
- "text": "do"
- },
- {
- "id": 5228,
- "start": 1714.125,
- "end": 1714.335,
- "text": "it,"
- },
- {
- "id": 5229,
- "start": 1714.265,
- "end": 1714.525,
- "text": "and"
- },
- {
- "id": 5230,
- "start": 1714.525,
- "end": 1714.705,
- "text": "what"
- },
- {
- "id": 5231,
- "start": 1714.705,
- "end": 1714.885,
- "text": "we’ve"
- },
- {
- "id": 5232,
- "start": 1714.885,
- "end": 1715.355,
- "text": "decided"
- },
- {
- "id": 5233,
- "start": 1715.355,
- "end": 1715.625,
- "text": "is"
- },
- {
- "id": 5234,
- "start": 1715.625,
- "end": 1715.915,
- "text": "rather"
- },
- {
- "id": 5235,
- "start": 1715.915,
- "end": 1716.085,
- "text": "than"
- },
- {
- "id": 5236,
- "start": 1716.085,
- "end": 1716.475,
- "text": "waiting"
- },
- {
- "id": 5237,
- "start": 1716.475,
- "end": 1716.615,
- "text": "for"
- },
- {
- "id": 5238,
- "start": 1716.615,
- "end": 1717.265,
- "text": "regulation,"
- },
- {
- "id": 5239,
- "start": 1717.265,
- "end": 1717.565,
- "text": "we"
- },
- {
- "id": 5240,
- "start": 1717.565,
- "end": 1717.695,
- "text": "need"
- },
- {
- "id": 5241,
- "start": 1717.695,
- "end": 1717.765,
- "text": "to"
- },
- {
- "id": 5242,
- "start": 1717.765,
- "end": 1717.925,
- "text": "put"
- },
- {
- "id": 5243,
- "start": 1717.925,
- "end": 1718.005,
- "text": "in"
- },
- {
- "id": 5244,
- "start": 1718.005,
- "end": 1718.275,
- "text": "place"
- },
- {
- "id": 5245,
- "start": 1718.275,
- "end": 1718.605,
- "text": "everything"
- },
- {
- "id": 5246,
- "start": 1718.605,
- "end": 1718.735,
- "text": "that"
- },
- {
- "id": 5247,
- "start": 1718.735,
- "end": 1718.975,
- "text": "we"
- },
- {
- "id": 5248,
- "start": 1718.975,
- "end": 1719.325,
- "text": "believe"
- },
- {
- "id": 5249,
- "start": 1719.325,
- "end": 1719.545,
- "text": "needs"
- },
- {
- "id": 5250,
- "start": 1719.545,
- "end": 1719.635,
- "text": "to"
- },
- {
- "id": 5251,
- "start": 1719.635,
- "end": 1719.745,
- "text": "be"
- },
- {
- "id": 5252,
- "start": 1719.745,
- "end": 1719.855,
- "text": "there"
- },
- {
- "id": 5253,
- "start": 1719.855,
- "end": 1719.945,
- "text": "and"
- },
- {
- "id": 5254,
- "start": 1719.945,
- "end": 1720.085,
- "text": "that"
- },
- {
- "id": 5255,
- "start": 1720.085,
- "end": 1720.255,
- "text": "we"
- },
- {
- "id": 5256,
- "start": 1720.255,
- "end": 1720.405,
- "text": "can"
- },
- {
- "id": 5257,
- "start": 1720.405,
- "end": 1720.685,
- "text": "do"
- },
- {
- "id": 5258,
- "start": 1720.685,
- "end": 1720.815,
- "text": "as"
- },
- {
- "id": 5259,
- "start": 1720.815,
- "end": 1721.115,
- "text": "quickly"
- },
- {
- "id": 5260,
- "start": 1721.115,
- "end": 1721.205,
- "text": "as"
- },
- {
- "id": 5261,
- "start": 1721.205,
- "end": 1721.625,
- "text": "possible."
- },
- {
- "id": 5262,
- "start": 1721.6616666666664,
- "end": 1722.145,
- "text": "The"
- },
- {
- "id": 5263,
- "start": 1722.1183333333329,
- "end": 1722.665,
- "text": "U.K."
- },
- {
- "id": 5264,
- "start": 1722.575,
- "end": 1723.185,
- "text": "Parliament,"
- },
- {
- "id": 5265,
- "start": 1723.185,
- "end": 1723.345,
- "text": "for"
- },
- {
- "id": 5266,
- "start": 1723.345,
- "end": 1723.735,
- "text": "instance,"
- },
- {
- "id": 5267,
- "start": 1723.735,
- "end": 1723.855,
- "text": "there"
- },
- {
- "id": 5268,
- "start": 1723.855,
- "end": 1724.415,
- "text": "was"
- },
- {
- "id": 5269,
- "start": 1724.415,
- "end": 1724.485,
- "text": "a"
- },
- {
- "id": 5270,
- "start": 1724.485,
- "end": 1724.875,
- "text": "committee"
- },
- {
- "id": 5271,
- "start": 1724.875,
- "end": 1725.065,
- "text": "there"
- },
- {
- "id": 5272,
- "start": 1725.065,
- "end": 1725.205,
- "text": "that"
- },
- {
- "id": 5273,
- "start": 1725.205,
- "end": 1725.595,
- "text": "studied"
- },
- {
- "id": 5274,
- "start": 1725.595,
- "end": 1725.685,
- "text": "the"
- },
- {
- "id": 5275,
- "start": 1725.685,
- "end": 1726.015,
- "text": "fake"
- },
- {
- "id": 5276,
- "start": 1726.015,
- "end": 1726.395,
- "text": "news"
- },
- {
- "id": 5277,
- "start": 1726.395,
- "end": 1726.915,
- "text": "problem"
- },
- {
- "id": 5278,
- "start": 1726.915,
- "end": 1727.415,
- "text": "and"
- },
- {
- "id": 5279,
- "start": 1727.415,
- "end": 1727.545,
- "text": "a"
- },
- {
- "id": 5280,
- "start": 1727.545,
- "end": 1727.715,
- "text": "lot"
- },
- {
- "id": 5281,
- "start": 1727.715,
- "end": 1727.805,
- "text": "of"
- },
- {
- "id": 5282,
- "start": 1727.805,
- "end": 1727.995,
- "text": "other"
- },
- {
- "id": 5283,
- "start": 1727.995,
- "end": 1728.445,
- "text": "problems"
- },
- {
- "id": 5284,
- "start": 1728.445,
- "end": 1728.585,
- "text": "that"
- },
- {
- "id": 5285,
- "start": 1728.585,
- "end": 1728.905,
- "text": "happened"
- },
- {
- "id": 5286,
- "start": 1728.905,
- "end": 1729.045,
- "text": "on"
- },
- {
- "id": 5287,
- "start": 1729.6499999999996,
- "end": 1729.8499999999995,
- "text": "Facebook,"
- },
- {
- "id": 5288,
- "start": 1730.395,
- "end": 1730.655,
- "text": "and"
- },
- {
- "id": 5289,
- "start": 1730.655,
- "end": 1730.915,
- "text": "they’ve"
- },
- {
- "id": 5290,
- "start": 1730.915,
- "end": 1731.505,
- "text": "recommended,"
- },
- {
- "id": 5291,
- "start": 1731.505,
- "end": 1731.675,
- "text": "for"
- },
- {
- "id": 5292,
- "start": 1731.675,
- "end": 1732.105,
- "text": "instance,"
- },
- {
- "id": 5293,
- "start": 1732.105,
- "end": 1732.285,
- "text": "that"
- },
- {
- "id": 5294,
- "start": 1732.285,
- "end": 1732.455,
- "text": "there"
- },
- {
- "id": 5295,
- "start": 1732.455,
- "end": 1732.615,
- "text": "be"
- },
- {
- "id": 5296,
- "start": 1732.615,
- "end": 1733.815,
- "text": "legislation"
- },
- {
- "id": 5297,
- "start": 1733.815,
- "end": 1734.345,
- "text": "that"
- },
- {
- "id": 5298,
- "start": 1734.345,
- "end": 1734.985,
- "text": "holds"
- },
- {
- "id": 5299,
- "start": 1734.985,
- "end": 1736.065,
- "text": "Facebook"
- },
- {
- "id": 5300,
- "start": 1736.065,
- "end": 1737.355,
- "text": "liable"
- },
- {
- "id": 5301,
- "start": 1737.355,
- "end": 1737.795,
- "text": "if"
- },
- {
- "id": 5302,
- "start": 1737.795,
- "end": 1737.925,
- "text": "they"
- },
- {
- "id": 5303,
- "start": 1737.925,
- "end": 1738.255,
- "text": "don’t"
- },
- {
- "id": 5304,
- "start": 1738.255,
- "end": 1738.565,
- "text": "take"
- },
- {
- "id": 5305,
- "start": 1738.565,
- "end": 1738.995,
- "text": "down"
- },
- {
- "id": 5306,
- "start": 1738.995,
- "end": 1739.075,
- "text": "the"
- },
- {
- "id": 5307,
- "start": 1739.075,
- "end": 1739.735,
- "text": "content"
- },
- {
- "id": 5308,
- "start": 1739.735,
- "end": 1739.935,
- "text": "of"
- },
- {
- "id": 5309,
- "start": 1739.935,
- "end": 1740.285,
- "text": "bad"
- },
- {
- "id": 5310,
- "start": 1740.285,
- "end": 1741.515,
- "text": "actors."
- },
- {
- "id": 5311,
- "start": 1741.515,
- "end": 1741.815,
- "text": "What"
- },
- {
- "id": 5312,
- "start": 1741.815,
- "end": 1742.025,
- "text": "does"
- },
- {
- "id": 5313,
- "start": 1742.025,
- "end": 1742.345,
- "text": "that"
- },
- {
- "id": 5314,
- "start": 1742.345,
- "end": 1742.695,
- "text": "sound"
- },
- {
- "id": 5315,
- "start": 1742.695,
- "end": 1742.905,
- "text": "like"
- },
- {
- "id": 5316,
- "start": 1742.905,
- "end": 1743.045,
- "text": "to"
- },
- {
- "id": 5317,
- "start": 1743.045,
- "end": 1743.625,
- "text": "you?"
- },
- {
- "id": 5318,
- "start": 1743.625,
- "end": 1743.755,
- "text": "Is"
- },
- {
- "id": 5319,
- "start": 1743.755,
- "end": 1743.935,
- "text": "that"
- },
- {
- "id": 5320,
- "start": 1743.935,
- "end": 1744.245,
- "text": "actually"
- },
- {
- "id": 5321,
- "start": 1744.245,
- "end": 1744.325,
- "text": "a"
- },
- {
- "id": 5322,
- "start": 1744.325,
- "end": 1745.715,
- "text": "feasible"
- },
- {
- "id": 5323,
- "start": 1745.715,
- "end": 1746.005,
- "text": "piece"
- },
- {
- "id": 5324,
- "start": 1746.005,
- "end": 1746.105,
- "text": "of"
- },
- {
- "id": 5325,
- "start": 1746.105,
- "end": 1747.415,
- "text": "legislation"
- },
- {
- "id": 5326,
- "start": 1747.415,
- "end": 1747.995,
- "text": "that"
- },
- {
- "id": 5327,
- "start": 1747.995,
- "end": 1748.165,
- "text": "would"
- },
- {
- "id": 5328,
- "start": 1748.165,
- "end": 1748.345,
- "text": "put"
- },
- {
- "id": 5329,
- "start": 1748.345,
- "end": 1748.445,
- "text": "the"
- },
- {
- "id": 5330,
- "start": 1748.445,
- "end": 1749.055,
- "text": "liability"
- },
- {
- "id": 5331,
- "start": 1749.055,
- "end": 1749.155,
- "text": "on"
- },
- {
- "id": 5332,
- "start": 1749.155,
- "end": 1749.235,
- "text": "a"
- },
- {
- "id": 5333,
- "start": 1749.235,
- "end": 1749.575,
- "text": "private"
- },
- {
- "id": 5334,
- "start": 1749.575,
- "end": 1749.945,
- "text": "company"
- },
- {
- "id": 5335,
- "start": 1749.945,
- "end": 1750.135,
- "text": "like"
- },
- {
- "id": 5336,
- "start": 1750.135,
- "end": 1751.315,
- "text": "Facebook"
- },
- {
- "id": 5337,
- "start": 1751.315,
- "end": 1751.535,
- "text": "to"
- },
- {
- "id": 5338,
- "start": 1751.535,
- "end": 1751.945,
- "text": "take"
- },
- {
- "id": 5339,
- "start": 1751.945,
- "end": 1753.115,
- "text": "down"
- },
- {
- "id": 5340,
- "start": 1753.115,
- "end": 1753.415,
- "text": "bad"
- },
- {
- "id": 5341,
- "start": 1753.415,
- "end": 1754.615,
- "text": "actors?"
- },
- {
- "id": 5342,
- "start": 1754.615,
- "end": 1754.785,
- "text": "We"
- },
- {
- "id": 5343,
- "start": 1754.785,
- "end": 1754.885,
- "text": "have"
- },
- {
- "id": 5344,
- "start": 1754.885,
- "end": 1754.965,
- "text": "to"
- },
- {
- "id": 5345,
- "start": 1754.965,
- "end": 1755.055,
- "text": "be"
- },
- {
- "id": 5346,
- "start": 1755.055,
- "end": 1755.265,
- "text": "really"
- },
- {
- "id": 5347,
- "start": 1755.265,
- "end": 1755.655,
- "text": "careful"
- },
- {
- "id": 5348,
- "start": 1755.655,
- "end": 1756.305,
- "text": "here"
- },
- {
- "id": 5349,
- "start": 1756.305,
- "end": 1756.465,
- "text": "in"
- },
- {
- "id": 5350,
- "start": 1756.465,
- "end": 1756.635,
- "text": "this"
- },
- {
- "id": 5351,
- "start": 1756.635,
- "end": 1757.095,
- "text": "balance,"
- },
- {
- "id": 5352,
- "start": 1757.095,
- "end": 1758.065,
- "text": "right?"
- },
- {
- "id": 5353,
- "start": 1758.065,
- "end": 1758.865,
- "text": "Open"
- },
- {
- "id": 5354,
- "start": 1758.655,
- "end": 1759.225,
- "text": "public"
- },
- {
- "id": 5355,
- "start": 1759.1500000000003,
- "end": 1759.6099999999997,
- "text": "debate,"
- },
- {
- "id": 5356,
- "start": 1759.645,
- "end": 1759.995,
- "text": "free"
- },
- {
- "id": 5357,
- "start": 1759.995,
- "end": 1760.125,
- "text": "and"
- },
- {
- "id": 5358,
- "start": 1760.125,
- "end": 1760.325,
- "text": "fair"
- },
- {
- "id": 5359,
- "start": 1760.325,
- "end": 1760.745,
- "text": "elections"
- },
- {
- "id": 5360,
- "start": 1760.745,
- "end": 1760.845,
- "text": "are"
- },
- {
- "id": 5361,
- "start": 1760.845,
- "end": 1760.935,
- "text": "the"
- },
- {
- "id": 5362,
- "start": 1760.935,
- "end": 1762.015,
- "text": "cornerstone"
- },
- {
- "id": 5363,
- "start": 1762.015,
- "end": 1762.355,
- "text": "of"
- },
- {
- "id": 5364,
- "start": 1762.355,
- "end": 1762.805,
- "text": "democratic"
- },
- {
- "id": 5365,
- "start": 1762.805,
- "end": 1763.905,
- "text": "society,"
- },
- {
- "id": 5366,
- "start": 1763.905,
- "end": 1764.225,
- "text": "and"
- },
- {
- "id": 5367,
- "start": 1764.225,
- "end": 1764.375,
- "text": "the"
- },
- {
- "id": 5368,
- "start": 1764.375,
- "end": 1764.715,
- "text": "last"
- },
- {
- "id": 5369,
- "start": 1764.715,
- "end": 1764.875,
- "text": "thing"
- },
- {
- "id": 5370,
- "start": 1764.875,
- "end": 1764.985,
- "text": "we"
- },
- {
- "id": 5371,
- "start": 1764.985,
- "end": 1765.115,
- "text": "would"
- },
- {
- "id": 5372,
- "start": 1765.115,
- "end": 1765.545,
- "text": "want"
- },
- {
- "id": 5373,
- "start": 1765.545,
- "end": 1765.715,
- "text": "is"
- },
- {
- "id": 5374,
- "start": 1765.715,
- "end": 1765.775,
- "text": "a"
- },
- {
- "id": 5375,
- "start": 1765.775,
- "end": 1766.365,
- "text": "drive"
- },
- {
- "id": 5376,
- "start": 1766.205,
- "end": 1766.73,
- "text": "toward"
- },
- {
- "id": 5377,
- "start": 1766.635,
- "end": 1767.095,
- "text": "protecting"
- },
- {
- "id": 5378,
- "start": 1767.095,
- "end": 1767.295,
- "text": "them"
- },
- {
- "id": 5379,
- "start": 1767.295,
- "end": 1767.405,
- "text": "that"
- },
- {
- "id": 5380,
- "start": 1767.405,
- "end": 1767.715,
- "text": "actually"
- },
- {
- "id": 5381,
- "start": 1767.715,
- "end": 1768.085,
- "text": "results"
- },
- {
- "id": 5382,
- "start": 1768.085,
- "end": 1768.855,
- "text": "in"
- },
- {
- "id": 5383,
- "start": 1768.855,
- "end": 1769.625,
- "text": "mitigating,"
- },
- {
- "id": 5384,
- "start": 1769.625,
- "end": 1769.835,
- "text": "in"
- },
- {
- "id": 5385,
- "start": 1769.835,
- "end": 1770.605,
- "text": "eliminating,"
- },
- {
- "id": 5386,
- "start": 1770.605,
- "end": 1770.815,
- "text": "in"
- },
- {
- "id": 5387,
- "start": 1770.815,
- "end": 1771.495,
- "text": "challenging"
- },
- {
- "id": 5388,
- "start": 1771.495,
- "end": 1771.675,
- "text": "free"
- },
- {
- "id": 5389,
- "start": 1771.675,
- "end": 1772.155,
- "text": "speech."
- },
- {
- "id": 5390,
- "start": 1772.155,
- "end": 1772.325,
- "text": "There’s"
- },
- {
- "id": 5391,
- "start": 1772.325,
- "end": 1772.385,
- "text": "a"
- },
- {
- "id": 5392,
- "start": 1772.385,
- "end": 1772.825,
- "text": "balance"
- },
- {
- "id": 5393,
- "start": 1772.825,
- "end": 1772.995,
- "text": "here,"
- },
- {
- "id": 5394,
- "start": 1772.995,
- "end": 1773.085,
- "text": "and"
- },
- {
- "id": 5395,
- "start": 1773.085,
- "end": 1773.155,
- "text": "the"
- },
- {
- "id": 5396,
- "start": 1773.155,
- "end": 1773.335,
- "text": "thing"
- },
- {
- "id": 5397,
- "start": 1773.335,
- "end": 1773.445,
- "text": "that"
- },
- {
- "id": 5398,
- "start": 1773.445,
- "end": 1773.505,
- "text": "I"
- },
- {
- "id": 5399,
- "start": 1773.505,
- "end": 1773.815,
- "text": "worry"
- },
- {
- "id": 5400,
- "start": 1773.815,
- "end": 1774.415,
- "text": "about"
- },
- {
- "id": 5401,
- "start": 1774.415,
- "end": 1774.565,
- "text": "is"
- },
- {
- "id": 5402,
- "start": 1774.565,
- "end": 1774.835,
- "text": "making"
- },
- {
- "id": 5403,
- "start": 1774.835,
- "end": 1775.045,
- "text": "sure"
- },
- {
- "id": 5404,
- "start": 1775.045,
- "end": 1775.195,
- "text": "that"
- },
- {
- "id": 5405,
- "start": 1775.195,
- "end": 1775.315,
- "text": "we"
- },
- {
- "id": 5406,
- "start": 1775.315,
- "end": 1775.435,
- "text": "can"
- },
- {
- "id": 5407,
- "start": 1775.435,
- "end": 1775.785,
- "text": "strike"
- },
- {
- "id": 5408,
- "start": 1775.785,
- "end": 1775.935,
- "text": "that"
- },
- {
- "id": 5409,
- "start": 1775.935,
- "end": 1776.765,
- "text": "balance."
- },
- {
- "id": 5410,
- "start": 1776.765,
- "end": 1777.465,
- "text": "Explain"
- },
- {
- "id": 5411,
- "start": 1777.465,
- "end": 1777.645,
- "text": "that"
- },
- {
- "id": 5412,
- "start": 1777.645,
- "end": 1777.775,
- "text": "to"
- },
- {
- "id": 5413,
- "start": 1777.775,
- "end": 1777.975,
- "text": "me"
- },
- {
- "id": 5414,
- "start": 1777.975,
- "end": 1778.595,
- "text": "then."
- },
- {
- "id": 5415,
- "start": 1778.595,
- "end": 1779.025,
- "text": "You"
- },
- {
- "id": 5416,
- "start": 1779.025,
- "end": 1779.355,
- "text": "think"
- },
- {
- "id": 5417,
- "start": 1779.355,
- "end": 1779.525,
- "text": "that"
- },
- {
- "id": 5418,
- "start": 1779.525,
- "end": 1779.705,
- "text": "if"
- },
- {
- "id": 5419,
- "start": 1779.705,
- "end": 1779.845,
- "text": "you"
- },
- {
- "id": 5420,
- "start": 1779.845,
- "end": 1779.995,
- "text": "were"
- },
- {
- "id": 5421,
- "start": 1779.995,
- "end": 1781.125,
- "text": "mandated"
- },
- {
- "id": 5422,
- "start": 1781.125,
- "end": 1781.265,
- "text": "to"
- },
- {
- "id": 5423,
- "start": 1781.265,
- "end": 1781.555,
- "text": "take"
- },
- {
- "id": 5424,
- "start": 1781.555,
- "end": 1781.835,
- "text": "down"
- },
- {
- "id": 5425,
- "start": 1781.835,
- "end": 1782.125,
- "text": "bad"
- },
- {
- "id": 5426,
- "start": 1782.125,
- "end": 1782.775,
- "text": "content"
- },
- {
- "id": 5427,
- "start": 1782.775,
- "end": 1783.355,
- "text": "that"
- },
- {
- "id": 5428,
- "start": 1783.355,
- "end": 1783.575,
- "text": "that"
- },
- {
- "id": 5429,
- "start": 1783.575,
- "end": 1783.735,
- "text": "would"
- },
- {
- "id": 5430,
- "start": 1783.735,
- "end": 1784.225,
- "text": "somehow"
- },
- {
- "id": 5431,
- "start": 1784.225,
- "end": 1784.735,
- "text": "mitigate"
- },
- {
- "id": 5432,
- "start": 1784.735,
- "end": 1784.935,
- "text": "free"
- },
- {
- "id": 5433,
- "start": 1784.935,
- "end": 1785.985,
- "text": "speech?"
- },
- {
- "id": 5434,
- "start": 1785.985,
- "end": 1786.105,
- "text": "I"
- },
- {
- "id": 5435,
- "start": 1786.105,
- "end": 1786.385,
- "text": "think"
- },
- {
- "id": 5436,
- "start": 1786.385,
- "end": 1787.435,
- "text": "that"
- },
- {
- "id": 5437,
- "start": 1787.435,
- "end": 1787.625,
- "text": "the"
- },
- {
- "id": 5438,
- "start": 1787.625,
- "end": 1788.035,
- "text": "speed"
- },
- {
- "id": 5439,
- "start": 1788.035,
- "end": 1788.125,
- "text": "at"
- },
- {
- "id": 5440,
- "start": 1788.125,
- "end": 1788.325,
- "text": "which"
- },
- {
- "id": 5441,
- "start": 1788.325,
- "end": 1788.445,
- "text": "you"
- },
- {
- "id": 5442,
- "start": 1788.445,
- "end": 1789.095,
- "text": "react"
- },
- {
- "id": 5443,
- "start": 1789.095,
- "end": 1789.235,
- "text": "and"
- },
- {
- "id": 5444,
- "start": 1789.235,
- "end": 1789.315,
- "text": "our"
- },
- {
- "id": 5445,
- "start": 1789.315,
- "end": 1789.775,
- "text": "ability"
- },
- {
- "id": 5446,
- "start": 1789.775,
- "end": 1789.845,
- "text": "to"
- },
- {
- "id": 5447,
- "start": 1790.1750000000002,
- "end": 1790.285,
- "text": "analyze"
- },
- {
- "id": 5448,
- "start": 1790.575,
- "end": 1790.725,
- "text": "is"
- },
- {
- "id": 5449,
- "start": 1790.725,
- "end": 1790.935,
- "text": "really"
- },
- {
- "id": 5450,
- "start": 1790.935,
- "end": 1792.205,
- "text": "important."
- },
- {
- "id": 5451,
- "start": 1792.205,
- "end": 1792.645,
- "text": "We"
- },
- {
- "id": 5452,
- "start": 1792.645,
- "end": 1792.895,
- "text": "have"
- },
- {
- "id": 5453,
- "start": 1792.895,
- "end": 1793.325,
- "text": "positioned"
- },
- {
- "id": 5454,
- "start": 1793.325,
- "end": 1793.795,
- "text": "ourselves"
- },
- {
- "id": 5455,
- "start": 1793.795,
- "end": 1793.875,
- "text": "to"
- },
- {
- "id": 5456,
- "start": 1793.875,
- "end": 1794.015,
- "text": "be"
- },
- {
- "id": 5457,
- "start": 1794.015,
- "end": 1794.165,
- "text": "able"
- },
- {
- "id": 5458,
- "start": 1794.165,
- "end": 1794.265,
- "text": "to"
- },
- {
- "id": 5459,
- "start": 1794.265,
- "end": 1794.715,
- "text": "identify"
- },
- {
- "id": 5460,
- "start": 1794.715,
- "end": 1794.845,
- "text": "and"
- },
- {
- "id": 5461,
- "start": 1794.845,
- "end": 1795.065,
- "text": "take"
- },
- {
- "id": 5462,
- "start": 1795.065,
- "end": 1795.285,
- "text": "down"
- },
- {
- "id": 5463,
- "start": 1795.285,
- "end": 1795.575,
- "text": "bad"
- },
- {
- "id": 5464,
- "start": 1795.575,
- "end": 1796.065,
- "text": "content,"
- },
- {
- "id": 5465,
- "start": 1796.065,
- "end": 1796.575,
- "text": "harmful"
- },
- {
- "id": 5466,
- "start": 1796.575,
- "end": 1797.065,
- "text": "content,"
- },
- {
- "id": 5467,
- "start": 1797.065,
- "end": 1797.515,
- "text": "particularly"
- },
- {
- "id": 5468,
- "start": 1797.515,
- "end": 1797.935,
- "text": "content"
- },
- {
- "id": 5469,
- "start": 1797.935,
- "end": 1798.045,
- "text": "that"
- },
- {
- "id": 5470,
- "start": 1798.045,
- "end": 1798.525,
- "text": "violates"
- },
- {
- "id": 5471,
- "start": 1798.525,
- "end": 1798.585,
- "text": "our"
- },
- {
- "id": 5472,
- "start": 1798.585,
- "end": 1798.985,
- "text": "Community"
- },
- {
- "id": 5473,
- "start": 1798.985,
- "end": 1800.325,
- "text": "Standards,"
- },
- {
- "id": 5474,
- "start": 1800.325,
- "end": 1801.215,
- "text": "now"
- },
- {
- "id": 5475,
- "start": 1801.215,
- "end": 1801.485,
- "text": "under"
- },
- {
- "id": 5476,
- "start": 1801.485,
- "end": 1801.585,
- "text": "our"
- },
- {
- "id": 5477,
- "start": 1801.585,
- "end": 1802.205,
- "text": "policies,"
- },
- {
- "id": 5478,
- "start": 1802.205,
- "end": 1802.375,
- "text": "with"
- },
- {
- "id": 5479,
- "start": 1802.375,
- "end": 1802.775,
- "text": "incredible"
- },
- {
- "id": 5480,
- "start": 1802.775,
- "end": 1803.085,
- "text": "speed."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 1.58,
- "end": 9.59,
- "speaker": "James Jacoby"
- },
- {
- "id": 1,
- "start": 10.14,
- "end": 20.43,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 2,
- "start": 20.43,
- "end": 25.4,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 3,
- "start": 25.4,
- "end": 29.8,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 4,
- "start": 28.32,
- "end": 31.81,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 5,
- "start": 31.81,
- "end": 39.24,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 6,
- "start": 39.54,
- "end": 43.52,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 7,
- "start": 43.52,
- "end": 45.18000000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 8,
- "start": 45.32,
- "end": 47.05,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 9,
- "start": 47.05,
- "end": 51.04,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 10,
- "start": 50.65,
- "end": 53.755,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 11,
- "start": 53.9,
- "end": 64.88,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 12,
- "start": 64.88,
- "end": 73.73,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 13,
- "start": 73.73,
- "end": 76.33,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 14,
- "start": 76.33,
- "end": 82.6,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 15,
- "start": 81.45,
- "end": 89.315,
- "speaker": "James Jacoby"
- },
- {
- "id": 16,
- "start": 89.64,
- "end": 90.89,
- "speaker": "James Jacoby"
- },
- {
- "id": 17,
- "start": 90.89,
- "end": 99.44,
- "speaker": "James Jacoby"
- },
- {
- "id": 18,
- "start": 99.44,
- "end": 104.84,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 19,
- "start": 104.84,
- "end": 113.57,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 20,
- "start": 113.57,
- "end": 118.44075000000004,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 21,
- "start": 119.0315,
- "end": 134.89300000000003,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 22,
- "start": 134.671,
- "end": 146.003,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 23,
- "start": 146.003,
- "end": 151.983,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 24,
- "start": 151.983,
- "end": 155.8455,
- "speaker": "James Jacoby"
- },
- {
- "id": 25,
- "start": 155.98300000000003,
- "end": 156.16799999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 26,
- "start": 156.28300000000002,
- "end": 162.613,
- "speaker": "James Jacoby"
- },
- {
- "id": 27,
- "start": 162.753,
- "end": 171.573,
- "speaker": "James Jacoby"
- },
- {
- "id": 28,
- "start": 171.573,
- "end": 177.063,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 29,
- "start": 177.063,
- "end": 192.71800000000002,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 30,
- "start": 192.963,
- "end": 198.363,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 31,
- "start": 198.363,
- "end": 206.303,
- "speaker": "James Jacoby"
- },
- {
- "id": 32,
- "start": 206.303,
- "end": 207.633,
- "speaker": "James Jacoby"
- },
- {
- "id": 33,
- "start": 207.633,
- "end": 209.253,
- "speaker": "James Jacoby"
- },
- {
- "id": 34,
- "start": 209.253,
- "end": 210.793,
- "speaker": "James Jacoby"
- },
- {
- "id": 35,
- "start": 210.793,
- "end": 214.233,
- "speaker": "James Jacoby"
- },
- {
- "id": 36,
- "start": 214.223,
- "end": 216.92800000000003,
- "speaker": "James Jacoby"
- },
- {
- "id": 37,
- "start": 217.143,
- "end": 226.48800000000003,
- "speaker": "James Jacoby"
- },
- {
- "id": 38,
- "start": 226.833,
- "end": 246.213,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 39,
- "start": 246.213,
- "end": 257.503,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 40,
- "start": 257.113,
- "end": 259.163,
- "speaker": "James Jacoby"
- },
- {
- "id": 41,
- "start": 259.163,
- "end": 266.843,
- "speaker": "James Jacoby"
- },
- {
- "id": 42,
- "start": 266.843,
- "end": 277.028,
- "speaker": "James Jacoby"
- },
- {
- "id": 43,
- "start": 277.393,
- "end": 282.563,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 44,
- "start": 282.563,
- "end": 288.133,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 45,
- "start": 288.133,
- "end": 291.513,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 46,
- "start": 291.513,
- "end": 299.473,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 47,
- "start": 299.473,
- "end": 312.073,
- "speaker": "James Jacoby"
- },
- {
- "id": 48,
- "start": 312.073,
- "end": 313.603,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 49,
- "start": 313.603,
- "end": 319.268,
- "speaker": "James Jacoby"
- },
- {
- "id": 50,
- "start": 319.663,
- "end": 323.873,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 51,
- "start": 323.873,
- "end": 334.303,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 52,
- "start": 334.303,
- "end": 339.243,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 53,
- "start": 339.243,
- "end": 342.853,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 54,
- "start": 342.853,
- "end": 351.313,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 55,
- "start": 351.413,
- "end": 358.303,
- "speaker": "James Jacoby"
- },
- {
- "id": 56,
- "start": 358.303,
- "end": 361.08625,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 57,
- "start": 361.273,
- "end": 372.899,
- "speaker": "James Jacoby"
- },
- {
- "id": 58,
- "start": 373.184,
- "end": 377.784,
- "speaker": "James Jacoby"
- },
- {
- "id": 59,
- "start": 377.784,
- "end": 383.884,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 60,
- "start": 383.884,
- "end": 389.584,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 61,
- "start": 389.584,
- "end": 392.284,
- "speaker": "James Jacoby"
- },
- {
- "id": 62,
- "start": 391.454,
- "end": 409.884,
- "speaker": "James Jacoby"
- },
- {
- "id": 63,
- "start": 409.884,
- "end": 413.864,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 64,
- "start": 413.864,
- "end": 430.114,
- "speaker": "James Jacoby"
- },
- {
- "id": 65,
- "start": 430.114,
- "end": 440.609,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 66,
- "start": 440.92400000000004,
- "end": 444.644,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 67,
- "start": 444.61733333333336,
- "end": 453.62399999999997,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 68,
- "start": 453.754,
- "end": 459.664,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 69,
- "start": 459.664,
- "end": 483.7490000000001,
- "speaker": "James Jacoby"
- },
- {
- "id": 70,
- "start": 484.294,
- "end": 495.504,
- "speaker": "James Jacoby"
- },
- {
- "id": 71,
- "start": 495.504,
- "end": 504.644,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 72,
- "start": 504.644,
- "end": 507.604,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 73,
- "start": 507.604,
- "end": 521.304,
- "speaker": "James Jacoby"
- },
- {
- "id": 74,
- "start": 521.304,
- "end": 523.0920000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 75,
- "start": 523.226,
- "end": 523.498,
- "speaker": "James Jacoby"
- },
- {
- "id": 76,
- "start": 523.624,
- "end": 528.934,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 77,
- "start": 528.934,
- "end": 533.604,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 78,
- "start": 533.604,
- "end": 537.414,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 79,
- "start": 537.399,
- "end": 548.384,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 80,
- "start": 548.604,
- "end": 550.594,
- "speaker": "James Jacoby"
- },
- {
- "id": 81,
- "start": 550.594,
- "end": 553.1789999999996,
- "speaker": "James Jacoby"
- },
- {
- "id": 82,
- "start": 554.154,
- "end": 564.824,
- "speaker": "James Jacoby"
- },
- {
- "id": 83,
- "start": 564.824,
- "end": 570.364,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 84,
- "start": 570.364,
- "end": 572.104,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 85,
- "start": 572.104,
- "end": 587.844,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 86,
- "start": 587.844,
- "end": 596.2240000000002,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 87,
- "start": 596.834,
- "end": 605.2320000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 88,
- "start": 605.812,
- "end": 610.822,
- "speaker": "James Jacoby"
- },
- {
- "id": 89,
- "start": 610.9886666666667,
- "end": 615.377,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 90,
- "start": 615.782,
- "end": 623.272,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 91,
- "start": 623.272,
- "end": 631.012,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 92,
- "start": 631.012,
- "end": 635.212,
- "speaker": "James Jacoby"
- },
- {
- "id": 93,
- "start": 635.212,
- "end": 636.0269999999999,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 94,
- "start": 636.232,
- "end": 642.642,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 95,
- "start": 642.5245000000001,
- "end": 644.342,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 96,
- "start": 644.342,
- "end": 656.402,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 97,
- "start": 656.612,
- "end": 658.352,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 98,
- "start": 658.352,
- "end": 660.792,
- "speaker": "James Jacoby"
- },
- {
- "id": 99,
- "start": 660.792,
- "end": 665.317,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 100,
- "start": 665.392,
- "end": 669.182,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 101,
- "start": 669.182,
- "end": 672.592,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 102,
- "start": 672.592,
- "end": 673.612,
- "speaker": "James Jacoby"
- },
- {
- "id": 103,
- "start": 673.612,
- "end": 680.012,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 104,
- "start": 680.012,
- "end": 681.712,
- "speaker": "James Jacoby"
- },
- {
- "id": 105,
- "start": 681.712,
- "end": 684.052,
- "speaker": "James Jacoby"
- },
- {
- "id": 106,
- "start": 684.052,
- "end": 688.822,
- "speaker": "James Jacoby"
- },
- {
- "id": 107,
- "start": 688.822,
- "end": 692.112,
- "speaker": "James Jacoby"
- },
- {
- "id": 108,
- "start": 692.112,
- "end": 699.642,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 109,
- "start": 699.642,
- "end": 711.462,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 110,
- "start": 712.002,
- "end": 724.954,
- "speaker": "James Jacoby"
- },
- {
- "id": 111,
- "start": 725.0540000000001,
- "end": 745.444,
- "speaker": "James Jacoby"
- },
- {
- "id": 112,
- "start": 745.444,
- "end": 752.804,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 113,
- "start": 752.804,
- "end": 758.5965000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 114,
- "start": 758.744,
- "end": 767.599,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 115,
- "start": 767.844,
- "end": 772.364,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 116,
- "start": 772.364,
- "end": 775.694,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 117,
- "start": 775.694,
- "end": 777.934,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 118,
- "start": 778.184,
- "end": 790.194,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 119,
- "start": 790.194,
- "end": 804.944,
- "speaker": "James Jacoby"
- },
- {
- "id": 120,
- "start": 804.944,
- "end": 814.134,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 121,
- "start": 814.134,
- "end": 816.944,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 122,
- "start": 816.944,
- "end": 818.674,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 123,
- "start": 818.674,
- "end": 828.684,
- "speaker": "James Jacoby"
- },
- {
- "id": 124,
- "start": 828.574,
- "end": 832.694,
- "speaker": "James Jacoby"
- },
- {
- "id": 125,
- "start": 832.694,
- "end": 834.824,
- "speaker": "James Jacoby"
- },
- {
- "id": 126,
- "start": 834.994,
- "end": 837.924,
- "speaker": "James Jacoby"
- },
- {
- "id": 127,
- "start": 837.924,
- "end": 844.304,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 128,
- "start": 844.304,
- "end": 852.464,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 129,
- "start": 852.464,
- "end": 870.7273333333333,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 130,
- "start": 870.764,
- "end": 874.784,
- "speaker": "James Jacoby"
- },
- {
- "id": 131,
- "start": 874.784,
- "end": 890.564,
- "speaker": "James Jacoby"
- },
- {
- "id": 132,
- "start": 890.564,
- "end": 894.974,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 133,
- "start": 895.094,
- "end": 902.194,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 134,
- "start": 902.194,
- "end": 916.894,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 135,
- "start": 916.894,
- "end": 918.774,
- "speaker": "James Jacoby"
- },
- {
- "id": 136,
- "start": 918.774,
- "end": 920.1590000000001,
- "speaker": "James Jacoby"
- },
- {
- "id": 137,
- "start": 920.194,
- "end": 937.374,
- "speaker": "James Jacoby"
- },
- {
- "id": 138,
- "start": 937.374,
- "end": 939.014,
- "speaker": "James Jacoby"
- },
- {
- "id": 139,
- "start": 939.014,
- "end": 941.6990000000005,
- "speaker": "James Jacoby"
- },
- {
- "id": 140,
- "start": 943.404,
- "end": 951.524,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 141,
- "start": 951.5590000000001,
- "end": 958.3240000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 142,
- "start": 958.564,
- "end": 962.554,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 143,
- "start": 962.554,
- "end": 968.867,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 144,
- "start": 968.867,
- "end": 973.3570000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 145,
- "start": 973.287,
- "end": 974.467,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 146,
- "start": 974.467,
- "end": 977.047,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 147,
- "start": 977.047,
- "end": 981.057,
- "speaker": "James Jacoby"
- },
- {
- "id": 148,
- "start": 981.057,
- "end": 985.227,
- "speaker": "James Jacoby"
- },
- {
- "id": 149,
- "start": 985.227,
- "end": 997.047,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 150,
- "start": 997.047,
- "end": 1005.7669999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 151,
- "start": 1006.607,
- "end": 1023.667,
- "speaker": "James Jacoby"
- },
- {
- "id": 152,
- "start": 1023.667,
- "end": 1027.797,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 153,
- "start": 1027.797,
- "end": 1030.297,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 154,
- "start": 1030.297,
- "end": 1032.667,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 155,
- "start": 1032.4803333333332,
- "end": 1041.2919999999997,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 156,
- "start": 1041.327,
- "end": 1048.697,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 157,
- "start": 1048.697,
- "end": 1055.9470000000001,
- "speaker": "James Jacoby"
- },
- {
- "id": 158,
- "start": 1056.137,
- "end": 1063.617,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 159,
- "start": 1063.617,
- "end": 1067.257,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 160,
- "start": 1067.257,
- "end": 1075.667,
- "speaker": "James Jacoby"
- },
- {
- "id": 161,
- "start": 1075.407,
- "end": 1076.067,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 162,
- "start": 1076.157,
- "end": 1090.4470000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 163,
- "start": 1090.507,
- "end": 1100.3470000000004,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 164,
- "start": 1100.8036666666667,
- "end": 1118.082,
- "speaker": "James Jacoby"
- },
- {
- "id": 165,
- "start": 1118.137,
- "end": 1125.202,
- "speaker": "James Jacoby"
- },
- {
- "id": 166,
- "start": 1125.567,
- "end": 1130.867,
- "speaker": "James Jacoby"
- },
- {
- "id": 167,
- "start": 1130.867,
- "end": 1138.5420000000001,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 168,
- "start": 1138.837,
- "end": 1160.287,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 169,
- "start": 1160.287,
- "end": 1169.137,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 170,
- "start": 1168.677,
- "end": 1172.4170000000004,
- "speaker": "James Jacoby"
- },
- {
- "id": 171,
- "start": 1173.317,
- "end": 1177.657,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 172,
- "start": 1177.657,
- "end": 1184.5369999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 173,
- "start": 1184.817,
- "end": 1190.052,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 174,
- "start": 1190.507,
- "end": 1199.077,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 175,
- "start": 1199.392,
- "end": 1214.828,
- "speaker": "James Jacoby"
- },
- {
- "id": 176,
- "start": 1214.828,
- "end": 1225.8929999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 177,
- "start": 1226.068,
- "end": 1230.2379999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 178,
- "start": 1230.688,
- "end": 1232.968,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 179,
- "start": 1232.968,
- "end": 1246.1280000000002,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 180,
- "start": 1246.448,
- "end": 1256.348,
- "speaker": "James Jacoby"
- },
- {
- "id": 181,
- "start": 1256.348,
- "end": 1268.2379999999998,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 182,
- "start": 1268.748,
- "end": 1278.963,
- "speaker": "James Jacoby"
- },
- {
- "id": 183,
- "start": 1279.218,
- "end": 1286.8080000000002,
- "speaker": "James Jacoby"
- },
- {
- "id": 184,
- "start": 1287.288,
- "end": 1287.918,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 185,
- "start": 1287.848,
- "end": 1294.248,
- "speaker": "James Jacoby"
- },
- {
- "id": 186,
- "start": 1294.248,
- "end": 1295.808,
- "speaker": "James Jacoby"
- },
- {
- "id": 187,
- "start": 1295.808,
- "end": 1297.858,
- "speaker": "James Jacoby"
- },
- {
- "id": 188,
- "start": 1297.858,
- "end": 1300.118,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 189,
- "start": 1300.118,
- "end": 1312.948,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 190,
- "start": 1312.948,
- "end": 1323.268,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 191,
- "start": 1323.268,
- "end": 1326.3680000000004,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 192,
- "start": 1326.403,
- "end": 1328.803,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 193,
- "start": 1328.793,
- "end": 1333.343,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 194,
- "start": 1333.343,
- "end": 1336.053,
- "speaker": "James Jacoby"
- },
- {
- "id": 195,
- "start": 1336.7863333333335,
- "end": 1339.353,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 196,
- "start": 1340.1679999999997,
- "end": 1340.5529999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 197,
- "start": 1341.643,
- "end": 1348.023,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 198,
- "start": 1348.023,
- "end": 1354.1879999999999,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 199,
- "start": 1354.223,
- "end": 1358.643,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 200,
- "start": 1358.643,
- "end": 1367.033,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 201,
- "start": 1367.033,
- "end": 1372.943,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 202,
- "start": 1372.943,
- "end": 1392.2580000000003,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 203,
- "start": 1392.403,
- "end": 1397.013,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 204,
- "start": 1397.013,
- "end": 1403.133,
- "speaker": "James Jacoby"
- },
- {
- "id": 205,
- "start": 1403.133,
- "end": 1407.9663333333333,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 206,
- "start": 1408.163,
- "end": 1417.853,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 207,
- "start": 1417.853,
- "end": 1425.808,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 208,
- "start": 1425.823,
- "end": 1426.633,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 209,
- "start": 1426.633,
- "end": 1427.613,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 210,
- "start": 1427.613,
- "end": 1430.173,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 211,
- "start": 1430.173,
- "end": 1433.443,
- "speaker": "James Jacoby"
- },
- {
- "id": 212,
- "start": 1433.443,
- "end": 1434.8796666666667,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 213,
- "start": 1434.953,
- "end": 1443.533,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 214,
- "start": 1443.533,
- "end": 1462.378,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 215,
- "start": 1462.378,
- "end": 1471.628,
- "speaker": "James Jacoby"
- },
- {
- "id": 216,
- "start": 1471.628,
- "end": 1478.163,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 217,
- "start": 1478.438,
- "end": 1490.463,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 218,
- "start": 1490.788,
- "end": 1517.5046666666667,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 219,
- "start": 1517.5546666666667,
- "end": 1519.388,
- "speaker": "James Jacoby"
- },
- {
- "id": 220,
- "start": 1519.388,
- "end": 1520.988,
- "speaker": "James Jacoby"
- },
- {
- "id": 221,
- "start": 1520.988,
- "end": 1540.188,
- "speaker": "James Jacoby"
- },
- {
- "id": 222,
- "start": 1540.188,
- "end": 1553.8880000000004,
- "speaker": "James Jacoby"
- },
- {
- "id": 223,
- "start": 1554.638,
- "end": 1558.098,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 224,
- "start": 1558.098,
- "end": 1560.858,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 225,
- "start": 1560.858,
- "end": 1568.625,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 226,
- "start": 1568.625,
- "end": 1582.79,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 227,
- "start": 1582.915,
- "end": 1584.8899999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 228,
- "start": 1585.225,
- "end": 1593.165,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 229,
- "start": 1593.165,
- "end": 1607.415,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 230,
- "start": 1607.415,
- "end": 1623.915,
- "speaker": "James Jacoby"
- },
- {
- "id": 231,
- "start": 1623.915,
- "end": 1624.665,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 232,
- "start": 1624.505,
- "end": 1633.1550000000002,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 233,
- "start": 1633.145,
- "end": 1640.445,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 234,
- "start": 1640.445,
- "end": 1644.4399999999987,
- "speaker": "James Jacoby"
- },
- {
- "id": 235,
- "start": 1646.805,
- "end": 1648.5750000000007,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 236,
- "start": 1649.695,
- "end": 1651.8999999999996,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 237,
- "start": 1652.295,
- "end": 1660.255,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 238,
- "start": 1660.255,
- "end": 1662.4250000000004,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 239,
- "start": 1662.735,
- "end": 1670.065,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 240,
- "start": 1670.025,
- "end": 1684.855,
- "speaker": "James Jacoby"
- },
- {
- "id": 241,
- "start": 1685.085,
- "end": 1688.155,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 242,
- "start": 1688.105,
- "end": 1688.6716666666666,
- "speaker": "James Jacoby"
- },
- {
- "id": 243,
- "start": 1688.7516666666668,
- "end": 1688.9183333333333,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 244,
- "start": 1689.075,
- "end": 1695.8849999999993,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 245,
- "start": 1696.755,
- "end": 1708.475,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 246,
- "start": 1708.475,
- "end": 1721.625,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 247,
- "start": 1721.6616666666664,
- "end": 1741.515,
- "speaker": "James Jacoby"
- },
- {
- "id": 248,
- "start": 1741.515,
- "end": 1743.625,
- "speaker": "James Jacoby"
- },
- {
- "id": 249,
- "start": 1743.625,
- "end": 1754.615,
- "speaker": "James Jacoby"
- },
- {
- "id": 250,
- "start": 1754.615,
- "end": 1758.065,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 251,
- "start": 1758.065,
- "end": 1772.155,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 252,
- "start": 1772.155,
- "end": 1776.765,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 253,
- "start": 1776.765,
- "end": 1778.595,
- "speaker": "James Jacoby"
- },
- {
- "id": 254,
- "start": 1778.595,
- "end": 1785.985,
- "speaker": "James Jacoby"
- },
- {
- "id": 255,
- "start": 1785.985,
- "end": 1792.205,
- "speaker": "Nathan Gleicher"
- },
- {
- "id": 256,
- "start": 1792.205,
- "end": 1803.085,
- "speaker": "Nathan Gleicher"
- }
- ]
- }
- },
- {
- "_id": "1002cjw29xii80000ird74yb19swa",
- "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
- "title": "Naomi Gleit",
- "description": "Naomi Gleit, Facebook VP of Social Good. Interview for PBS Frontline, The Facebook Dilemma",
- "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Naomi+Gleit-l-Ivr6kq6fk.mp4",
- "clipName": "The Facebook Dilemma - Naomi Gleit-l-Ivr6kq6fk.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "id": 0,
- "start": 1.44,
- "end": 1.75,
- "text": "So"
- },
- {
- "id": 1,
- "start": 1.75,
- "end": 1.94,
- "text": "if"
- },
- {
- "id": 2,
- "start": 1.94,
- "end": 2.04,
- "text": "you"
- },
- {
- "id": 3,
- "start": 2.285,
- "end": 2.505,
- "text": "can"
- },
- {
- "id": 4,
- "start": 2.63,
- "end": 2.97,
- "text": "think"
- },
- {
- "id": 5,
- "start": 2.97,
- "end": 3.31,
- "text": "back"
- },
- {
- "id": 6,
- "start": 3.31,
- "end": 3.44,
- "text": "and"
- },
- {
- "id": 7,
- "start": 3.44,
- "end": 3.85,
- "text": "situate"
- },
- {
- "id": 8,
- "start": 3.85,
- "end": 4.19,
- "text": "yourself"
- },
- {
- "id": 9,
- "start": 4.19,
- "end": 4.47,
- "text": "back"
- },
- {
- "id": 10,
- "start": 4.47,
- "end": 5.05,
- "text": "in"
- },
- {
- "id": 11,
- "start": 4.91,
- "end": 5.73,
- "text": "November"
- },
- {
- "id": 12,
- "start": 5.970000000000001,
- "end": 6.5600000000000005,
- "text": "2016"
- },
- {
- "id": 13,
- "start": 7.03,
- "end": 7.39,
- "text": "and"
- },
- {
- "id": 14,
- "start": 7.39,
- "end": 7.8,
- "text": "what"
- },
- {
- "id": 15,
- "start": 7.8,
- "end": 8.06,
- "text": "that"
- },
- {
- "id": 16,
- "start": 8.06,
- "end": 8.43,
- "text": "moment"
- },
- {
- "id": 17,
- "start": 8.43,
- "end": 8.8,
- "text": "was"
- },
- {
- "id": 18,
- "start": 8.8,
- "end": 9.32,
- "text": "like"
- },
- {
- "id": 19,
- "start": 9.32,
- "end": 9.89,
- "text": "here"
- },
- {
- "id": 20,
- "start": 9.88,
- "end": 10.71,
- "text": "internally"
- },
- {
- "id": 21,
- "start": 10.6,
- "end": 11.16,
- "text": "and"
- },
- {
- "id": 22,
- "start": 11.32,
- "end": 11.61,
- "text": "what"
- },
- {
- "id": 23,
- "start": 11.61,
- "end": 11.79,
- "text": "was"
- },
- {
- "id": 24,
- "start": 11.79,
- "end": 11.96,
- "text": "sort"
- },
- {
- "id": 25,
- "start": 11.96,
- "end": 12.05,
- "text": "of"
- },
- {
- "id": 26,
- "start": 12.05,
- "end": 12.44,
- "text": "dawning"
- },
- {
- "id": 27,
- "start": 12.44,
- "end": 12.62,
- "text": "on"
- },
- {
- "id": 28,
- "start": 12.62,
- "end": 12.94,
- "text": "you"
- },
- {
- "id": 29,
- "start": 12.94,
- "end": 13.27,
- "text": "about"
- },
- {
- "id": 30,
- "start": 13.27,
- "end": 13.89,
- "text": "Facebook,"
- },
- {
- "id": 31,
- "start": 13.89,
- "end": 14.21,
- "text": "about"
- },
- {
- "id": 32,
- "start": 14.100000000000001,
- "end": 14.72,
- "text": "the"
- },
- {
- "id": 33,
- "start": 14.31,
- "end": 15.23,
- "text": "election,"
- },
- {
- "id": 34,
- "start": 15.23,
- "end": 15.48,
- "text": "and"
- },
- {
- "id": 35,
- "start": 15.48,
- "end": 15.62,
- "text": "what"
- },
- {
- "id": 36,
- "start": 15.62,
- "end": 15.77,
- "text": "was"
- },
- {
- "id": 37,
- "start": 15.77,
- "end": 15.87,
- "text": "the"
- },
- {
- "id": 38,
- "start": 15.87,
- "end": 16.19,
- "text": "vibe"
- },
- {
- "id": 39,
- "start": 16.19,
- "end": 16.59,
- "text": "inside"
- },
- {
- "id": 40,
- "start": 16.59,
- "end": 16.68,
- "text": "of"
- },
- {
- "id": 41,
- "start": 16.68,
- "end": 16.86,
- "text": "here"
- },
- {
- "id": 42,
- "start": 16.86,
- "end": 16.96,
- "text": "at"
- },
- {
- "id": 43,
- "start": 16.96,
- "end": 17.13,
- "text": "that"
- },
- {
- "id": 44,
- "start": 17.13,
- "end": 17.35,
- "text": "point"
- },
- {
- "id": 45,
- "start": 17.35,
- "end": 17.41,
- "text": "in"
- },
- {
- "id": 46,
- "start": 17.41,
- "end": 18.97,
- "text": "time,"
- },
- {
- "id": 47,
- "start": 18.97,
- "end": 19.18,
- "text": "tell"
- },
- {
- "id": 48,
- "start": 19.18,
- "end": 19.3,
- "text": "me"
- },
- {
- "id": 49,
- "start": 19.3,
- "end": 19.54,
- "text": "about"
- },
- {
- "id": 50,
- "start": 19.54,
- "end": 21.53,
- "text": "it."
- },
- {
- "id": 51,
- "start": 21.53,
- "end": 21.66,
- "text": "I’ve"
- },
- {
- "id": 52,
- "start": 21.66,
- "end": 21.78,
- "text": "been"
- },
- {
- "id": 53,
- "start": 21.78,
- "end": 21.91,
- "text": "at"
- },
- {
- "id": 54,
- "start": 21.91,
- "end": 22.37,
- "text": "Facebook,"
- },
- {
- "id": 55,
- "start": 22.37,
- "end": 22.61,
- "text": "just"
- },
- {
- "id": 56,
- "start": 22.61,
- "end": 22.76,
- "text": "as"
- },
- {
- "id": 57,
- "start": 22.76,
- "end": 22.96,
- "text": "some"
- },
- {
- "id": 58,
- "start": 22.96,
- "end": 23.54,
- "text": "background,"
- },
- {
- "id": 59,
- "start": 23.54,
- "end": 24.05,
- "text": "for"
- },
- {
- "id": 60,
- "start": 24.05,
- "end": 24.35,
- "text": "almost"
- },
- {
- "id": 61,
- "start": 24.35,
- "end": 24.7,
- "text": "13"
- },
- {
- "id": 62,
- "start": 24.7,
- "end": 26.16,
- "text": "years."
- },
- {
- "id": 63,
- "start": 26.16,
- "end": 26.29,
- "text": "I"
- },
- {
- "id": 64,
- "start": 26.29,
- "end": 26.54,
- "text": "started"
- },
- {
- "id": 65,
- "start": 26.54,
- "end": 26.64,
- "text": "when"
- },
- {
- "id": 66,
- "start": 26.64,
- "end": 26.69,
- "text": "I"
- },
- {
- "id": 67,
- "start": 26.69,
- "end": 26.82,
- "text": "was"
- },
- {
- "id": 68,
- "start": 27.095000000000002,
- "end": 27.2825,
- "text": "21"
- },
- {
- "id": 69,
- "start": 27.500000000000004,
- "end": 27.744999999999997,
- "text": "in"
- },
- {
- "id": 70,
- "start": 27.905,
- "end": 28.207500000000003,
- "text": "2005,"
- },
- {
- "id": 71,
- "start": 28.31,
- "end": 28.67,
- "text": "and"
- },
- {
- "id": 72,
- "start": 28.67,
- "end": 28.85,
- "text": "there"
- },
- {
- "id": 73,
- "start": 28.85,
- "end": 29.06,
- "text": "have"
- },
- {
- "id": 74,
- "start": 29.06,
- "end": 29.39,
- "text": "been"
- },
- {
- "id": 75,
- "start": 29.39,
- "end": 29.51,
- "text": "a"
- },
- {
- "id": 76,
- "start": 29.51,
- "end": 29.92,
- "text": "lot"
- },
- {
- "id": 77,
- "start": 29.92,
- "end": 31.04,
- "text": "of"
- },
- {
- "id": 78,
- "start": 31.04,
- "end": 31.31,
- "text": "ups"
- },
- {
- "id": 79,
- "start": 31.31,
- "end": 31.41,
- "text": "and"
- },
- {
- "id": 80,
- "start": 31.41,
- "end": 31.87,
- "text": "downs"
- },
- {
- "id": 81,
- "start": 31.87,
- "end": 31.96,
- "text": "and"
- },
- {
- "id": 82,
- "start": 31.96,
- "end": 32.46,
- "text": "intense"
- },
- {
- "id": 83,
- "start": 32.46,
- "end": 33.36,
- "text": "periods"
- },
- {
- "id": 84,
- "start": 33.36,
- "end": 33.91,
- "text": "of"
- },
- {
- "id": 85,
- "start": 33.91,
- "end": 34.09,
- "text": "my"
- },
- {
- "id": 86,
- "start": 34.09,
- "end": 34.52,
- "text": "career"
- },
- {
- "id": 87,
- "start": 34.52,
- "end": 35.6,
- "text": "here,"
- },
- {
- "id": 88,
- "start": 35.6,
- "end": 35.87,
- "text": "but"
- },
- {
- "id": 89,
- "start": 35.87,
- "end": 36.21,
- "text": "definitely"
- },
- {
- "id": 90,
- "start": 36.21,
- "end": 36.3,
- "text": "the"
- },
- {
- "id": 91,
- "start": 36.3,
- "end": 36.57,
- "text": "past"
- },
- {
- "id": 92,
- "start": 36.57,
- "end": 36.67,
- "text": "few"
- },
- {
- "id": 93,
- "start": 36.67,
- "end": 36.94,
- "text": "years"
- },
- {
- "id": 94,
- "start": 36.94,
- "end": 37.09,
- "text": "have"
- },
- {
- "id": 95,
- "start": 37.09,
- "end": 37.42,
- "text": "been"
- },
- {
- "id": 96,
- "start": 37.42,
- "end": 37.52,
- "text": "the"
- },
- {
- "id": 97,
- "start": 37.52,
- "end": 38.15,
- "text": "most"
- },
- {
- "id": 98,
- "start": 38.15,
- "end": 39.58,
- "text": "intense."
- },
- {
- "id": 99,
- "start": 39.58,
- "end": 39.73,
- "text": "And"
- },
- {
- "id": 100,
- "start": 39.73,
- "end": 39.92,
- "text": "what’s"
- },
- {
- "id": 101,
- "start": 39.92,
- "end": 40.06,
- "text": "been"
- },
- {
- "id": 102,
- "start": 40.48857142857143,
- "end": 40.62857142857143,
- "text": "intense"
- },
- {
- "id": 103,
- "start": 41.057142857142864,
- "end": 41.197142857142865,
- "text": "about"
- },
- {
- "id": 104,
- "start": 41.62571428571429,
- "end": 41.76571428571429,
- "text": "it?"
- },
- {
- "id": 105,
- "start": 42.19428571428572,
- "end": 42.33428571428572,
- "text": "Why"
- },
- {
- "id": 106,
- "start": 42.76285714285714,
- "end": 42.902857142857144,
- "text": "is"
- },
- {
- "id": 107,
- "start": 43.331428571428575,
- "end": 43.471428571428575,
- "text": "that?"
- },
- {
- "id": 108,
- "start": 43.9,
- "end": 44.04,
- "text": "I"
- },
- {
- "id": 109,
- "start": 44.04,
- "end": 44.32,
- "text": "joined"
- },
- {
- "id": 110,
- "start": 44.32,
- "end": 44.82,
- "text": "Facebook"
- },
- {
- "id": 111,
- "start": 44.82,
- "end": 45.1,
- "text": "because"
- },
- {
- "id": 112,
- "start": 45.1,
- "end": 45.13,
- "text": "I"
- },
- {
- "id": 113,
- "start": 45.13,
- "end": 45.35,
- "text": "really"
- },
- {
- "id": 114,
- "start": 45.35,
- "end": 45.67,
- "text": "believed"
- },
- {
- "id": 115,
- "start": 45.67,
- "end": 45.74,
- "text": "in"
- },
- {
- "id": 116,
- "start": 45.74,
- "end": 45.81,
- "text": "the"
- },
- {
- "id": 117,
- "start": 45.81,
- "end": 46.35,
- "text": "mission"
- },
- {
- "id": 118,
- "start": 46.35,
- "end": 47.22,
- "text": "to"
- },
- {
- "id": 119,
- "start": 47.22,
- "end": 47.58,
- "text": "make"
- },
- {
- "id": 120,
- "start": 47.58,
- "end": 47.65,
- "text": "the"
- },
- {
- "id": 121,
- "start": 47.65,
- "end": 47.85,
- "text": "world"
- },
- {
- "id": 122,
- "start": 47.85,
- "end": 47.99,
- "text": "more"
- },
- {
- "id": 123,
- "start": 47.99,
- "end": 48.22,
- "text": "open"
- },
- {
- "id": 124,
- "start": 48.22,
- "end": 48.34,
- "text": "and"
- },
- {
- "id": 125,
- "start": 48.86750000000001,
- "end": 49.022499999999994,
- "text": "connected,"
- },
- {
- "id": 126,
- "start": 49.515,
- "end": 49.705,
- "text": "and"
- },
- {
- "id": 127,
- "start": 50.162499999999994,
- "end": 50.38749999999999,
- "text": "I’ve"
- },
- {
- "id": 128,
- "start": 50.81,
- "end": 51.07,
- "text": "worked"
- },
- {
- "id": 129,
- "start": 51.07,
- "end": 51.46,
- "text": "on"
- },
- {
- "id": 130,
- "start": 51.46,
- "end": 51.69,
- "text": "many"
- },
- {
- "id": 131,
- "start": 51.69,
- "end": 51.95,
- "text": "different"
- },
- {
- "id": 132,
- "start": 51.95,
- "end": 52.53,
- "text": "projects,"
- },
- {
- "id": 133,
- "start": 52.53,
- "end": 52.84,
- "text": "whether"
- },
- {
- "id": 134,
- "start": 52.84,
- "end": 53.29,
- "text": "it’s"
- },
- {
- "id": 135,
- "start": 53.29,
- "end": 54.74,
- "text": "growth,"
- },
- {
- "id": 136,
- "start": 54.74,
- "end": 55.17,
- "text": "social"
- },
- {
- "id": 137,
- "start": 55.17,
- "end": 55.7,
- "text": "good,"
- },
- {
- "id": 138,
- "start": 55.7,
- "end": 55.9,
- "text": "more"
- },
- {
- "id": 139,
- "start": 55.9,
- "end": 56.33,
- "text": "recently"
- },
- {
- "id": 140,
- "start": 56.33,
- "end": 56.67,
- "text": "safety"
- },
- {
- "id": 141,
- "start": 56.67,
- "end": 56.81,
- "text": "and"
- },
- {
- "id": 142,
- "start": 57.44999999999999,
- "end": 57.80499999999998,
- "text": "security,"
- },
- {
- "id": 143,
- "start": 58.23,
- "end": 58.8,
- "text": "so"
- },
- {
- "id": 144,
- "start": 58.8,
- "end": 58.98,
- "text": "I’ve"
- },
- {
- "id": 145,
- "start": 58.98,
- "end": 59.16,
- "text": "really"
- },
- {
- "id": 146,
- "start": 59.16,
- "end": 59.32,
- "text": "been"
- },
- {
- "id": 147,
- "start": 59.32,
- "end": 59.9,
- "text": "focused"
- },
- {
- "id": 148,
- "start": 59.9,
- "end": 60.33,
- "text": "on"
- },
- {
- "id": 149,
- "start": 60.33,
- "end": 60.98,
- "text": "amplifying"
- },
- {
- "id": 150,
- "start": 60.98,
- "end": 61.24,
- "text": "all"
- },
- {
- "id": 151,
- "start": 61.24,
- "end": 61.32,
- "text": "of"
- },
- {
- "id": 152,
- "start": 61.32,
- "end": 61.43,
- "text": "the"
- },
- {
- "id": 153,
- "start": 61.43,
- "end": 61.64,
- "text": "good"
- },
- {
- "id": 154,
- "start": 61.64,
- "end": 61.93,
- "text": "things"
- },
- {
- "id": 155,
- "start": 61.93,
- "end": 62.09,
- "text": "that"
- },
- {
- "id": 156,
- "start": 62.09,
- "end": 62.64,
- "text": "happen"
- },
- {
- "id": 157,
- "start": 62.64,
- "end": 62.89,
- "text": "on"
- },
- {
- "id": 158,
- "start": 62.89,
- "end": 63.65,
- "text": "Facebook."
- },
- {
- "id": 159,
- "start": 63.65,
- "end": 63.72,
- "text": "I"
- },
- {
- "id": 160,
- "start": 63.72,
- "end": 64.34,
- "text": "think"
- },
- {
- "id": 161,
- "start": 64.34,
- "end": 64.73,
- "text": "what’s"
- },
- {
- "id": 162,
- "start": 64.73,
- "end": 65.32,
- "text": "changed"
- },
- {
- "id": 163,
- "start": 65.32,
- "end": 65.68,
- "text": "is"
- },
- {
- "id": 164,
- "start": 65.68,
- "end": 66.06,
- "text": "we’ve"
- },
- {
- "id": 165,
- "start": 66.06,
- "end": 66.45,
- "text": "definitely"
- },
- {
- "id": 166,
- "start": 66.45,
- "end": 66.75,
- "text": "become"
- },
- {
- "id": 167,
- "start": 66.75,
- "end": 66.95,
- "text": "more"
- },
- {
- "id": 168,
- "start": 66.95,
- "end": 67.51,
- "text": "aware"
- },
- {
- "id": 169,
- "start": 67.51,
- "end": 68.76,
- "text": "of"
- },
- {
- "id": 170,
- "start": 68.76,
- "end": 69.02,
- "text": "how"
- },
- {
- "id": 171,
- "start": 69.02,
- "end": 69.54,
- "text": "Facebook"
- },
- {
- "id": 172,
- "start": 69.54,
- "end": 69.72,
- "text": "can"
- },
- {
- "id": 173,
- "start": 69.72,
- "end": 70.05,
- "text": "be"
- },
- {
- "id": 174,
- "start": 70.05,
- "end": 71.07,
- "text": "abused"
- },
- {
- "id": 175,
- "start": 71.07,
- "end": 71.21,
- "text": "by"
- },
- {
- "id": 176,
- "start": 71.21,
- "end": 71.43,
- "text": "bad"
- },
- {
- "id": 177,
- "start": 71.43,
- "end": 72.57,
- "text": "actors,"
- },
- {
- "id": 178,
- "start": 72.57,
- "end": 72.68,
- "text": "by"
- },
- {
- "id": 179,
- "start": 72.68,
- "end": 72.91,
- "text": "fake"
- },
- {
- "id": 180,
- "start": 73.655,
- "end": 74.1,
- "text": "accounts,"
- },
- {
- "id": 181,
- "start": 74.63,
- "end": 75.29,
- "text": "and"
- },
- {
- "id": 182,
- "start": 75.29,
- "end": 75.5,
- "text": "what"
- },
- {
- "id": 183,
- "start": 75.5,
- "end": 75.57,
- "text": "our"
- },
- {
- "id": 184,
- "start": 75.57,
- "end": 76.43,
- "text": "responsibility"
- },
- {
- "id": 185,
- "start": 76.43,
- "end": 76.82,
- "text": "is"
- },
- {
- "id": 186,
- "start": 76.82,
- "end": 76.92,
- "text": "and"
- },
- {
- "id": 187,
- "start": 76.92,
- "end": 77.17,
- "text": "making"
- },
- {
- "id": 188,
- "start": 77.17,
- "end": 77.37,
- "text": "sure"
- },
- {
- "id": 189,
- "start": 77.37,
- "end": 77.5,
- "text": "that"
- },
- {
- "id": 190,
- "start": 77.5,
- "end": 77.65,
- "text": "we"
- },
- {
- "id": 191,
- "start": 77.855,
- "end": 78.02,
- "text": "minimize"
- },
- {
- "id": 192,
- "start": 78.21,
- "end": 78.39,
- "text": "those"
- },
- {
- "id": 193,
- "start": 78.39,
- "end": 79.3,
- "text": "experiences"
- },
- {
- "id": 194,
- "start": 79.3,
- "end": 79.43,
- "text": "on"
- },
- {
- "id": 195,
- "start": 79.43,
- "end": 79.52,
- "text": "the"
- },
- {
- "id": 196,
- "start": 79.52,
- "end": 82.7,
- "text": "site."
- },
- {
- "id": 197,
- "start": 82.7,
- "end": 82.97,
- "text": "What"
- },
- {
- "id": 198,
- "start": 82.97,
- "end": 83.15,
- "text": "was"
- },
- {
- "id": 199,
- "start": 83.15,
- "end": 83.26,
- "text": "the"
- },
- {
- "id": 200,
- "start": 83.26,
- "end": 83.58,
- "text": "Growth"
- },
- {
- "id": 201,
- "start": 83.58,
- "end": 83.81,
- "text": "team"
- },
- {
- "id": 202,
- "start": 83.81,
- "end": 84.12,
- "text": "about?"
- },
- {
- "id": 203,
- "start": 84.12,
- "end": 84.25,
- "text": "What"
- },
- {
- "id": 204,
- "start": 84.25,
- "end": 84.36,
- "text": "did"
- },
- {
- "id": 205,
- "start": 84.36,
- "end": 84.46,
- "text": "you"
- },
- {
- "id": 206,
- "start": 84.46,
- "end": 84.66,
- "text": "do"
- },
- {
- "id": 207,
- "start": 85.17,
- "end": 85.36666666666665,
- "text": "at"
- },
- {
- "id": 208,
- "start": 85.88000000000001,
- "end": 86.07333333333332,
- "text": "Growth?"
- },
- {
- "id": 209,
- "start": 86.59,
- "end": 86.78,
- "text": "When"
- },
- {
- "id": 210,
- "start": 86.78,
- "end": 86.83,
- "text": "I"
- },
- {
- "id": 211,
- "start": 86.83,
- "end": 87.06,
- "text": "joined"
- },
- {
- "id": 212,
- "start": 86.985,
- "end": 87.42,
- "text": "at"
- },
- {
- "id": 213,
- "start": 87.14,
- "end": 87.78,
- "text": "Facebook,"
- },
- {
- "id": 214,
- "start": 87.78,
- "end": 87.91,
- "text": "it"
- },
- {
- "id": 215,
- "start": 87.91,
- "end": 88.17,
- "text": "was"
- },
- {
- "id": 216,
- "start": 88.17,
- "end": 88.48,
- "text": "just"
- },
- {
- "id": 217,
- "start": 88.48,
- "end": 88.53,
- "text": "a"
- },
- {
- "id": 218,
- "start": 88.53,
- "end": 88.87,
- "text": "site"
- },
- {
- "id": 219,
- "start": 88.87,
- "end": 89.06,
- "text": "for"
- },
- {
- "id": 220,
- "start": 89.06,
- "end": 89.43,
- "text": "college"
- },
- {
- "id": 221,
- "start": 89.43,
- "end": 90.15,
- "text": "students."
- },
- {
- "id": 222,
- "start": 90.15,
- "end": 90.47,
- "text": "It’s"
- },
- {
- "id": 223,
- "start": 90.47,
- "end": 90.7,
- "text": "even"
- },
- {
- "id": 224,
- "start": 90.7,
- "end": 90.93,
- "text": "hard"
- },
- {
- "id": 225,
- "start": 90.93,
- "end": 91.05,
- "text": "to"
- },
- {
- "id": 226,
- "start": 91.55000000000001,
- "end": 91.65999999999998,
- "text": "remember."
- },
- {
- "id": 227,
- "start": 92.17,
- "end": 92.27,
- "text": "On"
- },
- {
- "id": 228,
- "start": 92.27,
- "end": 92.35,
- "text": "the"
- },
- {
- "id": 229,
- "start": 92.35,
- "end": 92.63,
- "text": "Growth"
- },
- {
- "id": 230,
- "start": 92.68249999999999,
- "end": 92.91999999999999,
- "text": "team,"
- },
- {
- "id": 231,
- "start": 93.01499999999999,
- "end": 93.21,
- "text": "the"
- },
- {
- "id": 232,
- "start": 93.3475,
- "end": 93.5,
- "text": "story"
- },
- {
- "id": 233,
- "start": 93.68,
- "end": 93.79,
- "text": "of"
- },
- {
- "id": 234,
- "start": 93.79,
- "end": 94.15,
- "text": "Growth"
- },
- {
- "id": 235,
- "start": 94.15,
- "end": 94.38,
- "text": "has"
- },
- {
- "id": 236,
- "start": 94.38,
- "end": 94.63,
- "text": "really"
- },
- {
- "id": 237,
- "start": 94.63,
- "end": 94.84,
- "text": "been"
- },
- {
- "id": 238,
- "start": 94.84,
- "end": 95.16,
- "text": "about"
- },
- {
- "id": 239,
- "start": 95.16,
- "end": 95.47,
- "text": "making"
- },
- {
- "id": 240,
- "start": 95.47,
- "end": 95.97,
- "text": "Facebook"
- },
- {
- "id": 241,
- "start": 95.97,
- "end": 96.73,
- "text": "available"
- },
- {
- "id": 242,
- "start": 96.73,
- "end": 96.87,
- "text": "to"
- },
- {
- "id": 243,
- "start": 96.87,
- "end": 97.17,
- "text": "people"
- },
- {
- "id": 244,
- "start": 97.17,
- "end": 97.36,
- "text": "that"
- },
- {
- "id": 245,
- "start": 97.36,
- "end": 97.76,
- "text": "wanted"
- },
- {
- "id": 246,
- "start": 97.76,
- "end": 98,
- "text": "it"
- },
- {
- "id": 247,
- "start": 98,
- "end": 98.74,
- "text": "but"
- },
- {
- "id": 248,
- "start": 98.74,
- "end": 99.21,
- "text": "couldn’t"
- },
- {
- "id": 249,
- "start": 99.21,
- "end": 99.52,
- "text": "have"
- },
- {
- "id": 250,
- "start": 99.52,
- "end": 99.9,
- "text": "access"
- },
- {
- "id": 251,
- "start": 99.9,
- "end": 100.03,
- "text": "to"
- },
- {
- "id": 252,
- "start": 100.03,
- "end": 100.29,
- "text": "it,"
- },
- {
- "id": 253,
- "start": 100.29,
- "end": 100.49,
- "text": "whether"
- },
- {
- "id": 254,
- "start": 100.49,
- "end": 100.55,
- "text": "it"
- },
- {
- "id": 255,
- "start": 100.55,
- "end": 100.66,
- "text": "was"
- },
- {
- "id": 256,
- "start": 100.66,
- "end": 100.9,
- "text": "because"
- },
- {
- "id": 257,
- "start": 100.9,
- "end": 100.98,
- "text": "they"
- },
- {
- "id": 258,
- "start": 100.98,
- "end": 101.06,
- "text": "were"
- },
- {
- "id": 259,
- "start": 101.06,
- "end": 101.14,
- "text": "in"
- },
- {
- "id": 260,
- "start": 101.14,
- "end": 101.34,
- "text": "high"
- },
- {
- "id": 261,
- "start": 101.53,
- "end": 101.685,
- "text": "school—so"
- },
- {
- "id": 262,
- "start": 101.92,
- "end": 102.03,
- "text": "one"
- },
- {
- "id": 263,
- "start": 102.03,
- "end": 102.09,
- "text": "of"
- },
- {
- "id": 264,
- "start": 102.09,
- "end": 102.2,
- "text": "my"
- },
- {
- "id": 265,
- "start": 102.2,
- "end": 102.47,
- "text": "first"
- },
- {
- "id": 266,
- "start": 102.47,
- "end": 102.93,
- "text": "projects"
- },
- {
- "id": 267,
- "start": 102.93,
- "end": 103.54,
- "text": "was"
- },
- {
- "id": 268,
- "start": 103.54,
- "end": 104.04,
- "text": "expanding"
- },
- {
- "id": 269,
- "start": 104.04,
- "end": 104.44,
- "text": "Facebook"
- },
- {
- "id": 270,
- "start": 104.44,
- "end": 104.51,
- "text": "to"
- },
- {
- "id": 271,
- "start": 104.51,
- "end": 104.69,
- "text": "high"
- },
- {
- "id": 272,
- "start": 104.69,
- "end": 104.94,
- "text": "school"
- },
- {
- "id": 273,
- "start": 105.465,
- "end": 105.815,
- "text": "students—or"
- },
- {
- "id": 274,
- "start": 106.24,
- "end": 106.69,
- "text": "whether"
- },
- {
- "id": 275,
- "start": 106.69,
- "end": 106.82,
- "text": "it"
- },
- {
- "id": 276,
- "start": 106.82,
- "end": 107.45,
- "text": "was"
- },
- {
- "id": 277,
- "start": 107.45,
- "end": 107.69,
- "text": "because"
- },
- {
- "id": 278,
- "start": 107.69,
- "end": 107.79,
- "text": "they"
- },
- {
- "id": 279,
- "start": 107.79,
- "end": 109.08,
- "text": "weren’t"
- },
- {
- "id": 280,
- "start": 109.08,
- "end": 109.45,
- "text": "English"
- },
- {
- "id": 281,
- "start": 109.45,
- "end": 110.35,
- "text": "speakers."
- },
- {
- "id": 282,
- "start": 110.35,
- "end": 110.63,
- "text": "People"
- },
- {
- "id": 283,
- "start": 110.63,
- "end": 110.91,
- "text": "had"
- },
- {
- "id": 284,
- "start": 110.91,
- "end": 111.2,
- "text": "friends"
- },
- {
- "id": 285,
- "start": 111.2,
- "end": 111.34,
- "text": "and"
- },
- {
- "id": 286,
- "start": 111.34,
- "end": 111.88,
- "text": "family"
- },
- {
- "id": 287,
- "start": 111.88,
- "end": 112.05,
- "text": "that"
- },
- {
- "id": 288,
- "start": 112.05,
- "end": 112.3,
- "text": "spoke"
- },
- {
- "id": 289,
- "start": 112.3,
- "end": 112.55,
- "text": "other"
- },
- {
- "id": 290,
- "start": 112.55,
- "end": 113.15,
- "text": "languages"
- },
- {
- "id": 291,
- "start": 113.15,
- "end": 113.27,
- "text": "that"
- },
- {
- "id": 292,
- "start": 113.27,
- "end": 113.38,
- "text": "they"
- },
- {
- "id": 293,
- "start": 113.38,
- "end": 113.64,
- "text": "wanted"
- },
- {
- "id": 294,
- "start": 113.64,
- "end": 113.72,
- "text": "to"
- },
- {
- "id": 295,
- "start": 113.72,
- "end": 113.98,
- "text": "use"
- },
- {
- "id": 296,
- "start": 113.98,
- "end": 114.46,
- "text": "Facebook"
- },
- {
- "id": 297,
- "start": 114.57000000000001,
- "end": 114.92,
- "text": "with,"
- },
- {
- "id": 298,
- "start": 115.16,
- "end": 115.38,
- "text": "so"
- },
- {
- "id": 299,
- "start": 115.38,
- "end": 115.46,
- "text": "I"
- },
- {
- "id": 300,
- "start": 115.46,
- "end": 115.85,
- "text": "worked"
- },
- {
- "id": 301,
- "start": 115.85,
- "end": 116.29,
- "text": "on"
- },
- {
- "id": 302,
- "start": 116.29,
- "end": 116.85,
- "text": "translating"
- },
- {
- "id": 303,
- "start": 116.85,
- "end": 117.3,
- "text": "Facebook"
- },
- {
- "id": 304,
- "start": 117.3,
- "end": 117.56,
- "text": "into"
- },
- {
- "id": 305,
- "start": 117.56,
- "end": 117.85,
- "text": "over"
- },
- {
- "id": 306,
- "start": 117.905,
- "end": 118.69499999999996,
- "text": "100"
- },
- {
- "id": 307,
- "start": 118.25,
- "end": 119.54,
- "text": "languages."
- },
- {
- "id": 308,
- "start": 119.54,
- "end": 120.18,
- "text": "Sometimes"
- },
- {
- "id": 309,
- "start": 120.18,
- "end": 120.74,
- "text": "people"
- },
- {
- "id": 310,
- "start": 120.74,
- "end": 120.93,
- "text": "had"
- },
- {
- "id": 311,
- "start": 120.93,
- "end": 121.43,
- "text": "access"
- },
- {
- "id": 312,
- "start": 121.43,
- "end": 121.56,
- "text": "to"
- },
- {
- "id": 313,
- "start": 121.56,
- "end": 121.62,
- "text": "a"
- },
- {
- "id": 314,
- "start": 121.62,
- "end": 122.09,
- "text": "phone"
- },
- {
- "id": 315,
- "start": 122.09,
- "end": 122.28,
- "text": "but"
- },
- {
- "id": 316,
- "start": 122.28,
- "end": 122.44,
- "text": "not"
- },
- {
- "id": 317,
- "start": 122.44,
- "end": 122.49,
- "text": "a"
- },
- {
- "id": 318,
- "start": 123.14000000000001,
- "end": 123.34000000000003,
- "text": "computer,"
- },
- {
- "id": 319,
- "start": 123.84,
- "end": 124.19,
- "text": "so"
- },
- {
- "id": 320,
- "start": 124.19,
- "end": 124.32,
- "text": "one"
- },
- {
- "id": 321,
- "start": 124.32,
- "end": 124.41,
- "text": "of"
- },
- {
- "id": 322,
- "start": 124.41,
- "end": 124.51,
- "text": "the"
- },
- {
- "id": 323,
- "start": 124.51,
- "end": 124.76,
- "text": "Growth"
- },
- {
- "id": 324,
- "start": 124.76,
- "end": 124.97,
- "text": "team"
- },
- {
- "id": 325,
- "start": 124.97,
- "end": 125.55,
- "text": "projects"
- },
- {
- "id": 326,
- "start": 125.55,
- "end": 126.34,
- "text": "was"
- },
- {
- "id": 327,
- "start": 126.34,
- "end": 126.66,
- "text": "building"
- },
- {
- "id": 328,
- "start": 126.66,
- "end": 126.77,
- "text": "a"
- },
- {
- "id": 329,
- "start": 126.77,
- "end": 127.08,
- "text": "really"
- },
- {
- "id": 330,
- "start": 127.08,
- "end": 127.33,
- "text": "rich"
- },
- {
- "id": 331,
- "start": 127.33,
- "end": 127.75,
- "text": "Facebook"
- },
- {
- "id": 332,
- "start": 127.75,
- "end": 128.65,
- "text": "experience"
- },
- {
- "id": 333,
- "start": 128.65,
- "end": 129.14,
- "text": "for"
- },
- {
- "id": 334,
- "start": 129.14,
- "end": 129.46,
- "text": "mobile"
- },
- {
- "id": 335,
- "start": 129.46,
- "end": 130.12,
- "text": "phones,"
- },
- {
- "id": 336,
- "start": 130.12,
- "end": 130.6,
- "text": "say,"
- },
- {
- "id": 337,
- "start": 130.6,
- "end": 131.13,
- "text": "on"
- },
- {
- "id": 338,
- "start": 131.13,
- "end": 131.36,
- "text": "low"
- },
- {
- "id": 339,
- "start": 131.36,
- "end": 132.33,
- "text": "networks"
- },
- {
- "id": 340,
- "start": 132.10000000000002,
- "end": 132.91750000000002,
- "text": "or"
- },
- {
- "id": 341,
- "start": 132.84000000000003,
- "end": 133.50500000000002,
- "text": "low"
- },
- {
- "id": 342,
- "start": 133.58,
- "end": 134.0925,
- "text": "connectivity."
- },
- {
- "id": 343,
- "start": 134.32,
- "end": 134.68,
- "text": "More"
- },
- {
- "id": 344,
- "start": 134.68,
- "end": 135.2,
- "text": "recently,"
- },
- {
- "id": 345,
- "start": 135.2,
- "end": 135.45,
- "text": "people"
- },
- {
- "id": 346,
- "start": 135.45,
- "end": 135.62,
- "text": "might"
- },
- {
- "id": 347,
- "start": 135.62,
- "end": 135.77,
- "text": "have"
- },
- {
- "id": 348,
- "start": 135.77,
- "end": 136.36,
- "text": "access"
- },
- {
- "id": 349,
- "start": 136.36,
- "end": 136.73,
- "text": "to"
- },
- {
- "id": 350,
- "start": 136.73,
- "end": 136.81,
- "text": "a"
- },
- {
- "id": 351,
- "start": 136.81,
- "end": 137.25,
- "text": "phone"
- },
- {
- "id": 352,
- "start": 137.25,
- "end": 137.43,
- "text": "but"
- },
- {
- "id": 353,
- "start": 137.43,
- "end": 137.65,
- "text": "can’t"
- },
- {
- "id": 354,
- "start": 137.65,
- "end": 137.91,
- "text": "afford"
- },
- {
- "id": 355,
- "start": 137.91,
- "end": 137.96,
- "text": "a"
- },
- {
- "id": 356,
- "start": 137.96,
- "end": 138.2,
- "text": "data"
- },
- {
- "id": 357,
- "start": 138.35,
- "end": 138.70499999999998,
- "text": "plan,"
- },
- {
- "id": 358,
- "start": 138.74,
- "end": 139.21,
- "text": "and"
- },
- {
- "id": 359,
- "start": 139.21,
- "end": 139.4,
- "text": "that’s"
- },
- {
- "id": 360,
- "start": 139.4,
- "end": 139.5,
- "text": "the"
- },
- {
- "id": 361,
- "start": 139.5,
- "end": 139.7,
- "text": "goal"
- },
- {
- "id": 362,
- "start": 139.7,
- "end": 139.79,
- "text": "of"
- },
- {
- "id": 363,
- "start": 140.23999999999998,
- "end": 140.33499999999998,
- "text": "Internet.org."
- },
- {
- "id": 364,
- "start": 140.78,
- "end": 140.88,
- "text": "It"
- },
- {
- "id": 365,
- "start": 140.88,
- "end": 141.1,
- "text": "really"
- },
- {
- "id": 366,
- "start": 141.1,
- "end": 141.35,
- "text": "has"
- },
- {
- "id": 367,
- "start": 141.35,
- "end": 141.77,
- "text": "been"
- },
- {
- "id": 368,
- "start": 141.77,
- "end": 142.37,
- "text": "about"
- },
- {
- "id": 369,
- "start": 142.37,
- "end": 142.86,
- "text": "removing"
- },
- {
- "id": 370,
- "start": 142.86,
- "end": 143.5,
- "text": "barriers"
- },
- {
- "id": 371,
- "start": 143.5,
- "end": 143.62,
- "text": "that"
- },
- {
- "id": 372,
- "start": 143.62,
- "end": 143.68,
- "text": "are"
- },
- {
- "id": 373,
- "start": 143.68,
- "end": 144.1,
- "text": "preventing"
- },
- {
- "id": 374,
- "start": 144.1,
- "end": 144.51,
- "text": "people"
- },
- {
- "id": 375,
- "start": 144.51,
- "end": 144.69,
- "text": "from"
- },
- {
- "id": 376,
- "start": 144.69,
- "end": 145.18,
- "text": "accessing"
- },
- {
- "id": 377,
- "start": 145.18,
- "end": 146.95,
- "text": "Facebook"
- },
- {
- "id": 378,
- "start": 146.95,
- "end": 147.42,
- "text": "and"
- },
- {
- "id": 379,
- "start": 147.42,
- "end": 147.72,
- "text": "allowing"
- },
- {
- "id": 380,
- "start": 147.72,
- "end": 147.84,
- "text": "them"
- },
- {
- "id": 381,
- "start": 147.84,
- "end": 147.95,
- "text": "to"
- },
- {
- "id": 382,
- "start": 147.95,
- "end": 148.12,
- "text": "use"
- },
- {
- "id": 383,
- "start": 148.12,
- "end": 148.95,
- "text": "it."
- },
- {
- "id": 384,
- "start": 148.25,
- "end": 149.28,
- "text": "What"
- },
- {
- "id": 385,
- "start": 149.37,
- "end": 149.92,
- "text": "were"
- },
- {
- "id": 386,
- "start": 150.49,
- "end": 150.56,
- "text": "the"
- },
- {
- "id": 387,
- "start": 150.56,
- "end": 151.19,
- "text": "metrics"
- },
- {
- "id": 388,
- "start": 151.19,
- "end": 151.38,
- "text": "that"
- },
- {
- "id": 389,
- "start": 151.38,
- "end": 151.54,
- "text": "you"
- },
- {
- "id": 390,
- "start": 151.54,
- "end": 152.18,
- "text": "used"
- },
- {
- "id": 391,
- "start": 152.18,
- "end": 152.39,
- "text": "in"
- },
- {
- "id": 392,
- "start": 152.39,
- "end": 152.47,
- "text": "the"
- },
- {
- "id": 393,
- "start": 152.47,
- "end": 152.8,
- "text": "Growth"
- },
- {
- "id": 394,
- "start": 152.8,
- "end": 153.08,
- "text": "team"
- },
- {
- "id": 395,
- "start": 153.08,
- "end": 153.64,
- "text": "about"
- },
- {
- "id": 396,
- "start": 153.64,
- "end": 153.91,
- "text": "how"
- },
- {
- "id": 397,
- "start": 153.91,
- "end": 154.05,
- "text": "you"
- },
- {
- "id": 398,
- "start": 154.155,
- "end": 154.29500000000002,
- "text": "measured"
- },
- {
- "id": 399,
- "start": 154.4,
- "end": 154.54,
- "text": "your"
- },
- {
- "id": 400,
- "start": 154.54,
- "end": 155.56,
- "text": "success"
- },
- {
- "id": 401,
- "start": 155.56,
- "end": 155.91,
- "text": "and"
- },
- {
- "id": 402,
- "start": 155.91,
- "end": 156.42,
- "text": "how"
- },
- {
- "id": 403,
- "start": 156.42,
- "end": 156.7,
- "text": "your"
- },
- {
- "id": 404,
- "start": 156.7,
- "end": 157,
- "text": "team"
- },
- {
- "id": 405,
- "start": 157,
- "end": 157.14,
- "text": "was"
- },
- {
- "id": 406,
- "start": 158.18,
- "end": 158.39,
- "text": "incentivized?"
- },
- {
- "id": 407,
- "start": 159.36,
- "end": 159.64,
- "text": "One"
- },
- {
- "id": 408,
- "start": 159.64,
- "end": 159.79,
- "text": "of"
- },
- {
- "id": 409,
- "start": 159.79,
- "end": 160.02,
- "text": "the"
- },
- {
- "id": 410,
- "start": 160.02,
- "end": 160.55,
- "text": "biggest"
- },
- {
- "id": 411,
- "start": 160.55,
- "end": 160.93,
- "text": "things"
- },
- {
- "id": 412,
- "start": 160.93,
- "end": 161.05,
- "text": "that"
- },
- {
- "id": 413,
- "start": 161.06,
- "end": 161.27,
- "text": "I"
- },
- {
- "id": 414,
- "start": 161.19,
- "end": 161.49,
- "text": "worked"
- },
- {
- "id": 415,
- "start": 161.49,
- "end": 162,
- "text": "on"
- },
- {
- "id": 416,
- "start": 161.89666666666668,
- "end": 162.30333333333334,
- "text": "as"
- },
- {
- "id": 417,
- "start": 162.30333333333334,
- "end": 162.60666666666665,
- "text": "a"
- },
- {
- "id": 418,
- "start": 162.71,
- "end": 162.91,
- "text": "leader"
- },
- {
- "id": 419,
- "start": 162.91,
- "end": 163.01,
- "text": "on"
- },
- {
- "id": 420,
- "start": 163.01,
- "end": 163.09,
- "text": "the"
- },
- {
- "id": 421,
- "start": 163.09,
- "end": 163.34,
- "text": "Growth"
- },
- {
- "id": 422,
- "start": 163.34,
- "end": 163.67,
- "text": "team"
- },
- {
- "id": 423,
- "start": 163.67,
- "end": 163.96,
- "text": "has"
- },
- {
- "id": 424,
- "start": 163.96,
- "end": 164.22,
- "text": "really"
- },
- {
- "id": 425,
- "start": 164.22,
- "end": 164.46,
- "text": "been"
- },
- {
- "id": 426,
- "start": 164.46,
- "end": 164.76,
- "text": "helping"
- },
- {
- "id": 427,
- "start": 164.76,
- "end": 165,
- "text": "people"
- },
- {
- "id": 428,
- "start": 165,
- "end": 165.25,
- "text": "find"
- },
- {
- "id": 429,
- "start": 165.25,
- "end": 165.38,
- "text": "their"
- },
- {
- "id": 430,
- "start": 165.38,
- "end": 165.69,
- "text": "friends"
- },
- {
- "id": 431,
- "start": 165.69,
- "end": 165.86,
- "text": "on"
- },
- {
- "id": 432,
- "start": 165.86,
- "end": 166.87,
- "text": "Facebook."
- },
- {
- "id": 433,
- "start": 166.87,
- "end": 167.15,
- "text": "When"
- },
- {
- "id": 434,
- "start": 167.15,
- "end": 167.28,
- "text": "we"
- },
- {
- "id": 435,
- "start": 167.28,
- "end": 167.4,
- "text": "were"
- },
- {
- "id": 436,
- "start": 167.4,
- "end": 167.83,
- "text": "college"
- },
- {
- "id": 437,
- "start": 167.83,
- "end": 168.17,
- "text": "students,"
- },
- {
- "id": 438,
- "start": 168.17,
- "end": 168.23,
- "text": "it"
- },
- {
- "id": 439,
- "start": 168.23,
- "end": 168.39,
- "text": "was"
- },
- {
- "id": 440,
- "start": 168.39,
- "end": 168.65,
- "text": "really"
- },
- {
- "id": 441,
- "start": 168.65,
- "end": 168.9,
- "text": "easy"
- },
- {
- "id": 442,
- "start": 168.9,
- "end": 169,
- "text": "to"
- },
- {
- "id": 443,
- "start": 169.26,
- "end": 169.37,
- "text": "connect"
- },
- {
- "id": 444,
- "start": 169.61999999999998,
- "end": 169.74,
- "text": "to—I"
- },
- {
- "id": 445,
- "start": 169.98,
- "end": 170.11,
- "text": "went"
- },
- {
- "id": 446,
- "start": 170.11,
- "end": 170.18,
- "text": "to"
- },
- {
- "id": 447,
- "start": 170.18,
- "end": 170.58,
- "text": "Stanford;"
- },
- {
- "id": 448,
- "start": 170.58,
- "end": 170.84,
- "text": "all"
- },
- {
- "id": 449,
- "start": 170.84,
- "end": 170.95,
- "text": "of"
- },
- {
- "id": 450,
- "start": 170.95,
- "end": 171.07,
- "text": "my"
- },
- {
- "id": 451,
- "start": 171.07,
- "end": 171.39,
- "text": "friends"
- },
- {
- "id": 452,
- "start": 171.23,
- "end": 171.45499999999998,
- "text": "[were]"
- },
- {
- "id": 453,
- "start": 171.39,
- "end": 171.52,
- "text": "at"
- },
- {
- "id": 454,
- "start": 171.52,
- "end": 171.91,
- "text": "Stanford"
- },
- {
- "id": 455,
- "start": 171.91,
- "end": 172.54,
- "text": "campus."
- },
- {
- "id": 456,
- "start": 172.54,
- "end": 173.72,
- "text": "But"
- },
- {
- "id": 457,
- "start": 173.72,
- "end": 173.86,
- "text": "when"
- },
- {
- "id": 458,
- "start": 173.86,
- "end": 173.92,
- "text": "I"
- },
- {
- "id": 459,
- "start": 173.92,
- "end": 174.16,
- "text": "joined,"
- },
- {
- "id": 460,
- "start": 174.16,
- "end": 174.25,
- "text": "there"
- },
- {
- "id": 461,
- "start": 174.25,
- "end": 174.37,
- "text": "were"
- },
- {
- "id": 462,
- "start": 174.37,
- "end": 174.6,
- "text": "1"
- },
- {
- "id": 463,
- "start": 174.6,
- "end": 174.94,
- "text": "million"
- },
- {
- "id": 464,
- "start": 175.025,
- "end": 175.24,
- "text": "users,"
- },
- {
- "id": 465,
- "start": 175.45,
- "end": 175.54,
- "text": "and"
- },
- {
- "id": 466,
- "start": 175.54,
- "end": 175.66,
- "text": "now"
- },
- {
- "id": 467,
- "start": 175.66,
- "end": 175.87,
- "text": "there’s"
- },
- {
- "id": 468,
- "start": 175.87,
- "end": 176.13,
- "text": "over"
- },
- {
- "id": 469,
- "start": 176.13,
- "end": 176.48,
- "text": "2"
- },
- {
- "id": 470,
- "start": 176.48,
- "end": 177.04,
- "text": "billion"
- },
- {
- "id": 471,
- "start": 177.04,
- "end": 177.45,
- "text": "people"
- },
- {
- "id": 472,
- "start": 177.45,
- "end": 177.78,
- "text": "using"
- },
- {
- "id": 473,
- "start": 177.78,
- "end": 178.46,
- "text": "Facebook"
- },
- {
- "id": 474,
- "start": 178.46,
- "end": 178.71,
- "text": "every"
- },
- {
- "id": 475,
- "start": 178.71,
- "end": 179.67,
- "text": "month."
- },
- {
- "id": 476,
- "start": 179.67,
- "end": 180.02,
- "text": "We’ve"
- },
- {
- "id": 477,
- "start": 180.02,
- "end": 180.28,
- "text": "had"
- },
- {
- "id": 478,
- "start": 180.28,
- "end": 180.39,
- "text": "to"
- },
- {
- "id": 479,
- "start": 180.39,
- "end": 180.72,
- "text": "build"
- },
- {
- "id": 480,
- "start": 180.72,
- "end": 180.77,
- "text": "a"
- },
- {
- "id": 481,
- "start": 180.77,
- "end": 180.9,
- "text": "new"
- },
- {
- "id": 482,
- "start": 180.9,
- "end": 181.21,
- "text": "user"
- },
- {
- "id": 483,
- "start": 181.21,
- "end": 182.27,
- "text": "experience,"
- },
- {
- "id": 484,
- "start": 182.54666666666662,
- "end": 183.38333333333333,
- "text": "friend-finding"
- },
- {
- "id": 485,
- "start": 183.88333333333333,
- "end": 184.49666666666667,
- "text": "tools."
- },
- {
- "id": 486,
- "start": 185.22,
- "end": 185.61,
- "text": "Upload"
- },
- {
- "id": 487,
- "start": 185.61,
- "end": 185.73,
- "text": "your"
- },
- {
- "id": 488,
- "start": 185.73,
- "end": 186.27,
- "text": "profile"
- },
- {
- "id": 489,
- "start": 186.27,
- "end": 187,
- "text": "picture,"
- },
- {
- "id": 490,
- "start": 187,
- "end": 187.44,
- "text": "find"
- },
- {
- "id": 491,
- "start": 187.44,
- "end": 187.78,
- "text": "people"
- },
- {
- "id": 492,
- "start": 187.78,
- "end": 187.95,
- "text": "with"
- },
- {
- "id": 493,
- "start": 187.95,
- "end": 188.27,
- "text": "shared"
- },
- {
- "id": 494,
- "start": 188.27,
- "end": 189,
- "text": "interests"
- },
- {
- "id": 495,
- "start": 189,
- "end": 189.11,
- "text": "or"
- },
- {
- "id": 496,
- "start": 189.11,
- "end": 189.39,
- "text": "find"
- },
- {
- "id": 497,
- "start": 189.39,
- "end": 189.63,
- "text": "people"
- },
- {
- "id": 498,
- "start": 189.63,
- "end": 189.77,
- "text": "that"
- },
- {
- "id": 499,
- "start": 189.77,
- "end": 189.95,
- "text": "went"
- },
- {
- "id": 500,
- "start": 189.95,
- "end": 190.06,
- "text": "to"
- },
- {
- "id": 501,
- "start": 190.06,
- "end": 190.19,
- "text": "your"
- },
- {
- "id": 502,
- "start": 190.19,
- "end": 191.26,
- "text": "school."
- },
- {
- "id": 503,
- "start": 191.26,
- "end": 191.3,
- "text": "A"
- },
- {
- "id": 504,
- "start": 191.3,
- "end": 191.61,
- "text": "lot"
- },
- {
- "id": 505,
- "start": 191.61,
- "end": 191.71,
- "text": "of"
- },
- {
- "id": 506,
- "start": 191.71,
- "end": 191.81,
- "text": "the"
- },
- {
- "id": 507,
- "start": 191.81,
- "end": 192.06,
- "text": "work"
- },
- {
- "id": 508,
- "start": 192.06,
- "end": 192.17,
- "text": "that"
- },
- {
- "id": 509,
- "start": 192.17,
- "end": 192.32,
- "text": "we’ve"
- },
- {
- "id": 510,
- "start": 192.32,
- "end": 192.47,
- "text": "been"
- },
- {
- "id": 511,
- "start": 192.47,
- "end": 192.84,
- "text": "doing"
- },
- {
- "id": 512,
- "start": 192.84,
- "end": 193.02,
- "text": "is"
- },
- {
- "id": 513,
- "start": 193.02,
- "end": 193.25,
- "text": "really"
- },
- {
- "id": 514,
- "start": 193.25,
- "end": 193.58,
- "text": "helping"
- },
- {
- "id": 515,
- "start": 193.58,
- "end": 193.84,
- "text": "people"
- },
- {
- "id": 516,
- "start": 193.84,
- "end": 194.08,
- "text": "find"
- },
- {
- "id": 517,
- "start": 194.08,
- "end": 194.21,
- "text": "their"
- },
- {
- "id": 518,
- "start": 194.21,
- "end": 194.47,
- "text": "friends"
- },
- {
- "id": 519,
- "start": 194.47,
- "end": 194.61,
- "text": "on"
- },
- {
- "id": 520,
- "start": 194.61,
- "end": 195.15,
- "text": "Facebook,"
- },
- {
- "id": 521,
- "start": 195.15,
- "end": 195.9,
- "text": "because"
- },
- {
- "id": 522,
- "start": 195.69,
- "end": 196.34,
- "text": "without"
- },
- {
- "id": 523,
- "start": 196.40999999999997,
- "end": 197.22500000000008,
- "text": "friends—you"
- },
- {
- "id": 524,
- "start": 197.13,
- "end": 198.11,
- "text": "know,"
- },
- {
- "id": 525,
- "start": 198.11,
- "end": 198.26,
- "text": "the"
- },
- {
- "id": 526,
- "start": 198.26,
- "end": 198.51,
- "text": "site’s"
- },
- {
- "id": 527,
- "start": 198.51,
- "end": 198.62,
- "text": "all"
- },
- {
- "id": 528,
- "start": 198.62,
- "end": 199.11,
- "text": "about"
- },
- {
- "id": 529,
- "start": 199.11,
- "end": 199.27,
- "text": "your"
- },
- {
- "id": 530,
- "start": 199.27,
- "end": 199.53,
- "text": "friends"
- },
- {
- "id": 531,
- "start": 199.53,
- "end": 199.65,
- "text": "and"
- },
- {
- "id": 532,
- "start": 199.65,
- "end": 200.64,
- "text": "family."
- },
- {
- "id": 533,
- "start": 200.64,
- "end": 200.96,
- "text": "If"
- },
- {
- "id": 534,
- "start": 200.96,
- "end": 201.03,
- "text": "you"
- },
- {
- "id": 535,
- "start": 201.03,
- "end": 201.16,
- "text": "don’t"
- },
- {
- "id": 536,
- "start": 201.16,
- "end": 201.25,
- "text": "have"
- },
- {
- "id": 537,
- "start": 201.25,
- "end": 201.38,
- "text": "any"
- },
- {
- "id": 538,
- "start": 201.38,
- "end": 201.86,
- "text": "friends,"
- },
- {
- "id": 539,
- "start": 201.86,
- "end": 201.9,
- "text": "I"
- },
- {
- "id": 540,
- "start": 201.9,
- "end": 202.07,
- "text": "don’t"
- },
- {
- "id": 541,
- "start": 202.07,
- "end": 202.25,
- "text": "think"
- },
- {
- "id": 542,
- "start": 202.25,
- "end": 202.36,
- "text": "it"
- },
- {
- "id": 543,
- "start": 202.36,
- "end": 203.02,
- "text": "can"
- },
- {
- "id": 544,
- "start": 203.02,
- "end": 203.34,
- "text": "really"
- },
- {
- "id": 545,
- "start": 203.34,
- "end": 203.69,
- "text": "provide"
- },
- {
- "id": 546,
- "start": 203.69,
- "end": 203.81,
- "text": "its"
- },
- {
- "id": 547,
- "start": 204.33000000000004,
- "end": 204.51500000000004,
- "text": "value."
- },
- {
- "id": 548,
- "start": 204.97,
- "end": 205.22,
- "text": "Some"
- },
- {
- "id": 549,
- "start": 205.22,
- "end": 205.29,
- "text": "of"
- },
- {
- "id": 550,
- "start": 205.29,
- "end": 205.47,
- "text": "the"
- },
- {
- "id": 551,
- "start": 205.47,
- "end": 206.09,
- "text": "problems"
- },
- {
- "id": 552,
- "start": 206.09,
- "end": 206.24,
- "text": "that"
- },
- {
- "id": 553,
- "start": 206.24,
- "end": 206.51,
- "text": "have"
- },
- {
- "id": 554,
- "start": 206.51,
- "end": 206.94,
- "text": "reared"
- },
- {
- "id": 555,
- "start": 206.94,
- "end": 207.12,
- "text": "their"
- },
- {
- "id": 556,
- "start": 207.12,
- "end": 207.87,
- "text": "head"
- },
- {
- "id": 557,
- "start": 207.87,
- "end": 208.07,
- "text": "with"
- },
- {
- "id": 558,
- "start": 208.07,
- "end": 208.54,
- "text": "Facebook"
- },
- {
- "id": 559,
- "start": 208.54,
- "end": 208.71,
- "text": "over"
- },
- {
- "id": 560,
- "start": 208.71,
- "end": 208.79,
- "text": "the"
- },
- {
- "id": 561,
- "start": 208.79,
- "end": 209.07,
- "text": "past"
- },
- {
- "id": 562,
- "start": 209.07,
- "end": 209.3,
- "text": "couple"
- },
- {
- "id": 563,
- "start": 209.3,
- "end": 209.38,
- "text": "of"
- },
- {
- "id": 564,
- "start": 209.38,
- "end": 209.88,
- "text": "years"
- },
- {
- "id": 565,
- "start": 211.21000000000015,
- "end": 211.5,
- "text": "seem"
- },
- {
- "id": 566,
- "start": 213.04,
- "end": 213.12,
- "text": "to"
- },
- {
- "id": 567,
- "start": 213.12,
- "end": 213.21,
- "text": "have"
- },
- {
- "id": 568,
- "start": 213.21,
- "end": 213.36,
- "text": "been"
- },
- {
- "id": 569,
- "start": 213.36,
- "end": 213.83,
- "text": "caused"
- },
- {
- "id": 570,
- "start": 213.83,
- "end": 213.92,
- "text": "in"
- },
- {
- "id": 571,
- "start": 213.92,
- "end": 214.17,
- "text": "some"
- },
- {
- "id": 572,
- "start": 214.17,
- "end": 214.53,
- "text": "ways"
- },
- {
- "id": 573,
- "start": 214.53,
- "end": 215.57,
- "text": "by"
- },
- {
- "id": 574,
- "start": 215.57,
- "end": 215.94,
- "text": "this"
- },
- {
- "id": 575,
- "start": 215.94,
- "end": 216.62,
- "text": "exponential"
- },
- {
- "id": 576,
- "start": 216.62,
- "end": 217.44,
- "text": "growth,"
- },
- {
- "id": 577,
- "start": 217.44,
- "end": 218.88,
- "text": "by"
- },
- {
- "id": 578,
- "start": 218.88,
- "end": 219.24,
- "text": "growing"
- },
- {
- "id": 579,
- "start": 219.24,
- "end": 219.44,
- "text": "too"
- },
- {
- "id": 580,
- "start": 219.44,
- "end": 219.85,
- "text": "fast"
- },
- {
- "id": 581,
- "start": 219.715,
- "end": 221.32499999999993,
- "text": "too"
- },
- {
- "id": 582,
- "start": 219.99,
- "end": 222.8,
- "text": "quickly."
- },
- {
- "id": 583,
- "start": 222.8,
- "end": 222.98,
- "text": "Do"
- },
- {
- "id": 584,
- "start": 222.98,
- "end": 223.05,
- "text": "you"
- },
- {
- "id": 585,
- "start": 223.05,
- "end": 223.32,
- "text": "think"
- },
- {
- "id": 586,
- "start": 223.32,
- "end": 223.51,
- "text": "that"
- },
- {
- "id": 587,
- "start": 223.51,
- "end": 223.97,
- "text": "growth"
- },
- {
- "id": 588,
- "start": 223.97,
- "end": 224.19,
- "text": "was"
- },
- {
- "id": 589,
- "start": 224.19,
- "end": 224.43,
- "text": "in"
- },
- {
- "id": 590,
- "start": 224.43,
- "end": 224.65,
- "text": "some"
- },
- {
- "id": 591,
- "start": 224.65,
- "end": 224.86,
- "text": "ways"
- },
- {
- "id": 592,
- "start": 224.86,
- "end": 225.52,
- "text": "responsible"
- },
- {
- "id": 593,
- "start": 225.52,
- "end": 225.74,
- "text": "for"
- },
- {
- "id": 594,
- "start": 225.74,
- "end": 226.52,
- "text": "where"
- },
- {
- "id": 595,
- "start": 226.16,
- "end": 226.62,
- "text": "the"
- },
- {
- "id": 596,
- "start": 226.45666666666668,
- "end": 226.84666666666666,
- "text": "company"
- },
- {
- "id": 597,
- "start": 226.75333333333336,
- "end": 227.07333333333335,
- "text": "has"
- },
- {
- "id": 598,
- "start": 227.05,
- "end": 227.3,
- "text": "found"
- },
- {
- "id": 599,
- "start": 227.3,
- "end": 227.67,
- "text": "itself"
- },
- {
- "id": 600,
- "start": 227.67,
- "end": 228.97,
- "text": "now?"
- },
- {
- "id": 601,
- "start": 228.97,
- "end": 229.68,
- "text": "So"
- },
- {
- "id": 602,
- "start": 229.68,
- "end": 229.82,
- "text": "I"
- },
- {
- "id": 603,
- "start": 229.82,
- "end": 230.19,
- "text": "think"
- },
- {
- "id": 604,
- "start": 230.01,
- "end": 230.51,
- "text": "Mark—and"
- },
- {
- "id": 605,
- "start": 230.2,
- "end": 230.83,
- "text": "Mark"
- },
- {
- "id": 606,
- "start": 230.77000000000004,
- "end": 231.215,
- "text": "has"
- },
- {
- "id": 607,
- "start": 231.34,
- "end": 231.6,
- "text": "said"
- },
- {
- "id": 608,
- "start": 231.6,
- "end": 232.03,
- "text": "this,"
- },
- {
- "id": 609,
- "start": 232.03,
- "end": 232.55,
- "text": "that"
- },
- {
- "id": 610,
- "start": 232.55,
- "end": 233.03,
- "text": "we"
- },
- {
- "id": 611,
- "start": 233.03,
- "end": 233.24,
- "text": "have"
- },
- {
- "id": 612,
- "start": 233.24,
- "end": 233.58,
- "text": "been"
- },
- {
- "id": 613,
- "start": 233.58,
- "end": 234.53,
- "text": "slow"
- },
- {
- "id": 614,
- "start": 234.53,
- "end": 235.16,
- "text": "to"
- },
- {
- "id": 615,
- "start": 235.16,
- "end": 235.59,
- "text": "really"
- },
- {
- "id": 616,
- "start": 235.59,
- "end": 237.04,
- "text": "understand"
- },
- {
- "id": 617,
- "start": 237.04,
- "end": 237.17,
- "text": "the"
- },
- {
- "id": 618,
- "start": 237.17,
- "end": 237.57,
- "text": "ways"
- },
- {
- "id": 619,
- "start": 237.57,
- "end": 237.7,
- "text": "in"
- },
- {
- "id": 620,
- "start": 237.7,
- "end": 238.21,
- "text": "which"
- },
- {
- "id": 621,
- "start": 238.21,
- "end": 238.72,
- "text": "Facebook"
- },
- {
- "id": 622,
- "start": 238.72,
- "end": 239,
- "text": "might"
- },
- {
- "id": 623,
- "start": 239,
- "end": 239.24,
- "text": "be"
- },
- {
- "id": 624,
- "start": 239.24,
- "end": 239.94,
- "text": "used"
- },
- {
- "id": 625,
- "start": 239.94,
- "end": 241.05,
- "text": "for"
- },
- {
- "id": 626,
- "start": 241.05,
- "end": 241.29,
- "text": "bad"
- },
- {
- "id": 627,
- "start": 241.29,
- "end": 242.18,
- "text": "things."
- },
- {
- "id": 628,
- "start": 242.18,
- "end": 242.66,
- "text": "We’ve"
- },
- {
- "id": 629,
- "start": 242.66,
- "end": 242.83,
- "text": "been"
- },
- {
- "id": 630,
- "start": 242.83,
- "end": 243.04,
- "text": "really"
- },
- {
- "id": 631,
- "start": 243.04,
- "end": 243.62,
- "text": "focused"
- },
- {
- "id": 632,
- "start": 243.62,
- "end": 243.93,
- "text": "on"
- },
- {
- "id": 633,
- "start": 243.93,
- "end": 244.01,
- "text": "the"
- },
- {
- "id": 634,
- "start": 244.01,
- "end": 244.19,
- "text": "good"
- },
- {
- "id": 635,
- "start": 244.19,
- "end": 245.047,
- "text": "things."
- },
- {
- "id": 636,
- "start": 245.047,
- "end": 245.497,
- "text": "I"
- },
- {
- "id": 637,
- "start": 245.497,
- "end": 245.687,
- "text": "lead"
- },
- {
- "id": 638,
- "start": 245.687,
- "end": 245.737,
- "text": "a"
- },
- {
- "id": 639,
- "start": 245.737,
- "end": 246.077,
- "text": "team"
- },
- {
- "id": 640,
- "start": 246.077,
- "end": 246.287,
- "text": "called"
- },
- {
- "id": 641,
- "start": 246.287,
- "end": 246.367,
- "text": "the"
- },
- {
- "id": 642,
- "start": 246.367,
- "end": 246.717,
- "text": "Social"
- },
- {
- "id": 643,
- "start": 246.717,
- "end": 246.927,
- "text": "Good"
- },
- {
- "id": 644,
- "start": 246.927,
- "end": 247.327,
- "text": "team,"
- },
- {
- "id": 645,
- "start": 247.327,
- "end": 247.597,
- "text": "and"
- },
- {
- "id": 646,
- "start": 247.597,
- "end": 247.827,
- "text": "their"
- },
- {
- "id": 647,
- "start": 247.827,
- "end": 248.737,
- "text": "entire"
- },
- {
- "id": 648,
- "start": 248.737,
- "end": 249.327,
- "text": "focus"
- },
- {
- "id": 649,
- "start": 249.327,
- "end": 249.977,
- "text": "is"
- },
- {
- "id": 650,
- "start": 249.977,
- "end": 250.587,
- "text": "finding"
- },
- {
- "id": 651,
- "start": 250.587,
- "end": 250.887,
- "text": "great"
- },
- {
- "id": 652,
- "start": 250.887,
- "end": 251.157,
- "text": "things"
- },
- {
- "id": 653,
- "start": 251.157,
- "end": 251.317,
- "text": "that"
- },
- {
- "id": 654,
- "start": 251.317,
- "end": 251.587,
- "text": "happen"
- },
- {
- "id": 655,
- "start": 251.587,
- "end": 251.727,
- "text": "on"
- },
- {
- "id": 656,
- "start": 251.727,
- "end": 252.147,
- "text": "Facebook"
- },
- {
- "id": 657,
- "start": 252.147,
- "end": 252.267,
- "text": "all"
- },
- {
- "id": 658,
- "start": 252.267,
- "end": 252.357,
- "text": "the"
- },
- {
- "id": 659,
- "start": 252.357,
- "end": 252.977,
- "text": "time"
- },
- {
- "id": 660,
- "start": 252.977,
- "end": 253.767,
- "text": "and"
- },
- {
- "id": 661,
- "start": 253.767,
- "end": 254.097,
- "text": "building"
- },
- {
- "id": 662,
- "start": 254.097,
- "end": 254.417,
- "text": "tools"
- },
- {
- "id": 663,
- "start": 254.417,
- "end": 254.507,
- "text": "to"
- },
- {
- "id": 664,
- "start": 254.507,
- "end": 254.677,
- "text": "make"
- },
- {
- "id": 665,
- "start": 254.677,
- "end": 254.847,
- "text": "that"
- },
- {
- "id": 666,
- "start": 254.847,
- "end": 255.067,
- "text": "even"
- },
- {
- "id": 667,
- "start": 255.067,
- "end": 256.077,
- "text": "easier."
- },
- {
- "id": 668,
- "start": 256.077,
- "end": 256.197,
- "text": "A"
- },
- {
- "id": 669,
- "start": 256.197,
- "end": 256.347,
- "text": "good"
- },
- {
- "id": 670,
- "start": 256.347,
- "end": 256.817,
- "text": "example"
- },
- {
- "id": 671,
- "start": 256.817,
- "end": 257.147,
- "text": "is"
- },
- {
- "id": 672,
- "start": 257.332,
- "end": 257.592,
- "text": "ALS"
- },
- {
- "id": 673,
- "start": 257.847,
- "end": 258.037,
- "text": "Ice"
- },
- {
- "id": 674,
- "start": 258.037,
- "end": 258.297,
- "text": "Bucket"
- },
- {
- "id": 675,
- "start": 258.297,
- "end": 258.977,
- "text": "Challenge."
- },
- {
- "id": 676,
- "start": 258.977,
- "end": 259.087,
- "text": "We"
- },
- {
- "id": 677,
- "start": 259.087,
- "end": 259.367,
- "text": "built"
- },
- {
- "id": 678,
- "start": 259.367,
- "end": 259.447,
- "text": "the"
- },
- {
- "id": 679,
- "start": 259.447,
- "end": 259.787,
- "text": "Donate"
- },
- {
- "id": 680,
- "start": 259.787,
- "end": 260.067,
- "text": "button"
- },
- {
- "id": 681,
- "start": 260.067,
- "end": 260.317,
- "text": "from"
- },
- {
- "id": 682,
- "start": 260.317,
- "end": 261.847,
- "text": "that."
- },
- {
- "id": 683,
- "start": 261.847,
- "end": 262.027,
- "text": "In"
- },
- {
- "id": 684,
- "start": 262.027,
- "end": 262.547,
- "text": "terms"
- },
- {
- "id": 685,
- "start": 262.547,
- "end": 263.877,
- "text": "of"
- },
- {
- "id": 686,
- "start": 263.877,
- "end": 264.217,
- "text": "have"
- },
- {
- "id": 687,
- "start": 264.217,
- "end": 264.327,
- "text": "we"
- },
- {
- "id": 688,
- "start": 264.327,
- "end": 264.557,
- "text": "been"
- },
- {
- "id": 689,
- "start": 264.557,
- "end": 265.307,
- "text": "slow?"
- },
- {
- "id": 690,
- "start": 265.232,
- "end": 265.71200000000005,
- "text": "Yes."
- },
- {
- "id": 691,
- "start": 265.907,
- "end": 266.117,
- "text": "But"
- },
- {
- "id": 692,
- "start": 266.117,
- "end": 266.347,
- "text": "we’ve"
- },
- {
- "id": 693,
- "start": 266.347,
- "end": 266.627,
- "text": "done"
- },
- {
- "id": 694,
- "start": 266.627,
- "end": 267.467,
- "text": "so"
- },
- {
- "id": 695,
- "start": 267.467,
- "end": 268.057,
- "text": "much"
- },
- {
- "id": 696,
- "start": 268.057,
- "end": 268.627,
- "text": "to"
- },
- {
- "id": 697,
- "start": 268.627,
- "end": 268.867,
- "text": "make"
- },
- {
- "id": 698,
- "start": 268.867,
- "end": 268.997,
- "text": "up"
- },
- {
- "id": 699,
- "start": 268.997,
- "end": 269.147,
- "text": "for"
- },
- {
- "id": 700,
- "start": 269.147,
- "end": 270.087,
- "text": "that."
- },
- {
- "id": 701,
- "start": 270.087,
- "end": 270.257,
- "text": "Let"
- },
- {
- "id": 702,
- "start": 270.257,
- "end": 270.337,
- "text": "me"
- },
- {
- "id": 703,
- "start": 270.337,
- "end": 270.517,
- "text": "ask"
- },
- {
- "id": 704,
- "start": 270.517,
- "end": 270.587,
- "text": "you"
- },
- {
- "id": 705,
- "start": 270.587,
- "end": 270.737,
- "text": "about"
- },
- {
- "id": 706,
- "start": 270.737,
- "end": 270.807,
- "text": "the"
- },
- {
- "id": 707,
- "start": 270.807,
- "end": 271.127,
- "text": "slow,"
- },
- {
- "id": 708,
- "start": 271.127,
- "end": 271.327,
- "text": "though,"
- },
- {
- "id": 709,
- "start": 271.327,
- "end": 272.687,
- "text": "because"
- },
- {
- "id": 710,
- "start": 272.687,
- "end": 272.897,
- "text": "one"
- },
- {
- "id": 711,
- "start": 272.897,
- "end": 272.967,
- "text": "of"
- },
- {
- "id": 712,
- "start": 272.967,
- "end": 273.067,
- "text": "the"
- },
- {
- "id": 713,
- "start": 273.067,
- "end": 273.797,
- "text": "things"
- },
- {
- "id": 714,
- "start": 273.797,
- "end": 274.037,
- "text": "in"
- },
- {
- "id": 715,
- "start": 274.037,
- "end": 274.237,
- "text": "our"
- },
- {
- "id": 716,
- "start": 274.237,
- "end": 274.857,
- "text": "reporting"
- },
- {
- "id": 717,
- "start": 274.857,
- "end": 275.007,
- "text": "and"
- },
- {
- "id": 718,
- "start": 275.007,
- "end": 275.137,
- "text": "one"
- },
- {
- "id": 719,
- "start": 275.137,
- "end": 275.227,
- "text": "of"
- },
- {
- "id": 720,
- "start": 275.227,
- "end": 275.347,
- "text": "the"
- },
- {
- "id": 721,
- "start": 275.347,
- "end": 275.747,
- "text": "things"
- },
- {
- "id": 722,
- "start": 275.747,
- "end": 275.957,
- "text": "that"
- },
- {
- "id": 723,
- "start": 275.957,
- "end": 275.987,
- "text": "I"
- },
- {
- "id": 724,
- "start": 275.987,
- "end": 276.247,
- "text": "think"
- },
- {
- "id": 725,
- "start": 276.247,
- "end": 276.297,
- "text": "a"
- },
- {
- "id": 726,
- "start": 276.297,
- "end": 276.487,
- "text": "lot"
- },
- {
- "id": 727,
- "start": 276.487,
- "end": 276.597,
- "text": "of"
- },
- {
- "id": 728,
- "start": 276.597,
- "end": 277.017,
- "text": "outside"
- },
- {
- "id": 729,
- "start": 277.017,
- "end": 277.427,
- "text": "critics"
- },
- {
- "id": 730,
- "start": 277.427,
- "end": 277.567,
- "text": "would"
- },
- {
- "id": 731,
- "start": 277.567,
- "end": 278.277,
- "text": "say"
- },
- {
- "id": 732,
- "start": 278.277,
- "end": 278.497,
- "text": "is"
- },
- {
- "id": 733,
- "start": 278.497,
- "end": 278.987,
- "text": "that"
- },
- {
- "id": 734,
- "start": 278.987,
- "end": 279.967,
- "text": "there"
- },
- {
- "id": 735,
- "start": 279.967,
- "end": 280.287,
- "text": "was"
- },
- {
- "id": 736,
- "start": 280.287,
- "end": 280.667,
- "text": "plenty"
- },
- {
- "id": 737,
- "start": 280.667,
- "end": 280.847,
- "text": "that"
- },
- {
- "id": 738,
- "start": 280.847,
- "end": 281.007,
- "text": "was"
- },
- {
- "id": 739,
- "start": 281.007,
- "end": 281.507,
- "text": "known"
- },
- {
- "id": 740,
- "start": 281.507,
- "end": 281.867,
- "text": "about"
- },
- {
- "id": 741,
- "start": 281.867,
- "end": 281.967,
- "text": "the"
- },
- {
- "id": 742,
- "start": 281.967,
- "end": 282.447,
- "text": "potential"
- },
- {
- "id": 743,
- "start": 282.447,
- "end": 283.237,
- "text": "downsides"
- },
- {
- "id": 744,
- "start": 283.237,
- "end": 283.417,
- "text": "of"
- },
- {
- "id": 745,
- "start": 283.417,
- "end": 283.747,
- "text": "social"
- },
- {
- "id": 746,
- "start": 283.747,
- "end": 284.097,
- "text": "media"
- },
- {
- "id": 747,
- "start": 284.097,
- "end": 284.447,
- "text": "and"
- },
- {
- "id": 748,
- "start": 284.89699999999993,
- "end": 285.14700000000005,
- "text": "Facebook—you"
- },
- {
- "id": 749,
- "start": 285.697,
- "end": 285.847,
- "text": "know,"
- },
- {
- "id": 750,
- "start": 285.847,
- "end": 286.347,
- "text": "potential"
- },
- {
- "id": 751,
- "start": 286.347,
- "end": 286.727,
- "text": "for"
- },
- {
- "id": 752,
- "start": 286.727,
- "end": 287.987,
- "text": "disinformation,"
- },
- {
- "id": 753,
- "start": 287.987,
- "end": 288.477,
- "text": "potential"
- },
- {
- "id": 754,
- "start": 288.477,
- "end": 288.807,
- "text": "for"
- },
- {
- "id": 755,
- "start": 288.832,
- "end": 289.197,
- "text": "filter"
- },
- {
- "id": 756,
- "start": 289.187,
- "end": 289.587,
- "text": "bubbles"
- },
- {
- "id": 757,
- "start": 289.587,
- "end": 289.687,
- "text": "or"
- },
- {
- "id": 758,
- "start": 289.687,
- "end": 290.157,
- "text": "preference"
- },
- {
- "id": 759,
- "start": 290.157,
- "end": 291.047,
- "text": "bubbles,"
- },
- {
- "id": 760,
- "start": 291.047,
- "end": 291.557,
- "text": "potential"
- },
- {
- "id": 761,
- "start": 291.557,
- "end": 293.577,
- "text": "for"
- },
- {
- "id": 762,
- "start": 293.577,
- "end": 293.837,
- "text": "all"
- },
- {
- "id": 763,
- "start": 293.837,
- "end": 294.127,
- "text": "sorts"
- },
- {
- "id": 764,
- "start": 294.127,
- "end": 294.347,
- "text": "of"
- },
- {
- "id": 765,
- "start": 294.347,
- "end": 294.637,
- "text": "bad"
- },
- {
- "id": 766,
- "start": 294.637,
- "end": 295.087,
- "text": "actors"
- },
- {
- "id": 767,
- "start": 295.087,
- "end": 295.187,
- "text": "and"
- },
- {
- "id": 768,
- "start": 295.61199999999997,
- "end": 295.78700000000003,
- "text": "abuse."
- },
- {
- "id": 769,
- "start": 296.137,
- "end": 296.387,
- "text": "Were"
- },
- {
- "id": 770,
- "start": 296.387,
- "end": 296.667,
- "text": "these"
- },
- {
- "id": 771,
- "start": 296.667,
- "end": 296.997,
- "text": "things"
- },
- {
- "id": 772,
- "start": 296.997,
- "end": 297.247,
- "text": "that"
- },
- {
- "id": 773,
- "start": 297.247,
- "end": 297.447,
- "text": "you"
- },
- {
- "id": 774,
- "start": 297.447,
- "end": 297.717,
- "text": "just"
- },
- {
- "id": 775,
- "start": 297.717,
- "end": 297.967,
- "text": "weren’t"
- },
- {
- "id": 776,
- "start": 297.967,
- "end": 298.217,
- "text": "paying"
- },
- {
- "id": 777,
- "start": 298.217,
- "end": 298.737,
- "text": "attention"
- },
- {
- "id": 778,
- "start": 298.737,
- "end": 299.047,
- "text": "to,"
- },
- {
- "id": 779,
- "start": 299.047,
- "end": 299.247,
- "text": "or"
- },
- {
- "id": 780,
- "start": 299.247,
- "end": 299.367,
- "text": "were"
- },
- {
- "id": 781,
- "start": 299.367,
- "end": 299.647,
- "text": "these"
- },
- {
- "id": 782,
- "start": 299.647,
- "end": 299.967,
- "text": "things"
- },
- {
- "id": 783,
- "start": 299.967,
- "end": 300.637,
- "text": "that"
- },
- {
- "id": 784,
- "start": 300.637,
- "end": 301.737,
- "text": "were"
- },
- {
- "id": 785,
- "start": 301.737,
- "end": 302.267,
- "text": "conscious"
- },
- {
- "id": 786,
- "start": 302.267,
- "end": 302.917,
- "text": "choices"
- },
- {
- "id": 787,
- "start": 302.917,
- "end": 303.067,
- "text": "to"
- },
- {
- "id": 788,
- "start": 303.642,
- "end": 303.79200000000003,
- "text": "say,"
- },
- {
- "id": 789,
- "start": 304.367,
- "end": 304.517,
- "text": "“All"
- },
- {
- "id": 790,
- "start": 304.517,
- "end": 304.697,
- "text": "right,"
- },
- {
- "id": 791,
- "start": 304.697,
- "end": 304.837,
- "text": "we’re"
- },
- {
- "id": 792,
- "start": 305.092,
- "end": 305.392,
- "text": "going"
- },
- {
- "id": 793,
- "start": 305.48699999999997,
- "end": 305.947,
- "text": "to"
- },
- {
- "id": 794,
- "start": 305.88199999999995,
- "end": 306.502,
- "text": "abdicate"
- },
- {
- "id": 795,
- "start": 306.277,
- "end": 307.057,
- "text": "responsibility"
- },
- {
- "id": 796,
- "start": 307.057,
- "end": 307.247,
- "text": "from"
- },
- {
- "id": 797,
- "start": 307.247,
- "end": 307.487,
- "text": "those"
- },
- {
- "id": 798,
- "start": 307.487,
- "end": 307.837,
- "text": "things"
- },
- {
- "id": 799,
- "start": 307.837,
- "end": 308.107,
- "text": "and"
- },
- {
- "id": 800,
- "start": 308.107,
- "end": 308.367,
- "text": "just"
- },
- {
- "id": 801,
- "start": 308.367,
- "end": 308.577,
- "text": "keep"
- },
- {
- "id": 802,
- "start": 309.027,
- "end": 309.187,
- "text": "growing”?"
- },
- {
- "id": 803,
- "start": 309.687,
- "end": 309.797,
- "text": "I"
- },
- {
- "id": 804,
- "start": 309.797,
- "end": 310.147,
- "text": "definitely"
- },
- {
- "id": 805,
- "start": 310.147,
- "end": 310.347,
- "text": "think"
- },
- {
- "id": 806,
- "start": 310.347,
- "end": 310.517,
- "text": "we’ve"
- },
- {
- "id": 807,
- "start": 310.517,
- "end": 310.687,
- "text": "been"
- },
- {
- "id": 808,
- "start": 310.687,
- "end": 311.027,
- "text": "paying"
- },
- {
- "id": 809,
- "start": 311.027,
- "end": 311.557,
- "text": "attention"
- },
- {
- "id": 810,
- "start": 311.557,
- "end": 311.687,
- "text": "to"
- },
- {
- "id": 811,
- "start": 311.687,
- "end": 311.847,
- "text": "the"
- },
- {
- "id": 812,
- "start": 311.847,
- "end": 312.157,
- "text": "things"
- },
- {
- "id": 813,
- "start": 312.157,
- "end": 312.317,
- "text": "that"
- },
- {
- "id": 814,
- "start": 312.317,
- "end": 312.447,
- "text": "we"
- },
- {
- "id": 815,
- "start": 312.827,
- "end": 312.947,
- "text": "know."
- },
- {
- "id": 816,
- "start": 313.337,
- "end": 313.447,
- "text": "One"
- },
- {
- "id": 817,
- "start": 313.447,
- "end": 313.507,
- "text": "of"
- },
- {
- "id": 818,
- "start": 313.507,
- "end": 313.577,
- "text": "the"
- },
- {
- "id": 819,
- "start": 313.577,
- "end": 313.917,
- "text": "biggest"
- },
- {
- "id": 820,
- "start": 313.917,
- "end": 314.497,
- "text": "challenges"
- },
- {
- "id": 821,
- "start": 314.497,
- "end": 314.967,
- "text": "here"
- },
- {
- "id": 822,
- "start": 314.967,
- "end": 315.137,
- "text": "is"
- },
- {
- "id": 823,
- "start": 315.137,
- "end": 315.317,
- "text": "that"
- },
- {
- "id": 824,
- "start": 315.317,
- "end": 315.507,
- "text": "this"
- },
- {
- "id": 825,
- "start": 315.507,
- "end": 315.687,
- "text": "is"
- },
- {
- "id": 826,
- "start": 315.687,
- "end": 315.967,
- "text": "really"
- },
- {
- "id": 827,
- "start": 315.967,
- "end": 316.057,
- "text": "an"
- },
- {
- "id": 828,
- "start": 316.057,
- "end": 316.677,
- "text": "evolving"
- },
- {
- "id": 829,
- "start": 316.677,
- "end": 316.957,
- "text": "set"
- },
- {
- "id": 830,
- "start": 316.957,
- "end": 317.057,
- "text": "of"
- },
- {
- "id": 831,
- "start": 317.057,
- "end": 317.507,
- "text": "threats"
- },
- {
- "id": 832,
- "start": 317.507,
- "end": 317.697,
- "text": "and"
- },
- {
- "id": 833,
- "start": 317.697,
- "end": 318.337,
- "text": "risks."
- },
- {
- "id": 834,
- "start": 318.337,
- "end": 318.847,
- "text": "One"
- },
- {
- "id": 835,
- "start": 318.847,
- "end": 319.047,
- "text": "good"
- },
- {
- "id": 836,
- "start": 319.047,
- "end": 319.567,
- "text": "example"
- },
- {
- "id": 837,
- "start": 319.567,
- "end": 319.697,
- "text": "of"
- },
- {
- "id": 838,
- "start": 319.697,
- "end": 320.007,
- "text": "this"
- },
- {
- "id": 839,
- "start": 319.997,
- "end": 320.477,
- "text": "is"
- },
- {
- "id": 840,
- "start": 320.27700000000004,
- "end": 320.717,
- "text": "we"
- },
- {
- "id": 841,
- "start": 320.557,
- "end": 320.957,
- "text": "were"
- },
- {
- "id": 842,
- "start": 320.957,
- "end": 321.177,
- "text": "really"
- },
- {
- "id": 843,
- "start": 321.177,
- "end": 321.587,
- "text": "focused"
- },
- {
- "id": 844,
- "start": 321.587,
- "end": 321.727,
- "text": "on"
- },
- {
- "id": 845,
- "start": 322.147,
- "end": 322.307,
- "text": "cyberattacks"
- },
- {
- "id": 846,
- "start": 322.707,
- "end": 322.887,
- "text": "for"
- },
- {
- "id": 847,
- "start": 322.887,
- "end": 322.997,
- "text": "the"
- },
- {
- "id": 848,
- "start": 322.997,
- "end": 323.437,
- "text": "November"
- },
- {
- "id": 849,
- "start": 323.627,
- "end": 324.41200000000003,
- "text": "2016"
- },
- {
- "id": 850,
- "start": 324.257,
- "end": 325.387,
- "text": "election."
- },
- {
- "id": 851,
- "start": 325.387,
- "end": 325.717,
- "text": "We"
- },
- {
- "id": 852,
- "start": 325.717,
- "end": 326.527,
- "text": "weren’t"
- },
- {
- "id": 853,
- "start": 326.527,
- "end": 327.117,
- "text": "ahead"
- },
- {
- "id": 854,
- "start": 327.117,
- "end": 327.307,
- "text": "of"
- },
- {
- "id": 855,
- "start": 327.307,
- "end": 327.407,
- "text": "the"
- },
- {
- "id": 856,
- "start": 327.407,
- "end": 328.017,
- "text": "curve"
- },
- {
- "id": 857,
- "start": 328.017,
- "end": 328.457,
- "text": "on"
- },
- {
- "id": 858,
- "start": 328.457,
- "end": 328.877,
- "text": "foreign"
- },
- {
- "id": 859,
- "start": 328.877,
- "end": 329.657,
- "text": "interference"
- },
- {
- "id": 860,
- "start": 329.657,
- "end": 329.757,
- "text": "in"
- },
- {
- "id": 861,
- "start": 329.757,
- "end": 330.547,
- "text": "elections,"
- },
- {
- "id": 862,
- "start": 330.547,
- "end": 330.717,
- "text": "and"
- },
- {
- "id": 863,
- "start": 330.717,
- "end": 330.777,
- "text": "I"
- },
- {
- "id": 864,
- "start": 330.777,
- "end": 331.807,
- "text": "think"
- },
- {
- "id": 865,
- "start": 331.807,
- "end": 332.047,
- "text": "that’s"
- },
- {
- "id": 866,
- "start": 332.047,
- "end": 332.697,
- "text": "true"
- },
- {
- "id": 867,
- "start": 332.697,
- "end": 332.857,
- "text": "of"
- },
- {
- "id": 868,
- "start": 332.857,
- "end": 333.207,
- "text": "us"
- },
- {
- "id": 869,
- "start": 333.207,
- "end": 333.307,
- "text": "and"
- },
- {
- "id": 870,
- "start": 333.307,
- "end": 333.357,
- "text": "a"
- },
- {
- "id": 871,
- "start": 333.357,
- "end": 333.577,
- "text": "lot"
- },
- {
- "id": 872,
- "start": 333.577,
- "end": 333.667,
- "text": "of"
- },
- {
- "id": 873,
- "start": 333.667,
- "end": 334.147,
- "text": "other"
- },
- {
- "id": 874,
- "start": 334.807,
- "end": 335.112,
- "text": "organizations"
- },
- {
- "id": 875,
- "start": 335.947,
- "end": 336.077,
- "text": "and"
- },
- {
- "id": 876,
- "start": 336.077,
- "end": 336.647,
- "text": "companies"
- },
- {
- "id": 877,
- "start": 336.647,
- "end": 336.727,
- "text": "in"
- },
- {
- "id": 878,
- "start": 336.727,
- "end": 336.857,
- "text": "the"
- },
- {
- "id": 879,
- "start": 337.252,
- "end": 338.02199999999993,
- "text": "industry,"
- },
- {
- "id": 880,
- "start": 337.777,
- "end": 339.187,
- "text": "so"
- },
- {
- "id": 881,
- "start": 339.187,
- "end": 339.467,
- "text": "it’s"
- },
- {
- "id": 882,
- "start": 339.467,
- "end": 339.627,
- "text": "been"
- },
- {
- "id": 883,
- "start": 339.627,
- "end": 339.687,
- "text": "a"
- },
- {
- "id": 884,
- "start": 339.687,
- "end": 340.127,
- "text": "process"
- },
- {
- "id": 885,
- "start": 340.127,
- "end": 340.257,
- "text": "of"
- },
- {
- "id": 886,
- "start": 340.257,
- "end": 340.837,
- "text": "learning."
- },
- {
- "id": 887,
- "start": 340.837,
- "end": 341.057,
- "text": "These"
- },
- {
- "id": 888,
- "start": 341.057,
- "end": 341.897,
- "text": "aren’t"
- },
- {
- "id": 889,
- "start": 341.897,
- "end": 342.487,
- "text": "things"
- },
- {
- "id": 890,
- "start": 342.487,
- "end": 343.867,
- "text": "that"
- },
- {
- "id": 891,
- "start": 343.867,
- "end": 344.087,
- "text": "we"
- },
- {
- "id": 892,
- "start": 344.087,
- "end": 344.227,
- "text": "can"
- },
- {
- "id": 893,
- "start": 344.227,
- "end": 344.407,
- "text": "get"
- },
- {
- "id": 894,
- "start": 344.407,
- "end": 344.707,
- "text": "ahead"
- },
- {
- "id": 895,
- "start": 345.07200000000006,
- "end": 345.51700000000005,
- "text": "of,"
- },
- {
- "id": 896,
- "start": 345.737,
- "end": 346.327,
- "text": "but"
- },
- {
- "id": 897,
- "start": 346.327,
- "end": 346.467,
- "text": "we’re"
- },
- {
- "id": 898,
- "start": 346.467,
- "end": 346.657,
- "text": "really"
- },
- {
- "id": 899,
- "start": 346.657,
- "end": 347.027,
- "text": "trying"
- },
- {
- "id": 900,
- "start": 347.44199999999995,
- "end": 347.83699999999993,
- "text": "to."
- },
- {
- "id": 901,
- "start": 348.227,
- "end": 348.647,
- "text": "Do"
- },
- {
- "id": 902,
- "start": 348.647,
- "end": 348.807,
- "text": "you"
- },
- {
- "id": 903,
- "start": 348.807,
- "end": 349.357,
- "text": "think"
- },
- {
- "id": 904,
- "start": 349.357,
- "end": 349.607,
- "text": "that"
- },
- {
- "id": 905,
- "start": 349.607,
- "end": 349.747,
- "text": "if"
- },
- {
- "id": 906,
- "start": 349.747,
- "end": 349.857,
- "text": "you"
- },
- {
- "id": 907,
- "start": 349.857,
- "end": 350.127,
- "text": "look"
- },
- {
- "id": 908,
- "start": 350.127,
- "end": 350.507,
- "text": "back"
- },
- {
- "id": 909,
- "start": 350.507,
- "end": 350.637,
- "text": "in"
- },
- {
- "id": 910,
- "start": 350.637,
- "end": 350.987,
- "text": "terms"
- },
- {
- "id": 911,
- "start": 350.987,
- "end": 351.147,
- "text": "of"
- },
- {
- "id": 912,
- "start": 351.147,
- "end": 351.367,
- "text": "your"
- },
- {
- "id": 913,
- "start": 351.367,
- "end": 352.467,
- "text": "years"
- },
- {
- "id": 914,
- "start": 352.467,
- "end": 352.927,
- "text": "growing"
- },
- {
- "id": 915,
- "start": 352.927,
- "end": 353.127,
- "text": "this"
- },
- {
- "id": 916,
- "start": 353.127,
- "end": 353.677,
- "text": "business"
- },
- {
- "id": 917,
- "start": 353.677,
- "end": 354.327,
- "text": "that"
- },
- {
- "id": 918,
- "start": 354.327,
- "end": 354.517,
- "text": "there"
- },
- {
- "id": 919,
- "start": 354.517,
- "end": 354.667,
- "text": "were"
- },
- {
- "id": 920,
- "start": 354.667,
- "end": 355.417,
- "text": "moments"
- },
- {
- "id": 921,
- "start": 355.417,
- "end": 355.897,
- "text": "that"
- },
- {
- "id": 922,
- "start": 355.897,
- "end": 356.127,
- "text": "you"
- },
- {
- "id": 923,
- "start": 356.127,
- "end": 356.317,
- "text": "knew"
- },
- {
- "id": 924,
- "start": 356.317,
- "end": 356.647,
- "text": "about"
- },
- {
- "id": 925,
- "start": 356.647,
- "end": 357.167,
- "text": "problems"
- },
- {
- "id": 926,
- "start": 357.167,
- "end": 357.277,
- "text": "and"
- },
- {
- "id": 927,
- "start": 357.277,
- "end": 357.387,
- "text": "you"
- },
- {
- "id": 928,
- "start": 357.387,
- "end": 357.617,
- "text": "really"
- },
- {
- "id": 929,
- "start": 357.617,
- "end": 357.767,
- "text": "should"
- },
- {
- "id": 930,
- "start": 357.767,
- "end": 357.857,
- "text": "have"
- },
- {
- "id": 931,
- "start": 357.857,
- "end": 358.167,
- "text": "taken"
- },
- {
- "id": 932,
- "start": 358.167,
- "end": 358.317,
- "text": "them"
- },
- {
- "id": 933,
- "start": 358.317,
- "end": 358.457,
- "text": "more"
- },
- {
- "id": 934,
- "start": 358.457,
- "end": 359.247,
- "text": "seriously"
- },
- {
- "id": 935,
- "start": 359.247,
- "end": 359.407,
- "text": "at"
- },
- {
- "id": 936,
- "start": 359.407,
- "end": 359.487,
- "text": "the"
- },
- {
- "id": 937,
- "start": 361.09199999999987,
- "end": 361.1970000000001,
- "text": "time?"
- },
- {
- "id": 938,
- "start": 362.777,
- "end": 362.907,
- "text": "I"
- },
- {
- "id": 939,
- "start": 362.907,
- "end": 363.207,
- "text": "think"
- },
- {
- "id": 940,
- "start": 363.207,
- "end": 363.537,
- "text": "we’ve"
- },
- {
- "id": 941,
- "start": 363.527,
- "end": 364.017,
- "text": "made"
- },
- {
- "id": 942,
- "start": 364.88750000000005,
- "end": 365.22749999999996,
- "text": "mistakes,"
- },
- {
- "id": 943,
- "start": 366.248,
- "end": 366.438,
- "text": "but"
- },
- {
- "id": 944,
- "start": 366.438,
- "end": 366.508,
- "text": "I"
- },
- {
- "id": 945,
- "start": 366.508,
- "end": 366.748,
- "text": "think"
- },
- {
- "id": 946,
- "start": 366.748,
- "end": 366.908,
- "text": "we’ve"
- },
- {
- "id": 947,
- "start": 366.908,
- "end": 367.188,
- "text": "also"
- },
- {
- "id": 948,
- "start": 367.188,
- "end": 367.428,
- "text": "really"
- },
- {
- "id": 949,
- "start": 367.428,
- "end": 367.718,
- "text": "learned"
- },
- {
- "id": 950,
- "start": 367.718,
- "end": 367.928,
- "text": "from"
- },
- {
- "id": 951,
- "start": 367.928,
- "end": 368.058,
- "text": "our"
- },
- {
- "id": 952,
- "start": 368.96799999999996,
- "end": 370.4480000000003,
- "text": "mistakes,"
- },
- {
- "id": 953,
- "start": 370.008,
- "end": 372.838,
- "text": "and"
- },
- {
- "id": 954,
- "start": 372.838,
- "end": 372.978,
- "text": "I"
- },
- {
- "id": 955,
- "start": 372.978,
- "end": 373.298,
- "text": "think"
- },
- {
- "id": 956,
- "start": 373.298,
- "end": 373.908,
- "text": "that"
- },
- {
- "id": 957,
- "start": 373.908,
- "end": 374.168,
- "text": "one"
- },
- {
- "id": 958,
- "start": 374.168,
- "end": 374.508,
- "text": "way"
- },
- {
- "id": 959,
- "start": 374.508,
- "end": 375.258,
- "text": "that"
- },
- {
- "id": 960,
- "start": 375.258,
- "end": 375.548,
- "text": "people"
- },
- {
- "id": 961,
- "start": 375.548,
- "end": 375.638,
- "text": "have"
- },
- {
- "id": 962,
- "start": 375.90799999999996,
- "end": 376.123,
- "text": "characterized"
- },
- {
- "id": 963,
- "start": 376.268,
- "end": 376.608,
- "text": "Mark"
- },
- {
- "id": 964,
- "start": 376.608,
- "end": 377.198,
- "text": "is"
- },
- {
- "id": 965,
- "start": 377.198,
- "end": 377.308,
- "text": "as"
- },
- {
- "id": 966,
- "start": 377.308,
- "end": 377.378,
- "text": "a"
- },
- {
- "id": 967,
- "start": 377.88300000000004,
- "end": 377.968,
- "text": "“learn-it-all.”"
- },
- {
- "id": 968,
- "start": 378.458,
- "end": 378.558,
- "text": "He’s"
- },
- {
- "id": 969,
- "start": 378.558,
- "end": 378.728,
- "text": "not"
- },
- {
- "id": 970,
- "start": 378.728,
- "end": 378.768,
- "text": "a"
- },
- {
- "id": 971,
- "start": 380.24800000000005,
- "end": 380.38800000000015,
- "text": "know-it-all."
- },
- {
- "id": 972,
- "start": 381.768,
- "end": 382.008,
- "text": "We"
- },
- {
- "id": 973,
- "start": 382.008,
- "end": 382.158,
- "text": "didn’t"
- },
- {
- "id": 974,
- "start": 382.158,
- "end": 382.298,
- "text": "know"
- },
- {
- "id": 975,
- "start": 382.298,
- "end": 382.798,
- "text": "everything"
- },
- {
- "id": 976,
- "start": 382.798,
- "end": 382.998,
- "text": "from"
- },
- {
- "id": 977,
- "start": 382.998,
- "end": 383.088,
- "text": "the"
- },
- {
- "id": 978,
- "start": 383.088,
- "end": 383.478,
- "text": "beginning,"
- },
- {
- "id": 979,
- "start": 383.478,
- "end": 383.618,
- "text": "but"
- },
- {
- "id": 980,
- "start": 383.618,
- "end": 383.758,
- "text": "he"
- },
- {
- "id": 981,
- "start": 383.758,
- "end": 383.908,
- "text": "is"
- },
- {
- "id": 982,
- "start": 383.908,
- "end": 383.978,
- "text": "a"
- },
- {
- "id": 983,
- "start": 384.208,
- "end": 384.293,
- "text": "learn-it-all,"
- },
- {
- "id": 984,
- "start": 384.508,
- "end": 384.608,
- "text": "and"
- },
- {
- "id": 985,
- "start": 384.608,
- "end": 384.648,
- "text": "I"
- },
- {
- "id": 986,
- "start": 384.648,
- "end": 384.888,
- "text": "think"
- },
- {
- "id": 987,
- "start": 384.888,
- "end": 385.108,
- "text": "that’s"
- },
- {
- "id": 988,
- "start": 385.4546666666667,
- "end": 385.638,
- "text": "true"
- },
- {
- "id": 989,
- "start": 386.0213333333334,
- "end": 386.16799999999995,
- "text": "of"
- },
- {
- "id": 990,
- "start": 386.588,
- "end": 386.698,
- "text": "the"
- },
- {
- "id": 991,
- "start": 386.698,
- "end": 387.188,
- "text": "company"
- },
- {
- "id": 992,
- "start": 387.188,
- "end": 387.398,
- "text": "as"
- },
- {
- "id": 993,
- "start": 387.398,
- "end": 388.178,
- "text": "well,"
- },
- {
- "id": 994,
- "start": 388.178,
- "end": 390.038,
- "text": "is"
- },
- {
- "id": 995,
- "start": 390.038,
- "end": 390.628,
- "text": "that"
- },
- {
- "id": 996,
- "start": 390.628,
- "end": 391.018,
- "text": "once"
- },
- {
- "id": 997,
- "start": 391.018,
- "end": 391.208,
- "text": "we"
- },
- {
- "id": 998,
- "start": 391.208,
- "end": 391.668,
- "text": "know"
- },
- {
- "id": 999,
- "start": 391.668,
- "end": 391.828,
- "text": "that"
- },
- {
- "id": 1000,
- "start": 391.828,
- "end": 391.988,
- "text": "this"
- },
- {
- "id": 1001,
- "start": 391.988,
- "end": 392.078,
- "text": "is"
- },
- {
- "id": 1002,
- "start": 392.078,
- "end": 392.148,
- "text": "a"
- },
- {
- "id": 1003,
- "start": 392.72300000000007,
- "end": 392.923,
- "text": "problem,"
- },
- {
- "id": 1004,
- "start": 393.368,
- "end": 393.698,
- "text": "we’ve"
- },
- {
- "id": 1005,
- "start": 393.698,
- "end": 394.088,
- "text": "shifted"
- },
- {
- "id": 1006,
- "start": 394.088,
- "end": 394.138,
- "text": "a"
- },
- {
- "id": 1007,
- "start": 394.138,
- "end": 394.348,
- "text": "lot"
- },
- {
- "id": 1008,
- "start": 394.348,
- "end": 394.468,
- "text": "of"
- },
- {
- "id": 1009,
- "start": 394.468,
- "end": 395.258,
- "text": "people"
- },
- {
- "id": 1010,
- "start": 395.258,
- "end": 395.838,
- "text": "and"
- },
- {
- "id": 1011,
- "start": 395.838,
- "end": 396.788,
- "text": "technology"
- },
- {
- "id": 1012,
- "start": 396.788,
- "end": 397.438,
- "text": "to"
- },
- {
- "id": 1013,
- "start": 397.438,
- "end": 397.868,
- "text": "focus"
- },
- {
- "id": 1014,
- "start": 397.868,
- "end": 398.038,
- "text": "on"
- },
- {
- "id": 1015,
- "start": 398.038,
- "end": 398.278,
- "text": "it."
- },
- {
- "id": 1016,
- "start": 398.71466666666663,
- "end": 398.97466666666674,
- "text": "How"
- },
- {
- "id": 1017,
- "start": 399.39133333333336,
- "end": 399.67133333333345,
- "text": "has"
- },
- {
- "id": 1018,
- "start": 400.068,
- "end": 400.368,
- "text": "Mark"
- },
- {
- "id": 1019,
- "start": 400.368,
- "end": 401.378,
- "text": "changed?"
- },
- {
- "id": 1020,
- "start": 401.378,
- "end": 401.818,
- "text": "You’ve"
- },
- {
- "id": 1021,
- "start": 401.818,
- "end": 402.028,
- "text": "known"
- },
- {
- "id": 1022,
- "start": 402.028,
- "end": 402.188,
- "text": "him"
- },
- {
- "id": 1023,
- "start": 402.188,
- "end": 402.328,
- "text": "for"
- },
- {
- "id": 1024,
- "start": 402.328,
- "end": 402.378,
- "text": "a"
- },
- {
- "id": 1025,
- "start": 402.378,
- "end": 402.578,
- "text": "very"
- },
- {
- "id": 1026,
- "start": 402.578,
- "end": 402.768,
- "text": "long"
- },
- {
- "id": 1027,
- "start": 402.768,
- "end": 403.038,
- "text": "time"
- },
- {
- "id": 1028,
- "start": 403.038,
- "end": 403.128,
- "text": "at"
- },
- {
- "id": 1029,
- "start": 403.128,
- "end": 403.268,
- "text": "this"
- },
- {
- "id": 1030,
- "start": 403.35299999999995,
- "end": 403.47799999999995,
- "text": "point,"
- },
- {
- "id": 1031,
- "start": 403.578,
- "end": 403.688,
- "text": "but"
- },
- {
- "id": 1032,
- "start": 403.68466666666666,
- "end": 403.8113333333333,
- "text": "how"
- },
- {
- "id": 1033,
- "start": 403.79133333333334,
- "end": 403.93466666666666,
- "text": "has"
- },
- {
- "id": 1034,
- "start": 403.898,
- "end": 404.058,
- "text": "he"
- },
- {
- "id": 1035,
- "start": 404.058,
- "end": 404.508,
- "text": "changed"
- },
- {
- "id": 1036,
- "start": 404.508,
- "end": 404.628,
- "text": "as"
- },
- {
- "id": 1037,
- "start": 404.628,
- "end": 404.698,
- "text": "a"
- },
- {
- "id": 1038,
- "start": 404.698,
- "end": 405.128,
- "text": "result"
- },
- {
- "id": 1039,
- "start": 405.128,
- "end": 405.598,
- "text": "of"
- },
- {
- "id": 1040,
- "start": 405.598,
- "end": 405.848,
- "text": "what’s"
- },
- {
- "id": 1041,
- "start": 405.848,
- "end": 406.198,
- "text": "happened"
- },
- {
- "id": 1042,
- "start": 406.198,
- "end": 406.348,
- "text": "over"
- },
- {
- "id": 1043,
- "start": 406.348,
- "end": 406.458,
- "text": "the"
- },
- {
- "id": 1044,
- "start": 406.458,
- "end": 406.728,
- "text": "past"
- },
- {
- "id": 1045,
- "start": 406.728,
- "end": 406.948,
- "text": "couple"
- },
- {
- "id": 1046,
- "start": 406.948,
- "end": 407.008,
- "text": "of"
- },
- {
- "id": 1047,
- "start": 407.008,
- "end": 409.628,
- "text": "years?"
- },
- {
- "id": 1048,
- "start": 407.388,
- "end": 410.258,
- "text": "Mark"
- },
- {
- "id": 1049,
- "start": 409.048,
- "end": 410.718,
- "text": "has—I"
- },
- {
- "id": 1050,
- "start": 410.708,
- "end": 411.178,
- "text": "mean,"
- },
- {
- "id": 1051,
- "start": 411.178,
- "end": 411.538,
- "text": "I"
- },
- {
- "id": 1052,
- "start": 411.538,
- "end": 411.788,
- "text": "called"
- },
- {
- "id": 1053,
- "start": 411.788,
- "end": 411.888,
- "text": "him"
- },
- {
- "id": 1054,
- "start": 411.888,
- "end": 411.968,
- "text": "a"
- },
- {
- "id": 1055,
- "start": 412.293,
- "end": 412.37800000000004,
- "text": "learn-it-all."
- },
- {
- "id": 1056,
- "start": 412.698,
- "end": 412.788,
- "text": "I"
- },
- {
- "id": 1057,
- "start": 412.788,
- "end": 413.028,
- "text": "think"
- },
- {
- "id": 1058,
- "start": 413.028,
- "end": 413.228,
- "text": "one"
- },
- {
- "id": 1059,
- "start": 413.228,
- "end": 413.888,
- "text": "really"
- },
- {
- "id": 1060,
- "start": 413.888,
- "end": 414.128,
- "text": "good"
- },
- {
- "id": 1061,
- "start": 414.128,
- "end": 414.768,
- "text": "example"
- },
- {
- "id": 1062,
- "start": 414.768,
- "end": 415.948,
- "text": "is"
- },
- {
- "id": 1063,
- "start": 415.948,
- "end": 416.188,
- "text": "his"
- },
- {
- "id": 1064,
- "start": 416.188,
- "end": 416.488,
- "text": "yearly"
- },
- {
- "id": 1065,
- "start": 416.488,
- "end": 417.518,
- "text": "challenge."
- },
- {
- "id": 1066,
- "start": 417.518,
- "end": 417.658,
- "text": "In"
- },
- {
- "id": 1067,
- "start": 417.658,
- "end": 417.748,
- "text": "the"
- },
- {
- "id": 1068,
- "start": 417.748,
- "end": 418.188,
- "text": "past,"
- },
- {
- "id": 1069,
- "start": 418.188,
- "end": 418.338,
- "text": "his"
- },
- {
- "id": 1070,
- "start": 418.338,
- "end": 418.628,
- "text": "yearly"
- },
- {
- "id": 1071,
- "start": 418.628,
- "end": 419.128,
- "text": "challenge"
- },
- {
- "id": 1072,
- "start": 419.128,
- "end": 419.298,
- "text": "one"
- },
- {
- "id": 1073,
- "start": 419.298,
- "end": 419.558,
- "text": "year"
- },
- {
- "id": 1074,
- "start": 419.558,
- "end": 419.698,
- "text": "was"
- },
- {
- "id": 1075,
- "start": 419.698,
- "end": 419.808,
- "text": "to"
- },
- {
- "id": 1076,
- "start": 419.808,
- "end": 419.998,
- "text": "learn"
- },
- {
- "id": 1077,
- "start": 419.998,
- "end": 420.938,
- "text": "Chinese."
- },
- {
- "id": 1078,
- "start": 420.938,
- "end": 421.648,
- "text": "Another"
- },
- {
- "id": 1079,
- "start": 421.648,
- "end": 422.138,
- "text": "year"
- },
- {
- "id": 1080,
- "start": 421.89300000000003,
- "end": 422.328,
- "text": "it"
- },
- {
- "id": 1081,
- "start": 422.138,
- "end": 422.518,
- "text": "was"
- },
- {
- "id": 1082,
- "start": 422.518,
- "end": 422.838,
- "text": "to"
- },
- {
- "id": 1083,
- "start": 422.838,
- "end": 423.038,
- "text": "wear"
- },
- {
- "id": 1084,
- "start": 423.038,
- "end": 423.118,
- "text": "a"
- },
- {
- "id": 1085,
- "start": 423.118,
- "end": 423.618,
- "text": "tie"
- },
- {
- "id": 1086,
- "start": 423.618,
- "end": 424.018,
- "text": "every"
- },
- {
- "id": 1087,
- "start": 424.018,
- "end": 424.408,
- "text": "day"
- },
- {
- "id": 1088,
- "start": 424.408,
- "end": 425.078,
- "text": "because"
- },
- {
- "id": 1089,
- "start": 425.078,
- "end": 425.548,
- "text": "it’s"
- },
- {
- "id": 1090,
- "start": 425.548,
- "end": 425.658,
- "text": "a"
- },
- {
- "id": 1091,
- "start": 425.658,
- "end": 426.228,
- "text": "serious"
- },
- {
- "id": 1092,
- "start": 426.228,
- "end": 426.478,
- "text": "year."
- },
- {
- "id": 1093,
- "start": 426.478,
- "end": 426.598,
- "text": "That"
- },
- {
- "id": 1094,
- "start": 426.598,
- "end": 426.738,
- "text": "was"
- },
- {
- "id": 1095,
- "start": 426.738,
- "end": 426.878,
- "text": "like"
- },
- {
- "id": 1096,
- "start": 426.878,
- "end": 426.938,
- "text": "a"
- },
- {
- "id": 1097,
- "start": 426.938,
- "end": 427.458,
- "text": "serious"
- },
- {
- "id": 1098,
- "start": 427.458,
- "end": 428.768,
- "text": "year."
- },
- {
- "id": 1099,
- "start": 428.768,
- "end": 429.038,
- "text": "His"
- },
- {
- "id": 1100,
- "start": 429.038,
- "end": 429.458,
- "text": "challenge"
- },
- {
- "id": 1101,
- "start": 429.458,
- "end": 429.728,
- "text": "this"
- },
- {
- "id": 1102,
- "start": 429.728,
- "end": 430.268,
- "text": "year"
- },
- {
- "id": 1103,
- "start": 430.268,
- "end": 430.588,
- "text": "was"
- },
- {
- "id": 1104,
- "start": 430.588,
- "end": 430.798,
- "text": "to"
- },
- {
- "id": 1105,
- "start": 430.798,
- "end": 431.168,
- "text": "really"
- },
- {
- "id": 1106,
- "start": 431.168,
- "end": 431.608,
- "text": "focus"
- },
- {
- "id": 1107,
- "start": 431.608,
- "end": 431.728,
- "text": "on"
- },
- {
- "id": 1108,
- "start": 431.728,
- "end": 432.308,
- "text": "improving"
- },
- {
- "id": 1109,
- "start": 432.308,
- "end": 432.698,
- "text": "safety"
- },
- {
- "id": 1110,
- "start": 432.698,
- "end": 432.828,
- "text": "and"
- },
- {
- "id": 1111,
- "start": 432.828,
- "end": 433.338,
- "text": "security"
- },
- {
- "id": 1112,
- "start": 433.338,
- "end": 433.478,
- "text": "on"
- },
- {
- "id": 1113,
- "start": 433.88133333333343,
- "end": 434.1380000000001,
- "text": "Facebook."
- },
- {
- "id": 1114,
- "start": 434.4246666666667,
- "end": 434.79800000000006,
- "text": "It"
- },
- {
- "id": 1115,
- "start": 434.968,
- "end": 435.458,
- "text": "gives"
- },
- {
- "id": 1116,
- "start": 435.458,
- "end": 435.558,
- "text": "you"
- },
- {
- "id": 1117,
- "start": 435.558,
- "end": 435.608,
- "text": "a"
- },
- {
- "id": 1118,
- "start": 435.608,
- "end": 436.368,
- "text": "sense"
- },
- {
- "id": 1119,
- "start": 436.368,
- "end": 436.528,
- "text": "of"
- },
- {
- "id": 1120,
- "start": 436.528,
- "end": 436.848,
- "text": "how"
- },
- {
- "id": 1121,
- "start": 436.848,
- "end": 437.118,
- "text": "he’s"
- },
- {
- "id": 1122,
- "start": 437.298,
- "end": 437.488,
- "text": "changed"
- },
- {
- "id": 1123,
- "start": 437.748,
- "end": 437.858,
- "text": "the"
- },
- {
- "id": 1124,
- "start": 437.858,
- "end": 438.458,
- "text": "gravity"
- },
- {
- "id": 1125,
- "start": 438.458,
- "end": 438.578,
- "text": "of"
- },
- {
- "id": 1126,
- "start": 438.578,
- "end": 438.798,
- "text": "these"
- },
- {
- "id": 1127,
- "start": 438.798,
- "end": 439.608,
- "text": "challenges,"
- },
- {
- "id": 1128,
- "start": 439.608,
- "end": 439.718,
- "text": "and"
- },
- {
- "id": 1129,
- "start": 439.718,
- "end": 439.878,
- "text": "these"
- },
- {
- "id": 1130,
- "start": 439.878,
- "end": 440.818,
- "text": "responsibilities"
- },
- {
- "id": 1131,
- "start": 440.4579999999999,
- "end": 441.038,
- "text": "[have]"
- },
- {
- "id": 1132,
- "start": 441.038,
- "end": 441.258,
- "text": "really"
- },
- {
- "id": 1133,
- "start": 441.258,
- "end": 441.838,
- "text": "grown"
- },
- {
- "id": 1134,
- "start": 441.838,
- "end": 442.248,
- "text": "from,"
- },
- {
- "id": 1135,
- "start": 442.248,
- "end": 442.648,
- "text": "say,"
- },
- {
- "id": 1136,
- "start": 442.648,
- "end": 442.968,
- "text": "wearing"
- },
- {
- "id": 1137,
- "start": 442.968,
- "end": 443.018,
- "text": "a"
- },
- {
- "id": 1138,
- "start": 443.398,
- "end": 443.583,
- "text": "tie,"
- },
- {
- "id": 1139,
- "start": 443.828,
- "end": 444.148,
- "text": "you"
- },
- {
- "id": 1140,
- "start": 444.148,
- "end": 444.438,
- "text": "know"
- },
- {
- "id": 1141,
- "start": 444.223,
- "end": 444.513,
- "text": "when"
- },
- {
- "id": 1142,
- "start": 444.298,
- "end": 444.58799999999997,
- "text": "we"
- },
- {
- "id": 1143,
- "start": 444.373,
- "end": 444.663,
- "text": "were"
- },
- {
- "id": 1144,
- "start": 444.448,
- "end": 444.738,
- "text": "just"
- },
- {
- "id": 1145,
- "start": 444.738,
- "end": 444.788,
- "text": "a"
- },
- {
- "id": 1146,
- "start": 444.788,
- "end": 445.168,
- "text": "college"
- },
- {
- "id": 1147,
- "start": 445.168,
- "end": 445.468,
- "text": "site,"
- },
- {
- "id": 1148,
- "start": 445.918,
- "end": 446.27799999999996,
- "text": "to"
- },
- {
- "id": 1149,
- "start": 446.668,
- "end": 447.088,
- "text": "making"
- },
- {
- "id": 1150,
- "start": 447.088,
- "end": 447.538,
- "text": "sure"
- },
- {
- "id": 1151,
- "start": 447.538,
- "end": 447.768,
- "text": "that"
- },
- {
- "id": 1152,
- "start": 447.768,
- "end": 448.468,
- "text": "Facebook"
- },
- {
- "id": 1153,
- "start": 448.468,
- "end": 449.128,
- "text": "is"
- },
- {
- "id": 1154,
- "start": 449.128,
- "end": 449.198,
- "text": "a"
- },
- {
- "id": 1155,
- "start": 449.198,
- "end": 449.448,
- "text": "safe"
- },
- {
- "id": 1156,
- "start": 449.448,
- "end": 449.548,
- "text": "and"
- },
- {
- "id": 1157,
- "start": 449.548,
- "end": 449.868,
- "text": "secure"
- },
- {
- "id": 1158,
- "start": 450.1980000000001,
- "end": 450.96799999999985,
- "text": "place."
- },
- {
- "id": 1159,
- "start": 450.848,
- "end": 452.068,
- "text": "And"
- },
- {
- "id": 1160,
- "start": 452.068,
- "end": 452.248,
- "text": "in"
- },
- {
- "id": 1161,
- "start": 452.248,
- "end": 452.618,
- "text": "terms"
- },
- {
- "id": 1162,
- "start": 452.618,
- "end": 453.698,
- "text": "of"
- },
- {
- "id": 1163,
- "start": 453.698,
- "end": 454.588,
- "text": "responsibility,"
- },
- {
- "id": 1164,
- "start": 454.588,
- "end": 454.858,
- "text": "because"
- },
- {
- "id": 1165,
- "start": 454.858,
- "end": 455.008,
- "text": "it’s"
- },
- {
- "id": 1166,
- "start": 455.008,
- "end": 455.078,
- "text": "a"
- },
- {
- "id": 1167,
- "start": 455.078,
- "end": 455.568,
- "text": "term"
- },
- {
- "id": 1168,
- "start": 455.568,
- "end": 455.778,
- "text": "we’ve"
- },
- {
- "id": 1169,
- "start": 455.778,
- "end": 455.958,
- "text": "heard"
- },
- {
- "id": 1170,
- "start": 455.958,
- "end": 456.008,
- "text": "a"
- },
- {
- "id": 1171,
- "start": 456.008,
- "end": 456.328,
- "text": "lot"
- },
- {
- "id": 1172,
- "start": 456.328,
- "end": 456.528,
- "text": "from"
- },
- {
- "id": 1173,
- "start": 456.528,
- "end": 456.958,
- "text": "Mark,"
- },
- {
- "id": 1174,
- "start": 456.958,
- "end": 457.838,
- "text": "you’ve"
- },
- {
- "id": 1175,
- "start": 457.838,
- "end": 458.188,
- "text": "mentioned"
- },
- {
- "id": 1176,
- "start": 459.48800000000006,
- "end": 459.7579999999998,
- "text": "responsibility,"
- },
- {
- "id": 1177,
- "start": 461.138,
- "end": 461.328,
- "text": "what"
- },
- {
- "id": 1178,
- "start": 461.328,
- "end": 461.638,
- "text": "about"
- },
- {
- "id": 1179,
- "start": 461.638,
- "end": 462.508,
- "text": "accountability,"
- },
- {
- "id": 1180,
- "start": 462.2713333333333,
- "end": 462.89799999999997,
- "text": "right?"
- },
- {
- "id": 1181,
- "start": 462.9046666666666,
- "end": 463.28799999999995,
- "text": "Did"
- },
- {
- "id": 1182,
- "start": 463.538,
- "end": 463.678,
- "text": "you"
- },
- {
- "id": 1183,
- "start": 463.678,
- "end": 463.878,
- "text": "see"
- },
- {
- "id": 1184,
- "start": 463.878,
- "end": 463.938,
- "text": "a"
- },
- {
- "id": 1185,
- "start": 463.938,
- "end": 464.358,
- "text": "difference"
- },
- {
- "id": 1186,
- "start": 464.358,
- "end": 464.808,
- "text": "between"
- },
- {
- "id": 1187,
- "start": 464.808,
- "end": 465.678,
- "text": "responsibility"
- },
- {
- "id": 1188,
- "start": 465.678,
- "end": 465.798,
- "text": "and"
- },
- {
- "id": 1189,
- "start": 465.798,
- "end": 466.558,
- "text": "accountability"
- },
- {
- "id": 1190,
- "start": 466.558,
- "end": 466.668,
- "text": "in"
- },
- {
- "id": 1191,
- "start": 466.668,
- "end": 466.988,
- "text": "terms"
- },
- {
- "id": 1192,
- "start": 466.988,
- "end": 467.968,
- "text": "of"
- },
- {
- "id": 1193,
- "start": 467.968,
- "end": 469.708,
- "text": "this"
- },
- {
- "id": 1194,
- "start": 469.708,
- "end": 470.418,
- "text": "enormously"
- },
- {
- "id": 1195,
- "start": 470.418,
- "end": 470.818,
- "text": "powerful"
- },
- {
- "id": 1196,
- "start": 470.818,
- "end": 471.778,
- "text": "company,"
- },
- {
- "id": 1197,
- "start": 471.778,
- "end": 472.678,
- "text": "huge"
- },
- {
- "id": 1198,
- "start": 472.678,
- "end": 473.048,
- "text": "global"
- },
- {
- "id": 1199,
- "start": 473.048,
- "end": 473.748,
- "text": "reach,"
- },
- {
- "id": 1200,
- "start": 473.748,
- "end": 474.398,
- "text": "tremendous"
- },
- {
- "id": 1201,
- "start": 474.398,
- "end": 474.928,
- "text": "impact"
- },
- {
- "id": 1202,
- "start": 474.928,
- "end": 475.148,
- "text": "on"
- },
- {
- "id": 1203,
- "start": 475.348,
- "end": 475.528,
- "text": "societies"
- },
- {
- "id": 1204,
- "start": 475.768,
- "end": 475.908,
- "text": "all"
- },
- {
- "id": 1205,
- "start": 475.908,
- "end": 476.168,
- "text": "around"
- },
- {
- "id": 1206,
- "start": 476.168,
- "end": 476.238,
- "text": "the"
- },
- {
- "id": 1207,
- "start": 476.238,
- "end": 477.438,
- "text": "globe?"
- },
- {
- "id": 1208,
- "start": 477.438,
- "end": 477.938,
- "text": "Who"
- },
- {
- "id": 1209,
- "start": 477.938,
- "end": 478.138,
- "text": "can"
- },
- {
- "id": 1210,
- "start": 478.138,
- "end": 478.478,
- "text": "hold"
- },
- {
- "id": 1211,
- "start": 478.478,
- "end": 478.988,
- "text": "Facebook"
- },
- {
- "id": 1212,
- "start": 478.988,
- "end": 479.968,
- "text": "accountable"
- },
- {
- "id": 1213,
- "start": 479.968,
- "end": 480.198,
- "text": "for"
- },
- {
- "id": 1214,
- "start": 480.198,
- "end": 480.368,
- "text": "what"
- },
- {
- "id": 1215,
- "start": 480.368,
- "end": 480.468,
- "text": "it"
- },
- {
- "id": 1216,
- "start": 480.468,
- "end": 483.088,
- "text": "does?"
- },
- {
- "id": 1217,
- "start": 483.088,
- "end": 483.158,
- "text": "I"
- },
- {
- "id": 1218,
- "start": 483.158,
- "end": 483.478,
- "text": "think"
- },
- {
- "id": 1219,
- "start": 483.478,
- "end": 483.798,
- "text": "we"
- },
- {
- "id": 1220,
- "start": 483.798,
- "end": 484.068,
- "text": "all"
- },
- {
- "id": 1221,
- "start": 484.068,
- "end": 484.858,
- "text": "acknowledge"
- },
- {
- "id": 1222,
- "start": 484.858,
- "end": 485.038,
- "text": "and"
- },
- {
- "id": 1223,
- "start": 485.038,
- "end": 485.878,
- "text": "understand"
- },
- {
- "id": 1224,
- "start": 485.878,
- "end": 486.088,
- "text": "how"
- },
- {
- "id": 1225,
- "start": 486.088,
- "end": 486.678,
- "text": "much"
- },
- {
- "id": 1226,
- "start": 486.678,
- "end": 486.798,
- "text": "of"
- },
- {
- "id": 1227,
- "start": 486.798,
- "end": 486.898,
- "text": "a"
- },
- {
- "id": 1228,
- "start": 486.898,
- "end": 487.668,
- "text": "privilege"
- },
- {
- "id": 1229,
- "start": 487.668,
- "end": 487.808,
- "text": "it"
- },
- {
- "id": 1230,
- "start": 487.808,
- "end": 488.881,
- "text": "is"
- },
- {
- "id": 1231,
- "start": 488.881,
- "end": 489.131,
- "text": "to"
- },
- {
- "id": 1232,
- "start": 489.131,
- "end": 489.431,
- "text": "be"
- },
- {
- "id": 1233,
- "start": 489.431,
- "end": 489.661,
- "text": "such"
- },
- {
- "id": 1234,
- "start": 489.661,
- "end": 489.721,
- "text": "an"
- },
- {
- "id": 1235,
- "start": 489.721,
- "end": 490.031,
- "text": "important"
- },
- {
- "id": 1236,
- "start": 490.031,
- "end": 490.261,
- "text": "part"
- },
- {
- "id": 1237,
- "start": 490.261,
- "end": 490.331,
- "text": "in"
- },
- {
- "id": 1238,
- "start": 490.331,
- "end": 490.631,
- "text": "people’s"
- },
- {
- "id": 1239,
- "start": 491.17600000000004,
- "end": 491.496,
- "text": "lives,"
- },
- {
- "id": 1240,
- "start": 492.021,
- "end": 492.361,
- "text": "and"
- },
- {
- "id": 1241,
- "start": 492.361,
- "end": 492.611,
- "text": "that"
- },
- {
- "id": 1242,
- "start": 492.611,
- "end": 492.851,
- "text": "is"
- },
- {
- "id": 1243,
- "start": 492.851,
- "end": 493.421,
- "text": "why"
- },
- {
- "id": 1244,
- "start": 493.421,
- "end": 493.681,
- "text": "we"
- },
- {
- "id": 1245,
- "start": 493.681,
- "end": 494.631,
- "text": "feel"
- },
- {
- "id": 1246,
- "start": 494.631,
- "end": 495.181,
- "text": "incredibly"
- },
- {
- "id": 1247,
- "start": 495.181,
- "end": 496.041,
- "text": "responsible"
- },
- {
- "id": 1248,
- "start": 496.041,
- "end": 496.291,
- "text": "for"
- },
- {
- "id": 1249,
- "start": 496.291,
- "end": 496.581,
- "text": "making"
- },
- {
- "id": 1250,
- "start": 496.581,
- "end": 496.781,
- "text": "sure"
- },
- {
- "id": 1251,
- "start": 496.781,
- "end": 496.941,
- "text": "that"
- },
- {
- "id": 1252,
- "start": 496.941,
- "end": 497.331,
- "text": "Facebook"
- },
- {
- "id": 1253,
- "start": 497.331,
- "end": 497.481,
- "text": "is"
- },
- {
- "id": 1254,
- "start": 497.481,
- "end": 497.731,
- "text": "used"
- },
- {
- "id": 1255,
- "start": 497.731,
- "end": 497.911,
- "text": "for"
- },
- {
- "id": 1256,
- "start": 497.911,
- "end": 498.841,
- "text": "good"
- },
- {
- "id": 1257,
- "start": 498.841,
- "end": 499.281,
- "text": "and"
- },
- {
- "id": 1258,
- "start": 499.281,
- "end": 499.491,
- "text": "not"
- },
- {
- "id": 1259,
- "start": 499.491,
- "end": 501.321,
- "text": "bad."
- },
- {
- "id": 1260,
- "start": 501.321,
- "end": 501.461,
- "text": "In"
- },
- {
- "id": 1261,
- "start": 501.461,
- "end": 501.811,
- "text": "terms"
- },
- {
- "id": 1262,
- "start": 501.811,
- "end": 501.891,
- "text": "of"
- },
- {
- "id": 1263,
- "start": 501.891,
- "end": 503.361,
- "text": "accountability,"
- },
- {
- "id": 1264,
- "start": 503.361,
- "end": 503.461,
- "text": "a"
- },
- {
- "id": 1265,
- "start": 503.461,
- "end": 503.651,
- "text": "lot"
- },
- {
- "id": 1266,
- "start": 503.651,
- "end": 503.711,
- "text": "of"
- },
- {
- "id": 1267,
- "start": 503.711,
- "end": 504.541,
- "text": "times"
- },
- {
- "id": 1268,
- "start": 504.541,
- "end": 504.681,
- "text": "we"
- },
- {
- "id": 1269,
- "start": 504.681,
- "end": 504.901,
- "text": "can’t"
- },
- {
- "id": 1270,
- "start": 504.901,
- "end": 504.991,
- "text": "do"
- },
- {
- "id": 1271,
- "start": 504.991,
- "end": 505.151,
- "text": "this"
- },
- {
- "id": 1272,
- "start": 505.151,
- "end": 505.271,
- "text": "on"
- },
- {
- "id": 1273,
- "start": 505.271,
- "end": 505.481,
- "text": "our"
- },
- {
- "id": 1274,
- "start": 505.481,
- "end": 506.271,
- "text": "own."
- },
- {
- "id": 1275,
- "start": 506.271,
- "end": 506.481,
- "text": "We"
- },
- {
- "id": 1276,
- "start": 506.481,
- "end": 506.671,
- "text": "work"
- },
- {
- "id": 1277,
- "start": 506.671,
- "end": 506.831,
- "text": "with"
- },
- {
- "id": 1278,
- "start": 506.831,
- "end": 507.671,
- "text": "experts;"
- },
- {
- "id": 1279,
- "start": 507.671,
- "end": 507.861,
- "text": "we"
- },
- {
- "id": 1280,
- "start": 507.861,
- "end": 508.031,
- "text": "work"
- },
- {
- "id": 1281,
- "start": 508.031,
- "end": 508.171,
- "text": "with"
- },
- {
- "id": 1282,
- "start": 508.171,
- "end": 508.331,
- "text": "other"
- },
- {
- "id": 1283,
- "start": 508.7010000000001,
- "end": 508.9459999999999,
- "text": "companies;"
- },
- {
- "id": 1284,
- "start": 509.231,
- "end": 509.561,
- "text": "we"
- },
- {
- "id": 1285,
- "start": 509.561,
- "end": 509.741,
- "text": "work"
- },
- {
- "id": 1286,
- "start": 509.741,
- "end": 509.891,
- "text": "with"
- },
- {
- "id": 1287,
- "start": 509.891,
- "end": 510.681,
- "text": "partners;"
- },
- {
- "id": 1288,
- "start": 510.681,
- "end": 510.821,
- "text": "we"
- },
- {
- "id": 1289,
- "start": 510.821,
- "end": 511.021,
- "text": "work"
- },
- {
- "id": 1290,
- "start": 511.021,
- "end": 511.141,
- "text": "with"
- },
- {
- "id": 1291,
- "start": 512.1659999999999,
- "end": 512.3410000000001,
- "text": "organizations."
- },
- {
- "id": 1292,
- "start": 513.311,
- "end": 513.541,
- "text": "It’s"
- },
- {
- "id": 1293,
- "start": 513.541,
- "end": 513.811,
- "text": "something"
- },
- {
- "id": 1294,
- "start": 513.811,
- "end": 513.981,
- "text": "that"
- },
- {
- "id": 1295,
- "start": 513.981,
- "end": 514.121,
- "text": "we"
- },
- {
- "id": 1296,
- "start": 514.121,
- "end": 514.311,
- "text": "need"
- },
- {
- "id": 1297,
- "start": 514.311,
- "end": 514.431,
- "text": "to"
- },
- {
- "id": 1298,
- "start": 514.431,
- "end": 515.361,
- "text": "do"
- },
- {
- "id": 1299,
- "start": 515.361,
- "end": 515.821,
- "text": "in"
- },
- {
- "id": 1300,
- "start": 515.821,
- "end": 517.251,
- "text": "concert."
- },
- {
- "id": 1301,
- "start": 517.251,
- "end": 517.371,
- "text": "I"
- },
- {
- "id": 1302,
- "start": 517.371,
- "end": 518.251,
- "text": "guess"
- },
- {
- "id": 1303,
- "start": 518.251,
- "end": 518.391,
- "text": "what"
- },
- {
- "id": 1304,
- "start": 518.391,
- "end": 518.481,
- "text": "I’m"
- },
- {
- "id": 1305,
- "start": 518.481,
- "end": 518.711,
- "text": "trying"
- },
- {
- "id": 1306,
- "start": 518.711,
- "end": 518.771,
- "text": "to"
- },
- {
- "id": 1307,
- "start": 518.771,
- "end": 518.921,
- "text": "get"
- },
- {
- "id": 1308,
- "start": 518.921,
- "end": 518.961,
- "text": "a"
- },
- {
- "id": 1309,
- "start": 518.961,
- "end": 519.311,
- "text": "sense"
- },
- {
- "id": 1310,
- "start": 519.311,
- "end": 519.491,
- "text": "of"
- },
- {
- "id": 1311,
- "start": 519.491,
- "end": 519.861,
- "text": "is"
- },
- {
- "id": 1312,
- "start": 519.661,
- "end": 520.161,
- "text": "what"
- },
- {
- "id": 1313,
- "start": 520.3359999999999,
- "end": 520.676,
- "text": "was—was"
- },
- {
- "id": 1314,
- "start": 521.011,
- "end": 521.191,
- "text": "there"
- },
- {
- "id": 1315,
- "start": 521.191,
- "end": 521.351,
- "text": "a"
- },
- {
- "id": 1316,
- "start": 521.351,
- "end": 522.431,
- "text": "reckoning"
- },
- {
- "id": 1317,
- "start": 522.431,
- "end": 523.291,
- "text": "inside,"
- },
- {
- "id": 1318,
- "start": 523.291,
- "end": 523.971,
- "text": "right?"
- },
- {
- "id": 1319,
- "start": 523.971,
- "end": 524.171,
- "text": "If"
- },
- {
- "id": 1320,
- "start": 524.171,
- "end": 524.281,
- "text": "you"
- },
- {
- "id": 1321,
- "start": 524.306,
- "end": 524.481,
- "text": "can"
- },
- {
- "id": 1322,
- "start": 524.441,
- "end": 524.681,
- "text": "bring"
- },
- {
- "id": 1323,
- "start": 524.681,
- "end": 524.861,
- "text": "me"
- },
- {
- "id": 1324,
- "start": 524.861,
- "end": 525.141,
- "text": "into"
- },
- {
- "id": 1325,
- "start": 526.4209999999998,
- "end": 526.8809999999999,
- "text": "some—something"
- },
- {
- "id": 1326,
- "start": 527.981,
- "end": 528.621,
- "text": "happens"
- },
- {
- "id": 1327,
- "start": 528.621,
- "end": 528.931,
- "text": "after"
- },
- {
- "id": 1328,
- "start": 528.931,
- "end": 529.021,
- "text": "the"
- },
- {
- "id": 1329,
- "start": 529.316,
- "end": 529.746,
- "text": "2016"
- },
- {
- "id": 1330,
- "start": 529.701,
- "end": 530.471,
- "text": "election,"
- },
- {
- "id": 1331,
- "start": 530.471,
- "end": 531.321,
- "text": "and"
- },
- {
- "id": 1332,
- "start": 531.321,
- "end": 531.501,
- "text": "it’s"
- },
- {
- "id": 1333,
- "start": 531.501,
- "end": 531.921,
- "text": "something"
- },
- {
- "id": 1334,
- "start": 531.921,
- "end": 532.401,
- "text": "you’ve"
- },
- {
- "id": 1335,
- "start": 532.401,
- "end": 533.091,
- "text": "spent"
- },
- {
- "id": 1336,
- "start": 533.091,
- "end": 533.241,
- "text": "a"
- },
- {
- "id": 1337,
- "start": 533.241,
- "end": 533.521,
- "text": "long"
- },
- {
- "id": 1338,
- "start": 533.521,
- "end": 533.851,
- "text": "time"
- },
- {
- "id": 1339,
- "start": 533.851,
- "end": 534.221,
- "text": "growing"
- },
- {
- "id": 1340,
- "start": 534.221,
- "end": 534.401,
- "text": "this"
- },
- {
- "id": 1341,
- "start": 534.401,
- "end": 536.931,
- "text": "business."
- },
- {
- "id": 1342,
- "start": 536.931,
- "end": 537.121,
- "text": "What"
- },
- {
- "id": 1343,
- "start": 537.121,
- "end": 537.251,
- "text": "is"
- },
- {
- "id": 1344,
- "start": 537.251,
- "end": 537.381,
- "text": "it"
- },
- {
- "id": 1345,
- "start": 537.381,
- "end": 538.361,
- "text": "like"
- },
- {
- "id": 1346,
- "start": 538.361,
- "end": 538.521,
- "text": "to"
- },
- {
- "id": 1347,
- "start": 538.521,
- "end": 538.811,
- "text": "see"
- },
- {
- "id": 1348,
- "start": 538.811,
- "end": 539.751,
- "text": "it"
- },
- {
- "id": 1349,
- "start": 539.751,
- "end": 541.221,
- "text": "and"
- },
- {
- "id": 1350,
- "start": 541.221,
- "end": 541.431,
- "text": "have"
- },
- {
- "id": 1351,
- "start": 541.431,
- "end": 541.751,
- "text": "all"
- },
- {
- "id": 1352,
- "start": 541.751,
- "end": 541.831,
- "text": "of"
- },
- {
- "id": 1353,
- "start": 541.831,
- "end": 542.041,
- "text": "these"
- },
- {
- "id": 1354,
- "start": 542.041,
- "end": 542.621,
- "text": "problems"
- },
- {
- "id": 1355,
- "start": 542.621,
- "end": 543.351,
- "text": "that"
- },
- {
- "id": 1356,
- "start": 543.351,
- "end": 543.581,
- "text": "have"
- },
- {
- "id": 1357,
- "start": 543.581,
- "end": 543.871,
- "text": "been"
- },
- {
- "id": 1358,
- "start": 543.871,
- "end": 544.081,
- "text": "known"
- },
- {
- "id": 1359,
- "start": 544.081,
- "end": 544.531,
- "text": "about"
- },
- {
- "id": 1360,
- "start": 544.531,
- "end": 544.681,
- "text": "but"
- },
- {
- "id": 1361,
- "start": 544.681,
- "end": 544.811,
- "text": "all"
- },
- {
- "id": 1362,
- "start": 544.811,
- "end": 544.881,
- "text": "of"
- },
- {
- "id": 1363,
- "start": 544.881,
- "end": 544.921,
- "text": "a"
- },
- {
- "id": 1364,
- "start": 544.921,
- "end": 545.151,
- "text": "sudden"
- },
- {
- "id": 1365,
- "start": 545.151,
- "end": 545.361,
- "text": "rear"
- },
- {
- "id": 1366,
- "start": 545.361,
- "end": 545.521,
- "text": "their"
- },
- {
- "id": 1367,
- "start": 545.521,
- "end": 546.301,
- "text": "heads"
- },
- {
- "id": 1368,
- "start": 546.051,
- "end": 546.451,
- "text": "in"
- },
- {
- "id": 1369,
- "start": 546.9060000000001,
- "end": 547.201,
- "text": "2016?"
- },
- {
- "id": 1370,
- "start": 547.761,
- "end": 547.951,
- "text": "What"
- },
- {
- "id": 1371,
- "start": 547.951,
- "end": 548.081,
- "text": "is"
- },
- {
- "id": 1372,
- "start": 548.081,
- "end": 548.351,
- "text": "that"
- },
- {
- "id": 1373,
- "start": 548.351,
- "end": 548.701,
- "text": "like"
- },
- {
- "id": 1374,
- "start": 548.701,
- "end": 549.141,
- "text": "inside"
- },
- {
- "id": 1375,
- "start": 549.141,
- "end": 549.231,
- "text": "of"
- },
- {
- "id": 1376,
- "start": 549.231,
- "end": 549.511,
- "text": "here?"
- },
- {
- "id": 1377,
- "start": 550.1610000000001,
- "end": 550.336,
- "text": "Yeah."
- },
- {
- "id": 1378,
- "start": 551.091,
- "end": 551.161,
- "text": "I"
- },
- {
- "id": 1379,
- "start": 551.161,
- "end": 551.371,
- "text": "think"
- },
- {
- "id": 1380,
- "start": 551.371,
- "end": 551.421,
- "text": "I"
- },
- {
- "id": 1381,
- "start": 551.421,
- "end": 551.631,
- "text": "just"
- },
- {
- "id": 1382,
- "start": 551.6410000000001,
- "end": 551.8676666666667,
- "text": "want"
- },
- {
- "id": 1383,
- "start": 551.861,
- "end": 552.1043333333333,
- "text": "to"
- },
- {
- "id": 1384,
- "start": 552.081,
- "end": 552.341,
- "text": "push"
- },
- {
- "id": 1385,
- "start": 552.341,
- "end": 552.581,
- "text": "back"
- },
- {
- "id": 1386,
- "start": 552.581,
- "end": 552.881,
- "text": "just"
- },
- {
- "id": 1387,
- "start": 552.881,
- "end": 553.581,
- "text": "on"
- },
- {
- "id": 1388,
- "start": 553.581,
- "end": 553.821,
- "text": "all"
- },
- {
- "id": 1389,
- "start": 553.821,
- "end": 553.891,
- "text": "of"
- },
- {
- "id": 1390,
- "start": 553.891,
- "end": 554.071,
- "text": "these"
- },
- {
- "id": 1391,
- "start": 554.071,
- "end": 554.491,
- "text": "problems"
- },
- {
- "id": 1392,
- "start": 554.491,
- "end": 554.621,
- "text": "that"
- },
- {
- "id": 1393,
- "start": 554.626,
- "end": 554.856,
- "text": "we’ve"
- },
- {
- "id": 1394,
- "start": 554.761,
- "end": 555.091,
- "text": "known"
- },
- {
- "id": 1395,
- "start": 555.091,
- "end": 555.451,
- "text": "about,"
- },
- {
- "id": 1396,
- "start": 555.451,
- "end": 555.751,
- "text": "because"
- },
- {
- "id": 1397,
- "start": 555.751,
- "end": 555.921,
- "text": "like"
- },
- {
- "id": 1398,
- "start": 555.921,
- "end": 555.981,
- "text": "I"
- },
- {
- "id": 1399,
- "start": 555.981,
- "end": 556.201,
- "text": "said"
- },
- {
- "id": 1400,
- "start": 556.201,
- "end": 556.631,
- "text": "earlier,"
- },
- {
- "id": 1401,
- "start": 556.631,
- "end": 556.711,
- "text": "a"
- },
- {
- "id": 1402,
- "start": 556.711,
- "end": 556.921,
- "text": "lot"
- },
- {
- "id": 1403,
- "start": 556.921,
- "end": 557.021,
- "text": "of"
- },
- {
- "id": 1404,
- "start": 557.021,
- "end": 557.221,
- "text": "these"
- },
- {
- "id": 1405,
- "start": 557.221,
- "end": 557.341,
- "text": "were"
- },
- {
- "id": 1406,
- "start": 557.341,
- "end": 557.541,
- "text": "new"
- },
- {
- "id": 1407,
- "start": 557.541,
- "end": 558.421,
- "text": "problems."
- },
- {
- "id": 1408,
- "start": 558.421,
- "end": 559.901,
- "text": "So"
- },
- {
- "id": 1409,
- "start": 559.901,
- "end": 560.311,
- "text": "again,"
- },
- {
- "id": 1410,
- "start": 560.311,
- "end": 560.531,
- "text": "we"
- },
- {
- "id": 1411,
- "start": 560.531,
- "end": 560.761,
- "text": "were"
- },
- {
- "id": 1412,
- "start": 560.761,
- "end": 561.091,
- "text": "ready"
- },
- {
- "id": 1413,
- "start": 561.091,
- "end": 561.791,
- "text": "for"
- },
- {
- "id": 1414,
- "start": 562.4659999999999,
- "end": 562.9160000000002,
- "text": "cyberattacks;"
- },
- {
- "id": 1415,
- "start": 563.841,
- "end": 564.041,
- "text": "we"
- },
- {
- "id": 1416,
- "start": 564.041,
- "end": 564.211,
- "text": "had"
- },
- {
- "id": 1417,
- "start": 564.211,
- "end": 564.431,
- "text": "a"
- },
- {
- "id": 1418,
- "start": 564.431,
- "end": 564.741,
- "text": "team"
- },
- {
- "id": 1419,
- "start": 564.741,
- "end": 564.891,
- "text": "that"
- },
- {
- "id": 1420,
- "start": 564.891,
- "end": 565.071,
- "text": "was"
- },
- {
- "id": 1421,
- "start": 565.071,
- "end": 565.191,
- "text": "on"
- },
- {
- "id": 1422,
- "start": 565.191,
- "end": 565.431,
- "text": "top"
- },
- {
- "id": 1423,
- "start": 565.431,
- "end": 565.581,
- "text": "of"
- },
- {
- "id": 1424,
- "start": 565.581,
- "end": 565.831,
- "text": "it,"
- },
- {
- "id": 1425,
- "start": 565.831,
- "end": 566.961,
- "text": "and"
- },
- {
- "id": 1426,
- "start": 566.961,
- "end": 567.261,
- "text": "we"
- },
- {
- "id": 1427,
- "start": 567.261,
- "end": 567.351,
- "text": "were"
- },
- {
- "id": 1428,
- "start": 567.351,
- "end": 568.551,
- "text": "not"
- },
- {
- "id": 1429,
- "start": 568.551,
- "end": 569.371,
- "text": "aware"
- },
- {
- "id": 1430,
- "start": 569.371,
- "end": 569.701,
- "text": "or"
- },
- {
- "id": 1431,
- "start": 569.701,
- "end": 570.621,
- "text": "expecting"
- },
- {
- "id": 1432,
- "start": 570.621,
- "end": 570.911,
- "text": "foreign"
- },
- {
- "id": 1433,
- "start": 570.911,
- "end": 571.541,
- "text": "interference"
- },
- {
- "id": 1434,
- "start": 571.541,
- "end": 571.621,
- "text": "in"
- },
- {
- "id": 1435,
- "start": 571.621,
- "end": 571.731,
- "text": "the"
- },
- {
- "id": 1436,
- "start": 572.0310000000001,
- "end": 572.191,
- "text": "election,"
- },
- {
- "id": 1437,
- "start": 572.441,
- "end": 572.651,
- "text": "so"
- },
- {
- "id": 1438,
- "start": 572.651,
- "end": 572.711,
- "text": "I"
- },
- {
- "id": 1439,
- "start": 572.711,
- "end": 573.071,
- "text": "think"
- },
- {
- "id": 1440,
- "start": 573.356,
- "end": 573.716,
- "text": "a"
- },
- {
- "id": 1441,
- "start": 574.001,
- "end": 574.361,
- "text": "lot"
- },
- {
- "id": 1442,
- "start": 574.361,
- "end": 575.571,
- "text": "of"
- },
- {
- "id": 1443,
- "start": 575.571,
- "end": 575.851,
- "text": "the"
- },
- {
- "id": 1444,
- "start": 575.851,
- "end": 576.391,
- "text": "feeling"
- },
- {
- "id": 1445,
- "start": 576.391,
- "end": 576.651,
- "text": "around"
- },
- {
- "id": 1446,
- "start": 576.651,
- "end": 576.751,
- "text": "the"
- },
- {
- "id": 1447,
- "start": 576.751,
- "end": 577.151,
- "text": "office"
- },
- {
- "id": 1448,
- "start": 577.151,
- "end": 577.281,
- "text": "that"
- },
- {
- "id": 1449,
- "start": 577.281,
- "end": 577.441,
- "text": "you’re"
- },
- {
- "id": 1450,
- "start": 577.441,
- "end": 577.921,
- "text": "asking"
- },
- {
- "id": 1451,
- "start": 577.921,
- "end": 578.901,
- "text": "about"
- },
- {
- "id": 1452,
- "start": 578.901,
- "end": 579.261,
- "text": "was"
- },
- {
- "id": 1453,
- "start": 579.261,
- "end": 579.671,
- "text": "just"
- },
- {
- "id": 1454,
- "start": 579.671,
- "end": 580.171,
- "text": "of"
- },
- {
- "id": 1455,
- "start": 580.101,
- "end": 580.421,
- "text": "–"
- },
- {
- "id": 1456,
- "start": 580.531,
- "end": 580.671,
- "text": "a"
- },
- {
- "id": 1457,
- "start": 580.671,
- "end": 580.871,
- "text": "little"
- },
- {
- "id": 1458,
- "start": 580.871,
- "end": 581.021,
- "text": "bit"
- },
- {
- "id": 1459,
- "start": 581.021,
- "end": 581.241,
- "text": "of"
- },
- {
- "id": 1460,
- "start": 581.241,
- "end": 582.991,
- "text": "surprise."
- },
- {
- "id": 1461,
- "start": 582.991,
- "end": 583.231,
- "text": "It’s"
- },
- {
- "id": 1462,
- "start": 583.231,
- "end": 583.911,
- "text": "been"
- },
- {
- "id": 1463,
- "start": 583.911,
- "end": 584.071,
- "text": "the"
- },
- {
- "id": 1464,
- "start": 584.071,
- "end": 584.811,
- "text": "most"
- },
- {
- "id": 1465,
- "start": 584.811,
- "end": 585.681,
- "text": "reflective"
- },
- {
- "id": 1466,
- "start": 585.681,
- "end": 585.891,
- "text": "sort"
- },
- {
- "id": 1467,
- "start": 585.891,
- "end": 586.261,
- "text": "of"
- },
- {
- "id": 1468,
- "start": 586.261,
- "end": 587.341,
- "text": "educational"
- },
- {
- "id": 1469,
- "start": 587.341,
- "end": 588.361,
- "text": "year."
- },
- {
- "id": 1470,
- "start": 588.361,
- "end": 588.791,
- "text": "We’ve"
- },
- {
- "id": 1471,
- "start": 588.791,
- "end": 588.991,
- "text": "been"
- },
- {
- "id": 1472,
- "start": 588.991,
- "end": 589.361,
- "text": "learning"
- },
- {
- "id": 1473,
- "start": 589.351,
- "end": 589.501,
- "text": "a"
- },
- {
- "id": 1474,
- "start": 589.821,
- "end": 589.991,
- "text": "lot."
- },
- {
- "id": 1475,
- "start": 590.291,
- "end": 590.481,
- "text": "But"
- },
- {
- "id": 1476,
- "start": 590.481,
- "end": 590.581,
- "text": "in"
- },
- {
- "id": 1477,
- "start": 590.581,
- "end": 590.901,
- "text": "terms"
- },
- {
- "id": 1478,
- "start": 590.901,
- "end": 591.181,
- "text": "of,"
- },
- {
- "id": 1479,
- "start": 591.181,
- "end": 591.231,
- "text": "I"
- },
- {
- "id": 1480,
- "start": 591.231,
- "end": 591.561,
- "text": "mean,"
- },
- {
- "id": 1481,
- "start": 592.126,
- "end": 592.631,
- "text": "engagement-driven"
- },
- {
- "id": 1482,
- "start": 593.021,
- "end": 593.701,
- "text": "algorithms,"
- },
- {
- "id": 1483,
- "start": 593.701,
- "end": 593.911,
- "text": "right?"
- },
- {
- "id": 1484,
- "start": 593.911,
- "end": 594.221,
- "text": "Part"
- },
- {
- "id": 1485,
- "start": 594.221,
- "end": 594.421,
- "text": "of"
- },
- {
- "id": 1486,
- "start": 594.596,
- "end": 594.7710000000001,
- "text": "Growth"
- },
- {
- "id": 1487,
- "start": 594.971,
- "end": 595.121,
- "text": "and"
- },
- {
- "id": 1488,
- "start": 595.121,
- "end": 595.201,
- "text": "the"
- },
- {
- "id": 1489,
- "start": 595.201,
- "end": 595.481,
- "text": "Growth"
- },
- {
- "id": 1490,
- "start": 595.481,
- "end": 596.041,
- "text": "strategy"
- },
- {
- "id": 1491,
- "start": 596.041,
- "end": 596.641,
- "text": "was"
- },
- {
- "id": 1492,
- "start": 596.641,
- "end": 596.791,
- "text": "in"
- },
- {
- "id": 1493,
- "start": 596.791,
- "end": 597.091,
- "text": "part"
- },
- {
- "id": 1494,
- "start": 597.091,
- "end": 597.211,
- "text": "to"
- },
- {
- "id": 1495,
- "start": 597.211,
- "end": 597.681,
- "text": "engage"
- },
- {
- "id": 1496,
- "start": 597.731,
- "end": 598.1659999999999,
- "text": "people."
- },
- {
- "id": 1497,
- "start": 598.251,
- "end": 598.651,
- "text": "Right?"
- },
- {
- "id": 1498,
- "start": 598.651,
- "end": 598.931,
- "text": "And"
- },
- {
- "id": 1499,
- "start": 598.931,
- "end": 599.141,
- "text": "get"
- },
- {
- "id": 1500,
- "start": 599.131,
- "end": 599.471,
- "text": "people"
- },
- {
- "id": 1501,
- "start": 599.3276666666667,
- "end": 599.7343333333333,
- "text": "on"
- },
- {
- "id": 1502,
- "start": 599.5243333333333,
- "end": 599.9976666666666,
- "text": "to"
- },
- {
- "id": 1503,
- "start": 599.721,
- "end": 600.261,
- "text": "Facebook"
- },
- {
- "id": 1504,
- "start": 600.261,
- "end": 600.461,
- "text": "and"
- },
- {
- "id": 1505,
- "start": 600.5076666666666,
- "end": 600.861,
- "text": "give"
- },
- {
- "id": 1506,
- "start": 600.7543333333333,
- "end": 601.261,
- "text": "an"
- },
- {
- "id": 1507,
- "start": 601.001,
- "end": 601.661,
- "text": "engaging"
- },
- {
- "id": 1508,
- "start": 602.8559999999998,
- "end": 603.241,
- "text": "product."
- },
- {
- "id": 1509,
- "start": 604.711,
- "end": 604.821,
- "text": "There"
- },
- {
- "id": 1510,
- "start": 604.821,
- "end": 604.961,
- "text": "was"
- },
- {
- "id": 1511,
- "start": 604.961,
- "end": 605.031,
- "text": "a"
- },
- {
- "id": 1512,
- "start": 605.031,
- "end": 605.311,
- "text": "long"
- },
- {
- "id": 1513,
- "start": 605.311,
- "end": 605.851,
- "text": "history"
- },
- {
- "id": 1514,
- "start": 605.851,
- "end": 605.991,
- "text": "of"
- },
- {
- "id": 1515,
- "start": 605.991,
- "end": 606.621,
- "text": "criticism"
- },
- {
- "id": 1516,
- "start": 606.621,
- "end": 606.851,
- "text": "either"
- },
- {
- "id": 1517,
- "start": 606.851,
- "end": 606.991,
- "text": "by"
- },
- {
- "id": 1518,
- "start": 606.991,
- "end": 607.761,
- "text": "academics"
- },
- {
- "id": 1519,
- "start": 607.761,
- "end": 607.921,
- "text": "or"
- },
- {
- "id": 1520,
- "start": 607.921,
- "end": 608.071,
- "text": "by"
- },
- {
- "id": 1521,
- "start": 608.071,
- "end": 608.805,
- "text": "others"
- },
- {
- "id": 1522,
- "start": 608.805,
- "end": 609.725,
- "text": "of"
- },
- {
- "id": 1523,
- "start": 609.725,
- "end": 610.125,
- "text": "the"
- },
- {
- "id": 1524,
- "start": 610.125,
- "end": 610.595,
- "text": "potential"
- },
- {
- "id": 1525,
- "start": 610.595,
- "end": 611.045,
- "text": "harms"
- },
- {
- "id": 1526,
- "start": 611.045,
- "end": 611.255,
- "text": "of"
- },
- {
- "id": 1527,
- "start": 611.245,
- "end": 611.505,
- "text": "just"
- },
- {
- "id": 1528,
- "start": 611.6650000000001,
- "end": 612.035,
- "text": "optimizing"
- },
- {
- "id": 1529,
- "start": 612.085,
- "end": 612.5649999999999,
- "text": "foreign"
- },
- {
- "id": 1530,
- "start": 612.505,
- "end": 613.095,
- "text": "engagement"
- },
- {
- "id": 1531,
- "start": 613.085,
- "end": 613.275,
- "text": "or"
- },
- {
- "id": 1532,
- "start": 613.54,
- "end": 613.7199999999999,
- "text": "optimizing"
- },
- {
- "id": 1533,
- "start": 613.995,
- "end": 614.165,
- "text": "for"
- },
- {
- "id": 1534,
- "start": 614.165,
- "end": 614.535,
- "text": "growing"
- },
- {
- "id": 1535,
- "start": 615.24,
- "end": 615.4599999999999,
- "text": "something."
- },
- {
- "id": 1536,
- "start": 616.315,
- "end": 616.385,
- "text": "You"
- },
- {
- "id": 1537,
- "start": 616.385,
- "end": 616.555,
- "text": "don’t"
- },
- {
- "id": 1538,
- "start": 616.555,
- "end": 616.765,
- "text": "think"
- },
- {
- "id": 1539,
- "start": 616.765,
- "end": 616.925,
- "text": "that"
- },
- {
- "id": 1540,
- "start": 616.925,
- "end": 617.155,
- "text": "that"
- },
- {
- "id": 1541,
- "start": 617.155,
- "end": 617.335,
- "text": "was"
- },
- {
- "id": 1542,
- "start": 617.335,
- "end": 617.615,
- "text": "known"
- },
- {
- "id": 1543,
- "start": 617.615,
- "end": 618.095,
- "text": "about"
- },
- {
- "id": 1544,
- "start": 618.095,
- "end": 618.765,
- "text": "before"
- },
- {
- "id": 1545,
- "start": 618.765,
- "end": 619.285,
- "text": "that"
- },
- {
- "id": 1546,
- "start": 619.285,
- "end": 619.555,
- "text": "took"
- },
- {
- "id": 1547,
- "start": 619.555,
- "end": 619.865,
- "text": "people"
- },
- {
- "id": 1548,
- "start": 619.865,
- "end": 620.025,
- "text": "by"
- },
- {
- "id": 1549,
- "start": 620.025,
- "end": 620.475,
- "text": "surprise"
- },
- {
- "id": 1550,
- "start": 620.9600000000002,
- "end": 621.34,
- "text": "here?"
- },
- {
- "id": 1551,
- "start": 621.895,
- "end": 622.205,
- "text": "From"
- },
- {
- "id": 1552,
- "start": 622.205,
- "end": 622.365,
- "text": "my"
- },
- {
- "id": 1553,
- "start": 622.365,
- "end": 622.745,
- "text": "vantage"
- },
- {
- "id": 1554,
- "start": 622.745,
- "end": 623.005,
- "text": "point"
- },
- {
- "id": 1555,
- "start": 623.005,
- "end": 623.125,
- "text": "on"
- },
- {
- "id": 1556,
- "start": 623.125,
- "end": 623.225,
- "text": "the"
- },
- {
- "id": 1557,
- "start": 623.225,
- "end": 623.565,
- "text": "Growth"
- },
- {
- "id": 1558,
- "start": 623.565,
- "end": 624.015,
- "text": "team,"
- },
- {
- "id": 1559,
- "start": 624.015,
- "end": 624.185,
- "text": "we"
- },
- {
- "id": 1560,
- "start": 624.185,
- "end": 624.885,
- "text": "definitely"
- },
- {
- "id": 1561,
- "start": 624.885,
- "end": 625.325,
- "text": "weren’t"
- },
- {
- "id": 1562,
- "start": 625.5675000000001,
- "end": 626.0825,
- "text": "optimizing"
- },
- {
- "id": 1563,
- "start": 626.2500000000002,
- "end": 626.8400000000001,
- "text": "for"
- },
- {
- "id": 1564,
- "start": 626.9325000000001,
- "end": 627.5975000000001,
- "text": "engagement."
- },
- {
- "id": 1565,
- "start": 627.615,
- "end": 628.355,
- "text": "The"
- },
- {
- "id": 1566,
- "start": 628.355,
- "end": 629.365,
- "text": "metrics"
- },
- {
- "id": 1567,
- "start": 629.365,
- "end": 629.495,
- "text": "or"
- },
- {
- "id": 1568,
- "start": 629.495,
- "end": 629.705,
- "text": "the"
- },
- {
- "id": 1569,
- "start": 629.705,
- "end": 630.305,
- "text": "stats"
- },
- {
- "id": 1570,
- "start": 630.305,
- "end": 630.505,
- "text": "that"
- },
- {
- "id": 1571,
- "start": 630.505,
- "end": 630.865,
- "text": "we"
- },
- {
- "id": 1572,
- "start": 630.865,
- "end": 631.585,
- "text": "follow"
- },
- {
- "id": 1573,
- "start": 631.375,
- "end": 631.87,
- "text": "are"
- },
- {
- "id": 1574,
- "start": 631.885,
- "end": 632.155,
- "text": "really"
- },
- {
- "id": 1575,
- "start": 632.155,
- "end": 632.475,
- "text": "around"
- },
- {
- "id": 1576,
- "start": 632.475,
- "end": 633.185,
- "text": "friending."
- },
- {
- "id": 1577,
- "start": 633.185,
- "end": 633.235,
- "text": "I"
- },
- {
- "id": 1578,
- "start": 633.235,
- "end": 633.465,
- "text": "think"
- },
- {
- "id": 1579,
- "start": 633.465,
- "end": 633.505,
- "text": "I"
- },
- {
- "id": 1580,
- "start": 633.505,
- "end": 633.725,
- "text": "told"
- },
- {
- "id": 1581,
- "start": 633.725,
- "end": 633.825,
- "text": "you"
- },
- {
- "id": 1582,
- "start": 633.825,
- "end": 633.895,
- "text": "a"
- },
- {
- "id": 1583,
- "start": 633.895,
- "end": 634.305,
- "text": "lot"
- },
- {
- "id": 1584,
- "start": 634.305,
- "end": 634.365,
- "text": "of"
- },
- {
- "id": 1585,
- "start": 634.365,
- "end": 634.505,
- "text": "my"
- },
- {
- "id": 1586,
- "start": 634.505,
- "end": 634.975,
- "text": "focus"
- },
- {
- "id": 1587,
- "start": 634.975,
- "end": 635.655,
- "text": "on"
- },
- {
- "id": 1588,
- "start": 635.655,
- "end": 636.205,
- "text": "Growth"
- },
- {
- "id": 1589,
- "start": 636.205,
- "end": 636.475,
- "text": "was"
- },
- {
- "id": 1590,
- "start": 636.475,
- "end": 636.855,
- "text": "really"
- },
- {
- "id": 1591,
- "start": 636.855,
- "end": 637.755,
- "text": "about"
- },
- {
- "id": 1592,
- "start": 637.755,
- "end": 638.025,
- "text": "getting"
- },
- {
- "id": 1593,
- "start": 638.025,
- "end": 638.295,
- "text": "people"
- },
- {
- "id": 1594,
- "start": 638.295,
- "end": 638.365,
- "text": "to"
- },
- {
- "id": 1595,
- "start": 638.365,
- "end": 638.635,
- "text": "join"
- },
- {
- "id": 1596,
- "start": 638.635,
- "end": 639.215,
- "text": "Facebook,"
- },
- {
- "id": 1597,
- "start": 639.215,
- "end": 639.355,
- "text": "have"
- },
- {
- "id": 1598,
- "start": 639.355,
- "end": 639.575,
- "text": "a"
- },
- {
- "id": 1599,
- "start": 639.575,
- "end": 639.835,
- "text": "good"
- },
- {
- "id": 1600,
- "start": 639.835,
- "end": 640.625,
- "text": "experience,"
- },
- {
- "id": 1601,
- "start": 640.625,
- "end": 641.135,
- "text": "understand"
- },
- {
- "id": 1602,
- "start": 641.135,
- "end": 641.295,
- "text": "how"
- },
- {
- "id": 1603,
- "start": 641.295,
- "end": 641.395,
- "text": "to"
- },
- {
- "id": 1604,
- "start": 641.395,
- "end": 641.585,
- "text": "use"
- },
- {
- "id": 1605,
- "start": 641.585,
- "end": 641.685,
- "text": "the"
- },
- {
- "id": 1606,
- "start": 641.685,
- "end": 642.165,
- "text": "site,"
- },
- {
- "id": 1607,
- "start": 642.165,
- "end": 642.365,
- "text": "set"
- },
- {
- "id": 1608,
- "start": 642.365,
- "end": 642.475,
- "text": "up"
- },
- {
- "id": 1609,
- "start": 642.475,
- "end": 642.555,
- "text": "a"
- },
- {
- "id": 1610,
- "start": 642.555,
- "end": 643.095,
- "text": "profile"
- },
- {
- "id": 1611,
- "start": 643.095,
- "end": 643.575,
- "text": "picture"
- },
- {
- "id": 1612,
- "start": 643.575,
- "end": 643.775,
- "text": "and"
- },
- {
- "id": 1613,
- "start": 643.775,
- "end": 644.055,
- "text": "connect"
- },
- {
- "id": 1614,
- "start": 644.055,
- "end": 644.165,
- "text": "with"
- },
- {
- "id": 1615,
- "start": 644.165,
- "end": 644.325,
- "text": "their"
- },
- {
- "id": 1616,
- "start": 645.325,
- "end": 645.9300000000001,
- "text": "friends."
- },
- {
- "id": 1617,
- "start": 646.485,
- "end": 647.535,
- "text": "So"
- },
- {
- "id": 1618,
- "start": 647.535,
- "end": 647.715,
- "text": "I’m"
- },
- {
- "id": 1619,
- "start": 647.715,
- "end": 647.935,
- "text": "not"
- },
- {
- "id": 1620,
- "start": 647.935,
- "end": 648.085,
- "text": "sure"
- },
- {
- "id": 1621,
- "start": 648.085,
- "end": 648.355,
- "text": "it’s"
- },
- {
- "id": 1622,
- "start": 648.355,
- "end": 648.865,
- "text": "entirely"
- },
- {
- "id": 1623,
- "start": 648.865,
- "end": 649.325,
- "text": "accurate"
- },
- {
- "id": 1624,
- "start": 649.325,
- "end": 649.465,
- "text": "to"
- },
- {
- "id": 1625,
- "start": 649.465,
- "end": 649.855,
- "text": "say"
- },
- {
- "id": 1626,
- "start": 649.855,
- "end": 650.065,
- "text": "that"
- },
- {
- "id": 1627,
- "start": 650.065,
- "end": 650.215,
- "text": "we"
- },
- {
- "id": 1628,
- "start": 650.215,
- "end": 650.485,
- "text": "were"
- },
- {
- "id": 1629,
- "start": 650.7475000000001,
- "end": 650.9875000000001,
- "text": "optimizing"
- },
- {
- "id": 1630,
- "start": 651.28,
- "end": 651.49,
- "text": "for"
- },
- {
- "id": 1631,
- "start": 651.8125,
- "end": 651.9925,
- "text": "engagement."
- },
- {
- "id": 1632,
- "start": 652.345,
- "end": 652.495,
- "text": "At"
- },
- {
- "id": 1633,
- "start": 652.495,
- "end": 653.575,
- "text": "least"
- },
- {
- "id": 1634,
- "start": 653.575,
- "end": 653.895,
- "text": "for"
- },
- {
- "id": 1635,
- "start": 653.895,
- "end": 654.075,
- "text": "me"
- },
- {
- "id": 1636,
- "start": 654.075,
- "end": 654.195,
- "text": "and"
- },
- {
- "id": 1637,
- "start": 654.195,
- "end": 654.395,
- "text": "my"
- },
- {
- "id": 1638,
- "start": 654.5250000000001,
- "end": 654.725,
- "text": "team,"
- },
- {
- "id": 1639,
- "start": 654.855,
- "end": 655.055,
- "text": "we"
- },
- {
- "id": 1640,
- "start": 655.055,
- "end": 655.505,
- "text": "wanted"
- },
- {
- "id": 1641,
- "start": 655.505,
- "end": 656.555,
- "text": "to"
- },
- {
- "id": 1642,
- "start": 656.555,
- "end": 656.835,
- "text": "help"
- },
- {
- "id": 1643,
- "start": 656.835,
- "end": 657.085,
- "text": "people"
- },
- {
- "id": 1644,
- "start": 657.085,
- "end": 657.255,
- "text": "see"
- },
- {
- "id": 1645,
- "start": 657.255,
- "end": 657.725,
- "text": "value"
- },
- {
- "id": 1646,
- "start": 657.725,
- "end": 658.545,
- "text": "in"
- },
- {
- "id": 1647,
- "start": 658.025,
- "end": 658.885,
- "text": "using"
- },
- {
- "id": 1648,
- "start": 658.9499999999999,
- "end": 659.4300000000001,
- "text": "Facebook."
- },
- {
- "id": 1649,
- "start": 659.875,
- "end": 659.975,
- "text": "In"
- },
- {
- "id": 1650,
- "start": 659.975,
- "end": 660.665,
- "text": "terms"
- },
- {
- "id": 1651,
- "start": 660.665,
- "end": 660.795,
- "text": "of"
- },
- {
- "id": 1652,
- "start": 660.795,
- "end": 661.735,
- "text": "expanding"
- },
- {
- "id": 1653,
- "start": 661.735,
- "end": 662.795,
- "text": "internationally,"
- },
- {
- "id": 1654,
- "start": 662.795,
- "end": 662.985,
- "text": "which"
- },
- {
- "id": 1655,
- "start": 662.985,
- "end": 663.145,
- "text": "was"
- },
- {
- "id": 1656,
- "start": 663.145,
- "end": 663.415,
- "text": "also"
- },
- {
- "id": 1657,
- "start": 663.415,
- "end": 663.645,
- "text": "part"
- },
- {
- "id": 1658,
- "start": 663.645,
- "end": 663.745,
- "text": "of"
- },
- {
- "id": 1659,
- "start": 663.745,
- "end": 663.955,
- "text": "your"
- },
- {
- "id": 1660,
- "start": 663.955,
- "end": 664.3483333333334,
- "text": "purview—"
- },
- {
- "id": 1661,
- "start": 664.165,
- "end": 664.7416666666667,
- "text": "Yes."
- },
- {
- "id": 1662,
- "start": 664.375,
- "end": 665.135,
- "text": "Yes."
- },
- {
- "id": 1663,
- "start": 665.135,
- "end": 665.365,
- "text": "—what"
- },
- {
- "id": 1664,
- "start": 665.365,
- "end": 665.665,
- "text": "about"
- },
- {
- "id": 1665,
- "start": 665.665,
- "end": 665.955,
- "text": "going"
- },
- {
- "id": 1666,
- "start": 665.955,
- "end": 666.195,
- "text": "into"
- },
- {
- "id": 1667,
- "start": 666.195,
- "end": 666.685,
- "text": "places"
- },
- {
- "id": 1668,
- "start": 667.5999999999999,
- "end": 667.98,
- "text": "…"
- },
- {
- "id": 1669,
- "start": 669.005,
- "end": 669.275,
- "text": "in"
- },
- {
- "id": 1670,
- "start": 669.275,
- "end": 669.765,
- "text": "Southeast"
- },
- {
- "id": 1671,
- "start": 669.765,
- "end": 670.165,
- "text": "Asia"
- },
- {
- "id": 1672,
- "start": 670.165,
- "end": 670.405,
- "text": "or"
- },
- {
- "id": 1673,
- "start": 670.405,
- "end": 670.795,
- "text": "elsewhere"
- },
- {
- "id": 1674,
- "start": 670.795,
- "end": 670.895,
- "text": "in"
- },
- {
- "id": 1675,
- "start": 670.895,
- "end": 670.985,
- "text": "the"
- },
- {
- "id": 1676,
- "start": 670.985,
- "end": 671.325,
- "text": "world"
- },
- {
- "id": 1677,
- "start": 671.325,
- "end": 671.485,
- "text": "that"
- },
- {
- "id": 1678,
- "start": 671.485,
- "end": 671.645,
- "text": "did"
- },
- {
- "id": 1679,
- "start": 671.645,
- "end": 671.915,
- "text": "not"
- },
- {
- "id": 1680,
- "start": 671.915,
- "end": 672.855,
- "text": "have"
- },
- {
- "id": 1681,
- "start": 672.855,
- "end": 673.315,
- "text": "civic"
- },
- {
- "id": 1682,
- "start": 673.315,
- "end": 674.205,
- "text": "institutions,"
- },
- {
- "id": 1683,
- "start": 674.205,
- "end": 675.225,
- "text": "strong"
- },
- {
- "id": 1684,
- "start": 675.225,
- "end": 675.655,
- "text": "histories"
- },
- {
- "id": 1685,
- "start": 675.655,
- "end": 675.745,
- "text": "of"
- },
- {
- "id": 1686,
- "start": 675.745,
- "end": 677.095,
- "text": "democracy,"
- },
- {
- "id": 1687,
- "start": 677.095,
- "end": 677.705,
- "text": "strong"
- },
- {
- "id": 1688,
- "start": 677.705,
- "end": 678.245,
- "text": "governmental"
- },
- {
- "id": 1689,
- "start": 678.245,
- "end": 679.125,
- "text": "institutions"
- },
- {
- "id": 1690,
- "start": 679.125,
- "end": 680.185,
- "text": "that"
- },
- {
- "id": 1691,
- "start": 680.185,
- "end": 680.415,
- "text": "in"
- },
- {
- "id": 1692,
- "start": 680.415,
- "end": 680.735,
- "text": "some"
- },
- {
- "id": 1693,
- "start": 680.735,
- "end": 681.455,
- "text": "way"
- },
- {
- "id": 1694,
- "start": 681.455,
- "end": 682.055,
- "text": "that"
- },
- {
- "id": 1695,
- "start": 682.055,
- "end": 682.345,
- "text": "there"
- },
- {
- "id": 1696,
- "start": 682.345,
- "end": 682.575,
- "text": "was"
- },
- {
- "id": 1697,
- "start": 682.575,
- "end": 682.815,
- "text": "some"
- },
- {
- "id": 1698,
- "start": 682.815,
- "end": 683.745,
- "text": "risk"
- },
- {
- "id": 1699,
- "start": 683.745,
- "end": 683.905,
- "text": "to"
- },
- {
- "id": 1700,
- "start": 683.905,
- "end": 684.365,
- "text": "bringing"
- },
- {
- "id": 1701,
- "start": 684.365,
- "end": 684.565,
- "text": "this"
- },
- {
- "id": 1702,
- "start": 684.565,
- "end": 685.785,
- "text": "technology"
- },
- {
- "id": 1703,
- "start": 685.785,
- "end": 686.055,
- "text": "to"
- },
- {
- "id": 1704,
- "start": 686.055,
- "end": 686.275,
- "text": "these"
- },
- {
- "id": 1705,
- "start": 686.275,
- "end": 686.835,
- "text": "countries"
- },
- {
- "id": 1706,
- "start": 686.835,
- "end": 687.465,
- "text": "and"
- },
- {
- "id": 1707,
- "start": 687.465,
- "end": 687.745,
- "text": "really"
- },
- {
- "id": 1708,
- "start": 687.745,
- "end": 688.245,
- "text": "promoting"
- },
- {
- "id": 1709,
- "start": 688.245,
- "end": 688.365,
- "text": "it"
- },
- {
- "id": 1710,
- "start": 688.365,
- "end": 688.515,
- "text": "as"
- },
- {
- "id": 1711,
- "start": 688.515,
- "end": 688.615,
- "text": "it"
- },
- {
- "id": 1712,
- "start": 688.9383333333333,
- "end": 689.105,
- "text": "was?"
- },
- {
- "id": 1713,
- "start": 689.3616666666666,
- "end": 689.595,
- "text": "Yeah."
- },
- {
- "id": 1714,
- "start": 689.785,
- "end": 690.085,
- "text": "I"
- },
- {
- "id": 1715,
- "start": 690.085,
- "end": 690.275,
- "text": "think"
- },
- {
- "id": 1716,
- "start": 690.275,
- "end": 690.485,
- "text": "this"
- },
- {
- "id": 1717,
- "start": 690.3483333333334,
- "end": 690.565,
- "text": "sort"
- },
- {
- "id": 1718,
- "start": 690.4216666666666,
- "end": 690.645,
- "text": "of"
- },
- {
- "id": 1719,
- "start": 690.495,
- "end": 690.725,
- "text": "is"
- },
- {
- "id": 1720,
- "start": 690.725,
- "end": 690.795,
- "text": "a"
- },
- {
- "id": 1721,
- "start": 690.795,
- "end": 691.035,
- "text": "great"
- },
- {
- "id": 1722,
- "start": 691.035,
- "end": 691.465,
- "text": "point."
- },
- {
- "id": 1723,
- "start": 691.465,
- "end": 691.675,
- "text": "When"
- },
- {
- "id": 1724,
- "start": 691.675,
- "end": 692.645,
- "text": "we"
- },
- {
- "id": 1725,
- "start": 692.645,
- "end": 692.905,
- "text": "were"
- },
- {
- "id": 1726,
- "start": 692.905,
- "end": 693.175,
- "text": "first"
- },
- {
- "id": 1727,
- "start": 693.175,
- "end": 693.655,
- "text": "starting"
- },
- {
- "id": 1728,
- "start": 693.655,
- "end": 693.785,
- "text": "on"
- },
- {
- "id": 1729,
- "start": 693.785,
- "end": 694.245,
- "text": "Facebook,"
- },
- {
- "id": 1730,
- "start": 694.245,
- "end": 694.365,
- "text": "we"
- },
- {
- "id": 1731,
- "start": 694.365,
- "end": 694.445,
- "text": "were"
- },
- {
- "id": 1732,
- "start": 694.445,
- "end": 694.865,
- "text": "college"
- },
- {
- "id": 1733,
- "start": 694.865,
- "end": 695.275,
- "text": "students"
- },
- {
- "id": 1734,
- "start": 695.275,
- "end": 695.655,
- "text": "building"
- },
- {
- "id": 1735,
- "start": 695.655,
- "end": 695.705,
- "text": "a"
- },
- {
- "id": 1736,
- "start": 695.705,
- "end": 696.035,
- "text": "site"
- },
- {
- "id": 1737,
- "start": 696.035,
- "end": 696.695,
- "text": "for"
- },
- {
- "id": 1738,
- "start": 696.505,
- "end": 697.065,
- "text": "college"
- },
- {
- "id": 1739,
- "start": 696.98,
- "end": 697.34,
- "text": "students,"
- },
- {
- "id": 1740,
- "start": 697.455,
- "end": 697.615,
- "text": "so"
- },
- {
- "id": 1741,
- "start": 697.615,
- "end": 697.845,
- "text": "other"
- },
- {
- "id": 1742,
- "start": 697.845,
- "end": 698.145,
- "text": "people"
- },
- {
- "id": 1743,
- "start": 698.145,
- "end": 698.385,
- "text": "like"
- },
- {
- "id": 1744,
- "start": 698.7,
- "end": 698.935,
- "text": "us."
- },
- {
- "id": 1745,
- "start": 699.255,
- "end": 699.485,
- "text": "As"
- },
- {
- "id": 1746,
- "start": 699.485,
- "end": 699.675,
- "text": "we’ve"
- },
- {
- "id": 1747,
- "start": 699.675,
- "end": 700.255,
- "text": "grown"
- },
- {
- "id": 1748,
- "start": 700.255,
- "end": 700.445,
- "text": "into"
- },
- {
- "id": 1749,
- "start": 700.445,
- "end": 700.655,
- "text": "other"
- },
- {
- "id": 1750,
- "start": 700.655,
- "end": 701.285,
- "text": "languages"
- },
- {
- "id": 1751,
- "start": 700.935,
- "end": 701.4283333333333,
- "text": "and"
- },
- {
- "id": 1752,
- "start": 701.215,
- "end": 701.5716666666667,
- "text": "to"
- },
- {
- "id": 1753,
- "start": 701.495,
- "end": 701.715,
- "text": "other"
- },
- {
- "id": 1754,
- "start": 701.715,
- "end": 703.355,
- "text": "countries,"
- },
- {
- "id": 1755,
- "start": 703.355,
- "end": 703.495,
- "text": "the"
- },
- {
- "id": 1756,
- "start": 703.495,
- "end": 703.725,
- "text": "people"
- },
- {
- "id": 1757,
- "start": 703.725,
- "end": 703.835,
- "text": "that"
- },
- {
- "id": 1758,
- "start": 703.835,
- "end": 703.895,
- "text": "are"
- },
- {
- "id": 1759,
- "start": 703.895,
- "end": 704.195,
- "text": "using"
- },
- {
- "id": 1760,
- "start": 704.195,
- "end": 704.575,
- "text": "Facebook"
- },
- {
- "id": 1761,
- "start": 704.575,
- "end": 704.735,
- "text": "look"
- },
- {
- "id": 1762,
- "start": 704.735,
- "end": 704.955,
- "text": "very"
- },
- {
- "id": 1763,
- "start": 704.955,
- "end": 705.405,
- "text": "different,"
- },
- {
- "id": 1764,
- "start": 705.405,
- "end": 705.695,
- "text": "whether"
- },
- {
- "id": 1765,
- "start": 705.695,
- "end": 705.845,
- "text": "it’s"
- },
- {
- "id": 1766,
- "start": 705.845,
- "end": 706.225,
- "text": "because"
- },
- {
- "id": 1767,
- "start": 706.225,
- "end": 706.415,
- "text": "they’re"
- },
- {
- "id": 1768,
- "start": 706.415,
- "end": 706.515,
- "text": "in"
- },
- {
- "id": 1769,
- "start": 706.515,
- "end": 706.945,
- "text": "Southeast"
- },
- {
- "id": 1770,
- "start": 706.945,
- "end": 707.445,
- "text": "Asia"
- },
- {
- "id": 1771,
- "start": 707.445,
- "end": 708.035,
- "text": "or"
- },
- {
- "id": 1772,
- "start": 708.035,
- "end": 708.235,
- "text": "they"
- },
- {
- "id": 1773,
- "start": 708.235,
- "end": 710.675,
- "text": "speak"
- },
- {
- "id": 1774,
- "start": 710.675,
- "end": 710.865,
- "text": "a"
- },
- {
- "id": 1775,
- "start": 710.865,
- "end": 711.175,
- "text": "different"
- },
- {
- "id": 1776,
- "start": 711.5450000000001,
- "end": 711.79,
- "text": "language,"
- },
- {
- "id": 1777,
- "start": 712.225,
- "end": 712.405,
- "text": "so"
- },
- {
- "id": 1778,
- "start": 712.405,
- "end": 712.735,
- "text": "we’ve"
- },
- {
- "id": 1779,
- "start": 712.735,
- "end": 712.985,
- "text": "really"
- },
- {
- "id": 1780,
- "start": 712.985,
- "end": 713.365,
- "text": "had"
- },
- {
- "id": 1781,
- "start": 713.365,
- "end": 714.305,
- "text": "to"
- },
- {
- "id": 1782,
- "start": 714.305,
- "end": 714.655,
- "text": "build"
- },
- {
- "id": 1783,
- "start": 714.655,
- "end": 714.685,
- "text": "a"
- },
- {
- "id": 1784,
- "start": 714.685,
- "end": 715.075,
- "text": "diverse"
- },
- {
- "id": 1785,
- "start": 715.075,
- "end": 716.355,
- "text": "workforce,"
- },
- {
- "id": 1786,
- "start": 716.355,
- "end": 716.715,
- "text": "partner"
- },
- {
- "id": 1787,
- "start": 716.715,
- "end": 716.845,
- "text": "with"
- },
- {
- "id": 1788,
- "start": 716.845,
- "end": 717.165,
- "text": "people"
- },
- {
- "id": 1789,
- "start": 717.165,
- "end": 717.295,
- "text": "that"
- },
- {
- "id": 1790,
- "start": 717.295,
- "end": 717.445,
- "text": "are"
- },
- {
- "id": 1791,
- "start": 717.445,
- "end": 717.655,
- "text": "on"
- },
- {
- "id": 1792,
- "start": 717.655,
- "end": 717.745,
- "text": "the"
- },
- {
- "id": 1793,
- "start": 717.745,
- "end": 719.655,
- "text": "ground,"
- },
- {
- "id": 1794,
- "start": 719.655,
- "end": 719.905,
- "text": "work"
- },
- {
- "id": 1795,
- "start": 719.905,
- "end": 720.055,
- "text": "with"
- },
- {
- "id": 1796,
- "start": 720.055,
- "end": 720.655,
- "text": "academics,"
- },
- {
- "id": 1797,
- "start": 720.655,
- "end": 720.835,
- "text": "work"
- },
- {
- "id": 1798,
- "start": 720.835,
- "end": 721.005,
- "text": "with"
- },
- {
- "id": 1799,
- "start": 721.005,
- "end": 721.545,
- "text": "experts"
- },
- {
- "id": 1800,
- "start": 721.545,
- "end": 721.665,
- "text": "to"
- },
- {
- "id": 1801,
- "start": 721.665,
- "end": 722.565,
- "text": "understand"
- },
- {
- "id": 1802,
- "start": 722.565,
- "end": 722.945,
- "text": "the"
- },
- {
- "id": 1803,
- "start": 722.945,
- "end": 723.315,
- "text": "people"
- },
- {
- "id": 1804,
- "start": 723.315,
- "end": 723.385,
- "text": "in"
- },
- {
- "id": 1805,
- "start": 723.385,
- "end": 723.475,
- "text": "the"
- },
- {
- "id": 1806,
- "start": 723.475,
- "end": 724.215,
- "text": "communities"
- },
- {
- "id": 1807,
- "start": 724.215,
- "end": 724.335,
- "text": "that"
- },
- {
- "id": 1808,
- "start": 724.335,
- "end": 724.415,
- "text": "are"
- },
- {
- "id": 1809,
- "start": 724.415,
- "end": 724.715,
- "text": "using"
- },
- {
- "id": 1810,
- "start": 724.715,
- "end": 725.195,
- "text": "Facebook"
- },
- {
- "id": 1811,
- "start": 725.195,
- "end": 725.325,
- "text": "and"
- },
- {
- "id": 1812,
- "start": 725.775,
- "end": 726.03,
- "text": "how."
- },
- {
- "id": 1813,
- "start": 726.355,
- "end": 726.735,
- "text": "We’re"
- },
- {
- "id": 1814,
- "start": 726.735,
- "end": 726.865,
- "text": "at"
- },
- {
- "id": 1815,
- "start": 726.865,
- "end": 726.985,
- "text": "the"
- },
- {
- "id": 1816,
- "start": 726.985,
- "end": 727.135,
- "text": "end"
- },
- {
- "id": 1817,
- "start": 727.135,
- "end": 727.205,
- "text": "of"
- },
- {
- "id": 1818,
- "start": 727.205,
- "end": 727.365,
- "text": "this"
- },
- {
- "id": 1819,
- "start": 727.365,
- "end": 727.875,
- "text": "process"
- },
- {
- "id": 1820,
- "start": 727.875,
- "end": 728.025,
- "text": "of"
- },
- {
- "id": 1821,
- "start": 728.025,
- "end": 728.475,
- "text": "reporting"
- },
- {
- "id": 1822,
- "start": 728.3365,
- "end": 728.6465000000001,
- "text": "out"
- },
- {
- "id": 1823,
- "start": 728.648,
- "end": 728.818,
- "text": "this"
- },
- {
- "id": 1824,
- "start": 728.818,
- "end": 729.608,
- "text": "film,"
- },
- {
- "id": 1825,
- "start": 729.608,
- "end": 730.098,
- "text": "and"
- },
- {
- "id": 1826,
- "start": 730.098,
- "end": 730.248,
- "text": "we’re"
- },
- {
- "id": 1827,
- "start": 730.248,
- "end": 730.478,
- "text": "here"
- },
- {
- "id": 1828,
- "start": 730.478,
- "end": 730.588,
- "text": "at"
- },
- {
- "id": 1829,
- "start": 730.588,
- "end": 731.198,
- "text": "Facebook,"
- },
- {
- "id": 1830,
- "start": 731.198,
- "end": 731.318,
- "text": "and"
- },
- {
- "id": 1831,
- "start": 731.318,
- "end": 731.348,
- "text": "I"
- },
- {
- "id": 1832,
- "start": 731.348,
- "end": 731.588,
- "text": "think"
- },
- {
- "id": 1833,
- "start": 731.588,
- "end": 731.728,
- "text": "one"
- },
- {
- "id": 1834,
- "start": 731.728,
- "end": 731.798,
- "text": "of"
- },
- {
- "id": 1835,
- "start": 731.798,
- "end": 731.898,
- "text": "the"
- },
- {
- "id": 1836,
- "start": 731.898,
- "end": 732.288,
- "text": "things"
- },
- {
- "id": 1837,
- "start": 732.288,
- "end": 732.468,
- "text": "is"
- },
- {
- "id": 1838,
- "start": 732.468,
- "end": 732.818,
- "text": "that"
- },
- {
- "id": 1839,
- "start": 732.9946666666666,
- "end": 733.2513333333334,
- "text": "there"
- },
- {
- "id": 1840,
- "start": 733.5213333333334,
- "end": 733.6846666666667,
- "text": "is"
- },
- {
- "id": 1841,
- "start": 734.048,
- "end": 734.118,
- "text": "a"
- },
- {
- "id": 1842,
- "start": 734.118,
- "end": 734.538,
- "text": "sense"
- },
- {
- "id": 1843,
- "start": 734.538,
- "end": 735.098,
- "text": "outside"
- },
- {
- "id": 1844,
- "start": 735.098,
- "end": 735.218,
- "text": "of"
- },
- {
- "id": 1845,
- "start": 735.218,
- "end": 735.708,
- "text": "here"
- },
- {
- "id": 1846,
- "start": 735.708,
- "end": 737.978,
- "text": "that"
- },
- {
- "id": 1847,
- "start": 737.978,
- "end": 738.558,
- "text": "Facebook"
- },
- {
- "id": 1848,
- "start": 738.558,
- "end": 738.718,
- "text": "has"
- },
- {
- "id": 1849,
- "start": 738.718,
- "end": 738.958,
- "text": "had"
- },
- {
- "id": 1850,
- "start": 738.958,
- "end": 739.158,
- "text": "this"
- },
- {
- "id": 1851,
- "start": 739.158,
- "end": 739.958,
- "text": "veneer,"
- },
- {
- "id": 1852,
- "start": 739.958,
- "end": 740.188,
- "text": "this"
- },
- {
- "id": 1853,
- "start": 740.188,
- "end": 740.588,
- "text": "public"
- },
- {
- "id": 1854,
- "start": 740.588,
- "end": 740.938,
- "text": "image"
- },
- {
- "id": 1855,
- "start": 740.938,
- "end": 741.078,
- "text": "of"
- },
- {
- "id": 1856,
- "start": 741.078,
- "end": 741.388,
- "text": "a"
- },
- {
- "id": 1857,
- "start": 741.388,
- "end": 741.818,
- "text": "force"
- },
- {
- "id": 1858,
- "start": 741.818,
- "end": 741.998,
- "text": "for"
- },
- {
- "id": 1859,
- "start": 741.998,
- "end": 742.648,
- "text": "good,"
- },
- {
- "id": 1860,
- "start": 742.648,
- "end": 743.498,
- "text": "and"
- },
- {
- "id": 1861,
- "start": 743.498,
- "end": 744.088,
- "text": "that"
- },
- {
- "id": 1862,
- "start": 744.088,
- "end": 745.028,
- "text": "the"
- },
- {
- "id": 1863,
- "start": 745.028,
- "end": 745.448,
- "text": "company’s"
- },
- {
- "id": 1864,
- "start": 745.448,
- "end": 745.568,
- "text": "been"
- },
- {
- "id": 1865,
- "start": 745.568,
- "end": 745.808,
- "text": "very"
- },
- {
- "id": 1866,
- "start": 745.808,
- "end": 746.418,
- "text": "successful"
- },
- {
- "id": 1867,
- "start": 746.418,
- "end": 746.508,
- "text": "at"
- },
- {
- "id": 1868,
- "start": 746.508,
- "end": 746.808,
- "text": "putting"
- },
- {
- "id": 1869,
- "start": 746.808,
- "end": 747.298,
- "text": "forward"
- },
- {
- "id": 1870,
- "start": 747.298,
- "end": 747.408,
- "text": "a"
- },
- {
- "id": 1871,
- "start": 747.408,
- "end": 747.658,
- "text": "very"
- },
- {
- "id": 1872,
- "start": 747.658,
- "end": 748.158,
- "text": "positive"
- },
- {
- "id": 1873,
- "start": 748.158,
- "end": 748.438,
- "text": "image"
- },
- {
- "id": 1874,
- "start": 748.438,
- "end": 748.578,
- "text": "of"
- },
- {
- "id": 1875,
- "start": 748.788,
- "end": 749.058,
- "text": "itself—any"
- },
- {
- "id": 1876,
- "start": 749.138,
- "end": 749.538,
- "text": "company"
- },
- {
- "id": 1877,
- "start": 749.538,
- "end": 749.688,
- "text": "would"
- },
- {
- "id": 1878,
- "start": 749.678,
- "end": 749.888,
- "text": "do"
- },
- {
- "id": 1879,
- "start": 750.458,
- "end": 750.8280000000001,
- "text": "that—but"
- },
- {
- "id": 1880,
- "start": 751.238,
- "end": 751.768,
- "text": "that"
- },
- {
- "id": 1881,
- "start": 751.768,
- "end": 751.988,
- "text": "at"
- },
- {
- "id": 1882,
- "start": 751.988,
- "end": 752.098,
- "text": "the"
- },
- {
- "id": 1883,
- "start": 752.098,
- "end": 752.228,
- "text": "end"
- },
- {
- "id": 1884,
- "start": 752.228,
- "end": 752.298,
- "text": "of"
- },
- {
- "id": 1885,
- "start": 752.298,
- "end": 752.378,
- "text": "the"
- },
- {
- "id": 1886,
- "start": 752.378,
- "end": 752.998,
- "text": "day,"
- },
- {
- "id": 1887,
- "start": 752.998,
- "end": 753.288,
- "text": "there’s"
- },
- {
- "id": 1888,
- "start": 753.288,
- "end": 753.478,
- "text": "been"
- },
- {
- "id": 1889,
- "start": 753.478,
- "end": 753.708,
- "text": "quite"
- },
- {
- "id": 1890,
- "start": 753.708,
- "end": 753.758,
- "text": "a"
- },
- {
- "id": 1891,
- "start": 753.758,
- "end": 753.908,
- "text": "bit"
- },
- {
- "id": 1892,
- "start": 753.908,
- "end": 753.988,
- "text": "of"
- },
- {
- "id": 1893,
- "start": 753.988,
- "end": 754.498,
- "text": "harm"
- },
- {
- "id": 1894,
- "start": 754.498,
- "end": 754.858,
- "text": "caused"
- },
- {
- "id": 1895,
- "start": 754.858,
- "end": 754.998,
- "text": "by"
- },
- {
- "id": 1896,
- "start": 754.998,
- "end": 755.188,
- "text": "this"
- },
- {
- "id": 1897,
- "start": 755.188,
- "end": 755.688,
- "text": "company"
- },
- {
- "id": 1898,
- "start": 755.8929999999999,
- "end": 756.203,
- "text": "and"
- },
- {
- "id": 1899,
- "start": 756.598,
- "end": 756.718,
- "text": "what"
- },
- {
- "id": 1900,
- "start": 756.718,
- "end": 756.848,
- "text": "it’s"
- },
- {
- "id": 1901,
- "start": 759.1929999999993,
- "end": 759.3829999999998,
- "text": "built."
- },
- {
- "id": 1902,
- "start": 761.668,
- "end": 761.918,
- "text": "When"
- },
- {
- "id": 1903,
- "start": 761.918,
- "end": 762.488,
- "text": "Exxon"
- },
- {
- "id": 1904,
- "start": 762.488,
- "end": 762.898,
- "text": "spills"
- },
- {
- "id": 1905,
- "start": 762.898,
- "end": 764.048,
- "text": "oil,"
- },
- {
- "id": 1906,
- "start": 763.328,
- "end": 764.688,
- "text": "someone’s"
- },
- {
- "id": 1907,
- "start": 763.8346666666666,
- "end": 764.7813333333332,
- "text": "going"
- },
- {
- "id": 1908,
- "start": 764.3413333333333,
- "end": 764.8746666666666,
- "text": "to"
- },
- {
- "id": 1909,
- "start": 764.848,
- "end": 764.968,
- "text": "be"
- },
- {
- "id": 1910,
- "start": 764.968,
- "end": 765.178,
- "text": "held"
- },
- {
- "id": 1911,
- "start": 765.178,
- "end": 766.128,
- "text": "accountable,"
- },
- {
- "id": 1912,
- "start": 766.128,
- "end": 766.748,
- "text": "and"
- },
- {
- "id": 1913,
- "start": 766.738,
- "end": 767.178,
- "text": "there’s"
- },
- {
- "id": 1914,
- "start": 766.9513333333334,
- "end": 767.3046666666667,
- "text": "going"
- },
- {
- "id": 1915,
- "start": 767.1646666666668,
- "end": 767.4313333333333,
- "text": "to"
- },
- {
- "id": 1916,
- "start": 767.378,
- "end": 767.558,
- "text": "be"
- },
- {
- "id": 1917,
- "start": 767.558,
- "end": 767.868,
- "text": "people"
- },
- {
- "id": 1918,
- "start": 767.868,
- "end": 768.008,
- "text": "that"
- },
- {
- "id": 1919,
- "start": 768.008,
- "end": 768.098,
- "text": "are"
- },
- {
- "id": 1920,
- "start": 768.098,
- "end": 769.388,
- "text": "fired."
- },
- {
- "id": 1921,
- "start": 769.388,
- "end": 769.638,
- "text": "What"
- },
- {
- "id": 1922,
- "start": 769.638,
- "end": 769.698,
- "text": "do"
- },
- {
- "id": 1923,
- "start": 769.698,
- "end": 769.808,
- "text": "you"
- },
- {
- "id": 1924,
- "start": 769.808,
- "end": 770.198,
- "text": "think"
- },
- {
- "id": 1925,
- "start": 770.198,
- "end": 770.358,
- "text": "that"
- },
- {
- "id": 1926,
- "start": 770.358,
- "end": 770.508,
- "text": "the"
- },
- {
- "id": 1927,
- "start": 770.508,
- "end": 771.438,
- "text": "accountability"
- },
- {
- "id": 1928,
- "start": 771.438,
- "end": 771.668,
- "text": "has"
- },
- {
- "id": 1929,
- "start": 771.668,
- "end": 771.928,
- "text": "been"
- },
- {
- "id": 1930,
- "start": 771.928,
- "end": 772.478,
- "text": "here"
- },
- {
- "id": 1931,
- "start": 772.478,
- "end": 772.648,
- "text": "in"
- },
- {
- "id": 1932,
- "start": 772.648,
- "end": 773.008,
- "text": "terms"
- },
- {
- "id": 1933,
- "start": 773.008,
- "end": 773.688,
- "text": "of"
- },
- {
- "id": 1934,
- "start": 773.688,
- "end": 774.138,
- "text": "what’s"
- },
- {
- "id": 1935,
- "start": 774.138,
- "end": 774.428,
- "text": "been"
- },
- {
- "id": 1936,
- "start": 774.428,
- "end": 775.128,
- "text": "caused"
- },
- {
- "id": 1937,
- "start": 775.128,
- "end": 775.318,
- "text": "or"
- },
- {
- "id": 1938,
- "start": 775.318,
- "end": 776.018,
- "text": "what"
- },
- {
- "id": 1939,
- "start": 776.018,
- "end": 776.478,
- "text": "Facebook"
- },
- {
- "id": 1940,
- "start": 776.478,
- "end": 776.618,
- "text": "has"
- },
- {
- "id": 1941,
- "start": 776.618,
- "end": 776.738,
- "text": "been"
- },
- {
- "id": 1942,
- "start": 776.738,
- "end": 776.808,
- "text": "a"
- },
- {
- "id": 1943,
- "start": 776.808,
- "end": 777.098,
- "text": "part"
- },
- {
- "id": 1944,
- "start": 777.098,
- "end": 777.608,
- "text": "of"
- },
- {
- "id": 1945,
- "start": 777.608,
- "end": 777.948,
- "text": "and"
- },
- {
- "id": 1946,
- "start": 777.948,
- "end": 778.098,
- "text": "what"
- },
- {
- "id": 1947,
- "start": 778.098,
- "end": 778.258,
- "text": "you’ve"
- },
- {
- "id": 1948,
- "start": 778.448,
- "end": 779.288,
- "text": "built,"
- },
- {
- "id": 1949,
- "start": 778.798,
- "end": 780.318,
- "text": "and"
- },
- {
- "id": 1950,
- "start": 780.318,
- "end": 780.548,
- "text": "can"
- },
- {
- "id": 1951,
- "start": 780.548,
- "end": 780.648,
- "text": "you"
- },
- {
- "id": 1952,
- "start": 780.648,
- "end": 781.118,
- "text": "understand"
- },
- {
- "id": 1953,
- "start": 781.118,
- "end": 781.238,
- "text": "why"
- },
- {
- "id": 1954,
- "start": 781.238,
- "end": 781.338,
- "text": "it"
- },
- {
- "id": 1955,
- "start": 781.338,
- "end": 781.468,
- "text": "may"
- },
- {
- "id": 1956,
- "start": 781.468,
- "end": 781.698,
- "text": "not"
- },
- {
- "id": 1957,
- "start": 781.698,
- "end": 781.818,
- "text": "be"
- },
- {
- "id": 1958,
- "start": 781.818,
- "end": 782.488,
- "text": "satisfying"
- },
- {
- "id": 1959,
- "start": 782.488,
- "end": 782.628,
- "text": "to"
- },
- {
- "id": 1960,
- "start": 782.628,
- "end": 782.708,
- "text": "a"
- },
- {
- "id": 1961,
- "start": 782.708,
- "end": 782.888,
- "text": "lot"
- },
- {
- "id": 1962,
- "start": 782.888,
- "end": 782.958,
- "text": "of"
- },
- {
- "id": 1963,
- "start": 782.958,
- "end": 783.268,
- "text": "people"
- },
- {
- "id": 1964,
- "start": 783.268,
- "end": 783.448,
- "text": "out"
- },
- {
- "id": 1965,
- "start": 783.448,
- "end": 783.658,
- "text": "there"
- },
- {
- "id": 1966,
- "start": 783.658,
- "end": 783.808,
- "text": "that"
- },
- {
- "id": 1967,
- "start": 783.808,
- "end": 783.948,
- "text": "there"
- },
- {
- "id": 1968,
- "start": 783.948,
- "end": 784.368,
- "text": "hasn’t"
- },
- {
- "id": 1969,
- "start": 784.368,
- "end": 785.018,
- "text": "been,"
- },
- {
- "id": 1970,
- "start": 785.018,
- "end": 785.118,
- "text": "you"
- },
- {
- "id": 1971,
- "start": 785.118,
- "end": 785.288,
- "text": "know,"
- },
- {
- "id": 1972,
- "start": 785.288,
- "end": 785.628,
- "text": "who’s"
- },
- {
- "id": 1973,
- "start": 785.628,
- "end": 785.788,
- "text": "been"
- },
- {
- "id": 1974,
- "start": 785.788,
- "end": 786.278,
- "text": "fired,"
- },
- {
- "id": 1975,
- "start": 786.278,
- "end": 786.448,
- "text": "for"
- },
- {
- "id": 1976,
- "start": 786.448,
- "end": 786.898,
- "text": "instance,"
- },
- {
- "id": 1977,
- "start": 786.898,
- "end": 786.988,
- "text": "or"
- },
- {
- "id": 1978,
- "start": 786.988,
- "end": 787.218,
- "text": "who’s"
- },
- {
- "id": 1979,
- "start": 787.218,
- "end": 787.508,
- "text": "lost"
- },
- {
- "id": 1980,
- "start": 787.508,
- "end": 787.638,
- "text": "their"
- },
- {
- "id": 1981,
- "start": 787.773,
- "end": 787.893,
- "text": "job"
- },
- {
- "id": 1982,
- "start": 788.038,
- "end": 788.148,
- "text": "as"
- },
- {
- "id": 1983,
- "start": 788.148,
- "end": 788.208,
- "text": "a"
- },
- {
- "id": 1984,
- "start": 788.208,
- "end": 788.628,
- "text": "result"
- },
- {
- "id": 1985,
- "start": 788.628,
- "end": 788.718,
- "text": "of"
- },
- {
- "id": 1986,
- "start": 788.718,
- "end": 788.918,
- "text": "what’s"
- },
- {
- "id": 1987,
- "start": 788.918,
- "end": 789.988,
- "text": "happened"
- },
- {
- "id": 1988,
- "start": 789.988,
- "end": 790.218,
- "text": "here"
- },
- {
- "id": 1989,
- "start": 790.218,
- "end": 790.298,
- "text": "at"
- },
- {
- "id": 1990,
- "start": 790.298,
- "end": 793.768,
- "text": "Facebook?"
- },
- {
- "id": 1991,
- "start": 793.768,
- "end": 793.958,
- "text": "You"
- },
- {
- "id": 1992,
- "start": 793.958,
- "end": 794.308,
- "text": "know,"
- },
- {
- "id": 1993,
- "start": 794.298,
- "end": 795.008,
- "text": "I"
- },
- {
- "id": 1994,
- "start": 795.0630000000001,
- "end": 795.5430000000001,
- "text": "am"
- },
- {
- "id": 1995,
- "start": 795.828,
- "end": 796.078,
- "text": "still"
- },
- {
- "id": 1996,
- "start": 796.033,
- "end": 796.433,
- "text": "at"
- },
- {
- "id": 1997,
- "start": 796.238,
- "end": 796.788,
- "text": "Facebook"
- },
- {
- "id": 1998,
- "start": 796.788,
- "end": 797.188,
- "text": "because"
- },
- {
- "id": 1999,
- "start": 797.188,
- "end": 797.258,
- "text": "I"
- },
- {
- "id": 2000,
- "start": 797.258,
- "end": 797.678,
- "text": "firmly"
- },
- {
- "id": 2001,
- "start": 797.678,
- "end": 798.118,
- "text": "believe"
- },
- {
- "id": 2002,
- "start": 798.118,
- "end": 798.278,
- "text": "that"
- },
- {
- "id": 2003,
- "start": 798.278,
- "end": 798.698,
- "text": "Facebook"
- },
- {
- "id": 2004,
- "start": 798.698,
- "end": 798.888,
- "text": "is"
- },
- {
- "id": 2005,
- "start": 798.888,
- "end": 798.988,
- "text": "a"
- },
- {
- "id": 2006,
- "start": 798.988,
- "end": 799.338,
- "text": "force"
- },
- {
- "id": 2007,
- "start": 799.338,
- "end": 799.528,
- "text": "for"
- },
- {
- "id": 2008,
- "start": 799.528,
- "end": 799.838,
- "text": "good,"
- },
- {
- "id": 2009,
- "start": 799.838,
- "end": 800.078,
- "text": "but"
- },
- {
- "id": 2010,
- "start": 800.078,
- "end": 800.338,
- "text": "when"
- },
- {
- "id": 2011,
- "start": 800.338,
- "end": 800.708,
- "text": "you"
- },
- {
- "id": 2012,
- "start": 800.708,
- "end": 800.988,
- "text": "build"
- },
- {
- "id": 2013,
- "start": 800.988,
- "end": 801.058,
- "text": "a"
- },
- {
- "id": 2014,
- "start": 801.058,
- "end": 801.528,
- "text": "product"
- },
- {
- "id": 2015,
- "start": 801.528,
- "end": 801.748,
- "text": "that"
- },
- {
- "id": 2016,
- "start": 801.748,
- "end": 801.988,
- "text": "really"
- },
- {
- "id": 2017,
- "start": 801.988,
- "end": 802.158,
- "text": "is"
- },
- {
- "id": 2018,
- "start": 802.158,
- "end": 802.228,
- "text": "a"
- },
- {
- "id": 2019,
- "start": 802.228,
- "end": 802.818,
- "text": "reflection"
- },
- {
- "id": 2020,
- "start": 802.818,
- "end": 802.938,
- "text": "of"
- },
- {
- "id": 2021,
- "start": 803.483,
- "end": 804.0480000000002,
- "text": "society,"
- },
- {
- "id": 2022,
- "start": 804.148,
- "end": 805.158,
- "text": "you"
- },
- {
- "id": 2023,
- "start": 805.158,
- "end": 805.378,
- "text": "get"
- },
- {
- "id": 2024,
- "start": 805.378,
- "end": 805.498,
- "text": "the"
- },
- {
- "id": 2025,
- "start": 805.498,
- "end": 805.858,
- "text": "good"
- },
- {
- "id": 2026,
- "start": 805.858,
- "end": 806.168,
- "text": "and"
- },
- {
- "id": 2027,
- "start": 806.168,
- "end": 806.258,
- "text": "the"
- },
- {
- "id": 2028,
- "start": 806.258,
- "end": 808.058,
- "text": "bad."
- },
- {
- "id": 2029,
- "start": 808.058,
- "end": 810.288,
- "text": "So"
- },
- {
- "id": 2030,
- "start": 810.288,
- "end": 810.798,
- "text": "I’m"
- },
- {
- "id": 2031,
- "start": 810.798,
- "end": 811.088,
- "text": "not"
- },
- {
- "id": 2032,
- "start": 811.088,
- "end": 811.578,
- "text": "sure"
- },
- {
- "id": 2033,
- "start": 811.578,
- "end": 812.558,
- "text": "that"
- },
- {
- "id": 2034,
- "start": 812.558,
- "end": 812.708,
- "text": "in"
- },
- {
- "id": 2035,
- "start": 812.708,
- "end": 813.008,
- "text": "terms"
- },
- {
- "id": 2036,
- "start": 813.008,
- "end": 813.088,
- "text": "of"
- },
- {
- "id": 2037,
- "start": 813.088,
- "end": 814.898,
- "text": "accountability"
- },
- {
- "id": 2038,
- "start": 814.898,
- "end": 815.288,
- "text": "someone"
- },
- {
- "id": 2039,
- "start": 815.288,
- "end": 815.448,
- "text": "has"
- },
- {
- "id": 2040,
- "start": 815.448,
- "end": 815.618,
- "text": "been"
- },
- {
- "id": 2041,
- "start": 815.878,
- "end": 816.158,
- "text": "fired,"
- },
- {
- "id": 2042,
- "start": 816.308,
- "end": 816.698,
- "text": "but"
- },
- {
- "id": 2043,
- "start": 816.9879999999998,
- "end": 817.438,
- "text": "we’ve"
- },
- {
- "id": 2044,
- "start": 817.668,
- "end": 818.178,
- "text": "definitely"
- },
- {
- "id": 2045,
- "start": 818.178,
- "end": 818.658,
- "text": "changed"
- },
- {
- "id": 2046,
- "start": 818.658,
- "end": 818.748,
- "text": "the"
- },
- {
- "id": 2047,
- "start": 818.748,
- "end": 818.918,
- "text": "way"
- },
- {
- "id": 2048,
- "start": 818.918,
- "end": 819.068,
- "text": "that"
- },
- {
- "id": 2049,
- "start": 819.068,
- "end": 819.198,
- "text": "we"
- },
- {
- "id": 2050,
- "start": 819.713,
- "end": 819.868,
- "text": "operate,"
- },
- {
- "id": 2051,
- "start": 820.358,
- "end": 820.538,
- "text": "and"
- },
- {
- "id": 2052,
- "start": 820.538,
- "end": 820.688,
- "text": "this"
- },
- {
- "id": 2053,
- "start": 820.688,
- "end": 820.828,
- "text": "is"
- },
- {
- "id": 2054,
- "start": 820.828,
- "end": 820.928,
- "text": "our"
- },
- {
- "id": 2055,
- "start": 820.928,
- "end": 821.248,
- "text": "number"
- },
- {
- "id": 2056,
- "start": 821.248,
- "end": 821.408,
- "text": "one"
- },
- {
- "id": 2057,
- "start": 821.408,
- "end": 823.088,
- "text": "priority."
- },
- {
- "id": 2058,
- "start": 823.088,
- "end": 823.988,
- "text": "And"
- },
- {
- "id": 2059,
- "start": 823.988,
- "end": 824.218,
- "text": "in"
- },
- {
- "id": 2060,
- "start": 824.218,
- "end": 824.538,
- "text": "terms"
- },
- {
- "id": 2061,
- "start": 824.538,
- "end": 824.618,
- "text": "of"
- },
- {
- "id": 2062,
- "start": 824.618,
- "end": 825.048,
- "text": "changing"
- },
- {
- "id": 2063,
- "start": 825.048,
- "end": 825.148,
- "text": "the"
- },
- {
- "id": 2064,
- "start": 825.148,
- "end": 825.308,
- "text": "way"
- },
- {
- "id": 2065,
- "start": 825.308,
- "end": 825.508,
- "text": "that"
- },
- {
- "id": 2066,
- "start": 825.508,
- "end": 825.618,
- "text": "you"
- },
- {
- "id": 2067,
- "start": 825.618,
- "end": 826.178,
- "text": "operate,"
- },
- {
- "id": 2068,
- "start": 826.178,
- "end": 826.378,
- "text": "is"
- },
- {
- "id": 2069,
- "start": 826.378,
- "end": 827.618,
- "text": "there"
- },
- {
- "id": 2070,
- "start": 827.618,
- "end": 827.688,
- "text": "a"
- },
- {
- "id": 2071,
- "start": 827.688,
- "end": 828.128,
- "text": "sense"
- },
- {
- "id": 2072,
- "start": 828.128,
- "end": 828.358,
- "text": "that"
- },
- {
- "id": 2073,
- "start": 828.358,
- "end": 828.628,
- "text": "we"
- },
- {
- "id": 2074,
- "start": 828.628,
- "end": 828.838,
- "text": "kind"
- },
- {
- "id": 2075,
- "start": 828.838,
- "end": 828.938,
- "text": "of"
- },
- {
- "id": 2076,
- "start": 828.938,
- "end": 829.148,
- "text": "have"
- },
- {
- "id": 2077,
- "start": 829.148,
- "end": 829.268,
- "text": "to"
- },
- {
- "id": 2078,
- "start": 829.268,
- "end": 829.558,
- "text": "take"
- },
- {
- "id": 2079,
- "start": 829.558,
- "end": 829.718,
- "text": "your"
- },
- {
- "id": 2080,
- "start": 829.718,
- "end": 830.028,
- "text": "word"
- },
- {
- "id": 2081,
- "start": 830.028,
- "end": 830.208,
- "text": "for"
- },
- {
- "id": 2082,
- "start": 830.208,
- "end": 830.808,
- "text": "that?"
- },
- {
- "id": 2083,
- "start": 830.808,
- "end": 830.918,
- "text": "I"
- },
- {
- "id": 2084,
- "start": 830.918,
- "end": 831.058,
- "text": "mean,"
- },
- {
- "id": 2085,
- "start": 831.058,
- "end": 831.498,
- "text": "obviously"
- },
- {
- "id": 2086,
- "start": 831.498,
- "end": 831.668,
- "text": "we’re"
- },
- {
- "id": 2087,
- "start": 831.668,
- "end": 832.178,
- "text": "here"
- },
- {
- "id": 2088,
- "start": 832.178,
- "end": 832.338,
- "text": "at"
- },
- {
- "id": 2089,
- "start": 832.338,
- "end": 832.748,
- "text": "Facebook"
- },
- {
- "id": 2090,
- "start": 832.748,
- "end": 833.048,
- "text": "to"
- },
- {
- "id": 2091,
- "start": 833.048,
- "end": 833.638,
- "text": "see"
- },
- {
- "id": 2092,
- "start": 833.638,
- "end": 833.838,
- "text": "and"
- },
- {
- "id": 2093,
- "start": 833.838,
- "end": 834.068,
- "text": "talk"
- },
- {
- "id": 2094,
- "start": 834.068,
- "end": 834.148,
- "text": "to"
- },
- {
- "id": 2095,
- "start": 834.148,
- "end": 834.238,
- "text": "the"
- },
- {
- "id": 2096,
- "start": 834.238,
- "end": 834.548,
- "text": "people"
- },
- {
- "id": 2097,
- "start": 834.548,
- "end": 834.678,
- "text": "that"
- },
- {
- "id": 2098,
- "start": 834.678,
- "end": 834.738,
- "text": "are"
- },
- {
- "id": 2099,
- "start": 834.738,
- "end": 835.218,
- "text": "changing"
- },
- {
- "id": 2100,
- "start": 835.218,
- "end": 835.308,
- "text": "the"
- },
- {
- "id": 2101,
- "start": 835.308,
- "end": 835.468,
- "text": "way"
- },
- {
- "id": 2102,
- "start": 835.468,
- "end": 835.668,
- "text": "that"
- },
- {
- "id": 2103,
- "start": 835.668,
- "end": 835.778,
- "text": "you"
- },
- {
- "id": 2104,
- "start": 836.5729999999999,
- "end": 837.3130000000001,
- "text": "operate,"
- },
- {
- "id": 2105,
- "start": 837.478,
- "end": 838.848,
- "text": "but"
- },
- {
- "id": 2106,
- "start": 838.848,
- "end": 838.998,
- "text": "at"
- },
- {
- "id": 2107,
- "start": 838.998,
- "end": 839.088,
- "text": "the"
- },
- {
- "id": 2108,
- "start": 839.088,
- "end": 839.188,
- "text": "end"
- },
- {
- "id": 2109,
- "start": 839.188,
- "end": 839.248,
- "text": "of"
- },
- {
- "id": 2110,
- "start": 839.248,
- "end": 839.328,
- "text": "the"
- },
- {
- "id": 2111,
- "start": 839.328,
- "end": 839.648,
- "text": "day,"
- },
- {
- "id": 2112,
- "start": 839.848,
- "end": 840.093,
- "text": "we"
- },
- {
- "id": 2113,
- "start": 840.368,
- "end": 840.538,
- "text": "have"
- },
- {
- "id": 2114,
- "start": 840.538,
- "end": 840.638,
- "text": "to"
- },
- {
- "id": 2115,
- "start": 840.638,
- "end": 840.928,
- "text": "take"
- },
- {
- "id": 2116,
- "start": 840.928,
- "end": 841.088,
- "text": "your"
- },
- {
- "id": 2117,
- "start": 841.088,
- "end": 841.418,
- "text": "word"
- },
- {
- "id": 2118,
- "start": 841.418,
- "end": 841.598,
- "text": "for"
- },
- {
- "id": 2119,
- "start": 841.598,
- "end": 841.868,
- "text": "that,"
- },
- {
- "id": 2120,
- "start": 841.868,
- "end": 842.558,
- "text": "right?"
- },
- {
- "id": 2121,
- "start": 842.558,
- "end": 842.988,
- "text": "No."
- },
- {
- "id": 2122,
- "start": 842.988,
- "end": 843.088,
- "text": "I"
- },
- {
- "id": 2123,
- "start": 843.088,
- "end": 843.408,
- "text": "think"
- },
- {
- "id": 2124,
- "start": 843.408,
- "end": 844.188,
- "text": "that"
- },
- {
- "id": 2125,
- "start": 844.188,
- "end": 844.518,
- "text": "one"
- },
- {
- "id": 2126,
- "start": 844.518,
- "end": 844.648,
- "text": "of"
- },
- {
- "id": 2127,
- "start": 844.648,
- "end": 844.728,
- "text": "the"
- },
- {
- "id": 2128,
- "start": 844.728,
- "end": 844.948,
- "text": "most"
- },
- {
- "id": 2129,
- "start": 844.948,
- "end": 845.268,
- "text": "important"
- },
- {
- "id": 2130,
- "start": 845.268,
- "end": 845.478,
- "text": "things"
- },
- {
- "id": 2131,
- "start": 845.478,
- "end": 845.588,
- "text": "is"
- },
- {
- "id": 2132,
- "start": 845.588,
- "end": 845.738,
- "text": "that"
- },
- {
- "id": 2133,
- "start": 845.738,
- "end": 845.868,
- "text": "we’re"
- },
- {
- "id": 2134,
- "start": 846.3080000000002,
- "end": 846.513,
- "text": "super-transparent"
- },
- {
- "id": 2135,
- "start": 846.878,
- "end": 847.158,
- "text": "about"
- },
- {
- "id": 2136,
- "start": 847.158,
- "end": 847.388,
- "text": "all"
- },
- {
- "id": 2137,
- "start": 847.388,
- "end": 847.488,
- "text": "of"
- },
- {
- "id": 2138,
- "start": 847.488,
- "end": 847.598,
- "text": "the"
- },
- {
- "id": 2139,
- "start": 847.598,
- "end": 847.978,
- "text": "things"
- },
- {
- "id": 2140,
- "start": 847.978,
- "end": 848.128,
- "text": "that"
- },
- {
- "id": 2141,
- "start": 848.128,
- "end": 848.288,
- "text": "we’ve"
- },
- {
- "id": 2142,
- "start": 848.288,
- "end": 848.458,
- "text": "been"
- },
- {
- "id": 2143,
- "start": 848.989,
- "end": 849.224,
- "text": "doing:"
- },
- {
- "id": 2144,
- "start": 849.69,
- "end": 849.99,
- "text": "how"
- },
- {
- "id": 2145,
- "start": 849.99,
- "end": 850.09,
- "text": "we’re"
- },
- {
- "id": 2146,
- "start": 850.09,
- "end": 850.43,
- "text": "taking"
- },
- {
- "id": 2147,
- "start": 850.43,
- "end": 850.69,
- "text": "down"
- },
- {
- "id": 2148,
- "start": 850.69,
- "end": 850.94,
- "text": "fake"
- },
- {
- "id": 2149,
- "start": 850.94,
- "end": 851.6,
- "text": "accounts;"
- },
- {
- "id": 2150,
- "start": 851.6,
- "end": 851.8,
- "text": "how"
- },
- {
- "id": 2151,
- "start": 851.8,
- "end": 851.97,
- "text": "we’re"
- },
- {
- "id": 2152,
- "start": 851.97,
- "end": 852.64,
- "text": "identifying"
- },
- {
- "id": 2153,
- "start": 852.64,
- "end": 853.75,
- "text": "misinformation;"
- },
- {
- "id": 2154,
- "start": 853.75,
- "end": 853.95,
- "text": "who"
- },
- {
- "id": 2155,
- "start": 853.95,
- "end": 854.13,
- "text": "we’re"
- },
- {
- "id": 2156,
- "start": 854.13,
- "end": 854.76,
- "text": "partnering"
- },
- {
- "id": 2157,
- "start": 854.76,
- "end": 855.04,
- "text": "with"
- },
- {
- "id": 2158,
- "start": 855.28,
- "end": 855.5649999999998,
- "text": "third-party"
- },
- {
- "id": 2159,
- "start": 855.8,
- "end": 856.09,
- "text": "fact"
- },
- {
- "id": 2160,
- "start": 856.4199999999998,
- "end": 856.695,
- "text": "checkers."
- },
- {
- "id": 2161,
- "start": 857.04,
- "end": 857.3,
- "text": "We"
- },
- {
- "id": 2162,
- "start": 857.3,
- "end": 858.02,
- "text": "recently"
- },
- {
- "id": 2163,
- "start": 858.02,
- "end": 858.41,
- "text": "released"
- },
- {
- "id": 2164,
- "start": 858.41,
- "end": 858.61,
- "text": "a"
- },
- {
- "id": 2165,
- "start": 858.61,
- "end": 859.23,
- "text": "report"
- },
- {
- "id": 2166,
- "start": 859.23,
- "end": 859.37,
- "text": "that"
- },
- {
- "id": 2167,
- "start": 859.37,
- "end": 859.61,
- "text": "shows"
- },
- {
- "id": 2168,
- "start": 859.61,
- "end": 859.91,
- "text": "all"
- },
- {
- "id": 2169,
- "start": 859.91,
- "end": 859.97,
- "text": "of"
- },
- {
- "id": 2170,
- "start": 859.97,
- "end": 860.07,
- "text": "the"
- },
- {
- "id": 2171,
- "start": 860.07,
- "end": 860.37,
- "text": "stats"
- },
- {
- "id": 2172,
- "start": 860.37,
- "end": 860.48,
- "text": "and"
- },
- {
- "id": 2173,
- "start": 860.48,
- "end": 860.89,
- "text": "metrics"
- },
- {
- "id": 2174,
- "start": 860.89,
- "end": 861.25,
- "text": "around"
- },
- {
- "id": 2175,
- "start": 861.25,
- "end": 861.41,
- "text": "our"
- },
- {
- "id": 2176,
- "start": 861.41,
- "end": 861.94,
- "text": "integrity"
- },
- {
- "id": 2177,
- "start": 861.94,
- "end": 862.64,
- "text": "teams,"
- },
- {
- "id": 2178,
- "start": 862.64,
- "end": 862.87,
- "text": "what"
- },
- {
- "id": 2179,
- "start": 862.87,
- "end": 862.98,
- "text": "they’re"
- },
- {
- "id": 2180,
- "start": 862.98,
- "end": 863.31,
- "text": "taking"
- },
- {
- "id": 2181,
- "start": 863.31,
- "end": 863.83,
- "text": "down,"
- },
- {
- "id": 2182,
- "start": 863.83,
- "end": 864.14,
- "text": "how"
- },
- {
- "id": 2183,
- "start": 864.14,
- "end": 864.5,
- "text": "fast"
- },
- {
- "id": 2184,
- "start": 864.39,
- "end": 864.7149999999999,
- "text": "it"
- },
- {
- "id": 2185,
- "start": 864.64,
- "end": 864.93,
- "text": "comes"
- },
- {
- "id": 2186,
- "start": 864.93,
- "end": 865.94,
- "text": "down."
- },
- {
- "id": 2187,
- "start": 865.94,
- "end": 866.54,
- "text": "We’ve"
- },
- {
- "id": 2188,
- "start": 866.54,
- "end": 867.08,
- "text": "doubled"
- },
- {
- "id": 2189,
- "start": 867.08,
- "end": 867.65,
- "text": "from"
- },
- {
- "id": 2190,
- "start": 867.6649999999998,
- "end": 868.0899999999999,
- "text": "10,000"
- },
- {
- "id": 2191,
- "start": 868.25,
- "end": 868.53,
- "text": "people"
- },
- {
- "id": 2192,
- "start": 868.53,
- "end": 868.8,
- "text": "working"
- },
- {
- "id": 2193,
- "start": 868.8,
- "end": 868.91,
- "text": "on"
- },
- {
- "id": 2194,
- "start": 868.91,
- "end": 869.21,
- "text": "safety"
- },
- {
- "id": 2195,
- "start": 869.21,
- "end": 869.33,
- "text": "and"
- },
- {
- "id": 2196,
- "start": 869.33,
- "end": 869.74,
- "text": "security"
- },
- {
- "id": 2197,
- "start": 869.74,
- "end": 869.84,
- "text": "to"
- },
- {
- "id": 2198,
- "start": 870.14,
- "end": 870.3050000000001,
- "text": "20,000,"
- },
- {
- "id": 2199,
- "start": 870.54,
- "end": 870.77,
- "text": "so"
- },
- {
- "id": 2200,
- "start": 870.77,
- "end": 871.3,
- "text": "all"
- },
- {
- "id": 2201,
- "start": 871.3,
- "end": 871.4,
- "text": "of"
- },
- {
- "id": 2202,
- "start": 871.4,
- "end": 871.7,
- "text": "these"
- },
- {
- "id": 2203,
- "start": 871.7,
- "end": 872.1,
- "text": "things"
- },
- {
- "id": 2204,
- "start": 872.1,
- "end": 872.18,
- "text": "are"
- },
- {
- "id": 2205,
- "start": 872.18,
- "end": 872.47,
- "text": "things"
- },
- {
- "id": 2206,
- "start": 872.47,
- "end": 872.61,
- "text": "that"
- },
- {
- "id": 2207,
- "start": 872.61,
- "end": 872.73,
- "text": "we"
- },
- {
- "id": 2208,
- "start": 872.73,
- "end": 872.87,
- "text": "need"
- },
- {
- "id": 2209,
- "start": 872.87,
- "end": 872.94,
- "text": "to"
- },
- {
- "id": 2210,
- "start": 872.94,
- "end": 873.09,
- "text": "be"
- },
- {
- "id": 2211,
- "start": 873.09,
- "end": 873.55,
- "text": "extremely"
- },
- {
- "id": 2212,
- "start": 873.55,
- "end": 874.23,
- "text": "transparent"
- },
- {
- "id": 2213,
- "start": 874.23,
- "end": 875.87,
- "text": "about"
- },
- {
- "id": 2214,
- "start": 875.87,
- "end": 876.12,
- "text": "so"
- },
- {
- "id": 2215,
- "start": 876.12,
- "end": 877.04,
- "text": "that"
- },
- {
- "id": 2216,
- "start": 877.04,
- "end": 877.44,
- "text": "we"
- },
- {
- "id": 2217,
- "start": 877.44,
- "end": 877.6,
- "text": "can"
- },
- {
- "id": 2218,
- "start": 877.6,
- "end": 878.32,
- "text": "welcome"
- },
- {
- "id": 2219,
- "start": 878.32,
- "end": 879,
- "text": "feedback"
- },
- {
- "id": 2220,
- "start": 879,
- "end": 879.78,
- "text": "and"
- },
- {
- "id": 2221,
- "start": 879.78,
- "end": 881.2,
- "text": "evaluation."
- },
- {
- "id": 2222,
- "start": 881.2,
- "end": 881.32,
- "text": "The"
- },
- {
- "id": 2223,
- "start": 881.32,
- "end": 881.46,
- "text": "other"
- },
- {
- "id": 2224,
- "start": 881.46,
- "end": 881.66,
- "text": "thing"
- },
- {
- "id": 2225,
- "start": 881.66,
- "end": 881.78,
- "text": "is"
- },
- {
- "id": 2226,
- "start": 881.78,
- "end": 881.97,
- "text": "just"
- },
- {
- "id": 2227,
- "start": 881.97,
- "end": 882.16,
- "text": "trying"
- },
- {
- "id": 2228,
- "start": 882.16,
- "end": 882.23,
- "text": "to"
- },
- {
- "id": 2229,
- "start": 882.23,
- "end": 882.36,
- "text": "be"
- },
- {
- "id": 2230,
- "start": 882.36,
- "end": 882.43,
- "text": "a"
- },
- {
- "id": 2231,
- "start": 882.43,
- "end": 882.61,
- "text": "lot"
- },
- {
- "id": 2232,
- "start": 882.61,
- "end": 882.75,
- "text": "more"
- },
- {
- "id": 2233,
- "start": 882.75,
- "end": 883.43,
- "text": "transparent"
- },
- {
- "id": 2234,
- "start": 883.43,
- "end": 883.52,
- "text": "in"
- },
- {
- "id": 2235,
- "start": 883.52,
- "end": 883.63,
- "text": "our"
- },
- {
- "id": 2236,
- "start": 883.63,
- "end": 885.46,
- "text": "product."
- },
- {
- "id": 2237,
- "start": 885.46,
- "end": 885.76,
- "text": "Now"
- },
- {
- "id": 2238,
- "start": 885.76,
- "end": 885.87,
- "text": "you"
- },
- {
- "id": 2239,
- "start": 885.87,
- "end": 885.98,
- "text": "can"
- },
- {
- "id": 2240,
- "start": 885.98,
- "end": 886.13,
- "text": "go"
- },
- {
- "id": 2241,
- "start": 886.13,
- "end": 886.21,
- "text": "to"
- },
- {
- "id": 2242,
- "start": 886.21,
- "end": 886.36,
- "text": "any"
- },
- {
- "id": 2243,
- "start": 886.36,
- "end": 886.88,
- "text": "page"
- },
- {
- "id": 2244,
- "start": 886.88,
- "end": 887.04,
- "text": "and"
- },
- {
- "id": 2245,
- "start": 887.04,
- "end": 887.21,
- "text": "see"
- },
- {
- "id": 2246,
- "start": 887.21,
- "end": 887.38,
- "text": "what"
- },
- {
- "id": 2247,
- "start": 887.38,
- "end": 887.74,
- "text": "ads"
- },
- {
- "id": 2248,
- "start": 887.74,
- "end": 887.93,
- "text": "they’re"
- },
- {
- "id": 2249,
- "start": 887.93,
- "end": 888.91,
- "text": "running."
- },
- {
- "id": 2250,
- "start": 888.91,
- "end": 889.28,
- "text": "Anyone"
- },
- {
- "id": 2251,
- "start": 889.28,
- "end": 889.38,
- "text": "who"
- },
- {
- "id": 2252,
- "start": 889.38,
- "end": 889.61,
- "text": "wants"
- },
- {
- "id": 2253,
- "start": 889.61,
- "end": 889.72,
- "text": "to"
- },
- {
- "id": 2254,
- "start": 889.72,
- "end": 889.88,
- "text": "run"
- },
- {
- "id": 2255,
- "start": 889.88,
- "end": 889.94,
- "text": "a"
- },
- {
- "id": 2256,
- "start": 889.94,
- "end": 890.49,
- "text": "political"
- },
- {
- "id": 2257,
- "start": 890.49,
- "end": 890.6,
- "text": "or"
- },
- {
- "id": 2258,
- "start": 890.6,
- "end": 890.88,
- "text": "issue"
- },
- {
- "id": 2259,
- "start": 890.88,
- "end": 891.1,
- "text": "ad"
- },
- {
- "id": 2260,
- "start": 891.1,
- "end": 891.31,
- "text": "needs"
- },
- {
- "id": 2261,
- "start": 891.31,
- "end": 891.42,
- "text": "to"
- },
- {
- "id": 2262,
- "start": 891.61,
- "end": 891.9425,
- "text": "verify."
- },
- {
- "id": 2263,
- "start": 891.9100000000001,
- "end": 892.465,
- "text": "These"
- },
- {
- "id": 2264,
- "start": 892.21,
- "end": 892.9875000000001,
- "text": "are"
- },
- {
- "id": 2265,
- "start": 892.51,
- "end": 893.51,
- "text": "all"
- },
- {
- "id": 2266,
- "start": 893.51,
- "end": 893.81,
- "text": "part"
- },
- {
- "id": 2267,
- "start": 893.81,
- "end": 893.9,
- "text": "of"
- },
- {
- "id": 2268,
- "start": 893.9,
- "end": 894.04,
- "text": "our"
- },
- {
- "id": 2269,
- "start": 894.04,
- "end": 894.41,
- "text": "effort"
- },
- {
- "id": 2270,
- "start": 894.41,
- "end": 894.52,
- "text": "to"
- },
- {
- "id": 2271,
- "start": 894.52,
- "end": 894.66,
- "text": "be"
- },
- {
- "id": 2272,
- "start": 894.66,
- "end": 894.82,
- "text": "more"
- },
- {
- "id": 2273,
- "start": 894.82,
- "end": 895.33,
- "text": "transparent"
- },
- {
- "id": 2274,
- "start": 895.33,
- "end": 895.49,
- "text": "about"
- },
- {
- "id": 2275,
- "start": 895.49,
- "end": 895.56,
- "text": "the"
- },
- {
- "id": 2276,
- "start": 895.56,
- "end": 896.1,
- "text": "company"
- },
- {
- "id": 2277,
- "start": 896.1,
- "end": 896.66,
- "text": "and"
- },
- {
- "id": 2278,
- "start": 896.66,
- "end": 896.76,
- "text": "our"
- },
- {
- "id": 2279,
- "start": 896.76,
- "end": 898.17,
- "text": "product."
- },
- {
- "id": 2280,
- "start": 898.17,
- "end": 898.62,
- "text": "What"
- },
- {
- "id": 2281,
- "start": 898.62,
- "end": 898.8,
- "text": "is"
- },
- {
- "id": 2282,
- "start": 898.8,
- "end": 898.92,
- "text": "the"
- },
- {
- "id": 2283,
- "start": 898.92,
- "end": 899.61,
- "text": "standard"
- },
- {
- "id": 2284,
- "start": 899.61,
- "end": 900.17,
- "text": "that"
- },
- {
- "id": 2285,
- "start": 900.17,
- "end": 900.38,
- "text": "the"
- },
- {
- "id": 2286,
- "start": 900.38,
- "end": 900.9,
- "text": "public"
- },
- {
- "id": 2287,
- "start": 900.9,
- "end": 901.11,
- "text": "should"
- },
- {
- "id": 2288,
- "start": 901.11,
- "end": 901.36,
- "text": "hold"
- },
- {
- "id": 2289,
- "start": 901.36,
- "end": 901.91,
- "text": "Facebook"
- },
- {
- "id": 2290,
- "start": 901.8100000000001,
- "end": 902.2,
- "text": "to"
- },
- {
- "id": 2291,
- "start": 902.26,
- "end": 902.49,
- "text": "in"
- },
- {
- "id": 2292,
- "start": 902.49,
- "end": 902.9,
- "text": "terms"
- },
- {
- "id": 2293,
- "start": 902.9,
- "end": 903.09,
- "text": "of"
- },
- {
- "id": 2294,
- "start": 903.09,
- "end": 903.56,
- "text": "solving"
- },
- {
- "id": 2295,
- "start": 903.56,
- "end": 903.81,
- "text": "some"
- },
- {
- "id": 2296,
- "start": 903.81,
- "end": 903.91,
- "text": "of"
- },
- {
- "id": 2297,
- "start": 903.91,
- "end": 904.53,
- "text": "these"
- },
- {
- "id": 2298,
- "start": 904.53,
- "end": 905.87,
- "text": "seemingly"
- },
- {
- "id": 2299,
- "start": 905.87,
- "end": 906.7,
- "text": "enormous"
- },
- {
- "id": 2300,
- "start": 906.7,
- "end": 907.6,
- "text": "problems?"
- },
- {
- "id": 2301,
- "start": 907.6,
- "end": 907.85,
- "text": "Whether"
- },
- {
- "id": 2302,
- "start": 907.85,
- "end": 907.94,
- "text": "it"
- },
- {
- "id": 2303,
- "start": 907.94,
- "end": 908.42,
- "text": "comes"
- },
- {
- "id": 2304,
- "start": 908.42,
- "end": 908.84,
- "text": "down"
- },
- {
- "id": 2305,
- "start": 908.84,
- "end": 909.45,
- "text": "to"
- },
- {
- "id": 2306,
- "start": 909.45,
- "end": 909.89,
- "text": "hate"
- },
- {
- "id": 2307,
- "start": 909.89,
- "end": 910.35,
- "text": "speech"
- },
- {
- "id": 2308,
- "start": 910.35,
- "end": 910.46,
- "text": "on"
- },
- {
- "id": 2309,
- "start": 910.46,
- "end": 910.55,
- "text": "the"
- },
- {
- "id": 2310,
- "start": 910.55,
- "end": 911.24,
- "text": "platform"
- },
- {
- "id": 2311,
- "start": 911.24,
- "end": 912.05,
- "text": "or"
- },
- {
- "id": 2312,
- "start": 912.05,
- "end": 912.65,
- "text": "influence"
- },
- {
- "id": 2313,
- "start": 912.65,
- "end": 913.54,
- "text": "campaigns,"
- },
- {
- "id": 2314,
- "start": 913.54,
- "end": 913.86,
- "text": "what"
- },
- {
- "id": 2315,
- "start": 913.86,
- "end": 914.45,
- "text": "standard"
- },
- {
- "id": 2316,
- "start": 914.45,
- "end": 914.82,
- "text": "should"
- },
- {
- "id": 2317,
- "start": 914.82,
- "end": 914.92,
- "text": "the"
- },
- {
- "id": 2318,
- "start": 914.92,
- "end": 915.4,
- "text": "public"
- },
- {
- "id": 2319,
- "start": 915.4,
- "end": 915.94,
- "text": "have"
- },
- {
- "id": 2320,
- "start": 915.94,
- "end": 916.24,
- "text": "for"
- },
- {
- "id": 2321,
- "start": 916.24,
- "end": 916.34,
- "text": "the"
- },
- {
- "id": 2322,
- "start": 916.34,
- "end": 917.08,
- "text": "company"
- },
- {
- "id": 2323,
- "start": 917.08,
- "end": 917.38,
- "text": "going"
- },
- {
- "id": 2324,
- "start": 917.38,
- "end": 918.16,
- "text": "forward"
- },
- {
- "id": 2325,
- "start": 918.16,
- "end": 918.31,
- "text": "in"
- },
- {
- "id": 2326,
- "start": 918.31,
- "end": 918.64,
- "text": "terms"
- },
- {
- "id": 2327,
- "start": 918.64,
- "end": 918.94,
- "text": "of"
- },
- {
- "id": 2328,
- "start": 918.94,
- "end": 919.98,
- "text": "how"
- },
- {
- "id": 2329,
- "start": 919.98,
- "end": 920.59,
- "text": "responsive"
- },
- {
- "id": 2330,
- "start": 920.59,
- "end": 920.72,
- "text": "you"
- },
- {
- "id": 2331,
- "start": 920.72,
- "end": 920.86,
- "text": "are"
- },
- {
- "id": 2332,
- "start": 920.86,
- "end": 920.94,
- "text": "to"
- },
- {
- "id": 2333,
- "start": 920.94,
- "end": 921.15,
- "text": "these"
- },
- {
- "id": 2334,
- "start": 921.15,
- "end": 923.07,
- "text": "problems?"
- },
- {
- "id": 2335,
- "start": 923.07,
- "end": 923.46,
- "text": "I"
- },
- {
- "id": 2336,
- "start": 923.46,
- "end": 923.99,
- "text": "think"
- },
- {
- "id": 2337,
- "start": 923.99,
- "end": 924.22,
- "text": "the"
- },
- {
- "id": 2338,
- "start": 924.22,
- "end": 924.79,
- "text": "standard"
- },
- {
- "id": 2339,
- "start": 924.505,
- "end": 924.8399999999999,
- "text": "and"
- },
- {
- "id": 2340,
- "start": 924.79,
- "end": 924.89,
- "text": "the"
- },
- {
- "id": 2341,
- "start": 924.89,
- "end": 926.78,
- "text": "responsibility,"
- },
- {
- "id": 2342,
- "start": 926.78,
- "end": 927.42,
- "text": "what"
- },
- {
- "id": 2343,
- "start": 927.42,
- "end": 927.59,
- "text": "I’m"
- },
- {
- "id": 2344,
- "start": 927.59,
- "end": 928.01,
- "text": "focused"
- },
- {
- "id": 2345,
- "start": 928.01,
- "end": 928.17,
- "text": "on"
- },
- {
- "id": 2346,
- "start": 928.17,
- "end": 928.31,
- "text": "is"
- },
- {
- "id": 2347,
- "start": 928.31,
- "end": 928.97,
- "text": "amplifying"
- },
- {
- "id": 2348,
- "start": 928.97,
- "end": 929.19,
- "text": "good"
- },
- {
- "id": 2349,
- "start": 929.19,
- "end": 929.35,
- "text": "and"
- },
- {
- "id": 2350,
- "start": 929.8950000000002,
- "end": 930.0475,
- "text": "minimizing"
- },
- {
- "id": 2351,
- "start": 930.6000000000001,
- "end": 930.745,
- "text": "the"
- },
- {
- "id": 2352,
- "start": 931.3050000000001,
- "end": 931.4425,
- "text": "bad."
- },
- {
- "id": 2353,
- "start": 932.01,
- "end": 932.14,
- "text": "We"
- },
- {
- "id": 2354,
- "start": 932.14,
- "end": 932.25,
- "text": "need"
- },
- {
- "id": 2355,
- "start": 932.25,
- "end": 932.32,
- "text": "to"
- },
- {
- "id": 2356,
- "start": 932.32,
- "end": 932.48,
- "text": "be"
- },
- {
- "id": 2357,
- "start": 932.48,
- "end": 933.07,
- "text": "transparent"
- },
- {
- "id": 2358,
- "start": 933.07,
- "end": 933.23,
- "text": "about"
- },
- {
- "id": 2359,
- "start": 933.23,
- "end": 933.35,
- "text": "what"
- },
- {
- "id": 2360,
- "start": 933.35,
- "end": 933.47,
- "text": "we’re"
- },
- {
- "id": 2361,
- "start": 933.47,
- "end": 933.85,
- "text": "doing"
- },
- {
- "id": 2362,
- "start": 933.85,
- "end": 933.97,
- "text": "on"
- },
- {
- "id": 2363,
- "start": 933.97,
- "end": 934.22,
- "text": "both"
- },
- {
- "id": 2364,
- "start": 935.0233333333333,
- "end": 935.2099999999998,
- "text": "sides,"
- },
- {
- "id": 2365,
- "start": 936.0766666666666,
- "end": 936.1999999999996,
- "text": "and"
- },
- {
- "id": 2366,
- "start": 937.13,
- "end": 937.19,
- "text": "I"
- },
- {
- "id": 2367,
- "start": 937.19,
- "end": 937.39,
- "text": "think"
- },
- {
- "id": 2368,
- "start": 937.39,
- "end": 937.56,
- "text": "this"
- },
- {
- "id": 2369,
- "start": 937.56,
- "end": 937.68,
- "text": "is"
- },
- {
- "id": 2370,
- "start": 937.68,
- "end": 937.76,
- "text": "an"
- },
- {
- "id": 2371,
- "start": 937.76,
- "end": 938.21,
- "text": "ongoing"
- },
- {
- "id": 2372,
- "start": 938.21,
- "end": 939.97,
- "text": "discussion."
- },
- {
- "id": 2373,
- "start": 939.97,
- "end": 940.28,
- "text": "What’s"
- },
- {
- "id": 2374,
- "start": 940.28,
- "end": 940.37,
- "text": "an"
- },
- {
- "id": 2375,
- "start": 940.37,
- "end": 940.77,
- "text": "ongoing"
- },
- {
- "id": 2376,
- "start": 940.77,
- "end": 941.51,
- "text": "discussion?"
- },
- {
- "id": 2377,
- "start": 941.51,
- "end": 941.78,
- "text": "How"
- },
- {
- "id": 2378,
- "start": 941.78,
- "end": 941.9,
- "text": "we’re"
- },
- {
- "id": 2379,
- "start": 941.9,
- "end": 942.33,
- "text": "doing"
- },
- {
- "id": 2380,
- "start": 942.33,
- "end": 942.44,
- "text": "on"
- },
- {
- "id": 2381,
- "start": 942.8150000000002,
- "end": 943.095,
- "text": "minimizing"
- },
- {
- "id": 2382,
- "start": 943.3000000000001,
- "end": 943.75,
- "text": "the"
- },
- {
- "id": 2383,
- "start": 943.7850000000002,
- "end": 944.405,
- "text": "bad."
- },
- {
- "id": 2384,
- "start": 944.27,
- "end": 945.06,
- "text": "But"
- },
- {
- "id": 2385,
- "start": 945.06,
- "end": 945.32,
- "text": "we’re"
- },
- {
- "id": 2386,
- "start": 945.32,
- "end": 945.66,
- "text": "dealing"
- },
- {
- "id": 2387,
- "start": 945.66,
- "end": 945.8,
- "text": "with"
- },
- {
- "id": 2388,
- "start": 945.8,
- "end": 946.3,
- "text": "such"
- },
- {
- "id": 2389,
- "start": 946.3,
- "end": 947.06,
- "text": "consequential"
- },
- {
- "id": 2390,
- "start": 947.06,
- "end": 947.68,
- "text": "issues,"
- },
- {
- "id": 2391,
- "start": 947.68,
- "end": 947.99,
- "text": "right?"
- },
- {
- "id": 2392,
- "start": 947.99,
- "end": 948.08,
- "text": "We’re"
- },
- {
- "id": 2393,
- "start": 948.08,
- "end": 948.39,
- "text": "talking"
- },
- {
- "id": 2394,
- "start": 948.39,
- "end": 949.42,
- "text": "about"
- },
- {
- "id": 2395,
- "start": 949.42,
- "end": 949.96,
- "text": "integrity"
- },
- {
- "id": 2396,
- "start": 949.96,
- "end": 950.05,
- "text": "of"
- },
- {
- "id": 2397,
- "start": 950.05,
- "end": 950.19,
- "text": "our"
- },
- {
- "id": 2398,
- "start": 950.19,
- "end": 950.93,
- "text": "elections;"
- },
- {
- "id": 2399,
- "start": 950.6880000000001,
- "end": 951.318,
- "text": "we’re"
- },
- {
- "id": 2400,
- "start": 951.1860000000001,
- "end": 951.706,
- "text": "talking"
- },
- {
- "id": 2401,
- "start": 951.6840000000002,
- "end": 952.0939999999999,
- "text": "about—"
- },
- {
- "id": 2402,
- "start": 952.182,
- "end": 952.482,
- "text": "Absolutely."
- },
- {
- "id": 2403,
- "start": 952.68,
- "end": 952.87,
- "text": "—in"
- },
- {
- "id": 2404,
- "start": 952.87,
- "end": 953.09,
- "text": "some"
- },
- {
- "id": 2405,
- "start": 953.09,
- "end": 955.47,
- "text": "cases"
- },
- {
- "id": 2406,
- "start": 955.47,
- "end": 955.78,
- "text": "playing"
- },
- {
- "id": 2407,
- "start": 955.78,
- "end": 955.86,
- "text": "a"
- },
- {
- "id": 2408,
- "start": 955.86,
- "end": 956.12,
- "text": "role"
- },
- {
- "id": 2409,
- "start": 956.12,
- "end": 956.19,
- "text": "in"
- },
- {
- "id": 2410,
- "start": 956.19,
- "end": 956.26,
- "text": "the"
- },
- {
- "id": 2411,
- "start": 956.26,
- "end": 960.41,
- "text": "genocide."
- },
- {
- "id": 2412,
- "start": 960.41,
- "end": 960.58,
- "text": "An"
- },
- {
- "id": 2413,
- "start": 960.58,
- "end": 961.06,
- "text": "ongoing"
- },
- {
- "id": 2414,
- "start": 961.06,
- "end": 961.74,
- "text": "conversation"
- },
- {
- "id": 2415,
- "start": 961.74,
- "end": 961.97,
- "text": "means"
- },
- {
- "id": 2416,
- "start": 961.97,
- "end": 962.26,
- "text": "what"
- },
- {
- "id": 2417,
- "start": 962.26,
- "end": 962.79,
- "text": "exactly"
- },
- {
- "id": 2418,
- "start": 962.525,
- "end": 963.2149999999999,
- "text": "…"
- },
- {
- "id": 2419,
- "start": 962.79,
- "end": 963.64,
- "text": "about"
- },
- {
- "id": 2420,
- "start": 963.64,
- "end": 963.71,
- "text": "a"
- },
- {
- "id": 2421,
- "start": 963.71,
- "end": 964.21,
- "text": "standard"
- },
- {
- "id": 2422,
- "start": 964.21,
- "end": 964.35,
- "text": "for"
- },
- {
- "id": 2423,
- "start": 964.35,
- "end": 964.87,
- "text": "success"
- },
- {
- "id": 2424,
- "start": 966.2799999999993,
- "end": 966.7749999999996,
- "text": "here?"
- },
- {
- "id": 2425,
- "start": 968.21,
- "end": 968.68,
- "text": "This"
- },
- {
- "id": 2426,
- "start": 968.68,
- "end": 968.87,
- "text": "is"
- },
- {
- "id": 2427,
- "start": 968.87,
- "end": 968.96,
- "text": "the"
- },
- {
- "id": 2428,
- "start": 968.96,
- "end": 969.22,
- "text": "number"
- },
- {
- "id": 2429,
- "start": 969.22,
- "end": 969.38,
- "text": "one"
- },
- {
- "id": 2430,
- "start": 969.38,
- "end": 969.72,
- "text": "priority"
- },
- {
- "id": 2431,
- "start": 969.72,
- "end": 969.88,
- "text": "for"
- },
- {
- "id": 2432,
- "start": 969.88,
- "end": 969.97,
- "text": "the"
- },
- {
- "id": 2433,
- "start": 969.97,
- "end": 970.57,
- "text": "company."
- },
- {
- "id": 2434,
- "start": 970.57,
- "end": 970.96,
- "text": "Mark"
- },
- {
- "id": 2435,
- "start": 970.96,
- "end": 971.16,
- "text": "has"
- },
- {
- "id": 2436,
- "start": 971.16,
- "end": 971.35,
- "text": "been"
- },
- {
- "id": 2437,
- "start": 971.35,
- "end": 971.63,
- "text": "out"
- },
- {
- "id": 2438,
- "start": 971.5799999999999,
- "end": 971.8375000000001,
- "text": "there;"
- },
- {
- "id": 2439,
- "start": 971.81,
- "end": 972.0450000000001,
- "text": "Sheryl"
- },
- {
- "id": 2440,
- "start": 972.04,
- "end": 972.2525,
- "text": "[Sandberg]"
- },
- {
- "id": 2441,
- "start": 972.27,
- "end": 972.46,
- "text": "is"
- },
- {
- "id": 2442,
- "start": 972.46,
- "end": 972.75,
- "text": "out"
- },
- {
- "id": 2443,
- "start": 972.75,
- "end": 973.1,
- "text": "there."
- },
- {
- "id": 2444,
- "start": 973.1,
- "end": 973.22,
- "text": "You’re"
- },
- {
- "id": 2445,
- "start": 973.22,
- "end": 973.54,
- "text": "talking"
- },
- {
- "id": 2446,
- "start": 973.54,
- "end": 973.6,
- "text": "to"
- },
- {
- "id": 2447,
- "start": 973.6,
- "end": 974.05,
- "text": "me"
- },
- {
- "id": 2448,
- "start": 974.05,
- "end": 974.15,
- "text": "and"
- },
- {
- "id": 2449,
- "start": 974.15,
- "end": 974.2,
- "text": "a"
- },
- {
- "id": 2450,
- "start": 974.2,
- "end": 974.43,
- "text": "bunch"
- },
- {
- "id": 2451,
- "start": 974.43,
- "end": 974.52,
- "text": "of"
- },
- {
- "id": 2452,
- "start": 974.52,
- "end": 974.66,
- "text": "the"
- },
- {
- "id": 2453,
- "start": 974.66,
- "end": 974.98,
- "text": "other"
- },
- {
- "id": 2454,
- "start": 974.98,
- "end": 975.4,
- "text": "leaders"
- },
- {
- "id": 2455,
- "start": 975.4,
- "end": 975.52,
- "text": "that"
- },
- {
- "id": 2456,
- "start": 975.52,
- "end": 975.64,
- "text": "are"
- },
- {
- "id": 2457,
- "start": 975.64,
- "end": 976.05,
- "text": "working"
- },
- {
- "id": 2458,
- "start": 976.05,
- "end": 976.26,
- "text": "on"
- },
- {
- "id": 2459,
- "start": 976.26,
- "end": 976.63,
- "text": "this,"
- },
- {
- "id": 2460,
- "start": 976.63,
- "end": 976.81,
- "text": "and"
- },
- {
- "id": 2461,
- "start": 976.81,
- "end": 976.87,
- "text": "I"
- },
- {
- "id": 2462,
- "start": 976.87,
- "end": 977.903,
- "text": "think"
- },
- {
- "id": 2463,
- "start": 977.903,
- "end": 978.153,
- "text": "that’s"
- },
- {
- "id": 2464,
- "start": 978.153,
- "end": 978.303,
- "text": "what"
- },
- {
- "id": 2465,
- "start": 978.303,
- "end": 978.453,
- "text": "we"
- },
- {
- "id": 2466,
- "start": 978.453,
- "end": 978.853,
- "text": "mean"
- },
- {
- "id": 2467,
- "start": 978.853,
- "end": 979.033,
- "text": "by"
- },
- {
- "id": 2468,
- "start": 979.033,
- "end": 979.413,
- "text": "having"
- },
- {
- "id": 2469,
- "start": 979.413,
- "end": 979.483,
- "text": "an"
- },
- {
- "id": 2470,
- "start": 979.483,
- "end": 979.923,
- "text": "ongoing"
- },
- {
- "id": 2471,
- "start": 979.923,
- "end": 980.563,
- "text": "conversation."
- },
- {
- "id": 2472,
- "start": 980.563,
- "end": 980.703,
- "text": "This"
- },
- {
- "id": 2473,
- "start": 980.703,
- "end": 980.793,
- "text": "is"
- },
- {
- "id": 2474,
- "start": 980.793,
- "end": 981.083,
- "text": "something"
- },
- {
- "id": 2475,
- "start": 981.083,
- "end": 981.243,
- "text": "that"
- },
- {
- "id": 2476,
- "start": 981.243,
- "end": 981.353,
- "text": "we"
- },
- {
- "id": 2477,
- "start": 981.353,
- "end": 981.593,
- "text": "need"
- },
- {
- "id": 2478,
- "start": 981.9829999999998,
- "end": 982.1579999999998,
- "text": "to—as"
- },
- {
- "id": 2479,
- "start": 982.613,
- "end": 982.723,
- "text": "you"
- },
- {
- "id": 2480,
- "start": 982.723,
- "end": 983.013,
- "text": "said,"
- },
- {
- "id": 2481,
- "start": 983.013,
- "end": 983.193,
- "text": "this"
- },
- {
- "id": 2482,
- "start": 983.193,
- "end": 983.363,
- "text": "is"
- },
- {
- "id": 2483,
- "start": 983.6480000000001,
- "end": 983.8080000000002,
- "text": "serious;"
- },
- {
- "id": 2484,
- "start": 984.103,
- "end": 984.253,
- "text": "this"
- },
- {
- "id": 2485,
- "start": 984.253,
- "end": 984.363,
- "text": "is"
- },
- {
- "id": 2486,
- "start": 984.363,
- "end": 985.213,
- "text": "consequential."
- },
- {
- "id": 2487,
- "start": 985.213,
- "end": 985.323,
- "text": "We"
- },
- {
- "id": 2488,
- "start": 985.323,
- "end": 985.573,
- "text": "take"
- },
- {
- "id": 2489,
- "start": 985.573,
- "end": 985.733,
- "text": "this"
- },
- {
- "id": 2490,
- "start": 985.733,
- "end": 986.643,
- "text": "extremely"
- },
- {
- "id": 2491,
- "start": 986.3829999999998,
- "end": 986.908,
- "text": "…"
- },
- {
- "id": 2492,
- "start": 987.033,
- "end": 987.173,
- "text": "We"
- },
- {
- "id": 2493,
- "start": 987.173,
- "end": 987.693,
- "text": "understand"
- },
- {
- "id": 2494,
- "start": 987.693,
- "end": 987.863,
- "text": "this"
- },
- {
- "id": 2495,
- "start": 987.863,
- "end": 988.923,
- "text": "responsibility,"
- },
- {
- "id": 2496,
- "start": 988.923,
- "end": 990.553,
- "text": "and"
- },
- {
- "id": 2497,
- "start": 990.553,
- "end": 991.013,
- "text": "it’s"
- },
- {
- "id": 2498,
- "start": 991.013,
- "end": 991.233,
- "text": "not"
- },
- {
- "id": 2499,
- "start": 991.233,
- "end": 991.583,
- "text": "going"
- },
- {
- "id": 2500,
- "start": 991.583,
- "end": 991.983,
- "text": "away"
- },
- {
- "id": 2501,
- "start": 991.983,
- "end": 993.053,
- "text": "tomorrow."
- },
- {
- "id": 2502,
- "start": 993.053,
- "end": 993.213,
- "text": "We"
- },
- {
- "id": 2503,
- "start": 993.213,
- "end": 993.363,
- "text": "can"
- },
- {
- "id": 2504,
- "start": 993.363,
- "end": 993.543,
- "text": "only"
- },
- {
- "id": 2505,
- "start": 993.543,
- "end": 993.703,
- "text": "do"
- },
- {
- "id": 2506,
- "start": 993.703,
- "end": 994.193,
- "text": "better."
- },
- {
- "id": 2507,
- "start": 994.193,
- "end": 994.373,
- "text": "We’ve"
- },
- {
- "id": 2508,
- "start": 994.373,
- "end": 994.533,
- "text": "done"
- },
- {
- "id": 2509,
- "start": 994.533,
- "end": 994.613,
- "text": "a"
- },
- {
- "id": 2510,
- "start": 994.613,
- "end": 994.893,
- "text": "lot,"
- },
- {
- "id": 2511,
- "start": 994.893,
- "end": 994.993,
- "text": "and"
- },
- {
- "id": 2512,
- "start": 994.993,
- "end": 995.163,
- "text": "there’s"
- },
- {
- "id": 2513,
- "start": 995.163,
- "end": 995.303,
- "text": "so"
- },
- {
- "id": 2514,
- "start": 995.303,
- "end": 995.503,
- "text": "much"
- },
- {
- "id": 2515,
- "start": 995.503,
- "end": 995.693,
- "text": "more"
- },
- {
- "id": 2516,
- "start": 995.693,
- "end": 995.833,
- "text": "that"
- },
- {
- "id": 2517,
- "start": 995.833,
- "end": 995.943,
- "text": "we"
- },
- {
- "id": 2518,
- "start": 995.943,
- "end": 996.113,
- "text": "need"
- },
- {
- "id": 2519,
- "start": 996.113,
- "end": 996.213,
- "text": "to"
- },
- {
- "id": 2520,
- "start": 996.7180000000001,
- "end": 997.153,
- "text": "do."
- },
- {
- "id": 2521,
- "start": 997.323,
- "end": 998.093,
- "text": "Legally,"
- },
- {
- "id": 2522,
- "start": 998.093,
- "end": 998.253,
- "text": "is"
- },
- {
- "id": 2523,
- "start": 998.253,
- "end": 998.433,
- "text": "there"
- },
- {
- "id": 2524,
- "start": 998.433,
- "end": 998.823,
- "text": "anything"
- },
- {
- "id": 2525,
- "start": 998.913,
- "end": 999.2490000000001,
- "text": "you’d"
- },
- {
- "id": 2526,
- "start": 999.393,
- "end": 999.6750000000001,
- "text": "propose,"
- },
- {
- "id": 2527,
- "start": 999.873,
- "end": 1000.101,
- "text": "any"
- },
- {
- "id": 2528,
- "start": 1000.3530000000001,
- "end": 1000.5270000000002,
- "text": "way"
- },
- {
- "id": 2529,
- "start": 1000.833,
- "end": 1000.953,
- "text": "to"
- },
- {
- "id": 2530,
- "start": 1000.953,
- "end": 1001.163,
- "text": "kind"
- },
- {
- "id": 2531,
- "start": 1001.163,
- "end": 1001.273,
- "text": "of"
- },
- {
- "id": 2532,
- "start": 1001.273,
- "end": 1001.643,
- "text": "hold"
- },
- {
- "id": 2533,
- "start": 1001.643,
- "end": 1001.803,
- "text": "you"
- },
- {
- "id": 2534,
- "start": 1001.803,
- "end": 1002.003,
- "text": "to"
- },
- {
- "id": 2535,
- "start": 1002.003,
- "end": 1002.073,
- "text": "a"
- },
- {
- "id": 2536,
- "start": 1002.073,
- "end": 1002.743,
- "text": "standard"
- },
- {
- "id": 2537,
- "start": 1002.743,
- "end": 1003.133,
- "text": "or"
- },
- {
- "id": 2538,
- "start": 1003.133,
- "end": 1003.653,
- "text": "hold"
- },
- {
- "id": 2539,
- "start": 1003.653,
- "end": 1003.873,
- "text": "you"
- },
- {
- "id": 2540,
- "start": 1003.873,
- "end": 1004.613,
- "text": "to"
- },
- {
- "id": 2541,
- "start": 1004.613,
- "end": 1004.883,
- "text": "being"
- },
- {
- "id": 2542,
- "start": 1004.883,
- "end": 1006.033,
- "text": "responsible?"
- },
- {
- "id": 2543,
- "start": 1005.743,
- "end": 1006.393,
- "text": "Anything"
- },
- {
- "id": 2544,
- "start": 1006.148,
- "end": 1006.703,
- "text": "you’d"
- },
- {
- "id": 2545,
- "start": 1006.553,
- "end": 1007.013,
- "text": "propose"
- },
- {
- "id": 2546,
- "start": 1007.013,
- "end": 1007.123,
- "text": "on"
- },
- {
- "id": 2547,
- "start": 1007.123,
- "end": 1007.333,
- "text": "that"
- },
- {
- "id": 2548,
- "start": 1007.333,
- "end": 1008.153,
- "text": "level?"
- },
- {
- "id": 2549,
- "start": 1008.153,
- "end": 1008.273,
- "text": "I"
- },
- {
- "id": 2550,
- "start": 1008.273,
- "end": 1008.543,
- "text": "think"
- },
- {
- "id": 2551,
- "start": 1008.543,
- "end": 1008.703,
- "text": "we"
- },
- {
- "id": 2552,
- "start": 1008.703,
- "end": 1009.003,
- "text": "are"
- },
- {
- "id": 2553,
- "start": 1009.003,
- "end": 1009.343,
- "text": "open"
- },
- {
- "id": 2554,
- "start": 1009.343,
- "end": 1009.503,
- "text": "to"
- },
- {
- "id": 2555,
- "start": 1009.7429999999999,
- "end": 1009.8679999999999,
- "text": "that."
- },
- {
- "id": 2556,
- "start": 1010.143,
- "end": 1010.233,
- "text": "We"
- },
- {
- "id": 2557,
- "start": 1010.233,
- "end": 1010.423,
- "text": "don’t"
- },
- {
- "id": 2558,
- "start": 1010.423,
- "end": 1010.583,
- "text": "have"
- },
- {
- "id": 2559,
- "start": 1010.583,
- "end": 1010.673,
- "text": "an"
- },
- {
- "id": 2560,
- "start": 1010.8929999999999,
- "end": 1011.018,
- "text": "answer,"
- },
- {
- "id": 2561,
- "start": 1011.203,
- "end": 1011.363,
- "text": "and"
- },
- {
- "id": 2562,
- "start": 1011.363,
- "end": 1011.463,
- "text": "we"
- },
- {
- "id": 2563,
- "start": 1011.463,
- "end": 1011.663,
- "text": "are"
- },
- {
- "id": 2564,
- "start": 1011.663,
- "end": 1012.123,
- "text": "working"
- },
- {
- "id": 2565,
- "start": 1012.123,
- "end": 1012.843,
- "text": "with"
- },
- {
- "id": 2566,
- "start": 1012.843,
- "end": 1013.513,
- "text": "governments,"
- },
- {
- "id": 2567,
- "start": 1013.513,
- "end": 1014.373,
- "text": "companies,"
- },
- {
- "id": 2568,
- "start": 1014.373,
- "end": 1014.603,
- "text": "other"
- },
- {
- "id": 2569,
- "start": 1014.603,
- "end": 1014.843,
- "text": "people"
- },
- {
- "id": 2570,
- "start": 1014.723,
- "end": 1014.923,
- "text": "in"
- },
- {
- "id": 2571,
- "start": 1014.843,
- "end": 1015.003,
- "text": "our"
- },
- {
- "id": 2572,
- "start": 1015.003,
- "end": 1015.463,
- "text": "industry"
- },
- {
- "id": 2573,
- "start": 1015.463,
- "end": 1015.613,
- "text": "to"
- },
- {
- "id": 2574,
- "start": 1015.613,
- "end": 1015.953,
- "text": "figure"
- },
- {
- "id": 2575,
- "start": 1015.953,
- "end": 1016.133,
- "text": "out"
- },
- {
- "id": 2576,
- "start": 1016.133,
- "end": 1016.353,
- "text": "what"
- },
- {
- "id": 2577,
- "start": 1016.353,
- "end": 1016.543,
- "text": "is"
- },
- {
- "id": 2578,
- "start": 1016.543,
- "end": 1016.663,
- "text": "the"
- },
- {
- "id": 2579,
- "start": 1016.663,
- "end": 1016.913,
- "text": "right"
- },
- {
- "id": 2580,
- "start": 1017.108,
- "end": 1017.328,
- "text": "standard,"
- },
- {
- "id": 2581,
- "start": 1017.553,
- "end": 1017.743,
- "text": "what"
- },
- {
- "id": 2582,
- "start": 1017.743,
- "end": 1017.853,
- "text": "are"
- },
- {
- "id": 2583,
- "start": 1017.853,
- "end": 1017.983,
- "text": "the"
- },
- {
- "id": 2584,
- "start": 1017.983,
- "end": 1019.793,
- "text": "right"
- },
- {
- "id": 2585,
- "start": 1019.793,
- "end": 1020.213,
- "text": "forms"
- },
- {
- "id": 2586,
- "start": 1020.213,
- "end": 1020.343,
- "text": "of"
- },
- {
- "id": 2587,
- "start": 1022.6829999999991,
- "end": 1022.8580000000002,
- "text": "accountability."
- },
- {
- "id": 2588,
- "start": 1025.153,
- "end": 1025.373,
- "text": "In"
- },
- {
- "id": 2589,
- "start": 1025.373,
- "end": 1025.793,
- "text": "terms"
- },
- {
- "id": 2590,
- "start": 1025.793,
- "end": 1026.943,
- "text": "of"
- },
- {
- "id": 2591,
- "start": 1026.943,
- "end": 1027.253,
- "text": "these"
- },
- {
- "id": 2592,
- "start": 1027.253,
- "end": 1027.793,
- "text": "midterms"
- },
- {
- "id": 2593,
- "start": 1027.793,
- "end": 1027.913,
- "text": "that"
- },
- {
- "id": 2594,
- "start": 1027.888,
- "end": 1028.118,
- "text": "are"
- },
- {
- "id": 2595,
- "start": 1027.983,
- "end": 1028.323,
- "text": "coming"
- },
- {
- "id": 2596,
- "start": 1028.323,
- "end": 1028.813,
- "text": "up,"
- },
- {
- "id": 2597,
- "start": 1028.813,
- "end": 1029.053,
- "text": "how"
- },
- {
- "id": 2598,
- "start": 1029.053,
- "end": 1029.673,
- "text": "confident"
- },
- {
- "id": 2599,
- "start": 1029.673,
- "end": 1029.803,
- "text": "are"
- },
- {
- "id": 2600,
- "start": 1029.803,
- "end": 1030.423,
- "text": "you"
- },
- {
- "id": 2601,
- "start": 1030.423,
- "end": 1031.353,
- "text": "that"
- },
- {
- "id": 2602,
- "start": 1031.353,
- "end": 1031.633,
- "text": "you’ve"
- },
- {
- "id": 2603,
- "start": 1031.633,
- "end": 1031.853,
- "text": "really"
- },
- {
- "id": 2604,
- "start": 1031.853,
- "end": 1032.173,
- "text": "turned"
- },
- {
- "id": 2605,
- "start": 1032.173,
- "end": 1032.453,
- "text": "things"
- },
- {
- "id": 2606,
- "start": 1032.453,
- "end": 1032.793,
- "text": "around"
- },
- {
- "id": 2607,
- "start": 1032.793,
- "end": 1033.063,
- "text": "enough"
- },
- {
- "id": 2608,
- "start": 1033.108,
- "end": 1033.4830000000002,
- "text": "to"
- },
- {
- "id": 2609,
- "start": 1033.423,
- "end": 1033.903,
- "text": "say"
- },
- {
- "id": 2610,
- "start": 1033.903,
- "end": 1034.653,
- "text": "confidently"
- },
- {
- "id": 2611,
- "start": 1034.653,
- "end": 1034.963,
- "text": "that"
- },
- {
- "id": 2612,
- "start": 1035.6696666666664,
- "end": 1035.923,
- "text": "Facebook"
- },
- {
- "id": 2613,
- "start": 1036.6863333333329,
- "end": 1036.883,
- "text": "is"
- },
- {
- "id": 2614,
- "start": 1037.703,
- "end": 1037.843,
- "text": "on"
- },
- {
- "id": 2615,
- "start": 1037.843,
- "end": 1038.163,
- "text": "top"
- },
- {
- "id": 2616,
- "start": 1038.163,
- "end": 1038.343,
- "text": "of"
- },
- {
- "id": 2617,
- "start": 1038.343,
- "end": 1039.043,
- "text": "the"
- },
- {
- "id": 2618,
- "start": 1039.043,
- "end": 1039.873,
- "text": "misinformation"
- },
- {
- "id": 2619,
- "start": 1039.873,
- "end": 1040.403,
- "text": "problem,"
- },
- {
- "id": 2620,
- "start": 1040.403,
- "end": 1040.483,
- "text": "the"
- },
- {
- "id": 2621,
- "start": 1040.483,
- "end": 1041.253,
- "text": "disinformation"
- },
- {
- "id": 2622,
- "start": 1041.253,
- "end": 1041.643,
- "text": "problem,"
- },
- {
- "id": 2623,
- "start": 1041.643,
- "end": 1041.823,
- "text": "any"
- },
- {
- "id": 2624,
- "start": 1041.823,
- "end": 1041.883,
- "text": "of"
- },
- {
- "id": 2625,
- "start": 1041.883,
- "end": 1041.973,
- "text": "the"
- },
- {
- "id": 2626,
- "start": 1041.973,
- "end": 1042.393,
- "text": "problems"
- },
- {
- "id": 2627,
- "start": 1042.393,
- "end": 1042.543,
- "text": "with"
- },
- {
- "id": 2628,
- "start": 1042.543,
- "end": 1042.903,
- "text": "election"
- },
- {
- "id": 2629,
- "start": 1043.5379999999998,
- "end": 1043.7830000000001,
- "text": "integrity?"
- },
- {
- "id": 2630,
- "start": 1044.533,
- "end": 1044.663,
- "text": "You’re"
- },
- {
- "id": 2631,
- "start": 1044.663,
- "end": 1044.883,
- "text": "asking"
- },
- {
- "id": 2632,
- "start": 1044.883,
- "end": 1045.043,
- "text": "about"
- },
- {
- "id": 2633,
- "start": 1045.043,
- "end": 1045.863,
- "text": "midterm"
- },
- {
- "id": 2634,
- "start": 1045.863,
- "end": 1046.563,
- "text": "readiness,"
- },
- {
- "id": 2635,
- "start": 1046.563,
- "end": 1046.793,
- "text": "and"
- },
- {
- "id": 2636,
- "start": 1046.793,
- "end": 1047.033,
- "text": "Mark"
- },
- {
- "id": 2637,
- "start": 1047.033,
- "end": 1047.353,
- "text": "actually"
- },
- {
- "id": 2638,
- "start": 1047.353,
- "end": 1047.543,
- "text": "just"
- },
- {
- "id": 2639,
- "start": 1047.543,
- "end": 1048.023,
- "text": "published"
- },
- {
- "id": 2640,
- "start": 1048.023,
- "end": 1048.213,
- "text": "an"
- },
- {
- "id": 2641,
- "start": 1048.3629999999998,
- "end": 1048.6380000000001,
- "text": "op-ed"
- },
- {
- "id": 2642,
- "start": 1048.703,
- "end": 1049.063,
- "text": "in"
- },
- {
- "id": 2643,
- "start": 1049.063,
- "end": 1049.143,
- "text": "The"
- },
- {
- "id": 2644,
- "start": 1049.143,
- "end": 1049.603,
- "text": "Washington"
- },
- {
- "id": 2645,
- "start": 1049.603,
- "end": 1049.883,
- "text": "Post"
- },
- {
- "id": 2646,
- "start": 1049.883,
- "end": 1050.383,
- "text": "yesterday"
- },
- {
- "id": 2647,
- "start": 1050.383,
- "end": 1050.653,
- "text": "about"
- },
- {
- "id": 2648,
- "start": 1050.653,
- "end": 1050.773,
- "text": "our"
- },
- {
- "id": 2649,
- "start": 1050.773,
- "end": 1051.253,
- "text": "readiness"
- },
- {
- "id": 2650,
- "start": 1051.253,
- "end": 1051.373,
- "text": "for"
- },
- {
- "id": 2651,
- "start": 1051.373,
- "end": 1051.463,
- "text": "the"
- },
- {
- "id": 2652,
- "start": 1052.098,
- "end": 1052.198,
- "text": "midterms."
- },
- {
- "id": 2653,
- "start": 1052.823,
- "end": 1052.933,
- "text": "We"
- },
- {
- "id": 2654,
- "start": 1052.933,
- "end": 1053.173,
- "text": "feel"
- },
- {
- "id": 2655,
- "start": 1053.173,
- "end": 1055.563,
- "text": "ready."
- },
- {
- "id": 2656,
- "start": 1055.563,
- "end": 1056.753,
- "text": "Since"
- },
- {
- "id": 2657,
- "start": 1056.753,
- "end": 1057.203,
- "text": "we"
- },
- {
- "id": 2658,
- "start": 1057.203,
- "end": 1057.563,
- "text": "started"
- },
- {
- "id": 2659,
- "start": 1057.563,
- "end": 1057.693,
- "text": "this"
- },
- {
- "id": 2660,
- "start": 1057.693,
- "end": 1057.893,
- "text": "whole"
- },
- {
- "id": 2661,
- "start": 1057.893,
- "end": 1058.483,
- "text": "initiative,"
- },
- {
- "id": 2662,
- "start": 1058.483,
- "end": 1058.693,
- "text": "there’s"
- },
- {
- "id": 2663,
- "start": 1058.693,
- "end": 1058.823,
- "text": "been"
- },
- {
- "id": 2664,
- "start": 1058.823,
- "end": 1058.903,
- "text": "a"
- },
- {
- "id": 2665,
- "start": 1058.9830000000002,
- "end": 1059.078,
- "text": "ton"
- },
- {
- "id": 2666,
- "start": 1059.143,
- "end": 1059.253,
- "text": "of"
- },
- {
- "id": 2667,
- "start": 1059.253,
- "end": 1059.483,
- "text": "work"
- },
- {
- "id": 2668,
- "start": 1059.483,
- "end": 1059.623,
- "text": "that"
- },
- {
- "id": 2669,
- "start": 1059.623,
- "end": 1059.793,
- "text": "we’ve"
- },
- {
- "id": 2670,
- "start": 1059.793,
- "end": 1059.993,
- "text": "done"
- },
- {
- "id": 2671,
- "start": 1059.993,
- "end": 1060.293,
- "text": "here"
- },
- {
- "id": 2672,
- "start": 1060.293,
- "end": 1061.153,
- "text": "around"
- },
- {
- "id": 2673,
- "start": 1061.153,
- "end": 1061.483,
- "text": "fighting"
- },
- {
- "id": 2674,
- "start": 1061.483,
- "end": 1061.673,
- "text": "fake"
- },
- {
- "id": 2675,
- "start": 1061.673,
- "end": 1062.203,
- "text": "accounts,"
- },
- {
- "id": 2676,
- "start": 1062.203,
- "end": 1063.143,
- "text": "misinformation."
- },
- {
- "id": 2677,
- "start": 1063.143,
- "end": 1063.283,
- "text": "We’ve"
- },
- {
- "id": 2678,
- "start": 1063.283,
- "end": 1063.443,
- "text": "been"
- },
- {
- "id": 2679,
- "start": 1063.9129999999998,
- "end": 1064.173,
- "text": "practicing"
- },
- {
- "id": 2680,
- "start": 1064.543,
- "end": 1064.903,
- "text": "and"
- },
- {
- "id": 2681,
- "start": 1064.903,
- "end": 1065.183,
- "text": "running"
- },
- {
- "id": 2682,
- "start": 1065.183,
- "end": 1065.303,
- "text": "our"
- },
- {
- "id": 2683,
- "start": 1065.303,
- "end": 1065.953,
- "text": "drills"
- },
- {
- "id": 2684,
- "start": 1065.713,
- "end": 1066.1680000000001,
- "text": "in"
- },
- {
- "id": 2685,
- "start": 1066.123,
- "end": 1066.383,
- "text": "all"
- },
- {
- "id": 2686,
- "start": 1066.383,
- "end": 1066.463,
- "text": "of"
- },
- {
- "id": 2687,
- "start": 1066.463,
- "end": 1066.593,
- "text": "the"
- },
- {
- "id": 2688,
- "start": 1066.593,
- "end": 1067.013,
- "text": "upcoming"
- },
- {
- "id": 2689,
- "start": 1067.013,
- "end": 1067.643,
- "text": "primaries"
- },
- {
- "id": 2690,
- "start": 1067.643,
- "end": 1068.063,
- "text": "leading"
- },
- {
- "id": 2691,
- "start": 1068.063,
- "end": 1068.213,
- "text": "up"
- },
- {
- "id": 2692,
- "start": 1068.213,
- "end": 1068.393,
- "text": "to"
- },
- {
- "id": 2693,
- "start": 1068.393,
- "end": 1068.803,
- "text": "the"
- },
- {
- "id": 2694,
- "start": 1069.2430000000004,
- "end": 1069.493,
- "text": "midterms."
- },
- {
- "id": 2695,
- "start": 1070.093,
- "end": 1070.183,
- "text": "There"
- },
- {
- "id": 2696,
- "start": 1070.183,
- "end": 1070.283,
- "text": "have"
- },
- {
- "id": 2697,
- "start": 1070.283,
- "end": 1070.543,
- "text": "also"
- },
- {
- "id": 2698,
- "start": 1070.543,
- "end": 1070.733,
- "text": "been"
- },
- {
- "id": 2699,
- "start": 1070.733,
- "end": 1071.103,
- "text": "several"
- },
- {
- "id": 2700,
- "start": 1071.103,
- "end": 1071.643,
- "text": "elections"
- },
- {
- "id": 2701,
- "start": 1071.643,
- "end": 1071.823,
- "text": "in"
- },
- {
- "id": 2702,
- "start": 1071.823,
- "end": 1072.083,
- "text": "other"
- },
- {
- "id": 2703,
- "start": 1072.083,
- "end": 1072.843,
- "text": "countries"
- },
- {
- "id": 2704,
- "start": 1072.843,
- "end": 1073.063,
- "text": "that"
- },
- {
- "id": 2705,
- "start": 1073.063,
- "end": 1074.463,
- "text": "we’ve"
- },
- {
- "id": 2706,
- "start": 1074.463,
- "end": 1074.903,
- "text": "been"
- },
- {
- "id": 2707,
- "start": 1074.903,
- "end": 1075.263,
- "text": "working"
- },
- {
- "id": 2708,
- "start": 1075.263,
- "end": 1075.373,
- "text": "on"
- },
- {
- "id": 2709,
- "start": 1075.373,
- "end": 1076.193,
- "text": "defending,"
- },
- {
- "id": 2710,
- "start": 1076.193,
- "end": 1077.543,
- "text": "so"
- },
- {
- "id": 2711,
- "start": 1077.543,
- "end": 1077.723,
- "text": "I"
- },
- {
- "id": 2712,
- "start": 1077.723,
- "end": 1077.933,
- "text": "feel"
- },
- {
- "id": 2713,
- "start": 1077.933,
- "end": 1078.123,
- "text": "like"
- },
- {
- "id": 2714,
- "start": 1078.123,
- "end": 1078.703,
- "text": "we"
- },
- {
- "id": 2715,
- "start": 1078.703,
- "end": 1078.823,
- "text": "are"
- },
- {
- "id": 2716,
- "start": 1078.823,
- "end": 1079.623,
- "text": "ready."
- },
- {
- "id": 2717,
- "start": 1079.623,
- "end": 1081.173,
- "text": "And"
- },
- {
- "id": 2718,
- "start": 1081.173,
- "end": 1081.473,
- "text": "what"
- },
- {
- "id": 2719,
- "start": 1081.473,
- "end": 1082.133,
- "text": "happens"
- },
- {
- "id": 2720,
- "start": 1082.133,
- "end": 1082.343,
- "text": "if"
- },
- {
- "id": 2721,
- "start": 1082.343,
- "end": 1082.703,
- "text": "something"
- },
- {
- "id": 2722,
- "start": 1082.703,
- "end": 1082.933,
- "text": "goes"
- },
- {
- "id": 2723,
- "start": 1082.933,
- "end": 1084.323,
- "text": "wrong?"
- },
- {
- "id": 2724,
- "start": 1084.323,
- "end": 1084.523,
- "text": "It’s"
- },
- {
- "id": 2725,
- "start": 1084.523,
- "end": 1084.583,
- "text": "a"
- },
- {
- "id": 2726,
- "start": 1084.583,
- "end": 1085.293,
- "text": "hypothetical,"
- },
- {
- "id": 2727,
- "start": 1085.293,
- "end": 1085.433,
- "text": "but"
- },
- {
- "id": 2728,
- "start": 1085.433,
- "end": 1085.553,
- "text": "I’m"
- },
- {
- "id": 2729,
- "start": 1085.933,
- "end": 1086.113,
- "text": "curious."
- },
- {
- "id": 2730,
- "start": 1086.433,
- "end": 1086.673,
- "text": "If"
- },
- {
- "id": 2731,
- "start": 1086.673,
- "end": 1086.773,
- "text": "the"
- },
- {
- "id": 2732,
- "start": 1086.773,
- "end": 1087.183,
- "text": "election"
- },
- {
- "id": 2733,
- "start": 1087.183,
- "end": 1087.623,
- "text": "doesn’t"
- },
- {
- "id": 2734,
- "start": 1087.623,
- "end": 1087.863,
- "text": "go"
- },
- {
- "id": 2735,
- "start": 1087.863,
- "end": 1088.213,
- "text": "well,"
- },
- {
- "id": 2736,
- "start": 1088.213,
- "end": 1088.483,
- "text": "if"
- },
- {
- "id": 2737,
- "start": 1088.483,
- "end": 1089.143,
- "text": "there’s"
- },
- {
- "id": 2738,
- "start": 1089.143,
- "end": 1089.793,
- "text": "information"
- },
- {
- "id": 2739,
- "start": 1089.793,
- "end": 1090.033,
- "text": "that’s"
- },
- {
- "id": 2740,
- "start": 1090.033,
- "end": 1090.913,
- "text": "found,"
- },
- {
- "id": 2741,
- "start": 1090.913,
- "end": 1092.243,
- "text": "what"
- },
- {
- "id": 2742,
- "start": 1092.243,
- "end": 1092.343,
- "text": "are"
- },
- {
- "id": 2743,
- "start": 1092.343,
- "end": 1092.523,
- "text": "we"
- },
- {
- "id": 2744,
- "start": 1092.523,
- "end": 1092.683,
- "text": "to"
- },
- {
- "id": 2745,
- "start": 1092.683,
- "end": 1093.333,
- "text": "expect"
- },
- {
- "id": 2746,
- "start": 1093.333,
- "end": 1093.643,
- "text": "from"
- },
- {
- "id": 2747,
- "start": 1093.643,
- "end": 1094.243,
- "text": "Facebook"
- },
- {
- "id": 2748,
- "start": 1094.243,
- "end": 1094.383,
- "text": "if"
- },
- {
- "id": 2749,
- "start": 1094.383,
- "end": 1095.003,
- "text": "something"
- },
- {
- "id": 2750,
- "start": 1095.003,
- "end": 1095.373,
- "text": "doesn’t"
- },
- {
- "id": 2751,
- "start": 1095.373,
- "end": 1095.593,
- "text": "go"
- },
- {
- "id": 2752,
- "start": 1095.593,
- "end": 1096.403,
- "text": "right?"
- },
- {
- "id": 2753,
- "start": 1096.403,
- "end": 1098.04,
- "text": "And"
- },
- {
- "id": 2754,
- "start": 1098.04,
- "end": 1098.35,
- "text": "in"
- },
- {
- "id": 2755,
- "start": 1098.35,
- "end": 1098.56,
- "text": "what"
- },
- {
- "id": 2756,
- "start": 1098.56,
- "end": 1098.83,
- "text": "way"
- },
- {
- "id": 2757,
- "start": 1098.83,
- "end": 1098.98,
- "text": "is"
- },
- {
- "id": 2758,
- "start": 1099.3600000000001,
- "end": 1099.5533333333335,
- "text": "there"
- },
- {
- "id": 2759,
- "start": 1099.89,
- "end": 1100.1266666666668,
- "text": "to"
- },
- {
- "id": 2760,
- "start": 1100.42,
- "end": 1100.7,
- "text": "have,"
- },
- {
- "id": 2761,
- "start": 1100.7,
- "end": 1101.15,
- "text": "again,"
- },
- {
- "id": 2762,
- "start": 1101.15,
- "end": 1102.43,
- "text": "accountability"
- },
- {
- "id": 2763,
- "start": 1102.43,
- "end": 1103.05,
- "text": "for"
- },
- {
- "id": 2764,
- "start": 1103.05,
- "end": 1103.43,
- "text": "something"
- },
- {
- "id": 2765,
- "start": 1103.43,
- "end": 1103.65,
- "text": "going"
- },
- {
- "id": 2766,
- "start": 1104.5050000000003,
- "end": 1104.7799999999997,
- "text": "wrong?"
- },
- {
- "id": 2767,
- "start": 1105.58,
- "end": 1105.91,
- "text": "We"
- },
- {
- "id": 2768,
- "start": 1105.91,
- "end": 1106.26,
- "text": "don’t"
- },
- {
- "id": 2769,
- "start": 1106.26,
- "end": 1106.37,
- "text": "know"
- },
- {
- "id": 2770,
- "start": 1106.37,
- "end": 1106.49,
- "text": "what"
- },
- {
- "id": 2771,
- "start": 1106.49,
- "end": 1106.61,
- "text": "to"
- },
- {
- "id": 2772,
- "start": 1106.61,
- "end": 1107.06,
- "text": "expect"
- },
- {
- "id": 2773,
- "start": 1107.06,
- "end": 1107.2,
- "text": "for"
- },
- {
- "id": 2774,
- "start": 1107.2,
- "end": 1107.29,
- "text": "the"
- },
- {
- "id": 2775,
- "start": 1107.29,
- "end": 1107.89,
- "text": "midterm."
- },
- {
- "id": 2776,
- "start": 1107.89,
- "end": 1107.99,
- "text": "I"
- },
- {
- "id": 2777,
- "start": 1107.99,
- "end": 1108.27,
- "text": "think"
- },
- {
- "id": 2778,
- "start": 1108.27,
- "end": 1108.67,
- "text": "that’s"
- },
- {
- "id": 2779,
- "start": 1108.67,
- "end": 1108.93,
- "text": "why"
- },
- {
- "id": 2780,
- "start": 1108.93,
- "end": 1109.08,
- "text": "we"
- },
- {
- "id": 2781,
- "start": 1109.08,
- "end": 1109.31,
- "text": "put"
- },
- {
- "id": 2782,
- "start": 1109.1566666666665,
- "end": 1109.33,
- "text": "in"
- },
- {
- "id": 2783,
- "start": 1109.2333333333333,
- "end": 1109.35,
- "text": "place"
- },
- {
- "id": 2784,
- "start": 1109.31,
- "end": 1109.37,
- "text": "a"
- },
- {
- "id": 2785,
- "start": 1109.37,
- "end": 1110.26,
- "text": "lot"
- },
- {
- "id": 2786,
- "start": 1110.26,
- "end": 1110.34,
- "text": "of"
- },
- {
- "id": 2787,
- "start": 1110.34,
- "end": 1111.3,
- "text": "processes"
- },
- {
- "id": 2788,
- "start": 1111.3,
- "end": 1111.66,
- "text": "to"
- },
- {
- "id": 2789,
- "start": 1111.66,
- "end": 1111.94,
- "text": "try"
- },
- {
- "id": 2790,
- "start": 1111.94,
- "end": 1112.06,
- "text": "to"
- },
- {
- "id": 2791,
- "start": 1112.06,
- "end": 1112.37,
- "text": "react"
- },
- {
- "id": 2792,
- "start": 1112.56,
- "end": 1112.8,
- "text": "quickly."
- },
- {
- "id": 2793,
- "start": 1113.06,
- "end": 1113.23,
- "text": "Again,"
- },
- {
- "id": 2794,
- "start": 1113.56,
- "end": 1113.66,
- "text": "we"
- },
- {
- "id": 2795,
- "start": 1113.66,
- "end": 1113.87,
- "text": "can’t"
- },
- {
- "id": 2796,
- "start": 1113.87,
- "end": 1114.41,
- "text": "anticipate"
- },
- {
- "id": 2797,
- "start": 1114.41,
- "end": 1115.11,
- "text": "everything."
- },
- {
- "id": 2798,
- "start": 1115.11,
- "end": 1115.26,
- "text": "We"
- },
- {
- "id": 2799,
- "start": 1115.26,
- "end": 1115.61,
- "text": "have"
- },
- {
- "id": 2800,
- "start": 1115.61,
- "end": 1115.76,
- "text": "a"
- },
- {
- "id": 2801,
- "start": 1115.76,
- "end": 1116.32,
- "text": "dedicated"
- },
- {
- "id": 2802,
- "start": 1116.32,
- "end": 1116.6,
- "text": "war"
- },
- {
- "id": 2803,
- "start": 1116.6,
- "end": 1117.08,
- "text": "room"
- },
- {
- "id": 2804,
- "start": 1117.08,
- "end": 1117.53,
- "text": "of"
- },
- {
- "id": 2805,
- "start": 1117.53,
- "end": 1118.11,
- "text": "people"
- },
- {
- "id": 2806,
- "start": 1118.11,
- "end": 1118.38,
- "text": "that"
- },
- {
- "id": 2807,
- "start": 1118.38,
- "end": 1118.75,
- "text": "are"
- },
- {
- "id": 2808,
- "start": 1118.75,
- "end": 1119.05,
- "text": "working"
- },
- {
- "id": 2809,
- "start": 1119.05,
- "end": 1119.18,
- "text": "on"
- },
- {
- "id": 2810,
- "start": 1119.18,
- "end": 1119.5,
- "text": "safety"
- },
- {
- "id": 2811,
- "start": 1119.5,
- "end": 1119.61,
- "text": "and"
- },
- {
- "id": 2812,
- "start": 1119.61,
- "end": 1120.2,
- "text": "security"
- },
- {
- "id": 2813,
- "start": 1120.2,
- "end": 1120.35,
- "text": "that"
- },
- {
- "id": 2814,
- "start": 1120.35,
- "end": 1120.47,
- "text": "will"
- },
- {
- "id": 2815,
- "start": 1120.47,
- "end": 1120.62,
- "text": "be"
- },
- {
- "id": 2816,
- "start": 1120.62,
- "end": 1120.78,
- "text": "there"
- },
- {
- "id": 2817,
- "start": 1121.495,
- "end": 1121.74,
- "text": "24/7"
- },
- {
- "id": 2818,
- "start": 1122.37,
- "end": 1122.7,
- "text": "leading"
- },
- {
- "id": 2819,
- "start": 1122.7,
- "end": 1122.81,
- "text": "up"
- },
- {
- "id": 2820,
- "start": 1122.81,
- "end": 1122.92,
- "text": "to"
- },
- {
- "id": 2821,
- "start": 1122.92,
- "end": 1123.01,
- "text": "the"
- },
- {
- "id": 2822,
- "start": 1123.01,
- "end": 1123.5,
- "text": "midterm"
- },
- {
- "id": 2823,
- "start": 1123.5,
- "end": 1123.63,
- "text": "and"
- },
- {
- "id": 2824,
- "start": 1123.63,
- "end": 1124.2,
- "text": "after"
- },
- {
- "id": 2825,
- "start": 1124.2,
- "end": 1124.52,
- "text": "just"
- },
- {
- "id": 2826,
- "start": 1124.52,
- "end": 1124.61,
- "text": "to"
- },
- {
- "id": 2827,
- "start": 1124.61,
- "end": 1125.18,
- "text": "see"
- },
- {
- "id": 2828,
- "start": 1125.18,
- "end": 1125.42,
- "text": "all"
- },
- {
- "id": 2829,
- "start": 1125.42,
- "end": 1125.64,
- "text": "of"
- },
- {
- "id": 2830,
- "start": 1125.64,
- "end": 1125.8,
- "text": "the"
- },
- {
- "id": 2831,
- "start": 1125.8,
- "end": 1126.09,
- "text": "things"
- },
- {
- "id": 2832,
- "start": 1126.09,
- "end": 1126.2,
- "text": "that"
- },
- {
- "id": 2833,
- "start": 1126.2,
- "end": 1126.26,
- "text": "are"
- },
- {
- "id": 2834,
- "start": 1126.26,
- "end": 1126.61,
- "text": "going"
- },
- {
- "id": 2835,
- "start": 1126.61,
- "end": 1126.76,
- "text": "on"
- },
- {
- "id": 2836,
- "start": 1126.76,
- "end": 1126.85,
- "text": "and"
- },
- {
- "id": 2837,
- "start": 1126.85,
- "end": 1127.23,
- "text": "hopefully"
- },
- {
- "id": 2838,
- "start": 1127.04,
- "end": 1127.455,
- "text": "to"
- },
- {
- "id": 2839,
- "start": 1127.23,
- "end": 1127.68,
- "text": "respond"
- },
- {
- "id": 2840,
- "start": 1127.68,
- "end": 1127.82,
- "text": "to"
- },
- {
- "id": 2841,
- "start": 1127.82,
- "end": 1127.95,
- "text": "it"
- },
- {
- "id": 2842,
- "start": 1127.94,
- "end": 1128.17,
- "text": "really"
- },
- {
- "id": 2843,
- "start": 1128.75,
- "end": 1129.045,
- "text": "quickly."
- },
- {
- "id": 2844,
- "start": 1129.56,
- "end": 1129.92,
- "text": "Going"
- },
- {
- "id": 2845,
- "start": 1129.92,
- "end": 1130.31,
- "text": "back"
- },
- {
- "id": 2846,
- "start": 1130.31,
- "end": 1130.53,
- "text": "for"
- },
- {
- "id": 2847,
- "start": 1130.53,
- "end": 1130.59,
- "text": "a"
- },
- {
- "id": 2848,
- "start": 1131.5199999999998,
- "end": 1131.6649999999997,
- "text": "second,"
- },
- {
- "id": 2849,
- "start": 1132.51,
- "end": 1132.74,
- "text": "did"
- },
- {
- "id": 2850,
- "start": 1132.74,
- "end": 1133.22,
- "text": "growing"
- },
- {
- "id": 2851,
- "start": 1133.22,
- "end": 1133.52,
- "text": "so"
- },
- {
- "id": 2852,
- "start": 1133.52,
- "end": 1134.46,
- "text": "quickly"
- },
- {
- "id": 2853,
- "start": 1134.46,
- "end": 1134.75,
- "text": "get"
- },
- {
- "id": 2854,
- "start": 1134.75,
- "end": 1134.92,
- "text": "us"
- },
- {
- "id": 2855,
- "start": 1134.92,
- "end": 1135.19,
- "text": "into"
- },
- {
- "id": 2856,
- "start": 1135.19,
- "end": 1135.37,
- "text": "this"
- },
- {
- "id": 2857,
- "start": 1135.37,
- "end": 1136.78,
- "text": "problem,"
- },
- {
- "id": 2858,
- "start": 1136.78,
- "end": 1137.01,
- "text": "into"
- },
- {
- "id": 2859,
- "start": 1137.01,
- "end": 1137.11,
- "text": "the"
- },
- {
- "id": 2860,
- "start": 1137.11,
- "end": 1137.54,
- "text": "problems"
- },
- {
- "id": 2861,
- "start": 1137.8300000000002,
- "end": 1138.2375,
- "text": "that"
- },
- {
- "id": 2862,
- "start": 1138.55,
- "end": 1138.935,
- "text": "Facebook’s"
- },
- {
- "id": 2863,
- "start": 1139.2699999999998,
- "end": 1139.6325,
- "text": "seeing"
- },
- {
- "id": 2864,
- "start": 1139.99,
- "end": 1140.33,
- "text": "these"
- },
- {
- "id": 2865,
- "start": 1140.33,
- "end": 1141.02,
- "text": "days"
- },
- {
- "id": 2866,
- "start": 1140.6799999999998,
- "end": 1141.195,
- "text": "–"
- },
- {
- "id": 2867,
- "start": 1141.03,
- "end": 1141.37,
- "text": "be"
- },
- {
- "id": 2868,
- "start": 1141.37,
- "end": 1141.68,
- "text": "pretty"
- },
- {
- "id": 2869,
- "start": 1141.68,
- "end": 1142.3,
- "text": "intractable"
- },
- {
- "id": 2870,
- "start": 1143.460000000001,
- "end": 1143.835,
- "text": "problems?"
- },
- {
- "id": 2871,
- "start": 1145.24,
- "end": 1145.37,
- "text": "I"
- },
- {
- "id": 2872,
- "start": 1145.37,
- "end": 1146,
- "text": "don’t"
- },
- {
- "id": 2873,
- "start": 1146,
- "end": 1146.99,
- "text": "know."
- },
- {
- "id": 2874,
- "start": 1146.99,
- "end": 1147.07,
- "text": "I"
- },
- {
- "id": 2875,
- "start": 1147.07,
- "end": 1147.21,
- "text": "mean,"
- },
- {
- "id": 2876,
- "start": 1147.21,
- "end": 1147.28,
- "text": "I"
- },
- {
- "id": 2877,
- "start": 1147.28,
- "end": 1147.52,
- "text": "wouldn’t"
- },
- {
- "id": 2878,
- "start": 1147.52,
- "end": 1148.02,
- "text": "attribute"
- },
- {
- "id": 2879,
- "start": 1148.02,
- "end": 1148.18,
- "text": "it"
- },
- {
- "id": 2880,
- "start": 1148.18,
- "end": 1148.31,
- "text": "to"
- },
- {
- "id": 2881,
- "start": 1148.31,
- "end": 1148.71,
- "text": "growing"
- },
- {
- "id": 2882,
- "start": 1148.71,
- "end": 1148.95,
- "text": "so"
- },
- {
- "id": 2883,
- "start": 1148.95,
- "end": 1150.05,
- "text": "quickly."
- },
- {
- "id": 2884,
- "start": 1150.05,
- "end": 1150.21,
- "text": "I"
- },
- {
- "id": 2885,
- "start": 1150.21,
- "end": 1150.47,
- "text": "do"
- },
- {
- "id": 2886,
- "start": 1150.47,
- "end": 1150.9,
- "text": "think"
- },
- {
- "id": 2887,
- "start": 1150.9,
- "end": 1152.44,
- "text": "that"
- },
- {
- "id": 2888,
- "start": 1152.44,
- "end": 1152.79,
- "text": "we"
- },
- {
- "id": 2889,
- "start": 1152.79,
- "end": 1153.02,
- "text": "were"
- },
- {
- "id": 2890,
- "start": 1153.02,
- "end": 1154.22,
- "text": "idealistic."
- },
- {
- "id": 2891,
- "start": 1154.22,
- "end": 1154.43,
- "text": "We"
- },
- {
- "id": 2892,
- "start": 1154.43,
- "end": 1154.57,
- "text": "were"
- },
- {
- "id": 2893,
- "start": 1154.57,
- "end": 1154.8,
- "text": "really"
- },
- {
- "id": 2894,
- "start": 1154.8,
- "end": 1155.37,
- "text": "focused"
- },
- {
- "id": 2895,
- "start": 1155.37,
- "end": 1156.07,
- "text": "on"
- },
- {
- "id": 2896,
- "start": 1156.07,
- "end": 1156.26,
- "text": "the"
- },
- {
- "id": 2897,
- "start": 1156.26,
- "end": 1157.23,
- "text": "good"
- },
- {
- "id": 2898,
- "start": 1157.23,
- "end": 1157.4,
- "text": "and"
- },
- {
- "id": 2899,
- "start": 1157.4,
- "end": 1158.01,
- "text": "amplifying"
- },
- {
- "id": 2900,
- "start": 1158.01,
- "end": 1158.4,
- "text": "that,"
- },
- {
- "id": 2901,
- "start": 1158.4,
- "end": 1159.41,
- "text": "and"
- },
- {
- "id": 2902,
- "start": 1159.41,
- "end": 1159.66,
- "text": "we"
- },
- {
- "id": 2903,
- "start": 1159.66,
- "end": 1159.8,
- "text": "were"
- },
- {
- "id": 2904,
- "start": 1159.8,
- "end": 1160.37,
- "text": "slow"
- },
- {
- "id": 2905,
- "start": 1160.37,
- "end": 1161.3,
- "text": "to"
- },
- {
- "id": 2906,
- "start": 1161.3,
- "end": 1162.31,
- "text": "understand"
- },
- {
- "id": 2907,
- "start": 1162.31,
- "end": 1162.73,
- "text": "and"
- },
- {
- "id": 2908,
- "start": 1162.73,
- "end": 1162.95,
- "text": "really"
- },
- {
- "id": 2909,
- "start": 1162.95,
- "end": 1163.36,
- "text": "focus"
- },
- {
- "id": 2910,
- "start": 1163.36,
- "end": 1164.22,
- "text": "on"
- },
- {
- "id": 2911,
- "start": 1164.22,
- "end": 1164.42,
- "text": "the"
- },
- {
- "id": 2912,
- "start": 1164.42,
- "end": 1164.66,
- "text": "fake"
- },
- {
- "id": 2913,
- "start": 1164.66,
- "end": 1165.04,
- "text": "accounts"
- },
- {
- "id": 2914,
- "start": 1165.04,
- "end": 1165.15,
- "text": "and"
- },
- {
- "id": 2915,
- "start": 1165.15,
- "end": 1165.35,
- "text": "bad"
- },
- {
- "id": 2916,
- "start": 1165.35,
- "end": 1165.95,
- "text": "actors."
- },
- {
- "id": 2917,
- "start": 1166.0966666666668,
- "end": 1166.5566666666668,
- "text": "A"
- },
- {
- "id": 2918,
- "start": 1166.8433333333332,
- "end": 1167.1633333333334,
- "text": "skeptic"
- },
- {
- "id": 2919,
- "start": 1167.59,
- "end": 1167.77,
- "text": "would"
- },
- {
- "id": 2920,
- "start": 1167.77,
- "end": 1168.38,
- "text": "say"
- },
- {
- "id": 2921,
- "start": 1168.145,
- "end": 1168.64,
- "text": "that"
- },
- {
- "id": 2922,
- "start": 1168.52,
- "end": 1168.9,
- "text": "focused"
- },
- {
- "id": 2923,
- "start": 1168.9,
- "end": 1169.01,
- "text": "on"
- },
- {
- "id": 2924,
- "start": 1169.01,
- "end": 1169.1,
- "text": "the"
- },
- {
- "id": 2925,
- "start": 1169.1,
- "end": 1169.28,
- "text": "good"
- },
- {
- "id": 2926,
- "start": 1169.28,
- "end": 1169.4,
- "text": "is"
- },
- {
- "id": 2927,
- "start": 1169.4,
- "end": 1169.64,
- "text": "one"
- },
- {
- "id": 2928,
- "start": 1169.64,
- "end": 1169.82,
- "text": "thing,"
- },
- {
- "id": 2929,
- "start": 1169.82,
- "end": 1169.98,
- "text": "but"
- },
- {
- "id": 2930,
- "start": 1169.98,
- "end": 1170.14,
- "text": "you’re"
- },
- {
- "id": 2931,
- "start": 1170.14,
- "end": 1170.21,
- "text": "a"
- },
- {
- "id": 2932,
- "start": 1170.475,
- "end": 1170.8000000000002,
- "text": "for-profit"
- },
- {
- "id": 2933,
- "start": 1170.81,
- "end": 1171.39,
- "text": "company,"
- },
- {
- "id": 2934,
- "start": 1171.31,
- "end": 1171.74,
- "text": "right?"
- },
- {
- "id": 2935,
- "start": 1172.6799999999998,
- "end": 1173.12,
- "text": "For-profit"
- },
- {
- "id": 2936,
- "start": 1174.05,
- "end": 1174.5,
- "text": "companies"
- },
- {
- "id": 2937,
- "start": 1174.57,
- "end": 1174.85,
- "text": "optimize"
- },
- {
- "id": 2938,
- "start": 1175.09,
- "end": 1175.2,
- "text": "for"
- },
- {
- "id": 2939,
- "start": 1175.2,
- "end": 1175.55,
- "text": "different"
- },
- {
- "id": 2940,
- "start": 1175.55,
- "end": 1176.46,
- "text": "metrics,"
- },
- {
- "id": 2941,
- "start": 1176.46,
- "end": 1176.77,
- "text": "right,"
- },
- {
- "id": 2942,
- "start": 1176.77,
- "end": 1176.93,
- "text": "and"
- },
- {
- "id": 2943,
- "start": 1176.93,
- "end": 1177.05,
- "text": "they’re"
- },
- {
- "id": 2944,
- "start": 1177.6200000000001,
- "end": 1177.8550000000002,
- "text": "incentivized."
- },
- {
- "id": 2945,
- "start": 1178.31,
- "end": 1178.66,
- "text": "People"
- },
- {
- "id": 2946,
- "start": 1178.66,
- "end": 1178.72,
- "text": "are"
- },
- {
- "id": 2947,
- "start": 1179.135,
- "end": 1179.1950000000002,
- "text": "incentivized"
- },
- {
- "id": 2948,
- "start": 1179.61,
- "end": 1179.67,
- "text": "in"
- },
- {
- "id": 2949,
- "start": 1179.67,
- "end": 1179.99,
- "text": "different"
- },
- {
- "id": 2950,
- "start": 1179.99,
- "end": 1180.74,
- "text": "ways."
- },
- {
- "id": 2951,
- "start": 1180.74,
- "end": 1180.93,
- "text": "Do"
- },
- {
- "id": 2952,
- "start": 1180.93,
- "end": 1181.06,
- "text": "you"
- },
- {
- "id": 2953,
- "start": 1181.06,
- "end": 1181.31,
- "text": "not"
- },
- {
- "id": 2954,
- "start": 1181.31,
- "end": 1181.72,
- "text": "think"
- },
- {
- "id": 2955,
- "start": 1181.72,
- "end": 1182.64,
- "text": "that"
- },
- {
- "id": 2956,
- "start": 1182.64,
- "end": 1182.76,
- "text": "the"
- },
- {
- "id": 2957,
- "start": 1182.76,
- "end": 1183.18,
- "text": "profit"
- },
- {
- "id": 2958,
- "start": 1183.18,
- "end": 1183.55,
- "text": "motive"
- },
- {
- "id": 2959,
- "start": 1183.55,
- "end": 1183.68,
- "text": "in"
- },
- {
- "id": 2960,
- "start": 1183.68,
- "end": 1183.92,
- "text": "some"
- },
- {
- "id": 2961,
- "start": 1183.92,
- "end": 1184.08,
- "text": "way"
- },
- {
- "id": 2962,
- "start": 1184.08,
- "end": 1184.35,
- "text": "played"
- },
- {
- "id": 2963,
- "start": 1184.35,
- "end": 1184.4,
- "text": "a"
- },
- {
- "id": 2964,
- "start": 1184.4,
- "end": 1184.72,
- "text": "role"
- },
- {
- "id": 2965,
- "start": 1184.72,
- "end": 1184.82,
- "text": "in"
- },
- {
- "id": 2966,
- "start": 1184.82,
- "end": 1185.1,
- "text": "this?"
- },
- {
- "id": 2967,
- "start": 1185.1,
- "end": 1185.26,
- "text": "Do"
- },
- {
- "id": 2968,
- "start": 1185.1799999999998,
- "end": 1185.37,
- "text": "you"
- },
- {
- "id": 2969,
- "start": 1185.26,
- "end": 1185.48,
- "text": "not"
- },
- {
- "id": 2970,
- "start": 1185.48,
- "end": 1185.82,
- "text": "think"
- },
- {
- "id": 2971,
- "start": 1185.82,
- "end": 1186.4,
- "text": "that"
- },
- {
- "id": 2972,
- "start": 1186.4,
- "end": 1186.9,
- "text": "incentive"
- },
- {
- "id": 2973,
- "start": 1186.9,
- "end": 1187.59,
- "text": "structures"
- },
- {
- "id": 2974,
- "start": 1187.59,
- "end": 1188.44,
- "text": "for"
- },
- {
- "id": 2975,
- "start": 1188.44,
- "end": 1188.95,
- "text": "what"
- },
- {
- "id": 2976,
- "start": 1188.95,
- "end": 1189.26,
- "text": "people"
- },
- {
- "id": 2977,
- "start": 1189.26,
- "end": 1189.38,
- "text": "were"
- },
- {
- "id": 2978,
- "start": 1189.635,
- "end": 1189.73,
- "text": "incentivized"
- },
- {
- "id": 2979,
- "start": 1190.01,
- "end": 1190.08,
- "text": "to"
- },
- {
- "id": 2980,
- "start": 1190.08,
- "end": 1190.33,
- "text": "do"
- },
- {
- "id": 2981,
- "start": 1190.33,
- "end": 1190.56,
- "text": "played"
- },
- {
- "id": 2982,
- "start": 1190.56,
- "end": 1190.6,
- "text": "a"
- },
- {
- "id": 2983,
- "start": 1190.6,
- "end": 1191.43,
- "text": "motive"
- },
- {
- "id": 2984,
- "start": 1191.43,
- "end": 1191.67,
- "text": "or"
- },
- {
- "id": 2985,
- "start": 1191.67,
- "end": 1191.88,
- "text": "played"
- },
- {
- "id": 2986,
- "start": 1191.88,
- "end": 1191.92,
- "text": "a"
- },
- {
- "id": 2987,
- "start": 1191.92,
- "end": 1192.17,
- "text": "role"
- },
- {
- "id": 2988,
- "start": 1192.17,
- "end": 1193.87,
- "text": "here?"
- },
- {
- "id": 2989,
- "start": 1193.87,
- "end": 1194.24,
- "text": "No,"
- },
- {
- "id": 2990,
- "start": 1194.24,
- "end": 1194.32,
- "text": "I"
- },
- {
- "id": 2991,
- "start": 1194.32,
- "end": 1194.75,
- "text": "definitely"
- },
- {
- "id": 2992,
- "start": 1194.75,
- "end": 1195.02,
- "text": "don’t"
- },
- {
- "id": 2993,
- "start": 1195.02,
- "end": 1195.21,
- "text": "think"
- },
- {
- "id": 2994,
- "start": 1195.21,
- "end": 1195.32,
- "text": "the"
- },
- {
- "id": 2995,
- "start": 1195.32,
- "end": 1195.76,
- "text": "profit"
- },
- {
- "id": 2996,
- "start": 1195.76,
- "end": 1196.57,
- "text": "motive"
- },
- {
- "id": 2997,
- "start": 1196.57,
- "end": 1196.82,
- "text": "played"
- },
- {
- "id": 2998,
- "start": 1196.82,
- "end": 1196.9,
- "text": "a"
- },
- {
- "id": 2999,
- "start": 1196.9,
- "end": 1197.15,
- "text": "role"
- },
- {
- "id": 3000,
- "start": 1197.15,
- "end": 1197.45,
- "text": "here."
- },
- {
- "id": 3001,
- "start": 1197.45,
- "end": 1197.84,
- "text": "Even"
- },
- {
- "id": 3002,
- "start": 1197.84,
- "end": 1198.05,
- "text": "when"
- },
- {
- "id": 3003,
- "start": 1198.05,
- "end": 1198.67,
- "text": "we"
- },
- {
- "id": 3004,
- "start": 1198.67,
- "end": 1198.99,
- "text": "had"
- },
- {
- "id": 3005,
- "start": 1198.99,
- "end": 1199.15,
- "text": "our"
- },
- {
- "id": 3006,
- "start": 1199.355,
- "end": 1199.655,
- "text": "IPO,"
- },
- {
- "id": 3007,
- "start": 1199.72,
- "end": 1200.16,
- "text": "Mark"
- },
- {
- "id": 3008,
- "start": 1200.16,
- "end": 1200.51,
- "text": "wrote"
- },
- {
- "id": 3009,
- "start": 1200.51,
- "end": 1200.72,
- "text": "in"
- },
- {
- "id": 3010,
- "start": 1200.72,
- "end": 1201.08,
- "text": "his"
- },
- {
- "id": 3011,
- "start": 1201.0900000000001,
- "end": 1201.68,
- "text": "S-1"
- },
- {
- "id": 3012,
- "start": 1201.46,
- "end": 1202.28,
- "text": "documentation"
- },
- {
- "id": 3013,
- "start": 1202.28,
- "end": 1202.42,
- "text": "that"
- },
- {
- "id": 3014,
- "start": 1202.42,
- "end": 1202.54,
- "text": "when"
- },
- {
- "id": 3015,
- "start": 1202.54,
- "end": 1202.68,
- "text": "he"
- },
- {
- "id": 3016,
- "start": 1202.68,
- "end": 1203.01,
- "text": "started"
- },
- {
- "id": 3017,
- "start": 1203.01,
- "end": 1203.64,
- "text": "Facebook,"
- },
- {
- "id": 3018,
- "start": 1203.64,
- "end": 1204.11,
- "text": "he"
- },
- {
- "id": 3019,
- "start": 1204.11,
- "end": 1204.31,
- "text": "set"
- },
- {
- "id": 3020,
- "start": 1204.31,
- "end": 1204.47,
- "text": "out"
- },
- {
- "id": 3021,
- "start": 1204.47,
- "end": 1204.57,
- "text": "to"
- },
- {
- "id": 3022,
- "start": 1204.57,
- "end": 1205.53,
- "text": "make"
- },
- {
- "id": 3023,
- "start": 1205.53,
- "end": 1205.87,
- "text": "not"
- },
- {
- "id": 3024,
- "start": 1205.87,
- "end": 1205.91,
- "text": "a"
- },
- {
- "id": 3025,
- "start": 1205.91,
- "end": 1206.91,
- "text": "company"
- },
- {
- "id": 3026,
- "start": 1206.91,
- "end": 1207.08,
- "text": "but"
- },
- {
- "id": 3027,
- "start": 1207.08,
- "end": 1207.19,
- "text": "to"
- },
- {
- "id": 3028,
- "start": 1207.19,
- "end": 1207.55,
- "text": "pursue"
- },
- {
- "id": 3029,
- "start": 1207.55,
- "end": 1207.62,
- "text": "a"
- },
- {
- "id": 3030,
- "start": 1207.62,
- "end": 1208.1,
- "text": "mission."
- },
- {
- "id": 3031,
- "start": 1208.1,
- "end": 1208.35,
- "text": "We’ve"
- },
- {
- "id": 3032,
- "start": 1208.34,
- "end": 1208.57,
- "text": "been"
- },
- {
- "id": 3033,
- "start": 1209.5700000000002,
- "end": 1209.7400000000002,
- "text": "super-mission-oriented."
- },
- {
- "id": 3034,
- "start": 1210.8000000000002,
- "end": 1210.9100000000003,
- "text": "Again,"
- },
- {
- "id": 3035,
- "start": 1212.03,
- "end": 1212.08,
- "text": "I"
- },
- {
- "id": 3036,
- "start": 1212.08,
- "end": 1212.27,
- "text": "have"
- },
- {
- "id": 3037,
- "start": 1212.27,
- "end": 1212.6,
- "text": "a"
- },
- {
- "id": 3038,
- "start": 1212.6,
- "end": 1213.03,
- "text": "team"
- },
- {
- "id": 3039,
- "start": 1213.03,
- "end": 1213.19,
- "text": "that"
- },
- {
- "id": 3040,
- "start": 1213.19,
- "end": 1213.35,
- "text": "is"
- },
- {
- "id": 3041,
- "start": 1213.35,
- "end": 1213.76,
- "text": "focused"
- },
- {
- "id": 3042,
- "start": 1213.76,
- "end": 1214.27,
- "text": "entirely"
- },
- {
- "id": 3043,
- "start": 1214.27,
- "end": 1214.55,
- "text": "not"
- },
- {
- "id": 3044,
- "start": 1214.55,
- "end": 1214.68,
- "text": "on"
- },
- {
- "id": 3045,
- "start": 1214.68,
- "end": 1214.85,
- "text": "any"
- },
- {
- "id": 3046,
- "start": 1214.85,
- "end": 1215.23,
- "text": "company"
- },
- {
- "id": 3047,
- "start": 1215.23,
- "end": 1215.83,
- "text": "metrics,"
- },
- {
- "id": 3048,
- "start": 1215.83,
- "end": 1216.05,
- "text": "not"
- },
- {
- "id": 3049,
- "start": 1216.05,
- "end": 1216.17,
- "text": "on"
- },
- {
- "id": 3050,
- "start": 1216.17,
- "end": 1216.91,
- "text": "dollars,"
- },
- {
- "id": 3051,
- "start": 1216.91,
- "end": 1217.25,
- "text": "not"
- },
- {
- "id": 3052,
- "start": 1217.25,
- "end": 1217.8,
- "text": "on"
- },
- {
- "id": 3053,
- "start": 1217.58,
- "end": 1218.41,
- "text": "engagement"
- },
- {
- "id": 3054,
- "start": 1218.3215,
- "end": 1218.8415,
- "text": "metrics,"
- },
- {
- "id": 3055,
- "start": 1219.063,
- "end": 1219.273,
- "text": "not"
- },
- {
- "id": 3056,
- "start": 1219.273,
- "end": 1219.393,
- "text": "on"
- },
- {
- "id": 3057,
- "start": 1219.393,
- "end": 1220.373,
- "text": "growth,"
- },
- {
- "id": 3058,
- "start": 1220.373,
- "end": 1220.883,
- "text": "but"
- },
- {
- "id": 3059,
- "start": 1220.883,
- "end": 1221.893,
- "text": "simply"
- },
- {
- "id": 3060,
- "start": 1221.893,
- "end": 1222.183,
- "text": "on"
- },
- {
- "id": 3061,
- "start": 1222.183,
- "end": 1222.733,
- "text": "positive"
- },
- {
- "id": 3062,
- "start": 1222.678,
- "end": 1223.233,
- "text": "real-world"
- },
- {
- "id": 3063,
- "start": 1223.173,
- "end": 1223.733,
- "text": "actions,"
- },
- {
- "id": 3064,
- "start": 1223.733,
- "end": 1223.973,
- "text": "whether"
- },
- {
- "id": 3065,
- "start": 1223.973,
- "end": 1224.373,
- "text": "that’s"
- },
- {
- "id": 3066,
- "start": 1224.373,
- "end": 1224.973,
- "text": "generating"
- },
- {
- "id": 3067,
- "start": 1224.973,
- "end": 1225.693,
- "text": "donations"
- },
- {
- "id": 3068,
- "start": 1225.693,
- "end": 1225.813,
- "text": "for"
- },
- {
- "id": 3069,
- "start": 1226.2079999999999,
- "end": 1226.603,
- "text": "nonprofits"
- },
- {
- "id": 3070,
- "start": 1226.723,
- "end": 1227.393,
- "text": "or"
- },
- {
- "id": 3071,
- "start": 1227.393,
- "end": 1228.073,
- "text": "facilitating"
- },
- {
- "id": 3072,
- "start": 1228.073,
- "end": 1228.273,
- "text": "blood"
- },
- {
- "id": 3073,
- "start": 1228.273,
- "end": 1229.833,
- "text": "donations."
- },
- {
- "id": 3074,
- "start": 1229.833,
- "end": 1230.103,
- "text": "That"
- },
- {
- "id": 3075,
- "start": 1230.103,
- "end": 1230.393,
- "text": "really"
- },
- {
- "id": 3076,
- "start": 1230.393,
- "end": 1230.543,
- "text": "is"
- },
- {
- "id": 3077,
- "start": 1230.543,
- "end": 1230.643,
- "text": "the"
- },
- {
- "id": 3078,
- "start": 1230.993,
- "end": 1231.1180000000002,
- "text": "focus,"
- },
- {
- "id": 3079,
- "start": 1231.443,
- "end": 1231.593,
- "text": "and"
- },
- {
- "id": 3080,
- "start": 1231.593,
- "end": 1231.713,
- "text": "it’s"
- },
- {
- "id": 3081,
- "start": 1231.713,
- "end": 1231.813,
- "text": "on"
- },
- {
- "id": 3082,
- "start": 1231.813,
- "end": 1231.883,
- "text": "the"
- },
- {
- "id": 3083,
- "start": 1231.883,
- "end": 1238.113,
- "text": "mission."
- },
- {
- "id": 3084,
- "start": 1238.113,
- "end": 1238.453,
- "text": "Why"
- },
- {
- "id": 3085,
- "start": 1238.453,
- "end": 1238.573,
- "text": "the"
- },
- {
- "id": 3086,
- "start": 1238.573,
- "end": 1238.933,
- "text": "shift"
- },
- {
- "id": 3087,
- "start": 1238.933,
- "end": 1239.043,
- "text": "in"
- },
- {
- "id": 3088,
- "start": 1239.043,
- "end": 1239.203,
- "text": "your"
- },
- {
- "id": 3089,
- "start": 1239.203,
- "end": 1239.703,
- "text": "job?"
- },
- {
- "id": 3090,
- "start": 1239.703,
- "end": 1240.553,
- "text": "Why"
- },
- {
- "id": 3091,
- "start": 1240.553,
- "end": 1240.773,
- "text": "did"
- },
- {
- "id": 3092,
- "start": 1240.773,
- "end": 1240.883,
- "text": "you"
- },
- {
- "id": 3093,
- "start": 1240.883,
- "end": 1242.023,
- "text": "go"
- },
- {
- "id": 3094,
- "start": 1242.023,
- "end": 1242.323,
- "text": "from"
- },
- {
- "id": 3095,
- "start": 1242.323,
- "end": 1242.453,
- "text": "what"
- },
- {
- "id": 3096,
- "start": 1242.453,
- "end": 1242.543,
- "text": "you"
- },
- {
- "id": 3097,
- "start": 1242.543,
- "end": 1242.633,
- "text": "were"
- },
- {
- "id": 3098,
- "start": 1242.633,
- "end": 1242.943,
- "text": "doing"
- },
- {
- "id": 3099,
- "start": 1242.943,
- "end": 1243.063,
- "text": "to"
- },
- {
- "id": 3100,
- "start": 1243.063,
- "end": 1243.243,
- "text": "what"
- },
- {
- "id": 3101,
- "start": 1243.243,
- "end": 1243.333,
- "text": "you’re"
- },
- {
- "id": 3102,
- "start": 1243.333,
- "end": 1243.603,
- "text": "doing"
- },
- {
- "id": 3103,
- "start": 1243.603,
- "end": 1244.913,
- "text": "now?"
- },
- {
- "id": 3104,
- "start": 1244.913,
- "end": 1245.023,
- "text": "I’ve"
- },
- {
- "id": 3105,
- "start": 1245.023,
- "end": 1245.223,
- "text": "always"
- },
- {
- "id": 3106,
- "start": 1245.223,
- "end": 1245.423,
- "text": "wanted"
- },
- {
- "id": 3107,
- "start": 1245.423,
- "end": 1245.493,
- "text": "to"
- },
- {
- "id": 3108,
- "start": 1245.493,
- "end": 1245.843,
- "text": "focus"
- },
- {
- "id": 3109,
- "start": 1245.843,
- "end": 1245.953,
- "text": "on"
- },
- {
- "id": 3110,
- "start": 1245.953,
- "end": 1246.063,
- "text": "what"
- },
- {
- "id": 3111,
- "start": 1246.063,
- "end": 1246.103,
- "text": "I"
- },
- {
- "id": 3112,
- "start": 1246.103,
- "end": 1246.323,
- "text": "thought"
- },
- {
- "id": 3113,
- "start": 1246.323,
- "end": 1246.473,
- "text": "was"
- },
- {
- "id": 3114,
- "start": 1246.473,
- "end": 1246.713,
- "text": "most"
- },
- {
- "id": 3115,
- "start": 1246.713,
- "end": 1247.533,
- "text": "important."
- },
- {
- "id": 3116,
- "start": 1247.829666666667,
- "end": 1248.4596666666666,
- "text": "In"
- },
- {
- "id": 3117,
- "start": 1248.9463333333338,
- "end": 1249.3863333333334,
- "text": "2005,"
- },
- {
- "id": 3118,
- "start": 1250.063,
- "end": 1250.313,
- "text": "just"
- },
- {
- "id": 3119,
- "start": 1250.313,
- "end": 1251.023,
- "text": "expanding"
- },
- {
- "id": 3120,
- "start": 1251.023,
- "end": 1251.563,
- "text": "Facebook"
- },
- {
- "id": 3121,
- "start": 1251.563,
- "end": 1251.793,
- "text": "to"
- },
- {
- "id": 3122,
- "start": 1251.793,
- "end": 1252.063,
- "text": "people"
- },
- {
- "id": 3123,
- "start": 1252.063,
- "end": 1252.163,
- "text": "who"
- },
- {
- "id": 3124,
- "start": 1252.163,
- "end": 1252.413,
- "text": "wanted"
- },
- {
- "id": 3125,
- "start": 1252.413,
- "end": 1252.483,
- "text": "to"
- },
- {
- "id": 3126,
- "start": 1252.483,
- "end": 1252.693,
- "text": "use"
- },
- {
- "id": 3127,
- "start": 1252.798,
- "end": 1252.933,
- "text": "it—really,"
- },
- {
- "id": 3128,
- "start": 1253.113,
- "end": 1253.173,
- "text": "it"
- },
- {
- "id": 3129,
- "start": 1253.173,
- "end": 1253.293,
- "text": "was"
- },
- {
- "id": 3130,
- "start": 1253.293,
- "end": 1253.493,
- "text": "just"
- },
- {
- "id": 3131,
- "start": 1253.493,
- "end": 1253.663,
- "text": "other"
- },
- {
- "id": 3132,
- "start": 1253.663,
- "end": 1255.473,
- "text": "colleges."
- },
- {
- "id": 3133,
- "start": 1255.473,
- "end": 1255.603,
- "text": "It"
- },
- {
- "id": 3134,
- "start": 1255.603,
- "end": 1255.723,
- "text": "was"
- },
- {
- "id": 3135,
- "start": 1255.723,
- "end": 1256.043,
- "text": "initially"
- },
- {
- "id": 3136,
- "start": 1256.043,
- "end": 1256.503,
- "text": "available"
- },
- {
- "id": 3137,
- "start": 1256.2779999999998,
- "end": 1256.628,
- "text": "at"
- },
- {
- "id": 3138,
- "start": 1256.513,
- "end": 1256.753,
- "text": "like"
- },
- {
- "id": 3139,
- "start": 1256.8229999999999,
- "end": 1256.993,
- "text": "five,"
- },
- {
- "id": 3140,
- "start": 1257.133,
- "end": 1257.233,
- "text": "and"
- },
- {
- "id": 3141,
- "start": 1257.233,
- "end": 1257.353,
- "text": "then"
- },
- {
- "id": 3142,
- "start": 1257.353,
- "end": 1257.543,
- "text": "we"
- },
- {
- "id": 3143,
- "start": 1257.543,
- "end": 1257.843,
- "text": "opened"
- },
- {
- "id": 3144,
- "start": 1257.843,
- "end": 1257.973,
- "text": "it"
- },
- {
- "id": 3145,
- "start": 1257.973,
- "end": 1258.053,
- "text": "to"
- },
- {
- "id": 3146,
- "start": 1258.053,
- "end": 1258.213,
- "text": "all"
- },
- {
- "id": 3147,
- "start": 1258.213,
- "end": 1258.303,
- "text": "the"
- },
- {
- "id": 3148,
- "start": 1258.303,
- "end": 1260.343,
- "text": "colleges"
- },
- {
- "id": 3149,
- "start": 1260.343,
- "end": 1260.513,
- "text": "in"
- },
- {
- "id": 3150,
- "start": 1260.513,
- "end": 1260.623,
- "text": "the"
- },
- {
- "id": 3151,
- "start": 1260.818,
- "end": 1260.943,
- "text": "U.S."
- },
- {
- "id": 3152,
- "start": 1261.123,
- "end": 1261.263,
- "text": "and"
- },
- {
- "id": 3153,
- "start": 1261.263,
- "end": 1261.413,
- "text": "then"
- },
- {
- "id": 3154,
- "start": 1261.413,
- "end": 1264.353,
- "text": "beyond."
- },
- {
- "id": 3155,
- "start": 1264.353,
- "end": 1264.443,
- "text": "I"
- },
- {
- "id": 3156,
- "start": 1264.443,
- "end": 1264.823,
- "text": "think"
- },
- {
- "id": 3157,
- "start": 1264.823,
- "end": 1264.953,
- "text": "it"
- },
- {
- "id": 3158,
- "start": 1264.953,
- "end": 1265.193,
- "text": "was"
- },
- {
- "id": 3159,
- "start": 1265.193,
- "end": 1265.303,
- "text": "in"
- },
- {
- "id": 3160,
- "start": 1266.5080000000007,
- "end": 1266.8829999999998,
- "text": "2014"
- },
- {
- "id": 3161,
- "start": 1267.823,
- "end": 1268.463,
- "text": "Mark"
- },
- {
- "id": 3162,
- "start": 1268.463,
- "end": 1268.953,
- "text": "approached"
- },
- {
- "id": 3163,
- "start": 1268.953,
- "end": 1269.173,
- "text": "me,"
- },
- {
- "id": 3164,
- "start": 1269.173,
- "end": 1269.313,
- "text": "and"
- },
- {
- "id": 3165,
- "start": 1269.313,
- "end": 1269.593,
- "text": "he"
- },
- {
- "id": 3166,
- "start": 1269.593,
- "end": 1270.513,
- "text": "was"
- },
- {
- "id": 3167,
- "start": 1270.513,
- "end": 1270.833,
- "text": "just"
- },
- {
- "id": 3168,
- "start": 1270.833,
- "end": 1271.443,
- "text": "saying,"
- },
- {
- "id": 3169,
- "start": 1271.443,
- "end": 1271.523,
- "text": "“I"
- },
- {
- "id": 3170,
- "start": 1271.523,
- "end": 1271.853,
- "text": "feel"
- },
- {
- "id": 3171,
- "start": 1271.853,
- "end": 1272.033,
- "text": "like"
- },
- {
- "id": 3172,
- "start": 1272.033,
- "end": 1272.143,
- "text": "the"
- },
- {
- "id": 3173,
- "start": 1272.143,
- "end": 1272.763,
- "text": "time,"
- },
- {
- "id": 3174,
- "start": 1272.763,
- "end": 1272.863,
- "text": "the"
- },
- {
- "id": 3175,
- "start": 1272.863,
- "end": 1273.593,
- "text": "space,"
- },
- {
- "id": 3176,
- "start": 1273.593,
- "end": 1274.263,
- "text": "the"
- },
- {
- "id": 3177,
- "start": 1274.263,
- "end": 1274.863,
- "text": "bandwidth"
- },
- {
- "id": 3178,
- "start": 1274.863,
- "end": 1275.093,
- "text": "has"
- },
- {
- "id": 3179,
- "start": 1275.093,
- "end": 1275.513,
- "text": "come"
- },
- {
- "id": 3180,
- "start": 1275.513,
- "end": 1275.643,
- "text": "to"
- },
- {
- "id": 3181,
- "start": 1275.643,
- "end": 1275.853,
- "text": "have"
- },
- {
- "id": 3182,
- "start": 1275.853,
- "end": 1275.913,
- "text": "a"
- },
- {
- "id": 3183,
- "start": 1275.913,
- "end": 1276.323,
- "text": "team"
- },
- {
- "id": 3184,
- "start": 1276.323,
- "end": 1276.553,
- "text": "that"
- },
- {
- "id": 3185,
- "start": 1276.553,
- "end": 1276.853,
- "text": "is"
- },
- {
- "id": 3186,
- "start": 1276.853,
- "end": 1277.353,
- "text": "focused"
- },
- {
- "id": 3187,
- "start": 1277.353,
- "end": 1278.343,
- "text": "on"
- },
- {
- "id": 3188,
- "start": 1278.343,
- "end": 1278.593,
- "text": "just"
- },
- {
- "id": 3189,
- "start": 1278.593,
- "end": 1279.013,
- "text": "driving"
- },
- {
- "id": 3190,
- "start": 1279.013,
- "end": 1279.433,
- "text": "positive"
- },
- {
- "id": 3191,
- "start": 1279.4379999999999,
- "end": 1280.1929999999998,
- "text": "real-world"
- },
- {
- "id": 3192,
- "start": 1279.863,
- "end": 1280.953,
- "text": "actions.”"
- },
- {
- "id": 3193,
- "start": 1280.953,
- "end": 1281.153,
- "text": "It"
- },
- {
- "id": 3194,
- "start": 1281.153,
- "end": 1281.413,
- "text": "was"
- },
- {
- "id": 3195,
- "start": 1281.413,
- "end": 1281.633,
- "text": "just"
- },
- {
- "id": 3196,
- "start": 1281.633,
- "end": 1282.383,
- "text": "after"
- },
- {
- "id": 3197,
- "start": 1282.383,
- "end": 1282.513,
- "text": "I"
- },
- {
- "id": 3198,
- "start": 1282.513,
- "end": 1282.863,
- "text": "mentioned"
- },
- {
- "id": 3199,
- "start": 1282.863,
- "end": 1283.183,
- "text": "earlier"
- },
- {
- "id": 3200,
- "start": 1283.183,
- "end": 1283.373,
- "text": "the"
- },
- {
- "id": 3201,
- "start": 1283.483,
- "end": 1283.6680000000001,
- "text": "ALS"
- },
- {
- "id": 3202,
- "start": 1283.783,
- "end": 1283.963,
- "text": "Ice"
- },
- {
- "id": 3203,
- "start": 1283.963,
- "end": 1284.243,
- "text": "Bucket"
- },
- {
- "id": 3204,
- "start": 1284.243,
- "end": 1284.693,
- "text": "Challenge,"
- },
- {
- "id": 3205,
- "start": 1284.693,
- "end": 1284.783,
- "text": "and"
- },
- {
- "id": 3206,
- "start": 1284.783,
- "end": 1284.863,
- "text": "we"
- },
- {
- "id": 3207,
- "start": 1284.863,
- "end": 1285.013,
- "text": "were"
- },
- {
- "id": 3208,
- "start": 1285.013,
- "end": 1285.303,
- "text": "really"
- },
- {
- "id": 3209,
- "start": 1285.303,
- "end": 1285.953,
- "text": "inspired"
- },
- {
- "id": 3210,
- "start": 1285.953,
- "end": 1286.133,
- "text": "by"
- },
- {
- "id": 3211,
- "start": 1286.133,
- "end": 1288.173,
- "text": "that."
- },
- {
- "id": 3212,
- "start": 1288.173,
- "end": 1288.363,
- "text": "We"
- },
- {
- "id": 3213,
- "start": 1288.363,
- "end": 1288.553,
- "text": "see"
- },
- {
- "id": 3214,
- "start": 1288.553,
- "end": 1288.783,
- "text": "so"
- },
- {
- "id": 3215,
- "start": 1288.783,
- "end": 1288.943,
- "text": "many"
- },
- {
- "id": 3216,
- "start": 1288.943,
- "end": 1289.103,
- "text": "good"
- },
- {
- "id": 3217,
- "start": 1289.103,
- "end": 1289.333,
- "text": "things"
- },
- {
- "id": 3218,
- "start": 1289.333,
- "end": 1289.723,
- "text": "happening"
- },
- {
- "id": 3219,
- "start": 1289.723,
- "end": 1289.813,
- "text": "on"
- },
- {
- "id": 3220,
- "start": 1289.813,
- "end": 1289.903,
- "text": "the"
- },
- {
- "id": 3221,
- "start": 1290.163,
- "end": 1290.268,
- "text": "platform,"
- },
- {
- "id": 3222,
- "start": 1290.513,
- "end": 1290.633,
- "text": "and"
- },
- {
- "id": 3223,
- "start": 1290.633,
- "end": 1290.883,
- "text": "Mark"
- },
- {
- "id": 3224,
- "start": 1290.883,
- "end": 1291.103,
- "text": "just"
- },
- {
- "id": 3225,
- "start": 1291.103,
- "end": 1291.333,
- "text": "felt,"
- },
- {
- "id": 3226,
- "start": 1291.333,
- "end": 1291.533,
- "text": "I"
- },
- {
- "id": 3227,
- "start": 1291.533,
- "end": 1291.863,
- "text": "felt,"
- },
- {
- "id": 3228,
- "start": 1291.863,
- "end": 1291.953,
- "text": "the"
- },
- {
- "id": 3229,
- "start": 1291.953,
- "end": 1292.283,
- "text": "team"
- },
- {
- "id": 3230,
- "start": 1292.283,
- "end": 1292.583,
- "text": "felt"
- },
- {
- "id": 3231,
- "start": 1292.583,
- "end": 1292.843,
- "text": "that"
- },
- {
- "id": 3232,
- "start": 1292.843,
- "end": 1293.063,
- "text": "we"
- },
- {
- "id": 3233,
- "start": 1293.063,
- "end": 1293.393,
- "text": "could"
- },
- {
- "id": 3234,
- "start": 1293.393,
- "end": 1293.563,
- "text": "do"
- },
- {
- "id": 3235,
- "start": 1294.0829999999996,
- "end": 1294.3880000000004,
- "text": "more."
- },
- {
- "id": 3236,
- "start": 1294.773,
- "end": 1295.213,
- "text": "When"
- },
- {
- "id": 3237,
- "start": 1295.213,
- "end": 1295.953,
- "text": "we"
- },
- {
- "id": 3238,
- "start": 1295.953,
- "end": 1296.553,
- "text": "had"
- },
- {
- "id": 3239,
- "start": 1296.543,
- "end": 1296.743,
- "text": "the"
- },
- {
- "id": 3240,
- "start": 1296.868,
- "end": 1297.0430000000001,
- "text": "ALS"
- },
- {
- "id": 3241,
- "start": 1297.193,
- "end": 1297.343,
- "text": "Ice"
- },
- {
- "id": 3242,
- "start": 1297.343,
- "end": 1297.623,
- "text": "Bucket"
- },
- {
- "id": 3243,
- "start": 1297.728,
- "end": 1298.0304999999998,
- "text": "Challenge,"
- },
- {
- "id": 3244,
- "start": 1298.113,
- "end": 1298.4379999999999,
- "text": "the"
- },
- {
- "id": 3245,
- "start": 1298.498,
- "end": 1298.8455,
- "text": "ALS"
- },
- {
- "id": 3246,
- "start": 1298.883,
- "end": 1299.253,
- "text": "website"
- },
- {
- "id": 3247,
- "start": 1299.253,
- "end": 1299.613,
- "text": "actually"
- },
- {
- "id": 3248,
- "start": 1299.613,
- "end": 1300.943,
- "text": "crashed."
- },
- {
- "id": 3249,
- "start": 1300.943,
- "end": 1301.153,
- "text": "We"
- },
- {
- "id": 3250,
- "start": 1301.153,
- "end": 1301.273,
- "text": "can"
- },
- {
- "id": 3251,
- "start": 1301.273,
- "end": 1301.433,
- "text": "do"
- },
- {
- "id": 3252,
- "start": 1301.433,
- "end": 1302.143,
- "text": "more."
- },
- {
- "id": 3253,
- "start": 1302.143,
- "end": 1302.333,
- "text": "We"
- },
- {
- "id": 3254,
- "start": 1302.333,
- "end": 1302.483,
- "text": "can"
- },
- {
- "id": 3255,
- "start": 1302.483,
- "end": 1302.773,
- "text": "actually"
- },
- {
- "id": 3256,
- "start": 1302.773,
- "end": 1303.263,
- "text": "process"
- },
- {
- "id": 3257,
- "start": 1303.263,
- "end": 1303.763,
- "text": "that"
- },
- {
- "id": 3258,
- "start": 1303.763,
- "end": 1304.463,
- "text": "donation"
- },
- {
- "id": 3259,
- "start": 1304.463,
- "end": 1304.723,
- "text": "on"
- },
- {
- "id": 3260,
- "start": 1304.723,
- "end": 1305.443,
- "text": "Facebook"
- },
- {
- "id": 3261,
- "start": 1305.443,
- "end": 1305.913,
- "text": "because"
- },
- {
- "id": 3262,
- "start": 1305.913,
- "end": 1306.033,
- "text": "we"
- },
- {
- "id": 3263,
- "start": 1306.033,
- "end": 1306.133,
- "text": "have"
- },
- {
- "id": 3264,
- "start": 1306.133,
- "end": 1306.183,
- "text": "a"
- },
- {
- "id": 3265,
- "start": 1306.183,
- "end": 1306.413,
- "text": "great"
- },
- {
- "id": 3266,
- "start": 1306.413,
- "end": 1306.783,
- "text": "payment"
- },
- {
- "id": 3267,
- "start": 1306.783,
- "end": 1307.273,
- "text": "system."
- },
- {
- "id": 3268,
- "start": 1307.273,
- "end": 1307.403,
- "text": "The"
- },
- {
- "id": 3269,
- "start": 1307.513,
- "end": 1307.7830000000001,
- "text": "ALS"
- },
- {
- "id": 3270,
- "start": 1307.753,
- "end": 1308.163,
- "text": "website"
- },
- {
- "id": 3271,
- "start": 1308.163,
- "end": 1308.273,
- "text": "is"
- },
- {
- "id": 3272,
- "start": 1308.273,
- "end": 1308.653,
- "text": "not"
- },
- {
- "id": 3273,
- "start": 1308.943,
- "end": 1309.163,
- "text": "optimizing"
- },
- {
- "id": 3274,
- "start": 1309.613,
- "end": 1309.673,
- "text": "a"
- },
- {
- "id": 3275,
- "start": 1309.673,
- "end": 1310.013,
- "text": "global"
- },
- {
- "id": 3276,
- "start": 1310.013,
- "end": 1310.623,
- "text": "infrastructure"
- },
- {
- "id": 3277,
- "start": 1310.623,
- "end": 1310.763,
- "text": "for"
- },
- {
- "id": 3278,
- "start": 1310.763,
- "end": 1311.643,
- "text": "payments."
- },
- {
- "id": 3279,
- "start": 1311.303,
- "end": 1311.843,
- "text": "Those"
- },
- {
- "id": 3280,
- "start": 1311.6180000000002,
- "end": 1312.0030000000002,
- "text": "are"
- },
- {
- "id": 3281,
- "start": 1311.933,
- "end": 1312.163,
- "text": "just"
- },
- {
- "id": 3282,
- "start": 1312.163,
- "end": 1312.753,
- "text": "examples"
- },
- {
- "id": 3283,
- "start": 1312.753,
- "end": 1312.853,
- "text": "of"
- },
- {
- "id": 3284,
- "start": 1312.853,
- "end": 1312.933,
- "text": "the"
- },
- {
- "id": 3285,
- "start": 1312.933,
- "end": 1313.673,
- "text": "responsibility"
- },
- {
- "id": 3286,
- "start": 1313.673,
- "end": 1313.823,
- "text": "that"
- },
- {
- "id": 3287,
- "start": 1313.823,
- "end": 1313.963,
- "text": "we"
- },
- {
- "id": 3288,
- "start": 1313.963,
- "end": 1314.953,
- "text": "felt,"
- },
- {
- "id": 3289,
- "start": 1314.953,
- "end": 1315.083,
- "text": "the"
- },
- {
- "id": 3290,
- "start": 1315.083,
- "end": 1315.593,
- "text": "opportunity"
- },
- {
- "id": 3291,
- "start": 1315.593,
- "end": 1315.783,
- "text": "that"
- },
- {
- "id": 3292,
- "start": 1315.783,
- "end": 1316.003,
- "text": "we"
- },
- {
- "id": 3293,
- "start": 1316.003,
- "end": 1317.263,
- "text": "saw"
- },
- {
- "id": 3294,
- "start": 1317.263,
- "end": 1317.503,
- "text": "to"
- },
- {
- "id": 3295,
- "start": 1317.503,
- "end": 1317.703,
- "text": "make"
- },
- {
- "id": 3296,
- "start": 1317.703,
- "end": 1317.913,
- "text": "this"
- },
- {
- "id": 3297,
- "start": 1317.913,
- "end": 1318.123,
- "text": "even"
- },
- {
- "id": 3298,
- "start": 1318.123,
- "end": 1318.493,
- "text": "easier"
- },
- {
- "id": 3299,
- "start": 1318.493,
- "end": 1318.603,
- "text": "on"
- },
- {
- "id": 3300,
- "start": 1318.603,
- "end": 1318.713,
- "text": "our"
- },
- {
- "id": 3301,
- "start": 1319.4229999999998,
- "end": 1319.7830000000004,
- "text": "platform."
- },
- {
- "id": 3302,
- "start": 1320.243,
- "end": 1320.853,
- "text": "Has"
- },
- {
- "id": 3303,
- "start": 1320.853,
- "end": 1321.033,
- "text": "there"
- },
- {
- "id": 3304,
- "start": 1321.033,
- "end": 1321.283,
- "text": "ever"
- },
- {
- "id": 3305,
- "start": 1321.283,
- "end": 1321.473,
- "text": "been"
- },
- {
- "id": 3306,
- "start": 1321.473,
- "end": 1321.523,
- "text": "a"
- },
- {
- "id": 3307,
- "start": 1321.523,
- "end": 1321.893,
- "text": "minute"
- },
- {
- "id": 3308,
- "start": 1321.883,
- "end": 1322.063,
- "text": "where"
- },
- {
- "id": 3309,
- "start": 1322.093,
- "end": 1322.468,
- "text": "you"
- },
- {
- "id": 3310,
- "start": 1322.303,
- "end": 1322.873,
- "text": "questioned"
- },
- {
- "id": 3311,
- "start": 1322.873,
- "end": 1322.953,
- "text": "the"
- },
- {
- "id": 3312,
- "start": 1322.953,
- "end": 1323.773,
- "text": "mission,"
- },
- {
- "id": 3313,
- "start": 1323.773,
- "end": 1324.043,
- "text": "that"
- },
- {
- "id": 3314,
- "start": 1324.043,
- "end": 1324.223,
- "text": "this"
- },
- {
- "id": 3315,
- "start": 1324.223,
- "end": 1324.373,
- "text": "is"
- },
- {
- "id": 3316,
- "start": 1325.1129999999998,
- "end": 1325.268,
- "text": "actually—you"
- },
- {
- "id": 3317,
- "start": 1326.003,
- "end": 1326.163,
- "text": "know,"
- },
- {
- "id": 3318,
- "start": 1326.163,
- "end": 1326.513,
- "text": "in"
- },
- {
- "id": 3319,
- "start": 1326.513,
- "end": 1326.853,
- "text": "terms"
- },
- {
- "id": 3320,
- "start": 1326.853,
- "end": 1327.223,
- "text": "of"
- },
- {
- "id": 3321,
- "start": 1327.223,
- "end": 1327.543,
- "text": "what’s"
- },
- {
- "id": 3322,
- "start": 1327.543,
- "end": 1327.933,
- "text": "happened"
- },
- {
- "id": 3323,
- "start": 1327.933,
- "end": 1328.083,
- "text": "over"
- },
- {
- "id": 3324,
- "start": 1328.083,
- "end": 1328.193,
- "text": "the"
- },
- {
- "id": 3325,
- "start": 1328.193,
- "end": 1328.483,
- "text": "past"
- },
- {
- "id": 3326,
- "start": 1328.483,
- "end": 1328.743,
- "text": "couple"
- },
- {
- "id": 3327,
- "start": 1328.743,
- "end": 1328.833,
- "text": "of"
- },
- {
- "id": 3328,
- "start": 1328.833,
- "end": 1329.203,
- "text": "years?"
- },
- {
- "id": 3329,
- "start": 1329.203,
- "end": 1329.373,
- "text": "If"
- },
- {
- "id": 3330,
- "start": 1329.373,
- "end": 1329.473,
- "text": "you"
- },
- {
- "id": 3331,
- "start": 1329.473,
- "end": 1329.733,
- "text": "see"
- },
- {
- "id": 3332,
- "start": 1329.733,
- "end": 1329.933,
- "text": "what’s"
- },
- {
- "id": 3333,
- "start": 1329.933,
- "end": 1330.763,
- "text": "happened"
- },
- {
- "id": 3334,
- "start": 1330.763,
- "end": 1331.013,
- "text": "on"
- },
- {
- "id": 3335,
- "start": 1331.013,
- "end": 1331.093,
- "text": "the"
- },
- {
- "id": 3336,
- "start": 1331.093,
- "end": 1331.663,
- "text": "platform"
- },
- {
- "id": 3337,
- "start": 1331.663,
- "end": 1331.753,
- "text": "in"
- },
- {
- "id": 3338,
- "start": 1331.753,
- "end": 1331.823,
- "text": "a"
- },
- {
- "id": 3339,
- "start": 1331.823,
- "end": 1332.123,
- "text": "place"
- },
- {
- "id": 3340,
- "start": 1332.123,
- "end": 1332.353,
- "text": "like"
- },
- {
- "id": 3341,
- "start": 1332.353,
- "end": 1333.203,
- "text": "Myanmar"
- },
- {
- "id": 3342,
- "start": 1333.203,
- "end": 1333.383,
- "text": "or"
- },
- {
- "id": 3343,
- "start": 1333.383,
- "end": 1333.503,
- "text": "you"
- },
- {
- "id": 3344,
- "start": 1333.503,
- "end": 1333.733,
- "text": "see"
- },
- {
- "id": 3345,
- "start": 1333.733,
- "end": 1333.863,
- "text": "what"
- },
- {
- "id": 3346,
- "start": 1333.863,
- "end": 1334.623,
- "text": "happened"
- },
- {
- "id": 3347,
- "start": 1334.623,
- "end": 1334.883,
- "text": "during"
- },
- {
- "id": 3348,
- "start": 1334.883,
- "end": 1334.963,
- "text": "the"
- },
- {
- "id": 3349,
- "start": 1334.963,
- "end": 1335.483,
- "text": "elections"
- },
- {
- "id": 3350,
- "start": 1335.483,
- "end": 1337.133,
- "text": "here,"
- },
- {
- "id": 3351,
- "start": 1337.133,
- "end": 1337.493,
- "text": "there’s"
- },
- {
- "id": 3352,
- "start": 1337.493,
- "end": 1337.803,
- "text": "almost"
- },
- {
- "id": 3353,
- "start": 1337.803,
- "end": 1337.963,
- "text": "this"
- },
- {
- "id": 3354,
- "start": 1337.963,
- "end": 1338.703,
- "text": "evangelism"
- },
- {
- "id": 3355,
- "start": 1338.703,
- "end": 1339.242,
- "text": "around"
- },
- {
- "id": 3356,
- "start": 1339.193,
- "end": 1339.732,
- "text": "Mark’s"
- },
- {
- "id": 3357,
- "start": 1339.9175000000002,
- "end": 1340.3220000000001,
- "text": "mission,"
- },
- {
- "id": 3358,
- "start": 1340.642,
- "end": 1340.912,
- "text": "and"
- },
- {
- "id": 3359,
- "start": 1340.912,
- "end": 1341.012,
- "text": "I’m"
- },
- {
- "id": 3360,
- "start": 1341.012,
- "end": 1341.262,
- "text": "just"
- },
- {
- "id": 3361,
- "start": 1341.262,
- "end": 1342.352,
- "text": "wondering,"
- },
- {
- "id": 3362,
- "start": 1342.352,
- "end": 1343.062,
- "text": "internally"
- },
- {
- "id": 3363,
- "start": 1343.062,
- "end": 1343.272,
- "text": "for"
- },
- {
- "id": 3364,
- "start": 1343.272,
- "end": 1343.552,
- "text": "you"
- },
- {
- "id": 3365,
- "start": 1343.552,
- "end": 1344.162,
- "text": "personally"
- },
- {
- "id": 3366,
- "start": 1344.162,
- "end": 1344.342,
- "text": "or"
- },
- {
- "id": 3367,
- "start": 1344.567,
- "end": 1345.1019999999999,
- "text": "here,"
- },
- {
- "id": 3368,
- "start": 1344.972,
- "end": 1345.862,
- "text": "whether"
- },
- {
- "id": 3369,
- "start": 1345.862,
- "end": 1346.232,
- "text": "anyone"
- },
- {
- "id": 3370,
- "start": 1346.232,
- "end": 1346.492,
- "text": "has"
- },
- {
- "id": 3371,
- "start": 1346.9869999999996,
- "end": 1347.1419999999996,
- "text": "taken"
- },
- {
- "id": 3372,
- "start": 1347.742,
- "end": 1347.792,
- "text": "a"
- },
- {
- "id": 3373,
- "start": 1347.792,
- "end": 1348.312,
- "text": "second"
- },
- {
- "id": 3374,
- "start": 1348.312,
- "end": 1348.422,
- "text": "to"
- },
- {
- "id": 3375,
- "start": 1348.422,
- "end": 1348.712,
- "text": "step"
- },
- {
- "id": 3376,
- "start": 1348.712,
- "end": 1348.992,
- "text": "back"
- },
- {
- "id": 3377,
- "start": 1348.992,
- "end": 1349.112,
- "text": "and"
- },
- {
- "id": 3378,
- "start": 1349.112,
- "end": 1349.352,
- "text": "say:"
- },
- {
- "id": 3379,
- "start": 1349.352,
- "end": 1349.412,
- "text": "“All"
- },
- {
- "id": 3380,
- "start": 1349.412,
- "end": 1350.432,
- "text": "right,"
- },
- {
- "id": 3381,
- "start": 1350.432,
- "end": 1350.582,
- "text": "is"
- },
- {
- "id": 3382,
- "start": 1350.582,
- "end": 1351.242,
- "text": "this"
- },
- {
- "id": 3383,
- "start": 1351.242,
- "end": 1351.442,
- "text": "for"
- },
- {
- "id": 3384,
- "start": 1351.442,
- "end": 1351.762,
- "text": "real?"
- },
- {
- "id": 3385,
- "start": 1351.762,
- "end": 1351.932,
- "text": "Has"
- },
- {
- "id": 3386,
- "start": 1351.932,
- "end": 1352.102,
- "text": "this"
- },
- {
- "id": 3387,
- "start": 1352.102,
- "end": 1352.592,
- "text": "blinded"
- },
- {
- "id": 3388,
- "start": 1352.592,
- "end": 1352.752,
- "text": "us"
- },
- {
- "id": 3389,
- "start": 1352.752,
- "end": 1352.872,
- "text": "in"
- },
- {
- "id": 3390,
- "start": 1352.872,
- "end": 1353.152,
- "text": "some"
- },
- {
- "id": 3391,
- "start": 1353.152,
- "end": 1354.042,
- "text": "way?”"
- },
- {
- "id": 3392,
- "start": 1354.042,
- "end": 1354.202,
- "text": "Have"
- },
- {
- "id": 3393,
- "start": 1354.202,
- "end": 1354.332,
- "text": "you"
- },
- {
- "id": 3394,
- "start": 1354.332,
- "end": 1354.522,
- "text": "had"
- },
- {
- "id": 3395,
- "start": 1354.522,
- "end": 1354.572,
- "text": "a"
- },
- {
- "id": 3396,
- "start": 1354.572,
- "end": 1354.932,
- "text": "moment"
- },
- {
- "id": 3397,
- "start": 1354.932,
- "end": 1355.132,
- "text": "like"
- },
- {
- "id": 3398,
- "start": 1355.132,
- "end": 1356.452,
- "text": "that?"
- },
- {
- "id": 3399,
- "start": 1356.452,
- "end": 1356.662,
- "text": "I"
- },
- {
- "id": 3400,
- "start": 1356.662,
- "end": 1358.492,
- "text": "still"
- },
- {
- "id": 3401,
- "start": 1358.492,
- "end": 1358.922,
- "text": "continue"
- },
- {
- "id": 3402,
- "start": 1358.922,
- "end": 1359.002,
- "text": "to"
- },
- {
- "id": 3403,
- "start": 1359.002,
- "end": 1359.332,
- "text": "firmly"
- },
- {
- "id": 3404,
- "start": 1359.332,
- "end": 1359.662,
- "text": "believe"
- },
- {
- "id": 3405,
- "start": 1359.662,
- "end": 1359.762,
- "text": "in"
- },
- {
- "id": 3406,
- "start": 1359.762,
- "end": 1359.832,
- "text": "the"
- },
- {
- "id": 3407,
- "start": 1359.832,
- "end": 1360.152,
- "text": "mission."
- },
- {
- "id": 3408,
- "start": 1360.152,
- "end": 1360.212,
- "text": "I"
- },
- {
- "id": 3409,
- "start": 1360.212,
- "end": 1360.402,
- "text": "wouldn’t"
- },
- {
- "id": 3410,
- "start": 1360.402,
- "end": 1360.542,
- "text": "be"
- },
- {
- "id": 3411,
- "start": 1360.542,
- "end": 1360.772,
- "text": "here"
- },
- {
- "id": 3412,
- "start": 1360.772,
- "end": 1360.962,
- "text": "if"
- },
- {
- "id": 3413,
- "start": 1360.962,
- "end": 1361.042,
- "text": "I"
- },
- {
- "id": 3414,
- "start": 1361.042,
- "end": 1362.652,
- "text": "didn’t."
- },
- {
- "id": 3415,
- "start": 1362.652,
- "end": 1362.772,
- "text": "I"
- },
- {
- "id": 3416,
- "start": 1362.772,
- "end": 1363.272,
- "text": "don’t"
- },
- {
- "id": 3417,
- "start": 1363.272,
- "end": 1363.462,
- "text": "think"
- },
- {
- "id": 3418,
- "start": 1363.467,
- "end": 1363.7069999999999,
- "text": "there’s"
- },
- {
- "id": 3419,
- "start": 1363.662,
- "end": 1363.952,
- "text": "anywhere"
- },
- {
- "id": 3420,
- "start": 1363.952,
- "end": 1364.152,
- "text": "else"
- },
- {
- "id": 3421,
- "start": 1364.152,
- "end": 1364.202,
- "text": "I"
- },
- {
- "id": 3422,
- "start": 1364.202,
- "end": 1364.392,
- "text": "could"
- },
- {
- "id": 3423,
- "start": 1364.392,
- "end": 1364.642,
- "text": "go"
- },
- {
- "id": 3424,
- "start": 1364.642,
- "end": 1364.732,
- "text": "to"
- },
- {
- "id": 3425,
- "start": 1364.732,
- "end": 1364.972,
- "text": "have"
- },
- {
- "id": 3426,
- "start": 1364.972,
- "end": 1365.082,
- "text": "the"
- },
- {
- "id": 3427,
- "start": 1365.082,
- "end": 1365.442,
- "text": "kind"
- },
- {
- "id": 3428,
- "start": 1365.442,
- "end": 1365.552,
- "text": "of"
- },
- {
- "id": 3429,
- "start": 1365.552,
- "end": 1366.022,
- "text": "impact"
- },
- {
- "id": 3430,
- "start": 1366.022,
- "end": 1366.142,
- "text": "that"
- },
- {
- "id": 3431,
- "start": 1366.142,
- "end": 1366.202,
- "text": "I"
- },
- {
- "id": 3432,
- "start": 1366.202,
- "end": 1366.622,
- "text": "have"
- },
- {
- "id": 3433,
- "start": 1366.622,
- "end": 1368.642,
- "text": "here."
- },
- {
- "id": 3434,
- "start": 1368.642,
- "end": 1369.002,
- "text": "But"
- },
- {
- "id": 3435,
- "start": 1369.002,
- "end": 1369.142,
- "text": "in"
- },
- {
- "id": 3436,
- "start": 1369.142,
- "end": 1369.512,
- "text": "terms"
- },
- {
- "id": 3437,
- "start": 1369.512,
- "end": 1369.702,
- "text": "of"
- },
- {
- "id": 3438,
- "start": 1369.702,
- "end": 1370.132,
- "text": "stepping"
- },
- {
- "id": 3439,
- "start": 1370.132,
- "end": 1370.522,
- "text": "back,"
- },
- {
- "id": 3440,
- "start": 1370.522,
- "end": 1370.692,
- "text": "in"
- },
- {
- "id": 3441,
- "start": 1370.692,
- "end": 1371.142,
- "text": "terms"
- },
- {
- "id": 3442,
- "start": 1371.142,
- "end": 1371.322,
- "text": "of"
- },
- {
- "id": 3443,
- "start": 1371.322,
- "end": 1372.512,
- "text": "reflecting,"
- },
- {
- "id": 3444,
- "start": 1372.512,
- "end": 1373.792,
- "text": "absolutely."
- },
- {
- "id": 3445,
- "start": 1373.792,
- "end": 1373.852,
- "text": "I"
- },
- {
- "id": 3446,
- "start": 1373.852,
- "end": 1374.112,
- "text": "think"
- },
- {
- "id": 3447,
- "start": 1374.112,
- "end": 1374.272,
- "text": "I’ve"
- },
- {
- "id": 3448,
- "start": 1374.272,
- "end": 1374.532,
- "text": "done"
- },
- {
- "id": 3449,
- "start": 1374.862,
- "end": 1375.1719999999998,
- "text": "that;"
- },
- {
- "id": 3450,
- "start": 1375.452,
- "end": 1375.812,
- "text": "Mark’s"
- },
- {
- "id": 3451,
- "start": 1375.742,
- "end": 1376.262,
- "text": "done"
- },
- {
- "id": 3452,
- "start": 1376.032,
- "end": 1376.712,
- "text": "that;"
- },
- {
- "id": 3453,
- "start": 1376.712,
- "end": 1377.332,
- "text": "leadership"
- },
- {
- "id": 3454,
- "start": 1377.332,
- "end": 1377.512,
- "text": "team"
- },
- {
- "id": 3455,
- "start": 1377.512,
- "end": 1377.642,
- "text": "has"
- },
- {
- "id": 3456,
- "start": 1377.642,
- "end": 1377.812,
- "text": "done"
- },
- {
- "id": 3457,
- "start": 1377.812,
- "end": 1377.942,
- "text": "that."
- },
- {
- "id": 3458,
- "start": 1377.942,
- "end": 1378.072,
- "text": "We’ve"
- },
- {
- "id": 3459,
- "start": 1378.072,
- "end": 1378.212,
- "text": "all"
- },
- {
- "id": 3460,
- "start": 1378.212,
- "end": 1378.392,
- "text": "done"
- },
- {
- "id": 3461,
- "start": 1378.392,
- "end": 1378.572,
- "text": "that"
- },
- {
- "id": 3462,
- "start": 1378.572,
- "end": 1379.282,
- "text": "here,"
- },
- {
- "id": 3463,
- "start": 1379.282,
- "end": 1379.502,
- "text": "but"
- },
- {
- "id": 3464,
- "start": 1379.502,
- "end": 1379.722,
- "text": "that"
- },
- {
- "id": 3465,
- "start": 1379.722,
- "end": 1380.102,
- "text": "isn’t"
- },
- {
- "id": 3466,
- "start": 1380.102,
- "end": 1380.272,
- "text": "on"
- },
- {
- "id": 3467,
- "start": 1380.272,
- "end": 1380.352,
- "text": "the"
- },
- {
- "id": 3468,
- "start": 1380.352,
- "end": 1380.912,
- "text": "mission."
- },
- {
- "id": 3469,
- "start": 1380.912,
- "end": 1381.002,
- "text": "The"
- },
- {
- "id": 3470,
- "start": 1381.002,
- "end": 1381.562,
- "text": "reflection"
- },
- {
- "id": 3471,
- "start": 1381.562,
- "end": 1381.772,
- "text": "is"
- },
- {
- "id": 3472,
- "start": 1381.772,
- "end": 1382.092,
- "text": "really"
- },
- {
- "id": 3473,
- "start": 1382.3220000000001,
- "end": 1382.7019999999998,
- "text": "about"
- },
- {
- "id": 3474,
- "start": 1382.872,
- "end": 1383.312,
- "text": "how"
- },
- {
- "id": 3475,
- "start": 1383.312,
- "end": 1383.572,
- "text": "can"
- },
- {
- "id": 3476,
- "start": 1383.572,
- "end": 1383.692,
- "text": "we"
- },
- {
- "id": 3477,
- "start": 1383.692,
- "end": 1383.822,
- "text": "do"
- },
- {
- "id": 3478,
- "start": 1383.822,
- "end": 1383.892,
- "text": "a"
- },
- {
- "id": 3479,
- "start": 1383.892,
- "end": 1384.102,
- "text": "better"
- },
- {
- "id": 3480,
- "start": 1384.102,
- "end": 1384.362,
- "text": "job"
- },
- {
- "id": 3481,
- "start": 1384.4053333333334,
- "end": 1384.642,
- "text": "at"
- },
- {
- "id": 3482,
- "start": 1384.7086666666667,
- "end": 1384.922,
- "text": "minimizing"
- },
- {
- "id": 3483,
- "start": 1385.012,
- "end": 1385.202,
- "text": "bad"
- },
- {
- "id": 3484,
- "start": 1385.202,
- "end": 1385.982,
- "text": "experiences"
- },
- {
- "id": 3485,
- "start": 1385.982,
- "end": 1386.132,
- "text": "on"
- },
- {
- "id": 3486,
- "start": 1386.132,
- "end": 1387.242,
- "text": "Facebook."
- },
- {
- "id": 3487,
- "start": 1387.242,
- "end": 1387.512,
- "text": "And"
- },
- {
- "id": 3488,
- "start": 1387.512,
- "end": 1387.712,
- "text": "why"
- },
- {
- "id": 3489,
- "start": 1387.712,
- "end": 1388.092,
- "text": "wasn’t"
- },
- {
- "id": 3490,
- "start": 1388.092,
- "end": 1388.322,
- "text": "that"
- },
- {
- "id": 3491,
- "start": 1388.322,
- "end": 1388.592,
- "text": "part"
- },
- {
- "id": 3492,
- "start": 1388.592,
- "end": 1388.672,
- "text": "of"
- },
- {
- "id": 3493,
- "start": 1388.672,
- "end": 1388.762,
- "text": "the"
- },
- {
- "id": 3494,
- "start": 1388.762,
- "end": 1389.212,
- "text": "metric"
- },
- {
- "id": 3495,
- "start": 1389.212,
- "end": 1390.172,
- "text": "earlier"
- },
- {
- "id": 3496,
- "start": 1390.172,
- "end": 1390.322,
- "text": "in"
- },
- {
- "id": 3497,
- "start": 1390.322,
- "end": 1390.632,
- "text": "terms"
- },
- {
- "id": 3498,
- "start": 1390.632,
- "end": 1390.742,
- "text": "of"
- },
- {
- "id": 3499,
- "start": 1390.742,
- "end": 1390.932,
- "text": "how"
- },
- {
- "id": 3500,
- "start": 1390.932,
- "end": 1391.042,
- "text": "do"
- },
- {
- "id": 3501,
- "start": 1391.042,
- "end": 1391.162,
- "text": "you"
- },
- {
- "id": 3502,
- "start": 1391.3819999999998,
- "end": 1391.497,
- "text": "minimize"
- },
- {
- "id": 3503,
- "start": 1391.722,
- "end": 1391.832,
- "text": "the"
- },
- {
- "id": 3504,
- "start": 1391.832,
- "end": 1396.092,
- "text": "harm?"
- },
- {
- "id": 3505,
- "start": 1396.092,
- "end": 1396.372,
- "text": "As"
- },
- {
- "id": 3506,
- "start": 1396.372,
- "end": 1396.462,
- "text": "I"
- },
- {
- "id": 3507,
- "start": 1396.462,
- "end": 1397.442,
- "text": "said,"
- },
- {
- "id": 3508,
- "start": 1397.442,
- "end": 1397.602,
- "text": "it’s"
- },
- {
- "id": 3509,
- "start": 1397.602,
- "end": 1398.092,
- "text": "possible"
- },
- {
- "id": 3510,
- "start": 1398.092,
- "end": 1399.142,
- "text": "that"
- },
- {
- "id": 3511,
- "start": 1399.142,
- "end": 1399.362,
- "text": "we"
- },
- {
- "id": 3512,
- "start": 1399.362,
- "end": 1399.532,
- "text": "could"
- },
- {
- "id": 3513,
- "start": 1399.532,
- "end": 1399.632,
- "text": "have"
- },
- {
- "id": 3514,
- "start": 1399.632,
- "end": 1399.792,
- "text": "done"
- },
- {
- "id": 3515,
- "start": 1399.792,
- "end": 1399.982,
- "text": "more"
- },
- {
- "id": 3516,
- "start": 1399.982,
- "end": 1401.002,
- "text": "sooner,"
- },
- {
- "id": 3517,
- "start": 1401.002,
- "end": 1401.172,
- "text": "and"
- },
- {
- "id": 3518,
- "start": 1401.172,
- "end": 1401.262,
- "text": "we"
- },
- {
- "id": 3519,
- "start": 1401.262,
- "end": 1401.512,
- "text": "haven’t"
- },
- {
- "id": 3520,
- "start": 1401.512,
- "end": 1401.632,
- "text": "been"
- },
- {
- "id": 3521,
- "start": 1401.632,
- "end": 1401.772,
- "text": "as"
- },
- {
- "id": 3522,
- "start": 1401.772,
- "end": 1402.122,
- "text": "fast"
- },
- {
- "id": 3523,
- "start": 1402.122,
- "end": 1402.252,
- "text": "as"
- },
- {
- "id": 3524,
- "start": 1402.252,
- "end": 1402.352,
- "text": "we"
- },
- {
- "id": 3525,
- "start": 1402.352,
- "end": 1402.582,
- "text": "needed"
- },
- {
- "id": 3526,
- "start": 1402.582,
- "end": 1402.682,
- "text": "to"
- },
- {
- "id": 3527,
- "start": 1402.682,
- "end": 1404.112,
- "text": "be,"
- },
- {
- "id": 3528,
- "start": 1404.112,
- "end": 1404.382,
- "text": "but"
- },
- {
- "id": 3529,
- "start": 1404.382,
- "end": 1404.522,
- "text": "we’re"
- },
- {
- "id": 3530,
- "start": 1404.522,
- "end": 1404.732,
- "text": "really"
- },
- {
- "id": 3531,
- "start": 1404.732,
- "end": 1405.172,
- "text": "focused"
- },
- {
- "id": 3532,
- "start": 1405.172,
- "end": 1405.302,
- "text": "on"
- },
- {
- "id": 3533,
- "start": 1405.302,
- "end": 1405.422,
- "text": "it"
- },
- {
- "id": 3534,
- "start": 1405.422,
- "end": 1406.062,
- "text": "now."
- },
- {
- "id": 3535,
- "start": 1406.062,
- "end": 1406.142,
- "text": "I"
- },
- {
- "id": 3536,
- "start": 1406.142,
- "end": 1406.472,
- "text": "know,"
- },
- {
- "id": 3537,
- "start": 1406.472,
- "end": 1406.512,
- "text": "I"
- },
- {
- "id": 3538,
- "start": 1406.512,
- "end": 1406.792,
- "text": "know,"
- },
- {
- "id": 3539,
- "start": 1406.792,
- "end": 1406.822,
- "text": "I"
- },
- {
- "id": 3540,
- "start": 1406.822,
- "end": 1407.002,
- "text": "know."
- },
- {
- "id": 3541,
- "start": 1407.002,
- "end": 1407.122,
- "text": "But"
- },
- {
- "id": 3542,
- "start": 1407.122,
- "end": 1407.222,
- "text": "I’m"
- },
- {
- "id": 3543,
- "start": 1407.222,
- "end": 1407.432,
- "text": "just"
- },
- {
- "id": 3544,
- "start": 1407.432,
- "end": 1407.792,
- "text": "curious"
- },
- {
- "id": 3545,
- "start": 1407.792,
- "end": 1408.062,
- "text": "about"
- },
- {
- "id": 3546,
- "start": 1408.062,
- "end": 1408.372,
- "text": "going"
- },
- {
- "id": 3547,
- "start": 1408.372,
- "end": 1408.932,
- "text": "back,"
- },
- {
- "id": 3548,
- "start": 1408.932,
- "end": 1409.072,
- "text": "you"
- },
- {
- "id": 3549,
- "start": 1409.072,
- "end": 1409.952,
- "text": "know,"
- },
- {
- "id": 3550,
- "start": 1409.952,
- "end": 1410.122,
- "text": "an"
- },
- {
- "id": 3551,
- "start": 1410.122,
- "end": 1410.552,
- "text": "honest"
- },
- {
- "id": 3552,
- "start": 1410.552,
- "end": 1411.062,
- "text": "accounting,"
- },
- {
- "id": 3553,
- "start": 1411.062,
- "end": 1411.462,
- "text": "because"
- },
- {
- "id": 3554,
- "start": 1411.462,
- "end": 1411.592,
- "text": "the"
- },
- {
- "id": 3555,
- "start": 1411.592,
- "end": 1411.782,
- "text": "whole"
- },
- {
- "id": 3556,
- "start": 1411.782,
- "end": 1412.142,
- "text": "point"
- },
- {
- "id": 3557,
- "start": 1412.142,
- "end": 1412.272,
- "text": "of"
- },
- {
- "id": 3558,
- "start": 1412.272,
- "end": 1412.482,
- "text": "this"
- },
- {
- "id": 3559,
- "start": 1412.482,
- "end": 1412.892,
- "text": "is"
- },
- {
- "id": 3560,
- "start": 1412.892,
- "end": 1413.352,
- "text": "we’re"
- },
- {
- "id": 3561,
- "start": 1413.352,
- "end": 1413.682,
- "text": "going"
- },
- {
- "id": 3562,
- "start": 1413.682,
- "end": 1413.932,
- "text": "through"
- },
- {
- "id": 3563,
- "start": 1413.932,
- "end": 1414.012,
- "text": "a"
- },
- {
- "id": 3564,
- "start": 1414.012,
- "end": 1414.452,
- "text": "history"
- },
- {
- "id": 3565,
- "start": 1414.452,
- "end": 1414.552,
- "text": "of"
- },
- {
- "id": 3566,
- "start": 1414.552,
- "end": 1414.732,
- "text": "this"
- },
- {
- "id": 3567,
- "start": 1414.732,
- "end": 1415.562,
- "text": "company"
- },
- {
- "id": 3568,
- "start": 1415.562,
- "end": 1415.682,
- "text": "to"
- },
- {
- "id": 3569,
- "start": 1415.682,
- "end": 1415.902,
- "text": "some"
- },
- {
- "id": 3570,
- "start": 1415.902,
- "end": 1416.442,
- "text": "degree"
- },
- {
- "id": 3571,
- "start": 1416.442,
- "end": 1417.002,
- "text": "and"
- },
- {
- "id": 3572,
- "start": 1417.002,
- "end": 1417.392,
- "text": "trying"
- },
- {
- "id": 3573,
- "start": 1417.392,
- "end": 1417.472,
- "text": "to"
- },
- {
- "id": 3574,
- "start": 1417.472,
- "end": 1419.942,
- "text": "understand"
- },
- {
- "id": 3575,
- "start": 1419.942,
- "end": 1420.502,
- "text": "the"
- },
- {
- "id": 3576,
- "start": 1420.502,
- "end": 1421.222,
- "text": "choices"
- },
- {
- "id": 3577,
- "start": 1421.222,
- "end": 1421.372,
- "text": "that"
- },
- {
- "id": 3578,
- "start": 1421.372,
- "end": 1421.462,
- "text": "are"
- },
- {
- "id": 3579,
- "start": 1421.462,
- "end": 1421.842,
- "text": "made"
- },
- {
- "id": 3580,
- "start": 1421.842,
- "end": 1422.372,
- "text": "along"
- },
- {
- "id": 3581,
- "start": 1422.372,
- "end": 1422.452,
- "text": "the"
- },
- {
- "id": 3582,
- "start": 1422.452,
- "end": 1422.752,
- "text": "way,"
- },
- {
- "id": 3583,
- "start": 1422.752,
- "end": 1424.342,
- "text": "because"
- },
- {
- "id": 3584,
- "start": 1424.342,
- "end": 1424.852,
- "text": "it’s"
- },
- {
- "id": 3585,
- "start": 1424.852,
- "end": 1425.072,
- "text": "not"
- },
- {
- "id": 3586,
- "start": 1425.072,
- "end": 1425.302,
- "text": "just"
- },
- {
- "id": 3587,
- "start": 1425.302,
- "end": 1425.502,
- "text": "not"
- },
- {
- "id": 3588,
- "start": 1425.502,
- "end": 1425.792,
- "text": "paying"
- },
- {
- "id": 3589,
- "start": 1425.792,
- "end": 1426.312,
- "text": "attention"
- },
- {
- "id": 3590,
- "start": 1426.312,
- "end": 1426.422,
- "text": "to"
- },
- {
- "id": 3591,
- "start": 1426.552,
- "end": 1426.687,
- "text": "things;"
- },
- {
- "id": 3592,
- "start": 1426.792,
- "end": 1426.952,
- "text": "it’s"
- },
- {
- "id": 3593,
- "start": 1426.952,
- "end": 1427.202,
- "text": "not"
- },
- {
- "id": 3594,
- "start": 1427.202,
- "end": 1427.452,
- "text": "just"
- },
- {
- "id": 3595,
- "start": 1427.9619999999998,
- "end": 1428.2170000000003,
- "text": "naiveté."
- },
- {
- "id": 3596,
- "start": 1428.722,
- "end": 1428.982,
- "text": "There’s"
- },
- {
- "id": 3597,
- "start": 1428.982,
- "end": 1429.572,
- "text": "something"
- },
- {
- "id": 3598,
- "start": 1429.572,
- "end": 1430.572,
- "text": "that’s"
- },
- {
- "id": 3599,
- "start": 1430.572,
- "end": 1431.142,
- "text": "happened,"
- },
- {
- "id": 3600,
- "start": 1431.142,
- "end": 1431.342,
- "text": "and"
- },
- {
- "id": 3601,
- "start": 1431.342,
- "end": 1431.532,
- "text": "we"
- },
- {
- "id": 3602,
- "start": 1431.532,
- "end": 1431.742,
- "text": "need"
- },
- {
- "id": 3603,
- "start": 1431.742,
- "end": 1431.832,
- "text": "to"
- },
- {
- "id": 3604,
- "start": 1431.832,
- "end": 1432.502,
- "text": "understand"
- },
- {
- "id": 3605,
- "start": 1432.502,
- "end": 1433.432,
- "text": "that."
- },
- {
- "id": 3606,
- "start": 1433.432,
- "end": 1433.632,
- "text": "For"
- },
- {
- "id": 3607,
- "start": 1433.632,
- "end": 1434.982,
- "text": "instance,"
- },
- {
- "id": 3608,
- "start": 1434.982,
- "end": 1435.112,
- "text": "do"
- },
- {
- "id": 3609,
- "start": 1435.112,
- "end": 1435.292,
- "text": "you"
- },
- {
- "id": 3610,
- "start": 1435.292,
- "end": 1435.772,
- "text": "regret"
- },
- {
- "id": 3611,
- "start": 1435.772,
- "end": 1436.412,
- "text": "choices"
- },
- {
- "id": 3612,
- "start": 1436.412,
- "end": 1436.732,
- "text": "going"
- },
- {
- "id": 3613,
- "start": 1436.732,
- "end": 1437.352,
- "text": "backward"
- },
- {
- "id": 3614,
- "start": 1437.147,
- "end": 1437.662,
- "text": "and"
- },
- {
- "id": 3615,
- "start": 1437.562,
- "end": 1437.972,
- "text": "thinking"
- },
- {
- "id": 3616,
- "start": 1437.972,
- "end": 1438.372,
- "text": "about"
- },
- {
- "id": 3617,
- "start": 1438.4669999999999,
- "end": 1438.707,
- "text": "leading—you"
- },
- {
- "id": 3618,
- "start": 1438.962,
- "end": 1439.042,
- "text": "know,"
- },
- {
- "id": 3619,
- "start": 1439.042,
- "end": 1439.242,
- "text": "being"
- },
- {
- "id": 3620,
- "start": 1439.242,
- "end": 1439.322,
- "text": "a"
- },
- {
- "id": 3621,
- "start": 1439.322,
- "end": 1439.622,
- "text": "part"
- },
- {
- "id": 3622,
- "start": 1439.622,
- "end": 1439.702,
- "text": "of"
- },
- {
- "id": 3623,
- "start": 1439.702,
- "end": 1439.792,
- "text": "the"
- },
- {
- "id": 3624,
- "start": 1439.792,
- "end": 1440.162,
- "text": "Growth"
- },
- {
- "id": 3625,
- "start": 1440.8320000000003,
- "end": 1441.3220000000001,
- "text": "team"
- },
- {
- "id": 3626,
- "start": 1441.8720000000003,
- "end": 1442.4820000000009,
- "text": "and"
- },
- {
- "id": 3627,
- "start": 1442.912,
- "end": 1443.642,
- "text": "decisions"
- },
- {
- "id": 3628,
- "start": 1443.642,
- "end": 1443.842,
- "text": "that"
- },
- {
- "id": 3629,
- "start": 1443.842,
- "end": 1443.972,
- "text": "were"
- },
- {
- "id": 3630,
- "start": 1443.972,
- "end": 1444.812,
- "text": "made"
- },
- {
- "id": 3631,
- "start": 1444.812,
- "end": 1445.562,
- "text": "about"
- },
- {
- "id": 3632,
- "start": 1445.562,
- "end": 1445.942,
- "text": "not"
- },
- {
- "id": 3633,
- "start": 1445.942,
- "end": 1446.422,
- "text": "taking"
- },
- {
- "id": 3634,
- "start": 1446.422,
- "end": 1446.722,
- "text": "into"
- },
- {
- "id": 3635,
- "start": 1446.722,
- "end": 1447.182,
- "text": "account"
- },
- {
- "id": 3636,
- "start": 1447.182,
- "end": 1447.552,
- "text": "risks"
- },
- {
- "id": 3637,
- "start": 1447.552,
- "end": 1447.642,
- "text": "or"
- },
- {
- "id": 3638,
- "start": 1447.642,
- "end": 1447.892,
- "text": "not"
- },
- {
- "id": 3639,
- "start": 1447.892,
- "end": 1448.402,
- "text": "measuring"
- },
- {
- "id": 3640,
- "start": 1448.402,
- "end": 1448.832,
- "text": "risks"
- },
- {
- "id": 3641,
- "start": 1448.832,
- "end": 1448.972,
- "text": "and"
- },
- {
- "id": 3642,
- "start": 1448.972,
- "end": 1449.212,
- "text": "things"
- },
- {
- "id": 3643,
- "start": 1449.212,
- "end": 1449.382,
- "text": "like"
- },
- {
- "id": 3644,
- "start": 1449.522,
- "end": 1449.772,
- "text": "that?"
- },
- {
- "id": 3645,
- "start": 1449.832,
- "end": 1450.162,
- "text": "Yeah,"
- },
- {
- "id": 3646,
- "start": 1450.162,
- "end": 1450.242,
- "text": "I"
- },
- {
- "id": 3647,
- "start": 1450.242,
- "end": 1450.702,
- "text": "definitely"
- },
- {
- "id": 3648,
- "start": 1450.702,
- "end": 1451.022,
- "text": "think"
- },
- {
- "id": 3649,
- "start": 1451.022,
- "end": 1451.202,
- "text": "we"
- },
- {
- "id": 3650,
- "start": 1451.202,
- "end": 1452.882,
- "text": "regret"
- },
- {
- "id": 3651,
- "start": 1452.882,
- "end": 1453.192,
- "text": "not"
- },
- {
- "id": 3652,
- "start": 1453.192,
- "end": 1453.422,
- "text": "having"
- },
- {
- "id": 3653,
- "start": 1453.6219999999998,
- "end": 1453.867,
- "text": "20,000"
- },
- {
- "id": 3654,
- "start": 1454.052,
- "end": 1454.312,
- "text": "people"
- },
- {
- "id": 3655,
- "start": 1454.312,
- "end": 1454.592,
- "text": "working"
- },
- {
- "id": 3656,
- "start": 1454.592,
- "end": 1454.702,
- "text": "on"
- },
- {
- "id": 3657,
- "start": 1454.702,
- "end": 1455.082,
- "text": "safety,"
- },
- {
- "id": 3658,
- "start": 1455.137,
- "end": 1455.4070000000002,
- "text": "secur-,"
- },
- {
- "id": 3659,
- "start": 1455.572,
- "end": 1455.732,
- "text": "and"
- },
- {
- "id": 3660,
- "start": 1455.732,
- "end": 1456.112,
- "text": "security"
- },
- {
- "id": 3661,
- "start": 1456.112,
- "end": 1456.342,
- "text": "back"
- },
- {
- "id": 3662,
- "start": 1456.342,
- "end": 1456.422,
- "text": "in"
- },
- {
- "id": 3663,
- "start": 1456.422,
- "end": 1456.512,
- "text": "the"
- },
- {
- "id": 3664,
- "start": 1456.512,
- "end": 1456.772,
- "text": "day."
- },
- {
- "id": 3665,
- "start": 1457.077,
- "end": 1457.402,
- "text": "Yes."
- },
- {
- "id": 3666,
- "start": 1457.642,
- "end": 1458.032,
- "text": "So"
- },
- {
- "id": 3667,
- "start": 1458.032,
- "end": 1458.072,
- "text": "I"
- },
- {
- "id": 3668,
- "start": 1458.072,
- "end": 1458.562,
- "text": "regret"
- },
- {
- "id": 3669,
- "start": 1458.562,
- "end": 1458.732,
- "text": "that"
- },
- {
- "id": 3670,
- "start": 1458.732,
- "end": 1458.892,
- "text": "we"
- },
- {
- "id": 3671,
- "start": 1458.892,
- "end": 1460.697,
- "text": "were"
- },
- {
- "id": 3672,
- "start": 1460.697,
- "end": 1460.957,
- "text": "too"
- },
- {
- "id": 3673,
- "start": 1460.957,
- "end": 1461.347,
- "text": "slow,"
- },
- {
- "id": 3674,
- "start": 1461.347,
- "end": 1461.487,
- "text": "that"
- },
- {
- "id": 3675,
- "start": 1461.487,
- "end": 1461.577,
- "text": "it"
- },
- {
- "id": 3676,
- "start": 1461.577,
- "end": 1461.997,
- "text": "wasn’t"
- },
- {
- "id": 3677,
- "start": 1461.663,
- "end": 1462.047,
- "text": "our"
- },
- {
- "id": 3678,
- "start": 1461.749,
- "end": 1462.0970000000002,
- "text": "priority—"
- },
- {
- "id": 3679,
- "start": 1461.835,
- "end": 1462.1470000000002,
- "text": "But"
- },
- {
- "id": 3680,
- "start": 1461.921,
- "end": 1462.1970000000001,
- "text": "were"
- },
- {
- "id": 3681,
- "start": 1462.007,
- "end": 1462.247,
- "text": "those"
- },
- {
- "id": 3682,
- "start": 1462.247,
- "end": 1462.567,
- "text": "things"
- },
- {
- "id": 3683,
- "start": 1462.567,
- "end": 1462.857,
- "text": "even"
- },
- {
- "id": 3684,
- "start": 1462.857,
- "end": 1463.447,
- "text": "considered"
- },
- {
- "id": 3685,
- "start": 1463.447,
- "end": 1463.567,
- "text": "at"
- },
- {
- "id": 3686,
- "start": 1463.567,
- "end": 1463.667,
- "text": "the"
- },
- {
- "id": 3687,
- "start": 1463.667,
- "end": 1464.157,
- "text": "time,"
- },
- {
- "id": 3688,
- "start": 1464.157,
- "end": 1464.307,
- "text": "to"
- },
- {
- "id": 3689,
- "start": 1464.307,
- "end": 1464.487,
- "text": "kind"
- },
- {
- "id": 3690,
- "start": 1464.487,
- "end": 1464.617,
- "text": "of"
- },
- {
- "id": 3691,
- "start": 1464.617,
- "end": 1464.947,
- "text": "amp"
- },
- {
- "id": 3692,
- "start": 1464.947,
- "end": 1465.157,
- "text": "up"
- },
- {
- "id": 3693,
- "start": 1465.157,
- "end": 1465.607,
- "text": "safety"
- },
- {
- "id": 3694,
- "start": 1465.382,
- "end": 1465.862,
- "text": "and"
- },
- {
- "id": 3695,
- "start": 1465.607,
- "end": 1466.117,
- "text": "security"
- },
- {
- "id": 3696,
- "start": 1466.117,
- "end": 1466.407,
- "text": "back"
- },
- {
- "id": 3697,
- "start": 1466.407,
- "end": 1466.467,
- "text": "in"
- },
- {
- "id": 3698,
- "start": 1466.467,
- "end": 1466.557,
- "text": "the"
- },
- {
- "id": 3699,
- "start": 1466.647,
- "end": 1467.017,
- "text": "day,"
- },
- {
- "id": 3700,
- "start": 1466.827,
- "end": 1467.477,
- "text": "but"
- },
- {
- "id": 3701,
- "start": 1467.477,
- "end": 1467.647,
- "text": "there"
- },
- {
- "id": 3702,
- "start": 1467.647,
- "end": 1467.827,
- "text": "was"
- },
- {
- "id": 3703,
- "start": 1467.827,
- "end": 1468.047,
- "text": "some"
- },
- {
- "id": 3704,
- "start": 1468.047,
- "end": 1468.377,
- "text": "reason"
- },
- {
- "id": 3705,
- "start": 1468.377,
- "end": 1468.627,
- "text": "not"
- },
- {
- "id": 3706,
- "start": 1468.627,
- "end": 1468.947,
- "text": "to,"
- },
- {
- "id": 3707,
- "start": 1468.947,
- "end": 1469.067,
- "text": "or"
- },
- {
- "id": 3708,
- "start": 1469.067,
- "end": 1469.137,
- "text": "it"
- },
- {
- "id": 3709,
- "start": 1469.137,
- "end": 1469.307,
- "text": "was"
- },
- {
- "id": 3710,
- "start": 1469.257,
- "end": 1469.4103333333333,
- "text": "going"
- },
- {
- "id": 3711,
- "start": 1469.377,
- "end": 1469.5136666666667,
- "text": "to"
- },
- {
- "id": 3712,
- "start": 1469.497,
- "end": 1469.617,
- "text": "be"
- },
- {
- "id": 3713,
- "start": 1469.617,
- "end": 1469.877,
- "text": "too"
- },
- {
- "id": 3714,
- "start": 1469.877,
- "end": 1470.437,
- "text": "difficult"
- },
- {
- "id": 3715,
- "start": 1470.162,
- "end": 1470.692,
- "text": "a"
- },
- {
- "id": 3716,
- "start": 1470.447,
- "end": 1470.947,
- "text": "problem"
- },
- {
- "id": 3717,
- "start": 1470.947,
- "end": 1471.077,
- "text": "to"
- },
- {
- "id": 3718,
- "start": 1471.077,
- "end": 1471.617,
- "text": "contend"
- },
- {
- "id": 3719,
- "start": 1471.617,
- "end": 1472.007,
- "text": "with,"
- },
- {
- "id": 3720,
- "start": 1472.007,
- "end": 1473.927,
- "text": "or—?"
- },
- {
- "id": 3721,
- "start": 1473.927,
- "end": 1474.637,
- "text": "Not"
- },
- {
- "id": 3722,
- "start": 1474.637,
- "end": 1474.927,
- "text": "really."
- },
- {
- "id": 3723,
- "start": 1474.927,
- "end": 1474.957,
- "text": "I"
- },
- {
- "id": 3724,
- "start": 1474.957,
- "end": 1475.107,
- "text": "mean,"
- },
- {
- "id": 3725,
- "start": 1475.107,
- "end": 1475.227,
- "text": "we"
- },
- {
- "id": 3726,
- "start": 1475.227,
- "end": 1475.597,
- "text": "had"
- },
- {
- "id": 3727,
- "start": 1475.597,
- "end": 1475.657,
- "text": "a"
- },
- {
- "id": 3728,
- "start": 1475.657,
- "end": 1476.037,
- "text": "safety"
- },
- {
- "id": 3729,
- "start": 1476.037,
- "end": 1476.167,
- "text": "and"
- },
- {
- "id": 3730,
- "start": 1476.167,
- "end": 1477.177,
- "text": "security"
- },
- {
- "id": 3731,
- "start": 1477.177,
- "end": 1477.707,
- "text": "team."
- },
- {
- "id": 3732,
- "start": 1477.707,
- "end": 1477.777,
- "text": "I"
- },
- {
- "id": 3733,
- "start": 1477.777,
- "end": 1478.017,
- "text": "think"
- },
- {
- "id": 3734,
- "start": 1478.017,
- "end": 1478.137,
- "text": "we"
- },
- {
- "id": 3735,
- "start": 1478.137,
- "end": 1478.387,
- "text": "just"
- },
- {
- "id": 3736,
- "start": 1478.387,
- "end": 1478.567,
- "text": "thought"
- },
- {
- "id": 3737,
- "start": 1478.567,
- "end": 1478.647,
- "text": "it"
- },
- {
- "id": 3738,
- "start": 1478.647,
- "end": 1478.807,
- "text": "was"
- },
- {
- "id": 3739,
- "start": 1478.807,
- "end": 1481.137,
- "text": "sufficient."
- },
- {
- "id": 3740,
- "start": 1481.137,
- "end": 1481.587,
- "text": "It’s"
- },
- {
- "id": 3741,
- "start": 1481.587,
- "end": 1481.757,
- "text": "not"
- },
- {
- "id": 3742,
- "start": 1481.757,
- "end": 1481.927,
- "text": "that"
- },
- {
- "id": 3743,
- "start": 1481.842,
- "end": 1482.022,
- "text": "we"
- },
- {
- "id": 3744,
- "start": 1481.927,
- "end": 1482.117,
- "text": "were"
- },
- {
- "id": 3745,
- "start": 1482.117,
- "end": 1482.397,
- "text": "like,"
- },
- {
- "id": 3746,
- "start": 1482.397,
- "end": 1482.897,
- "text": "“Wow,"
- },
- {
- "id": 3747,
- "start": 1482.897,
- "end": 1483.057,
- "text": "we"
- },
- {
- "id": 3748,
- "start": 1483.057,
- "end": 1483.187,
- "text": "could"
- },
- {
- "id": 3749,
- "start": 1483.187,
- "end": 1483.317,
- "text": "do"
- },
- {
- "id": 3750,
- "start": 1483.317,
- "end": 1483.537,
- "text": "so"
- },
- {
- "id": 3751,
- "start": 1483.537,
- "end": 1483.737,
- "text": "much"
- },
- {
- "id": 3752,
- "start": 1483.737,
- "end": 1483.987,
- "text": "more"
- },
- {
- "id": 3753,
- "start": 1483.987,
- "end": 1484.257,
- "text": "here,”"
- },
- {
- "id": 3754,
- "start": 1484.257,
- "end": 1484.357,
- "text": "and"
- },
- {
- "id": 3755,
- "start": 1484.357,
- "end": 1484.827,
- "text": "decided"
- },
- {
- "id": 3756,
- "start": 1484.827,
- "end": 1485.057,
- "text": "not"
- },
- {
- "id": 3757,
- "start": 1485.057,
- "end": 1486.077,
- "text": "to."
- },
- {
- "id": 3758,
- "start": 1486.077,
- "end": 1486.177,
- "text": "I"
- },
- {
- "id": 3759,
- "start": 1486.177,
- "end": 1486.577,
- "text": "think"
- },
- {
- "id": 3760,
- "start": 1487.442,
- "end": 1487.8519999999999,
- "text": "we—we"
- },
- {
- "id": 3761,
- "start": 1488.707,
- "end": 1489.127,
- "text": "just"
- },
- {
- "id": 3762,
- "start": 1490.3869999999997,
- "end": 1490.6669999999995,
- "text": "didn’t—again,"
- },
- {
- "id": 3763,
- "start": 1492.067,
- "end": 1492.207,
- "text": "we"
- },
- {
- "id": 3764,
- "start": 1492.207,
- "end": 1492.357,
- "text": "were"
- },
- {
- "id": 3765,
- "start": 1492.357,
- "end": 1492.757,
- "text": "just"
- },
- {
- "id": 3766,
- "start": 1492.757,
- "end": 1492.827,
- "text": "a"
- },
- {
- "id": 3767,
- "start": 1492.827,
- "end": 1493.037,
- "text": "bit"
- },
- {
- "id": 3768,
- "start": 1493.037,
- "end": 1494.947,
- "text": "idealistic."
- },
- {
- "id": 3769,
- "start": 1494.947,
- "end": 1495.117,
- "text": "We"
- },
- {
- "id": 3770,
- "start": 1495.117,
- "end": 1495.347,
- "text": "didn’t"
- },
- {
- "id": 3771,
- "start": 1495.347,
- "end": 1495.517,
- "text": "see"
- },
- {
- "id": 3772,
- "start": 1495.517,
- "end": 1495.647,
- "text": "the"
- },
- {
- "id": 3773,
- "start": 1496.1070000000002,
- "end": 1496.3269999999998,
- "text": "need"
- },
- {
- "id": 3774,
- "start": 1496.697,
- "end": 1497.007,
- "text": "to"
- },
- {
- "id": 3775,
- "start": 1497.287,
- "end": 1497.687,
- "text": "go"
- },
- {
- "id": 3776,
- "start": 1497.687,
- "end": 1497.927,
- "text": "from"
- },
- {
- "id": 3777,
- "start": 1498.1119999999999,
- "end": 1498.3594999999998,
- "text": "10,000"
- },
- {
- "id": 3778,
- "start": 1498.5369999999998,
- "end": 1498.792,
- "text": "to"
- },
- {
- "id": 3779,
- "start": 1498.962,
- "end": 1499.2245,
- "text": "20,000"
- },
- {
- "id": 3780,
- "start": 1499.387,
- "end": 1499.657,
- "text": "back"
- },
- {
- "id": 3781,
- "start": 1499.657,
- "end": 1499.947,
- "text": "then."
- },
- {
- "id": 3782,
- "start": 1500.097,
- "end": 1500.3319999999999,
- "text": "…"
- },
- {
- "id": 3783,
- "start": 1500.537,
- "end": 1500.717,
- "text": "A"
- },
- {
- "id": 3784,
- "start": 1500.717,
- "end": 1500.937,
- "text": "lot"
- },
- {
- "id": 3785,
- "start": 1500.937,
- "end": 1501.027,
- "text": "of"
- },
- {
- "id": 3786,
- "start": 1501.027,
- "end": 1501.117,
- "text": "the"
- },
- {
- "id": 3787,
- "start": 1501.117,
- "end": 1501.547,
- "text": "problems"
- },
- {
- "id": 3788,
- "start": 1501.547,
- "end": 1501.687,
- "text": "that"
- },
- {
- "id": 3789,
- "start": 1501.687,
- "end": 1501.847,
- "text": "have"
- },
- {
- "id": 3790,
- "start": 1501.847,
- "end": 1502.237,
- "text": "reared"
- },
- {
- "id": 3791,
- "start": 1502.237,
- "end": 1502.387,
- "text": "their"
- },
- {
- "id": 3792,
- "start": 1502.387,
- "end": 1503.107,
- "text": "head"
- },
- {
- "id": 3793,
- "start": 1503.107,
- "end": 1503.647,
- "text": "recently"
- },
- {
- "id": 3794,
- "start": 1503.647,
- "end": 1503.767,
- "text": "and"
- },
- {
- "id": 3795,
- "start": 1503.767,
- "end": 1503.927,
- "text": "that"
- },
- {
- "id": 3796,
- "start": 1503.987,
- "end": 1504.112,
- "text": "seem"
- },
- {
- "id": 3797,
- "start": 1504.207,
- "end": 1504.297,
- "text": "to"
- },
- {
- "id": 3798,
- "start": 1504.297,
- "end": 1504.417,
- "text": "have"
- },
- {
- "id": 3799,
- "start": 1504.417,
- "end": 1504.757,
- "text": "taken"
- },
- {
- "id": 3800,
- "start": 1504.757,
- "end": 1504.827,
- "text": "the"
- },
- {
- "id": 3801,
- "start": 1504.827,
- "end": 1505.467,
- "text": "company"
- },
- {
- "id": 3802,
- "start": 1505.417,
- "end": 1505.627,
- "text": "by"
- },
- {
- "id": 3803,
- "start": 1505.912,
- "end": 1506.127,
- "text": "surprise,"
- },
- {
- "id": 3804,
- "start": 1506.407,
- "end": 1506.627,
- "text": "it’s"
- },
- {
- "id": 3805,
- "start": 1506.627,
- "end": 1506.817,
- "text": "not"
- },
- {
- "id": 3806,
- "start": 1506.817,
- "end": 1506.947,
- "text": "as"
- },
- {
- "id": 3807,
- "start": 1506.947,
- "end": 1507.117,
- "text": "if"
- },
- {
- "id": 3808,
- "start": 1507.117,
- "end": 1507.257,
- "text": "they’re"
- },
- {
- "id": 3809,
- "start": 1507.257,
- "end": 1507.537,
- "text": "very"
- },
- {
- "id": 3810,
- "start": 1507.537,
- "end": 1508.237,
- "text": "new."
- },
- {
- "id": 3811,
- "start": 1508.237,
- "end": 1508.337,
- "text": "I"
- },
- {
- "id": 3812,
- "start": 1508.337,
- "end": 1508.527,
- "text": "mean,"
- },
- {
- "id": 3813,
- "start": 1508.527,
- "end": 1508.917,
- "text": "yes,"
- },
- {
- "id": 3814,
- "start": 1508.917,
- "end": 1509.057,
- "text": "in"
- },
- {
- "id": 3815,
- "start": 1509.057,
- "end": 1509.407,
- "text": "terms"
- },
- {
- "id": 3816,
- "start": 1509.407,
- "end": 1509.827,
- "text": "of"
- },
- {
- "id": 3817,
- "start": 1509.827,
- "end": 1510.167,
- "text": "Russian"
- },
- {
- "id": 3818,
- "start": 1510.167,
- "end": 1510.787,
- "text": "interference"
- },
- {
- "id": 3819,
- "start": 1510.787,
- "end": 1510.887,
- "text": "in"
- },
- {
- "id": 3820,
- "start": 1510.887,
- "end": 1511.027,
- "text": "our"
- },
- {
- "id": 3821,
- "start": 1511.257,
- "end": 1511.4036666666666,
- "text": "elections,"
- },
- {
- "id": 3822,
- "start": 1511.627,
- "end": 1511.7803333333334,
- "text": "sure,"
- },
- {
- "id": 3823,
- "start": 1511.997,
- "end": 1512.157,
- "text": "but"
- },
- {
- "id": 3824,
- "start": 1512.157,
- "end": 1512.237,
- "text": "the"
- },
- {
- "id": 3825,
- "start": 1512.237,
- "end": 1512.617,
- "text": "Russians"
- },
- {
- "id": 3826,
- "start": 1512.617,
- "end": 1512.747,
- "text": "were"
- },
- {
- "id": 3827,
- "start": 1512.747,
- "end": 1513.307,
- "text": "interfering"
- },
- {
- "id": 3828,
- "start": 1513.307,
- "end": 1513.437,
- "text": "with"
- },
- {
- "id": 3829,
- "start": 1513.437,
- "end": 1513.967,
- "text": "elections"
- },
- {
- "id": 3830,
- "start": 1513.967,
- "end": 1514.937,
- "text": "abroad"
- },
- {
- "id": 3831,
- "start": 1514.937,
- "end": 1515.297,
- "text": "using"
- },
- {
- "id": 3832,
- "start": 1515.297,
- "end": 1515.677,
- "text": "social"
- },
- {
- "id": 3833,
- "start": 1515.677,
- "end": 1516.057,
- "text": "media,"
- },
- {
- "id": 3834,
- "start": 1516.057,
- "end": 1516.387,
- "text": "using"
- },
- {
- "id": 3835,
- "start": 1516.387,
- "end": 1516.877,
- "text": "Facebook"
- },
- {
- "id": 3836,
- "start": 1516.877,
- "end": 1516.967,
- "text": "in"
- },
- {
- "id": 3837,
- "start": 1516.967,
- "end": 1517.187,
- "text": "some"
- },
- {
- "id": 3838,
- "start": 1517.187,
- "end": 1518.757,
- "text": "cases."
- },
- {
- "id": 3839,
- "start": 1518.757,
- "end": 1519.227,
- "text": "It"
- },
- {
- "id": 3840,
- "start": 1519.227,
- "end": 1519.527,
- "text": "does"
- },
- {
- "id": 3841,
- "start": 1519.527,
- "end": 1519.947,
- "text": "seem"
- },
- {
- "id": 3842,
- "start": 1520.0970000000002,
- "end": 1520.382,
- "text": "naïve"
- },
- {
- "id": 3843,
- "start": 1520.667,
- "end": 1520.817,
- "text": "to"
- },
- {
- "id": 3844,
- "start": 1520.817,
- "end": 1521.397,
- "text": "say,"
- },
- {
- "id": 3845,
- "start": 1521.4120000000003,
- "end": 1521.782,
- "text": "“OK,"
- },
- {
- "id": 3846,
- "start": 1522.007,
- "end": 1522.167,
- "text": "all"
- },
- {
- "id": 3847,
- "start": 1522.167,
- "end": 1522.247,
- "text": "of"
- },
- {
- "id": 3848,
- "start": 1522.247,
- "end": 1522.307,
- "text": "a"
- },
- {
- "id": 3849,
- "start": 1522.307,
- "end": 1522.707,
- "text": "sudden"
- },
- {
- "id": 3850,
- "start": 1522.707,
- "end": 1522.837,
- "text": "we’re"
- },
- {
- "id": 3851,
- "start": 1522.813666666667,
- "end": 1523.0336666666667,
- "text": "going"
- },
- {
- "id": 3852,
- "start": 1522.9203333333335,
- "end": 1523.2303333333334,
- "text": "to"
- },
- {
- "id": 3853,
- "start": 1523.027,
- "end": 1523.427,
- "text": "ramp"
- },
- {
- "id": 3854,
- "start": 1523.427,
- "end": 1523.677,
- "text": "up;"
- },
- {
- "id": 3855,
- "start": 1523.677,
- "end": 1523.807,
- "text": "we’re"
- },
- {
- "id": 3856,
- "start": 1523.807,
- "end": 1524.307,
- "text": "changing"
- },
- {
- "id": 3857,
- "start": 1524.7569999999996,
- "end": 1525.1670000000001,
- "text": "everything.”"
- },
- {
- "id": 3858,
- "start": 1525.707,
- "end": 1526.027,
- "text": "I"
- },
- {
- "id": 3859,
- "start": 1526.027,
- "end": 1527.337,
- "text": "guess"
- },
- {
- "id": 3860,
- "start": 1527.337,
- "end": 1527.787,
- "text": "why"
- },
- {
- "id": 3861,
- "start": 1527.787,
- "end": 1528.117,
- "text": "didn’t"
- },
- {
- "id": 3862,
- "start": 1528.117,
- "end": 1528.307,
- "text": "this"
- },
- {
- "id": 3863,
- "start": 1528.307,
- "end": 1528.737,
- "text": "happen"
- },
- {
- "id": 3864,
- "start": 1528.737,
- "end": 1530.907,
- "text": "sooner?"
- },
- {
- "id": 3865,
- "start": 1530.907,
- "end": 1531.217,
- "text": "One"
- },
- {
- "id": 3866,
- "start": 1531.217,
- "end": 1531.397,
- "text": "thing"
- },
- {
- "id": 3867,
- "start": 1531.397,
- "end": 1531.457,
- "text": "I"
- },
- {
- "id": 3868,
- "start": 1531.457,
- "end": 1531.617,
- "text": "would"
- },
- {
- "id": 3869,
- "start": 1531.617,
- "end": 1531.907,
- "text": "say"
- },
- {
- "id": 3870,
- "start": 1531.907,
- "end": 1532.047,
- "text": "is"
- },
- {
- "id": 3871,
- "start": 1532.047,
- "end": 1532.767,
- "text": "that"
- },
- {
- "id": 3872,
- "start": 1532.767,
- "end": 1532.957,
- "text": "there"
- },
- {
- "id": 3873,
- "start": 1532.957,
- "end": 1533.207,
- "text": "were"
- },
- {
- "id": 3874,
- "start": 1533.207,
- "end": 1533.597,
- "text": "known"
- },
- {
- "id": 3875,
- "start": 1533.597,
- "end": 1534.177,
- "text": "problems,"
- },
- {
- "id": 3876,
- "start": 1534.177,
- "end": 1534.277,
- "text": "and"
- },
- {
- "id": 3877,
- "start": 1534.277,
- "end": 1534.317,
- "text": "I"
- },
- {
- "id": 3878,
- "start": 1534.317,
- "end": 1534.577,
- "text": "think"
- },
- {
- "id": 3879,
- "start": 1534.577,
- "end": 1534.737,
- "text": "we"
- },
- {
- "id": 3880,
- "start": 1534.737,
- "end": 1534.947,
- "text": "were"
- },
- {
- "id": 3881,
- "start": 1534.947,
- "end": 1535.427,
- "text": "focused"
- },
- {
- "id": 3882,
- "start": 1535.427,
- "end": 1535.597,
- "text": "on"
- },
- {
- "id": 3883,
- "start": 1535.597,
- "end": 1535.847,
- "text": "them."
- },
- {
- "id": 3884,
- "start": 1535.847,
- "end": 1536.027,
- "text": "It’s"
- },
- {
- "id": 3885,
- "start": 1536.027,
- "end": 1536.237,
- "text": "just"
- },
- {
- "id": 3886,
- "start": 1536.237,
- "end": 1536.697,
- "text": "possible"
- },
- {
- "id": 3887,
- "start": 1536.697,
- "end": 1536.867,
- "text": "that"
- },
- {
- "id": 3888,
- "start": 1536.867,
- "end": 1536.987,
- "text": "they"
- },
- {
- "id": 3889,
- "start": 1536.987,
- "end": 1537.137,
- "text": "were"
- },
- {
- "id": 3890,
- "start": 1537.137,
- "end": 1537.937,
- "text": "different."
- },
- {
- "id": 3891,
- "start": 1537.937,
- "end": 1538.177,
- "text": "We"
- },
- {
- "id": 3892,
- "start": 1538.177,
- "end": 1538.317,
- "text": "had"
- },
- {
- "id": 3893,
- "start": 1538.317,
- "end": 1538.367,
- "text": "a"
- },
- {
- "id": 3894,
- "start": 1538.367,
- "end": 1538.657,
- "text": "big"
- },
- {
- "id": 3895,
- "start": 1538.657,
- "end": 1539.037,
- "text": "effort"
- },
- {
- "id": 3896,
- "start": 1539.037,
- "end": 1539.357,
- "text": "around"
- },
- {
- "id": 3897,
- "start": 1539.357,
- "end": 1540.227,
- "text": "scams."
- },
- {
- "id": 3898,
- "start": 1540.227,
- "end": 1540.367,
- "text": "We"
- },
- {
- "id": 3899,
- "start": 1540.367,
- "end": 1540.567,
- "text": "had"
- },
- {
- "id": 3900,
- "start": 1540.567,
- "end": 1540.627,
- "text": "a"
- },
- {
- "id": 3901,
- "start": 1540.627,
- "end": 1540.947,
- "text": "big"
- },
- {
- "id": 3902,
- "start": 1540.947,
- "end": 1541.437,
- "text": "effort"
- },
- {
- "id": 3903,
- "start": 1541.437,
- "end": 1541.897,
- "text": "around"
- },
- {
- "id": 3904,
- "start": 1541.897,
- "end": 1542.267,
- "text": "bullying"
- },
- {
- "id": 3905,
- "start": 1542.267,
- "end": 1542.387,
- "text": "and"
- },
- {
- "id": 3906,
- "start": 1542.387,
- "end": 1543.167,
- "text": "harassment."
- },
- {
- "id": 3907,
- "start": 1543.167,
- "end": 1543.327,
- "text": "We"
- },
- {
- "id": 3908,
- "start": 1543.327,
- "end": 1543.517,
- "text": "had"
- },
- {
- "id": 3909,
- "start": 1543.517,
- "end": 1543.567,
- "text": "a"
- },
- {
- "id": 3910,
- "start": 1543.567,
- "end": 1543.847,
- "text": "big"
- },
- {
- "id": 3911,
- "start": 1543.847,
- "end": 1544.347,
- "text": "effort"
- },
- {
- "id": 3912,
- "start": 1544.347,
- "end": 1544.877,
- "text": "around"
- },
- {
- "id": 3913,
- "start": 1544.877,
- "end": 1545.247,
- "text": "nudity"
- },
- {
- "id": 3914,
- "start": 1545.247,
- "end": 1545.407,
- "text": "and"
- },
- {
- "id": 3915,
- "start": 1545.407,
- "end": 1545.857,
- "text": "porn"
- },
- {
- "id": 3916,
- "start": 1545.857,
- "end": 1546.057,
- "text": "on"
- },
- {
- "id": 3917,
- "start": 1546.612,
- "end": 1547.1020000000003,
- "text": "Facebook."
- },
- {
- "id": 3918,
- "start": 1547.367,
- "end": 1548.147,
- "text": "So"
- },
- {
- "id": 3919,
- "start": 1548.147,
- "end": 1548.357,
- "text": "there"
- },
- {
- "id": 3920,
- "start": 1548.357,
- "end": 1548.607,
- "text": "were"
- },
- {
- "id": 3921,
- "start": 1548.607,
- "end": 1549.287,
- "text": "investments"
- },
- {
- "id": 3922,
- "start": 1549.287,
- "end": 1549.437,
- "text": "in"
- },
- {
- "id": 3923,
- "start": 1549.437,
- "end": 1549.907,
- "text": "that."
- },
- {
- "id": 3924,
- "start": 1549.907,
- "end": 1550.117,
- "text": "This"
- },
- {
- "id": 3925,
- "start": 1550.117,
- "end": 1550.307,
- "text": "is"
- },
- {
- "id": 3926,
- "start": 1550.307,
- "end": 1550.407,
- "text": "an"
- },
- {
- "id": 3927,
- "start": 1550.407,
- "end": 1551.167,
- "text": "adversarial"
- },
- {
- "id": 3928,
- "start": 1551.167,
- "end": 1551.767,
- "text": "space."
- },
- {
- "id": 3929,
- "start": 1551.767,
- "end": 1551.857,
- "text": "You"
- },
- {
- "id": 3930,
- "start": 1551.857,
- "end": 1551.977,
- "text": "know,"
- },
- {
- "id": 3931,
- "start": 1551.977,
- "end": 1552.087,
- "text": "as"
- },
- {
- "id": 3932,
- "start": 1552.087,
- "end": 1552.257,
- "text": "soon"
- },
- {
- "id": 3933,
- "start": 1552.257,
- "end": 1552.397,
- "text": "as"
- },
- {
- "id": 3934,
- "start": 1552.397,
- "end": 1552.537,
- "text": "you"
- },
- {
- "id": 3935,
- "start": 1552.537,
- "end": 1552.757,
- "text": "take"
- },
- {
- "id": 3936,
- "start": 1552.757,
- "end": 1552.927,
- "text": "one"
- },
- {
- "id": 3937,
- "start": 1552.927,
- "end": 1553.167,
- "text": "step"
- },
- {
- "id": 3938,
- "start": 1553.167,
- "end": 1553.817,
- "text": "forward,"
- },
- {
- "id": 3939,
- "start": 1553.817,
- "end": 1554.547,
- "text": "your"
- },
- {
- "id": 3940,
- "start": 1554.547,
- "end": 1555.367,
- "text": "adversary"
- },
- {
- "id": 3941,
- "start": 1555.367,
- "end": 1555.777,
- "text": "is"
- },
- {
- "id": 3942,
- "start": 1555.777,
- "end": 1556.467,
- "text": "evolving"
- },
- {
- "id": 3943,
- "start": 1556.467,
- "end": 1556.627,
- "text": "as"
- },
- {
- "id": 3944,
- "start": 1556.627,
- "end": 1556.927,
- "text": "well,"
- },
- {
- "id": 3945,
- "start": 1556.927,
- "end": 1557.147,
- "text": "so"
- },
- {
- "id": 3946,
- "start": 1557.147,
- "end": 1557.347,
- "text": "it’s"
- },
- {
- "id": 3947,
- "start": 1557.347,
- "end": 1557.947,
- "text": "never"
- },
- {
- "id": 3948,
- "start": 1558.2369999999999,
- "end": 1558.677,
- "text": "fixed;"
- },
- {
- "id": 3949,
- "start": 1559.127,
- "end": 1559.407,
- "text": "it’s"
- },
- {
- "id": 3950,
- "start": 1559.407,
- "end": 1559.737,
- "text": "always"
- },
- {
- "id": 3951,
- "start": 1559.737,
- "end": 1561.297,
- "text": "ongoing."
- },
- {
- "id": 3952,
- "start": 1561.297,
- "end": 1561.517,
- "text": "Some"
- },
- {
- "id": 3953,
- "start": 1561.517,
- "end": 1561.607,
- "text": "of"
- },
- {
- "id": 3954,
- "start": 1561.607,
- "end": 1561.807,
- "text": "these"
- },
- {
- "id": 3955,
- "start": 1561.807,
- "end": 1562.087,
- "text": "threats"
- },
- {
- "id": 3956,
- "start": 1562.087,
- "end": 1562.207,
- "text": "and"
- },
- {
- "id": 3957,
- "start": 1562.207,
- "end": 1562.747,
- "text": "problems"
- },
- {
- "id": 3958,
- "start": 1562.747,
- "end": 1563.277,
- "text": "are"
- },
- {
- "id": 3959,
- "start": 1563.5020000000002,
- "end": 1563.9320000000002,
- "text": "new,"
- },
- {
- "id": 3960,
- "start": 1564.257,
- "end": 1564.587,
- "text": "and"
- },
- {
- "id": 3961,
- "start": 1564.587,
- "end": 1564.637,
- "text": "I"
- },
- {
- "id": 3962,
- "start": 1564.637,
- "end": 1564.987,
- "text": "think"
- },
- {
- "id": 3963,
- "start": 1564.987,
- "end": 1565.207,
- "text": "we’re"
- },
- {
- "id": 3964,
- "start": 1565.207,
- "end": 1565.697,
- "text": "grappling"
- },
- {
- "id": 3965,
- "start": 1565.697,
- "end": 1565.867,
- "text": "with"
- },
- {
- "id": 3966,
- "start": 1565.867,
- "end": 1566.347,
- "text": "that"
- },
- {
- "id": 3967,
- "start": 1566.347,
- "end": 1566.527,
- "text": "as"
- },
- {
- "id": 3968,
- "start": 1566.527,
- "end": 1566.587,
- "text": "a"
- },
- {
- "id": 3969,
- "start": 1566.587,
- "end": 1567.267,
- "text": "company"
- },
- {
- "id": 3970,
- "start": 1567.267,
- "end": 1568.297,
- "text": "with"
- },
- {
- "id": 3971,
- "start": 1568.297,
- "end": 1568.537,
- "text": "other"
- },
- {
- "id": 3972,
- "start": 1568.537,
- "end": 1569.027,
- "text": "companies"
- },
- {
- "id": 3973,
- "start": 1569.027,
- "end": 1569.117,
- "text": "in"
- },
- {
- "id": 3974,
- "start": 1569.1270000000002,
- "end": 1569.4769999999999,
- "text": "this"
- },
- {
- "id": 3975,
- "start": 1569.227,
- "end": 1569.837,
- "text": "space,"
- },
- {
- "id": 3976,
- "start": 1569.837,
- "end": 1570.007,
- "text": "with"
- },
- {
- "id": 3977,
- "start": 1570.007,
- "end": 1570.517,
- "text": "governments,"
- },
- {
- "id": 3978,
- "start": 1570.517,
- "end": 1570.657,
- "text": "with"
- },
- {
- "id": 3979,
- "start": 1570.647,
- "end": 1570.857,
- "text": "other"
- },
- {
- "id": 3980,
- "start": 1571.942,
- "end": 1572.0770000000002,
- "text": "organizations."
- },
- {
- "id": 3981,
- "start": 1573.237,
- "end": 1573.297,
- "text": "I"
- },
- {
- "id": 3982,
- "start": 1573.297,
- "end": 1573.647,
- "text": "wouldn’t"
- },
- {
- "id": 3983,
- "start": 1573.647,
- "end": 1573.967,
- "text": "say"
- },
- {
- "id": 3984,
- "start": 1573.967,
- "end": 1574.807,
- "text": "that"
- },
- {
- "id": 3985,
- "start": 1574.807,
- "end": 1575.387,
- "text": "everything"
- },
- {
- "id": 3986,
- "start": 1575.387,
- "end": 1575.567,
- "text": "is"
- },
- {
- "id": 3987,
- "start": 1575.592,
- "end": 1575.777,
- "text": "new;"
- },
- {
- "id": 3988,
- "start": 1575.797,
- "end": 1575.987,
- "text": "it’s"
- },
- {
- "id": 3989,
- "start": 1575.987,
- "end": 1576.227,
- "text": "just"
- },
- {
- "id": 3990,
- "start": 1576.227,
- "end": 1576.557,
- "text": "different"
- },
- {
- "id": 3991,
- "start": 1576.557,
- "end": 1577.437,
- "text": "problems."
- },
- {
- "id": 3992,
- "start": 1577.437,
- "end": 1577.697,
- "text": "And"
- },
- {
- "id": 3993,
- "start": 1577.697,
- "end": 1578.347,
- "text": "strangely"
- },
- {
- "id": 3994,
- "start": 1578.347,
- "end": 1578.547,
- "text": "does"
- },
- {
- "id": 3995,
- "start": 1578.547,
- "end": 1578.677,
- "text": "it"
- },
- {
- "id": 3996,
- "start": 1578.677,
- "end": 1579.107,
- "text": "put"
- },
- {
- "id": 3997,
- "start": 1578.987,
- "end": 1579.677,
- "text": "Facebook"
- },
- {
- "id": 3998,
- "start": 1579.5785,
- "end": 1580.0335,
- "text": "in"
- },
- {
- "id": 3999,
- "start": 1580.17,
- "end": 1580.39,
- "text": "kind"
- },
- {
- "id": 4000,
- "start": 1580.39,
- "end": 1580.53,
- "text": "of"
- },
- {
- "id": 4001,
- "start": 1580.53,
- "end": 1580.62,
- "text": "an"
- },
- {
- "id": 4002,
- "start": 1580.98,
- "end": 1581.31,
- "text": "untenably"
- },
- {
- "id": 4003,
- "start": 1581.43,
- "end": 1582,
- "text": "large"
- },
- {
- "id": 4004,
- "start": 1582,
- "end": 1582.63,
- "text": "position"
- },
- {
- "id": 4005,
- "start": 1582.63,
- "end": 1582.73,
- "text": "or"
- },
- {
- "id": 4006,
- "start": 1582.73,
- "end": 1582.99,
- "text": "too"
- },
- {
- "id": 4007,
- "start": 1582.99,
- "end": 1583.51,
- "text": "powerful"
- },
- {
- "id": 4008,
- "start": 1583.51,
- "end": 1583.59,
- "text": "a"
- },
- {
- "id": 4009,
- "start": 1584.03,
- "end": 1584.22,
- "text": "position"
- },
- {
- "id": 4010,
- "start": 1584.55,
- "end": 1584.85,
- "text": "now"
- },
- {
- "id": 4011,
- "start": 1584.85,
- "end": 1585.14,
- "text": "that"
- },
- {
- "id": 4012,
- "start": 1585.14,
- "end": 1585.33,
- "text": "you’re"
- },
- {
- "id": 4013,
- "start": 1585.33,
- "end": 1585.61,
- "text": "gonna"
- },
- {
- "id": 4014,
- "start": 1585.61,
- "end": 1585.88,
- "text": "have"
- },
- {
- "id": 4015,
- "start": 1585.88,
- "end": 1585.99,
- "text": "to"
- },
- {
- "id": 4016,
- "start": 1585.99,
- "end": 1586.25,
- "text": "take"
- },
- {
- "id": 4017,
- "start": 1586.25,
- "end": 1587.11,
- "text": "responsibility"
- },
- {
- "id": 4018,
- "start": 1587.11,
- "end": 1587.97,
- "text": "for"
- },
- {
- "id": 4019,
- "start": 1587.97,
- "end": 1588.07,
- "text": "the"
- },
- {
- "id": 4020,
- "start": 1588.07,
- "end": 1588.62,
- "text": "enormity"
- },
- {
- "id": 4021,
- "start": 1588.62,
- "end": 1588.75,
- "text": "of"
- },
- {
- "id": 4022,
- "start": 1588.8049999999998,
- "end": 1589.3999999999996,
- "text": "these"
- },
- {
- "id": 4023,
- "start": 1588.99,
- "end": 1590.05,
- "text": "issues?"
- },
- {
- "id": 4024,
- "start": 1590.05,
- "end": 1590.13,
- "text": "I"
- },
- {
- "id": 4025,
- "start": 1590.13,
- "end": 1590.28,
- "text": "mean,"
- },
- {
- "id": 4026,
- "start": 1590.28,
- "end": 1590.4,
- "text": "is"
- },
- {
- "id": 4027,
- "start": 1590.8999999999999,
- "end": 1591.0966666666668,
- "text": "it"
- },
- {
- "id": 4028,
- "start": 1591.5199999999998,
- "end": 1591.793333333333,
- "text": "something"
- },
- {
- "id": 4029,
- "start": 1592.14,
- "end": 1592.49,
- "text": "something"
- },
- {
- "id": 4030,
- "start": 1592.49,
- "end": 1592.63,
- "text": "that"
- },
- {
- "id": 4031,
- "start": 1592.63,
- "end": 1592.71,
- "text": "the"
- },
- {
- "id": 4032,
- "start": 1592.71,
- "end": 1593.06,
- "text": "company"
- },
- {
- "id": 4033,
- "start": 1593.06,
- "end": 1593.32,
- "text": "didn’t"
- },
- {
- "id": 4034,
- "start": 1593.32,
- "end": 1593.61,
- "text": "want"
- },
- {
- "id": 4035,
- "start": 1593.61,
- "end": 1593.76,
- "text": "for"
- },
- {
- "id": 4036,
- "start": 1593.76,
- "end": 1593.82,
- "text": "a"
- },
- {
- "id": 4037,
- "start": 1593.82,
- "end": 1594.06,
- "text": "long"
- },
- {
- "id": 4038,
- "start": 1594.06,
- "end": 1594.38,
- "text": "time"
- },
- {
- "id": 4039,
- "start": 1594.38,
- "end": 1594.5,
- "text": "and"
- },
- {
- "id": 4040,
- "start": 1594.5,
- "end": 1594.77,
- "text": "now"
- },
- {
- "id": 4041,
- "start": 1594.77,
- "end": 1594.88,
- "text": "it"
- },
- {
- "id": 4042,
- "start": 1594.88,
- "end": 1595.09,
- "text": "kind"
- },
- {
- "id": 4043,
- "start": 1595.09,
- "end": 1595.41,
- "text": "of"
- },
- {
- "id": 4044,
- "start": 1595.41,
- "end": 1595.59,
- "text": "is"
- },
- {
- "id": 4045,
- "start": 1595.59,
- "end": 1596.03,
- "text": "saddled"
- },
- {
- "id": 4046,
- "start": 1596.03,
- "end": 1596.21,
- "text": "with"
- },
- {
- "id": 4047,
- "start": 1596.21,
- "end": 1596.32,
- "text": "to"
- },
- {
- "id": 4048,
- "start": 1596.32,
- "end": 1596.51,
- "text": "some"
- },
- {
- "id": 4049,
- "start": 1596.51,
- "end": 1597.57,
- "text": "degree?"
- },
- {
- "id": 4050,
- "start": 1597.57,
- "end": 1598.07,
- "text": "Yeah,"
- },
- {
- "id": 4051,
- "start": 1598.07,
- "end": 1599.08,
- "text": "we-"
- },
- {
- "id": 4052,
- "start": 1599.08,
- "end": 1599.31,
- "text": "this"
- },
- {
- "id": 4053,
- "start": 1599.31,
- "end": 1599.44,
- "text": "is"
- },
- {
- "id": 4054,
- "start": 1599.44,
- "end": 1599.5,
- "text": "a"
- },
- {
- "id": 4055,
- "start": 1599.5,
- "end": 1600.46,
- "text": "responsibility"
- },
- {
- "id": 4056,
- "start": 1600.46,
- "end": 1600.71,
- "text": "like"
- },
- {
- "id": 4057,
- "start": 1600.71,
- "end": 1600.77,
- "text": "I"
- },
- {
- "id": 4058,
- "start": 1600.77,
- "end": 1601.04,
- "text": "said,"
- },
- {
- "id": 4059,
- "start": 1601.04,
- "end": 1601.14,
- "text": "to"
- },
- {
- "id": 4060,
- "start": 1601.14,
- "end": 1601.38,
- "text": "make-"
- },
- {
- "id": 4061,
- "start": 1601.4233333333334,
- "end": 1601.73,
- "text": "make"
- },
- {
- "id": 4062,
- "start": 1601.7066666666667,
- "end": 1602.0800000000002,
- "text": "sure"
- },
- {
- "id": 4063,
- "start": 1601.99,
- "end": 1602.43,
- "text": "Facebook’s"
- },
- {
- "id": 4064,
- "start": 1602.43,
- "end": 1602.62,
- "text": "used"
- },
- {
- "id": 4065,
- "start": 1602.62,
- "end": 1602.76,
- "text": "for"
- },
- {
- "id": 4066,
- "start": 1602.76,
- "end": 1602.97,
- "text": "good"
- },
- {
- "id": 4067,
- "start": 1602.865,
- "end": 1603.0900000000001,
- "text": "and"
- },
- {
- "id": 4068,
- "start": 1602.97,
- "end": 1603.21,
- "text": "not"
- },
- {
- "id": 4069,
- "start": 1603.21,
- "end": 1603.67,
- "text": "bad."
- },
- {
- "id": 4070,
- "start": 1603.67,
- "end": 1604.15,
- "text": "One"
- },
- {
- "id": 4071,
- "start": 1604.15,
- "end": 1604.33,
- "text": "thing"
- },
- {
- "id": 4072,
- "start": 1604.33,
- "end": 1604.55,
- "text": "that"
- },
- {
- "id": 4073,
- "start": 1604.55,
- "end": 1605.12,
- "text": "has"
- },
- {
- "id": 4074,
- "start": 1605.12,
- "end": 1605.53,
- "text": "really"
- },
- {
- "id": 4075,
- "start": 1605.53,
- "end": 1605.69,
- "text": "been"
- },
- {
- "id": 4076,
- "start": 1605.69,
- "end": 1606.23,
- "text": "highlighted"
- },
- {
- "id": 4077,
- "start": 1606.23,
- "end": 1606.45,
- "text": "for"
- },
- {
- "id": 4078,
- "start": 1606.45,
- "end": 1607.25,
- "text": "me"
- },
- {
- "id": 4079,
- "start": 1607.25,
- "end": 1607.36,
- "text": "that"
- },
- {
- "id": 4080,
- "start": 1607.36,
- "end": 1607.68,
- "text": "relates"
- },
- {
- "id": 4081,
- "start": 1607.68,
- "end": 1607.8,
- "text": "to"
- },
- {
- "id": 4082,
- "start": 1607.8,
- "end": 1607.89,
- "text": "the"
- },
- {
- "id": 4083,
- "start": 1607.89,
- "end": 1608.27,
- "text": "earlier"
- },
- {
- "id": 4084,
- "start": 1608.27,
- "end": 1608.77,
- "text": "question"
- },
- {
- "id": 4085,
- "start": 1608.77,
- "end": 1609.57,
- "text": "is"
- },
- {
- "id": 4086,
- "start": 1609.57,
- "end": 1609.92,
- "text": "we"
- },
- {
- "id": 4087,
- "start": 1609.92,
- "end": 1610.86,
- "text": "are"
- },
- {
- "id": 4088,
- "start": 1610.86,
- "end": 1611.33,
- "text": "working"
- },
- {
- "id": 4089,
- "start": 1611.33,
- "end": 1611.66,
- "text": "here"
- },
- {
- "id": 4090,
- "start": 1611.66,
- "end": 1611.78,
- "text": "in"
- },
- {
- "id": 4091,
- "start": 1611.78,
- "end": 1612.09,
- "text": "Menlo"
- },
- {
- "id": 4092,
- "start": 1612.09,
- "end": 1612.47,
- "text": "Park"
- },
- {
- "id": 4093,
- "start": 1612.47,
- "end": 1612.6,
- "text": "in"
- },
- {
- "id": 4094,
- "start": 1612.6,
- "end": 1612.9,
- "text": "Palo"
- },
- {
- "id": 4095,
- "start": 1612.9,
- "end": 1613.22,
- "text": "Alto,"
- },
- {
- "id": 4096,
- "start": 1613.22,
- "end": 1614.45,
- "text": "California"
- },
- {
- "id": 4097,
- "start": 1614.45,
- "end": 1614.62,
- "text": "to"
- },
- {
- "id": 4098,
- "start": 1614.62,
- "end": 1614.73,
- "text": "the"
- },
- {
- "id": 4099,
- "start": 1614.73,
- "end": 1615.13,
- "text": "extent"
- },
- {
- "id": 4100,
- "start": 1615.13,
- "end": 1615.78,
- "text": "that"
- },
- {
- "id": 4101,
- "start": 1615.78,
- "end": 1616.01,
- "text": "some"
- },
- {
- "id": 4102,
- "start": 1616.01,
- "end": 1616.13,
- "text": "of"
- },
- {
- "id": 4103,
- "start": 1616.13,
- "end": 1616.59,
- "text": "these"
- },
- {
- "id": 4104,
- "start": 1616.59,
- "end": 1617.21,
- "text": "issues"
- },
- {
- "id": 4105,
- "start": 1617.21,
- "end": 1617.32,
- "text": "and"
- },
- {
- "id": 4106,
- "start": 1617.32,
- "end": 1617.85,
- "text": "problems"
- },
- {
- "id": 4107,
- "start": 1617.85,
- "end": 1618.51,
- "text": "manifest"
- },
- {
- "id": 4108,
- "start": 1618.51,
- "end": 1618.62,
- "text": "in"
- },
- {
- "id": 4109,
- "start": 1618.62,
- "end": 1618.87,
- "text": "other"
- },
- {
- "id": 4110,
- "start": 1618.87,
- "end": 1619.36,
- "text": "countries"
- },
- {
- "id": 4111,
- "start": 1619.36,
- "end": 1619.66,
- "text": "around"
- },
- {
- "id": 4112,
- "start": 1619.66,
- "end": 1619.75,
- "text": "the"
- },
- {
- "id": 4113,
- "start": 1619.75,
- "end": 1620.34,
- "text": "world,"
- },
- {
- "id": 4114,
- "start": 1620.34,
- "end": 1620.76,
- "text": "we"
- },
- {
- "id": 4115,
- "start": 1620.76,
- "end": 1620.96,
- "text": "didn’t"
- },
- {
- "id": 4116,
- "start": 1620.96,
- "end": 1621.42,
- "text": "have"
- },
- {
- "id": 4117,
- "start": 1621.42,
- "end": 1622.74,
- "text": "sufficient"
- },
- {
- "id": 4118,
- "start": 1622.74,
- "end": 1623.64,
- "text": "information"
- },
- {
- "id": 4119,
- "start": 1623.64,
- "end": 1624.05,
- "text": "and"
- },
- {
- "id": 4120,
- "start": 1624.05,
- "end": 1624.19,
- "text": "a"
- },
- {
- "id": 4121,
- "start": 1624.19,
- "end": 1625.25,
- "text": "pulse"
- },
- {
- "id": 4122,
- "start": 1625.25,
- "end": 1625.77,
- "text": "on"
- },
- {
- "id": 4123,
- "start": 1625.77,
- "end": 1625.94,
- "text": "what"
- },
- {
- "id": 4124,
- "start": 1625.94,
- "end": 1626.1,
- "text": "was"
- },
- {
- "id": 4125,
- "start": 1626.1,
- "end": 1626.74,
- "text": "happening"
- },
- {
- "id": 4126,
- "start": 1626.74,
- "end": 1627.21,
- "text": "in"
- },
- {
- "id": 4127,
- "start": 1627.21,
- "end": 1627.73,
- "text": "Southeast"
- },
- {
- "id": 4128,
- "start": 1627.73,
- "end": 1628.34,
- "text": "Asia"
- },
- {
- "id": 4129,
- "start": 1628.34,
- "end": 1628.86,
- "text": "or"
- },
- {
- "id": 4130,
- "start": 1628.86,
- "end": 1629.16,
- "text": "what"
- },
- {
- "id": 4131,
- "start": 1629.16,
- "end": 1629.28,
- "text": "was"
- },
- {
- "id": 4132,
- "start": 1629.28,
- "end": 1629.76,
- "text": "happening"
- },
- {
- "id": 4133,
- "start": 1629.76,
- "end": 1629.89,
- "text": "in"
- },
- {
- "id": 4134,
- "start": 1629.89,
- "end": 1630.13,
- "text": "South"
- },
- {
- "id": 4135,
- "start": 1630.325,
- "end": 1630.615,
- "text": "America"
- },
- {
- "id": 4136,
- "start": 1630.76,
- "end": 1631.1,
- "text": "and"
- },
- {
- "id": 4137,
- "start": 1631.1,
- "end": 1631.37,
- "text": "so"
- },
- {
- "id": 4138,
- "start": 1631.37,
- "end": 1631.59,
- "text": "one"
- },
- {
- "id": 4139,
- "start": 1631.59,
- "end": 1632.02,
- "text": "change"
- },
- {
- "id": 4140,
- "start": 1632.02,
- "end": 1632.15,
- "text": "that"
- },
- {
- "id": 4141,
- "start": 1632.15,
- "end": 1632.32,
- "text": "we’ve"
- },
- {
- "id": 4142,
- "start": 1632.32,
- "end": 1633.07,
- "text": "made"
- },
- {
- "id": 4143,
- "start": 1633.07,
- "end": 1633.39,
- "text": "along"
- },
- {
- "id": 4144,
- "start": 1633.39,
- "end": 1633.53,
- "text": "with"
- },
- {
- "id": 4145,
- "start": 1633.53,
- "end": 1633.83,
- "text": "hiring"
- },
- {
- "id": 4146,
- "start": 1633.83,
- "end": 1633.98,
- "text": "so"
- },
- {
- "id": 4147,
- "start": 1633.98,
- "end": 1634.15,
- "text": "many"
- },
- {
- "id": 4148,
- "start": 1634.15,
- "end": 1634.33,
- "text": "more"
- },
- {
- "id": 4149,
- "start": 1634.33,
- "end": 1634.7,
- "text": "people"
- },
- {
- "id": 4150,
- "start": 1634.7,
- "end": 1634.8,
- "text": "is"
- },
- {
- "id": 4151,
- "start": 1634.8,
- "end": 1634.94,
- "text": "that"
- },
- {
- "id": 4152,
- "start": 1634.94,
- "end": 1634.99,
- "text": "a"
- },
- {
- "id": 4153,
- "start": 1634.99,
- "end": 1635.19,
- "text": "lot"
- },
- {
- "id": 4154,
- "start": 1635.19,
- "end": 1635.25,
- "text": "of"
- },
- {
- "id": 4155,
- "start": 1635.25,
- "end": 1635.41,
- "text": "these"
- },
- {
- "id": 4156,
- "start": 1635.41,
- "end": 1635.68,
- "text": "people"
- },
- {
- "id": 4157,
- "start": 1635.68,
- "end": 1635.79,
- "text": "are"
- },
- {
- "id": 4158,
- "start": 1635.79,
- "end": 1636.08,
- "text": "based"
- },
- {
- "id": 4159,
- "start": 1636.08,
- "end": 1636.87,
- "text": "internationally"
- },
- {
- "id": 4160,
- "start": 1636.87,
- "end": 1637.03,
- "text": "and"
- },
- {
- "id": 4161,
- "start": 1637.03,
- "end": 1637.33,
- "text": "can"
- },
- {
- "id": 4162,
- "start": 1637.33,
- "end": 1637.59,
- "text": "give"
- },
- {
- "id": 4163,
- "start": 1637.59,
- "end": 1637.77,
- "text": "us"
- },
- {
- "id": 4164,
- "start": 1637.77,
- "end": 1637.95,
- "text": "that"
- },
- {
- "id": 4165,
- "start": 1637.95,
- "end": 1638.37,
- "text": "insight"
- },
- {
- "id": 4166,
- "start": 1638.37,
- "end": 1638.56,
- "text": "that"
- },
- {
- "id": 4167,
- "start": 1638.56,
- "end": 1638.76,
- "text": "we"
- },
- {
- "id": 4168,
- "start": 1638.76,
- "end": 1638.99,
- "text": "may"
- },
- {
- "id": 4169,
- "start": 1638.99,
- "end": 1639.28,
- "text": "not"
- },
- {
- "id": 4170,
- "start": 1639.28,
- "end": 1639.97,
- "text": "get"
- },
- {
- "id": 4171,
- "start": 1639.97,
- "end": 1640.23,
- "text": "from"
- },
- {
- "id": 4172,
- "start": 1640.23,
- "end": 1641.17,
- "text": "being"
- },
- {
- "id": 4173,
- "start": 1641.17,
- "end": 1641.62,
- "text": "here"
- },
- {
- "id": 4174,
- "start": 1641.62,
- "end": 1641.75,
- "text": "at"
- },
- {
- "id": 4175,
- "start": 1641.75,
- "end": 1642.61,
- "text": "headquarters."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 1.44,
- "end": 21.53,
- "speaker": "James Jacoby"
- },
- {
- "id": 1,
- "start": 21.53,
- "end": 39.58,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 2,
- "start": 39.58,
- "end": 43.471428571428575,
- "speaker": "James Jacoby"
- },
- {
- "id": 3,
- "start": 43.9,
- "end": 82.7,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 4,
- "start": 82.7,
- "end": 86.07333333333332,
- "speaker": "James Jacoby"
- },
- {
- "id": 5,
- "start": 86.59,
- "end": 110.35,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 6,
- "start": 110.35,
- "end": 119.54,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 7,
- "start": 119.54,
- "end": 148.95,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 8,
- "start": 148.25,
- "end": 158.39,
- "speaker": "James Jacoby"
- },
- {
- "id": 9,
- "start": 159.36,
- "end": 184.49666666666667,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 10,
- "start": 185.22,
- "end": 204.51500000000004,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 11,
- "start": 204.97,
- "end": 228.97,
- "speaker": "James Jacoby"
- },
- {
- "id": 12,
- "start": 228.97,
- "end": 242.18,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 13,
- "start": 242.18,
- "end": 256.077,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 14,
- "start": 256.077,
- "end": 270.087,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 15,
- "start": 270.087,
- "end": 295.78700000000003,
- "speaker": "James Jacoby"
- },
- {
- "id": 16,
- "start": 296.137,
- "end": 309.187,
- "speaker": "James Jacoby"
- },
- {
- "id": 17,
- "start": 309.687,
- "end": 325.387,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 18,
- "start": 325.387,
- "end": 347.83699999999993,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 19,
- "start": 348.227,
- "end": 361.1970000000001,
- "speaker": "James Jacoby"
- },
- {
- "id": 20,
- "start": 362.777,
- "end": 398.278,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 21,
- "start": 398.71466666666663,
- "end": 409.628,
- "speaker": "James Jacoby"
- },
- {
- "id": 22,
- "start": 407.388,
- "end": 450.96799999999985,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 23,
- "start": 450.848,
- "end": 462.89799999999997,
- "speaker": "James Jacoby"
- },
- {
- "id": 24,
- "start": 462.9046666666666,
- "end": 477.438,
- "speaker": "James Jacoby"
- },
- {
- "id": 25,
- "start": 477.438,
- "end": 483.088,
- "speaker": "James Jacoby"
- },
- {
- "id": 26,
- "start": 483.088,
- "end": 501.321,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 27,
- "start": 501.321,
- "end": 517.251,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 28,
- "start": 517.251,
- "end": 523.971,
- "speaker": "James Jacoby"
- },
- {
- "id": 29,
- "start": 523.971,
- "end": 536.931,
- "speaker": "James Jacoby"
- },
- {
- "id": 30,
- "start": 536.931,
- "end": 547.201,
- "speaker": "James Jacoby"
- },
- {
- "id": 31,
- "start": 547.761,
- "end": 549.511,
- "speaker": "James Jacoby"
- },
- {
- "id": 32,
- "start": 550.1610000000001,
- "end": 589.991,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 33,
- "start": 590.291,
- "end": 593.911,
- "speaker": "James Jacoby"
- },
- {
- "id": 34,
- "start": 593.911,
- "end": 598.651,
- "speaker": "James Jacoby"
- },
- {
- "id": 35,
- "start": 598.651,
- "end": 603.241,
- "speaker": "James Jacoby"
- },
- {
- "id": 36,
- "start": 604.711,
- "end": 615.4599999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 37,
- "start": 616.315,
- "end": 621.34,
- "speaker": "James Jacoby"
- },
- {
- "id": 38,
- "start": 621.895,
- "end": 659.4300000000001,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 39,
- "start": 659.875,
- "end": 664.3483333333334,
- "speaker": "James Jacoby"
- },
- {
- "id": 40,
- "start": 664.165,
- "end": 665.135,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 41,
- "start": 665.135,
- "end": 689.105,
- "speaker": "James Jacoby"
- },
- {
- "id": 42,
- "start": 689.3616666666666,
- "end": 726.03,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 43,
- "start": 726.355,
- "end": 759.3829999999998,
- "speaker": "James Jacoby"
- },
- {
- "id": 44,
- "start": 761.668,
- "end": 793.768,
- "speaker": "James Jacoby"
- },
- {
- "id": 45,
- "start": 793.768,
- "end": 823.088,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 46,
- "start": 823.088,
- "end": 830.808,
- "speaker": "James Jacoby"
- },
- {
- "id": 47,
- "start": 830.808,
- "end": 842.558,
- "speaker": "James Jacoby"
- },
- {
- "id": 48,
- "start": 842.558,
- "end": 881.2,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 49,
- "start": 881.2,
- "end": 898.17,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 50,
- "start": 898.17,
- "end": 907.6,
- "speaker": "James Jacoby"
- },
- {
- "id": 51,
- "start": 907.6,
- "end": 923.07,
- "speaker": "James Jacoby"
- },
- {
- "id": 52,
- "start": 923.07,
- "end": 931.4425,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 53,
- "start": 932.01,
- "end": 939.97,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 54,
- "start": 939.97,
- "end": 941.51,
- "speaker": "James Jacoby"
- },
- {
- "id": 55,
- "start": 941.51,
- "end": 944.405,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 56,
- "start": 944.27,
- "end": 952.0939999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 57,
- "start": 952.182,
- "end": 952.482,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 58,
- "start": 952.68,
- "end": 966.7749999999996,
- "speaker": "James Jacoby"
- },
- {
- "id": 59,
- "start": 968.21,
- "end": 997.153,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 60,
- "start": 997.323,
- "end": 1006.033,
- "speaker": "James Jacoby"
- },
- {
- "id": 61,
- "start": 1005.743,
- "end": 1008.153,
- "speaker": "James Jacoby"
- },
- {
- "id": 62,
- "start": 1008.153,
- "end": 1022.8580000000002,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 63,
- "start": 1025.153,
- "end": 1043.7830000000001,
- "speaker": "James Jacoby"
- },
- {
- "id": 64,
- "start": 1044.533,
- "end": 1079.623,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 65,
- "start": 1079.623,
- "end": 1104.7799999999997,
- "speaker": "James Jacoby"
- },
- {
- "id": 66,
- "start": 1105.58,
- "end": 1129.045,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 67,
- "start": 1129.56,
- "end": 1143.835,
- "speaker": "James Jacoby"
- },
- {
- "id": 68,
- "start": 1145.24,
- "end": 1165.95,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 69,
- "start": 1166.0966666666668,
- "end": 1171.74,
- "speaker": "James Jacoby"
- },
- {
- "id": 70,
- "start": 1172.6799999999998,
- "end": 1177.8550000000002,
- "speaker": "James Jacoby"
- },
- {
- "id": 71,
- "start": 1178.31,
- "end": 1180.74,
- "speaker": "James Jacoby"
- },
- {
- "id": 72,
- "start": 1180.74,
- "end": 1185.1,
- "speaker": "James Jacoby"
- },
- {
- "id": 73,
- "start": 1185.1,
- "end": 1193.87,
- "speaker": "James Jacoby"
- },
- {
- "id": 74,
- "start": 1193.87,
- "end": 1238.113,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 75,
- "start": 1238.113,
- "end": 1244.913,
- "speaker": "James Jacoby"
- },
- {
- "id": 76,
- "start": 1244.913,
- "end": 1280.953,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 77,
- "start": 1280.953,
- "end": 1319.7830000000004,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 78,
- "start": 1320.243,
- "end": 1329.203,
- "speaker": "James Jacoby"
- },
- {
- "id": 79,
- "start": 1329.203,
- "end": 1356.452,
- "speaker": "James Jacoby"
- },
- {
- "id": 80,
- "start": 1356.452,
- "end": 1360.152,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 81,
- "start": 1360.152,
- "end": 1387.242,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 82,
- "start": 1387.242,
- "end": 1396.092,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 83,
- "start": 1396.092,
- "end": 1406.062,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 84,
- "start": 1406.062,
- "end": 1433.432,
- "speaker": "James Jacoby"
- },
- {
- "id": 85,
- "start": 1433.432,
- "end": 1449.772,
- "speaker": "James Jacoby"
- },
- {
- "id": 86,
- "start": 1449.832,
- "end": 1462.0970000000002,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 87,
- "start": 1461.835,
- "end": 1473.927,
- "speaker": "James Jacoby"
- },
- {
- "id": 88,
- "start": 1473.927,
- "end": 1499.947,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 89,
- "start": 1500.097,
- "end": 1508.237,
- "speaker": "James Jacoby"
- },
- {
- "id": 90,
- "start": 1508.237,
- "end": 1518.757,
- "speaker": "James Jacoby"
- },
- {
- "id": 91,
- "start": 1518.757,
- "end": 1530.907,
- "speaker": "James Jacoby"
- },
- {
- "id": 92,
- "start": 1530.907,
- "end": 1577.437,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 93,
- "start": 1577.437,
- "end": 1590.05,
- "speaker": "James Jacoby"
- },
- {
- "id": 94,
- "start": 1590.05,
- "end": 1597.57,
- "speaker": "James Jacoby"
- },
- {
- "id": 95,
- "start": 1597.57,
- "end": 1628.34,
- "speaker": "Naomi Gleit"
- },
- {
- "id": 96,
- "start": 1628.34,
- "end": 1642.61,
- "speaker": "Naomi Gleit"
- }
- ]
- }
- },
- {
- "_id": "1003cjw29xii80000ird74yb19swa",
- "projectId": "10046281c4ad4938b7d0ae6fa9899bec",
- "title": "Guy Rosen",
- "description": "Guy Rosen, Facebook VP of Product Management. Interview for PBS Frontline, The Facebook Dilemma",
- "url": "https://digital-paper-edit-demo.s3.eu-west-2.amazonaws.com/PBS-Frontline/The+Facebook+Dilemma+-+interviews/The+Facebook+Dilemma+-+Guy+Rosen-4sGvc84tNik.mp4",
- "clipName": "The Facebook Dilemma - Guy Rosen-4sGvc84tNik.mp4",
- "status": "done",
- "transcript": {
- "words": [
- {
- "id": 0,
- "start": 1.41,
- "end": 1.64,
- "text": "Bring"
- },
- {
- "id": 1,
- "start": 1.64,
- "end": 1.75,
- "text": "me"
- },
- {
- "id": 2,
- "start": 1.75,
- "end": 2.01,
- "text": "back"
- },
- {
- "id": 3,
- "start": 2.01,
- "end": 2.12,
- "text": "to"
- },
- {
- "id": 4,
- "start": 2.12,
- "end": 2.21,
- "text": "the"
- },
- {
- "id": 5,
- "start": 2.21,
- "end": 2.59,
- "text": "moment"
- },
- {
- "id": 6,
- "start": 2.59,
- "end": 2.8,
- "text": "when"
- },
- {
- "id": 7,
- "start": 2.8,
- "end": 4.46,
- "text": "you’re"
- },
- {
- "id": 8,
- "start": 4.46,
- "end": 4.94,
- "text": "basically"
- },
- {
- "id": 9,
- "start": 4.94,
- "end": 5.2,
- "text": "given"
- },
- {
- "id": 10,
- "start": 5.2,
- "end": 5.26,
- "text": "a"
- },
- {
- "id": 11,
- "start": 5.26,
- "end": 5.93,
- "text": "task"
- },
- {
- "id": 12,
- "start": 6.02,
- "end": 6.82,
- "text": "here"
- },
- {
- "id": 13,
- "start": 6.78,
- "end": 7.71,
- "text": "and"
- },
- {
- "id": 14,
- "start": 7.71,
- "end": 8.25,
- "text": "where"
- },
- {
- "id": 15,
- "start": 8.25,
- "end": 8.46,
- "text": "were"
- },
- {
- "id": 16,
- "start": 8.530000000000001,
- "end": 8.775,
- "text": "you."
- },
- {
- "id": 17,
- "start": 8.81,
- "end": 9.09,
- "text": "Who"
- },
- {
- "id": 18,
- "start": 9.09,
- "end": 9.31,
- "text": "gave"
- },
- {
- "id": 19,
- "start": 9.31,
- "end": 9.4,
- "text": "you"
- },
- {
- "id": 20,
- "start": 9.4,
- "end": 9.51,
- "text": "the"
- },
- {
- "id": 21,
- "start": 9.51,
- "end": 9.96,
- "text": "task?"
- },
- {
- "id": 22,
- "start": 9.96,
- "end": 10.13,
- "text": "Kind"
- },
- {
- "id": 23,
- "start": 10.13,
- "end": 10.24,
- "text": "of"
- },
- {
- "id": 24,
- "start": 10.24,
- "end": 10.46,
- "text": "bring"
- },
- {
- "id": 25,
- "start": 10.46,
- "end": 10.58,
- "text": "me"
- },
- {
- "id": 26,
- "start": 10.58,
- "end": 10.77,
- "text": "into"
- },
- {
- "id": 27,
- "start": 10.77,
- "end": 10.87,
- "text": "the"
- },
- {
- "id": 28,
- "start": 11.01,
- "end": 11.375,
- "text": "story"
- },
- {
- "id": 29,
- "start": 11.25,
- "end": 11.88,
- "text": "of"
- },
- {
- "id": 30,
- "start": 11.88,
- "end": 12.22,
- "text": "being"
- },
- {
- "id": 31,
- "start": 12.22,
- "end": 13.25,
- "text": "charged"
- },
- {
- "id": 32,
- "start": 13.25,
- "end": 13.43,
- "text": "with"
- },
- {
- "id": 33,
- "start": 13.43,
- "end": 13.58,
- "text": "this"
- },
- {
- "id": 34,
- "start": 13.58,
- "end": 14.27,
- "text": "enormous"
- },
- {
- "id": 35,
- "start": 14.27,
- "end": 15.84,
- "text": "responsibility."
- },
- {
- "id": 36,
- "start": 15.84,
- "end": 16.71,
- "text": "So"
- },
- {
- "id": 37,
- "start": 16.71,
- "end": 16.95,
- "text": "let"
- },
- {
- "id": 38,
- "start": 16.95,
- "end": 17.08,
- "text": "me"
- },
- {
- "id": 39,
- "start": 17.08,
- "end": 17.28,
- "text": "step"
- },
- {
- "id": 40,
- "start": 17.28,
- "end": 17.56,
- "text": "back"
- },
- {
- "id": 41,
- "start": 17.56,
- "end": 17.65,
- "text": "and"
- },
- {
- "id": 42,
- "start": 17.65,
- "end": 18.17,
- "text": "explain"
- },
- {
- "id": 43,
- "start": 18.17,
- "end": 18.81,
- "text": "how"
- },
- {
- "id": 44,
- "start": 18.81,
- "end": 18.95,
- "text": "my"
- },
- {
- "id": 45,
- "start": 18.95,
- "end": 19.19,
- "text": "role"
- },
- {
- "id": 46,
- "start": 19.310000000000002,
- "end": 19.675,
- "text": "works."
- },
- {
- "id": 47,
- "start": 19.67,
- "end": 20.16,
- "text": "So"
- },
- {
- "id": 48,
- "start": 20.03,
- "end": 20.645,
- "text": "I’m"
- },
- {
- "id": 49,
- "start": 20.39,
- "end": 21.13,
- "text": "responsible"
- },
- {
- "id": 50,
- "start": 21.13,
- "end": 21.59,
- "text": "overall"
- },
- {
- "id": 51,
- "start": 21.59,
- "end": 21.74,
- "text": "for"
- },
- {
- "id": 52,
- "start": 21.74,
- "end": 22.04,
- "text": "the"
- },
- {
- "id": 53,
- "start": 22.04,
- "end": 22.39,
- "text": "safety"
- },
- {
- "id": 54,
- "start": 22.39,
- "end": 22.49,
- "text": "and"
- },
- {
- "id": 55,
- "start": 22.49,
- "end": 22.89,
- "text": "security"
- },
- {
- "id": 56,
- "start": 22.89,
- "end": 23.22,
- "text": "work"
- },
- {
- "id": 57,
- "start": 23.22,
- "end": 23.37,
- "text": "at"
- },
- {
- "id": 58,
- "start": 23.37,
- "end": 24.24,
- "text": "Facebook"
- },
- {
- "id": 59,
- "start": 23.93,
- "end": 24.38,
- "text": "and"
- },
- {
- "id": 60,
- "start": 24.155,
- "end": 24.58,
- "text": "I"
- },
- {
- "id": 61,
- "start": 24.38,
- "end": 24.78,
- "text": "approach"
- },
- {
- "id": 62,
- "start": 24.78,
- "end": 24.97,
- "text": "it"
- },
- {
- "id": 63,
- "start": 24.97,
- "end": 25.22,
- "text": "from"
- },
- {
- "id": 64,
- "start": 25.22,
- "end": 25.31,
- "text": "the"
- },
- {
- "id": 65,
- "start": 25.31,
- "end": 26.16,
- "text": "product"
- },
- {
- "id": 66,
- "start": 26.16,
- "end": 26.34,
- "text": "and"
- },
- {
- "id": 67,
- "start": 26.34,
- "end": 26.49,
- "text": "the"
- },
- {
- "id": 68,
- "start": 26.49,
- "end": 26.98,
- "text": "technical"
- },
- {
- "id": 69,
- "start": 26.98,
- "end": 27.79,
- "text": "side."
- },
- {
- "id": 70,
- "start": 27.79,
- "end": 27.96,
- "text": "So"
- },
- {
- "id": 71,
- "start": 27.96,
- "end": 28.25,
- "text": "working"
- },
- {
- "id": 72,
- "start": 28.25,
- "end": 28.62,
- "text": "very"
- },
- {
- "id": 73,
- "start": 28.62,
- "end": 29.65,
- "text": "closely"
- },
- {
- "id": 74,
- "start": 29.65,
- "end": 29.84,
- "text": "with"
- },
- {
- "id": 75,
- "start": 29.84,
- "end": 30.86,
- "text": "policy"
- },
- {
- "id": 76,
- "start": 30.86,
- "end": 31.11,
- "text": "and"
- },
- {
- "id": 77,
- "start": 31.11,
- "end": 31.57,
- "text": "with"
- },
- {
- "id": 78,
- "start": 31.57,
- "end": 32.83,
- "text": "operations,"
- },
- {
- "id": 79,
- "start": 32.83,
- "end": 33.27,
- "text": "because"
- },
- {
- "id": 80,
- "start": 33.27,
- "end": 33.81,
- "text": "fighting"
- },
- {
- "id": 81,
- "start": 33.81,
- "end": 34.33,
- "text": "abuse"
- },
- {
- "id": 82,
- "start": 34.33,
- "end": 34.51,
- "text": "on"
- },
- {
- "id": 83,
- "start": 34.51,
- "end": 35.59,
- "text": "Facebook"
- },
- {
- "id": 84,
- "start": 35.59,
- "end": 35.74,
- "text": "is"
- },
- {
- "id": 85,
- "start": 35.74,
- "end": 36.05,
- "text": "something"
- },
- {
- "id": 86,
- "start": 36.05,
- "end": 36.22,
- "text": "that"
- },
- {
- "id": 87,
- "start": 36.22,
- "end": 36.81,
- "text": "requires"
- },
- {
- "id": 88,
- "start": 36.81,
- "end": 37.08,
- "text": "all"
- },
- {
- "id": 89,
- "start": 37.08,
- "end": 37.2,
- "text": "of"
- },
- {
- "id": 90,
- "start": 37.2,
- "end": 37.48,
- "text": "those"
- },
- {
- "id": 91,
- "start": 37.48,
- "end": 38.04,
- "text": "three"
- },
- {
- "id": 92,
- "start": 38.04,
- "end": 38.24,
- "text": "to"
- },
- {
- "id": 93,
- "start": 38.24,
- "end": 38.84,
- "text": "constantly"
- },
- {
- "id": 94,
- "start": 38.84,
- "end": 39.81,
- "text": "work"
- },
- {
- "id": 95,
- "start": 39.36,
- "end": 40.01,
- "text": "in"
- },
- {
- "id": 96,
- "start": 40.55,
- "end": 41.52499999999998,
- "text": "lockstep."
- },
- {
- "id": 97,
- "start": 41.74,
- "end": 43.04,
- "text": "And"
- },
- {
- "id": 98,
- "start": 43.04,
- "end": 43.17,
- "text": "a"
- },
- {
- "id": 99,
- "start": 43.17,
- "end": 43.36,
- "text": "lot"
- },
- {
- "id": 100,
- "start": 43.36,
- "end": 43.45,
- "text": "of"
- },
- {
- "id": 101,
- "start": 43.45,
- "end": 43.55,
- "text": "the"
- },
- {
- "id": 102,
- "start": 43.55,
- "end": 43.83,
- "text": "work"
- },
- {
- "id": 103,
- "start": 43.83,
- "end": 43.98,
- "text": "that"
- },
- {
- "id": 104,
- "start": 43.98,
- "end": 44.14,
- "text": "we’ve"
- },
- {
- "id": 105,
- "start": 44.14,
- "end": 44.31,
- "text": "been"
- },
- {
- "id": 106,
- "start": 44.31,
- "end": 45.19,
- "text": "doing"
- },
- {
- "id": 107,
- "start": 45.19,
- "end": 45.55,
- "text": "is"
- },
- {
- "id": 108,
- "start": 45.55,
- "end": 46.2,
- "text": "understanding"
- },
- {
- "id": 109,
- "start": 46.2,
- "end": 47.44,
- "text": "how"
- },
- {
- "id": 110,
- "start": 47.44,
- "end": 47.68,
- "text": "we"
- },
- {
- "id": 111,
- "start": 47.68,
- "end": 48.36,
- "text": "move"
- },
- {
- "id": 112,
- "start": 48.36,
- "end": 49.44,
- "text": "from"
- },
- {
- "id": 113,
- "start": 49.44,
- "end": 49.95,
- "text": "being"
- },
- {
- "id": 114,
- "start": 49.95,
- "end": 51.06,
- "text": "reactive"
- },
- {
- "id": 115,
- "start": 51.06,
- "end": 51.22,
- "text": "to"
- },
- {
- "id": 116,
- "start": 51.22,
- "end": 51.54,
- "text": "being"
- },
- {
- "id": 117,
- "start": 51.54,
- "end": 52.48,
- "text": "proactive"
- },
- {
- "id": 118,
- "start": 52.195,
- "end": 52.785,
- "text": "and"
- },
- {
- "id": 119,
- "start": 52.85,
- "end": 53.09,
- "text": "how"
- },
- {
- "id": 120,
- "start": 53.09,
- "end": 53.21,
- "text": "we"
- },
- {
- "id": 121,
- "start": 53.21,
- "end": 54.03,
- "text": "approach"
- },
- {
- "id": 122,
- "start": 54.03,
- "end": 54.16,
- "text": "the"
- },
- {
- "id": 123,
- "start": 54.16,
- "end": 54.64,
- "text": "task"
- },
- {
- "id": 124,
- "start": 54.64,
- "end": 54.92,
- "text": "of"
- },
- {
- "id": 125,
- "start": 54.92,
- "end": 55.65,
- "text": "understanding"
- },
- {
- "id": 126,
- "start": 55.65,
- "end": 55.79,
- "text": "and"
- },
- {
- "id": 127,
- "start": 55.79,
- "end": 56.45,
- "text": "finding"
- },
- {
- "id": 128,
- "start": 56.32,
- "end": 57.13000000000001,
- "text": "bad"
- },
- {
- "id": 129,
- "start": 56.85,
- "end": 57.81,
- "text": "content."
- },
- {
- "id": 130,
- "start": 57.81,
- "end": 59.53,
- "text": "So"
- },
- {
- "id": 131,
- "start": 59.53,
- "end": 60.41,
- "text": "traditionally,"
- },
- {
- "id": 132,
- "start": 60.41,
- "end": 60.56,
- "text": "the"
- },
- {
- "id": 133,
- "start": 60.56,
- "end": 60.7,
- "text": "way"
- },
- {
- "id": 134,
- "start": 60.7,
- "end": 60.83,
- "text": "my"
- },
- {
- "id": 135,
- "start": 60.83,
- "end": 61.07,
- "text": "team"
- },
- {
- "id": 136,
- "start": 61.07,
- "end": 61.41,
- "text": "works"
- },
- {
- "id": 137,
- "start": 61.41,
- "end": 61.78,
- "text": "is"
- },
- {
- "id": 138,
- "start": 61.78,
- "end": 61.97,
- "text": "if"
- },
- {
- "id": 139,
- "start": 61.97,
- "end": 62.09,
- "text": "you"
- },
- {
- "id": 140,
- "start": 62.09,
- "end": 62.24,
- "text": "see"
- },
- {
- "id": 141,
- "start": 62.24,
- "end": 62.91,
- "text": "something"
- },
- {
- "id": 142,
- "start": 62.91,
- "end": 63.3,
- "text": "that"
- },
- {
- "id": 143,
- "start": 63.3,
- "end": 63.4,
- "text": "you"
- },
- {
- "id": 144,
- "start": 63.4,
- "end": 63.57,
- "text": "think"
- },
- {
- "id": 145,
- "start": 63.57,
- "end": 63.79,
- "text": "shouldn’t"
- },
- {
- "id": 146,
- "start": 63.79,
- "end": 63.89,
- "text": "be"
- },
- {
- "id": 147,
- "start": 63.89,
- "end": 64.01,
- "text": "on"
- },
- {
- "id": 148,
- "start": 64.01,
- "end": 65.01,
- "text": "Facebook,"
- },
- {
- "id": 149,
- "start": 65.01,
- "end": 65.25,
- "text": "we"
- },
- {
- "id": 150,
- "start": 65.25,
- "end": 65.51,
- "text": "build"
- },
- {
- "id": 151,
- "start": 65.51,
- "end": 65.58,
- "text": "the"
- },
- {
- "id": 152,
- "start": 65.58,
- "end": 66.32,
- "text": "tools"
- },
- {
- "id": 153,
- "start": 66.32,
- "end": 66.99,
- "text": "for"
- },
- {
- "id": 154,
- "start": 66.99,
- "end": 67.2,
- "text": "you"
- },
- {
- "id": 155,
- "start": 67.2,
- "end": 67.31,
- "text": "to"
- },
- {
- "id": 156,
- "start": 67.31,
- "end": 67.62,
- "text": "report"
- },
- {
- "id": 157,
- "start": 67.62,
- "end": 67.78,
- "text": "that"
- },
- {
- "id": 158,
- "start": 67.78,
- "end": 68.18,
- "text": "content"
- },
- {
- "id": 159,
- "start": 67.98,
- "end": 68.45500000000001,
- "text": "to"
- },
- {
- "id": 160,
- "start": 68.18,
- "end": 68.73,
- "text": "us."
- },
- {
- "id": 161,
- "start": 68.73,
- "end": 68.9,
- "text": "We"
- },
- {
- "id": 162,
- "start": 68.9,
- "end": 69.13,
- "text": "build"
- },
- {
- "id": 163,
- "start": 69.13,
- "end": 69.2,
- "text": "the"
- },
- {
- "id": 164,
- "start": 69.2,
- "end": 69.89,
- "text": "tools"
- },
- {
- "id": 165,
- "start": 69.89,
- "end": 70.16,
- "text": "for"
- },
- {
- "id": 166,
- "start": 70.16,
- "end": 70.32,
- "text": "our"
- },
- {
- "id": 167,
- "start": 70.32,
- "end": 71,
- "text": "reviewers"
- },
- {
- "id": 168,
- "start": 71,
- "end": 71.18,
- "text": "to"
- },
- {
- "id": 169,
- "start": 71.18,
- "end": 71.44,
- "text": "review"
- },
- {
- "id": 170,
- "start": 71.44,
- "end": 71.6,
- "text": "that"
- },
- {
- "id": 171,
- "start": 72.08999999999999,
- "end": 72.255,
- "text": "content."
- },
- {
- "id": 172,
- "start": 72.74,
- "end": 72.91,
- "text": "And"
- },
- {
- "id": 173,
- "start": 72.91,
- "end": 73.49,
- "text": "increasingly,"
- },
- {
- "id": 174,
- "start": 73.49,
- "end": 73.63,
- "text": "we’re"
- },
- {
- "id": 175,
- "start": 73.63,
- "end": 74.14,
- "text": "investing"
- },
- {
- "id": 176,
- "start": 74.035,
- "end": 74.475,
- "text": "more"
- },
- {
- "id": 177,
- "start": 74.44,
- "end": 74.81,
- "text": "and"
- },
- {
- "id": 178,
- "start": 74.845,
- "end": 75.14500000000001,
- "text": "more"
- },
- {
- "id": 179,
- "start": 75.25,
- "end": 75.48,
- "text": "in"
- },
- {
- "id": 180,
- "start": 75.48,
- "end": 75.92,
- "text": "tools"
- },
- {
- "id": 181,
- "start": 75.92,
- "end": 76.09,
- "text": "that"
- },
- {
- "id": 182,
- "start": 76.09,
- "end": 76.28,
- "text": "will"
- },
- {
- "id": 183,
- "start": 76.28,
- "end": 77.23,
- "text": "proactively"
- },
- {
- "id": 184,
- "start": 77.23,
- "end": 77.44,
- "text": "go"
- },
- {
- "id": 185,
- "start": 77.44,
- "end": 77.68,
- "text": "out"
- },
- {
- "id": 186,
- "start": 77.68,
- "end": 77.86,
- "text": "and"
- },
- {
- "id": 187,
- "start": 77.86,
- "end": 78.7,
- "text": "find"
- },
- {
- "id": 188,
- "start": 78.7,
- "end": 78.86,
- "text": "that"
- },
- {
- "id": 189,
- "start": 78.86,
- "end": 79.06,
- "text": "kind"
- },
- {
- "id": 190,
- "start": 79.06,
- "end": 79.13,
- "text": "of"
- },
- {
- "id": 191,
- "start": 79.455,
- "end": 79.64999999999999,
- "text": "content"
- },
- {
- "id": 192,
- "start": 79.85,
- "end": 80.17,
- "text": "because"
- },
- {
- "id": 193,
- "start": 80.17,
- "end": 80.38,
- "text": "as"
- },
- {
- "id": 194,
- "start": 80.38,
- "end": 80.5,
- "text": "we"
- },
- {
- "id": 195,
- "start": 80.5,
- "end": 80.71,
- "text": "get"
- },
- {
- "id": 196,
- "start": 80.71,
- "end": 80.9,
- "text": "more"
- },
- {
- "id": 197,
- "start": 80.9,
- "end": 82.4,
- "text": "proactive,"
- },
- {
- "id": 198,
- "start": 82.4,
- "end": 82.54,
- "text": "we"
- },
- {
- "id": 199,
- "start": 82.54,
- "end": 82.77,
- "text": "can"
- },
- {
- "id": 200,
- "start": 82.77,
- "end": 83.23,
- "text": "find"
- },
- {
- "id": 201,
- "start": 83.08999999999999,
- "end": 83.51,
- "text": "bad"
- },
- {
- "id": 202,
- "start": 83.41,
- "end": 83.79,
- "text": "content"
- },
- {
- "id": 203,
- "start": 83.79,
- "end": 84.67,
- "text": "faster,"
- },
- {
- "id": 204,
- "start": 84.67,
- "end": 84.8,
- "text": "which"
- },
- {
- "id": 205,
- "start": 84.8,
- "end": 84.99,
- "text": "means"
- },
- {
- "id": 206,
- "start": 84.99,
- "end": 85.09,
- "text": "we"
- },
- {
- "id": 207,
- "start": 85.09,
- "end": 85.23,
- "text": "can"
- },
- {
- "id": 208,
- "start": 85.23,
- "end": 85.44,
- "text": "get"
- },
- {
- "id": 209,
- "start": 85.44,
- "end": 85.55,
- "text": "to"
- },
- {
- "id": 210,
- "start": 85.55,
- "end": 85.78,
- "text": "it"
- },
- {
- "id": 211,
- "start": 85.78,
- "end": 86.71,
- "text": "before"
- },
- {
- "id": 212,
- "start": 86.71,
- "end": 88.15,
- "text": "anyone"
- },
- {
- "id": 213,
- "start": 88.15,
- "end": 88.57,
- "text": "reports"
- },
- {
- "id": 214,
- "start": 88.57,
- "end": 89.18,
- "text": "it."
- },
- {
- "id": 215,
- "start": 88.8,
- "end": 89.32,
- "text": "We"
- },
- {
- "id": 216,
- "start": 89.13,
- "end": 89.46,
- "text": "can"
- },
- {
- "id": 217,
- "start": 89.46,
- "end": 89.6,
- "text": "even"
- },
- {
- "id": 218,
- "start": 89.6,
- "end": 89.77,
- "text": "get"
- },
- {
- "id": 219,
- "start": 89.77,
- "end": 89.86,
- "text": "to"
- },
- {
- "id": 220,
- "start": 89.86,
- "end": 89.94,
- "text": "it"
- },
- {
- "id": 221,
- "start": 89.94,
- "end": 90.22,
- "text": "before"
- },
- {
- "id": 222,
- "start": 90.22,
- "end": 90.59,
- "text": "anyone"
- },
- {
- "id": 223,
- "start": 90.59,
- "end": 90.94,
- "text": "sees"
- },
- {
- "id": 224,
- "start": 91.185,
- "end": 91.445,
- "text": "it."
- },
- {
- "id": 225,
- "start": 91.78,
- "end": 91.95,
- "text": "And"
- },
- {
- "id": 226,
- "start": 91.95,
- "end": 92.03,
- "text": "we"
- },
- {
- "id": 227,
- "start": 92.03,
- "end": 92.16,
- "text": "can"
- },
- {
- "id": 228,
- "start": 92.16,
- "end": 92.35,
- "text": "just"
- },
- {
- "id": 229,
- "start": 92.35,
- "end": 92.59,
- "text": "take"
- },
- {
- "id": 230,
- "start": 92.59,
- "end": 93.18,
- "text": "down"
- },
- {
- "id": 231,
- "start": 93.18,
- "end": 93.59,
- "text": "more"
- },
- {
- "id": 232,
- "start": 93.59,
- "end": 93.86,
- "text": "bad"
- },
- {
- "id": 233,
- "start": 93.86,
- "end": 95,
- "text": "content."
- },
- {
- "id": 234,
- "start": 95,
- "end": 95.28,
- "text": "How"
- },
- {
- "id": 235,
- "start": 95.28,
- "end": 95.51,
- "text": "far"
- },
- {
- "id": 236,
- "start": 95.51,
- "end": 95.8,
- "text": "along"
- },
- {
- "id": 237,
- "start": 95.8,
- "end": 95.86,
- "text": "are"
- },
- {
- "id": 238,
- "start": 95.86,
- "end": 96.04,
- "text": "you"
- },
- {
- "id": 239,
- "start": 96.04,
- "end": 96.12,
- "text": "in"
- },
- {
- "id": 240,
- "start": 96.12,
- "end": 96.68,
- "text": "developing"
- },
- {
- "id": 241,
- "start": 96.68,
- "end": 96.9,
- "text": "that"
- },
- {
- "id": 242,
- "start": 96.9,
- "end": 97.19,
- "text": "tool"
- },
- {
- "id": 243,
- "start": 97.19,
- "end": 97.37,
- "text": "for"
- },
- {
- "id": 244,
- "start": 97.545,
- "end": 97.69,
- "text": "instance."
- },
- {
- "id": 245,
- "start": 97.9,
- "end": 98.01,
- "text": "The"
- },
- {
- "id": 246,
- "start": 98.01,
- "end": 98.26,
- "text": "tool"
- },
- {
- "id": 247,
- "start": 98.26,
- "end": 98.35,
- "text": "to"
- },
- {
- "id": 248,
- "start": 98.35,
- "end": 99.44,
- "text": "proactively"
- },
- {
- "id": 249,
- "start": 99.44,
- "end": 99.81,
- "text": "find"
- },
- {
- "id": 250,
- "start": 99.81,
- "end": 100.03,
- "text": "bad"
- },
- {
- "id": 251,
- "start": 100.42499999999998,
- "end": 101.01000000000002,
- "text": "content?"
- },
- {
- "id": 252,
- "start": 101.04,
- "end": 101.99,
- "text": "So"
- },
- {
- "id": 253,
- "start": 101.99,
- "end": 102.23,
- "text": "the"
- },
- {
- "id": 254,
- "start": 102.23,
- "end": 102.36,
- "text": "way"
- },
- {
- "id": 255,
- "start": 102.36,
- "end": 102.86,
- "text": "artificial"
- },
- {
- "id": 256,
- "start": 102.86,
- "end": 103.86,
- "text": "intelligence"
- },
- {
- "id": 257,
- "start": 103.86,
- "end": 104.39,
- "text": "works"
- },
- {
- "id": 258,
- "start": 104.39,
- "end": 104.97,
- "text": "broadly"
- },
- {
- "id": 259,
- "start": 104.97,
- "end": 105.45,
- "text": "is"
- },
- {
- "id": 260,
- "start": 105.45,
- "end": 105.71,
- "text": "it’s"
- },
- {
- "id": 261,
- "start": 105.71,
- "end": 106.38,
- "text": "a"
- },
- {
- "id": 262,
- "start": 106.38,
- "end": 107.07,
- "text": "system"
- },
- {
- "id": 263,
- "start": 107.07,
- "end": 107.36,
- "text": "that"
- },
- {
- "id": 264,
- "start": 107.36,
- "end": 108.14,
- "text": "learns"
- },
- {
- "id": 265,
- "start": 108.14,
- "end": 108.33,
- "text": "by"
- },
- {
- "id": 266,
- "start": 108.33,
- "end": 109.49,
- "text": "example."
- },
- {
- "id": 267,
- "start": 109.49,
- "end": 110.24,
- "text": "And"
- },
- {
- "id": 268,
- "start": 110.24,
- "end": 110.86,
- "text": "we’re"
- },
- {
- "id": 269,
- "start": 110.86,
- "end": 111.13,
- "text": "kind"
- },
- {
- "id": 270,
- "start": 111.13,
- "end": 111.47,
- "text": "of"
- },
- {
- "id": 271,
- "start": 111.47,
- "end": 112.38,
- "text": "fortunate,"
- },
- {
- "id": 272,
- "start": 112.3,
- "end": 112.57,
- "text": "in"
- },
- {
- "id": 273,
- "start": 112.485,
- "end": 112.845,
- "text": "a"
- },
- {
- "id": 274,
- "start": 112.67,
- "end": 113.12,
- "text": "sense,"
- },
- {
- "id": 275,
- "start": 113.12,
- "end": 113.4,
- "text": "that"
- },
- {
- "id": 276,
- "start": 113.4,
- "end": 113.62,
- "text": "we"
- },
- {
- "id": 277,
- "start": 113.62,
- "end": 113.95,
- "text": "have"
- },
- {
- "id": 278,
- "start": 113.95,
- "end": 114.3,
- "text": "millions"
- },
- {
- "id": 279,
- "start": 114.3,
- "end": 114.42,
- "text": "of"
- },
- {
- "id": 280,
- "start": 114.42,
- "end": 114.86,
- "text": "reports"
- },
- {
- "id": 281,
- "start": 114.86,
- "end": 115.14,
- "text": "coming"
- },
- {
- "id": 282,
- "start": 115.14,
- "end": 115.41,
- "text": "in"
- },
- {
- "id": 283,
- "start": 115.41,
- "end": 115.74,
- "text": "every"
- },
- {
- "id": 284,
- "start": 115.74,
- "end": 116.24,
- "text": "week"
- },
- {
- "id": 285,
- "start": 116.10333333333334,
- "end": 116.64666666666666,
- "text": "from"
- },
- {
- "id": 286,
- "start": 116.46666666666667,
- "end": 117.05333333333333,
- "text": "our"
- },
- {
- "id": 287,
- "start": 116.83,
- "end": 117.46,
- "text": "community"
- },
- {
- "id": 288,
- "start": 117.46,
- "end": 117.6,
- "text": "and"
- },
- {
- "id": 289,
- "start": 117.6,
- "end": 117.7,
- "text": "we"
- },
- {
- "id": 290,
- "start": 117.7,
- "end": 117.85,
- "text": "have"
- },
- {
- "id": 291,
- "start": 117.85,
- "end": 117.91,
- "text": "the"
- },
- {
- "id": 292,
- "start": 117.91,
- "end": 118.76,
- "text": "corresponding"
- },
- {
- "id": 293,
- "start": 118.76,
- "end": 119.47,
- "text": "decisions"
- },
- {
- "id": 294,
- "start": 119.47,
- "end": 119.88,
- "text": "made"
- },
- {
- "id": 295,
- "start": 119.88,
- "end": 120.1,
- "text": "by"
- },
- {
- "id": 296,
- "start": 120.1,
- "end": 120.33,
- "text": "our"
- },
- {
- "id": 297,
- "start": 120.33,
- "end": 120.61,
- "text": "review"
- },
- {
- "id": 298,
- "start": 120.61,
- "end": 121.42,
- "text": "team."
- },
- {
- "id": 299,
- "start": 121.42,
- "end": 121.65,
- "text": "And"
- },
- {
- "id": 300,
- "start": 121.65,
- "end": 121.78,
- "text": "so"
- },
- {
- "id": 301,
- "start": 121.78,
- "end": 121.89,
- "text": "we"
- },
- {
- "id": 302,
- "start": 121.89,
- "end": 122.09,
- "text": "can"
- },
- {
- "id": 303,
- "start": 122.09,
- "end": 122.4,
- "text": "use"
- },
- {
- "id": 304,
- "start": 122.4,
- "end": 122.9,
- "text": "those"
- },
- {
- "id": 305,
- "start": 122.9,
- "end": 123.04,
- "text": "to"
- },
- {
- "id": 306,
- "start": 123.04,
- "end": 123.37,
- "text": "try"
- },
- {
- "id": 307,
- "start": 123.37,
- "end": 124.09,
- "text": "and"
- },
- {
- "id": 308,
- "start": 124.09,
- "end": 124.67,
- "text": "train,"
- },
- {
- "id": 309,
- "start": 124.67,
- "end": 125.34,
- "text": "as"
- },
- {
- "id": 310,
- "start": 125.34,
- "end": 125.46,
- "text": "it’s"
- },
- {
- "id": 311,
- "start": 125.46,
- "end": 125.88,
- "text": "called,"
- },
- {
- "id": 312,
- "start": 125.88,
- "end": 126.83,
- "text": "train"
- },
- {
- "id": 313,
- "start": 126.83,
- "end": 127.1,
- "text": "the"
- },
- {
- "id": 314,
- "start": 127.1,
- "end": 127.83,
- "text": "system"
- },
- {
- "id": 315,
- "start": 127.83,
- "end": 127.96,
- "text": "to"
- },
- {
- "id": 316,
- "start": 127.96,
- "end": 128.16,
- "text": "try"
- },
- {
- "id": 317,
- "start": 128.16,
- "end": 128.25,
- "text": "to"
- },
- {
- "id": 318,
- "start": 128.25,
- "end": 128.85,
- "text": "proactively"
- },
- {
- "id": 319,
- "start": 128.85,
- "end": 129.34,
- "text": "detect"
- },
- {
- "id": 320,
- "start": 129.34,
- "end": 129.75,
- "text": "similar"
- },
- {
- "id": 321,
- "start": 129.75,
- "end": 130,
- "text": "kinds"
- },
- {
- "id": 322,
- "start": 130,
- "end": 130.08,
- "text": "of"
- },
- {
- "id": 323,
- "start": 130.08,
- "end": 131.02,
- "text": "content."
- },
- {
- "id": 324,
- "start": 131.02,
- "end": 131.26,
- "text": "And"
- },
- {
- "id": 325,
- "start": 131.26,
- "end": 131.38,
- "text": "we’re"
- },
- {
- "id": 326,
- "start": 131.38,
- "end": 131.6,
- "text": "seeing"
- },
- {
- "id": 327,
- "start": 131.6,
- "end": 131.74,
- "text": "that"
- },
- {
- "id": 328,
- "start": 131.74,
- "end": 131.84,
- "text": "in"
- },
- {
- "id": 329,
- "start": 131.84,
- "end": 132.11,
- "text": "some"
- },
- {
- "id": 330,
- "start": 132.11,
- "end": 132.64,
- "text": "areas"
- },
- {
- "id": 331,
- "start": 132.64,
- "end": 132.78,
- "text": "it"
- },
- {
- "id": 332,
- "start": 132.78,
- "end": 132.9,
- "text": "is"
- },
- {
- "id": 333,
- "start": 132.9,
- "end": 133.33,
- "text": "working"
- },
- {
- "id": 334,
- "start": 133.33,
- "end": 133.58,
- "text": "very"
- },
- {
- "id": 335,
- "start": 133.56666666666666,
- "end": 133.7866666666667,
- "text": "well"
- },
- {
- "id": 336,
- "start": 133.80333333333334,
- "end": 133.99333333333334,
- "text": "and"
- },
- {
- "id": 337,
- "start": 134.04,
- "end": 134.2,
- "text": "in"
- },
- {
- "id": 338,
- "start": 134.2,
- "end": 134.48,
- "text": "other"
- },
- {
- "id": 339,
- "start": 134.48,
- "end": 135.51,
- "text": "areas"
- },
- {
- "id": 340,
- "start": 135.51,
- "end": 135.67,
- "text": "we"
- },
- {
- "id": 341,
- "start": 135.67,
- "end": 135.79,
- "text": "have"
- },
- {
- "id": 342,
- "start": 135.79,
- "end": 135.92,
- "text": "been"
- },
- {
- "id": 343,
- "start": 135.92,
- "end": 136.33,
- "text": "making"
- },
- {
- "id": 344,
- "start": 136.33,
- "end": 136.63,
- "text": "steady"
- },
- {
- "id": 345,
- "start": 136.63,
- "end": 137.39,
- "text": "progress."
- },
- {
- "id": 346,
- "start": 137.39,
- "end": 137.61,
- "text": "So"
- },
- {
- "id": 347,
- "start": 137.61,
- "end": 137.78,
- "text": "for"
- },
- {
- "id": 348,
- "start": 137.78,
- "end": 138.97,
- "text": "example,"
- },
- {
- "id": 349,
- "start": 138.97,
- "end": 139.37,
- "text": "areas"
- },
- {
- "id": 350,
- "start": 139.37,
- "end": 139.61,
- "text": "such"
- },
- {
- "id": 351,
- "start": 139.61,
- "end": 140.22,
- "text": "as"
- },
- {
- "id": 352,
- "start": 140.22,
- "end": 140.94,
- "text": "nudity"
- },
- {
- "id": 353,
- "start": 140.94,
- "end": 141.52,
- "text": "or"
- },
- {
- "id": 354,
- "start": 141.52,
- "end": 142.03,
- "text": "graphic"
- },
- {
- "id": 355,
- "start": 142.03,
- "end": 143.03,
- "text": "violence,"
- },
- {
- "id": 356,
- "start": 143.03,
- "end": 143.53,
- "text": "where"
- },
- {
- "id": 357,
- "start": 143.53,
- "end": 144.25,
- "text": "years"
- },
- {
- "id": 358,
- "start": 144.25,
- "end": 144.69,
- "text": "of"
- },
- {
- "id": 359,
- "start": 144.69,
- "end": 145.31,
- "text": "research"
- },
- {
- "id": 360,
- "start": 145.31,
- "end": 145.7,
- "text": "into"
- },
- {
- "id": 361,
- "start": 145.7,
- "end": 146.1,
- "text": "computer"
- },
- {
- "id": 362,
- "start": 146.1,
- "end": 146.98,
- "text": "vision"
- },
- {
- "id": 363,
- "start": 146.98,
- "end": 147.17,
- "text": "are"
- },
- {
- "id": 364,
- "start": 147.17,
- "end": 147.78,
- "text": "actually"
- },
- {
- "id": 365,
- "start": 147.78,
- "end": 148.16,
- "text": "showing"
- },
- {
- "id": 366,
- "start": 148.16,
- "end": 148.22,
- "text": "a"
- },
- {
- "id": 367,
- "start": 148.22,
- "end": 148.37,
- "text": "lot"
- },
- {
- "id": 368,
- "start": 148.37,
- "end": 148.47,
- "text": "of"
- },
- {
- "id": 369,
- "start": 148.845,
- "end": 149.155,
- "text": "fruit."
- },
- {
- "id": 370,
- "start": 149.32,
- "end": 149.84,
- "text": "And"
- },
- {
- "id": 371,
- "start": 149.84,
- "end": 150.14,
- "text": "for"
- },
- {
- "id": 372,
- "start": 150.14,
- "end": 150.91,
- "text": "example,"
- },
- {
- "id": 373,
- "start": 150.76,
- "end": 151.54,
- "text": "on"
- },
- {
- "id": 374,
- "start": 151.38,
- "end": 152.17000000000002,
- "text": "nudity,"
- },
- {
- "id": 375,
- "start": 152,
- "end": 152.8,
- "text": "96"
- },
- {
- "id": 376,
- "start": 152.62,
- "end": 153.43,
- "text": "percent"
- },
- {
- "id": 377,
- "start": 153.43,
- "end": 153.64,
- "text": "of"
- },
- {
- "id": 378,
- "start": 153.64,
- "end": 153.73,
- "text": "the"
- },
- {
- "id": 379,
- "start": 153.73,
- "end": 154.22,
- "text": "nudity"
- },
- {
- "id": 380,
- "start": 154.22,
- "end": 154.7,
- "text": "that"
- },
- {
- "id": 381,
- "start": 154.7,
- "end": 154.97,
- "text": "we"
- },
- {
- "id": 382,
- "start": 154.97,
- "end": 155.63,
- "text": "remove"
- },
- {
- "id": 383,
- "start": 155.63,
- "end": 155.8,
- "text": "is"
- },
- {
- "id": 384,
- "start": 155.8,
- "end": 156.13,
- "text": "actually"
- },
- {
- "id": 385,
- "start": 156.13,
- "end": 157.29,
- "text": "identified"
- },
- {
- "id": 386,
- "start": 157.29,
- "end": 157.44,
- "text": "by"
- },
- {
- "id": 387,
- "start": 157.44,
- "end": 157.56,
- "text": "our"
- },
- {
- "id": 388,
- "start": 159.8449999999999,
- "end": 160.115,
- "text": "systems."
- },
- {
- "id": 389,
- "start": 162.25,
- "end": 162.67,
- "text": "Terrorist"
- },
- {
- "id": 390,
- "start": 162.67,
- "end": 163.21,
- "text": "propaganda,"
- },
- {
- "id": 391,
- "start": 162.73,
- "end": 163.22444444444446,
- "text": "over"
- },
- {
- "id": 392,
- "start": 162.79,
- "end": 163.2388888888889,
- "text": "99"
- },
- {
- "id": 393,
- "start": 162.85,
- "end": 163.25333333333336,
- "text": "percent"
- },
- {
- "id": 394,
- "start": 162.91,
- "end": 163.26777777777778,
- "text": "of"
- },
- {
- "id": 395,
- "start": 162.97,
- "end": 163.28222222222223,
- "text": "the"
- },
- {
- "id": 396,
- "start": 163.03,
- "end": 163.29666666666668,
- "text": "terrorist"
- },
- {
- "id": 397,
- "start": 163.09,
- "end": 163.31111111111113,
- "text": "propaganda"
- },
- {
- "id": 398,
- "start": 163.15,
- "end": 163.32555555555558,
- "text": "that"
- },
- {
- "id": 399,
- "start": 163.21,
- "end": 163.34,
- "text": "we"
- },
- {
- "id": 400,
- "start": 163.34,
- "end": 163.57,
- "text": "take"
- },
- {
- "id": 401,
- "start": 163.57,
- "end": 164.34,
- "text": "down"
- },
- {
- "id": 402,
- "start": 164.34,
- "end": 164.52,
- "text": "is"
- },
- {
- "id": 403,
- "start": 164.52,
- "end": 165.35,
- "text": "identified"
- },
- {
- "id": 404,
- "start": 165.35,
- "end": 165.52,
- "text": "by"
- },
- {
- "id": 405,
- "start": 165.52,
- "end": 165.61,
- "text": "our"
- },
- {
- "id": 406,
- "start": 165.935,
- "end": 166.06,
- "text": "systems."
- },
- {
- "id": 407,
- "start": 166.35,
- "end": 166.51,
- "text": "So"
- },
- {
- "id": 408,
- "start": 166.51,
- "end": 166.7,
- "text": "that’s"
- },
- {
- "id": 409,
- "start": 166.7,
- "end": 167.24,
- "text": "before"
- },
- {
- "id": 410,
- "start": 167.24,
- "end": 167.66,
- "text": "anyone"
- },
- {
- "id": 411,
- "start": 167.66,
- "end": 167.91,
- "text": "even"
- },
- {
- "id": 412,
- "start": 167.91,
- "end": 168.32,
- "text": "reports"
- },
- {
- "id": 413,
- "start": 168.32,
- "end": 169.31,
- "text": "it."
- },
- {
- "id": 414,
- "start": 169.31,
- "end": 171.02,
- "text": "The"
- },
- {
- "id": 415,
- "start": 171.02,
- "end": 171.82,
- "text": "areas"
- },
- {
- "id": 416,
- "start": 171.82,
- "end": 172.31,
- "text": "like"
- },
- {
- "id": 417,
- "start": 172.31,
- "end": 172.59,
- "text": "hate"
- },
- {
- "id": 418,
- "start": 172.59,
- "end": 172.85,
- "text": "speech,"
- },
- {
- "id": 419,
- "start": 172.85,
- "end": 172.96,
- "text": "for"
- },
- {
- "id": 420,
- "start": 172.96,
- "end": 173.51,
- "text": "example,"
- },
- {
- "id": 421,
- "start": 173.51,
- "end": 174.14,
- "text": "are"
- },
- {
- "id": 422,
- "start": 174.14,
- "end": 174.34,
- "text": "more"
- },
- {
- "id": 423,
- "start": 174.34,
- "end": 175.02,
- "text": "complex"
- },
- {
- "id": 424,
- "start": 175.02,
- "end": 175.32,
- "text": "because"
- },
- {
- "id": 425,
- "start": 175.32,
- "end": 175.79,
- "text": "machines"
- },
- {
- "id": 426,
- "start": 175.79,
- "end": 176.06,
- "text": "aren’t"
- },
- {
- "id": 427,
- "start": 176.06,
- "end": 176.41,
- "text": "always"
- },
- {
- "id": 428,
- "start": 176.41,
- "end": 176.59,
- "text": "that"
- },
- {
- "id": 429,
- "start": 176.59,
- "end": 176.79,
- "text": "good"
- },
- {
- "id": 430,
- "start": 176.79,
- "end": 176.87,
- "text": "at"
- },
- {
- "id": 431,
- "start": 176.87,
- "end": 177.49,
- "text": "understanding"
- },
- {
- "id": 432,
- "start": 177.49,
- "end": 178.31,
- "text": "the"
- },
- {
- "id": 433,
- "start": 177.69,
- "end": 179.02,
- "text": "nuances"
- },
- {
- "id": 434,
- "start": 178.40499999999997,
- "end": 179.10999999999999,
- "text": "and"
- },
- {
- "id": 435,
- "start": 179.12,
- "end": 179.2,
- "text": "the"
- },
- {
- "id": 436,
- "start": 179.2,
- "end": 180.09,
- "text": "context"
- },
- {
- "id": 437,
- "start": 180.09,
- "end": 180.88,
- "text": "of"
- },
- {
- "id": 438,
- "start": 180.88,
- "end": 181.9,
- "text": "language."
- },
- {
- "id": 439,
- "start": 181.9,
- "end": 182.16,
- "text": "And"
- },
- {
- "id": 440,
- "start": 182.16,
- "end": 182.64,
- "text": "so"
- },
- {
- "id": 441,
- "start": 182.64,
- "end": 182.8,
- "text": "we’re"
- },
- {
- "id": 442,
- "start": 182.8,
- "end": 183.14,
- "text": "certainly"
- },
- {
- "id": 443,
- "start": 183.14,
- "end": 183.31,
- "text": "more"
- },
- {
- "id": 444,
- "start": 183.31,
- "end": 183.85,
- "text": "dependent"
- },
- {
- "id": 445,
- "start": 183.85,
- "end": 184.11,
- "text": "on"
- },
- {
- "id": 446,
- "start": 184.11,
- "end": 184.98,
- "text": "people"
- },
- {
- "id": 447,
- "start": 184.98,
- "end": 185.09,
- "text": "to"
- },
- {
- "id": 448,
- "start": 185.09,
- "end": 185.38,
- "text": "help"
- },
- {
- "id": 449,
- "start": 185.38,
- "end": 185.49,
- "text": "us"
- },
- {
- "id": 450,
- "start": 185.49,
- "end": 185.68,
- "text": "do"
- },
- {
- "id": 451,
- "start": 185.68,
- "end": 185.89,
- "text": "that"
- },
- {
- "id": 452,
- "start": 185.89,
- "end": 186.16,
- "text": "work,"
- },
- {
- "id": 453,
- "start": 186.16,
- "end": 186.37,
- "text": "whether"
- },
- {
- "id": 454,
- "start": 186.37,
- "end": 186.49,
- "text": "it’s"
- },
- {
- "id": 455,
- "start": 186.49,
- "end": 186.76,
- "text": "people"
- },
- {
- "id": 456,
- "start": 186.76,
- "end": 186.9,
- "text": "who"
- },
- {
- "id": 457,
- "start": 186.9,
- "end": 187.26,
- "text": "report"
- },
- {
- "id": 458,
- "start": 187.26,
- "end": 187.64,
- "text": "content"
- },
- {
- "id": 459,
- "start": 187.64,
- "end": 187.71,
- "text": "to"
- },
- {
- "id": 460,
- "start": 187.71,
- "end": 188.42,
- "text": "us,"
- },
- {
- "id": 461,
- "start": 188.42,
- "end": 188.7,
- "text": "whether"
- },
- {
- "id": 462,
- "start": 188.7,
- "end": 188.85,
- "text": "it’s"
- },
- {
- "id": 463,
- "start": 188.85,
- "end": 189.29,
- "text": "people"
- },
- {
- "id": 464,
- "start": 189.29,
- "end": 190.09,
- "text": "who"
- },
- {
- "id": 465,
- "start": 190.09,
- "end": 191.24,
- "text": "review"
- },
- {
- "id": 466,
- "start": 191.24,
- "end": 191.43,
- "text": "that"
- },
- {
- "id": 467,
- "start": 191.43,
- "end": 192.02,
- "text": "content."
- },
- {
- "id": 468,
- "start": 192.02,
- "end": 192.21,
- "text": "So"
- },
- {
- "id": 469,
- "start": 192.21,
- "end": 192.3,
- "text": "on"
- },
- {
- "id": 470,
- "start": 192.3,
- "end": 192.56,
- "text": "hate"
- },
- {
- "id": 471,
- "start": 192.54500000000002,
- "end": 192.74,
- "text": "speech,"
- },
- {
- "id": 472,
- "start": 192.79,
- "end": 192.92,
- "text": "for"
- },
- {
- "id": 473,
- "start": 192.92,
- "end": 193.98,
- "text": "example,"
- },
- {
- "id": 474,
- "start": 193.98,
- "end": 194.17,
- "text": "in"
- },
- {
- "id": 475,
- "start": 194.17,
- "end": 194.33,
- "text": "the"
- },
- {
- "id": 476,
- "start": 194.33,
- "end": 194.64,
- "text": "last"
- },
- {
- "id": 477,
- "start": 194.64,
- "end": 195.22,
- "text": "quarter"
- },
- {
- "id": 478,
- "start": 195.21,
- "end": 195.79,
- "text": "of"
- },
- {
- "id": 479,
- "start": 196.51666666666665,
- "end": 197.12666666666667,
- "text": "2017,"
- },
- {
- "id": 480,
- "start": 197.82333333333338,
- "end": 198.46333333333337,
- "text": "23"
- },
- {
- "id": 481,
- "start": 199.13,
- "end": 199.8,
- "text": "percent"
- },
- {
- "id": 482,
- "start": 199.8,
- "end": 200.14,
- "text": "of"
- },
- {
- "id": 483,
- "start": 200.14,
- "end": 201.53,
- "text": "that"
- },
- {
- "id": 484,
- "start": 201.53,
- "end": 201.92,
- "text": "content"
- },
- {
- "id": 485,
- "start": 201.92,
- "end": 202.06,
- "text": "that"
- },
- {
- "id": 486,
- "start": 202.06,
- "end": 202.17,
- "text": "we"
- },
- {
- "id": 487,
- "start": 202.17,
- "end": 202.38,
- "text": "took"
- },
- {
- "id": 488,
- "start": 202.38,
- "end": 203.22,
- "text": "down"
- },
- {
- "id": 489,
- "start": 203.22,
- "end": 203.45,
- "text": "was"
- },
- {
- "id": 490,
- "start": 203.45,
- "end": 203.88,
- "text": "flagged"
- },
- {
- "id": 491,
- "start": 203.88,
- "end": 204,
- "text": "by"
- },
- {
- "id": 492,
- "start": 204,
- "end": 204.09,
- "text": "our"
- },
- {
- "id": 493,
- "start": 204.09,
- "end": 205.28,
- "text": "systems."
- },
- {
- "id": 494,
- "start": 205.28,
- "end": 205.45,
- "text": "In"
- },
- {
- "id": 495,
- "start": 205.45,
- "end": 205.67,
- "text": "the"
- },
- {
- "id": 496,
- "start": 205.67,
- "end": 206,
- "text": "first"
- },
- {
- "id": 497,
- "start": 206,
- "end": 206.51,
- "text": "quarter"
- },
- {
- "id": 498,
- "start": 206.5,
- "end": 206.82,
- "text": "of"
- },
- {
- "id": 499,
- "start": 207.125,
- "end": 207.38,
- "text": "2018,"
- },
- {
- "id": 500,
- "start": 207.75,
- "end": 207.94,
- "text": "that"
- },
- {
- "id": 501,
- "start": 207.94,
- "end": 208.22,
- "text": "number"
- },
- {
- "id": 502,
- "start": 208.22,
- "end": 208.43,
- "text": "went"
- },
- {
- "id": 503,
- "start": 208.43,
- "end": 208.67,
- "text": "up"
- },
- {
- "id": 504,
- "start": 208.66,
- "end": 208.86,
- "text": "to"
- },
- {
- "id": 505,
- "start": 209.01500000000001,
- "end": 209.34,
- "text": "38"
- },
- {
- "id": 506,
- "start": 209.37,
- "end": 209.82,
- "text": "percent."
- },
- {
- "id": 507,
- "start": 209.82,
- "end": 209.96,
- "text": "So"
- },
- {
- "id": 508,
- "start": 209.96,
- "end": 210.12,
- "text": "there"
- },
- {
- "id": 509,
- "start": 210.12,
- "end": 210.25,
- "text": "is"
- },
- {
- "id": 510,
- "start": 210.25,
- "end": 210.61,
- "text": "steady"
- },
- {
- "id": 511,
- "start": 210.61,
- "end": 211.08,
- "text": "progress"
- },
- {
- "id": 512,
- "start": 211.08,
- "end": 211.8,
- "text": "there."
- },
- {
- "id": 513,
- "start": 211.8,
- "end": 211.94,
- "text": "We"
- },
- {
- "id": 514,
- "start": 211.94,
- "end": 212.17,
- "text": "have"
- },
- {
- "id": 515,
- "start": 212.17,
- "end": 212.38,
- "text": "more"
- },
- {
- "id": 516,
- "start": 212.38,
- "end": 212.58,
- "text": "work"
- },
- {
- "id": 517,
- "start": 212.58,
- "end": 212.7,
- "text": "to"
- },
- {
- "id": 518,
- "start": 212.7,
- "end": 212.91,
- "text": "do"
- },
- {
- "id": 519,
- "start": 212.91,
- "end": 213.08,
- "text": "and"
- },
- {
- "id": 520,
- "start": 213.08,
- "end": 213.18,
- "text": "we"
- },
- {
- "id": 521,
- "start": 213.18,
- "end": 213.36,
- "text": "have"
- },
- {
- "id": 522,
- "start": 213.36,
- "end": 213.49,
- "text": "been"
- },
- {
- "id": 523,
- "start": 213.49,
- "end": 213.77,
- "text": "making"
- },
- {
- "id": 524,
- "start": 214.04333333333335,
- "end": 214.33,
- "text": "progress."
- },
- {
- "id": 525,
- "start": 214.5966666666667,
- "end": 214.89000000000001,
- "text": "And"
- },
- {
- "id": 526,
- "start": 215.15,
- "end": 215.45,
- "text": "that"
- },
- {
- "id": 527,
- "start": 215.45,
- "end": 215.74,
- "text": "means"
- },
- {
- "id": 528,
- "start": 215.74,
- "end": 215.87,
- "text": "if"
- },
- {
- "id": 529,
- "start": 215.87,
- "end": 216.07,
- "text": "only"
- },
- {
- "id": 530,
- "start": 216.17499999999998,
- "end": 216.42499999999998,
- "text": "38"
- },
- {
- "id": 531,
- "start": 216.48,
- "end": 216.78,
- "text": "percent"
- },
- {
- "id": 532,
- "start": 216.78,
- "end": 216.84,
- "text": "of"
- },
- {
- "id": 533,
- "start": 216.84,
- "end": 216.91,
- "text": "the"
- },
- {
- "id": 534,
- "start": 216.91,
- "end": 217.45,
- "text": "content’s"
- },
- {
- "id": 535,
- "start": 217.45,
- "end": 217.62,
- "text": "been"
- },
- {
- "id": 536,
- "start": 217.62,
- "end": 217.98,
- "text": "taken"
- },
- {
- "id": 537,
- "start": 217.98,
- "end": 218.32,
- "text": "down,"
- },
- {
- "id": 538,
- "start": 218.32,
- "end": 218.94,
- "text": "that"
- },
- {
- "id": 539,
- "start": 218.94,
- "end": 219.08,
- "text": "you"
- },
- {
- "id": 540,
- "start": 219.08,
- "end": 219.29,
- "text": "need"
- },
- {
- "id": 541,
- "start": 219.29,
- "end": 220.42,
- "text": "human"
- },
- {
- "id": 542,
- "start": 219.7,
- "end": 221.13,
- "text": "beings"
- },
- {
- "id": 543,
- "start": 220.58333333333331,
- "end": 221.6033333333333,
- "text": "then"
- },
- {
- "id": 544,
- "start": 221.46666666666664,
- "end": 222.07666666666665,
- "text": "to"
- },
- {
- "id": 545,
- "start": 222.35,
- "end": 222.55,
- "text": "deal"
- },
- {
- "id": 546,
- "start": 222.55,
- "end": 222.7,
- "text": "with"
- },
- {
- "id": 547,
- "start": 222.7,
- "end": 222.78,
- "text": "the"
- },
- {
- "id": 548,
- "start": 222.78,
- "end": 223.07,
- "text": "rest"
- },
- {
- "id": 549,
- "start": 223.07,
- "end": 223.17,
- "text": "of"
- },
- {
- "id": 550,
- "start": 223.36499999999998,
- "end": 223.475,
- "text": "it?"
- },
- {
- "id": 551,
- "start": 223.66,
- "end": 223.78,
- "text": "To"
- },
- {
- "id": 552,
- "start": 223.78,
- "end": 223.87,
- "text": "be"
- },
- {
- "id": 553,
- "start": 223.87,
- "end": 224.78,
- "text": "clear,"
- },
- {
- "id": 554,
- "start": 224.78,
- "end": 224.98,
- "text": "that"
- },
- {
- "id": 555,
- "start": 224.98,
- "end": 225.27,
- "text": "means"
- },
- {
- "id": 556,
- "start": 225.35,
- "end": 225.675,
- "text": "38"
- },
- {
- "id": 557,
- "start": 225.72,
- "end": 226.08,
- "text": "percent"
- },
- {
- "id": 558,
- "start": 226.08,
- "end": 226.15,
- "text": "of"
- },
- {
- "id": 559,
- "start": 226.15,
- "end": 226.22,
- "text": "the"
- },
- {
- "id": 560,
- "start": 226.22,
- "end": 226.74,
- "text": "content"
- },
- {
- "id": 561,
- "start": 226.74,
- "end": 226.93,
- "text": "that"
- },
- {
- "id": 562,
- "start": 226.93,
- "end": 227.17,
- "text": "was"
- },
- {
- "id": 563,
- "start": 227.17,
- "end": 227.52,
- "text": "taken"
- },
- {
- "id": 564,
- "start": 227.52,
- "end": 228.17,
- "text": "down"
- },
- {
- "id": 565,
- "start": 228.17,
- "end": 228.46,
- "text": "was"
- },
- {
- "id": 566,
- "start": 228.46,
- "end": 228.9,
- "text": "flagged"
- },
- {
- "id": 567,
- "start": 228.9,
- "end": 229.04,
- "text": "by"
- },
- {
- "id": 568,
- "start": 229.04,
- "end": 229.16,
- "text": "our"
- },
- {
- "id": 569,
- "start": 229.16,
- "end": 230.19,
- "text": "systems,"
- },
- {
- "id": 570,
- "start": 230.19,
- "end": 230.34,
- "text": "as"
- },
- {
- "id": 571,
- "start": 230.34,
- "end": 230.67,
- "text": "opposed"
- },
- {
- "id": 572,
- "start": 230.67,
- "end": 230.74,
- "text": "to"
- },
- {
- "id": 573,
- "start": 230.74,
- "end": 230.84,
- "text": "the"
- },
- {
- "id": 574,
- "start": 230.84,
- "end": 231.13,
- "text": "rest"
- },
- {
- "id": 575,
- "start": 231.13,
- "end": 231.27,
- "text": "which"
- },
- {
- "id": 576,
- "start": 231.27,
- "end": 231.4,
- "text": "was"
- },
- {
- "id": 577,
- "start": 231.4,
- "end": 231.84,
- "text": "reported"
- },
- {
- "id": 578,
- "start": 231.84,
- "end": 231.99,
- "text": "by"
- },
- {
- "id": 579,
- "start": 232.26,
- "end": 232.425,
- "text": "users."
- },
- {
- "id": 580,
- "start": 232.68,
- "end": 232.86,
- "text": "So"
- },
- {
- "id": 581,
- "start": 232.86,
- "end": 233.07,
- "text": "all"
- },
- {
- "id": 582,
- "start": 233.07,
- "end": 233.14,
- "text": "of"
- },
- {
- "id": 583,
- "start": 233.14,
- "end": 233.21,
- "text": "the"
- },
- {
- "id": 584,
- "start": 233.175,
- "end": 233.56,
- "text": "[problematic]"
- },
- {
- "id": 585,
- "start": 233.21,
- "end": 233.91,
- "text": "content"
- },
- {
- "id": 586,
- "start": 233.91,
- "end": 234.09,
- "text": "was"
- },
- {
- "id": 587,
- "start": 234.09,
- "end": 234.41,
- "text": "taken"
- },
- {
- "id": 588,
- "start": 234.41,
- "end": 235.16,
- "text": "down."
- },
- {
- "id": 589,
- "start": 235.16,
- "end": 235.37,
- "text": "And"
- },
- {
- "id": 590,
- "start": 235.37,
- "end": 235.45,
- "text": "the"
- },
- {
- "id": 591,
- "start": 235.45,
- "end": 235.63,
- "text": "way"
- },
- {
- "id": 592,
- "start": 235.63,
- "end": 235.78,
- "text": "we"
- },
- {
- "id": 593,
- "start": 235.78,
- "end": 236.2,
- "text": "measure"
- },
- {
- "id": 594,
- "start": 236.2,
- "end": 236.35,
- "text": "our"
- },
- {
- "id": 595,
- "start": 236.35,
- "end": 237.29,
- "text": "progress"
- },
- {
- "id": 596,
- "start": 237.29,
- "end": 237.83,
- "text": "on"
- },
- {
- "id": 597,
- "start": 237.83,
- "end": 237.95,
- "text": "the"
- },
- {
- "id": 598,
- "start": 237.95,
- "end": 238.45,
- "text": "artificial"
- },
- {
- "id": 599,
- "start": 238.45,
- "end": 239.01,
- "text": "intelligence"
- },
- {
- "id": 600,
- "start": 239.01,
- "end": 239.51,
- "text": "work"
- },
- {
- "id": 601,
- "start": 239.51,
- "end": 239.67,
- "text": "is"
- },
- {
- "id": 602,
- "start": 239.67,
- "end": 239.75,
- "text": "to"
- },
- {
- "id": 603,
- "start": 239.75,
- "end": 240.24,
- "text": "ask:"
- },
- {
- "id": 604,
- "start": 240.24,
- "end": 240.5,
- "text": "Of"
- },
- {
- "id": 605,
- "start": 240.5,
- "end": 240.6,
- "text": "the"
- },
- {
- "id": 606,
- "start": 240.6,
- "end": 240.88,
- "text": "things"
- },
- {
- "id": 607,
- "start": 240.88,
- "end": 241,
- "text": "that"
- },
- {
- "id": 608,
- "start": 241,
- "end": 241.11,
- "text": "we"
- },
- {
- "id": 609,
- "start": 241.11,
- "end": 241.35,
- "text": "take"
- },
- {
- "id": 610,
- "start": 241.675,
- "end": 241.92,
- "text": "down,"
- },
- {
- "id": 611,
- "start": 242.24,
- "end": 242.49,
- "text": "what"
- },
- {
- "id": 612,
- "start": 242.585,
- "end": 242.77,
- "text": "percentage"
- },
- {
- "id": 613,
- "start": 242.93,
- "end": 243.05,
- "text": "was"
- },
- {
- "id": 614,
- "start": 243.05,
- "end": 243.82,
- "text": "detected"
- },
- {
- "id": 615,
- "start": 243.82,
- "end": 244.01,
- "text": "by"
- },
- {
- "id": 616,
- "start": 244.01,
- "end": 244.2,
- "text": "our"
- },
- {
- "id": 617,
- "start": 244.2,
- "end": 245.29,
- "text": "systems"
- },
- {
- "id": 618,
- "start": 245.29,
- "end": 245.58,
- "text": "and"
- },
- {
- "id": 619,
- "start": 245.58,
- "end": 245.82,
- "text": "what"
- },
- {
- "id": 620,
- "start": 245.82,
- "end": 246.22,
- "text": "part"
- },
- {
- "id": 621,
- "start": 246.22,
- "end": 246.38,
- "text": "was"
- },
- {
- "id": 622,
- "start": 246.38,
- "end": 246.58,
- "text": "still"
- },
- {
- "id": 623,
- "start": 246.58,
- "end": 247.18,
- "text": "dependent"
- },
- {
- "id": 624,
- "start": 247.18,
- "end": 247.34,
- "text": "on"
- },
- {
- "id": 625,
- "start": 247.34,
- "end": 247.9,
- "text": "reports"
- },
- {
- "id": 626,
- "start": 247.9,
- "end": 248.19,
- "text": "coming"
- },
- {
- "id": 627,
- "start": 248.19,
- "end": 248.31,
- "text": "in"
- },
- {
- "id": 628,
- "start": 248.31,
- "end": 248.5,
- "text": "from"
- },
- {
- "id": 629,
- "start": 248.5,
- "end": 249.44,
- "text": "users?"
- },
- {
- "id": 630,
- "start": 249.44,
- "end": 249.65,
- "text": "And"
- },
- {
- "id": 631,
- "start": 249.65,
- "end": 249.76,
- "text": "we"
- },
- {
- "id": 632,
- "start": 249.76,
- "end": 249.98,
- "text": "know"
- },
- {
- "id": 633,
- "start": 249.98,
- "end": 250.08,
- "text": "we"
- },
- {
- "id": 634,
- "start": 250.08,
- "end": 250.24,
- "text": "need"
- },
- {
- "id": 635,
- "start": 250.24,
- "end": 250.32,
- "text": "to"
- },
- {
- "id": 636,
- "start": 250.32,
- "end": 250.55,
- "text": "keep"
- },
- {
- "id": 637,
- "start": 250.55,
- "end": 250.82,
- "text": "pushing"
- },
- {
- "id": 638,
- "start": 250.82,
- "end": 250.97,
- "text": "that"
- },
- {
- "id": 639,
- "start": 250.97,
- "end": 251.27,
- "text": "number"
- },
- {
- "id": 640,
- "start": 251.27,
- "end": 251.65,
- "text": "up"
- },
- {
- "id": 641,
- "start": 251.65,
- "end": 251.94,
- "text": "because"
- },
- {
- "id": 642,
- "start": 251.94,
- "end": 252.11,
- "text": "that"
- },
- {
- "id": 643,
- "start": 252.11,
- "end": 252.31,
- "text": "means"
- },
- {
- "id": 644,
- "start": 252.29333333333335,
- "end": 252.56333333333333,
- "text": "we"
- },
- {
- "id": 645,
- "start": 252.47666666666666,
- "end": 252.81666666666666,
- "text": "are"
- },
- {
- "id": 646,
- "start": 252.66,
- "end": 253.07,
- "text": "becoming"
- },
- {
- "id": 647,
- "start": 253.07,
- "end": 253.27,
- "text": "more"
- },
- {
- "id": 648,
- "start": 253.27,
- "end": 254.37,
- "text": "proactive"
- },
- {
- "id": 649,
- "start": 254.37,
- "end": 254.54,
- "text": "and"
- },
- {
- "id": 650,
- "start": 254.54,
- "end": 254.63,
- "text": "we"
- },
- {
- "id": 651,
- "start": 254.63,
- "end": 254.75,
- "text": "can"
- },
- {
- "id": 652,
- "start": 254.75,
- "end": 254.9,
- "text": "get"
- },
- {
- "id": 653,
- "start": 254.9,
- "end": 255.17,
- "text": "ahead"
- },
- {
- "id": 654,
- "start": 255.17,
- "end": 255.26,
- "text": "of"
- },
- {
- "id": 655,
- "start": 255.26,
- "end": 256.24,
- "text": "things."
- },
- {
- "id": 656,
- "start": 256.24,
- "end": 256.5,
- "text": "And"
- },
- {
- "id": 657,
- "start": 256.5,
- "end": 256.57,
- "text": "the"
- },
- {
- "id": 658,
- "start": 256.57,
- "end": 256.76,
- "text": "more"
- },
- {
- "id": 659,
- "start": 256.76,
- "end": 257.26,
- "text": "proactive"
- },
- {
- "id": 660,
- "start": 257.26,
- "end": 257.39,
- "text": "we"
- },
- {
- "id": 661,
- "start": 257.39,
- "end": 257.86,
- "text": "are"
- },
- {
- "id": 662,
- "start": 257.86,
- "end": 257.98,
- "text": "the"
- },
- {
- "id": 663,
- "start": 257.98,
- "end": 258.4,
- "text": "faster"
- },
- {
- "id": 664,
- "start": 258.4,
- "end": 258.52,
- "text": "we"
- },
- {
- "id": 665,
- "start": 258.52,
- "end": 258.67,
- "text": "can"
- },
- {
- "id": 666,
- "start": 258.67,
- "end": 258.9,
- "text": "take"
- },
- {
- "id": 667,
- "start": 258.9,
- "end": 259.1,
- "text": "down"
- },
- {
- "id": 668,
- "start": 259.1,
- "end": 259.23,
- "text": "that"
- },
- {
- "id": 669,
- "start": 259.23,
- "end": 260.24,
- "text": "content"
- },
- {
- "id": 670,
- "start": 260.24,
- "end": 260.6,
- "text": "before"
- },
- {
- "id": 671,
- "start": 260.6,
- "end": 260.87,
- "text": "anyone"
- },
- {
- "id": 672,
- "start": 260.87,
- "end": 261.07,
- "text": "else"
- },
- {
- "id": 673,
- "start": 261.07,
- "end": 261.42,
- "text": "reports"
- },
- {
- "id": 674,
- "start": 261.42,
- "end": 261.92,
- "text": "it,"
- },
- {
- "id": 675,
- "start": 261.92,
- "end": 262.1,
- "text": "and"
- },
- {
- "id": 676,
- "start": 262.1,
- "end": 262.35,
- "text": "even"
- },
- {
- "id": 677,
- "start": 262.35,
- "end": 262.67,
- "text": "before"
- },
- {
- "id": 678,
- "start": 262.67,
- "end": 263.04,
- "text": "anyone"
- },
- {
- "id": 679,
- "start": 263.04,
- "end": 263.32,
- "text": "sees"
- },
- {
- "id": 680,
- "start": 263.445,
- "end": 263.67499999999995,
- "text": "it."
- },
- {
- "id": 681,
- "start": 263.85,
- "end": 264.03,
- "text": "And"
- },
- {
- "id": 682,
- "start": 264.03,
- "end": 264.12,
- "text": "we"
- },
- {
- "id": 683,
- "start": 264.12,
- "end": 264.26,
- "text": "can"
- },
- {
- "id": 684,
- "start": 264.26,
- "end": 264.49,
- "text": "take"
- },
- {
- "id": 685,
- "start": 264.49,
- "end": 264.73,
- "text": "down"
- },
- {
- "id": 686,
- "start": 264.78999999999996,
- "end": 265.03499999999997,
- "text": "more"
- },
- {
- "id": 687,
- "start": 265.09,
- "end": 265.34,
- "text": "bad"
- },
- {
- "id": 688,
- "start": 265.61999999999995,
- "end": 265.785,
- "text": "content."
- },
- {
- "id": 689,
- "start": 266.15,
- "end": 266.23,
- "text": "I"
- },
- {
- "id": 690,
- "start": 266.23,
- "end": 266.35,
- "text": "mean"
- },
- {
- "id": 691,
- "start": 266.35,
- "end": 266.42,
- "text": "it"
- },
- {
- "id": 692,
- "start": 266.42,
- "end": 266.54,
- "text": "would"
- },
- {
- "id": 693,
- "start": 266.54,
- "end": 267,
- "text": "seem"
- },
- {
- "id": 694,
- "start": 267,
- "end": 267.33,
- "text": "rather"
- },
- {
- "id": 695,
- "start": 267.33,
- "end": 267.82,
- "text": "difficult,"
- },
- {
- "id": 696,
- "start": 267.82,
- "end": 268.03,
- "text": "even"
- },
- {
- "id": 697,
- "start": 268.03,
- "end": 268.21,
- "text": "for"
- },
- {
- "id": 698,
- "start": 268.21,
- "end": 268.27,
- "text": "a"
- },
- {
- "id": 699,
- "start": 268.27,
- "end": 268.58,
- "text": "human"
- },
- {
- "id": 700,
- "start": 268.58,
- "end": 270.01,
- "text": "being"
- },
- {
- "id": 701,
- "start": 270.01,
- "end": 270.53,
- "text": "content"
- },
- {
- "id": 702,
- "start": 270.53,
- "end": 271.09,
- "text": "moderator,"
- },
- {
- "id": 703,
- "start": 271.09,
- "end": 271.22,
- "text": "to"
- },
- {
- "id": 704,
- "start": 271.22,
- "end": 271.57,
- "text": "figure"
- },
- {
- "id": 705,
- "start": 271.57,
- "end": 271.73,
- "text": "out"
- },
- {
- "id": 706,
- "start": 271.73,
- "end": 271.96,
- "text": "what"
- },
- {
- "id": 707,
- "start": 271.96,
- "end": 272.17,
- "text": "is"
- },
- {
- "id": 708,
- "start": 272.17,
- "end": 272.28,
- "text": "or"
- },
- {
- "id": 709,
- "start": 272.28,
- "end": 272.45,
- "text": "what"
- },
- {
- "id": 710,
- "start": 272.45,
- "end": 272.58,
- "text": "is"
- },
- {
- "id": 711,
- "start": 272.58,
- "end": 272.81,
- "text": "not"
- },
- {
- "id": 712,
- "start": 272.81,
- "end": 273.04,
- "text": "hate"
- },
- {
- "id": 713,
- "start": 273.04,
- "end": 273.84,
- "text": "speech,"
- },
- {
- "id": 714,
- "start": 273.84,
- "end": 274.42,
- "text": "especially"
- },
- {
- "id": 715,
- "start": 274.42,
- "end": 274.74,
- "text": "when"
- },
- {
- "id": 716,
- "start": 274.74,
- "end": 274.92,
- "text": "you’re"
- },
- {
- "id": 717,
- "start": 274.92,
- "end": 275.4,
- "text": "operating"
- },
- {
- "id": 718,
- "start": 275.4,
- "end": 275.67,
- "text": "in"
- },
- {
- "id": 719,
- "start": 275.67,
- "end": 275.93,
- "text": "so"
- },
- {
- "id": 720,
- "start": 275.93,
- "end": 276.11,
- "text": "many"
- },
- {
- "id": 721,
- "start": 276.11,
- "end": 276.52,
- "text": "different"
- },
- {
- "id": 722,
- "start": 276.52,
- "end": 277.41,
- "text": "countries,"
- },
- {
- "id": 723,
- "start": 277.41,
- "end": 277.61,
- "text": "so"
- },
- {
- "id": 724,
- "start": 277.61,
- "end": 277.76,
- "text": "many"
- },
- {
- "id": 725,
- "start": 277.76,
- "end": 278.08,
- "text": "different"
- },
- {
- "id": 726,
- "start": 278.08,
- "end": 278.63,
- "text": "languages,"
- },
- {
- "id": 727,
- "start": 278.63,
- "end": 278.78,
- "text": "so"
- },
- {
- "id": 728,
- "start": 278.78,
- "end": 278.91,
- "text": "many"
- },
- {
- "id": 729,
- "start": 278.91,
- "end": 279.8,
- "text": "different"
- },
- {
- "id": 730,
- "start": 279.8,
- "end": 280.47,
- "text": "cultural"
- },
- {
- "id": 731,
- "start": 280.47,
- "end": 281.16,
- "text": "contextual"
- },
- {
- "id": 732,
- "start": 281.16,
- "end": 281.85,
- "text": "nuances"
- },
- {
- "id": 733,
- "start": 281.59499999999997,
- "end": 282.295,
- "text": "at"
- },
- {
- "id": 734,
- "start": 282.03,
- "end": 282.74,
- "text": "play."
- },
- {
- "id": 735,
- "start": 282.74,
- "end": 282.87,
- "text": "I"
- },
- {
- "id": 736,
- "start": 282.87,
- "end": 283.22,
- "text": "mean"
- },
- {
- "id": 737,
- "start": 283.22,
- "end": 283.4,
- "text": "is"
- },
- {
- "id": 738,
- "start": 283.4,
- "end": 283.92,
- "text": "that"
- },
- {
- "id": 739,
- "start": 283.76,
- "end": 284.03,
- "text": "a"
- },
- {
- "id": 740,
- "start": 284.36,
- "end": 284.775,
- "text": "near-impossible"
- },
- {
- "id": 741,
- "start": 284.96,
- "end": 285.52,
- "text": "task"
- },
- {
- "id": 742,
- "start": 285.35749999999996,
- "end": 285.8825,
- "text": "to"
- },
- {
- "id": 743,
- "start": 285.75499999999994,
- "end": 286.245,
- "text": "expect"
- },
- {
- "id": 744,
- "start": 286.1525,
- "end": 286.6075,
- "text": "a"
- },
- {
- "id": 745,
- "start": 286.55,
- "end": 286.97,
- "text": "human"
- },
- {
- "id": 746,
- "start": 286.97,
- "end": 287.47,
- "text": "being,"
- },
- {
- "id": 747,
- "start": 287.47,
- "end": 287.57,
- "text": "an"
- },
- {
- "id": 748,
- "start": 287.57,
- "end": 287.91,
- "text": "army"
- },
- {
- "id": 749,
- "start": 287.91,
- "end": 288.01,
- "text": "of"
- },
- {
- "id": 750,
- "start": 288.01,
- "end": 288.33,
- "text": "humans,"
- },
- {
- "id": 751,
- "start": 288.33,
- "end": 288.42,
- "text": "to"
- },
- {
- "id": 752,
- "start": 288.42,
- "end": 288.5,
- "text": "be"
- },
- {
- "id": 753,
- "start": 288.5,
- "end": 288.64,
- "text": "able"
- },
- {
- "id": 754,
- "start": 288.64,
- "end": 288.7,
- "text": "to"
- },
- {
- "id": 755,
- "start": 288.7,
- "end": 288.84,
- "text": "do"
- },
- {
- "id": 756,
- "start": 289.21999999999997,
- "end": 289.44,
- "text": "that?"
- },
- {
- "id": 757,
- "start": 289.74,
- "end": 290.04,
- "text": "One"
- },
- {
- "id": 758,
- "start": 290.04,
- "end": 290.14,
- "text": "of"
- },
- {
- "id": 759,
- "start": 290.09000000000003,
- "end": 290.255,
- "text": "the"
- },
- {
- "id": 760,
- "start": 290.14,
- "end": 290.37,
- "text": "things"
- },
- {
- "id": 761,
- "start": 290.37,
- "end": 290.49,
- "text": "we"
- },
- {
- "id": 762,
- "start": 290.49,
- "end": 290.97,
- "text": "do"
- },
- {
- "id": 763,
- "start": 290.97,
- "end": 291.61,
- "text": "is"
- },
- {
- "id": 764,
- "start": 291.61,
- "end": 291.89,
- "text": "try"
- },
- {
- "id": 765,
- "start": 291.89,
- "end": 291.98,
- "text": "to"
- },
- {
- "id": 766,
- "start": 291.98,
- "end": 292.55,
- "text": "define"
- },
- {
- "id": 767,
- "start": 292.55,
- "end": 292.94,
- "text": "very"
- },
- {
- "id": 768,
- "start": 292.94,
- "end": 293.74,
- "text": "clear"
- },
- {
- "id": 769,
- "start": 293.66,
- "end": 294.21,
- "text": "community"
- },
- {
- "id": 770,
- "start": 294.42,
- "end": 295.04,
- "text": "standards."
- },
- {
- "id": 771,
- "start": 295.18,
- "end": 295.87,
- "text": "So"
- },
- {
- "id": 772,
- "start": 295.87,
- "end": 296.07,
- "text": "the"
- },
- {
- "id": 773,
- "start": 296.07,
- "end": 296.2,
- "text": "way"
- },
- {
- "id": 774,
- "start": 296.2,
- "end": 296.32,
- "text": "we"
- },
- {
- "id": 775,
- "start": 296.32,
- "end": 296.69,
- "text": "approach"
- },
- {
- "id": 776,
- "start": 296.69,
- "end": 296.96,
- "text": "this"
- },
- {
- "id": 777,
- "start": 296.96,
- "end": 297.47,
- "text": "is"
- },
- {
- "id": 778,
- "start": 297.47,
- "end": 297.69,
- "text": "we"
- },
- {
- "id": 779,
- "start": 297.69,
- "end": 298.25,
- "text": "want"
- },
- {
- "id": 780,
- "start": 298.25,
- "end": 298.37,
- "text": "a"
- },
- {
- "id": 781,
- "start": 298.37,
- "end": 299.43,
- "text": "community"
- },
- {
- "id": 782,
- "start": 299.43,
- "end": 299.65,
- "text": "where"
- },
- {
- "id": 783,
- "start": 299.65,
- "end": 300.03,
- "text": "people"
- },
- {
- "id": 784,
- "start": 300.03,
- "end": 300.36,
- "text": "can"
- },
- {
- "id": 785,
- "start": 300.36,
- "end": 300.71,
- "text": "express"
- },
- {
- "id": 786,
- "start": 300.71,
- "end": 301.53,
- "text": "themselves"
- },
- {
- "id": 787,
- "start": 301.53,
- "end": 301.98,
- "text": "and"
- },
- {
- "id": 788,
- "start": 301.98,
- "end": 302.14,
- "text": "can"
- },
- {
- "id": 789,
- "start": 302.14,
- "end": 303.05,
- "text": "have"
- },
- {
- "id": 790,
- "start": 303.05,
- "end": 303.42,
- "text": "robust"
- },
- {
- "id": 791,
- "start": 303.42,
- "end": 304.06,
- "text": "discussion."
- },
- {
- "id": 792,
- "start": 304.06,
- "end": 304.22,
- "text": "It’s"
- },
- {
- "id": 793,
- "start": 304.22,
- "end": 304.44,
- "text": "really"
- },
- {
- "id": 794,
- "start": 304.88,
- "end": 305.065,
- "text": "important."
- },
- {
- "id": 795,
- "start": 305.54,
- "end": 305.69,
- "text": "But"
- },
- {
- "id": 796,
- "start": 305.69,
- "end": 305.81,
- "text": "we"
- },
- {
- "id": 797,
- "start": 305.81,
- "end": 306.05,
- "text": "also"
- },
- {
- "id": 798,
- "start": 306.05,
- "end": 306.21,
- "text": "need"
- },
- {
- "id": 799,
- "start": 306.21,
- "end": 306.29,
- "text": "to"
- },
- {
- "id": 800,
- "start": 306.29,
- "end": 306.66,
- "text": "balance"
- },
- {
- "id": 801,
- "start": 306.66,
- "end": 306.89,
- "text": "that"
- },
- {
- "id": 802,
- "start": 306.89,
- "end": 307.12,
- "text": "with"
- },
- {
- "id": 803,
- "start": 307.12,
- "end": 307.6,
- "text": "keeping"
- },
- {
- "id": 804,
- "start": 307.6,
- "end": 307.88,
- "text": "people"
- },
- {
- "id": 805,
- "start": 307.88,
- "end": 309.22,
- "text": "safe."
- },
- {
- "id": 806,
- "start": 309.22,
- "end": 309.42,
- "text": "That"
- },
- {
- "id": 807,
- "start": 309.42,
- "end": 309.62,
- "text": "means"
- },
- {
- "id": 808,
- "start": 309.62,
- "end": 309.72,
- "text": "we"
- },
- {
- "id": 809,
- "start": 309.72,
- "end": 309.88,
- "text": "need"
- },
- {
- "id": 810,
- "start": 309.88,
- "end": 309.99,
- "text": "to"
- },
- {
- "id": 811,
- "start": 309.99,
- "end": 310.28,
- "text": "draw"
- },
- {
- "id": 812,
- "start": 310.28,
- "end": 310.78,
- "text": "lines"
- },
- {
- "id": 813,
- "start": 310.78,
- "end": 311.78,
- "text": "somewhere,"
- },
- {
- "id": 814,
- "start": 311.78,
- "end": 312.32,
- "text": "and"
- },
- {
- "id": 815,
- "start": 312.32,
- "end": 312.75,
- "text": "honestly,"
- },
- {
- "id": 816,
- "start": 312.75,
- "end": 313.02,
- "text": "there’s"
- },
- {
- "id": 817,
- "start": 313.02,
- "end": 313.3,
- "text": "no"
- },
- {
- "id": 818,
- "start": 313.3,
- "end": 313.53,
- "text": "one"
- },
- {
- "id": 819,
- "start": 313.53,
- "end": 313.76,
- "text": "right"
- },
- {
- "id": 820,
- "start": 313.76,
- "end": 314.24,
- "text": "place"
- },
- {
- "id": 821,
- "start": 314.24,
- "end": 314.4,
- "text": "for"
- },
- {
- "id": 822,
- "start": 314.4,
- "end": 314.64,
- "text": "those"
- },
- {
- "id": 823,
- "start": 314.64,
- "end": 314.91,
- "text": "lines"
- },
- {
- "id": 824,
- "start": 314.91,
- "end": 315.03,
- "text": "to"
- },
- {
- "id": 825,
- "start": 315.03,
- "end": 315.86,
- "text": "be."
- },
- {
- "id": 826,
- "start": 315.86,
- "end": 316.01,
- "text": "But"
- },
- {
- "id": 827,
- "start": 316.01,
- "end": 316.19,
- "text": "we’ve"
- },
- {
- "id": 828,
- "start": 316.19,
- "end": 316.53,
- "text": "drawn"
- },
- {
- "id": 829,
- "start": 316.53,
- "end": 316.63,
- "text": "the"
- },
- {
- "id": 830,
- "start": 316.63,
- "end": 317.32,
- "text": "lines"
- },
- {
- "id": 831,
- "start": 317.23499999999996,
- "end": 317.655,
- "text": "with"
- },
- {
- "id": 832,
- "start": 317.84,
- "end": 317.99,
- "text": "what"
- },
- {
- "id": 833,
- "start": 317.99,
- "end": 318.09,
- "text": "we"
- },
- {
- "id": 834,
- "start": 318.09,
- "end": 318.38,
- "text": "call"
- },
- {
- "id": 835,
- "start": 318.38,
- "end": 318.46,
- "text": "the"
- },
- {
- "id": 836,
- "start": 318.46,
- "end": 318.85,
- "text": "community"
- },
- {
- "id": 837,
- "start": 318.85,
- "end": 320.09,
- "text": "standards."
- },
- {
- "id": 838,
- "start": 320.09,
- "end": 320.54,
- "text": "And"
- },
- {
- "id": 839,
- "start": 320.54,
- "end": 320.76,
- "text": "one"
- },
- {
- "id": 840,
- "start": 320.76,
- "end": 320.82,
- "text": "of"
- },
- {
- "id": 841,
- "start": 320.82,
- "end": 320.88,
- "text": "the"
- },
- {
- "id": 842,
- "start": 320.88,
- "end": 321.13,
- "text": "things"
- },
- {
- "id": 843,
- "start": 321.13,
- "end": 321.25,
- "text": "we"
- },
- {
- "id": 844,
- "start": 321.25,
- "end": 321.95,
- "text": "did"
- },
- {
- "id": 845,
- "start": 321.95,
- "end": 322.13,
- "text": "is"
- },
- {
- "id": 846,
- "start": 322.13,
- "end": 322.51,
- "text": "actually"
- },
- {
- "id": 847,
- "start": 322.60499999999996,
- "end": 322.99,
- "text": "publish"
- },
- {
- "id": 848,
- "start": 323.08,
- "end": 323.47,
- "text": "earlier"
- },
- {
- "id": 849,
- "start": 323.47,
- "end": 323.71,
- "text": "this"
- },
- {
- "id": 850,
- "start": 323.76,
- "end": 323.95,
- "text": "year"
- },
- {
- "id": 851,
- "start": 324.05,
- "end": 324.19,
- "text": "the"
- },
- {
- "id": 852,
- "start": 324.19,
- "end": 324.65,
- "text": "full"
- },
- {
- "id": 853,
- "start": 324.65,
- "end": 325.32,
- "text": "guidelines"
- },
- {
- "id": 854,
- "start": 325.32,
- "end": 325.46,
- "text": "we"
- },
- {
- "id": 855,
- "start": 325.46,
- "end": 326.44,
- "text": "use"
- },
- {
- "id": 856,
- "start": 326.44,
- "end": 326.95,
- "text": "for"
- },
- {
- "id": 857,
- "start": 326.95,
- "end": 327.5,
- "text": "enforcing"
- },
- {
- "id": 858,
- "start": 327.5,
- "end": 327.58,
- "text": "the"
- },
- {
- "id": 859,
- "start": 327.58,
- "end": 327.99,
- "text": "community"
- },
- {
- "id": 860,
- "start": 328.35999999999996,
- "end": 328.92499999999995,
- "text": "standards."
- },
- {
- "id": 861,
- "start": 329.14,
- "end": 329.86,
- "text": "And"
- },
- {
- "id": 862,
- "start": 329.86,
- "end": 330.04,
- "text": "if"
- },
- {
- "id": 863,
- "start": 330.04,
- "end": 330.13,
- "text": "you"
- },
- {
- "id": 864,
- "start": 330.13,
- "end": 330.27,
- "text": "look"
- },
- {
- "id": 865,
- "start": 330.27,
- "end": 330.35,
- "text": "at"
- },
- {
- "id": 866,
- "start": 330.35,
- "end": 330.48,
- "text": "them"
- },
- {
- "id": 867,
- "start": 330.48,
- "end": 330.57,
- "text": "you"
- },
- {
- "id": 868,
- "start": 330.57,
- "end": 330.69,
- "text": "can"
- },
- {
- "id": 869,
- "start": 330.69,
- "end": 331.04,
- "text": "actually"
- },
- {
- "id": 870,
- "start": 331.04,
- "end": 331.43,
- "text": "see"
- },
- {
- "id": 871,
- "start": 331.43,
- "end": 331.68,
- "text": "how"
- },
- {
- "id": 872,
- "start": 331.68,
- "end": 332.07,
- "text": "they"
- },
- {
- "id": 873,
- "start": 332.07,
- "end": 332.89,
- "text": "describe"
- },
- {
- "id": 874,
- "start": 332.89,
- "end": 333.02,
- "text": "in"
- },
- {
- "id": 875,
- "start": 333.02,
- "end": 333.1,
- "text": "a"
- },
- {
- "id": 876,
- "start": 333.1,
- "end": 333.55,
- "text": "very"
- },
- {
- "id": 877,
- "start": 333.55,
- "end": 333.97,
- "text": "crisp"
- },
- {
- "id": 878,
- "start": 333.97,
- "end": 335.04,
- "text": "way"
- },
- {
- "id": 879,
- "start": 335.04,
- "end": 335.36,
- "text": "where"
- },
- {
- "id": 880,
- "start": 335.36,
- "end": 335.6,
- "text": "those"
- },
- {
- "id": 881,
- "start": 335.6,
- "end": 335.9,
- "text": "lines"
- },
- {
- "id": 882,
- "start": 335.9,
- "end": 336.16,
- "text": "are."
- },
- {
- "id": 883,
- "start": 336.16,
- "end": 336.34,
- "text": "So"
- },
- {
- "id": 884,
- "start": 336.34,
- "end": 336.51,
- "text": "for"
- },
- {
- "id": 885,
- "start": 336.51,
- "end": 336.95,
- "text": "example,"
- },
- {
- "id": 886,
- "start": 336.95,
- "end": 337.07,
- "text": "in"
- },
- {
- "id": 887,
- "start": 337.07,
- "end": 337.5,
- "text": "areas"
- },
- {
- "id": 888,
- "start": 337.5,
- "end": 338.05,
- "text": "like"
- },
- {
- "id": 889,
- "start": 338.05,
- "end": 338.7,
- "text": "nudity"
- },
- {
- "id": 890,
- "start": 338.7,
- "end": 338.84,
- "text": "or"
- },
- {
- "id": 891,
- "start": 338.84,
- "end": 339.27,
- "text": "graphic"
- },
- {
- "id": 892,
- "start": 339.27,
- "end": 340.75,
- "text": "violence,"
- },
- {
- "id": 893,
- "start": 340.75,
- "end": 340.9,
- "text": "we"
- },
- {
- "id": 894,
- "start": 340.9,
- "end": 341.17,
- "text": "don’t"
- },
- {
- "id": 895,
- "start": 341.17,
- "end": 341.42,
- "text": "leave"
- },
- {
- "id": 896,
- "start": 341.42,
- "end": 341.61,
- "text": "that"
- },
- {
- "id": 897,
- "start": 341.61,
- "end": 342.12,
- "text": "up"
- },
- {
- "id": 898,
- "start": 342.12,
- "end": 342.52,
- "text": "to"
- },
- {
- "id": 899,
- "start": 342.51,
- "end": 342.67,
- "text": "the"
- },
- {
- "id": 900,
- "start": 342.815,
- "end": 342.96,
- "text": "judgment"
- },
- {
- "id": 901,
- "start": 343.12,
- "end": 343.25,
- "text": "of"
- },
- {
- "id": 902,
- "start": 343.25,
- "end": 343.34,
- "text": "an"
- },
- {
- "id": 903,
- "start": 343.34,
- "end": 343.88,
- "text": "individual"
- },
- {
- "id": 904,
- "start": 344.09,
- "end": 344.445,
- "text": "reviewer,"
- },
- {
- "id": 905,
- "start": 344.84,
- "end": 345.01,
- "text": "but"
- },
- {
- "id": 906,
- "start": 345.01,
- "end": 345.14,
- "text": "we"
- },
- {
- "id": 907,
- "start": 345.14,
- "end": 345.52,
- "text": "actually"
- },
- {
- "id": 908,
- "start": 345.52,
- "end": 346.6,
- "text": "specify"
- },
- {
- "id": 909,
- "start": 346.6,
- "end": 347.13,
- "text": "where"
- },
- {
- "id": 910,
- "start": 347.13,
- "end": 347.67,
- "text": "exactly"
- },
- {
- "id": 911,
- "start": 347.67,
- "end": 347.84,
- "text": "does"
- },
- {
- "id": 912,
- "start": 347.84,
- "end": 348.03,
- "text": "that"
- },
- {
- "id": 913,
- "start": 348.03,
- "end": 348.27,
- "text": "line"
- },
- {
- "id": 914,
- "start": 348.27,
- "end": 348.52,
- "text": "go,"
- },
- {
- "id": 915,
- "start": 348.52,
- "end": 348.81,
- "text": "down"
- },
- {
- "id": 916,
- "start": 348.81,
- "end": 348.92,
- "text": "to"
- },
- {
- "id": 917,
- "start": 348.92,
- "end": 349.04,
- "text": "the"
- },
- {
- "id": 918,
- "start": 349.04,
- "end": 349.43,
- "text": "gory"
- },
- {
- "id": 919,
- "start": 349.43,
- "end": 350.19,
- "text": "details"
- },
- {
- "id": 920,
- "start": 350.19,
- "end": 350.61,
- "text": "(literally"
- },
- {
- "id": 921,
- "start": 350.61,
- "end": 351.06,
- "text": "gory"
- },
- {
- "id": 922,
- "start": 351.06,
- "end": 351.15,
- "text": "in"
- },
- {
- "id": 923,
- "start": 351.15,
- "end": 351.23,
- "text": "the"
- },
- {
- "id": 924,
- "start": 351.23,
- "end": 351.52,
- "text": "case"
- },
- {
- "id": 925,
- "start": 351.52,
- "end": 352.02,
- "text": "of"
- },
- {
- "id": 926,
- "start": 352.02,
- "end": 352.4,
- "text": "areas"
- },
- {
- "id": 927,
- "start": 352.4,
- "end": 352.53,
- "text": "like"
- },
- {
- "id": 928,
- "start": 352.53,
- "end": 352.88,
- "text": "graphic"
- },
- {
- "id": 929,
- "start": 352.88,
- "end": 353.94,
- "text": "violence),"
- },
- {
- "id": 930,
- "start": 353.94,
- "end": 354.19,
- "text": "so"
- },
- {
- "id": 931,
- "start": 354.19,
- "end": 354.35,
- "text": "that"
- },
- {
- "id": 932,
- "start": 354.35,
- "end": 354.46,
- "text": "we"
- },
- {
- "id": 933,
- "start": 354.46,
- "end": 354.59,
- "text": "can"
- },
- {
- "id": 934,
- "start": 354.59,
- "end": 354.73,
- "text": "be"
- },
- {
- "id": 935,
- "start": 354.73,
- "end": 355.45,
- "text": "consistent"
- },
- {
- "id": 936,
- "start": 355.165,
- "end": 355.645,
- "text": "in"
- },
- {
- "id": 937,
- "start": 355.6,
- "end": 355.84,
- "text": "how"
- },
- {
- "id": 938,
- "start": 355.84,
- "end": 355.96,
- "text": "we"
- },
- {
- "id": 939,
- "start": 355.96,
- "end": 356.23,
- "text": "apply"
- },
- {
- "id": 940,
- "start": 356.23,
- "end": 356.43,
- "text": "those"
- },
- {
- "id": 941,
- "start": 356.985,
- "end": 357.165,
- "text": "policies."
- },
- {
- "id": 942,
- "start": 357.74,
- "end": 357.9,
- "text": "And"
- },
- {
- "id": 943,
- "start": 357.9,
- "end": 357.96,
- "text": "the"
- },
- {
- "id": 944,
- "start": 357.96,
- "end": 358.14,
- "text": "most"
- },
- {
- "id": 945,
- "start": 358.14,
- "end": 358.51,
- "text": "important"
- },
- {
- "id": 946,
- "start": 358.51,
- "end": 359.64,
- "text": "thing"
- },
- {
- "id": 947,
- "start": 359.64,
- "end": 359.79,
- "text": "in"
- },
- {
- "id": 948,
- "start": 359.79,
- "end": 360.22,
- "text": "releasing"
- },
- {
- "id": 949,
- "start": 360.22,
- "end": 360.52,
- "text": "those"
- },
- {
- "id": 950,
- "start": 360.52,
- "end": 361.46,
- "text": "is"
- },
- {
- "id": 951,
- "start": 361.46,
- "end": 361.63,
- "text": "to"
- },
- {
- "id": 952,
- "start": 361.63,
- "end": 361.76,
- "text": "be"
- },
- {
- "id": 953,
- "start": 361.76,
- "end": 362.02,
- "text": "able"
- },
- {
- "id": 954,
- "start": 362.02,
- "end": 362.14,
- "text": "to"
- },
- {
- "id": 955,
- "start": 362.14,
- "end": 362.38,
- "text": "have"
- },
- {
- "id": 956,
- "start": 362.38,
- "end": 362.44,
- "text": "a"
- },
- {
- "id": 957,
- "start": 362.44,
- "end": 363.61,
- "text": "discussion"
- },
- {
- "id": 958,
- "start": 363.61,
- "end": 364.34,
- "text": "with"
- },
- {
- "id": 959,
- "start": 364.34,
- "end": 365.36,
- "text": "people"
- },
- {
- "id": 960,
- "start": 365.36,
- "end": 365.78,
- "text": "outside"
- },
- {
- "id": 961,
- "start": 365.78,
- "end": 365.85,
- "text": "the"
- },
- {
- "id": 962,
- "start": 365.85,
- "end": 366.46,
- "text": "company"
- },
- {
- "id": 963,
- "start": 366.16,
- "end": 366.7,
- "text": "–"
- },
- {
- "id": 964,
- "start": 366.47,
- "end": 366.94,
- "text": "with"
- },
- {
- "id": 965,
- "start": 366.94,
- "end": 367.42,
- "text": "folks"
- },
- {
- "id": 966,
- "start": 367.42,
- "end": 367.65,
- "text": "in"
- },
- {
- "id": 967,
- "start": 367.65,
- "end": 368.76,
- "text": "academia,"
- },
- {
- "id": 968,
- "start": 368.76,
- "end": 369.33,
- "text": "with"
- },
- {
- "id": 969,
- "start": 369.17,
- "end": 370.1,
- "text": "NGOs"
- },
- {
- "id": 970,
- "start": 369.48,
- "end": 370.15000000000003,
- "text": "[nongovernmental"
- },
- {
- "id": 971,
- "start": 369.79,
- "end": 370.2,
- "text": "organizations],"
- },
- {
- "id": 972,
- "start": 370.1,
- "end": 370.25,
- "text": "with"
- },
- {
- "id": 973,
- "start": 370.25,
- "end": 370.5,
- "text": "human"
- },
- {
- "id": 974,
- "start": 370.5,
- "end": 370.73,
- "text": "rights"
- },
- {
- "id": 975,
- "start": 370.8666666666667,
- "end": 371.0566666666667,
- "text": "organizations"
- },
- {
- "id": 976,
- "start": 371.23333333333335,
- "end": 371.3833333333333,
- "text": "–"
- },
- {
- "id": 977,
- "start": 371.6,
- "end": 371.71,
- "text": "and"
- },
- {
- "id": 978,
- "start": 371.71,
- "end": 371.77,
- "text": "to"
- },
- {
- "id": 979,
- "start": 371.77,
- "end": 371.96,
- "text": "have"
- },
- {
- "id": 980,
- "start": 371.96,
- "end": 372.01,
- "text": "a"
- },
- {
- "id": 981,
- "start": 372.01,
- "end": 372.52,
- "text": "discussion"
- },
- {
- "id": 982,
- "start": 372.52,
- "end": 373.36,
- "text": "on"
- },
- {
- "id": 983,
- "start": 373.36,
- "end": 373.66,
- "text": "where"
- },
- {
- "id": 984,
- "start": 373.66,
- "end": 373.84,
- "text": "should"
- },
- {
- "id": 985,
- "start": 373.84,
- "end": 374.03,
- "text": "those"
- },
- {
- "id": 986,
- "start": 374.03,
- "end": 374.26,
- "text": "lines"
- },
- {
- "id": 987,
- "start": 374.26,
- "end": 374.36,
- "text": "be"
- },
- {
- "id": 988,
- "start": 374.93000000000006,
- "end": 375.115,
- "text": "drawn."
- },
- {
- "id": 989,
- "start": 375.6,
- "end": 375.87,
- "text": "They"
- },
- {
- "id": 990,
- "start": 375.87,
- "end": 376.02,
- "text": "will"
- },
- {
- "id": 991,
- "start": 376.02,
- "end": 376.45,
- "text": "continue"
- },
- {
- "id": 992,
- "start": 376.45,
- "end": 376.56,
- "text": "to"
- },
- {
- "id": 993,
- "start": 376.56,
- "end": 377.31,
- "text": "evolve"
- },
- {
- "id": 994,
- "start": 377.31,
- "end": 377.52,
- "text": "as"
- },
- {
- "id": 995,
- "start": 377.52,
- "end": 377.66,
- "text": "we"
- },
- {
- "id": 996,
- "start": 377.66,
- "end": 378.46,
- "text": "learn,"
- },
- {
- "id": 997,
- "start": 378.46,
- "end": 378.58,
- "text": "as"
- },
- {
- "id": 998,
- "start": 378.58,
- "end": 378.66,
- "text": "we"
- },
- {
- "id": 999,
- "start": 378.66,
- "end": 378.83,
- "text": "get"
- },
- {
- "id": 1000,
- "start": 378.83,
- "end": 379.26,
- "text": "feedback"
- },
- {
- "id": 1001,
- "start": 379.26,
- "end": 379.39,
- "text": "from"
- },
- {
- "id": 1002,
- "start": 379.39,
- "end": 379.46,
- "text": "the"
- },
- {
- "id": 1003,
- "start": 379.46,
- "end": 380.44,
- "text": "community."
- },
- {
- "id": 1004,
- "start": 380.44,
- "end": 380.58,
- "text": "But"
- },
- {
- "id": 1005,
- "start": 380.58,
- "end": 380.64,
- "text": "it"
- },
- {
- "id": 1006,
- "start": 380.64,
- "end": 380.75,
- "text": "is"
- },
- {
- "id": 1007,
- "start": 380.75,
- "end": 380.97,
- "text": "really"
- },
- {
- "id": 1008,
- "start": 380.97,
- "end": 381.35,
- "text": "important"
- },
- {
- "id": 1009,
- "start": 381.35,
- "end": 381.48,
- "text": "for"
- },
- {
- "id": 1010,
- "start": 381.48,
- "end": 381.61,
- "text": "us"
- },
- {
- "id": 1011,
- "start": 381.61,
- "end": 381.71,
- "text": "to"
- },
- {
- "id": 1012,
- "start": 381.71,
- "end": 381.97,
- "text": "have"
- },
- {
- "id": 1013,
- "start": 381.97,
- "end": 382.19,
- "text": "those"
- },
- {
- "id": 1014,
- "start": 382.19,
- "end": 383.21,
- "text": "lines"
- },
- {
- "id": 1015,
- "start": 383.21,
- "end": 383.42,
- "text": "and"
- },
- {
- "id": 1016,
- "start": 383.42,
- "end": 383.88,
- "text": "to"
- },
- {
- "id": 1017,
- "start": 383.88,
- "end": 384.56,
- "text": "transparently"
- },
- {
- "id": 1018,
- "start": 384.56,
- "end": 385.05,
- "text": "communicate"
- },
- {
- "id": 1019,
- "start": 385.05,
- "end": 387.65,
- "text": "those."
- },
- {
- "id": 1020,
- "start": 387.65,
- "end": 389.3,
- "text": "The"
- },
- {
- "id": 1021,
- "start": 389.3,
- "end": 389.88,
- "text": "situation"
- },
- {
- "id": 1022,
- "start": 389.88,
- "end": 389.98,
- "text": "in"
- },
- {
- "id": 1023,
- "start": 389.98,
- "end": 390.6,
- "text": "Myanmar"
- },
- {
- "id": 1024,
- "start": 390.5325,
- "end": 391.15250000000003,
- "text": "–"
- },
- {
- "id": 1025,
- "start": 391.08500000000004,
- "end": 391.70500000000004,
- "text": "do"
- },
- {
- "id": 1026,
- "start": 391.63750000000005,
- "end": 392.25750000000005,
- "text": "you"
- },
- {
- "id": 1027,
- "start": 392.19,
- "end": 392.81,
- "text": "classify"
- },
- {
- "id": 1028,
- "start": 392.81,
- "end": 392.97,
- "text": "that"
- },
- {
- "id": 1029,
- "start": 392.97,
- "end": 393.09,
- "text": "as"
- },
- {
- "id": 1030,
- "start": 393.09,
- "end": 393.21,
- "text": "a"
- },
- {
- "id": 1031,
- "start": 393.21,
- "end": 393.49,
- "text": "hate"
- },
- {
- "id": 1032,
- "start": 393.49,
- "end": 393.85,
- "text": "speech"
- },
- {
- "id": 1033,
- "start": 393.85,
- "end": 395.48,
- "text": "situation,"
- },
- {
- "id": 1034,
- "start": 395.48,
- "end": 395.73,
- "text": "that"
- },
- {
- "id": 1035,
- "start": 395.73,
- "end": 395.88,
- "text": "in"
- },
- {
- "id": 1036,
- "start": 395.88,
- "end": 396.13,
- "text": "some"
- },
- {
- "id": 1037,
- "start": 396.13,
- "end": 397.06,
- "text": "ways"
- },
- {
- "id": 1038,
- "start": 397.06,
- "end": 397.9,
- "text": "Facebook"
- },
- {
- "id": 1039,
- "start": 397.9,
- "end": 398.06,
- "text": "has"
- },
- {
- "id": 1040,
- "start": 398.06,
- "end": 398.46,
- "text": "played"
- },
- {
- "id": 1041,
- "start": 398.46,
- "end": 398.53,
- "text": "a"
- },
- {
- "id": 1042,
- "start": 398.53,
- "end": 399.11,
- "text": "role"
- },
- {
- "id": 1043,
- "start": 399.11,
- "end": 399.35,
- "text": "in"
- },
- {
- "id": 1044,
- "start": 399.35,
- "end": 400.3,
- "text": "the"
- },
- {
- "id": 1045,
- "start": 400.3,
- "end": 400.94,
- "text": "genocide"
- },
- {
- "id": 1046,
- "start": 400.94,
- "end": 401.17,
- "text": "there"
- },
- {
- "id": 1047,
- "start": 401.17,
- "end": 401.32,
- "text": "by"
- },
- {
- "id": 1048,
- "start": 401.32,
- "end": 402.21,
- "text": "amplifying"
- },
- {
- "id": 1049,
- "start": 402.21,
- "end": 402.45,
- "text": "hate"
- },
- {
- "id": 1050,
- "start": 402.45,
- "end": 402.82,
- "text": "speech"
- },
- {
- "id": 1051,
- "start": 402.82,
- "end": 402.92,
- "text": "and"
- },
- {
- "id": 1052,
- "start": 402.92,
- "end": 403.27,
- "text": "allowing"
- },
- {
- "id": 1053,
- "start": 403.27,
- "end": 403.37,
- "text": "it"
- },
- {
- "id": 1054,
- "start": 403.37,
- "end": 403.47,
- "text": "to"
- },
- {
- "id": 1055,
- "start": 403.47,
- "end": 403.85,
- "text": "spread"
- },
- {
- "id": 1056,
- "start": 403.78,
- "end": 404.045,
- "text": "there?"
- },
- {
- "id": 1057,
- "start": 404.09,
- "end": 404.24,
- "text": "Do"
- },
- {
- "id": 1058,
- "start": 404.24,
- "end": 404.79,
- "text": "you"
- },
- {
- "id": 1059,
- "start": 404.79,
- "end": 405.05,
- "text": "see"
- },
- {
- "id": 1060,
- "start": 405.05,
- "end": 405.22,
- "text": "that"
- },
- {
- "id": 1061,
- "start": 405.19,
- "end": 405.31,
- "text": "as"
- },
- {
- "id": 1062,
- "start": 405.33,
- "end": 405.4,
- "text": "a"
- },
- {
- "id": 1063,
- "start": 405.4,
- "end": 405.6,
- "text": "hate"
- },
- {
- "id": 1064,
- "start": 405.6,
- "end": 405.86,
- "text": "speech"
- },
- {
- "id": 1065,
- "start": 405.86,
- "end": 407.31,
- "text": "problem?"
- },
- {
- "id": 1066,
- "start": 407.31,
- "end": 408.61,
- "text": "The"
- },
- {
- "id": 1067,
- "start": 408.61,
- "end": 409.02,
- "text": "ethnic"
- },
- {
- "id": 1068,
- "start": 409.02,
- "end": 409.68,
- "text": "violence"
- },
- {
- "id": 1069,
- "start": 409.68,
- "end": 410.41,
- "text": "in"
- },
- {
- "id": 1070,
- "start": 410.41,
- "end": 411.05,
- "text": "Myanmar"
- },
- {
- "id": 1071,
- "start": 411.05,
- "end": 412.13,
- "text": "is"
- },
- {
- "id": 1072,
- "start": 412.13,
- "end": 413.16,
- "text": "horrifying,"
- },
- {
- "id": 1073,
- "start": 413.16,
- "end": 413.6,
- "text": "and"
- },
- {
- "id": 1074,
- "start": 413.6,
- "end": 413.98,
- "text": "we"
- },
- {
- "id": 1075,
- "start": 413.98,
- "end": 414.25,
- "text": "were"
- },
- {
- "id": 1076,
- "start": 414.25,
- "end": 414.46,
- "text": "too"
- },
- {
- "id": 1077,
- "start": 414.46,
- "end": 415.44,
- "text": "slow"
- },
- {
- "id": 1078,
- "start": 415.44,
- "end": 415.6,
- "text": "to"
- },
- {
- "id": 1079,
- "start": 415.6,
- "end": 415.96,
- "text": "spot"
- },
- {
- "id": 1080,
- "start": 415.96,
- "end": 416.29,
- "text": "how"
- },
- {
- "id": 1081,
- "start": 416.29,
- "end": 416.48,
- "text": "this"
- },
- {
- "id": 1082,
- "start": 416.48,
- "end": 416.61,
- "text": "was"
- },
- {
- "id": 1083,
- "start": 416.61,
- "end": 416.9,
- "text": "playing"
- },
- {
- "id": 1084,
- "start": 416.9,
- "end": 417.5,
- "text": "out"
- },
- {
- "id": 1085,
- "start": 417.5,
- "end": 417.69,
- "text": "on"
- },
- {
- "id": 1086,
- "start": 417.69,
- "end": 417.8,
- "text": "our"
- },
- {
- "id": 1087,
- "start": 417.8,
- "end": 419.24,
- "text": "platform."
- },
- {
- "id": 1088,
- "start": 419.24,
- "end": 419.39,
- "text": "But"
- },
- {
- "id": 1089,
- "start": 419.39,
- "end": 419.52,
- "text": "we"
- },
- {
- "id": 1090,
- "start": 419.52,
- "end": 419.71,
- "text": "have"
- },
- {
- "id": 1091,
- "start": 419.71,
- "end": 419.88,
- "text": "made"
- },
- {
- "id": 1092,
- "start": 419.88,
- "end": 421.06,
- "text": "progress."
- },
- {
- "id": 1093,
- "start": 421.06,
- "end": 421.28,
- "text": "We’ve"
- },
- {
- "id": 1094,
- "start": 421.28,
- "end": 421.45,
- "text": "made"
- },
- {
- "id": 1095,
- "start": 421.45,
- "end": 421.97,
- "text": "progress"
- },
- {
- "id": 1096,
- "start": 421.97,
- "end": 423.16,
- "text": "on"
- },
- {
- "id": 1097,
- "start": 423.16,
- "end": 423.46,
- "text": "building"
- },
- {
- "id": 1098,
- "start": 423.46,
- "end": 423.68,
- "text": "better"
- },
- {
- "id": 1099,
- "start": 423.68,
- "end": 424.1,
- "text": "reporting"
- },
- {
- "id": 1100,
- "start": 424.1,
- "end": 424.67,
- "text": "flows."
- },
- {
- "id": 1101,
- "start": 424.67,
- "end": 424.89,
- "text": "We’ve"
- },
- {
- "id": 1102,
- "start": 424.89,
- "end": 425.06,
- "text": "made"
- },
- {
- "id": 1103,
- "start": 425.06,
- "end": 425.61,
- "text": "progress"
- },
- {
- "id": 1104,
- "start": 425.61,
- "end": 426.32,
- "text": "on"
- },
- {
- "id": 1105,
- "start": 426.32,
- "end": 426.93,
- "text": "working"
- },
- {
- "id": 1106,
- "start": 426.93,
- "end": 427.09,
- "text": "with"
- },
- {
- "id": 1107,
- "start": 427.4550000000001,
- "end": 427.6050000000001,
- "text": "organizations"
- },
- {
- "id": 1108,
- "start": 427.98,
- "end": 428.12,
- "text": "on"
- },
- {
- "id": 1109,
- "start": 428.12,
- "end": 428.2,
- "text": "the"
- },
- {
- "id": 1110,
- "start": 428.2,
- "end": 429.14,
- "text": "ground"
- },
- {
- "id": 1111,
- "start": 429.14,
- "end": 429.31,
- "text": "that"
- },
- {
- "id": 1112,
- "start": 429.31,
- "end": 429.45,
- "text": "can"
- },
- {
- "id": 1113,
- "start": 429.45,
- "end": 429.71,
- "text": "help"
- },
- {
- "id": 1114,
- "start": 429.71,
- "end": 429.87,
- "text": "us"
- },
- {
- "id": 1115,
- "start": 429.87,
- "end": 430.88,
- "text": "understand"
- },
- {
- "id": 1116,
- "start": 430.69,
- "end": 431.23,
- "text": "how"
- },
- {
- "id": 1117,
- "start": 430.96,
- "end": 431.525,
- "text": "a"
- },
- {
- "id": 1118,
- "start": 431.23,
- "end": 431.82,
- "text": "situation"
- },
- {
- "id": 1119,
- "start": 431.82,
- "end": 431.93,
- "text": "is"
- },
- {
- "id": 1120,
- "start": 431.93,
- "end": 432.22,
- "text": "playing"
- },
- {
- "id": 1121,
- "start": 432.22,
- "end": 432.38,
- "text": "out."
- },
- {
- "id": 1122,
- "start": 432.38,
- "end": 432.51,
- "text": "We’ve"
- },
- {
- "id": 1123,
- "start": 432.51,
- "end": 432.66,
- "text": "made"
- },
- {
- "id": 1124,
- "start": 432.66,
- "end": 433.08,
- "text": "progress"
- },
- {
- "id": 1125,
- "start": 433.08,
- "end": 433.18,
- "text": "in"
- },
- {
- "id": 1126,
- "start": 433.18,
- "end": 433.58,
- "text": "hiring"
- },
- {
- "id": 1127,
- "start": 433.58,
- "end": 434.48,
- "text": "reviewers"
- },
- {
- "id": 1128,
- "start": 434.48,
- "end": 434.76,
- "text": "who"
- },
- {
- "id": 1129,
- "start": 434.76,
- "end": 435.02,
- "text": "speak"
- },
- {
- "id": 1130,
- "start": 435.02,
- "end": 435.12,
- "text": "the"
- },
- {
- "id": 1131,
- "start": 435.12,
- "end": 435.38,
- "text": "local"
- },
- {
- "id": 1132,
- "start": 435.38,
- "end": 435.82,
- "text": "language"
- },
- {
- "id": 1133,
- "start": 435.82,
- "end": 435.93,
- "text": "and"
- },
- {
- "id": 1134,
- "start": 435.93,
- "end": 436.36,
- "text": "understand"
- },
- {
- "id": 1135,
- "start": 436.36,
- "end": 436.42,
- "text": "the"
- },
- {
- "id": 1136,
- "start": 436.86,
- "end": 437.01000000000005,
- "text": "context."
- },
- {
- "id": 1137,
- "start": 437.36,
- "end": 437.6,
- "text": "And"
- },
- {
- "id": 1138,
- "start": 437.6,
- "end": 437.75,
- "text": "we’ve"
- },
- {
- "id": 1139,
- "start": 437.75,
- "end": 437.94,
- "text": "made"
- },
- {
- "id": 1140,
- "start": 437.94,
- "end": 438.66,
- "text": "progress"
- },
- {
- "id": 1141,
- "start": 438.66,
- "end": 439.3,
- "text": "on"
- },
- {
- "id": 1142,
- "start": 439.3,
- "end": 439.98,
- "text": "technology"
- },
- {
- "id": 1143,
- "start": 439.98,
- "end": 440.11,
- "text": "to"
- },
- {
- "id": 1144,
- "start": 440.11,
- "end": 440.75,
- "text": "proactively"
- },
- {
- "id": 1145,
- "start": 440.75,
- "end": 441.74,
- "text": "identify"
- },
- {
- "id": 1146,
- "start": 441.74,
- "end": 441.98,
- "text": "hate"
- },
- {
- "id": 1147,
- "start": 441.98,
- "end": 442.5,
- "text": "speech."
- },
- {
- "id": 1148,
- "start": 442.5,
- "end": 443.36,
- "text": "So"
- },
- {
- "id": 1149,
- "start": 443.36,
- "end": 443.58,
- "text": "for"
- },
- {
- "id": 1150,
- "start": 443.58,
- "end": 444.41,
- "text": "example,"
- },
- {
- "id": 1151,
- "start": 444.41,
- "end": 444.81,
- "text": "last"
- },
- {
- "id": 1152,
- "start": 444.81,
- "end": 447.68,
- "text": "year"
- },
- {
- "id": 1153,
- "start": 447.68,
- "end": 448.18,
- "text": "13"
- },
- {
- "id": 1154,
- "start": 448.18,
- "end": 448.85,
- "text": "percent"
- },
- {
- "id": 1155,
- "start": 448.85,
- "end": 448.98,
- "text": "of"
- },
- {
- "id": 1156,
- "start": 448.98,
- "end": 449.05,
- "text": "the"
- },
- {
- "id": 1157,
- "start": 449.05,
- "end": 449.33,
- "text": "hate"
- },
- {
- "id": 1158,
- "start": 449.33,
- "end": 449.66,
- "text": "speech"
- },
- {
- "id": 1159,
- "start": 449.66,
- "end": 449.8,
- "text": "that"
- },
- {
- "id": 1160,
- "start": 449.8,
- "end": 449.91,
- "text": "we"
- },
- {
- "id": 1161,
- "start": 449.91,
- "end": 450.15,
- "text": "took"
- },
- {
- "id": 1162,
- "start": 450.15,
- "end": 450.85,
- "text": "down"
- },
- {
- "id": 1163,
- "start": 450.85,
- "end": 451.02,
- "text": "in"
- },
- {
- "id": 1164,
- "start": 451.02,
- "end": 451.87,
- "text": "Myanmar"
- },
- {
- "id": 1165,
- "start": 451.87,
- "end": 452.02,
- "text": "was"
- },
- {
- "id": 1166,
- "start": 452.02,
- "end": 452.68,
- "text": "detected"
- },
- {
- "id": 1167,
- "start": 452.68,
- "end": 452.83,
- "text": "by"
- },
- {
- "id": 1168,
- "start": 452.83,
- "end": 452.93,
- "text": "our"
- },
- {
- "id": 1169,
- "start": 453.535,
- "end": 453.9950000000001,
- "text": "systems."
- },
- {
- "id": 1170,
- "start": 454.24,
- "end": 455.06,
- "text": "And"
- },
- {
- "id": 1171,
- "start": 455.06,
- "end": 455.3,
- "text": "as"
- },
- {
- "id": 1172,
- "start": 455.3,
- "end": 455.44,
- "text": "we"
- },
- {
- "id": 1173,
- "start": 455.44,
- "end": 455.65,
- "text": "made"
- },
- {
- "id": 1174,
- "start": 455.65,
- "end": 456.53,
- "text": "progress"
- },
- {
- "id": 1175,
- "start": 456.53,
- "end": 456.7,
- "text": "and"
- },
- {
- "id": 1176,
- "start": 456.7,
- "end": 457,
- "text": "as"
- },
- {
- "id": 1177,
- "start": 457,
- "end": 457.51,
- "text": "artificial"
- },
- {
- "id": 1178,
- "start": 457.51,
- "end": 458.05,
- "text": "intelligence"
- },
- {
- "id": 1179,
- "start": 458.05,
- "end": 458.66,
- "text": "technology"
- },
- {
- "id": 1180,
- "start": 458.66,
- "end": 460.13,
- "text": "advanced,"
- },
- {
- "id": 1181,
- "start": 460.13,
- "end": 460.34,
- "text": "we"
- },
- {
- "id": 1182,
- "start": 460.34,
- "end": 460.86,
- "text": "resolved"
- },
- {
- "id": 1183,
- "start": 460.86,
- "end": 460.98,
- "text": "that"
- },
- {
- "id": 1184,
- "start": 460.98,
- "end": 461.1,
- "text": "we"
- },
- {
- "id": 1185,
- "start": 461.1,
- "end": 461.3,
- "text": "would"
- },
- {
- "id": 1186,
- "start": 461.3,
- "end": 461.57,
- "text": "try"
- },
- {
- "id": 1187,
- "start": 461.57,
- "end": 461.66,
- "text": "to"
- },
- {
- "id": 1188,
- "start": 461.66,
- "end": 461.87,
- "text": "make"
- },
- {
- "id": 1189,
- "start": 461.87,
- "end": 461.97,
- "text": "it"
- },
- {
- "id": 1190,
- "start": 461.97,
- "end": 462.31,
- "text": "work"
- },
- {
- "id": 1191,
- "start": 462.31,
- "end": 462.57,
- "text": "in"
- },
- {
- "id": 1192,
- "start": 462.57,
- "end": 463.29,
- "text": "Burmese,"
- },
- {
- "id": 1193,
- "start": 463.29,
- "end": 463.47,
- "text": "which"
- },
- {
- "id": 1194,
- "start": 463.47,
- "end": 463.57,
- "text": "is"
- },
- {
- "id": 1195,
- "start": 463.57,
- "end": 463.66,
- "text": "the"
- },
- {
- "id": 1196,
- "start": 463.66,
- "end": 463.9,
- "text": "local"
- },
- {
- "id": 1197,
- "start": 463.9,
- "end": 464.79,
- "text": "language,"
- },
- {
- "id": 1198,
- "start": 464.79,
- "end": 465.27,
- "text": "despite"
- },
- {
- "id": 1199,
- "start": 465.27,
- "end": 465.36,
- "text": "a"
- },
- {
- "id": 1200,
- "start": 465.36,
- "end": 465.64,
- "text": "lot"
- },
- {
- "id": 1201,
- "start": 465.64,
- "end": 466.41,
- "text": "of"
- },
- {
- "id": 1202,
- "start": 466.41,
- "end": 467.41,
- "text": "complexity"
- },
- {
- "id": 1203,
- "start": 467.41,
- "end": 467.57,
- "text": "that"
- },
- {
- "id": 1204,
- "start": 467.57,
- "end": 467.69,
- "text": "is"
- },
- {
- "id": 1205,
- "start": 467.69,
- "end": 467.91,
- "text": "very"
- },
- {
- "id": 1206,
- "start": 467.91,
- "end": 468.55,
- "text": "unique"
- },
- {
- "id": 1207,
- "start": 468.55,
- "end": 468.7,
- "text": "to"
- },
- {
- "id": 1208,
- "start": 468.7,
- "end": 468.79,
- "text": "the"
- },
- {
- "id": 1209,
- "start": 468.79,
- "end": 468.96,
- "text": "way"
- },
- {
- "id": 1210,
- "start": 468.96,
- "end": 469.15,
- "text": "that"
- },
- {
- "id": 1211,
- "start": 469.15,
- "end": 469.51,
- "text": "language"
- },
- {
- "id": 1212,
- "start": 469.51,
- "end": 471.16,
- "text": "works."
- },
- {
- "id": 1213,
- "start": 471.16,
- "end": 471.53,
- "text": "And"
- },
- {
- "id": 1214,
- "start": 471.53,
- "end": 472.28,
- "text": "now"
- },
- {
- "id": 1215,
- "start": 472.04,
- "end": 472.58,
- "text": "over"
- },
- {
- "id": 1216,
- "start": 472.61500000000007,
- "end": 473.31,
- "text": "52"
- },
- {
- "id": 1217,
- "start": 473.19,
- "end": 474.04,
- "text": "percent"
- },
- {
- "id": 1218,
- "start": 474.04,
- "end": 474.2,
- "text": "of"
- },
- {
- "id": 1219,
- "start": 474.2,
- "end": 474.26,
- "text": "the"
- },
- {
- "id": 1220,
- "start": 474.26,
- "end": 474.54,
- "text": "hate"
- },
- {
- "id": 1221,
- "start": 474.54,
- "end": 474.83,
- "text": "speech"
- },
- {
- "id": 1222,
- "start": 474.83,
- "end": 474.95,
- "text": "that"
- },
- {
- "id": 1223,
- "start": 474.95,
- "end": 475.06,
- "text": "we"
- },
- {
- "id": 1224,
- "start": 475.06,
- "end": 475.28,
- "text": "take"
- },
- {
- "id": 1225,
- "start": 475.28,
- "end": 475.5,
- "text": "down"
- },
- {
- "id": 1226,
- "start": 475.5,
- "end": 475.6,
- "text": "in"
- },
- {
- "id": 1227,
- "start": 475.6,
- "end": 476.56,
- "text": "Myanmar"
- },
- {
- "id": 1228,
- "start": 476.56,
- "end": 476.76,
- "text": "is"
- },
- {
- "id": 1229,
- "start": 476.76,
- "end": 477.3,
- "text": "flagged"
- },
- {
- "id": 1230,
- "start": 477.3,
- "end": 477.5,
- "text": "by"
- },
- {
- "id": 1231,
- "start": 477.5,
- "end": 477.6,
- "text": "our"
- },
- {
- "id": 1232,
- "start": 477.6,
- "end": 478.15,
- "text": "systems."
- },
- {
- "id": 1233,
- "start": 478.15,
- "end": 478.34,
- "text": "That’s"
- },
- {
- "id": 1234,
- "start": 478.34,
- "end": 478.6,
- "text": "over"
- },
- {
- "id": 1235,
- "start": 478.6,
- "end": 479.38,
- "text": "half."
- },
- {
- "id": 1236,
- "start": 479.38,
- "end": 479.57,
- "text": "And"
- },
- {
- "id": 1237,
- "start": 479.57,
- "end": 479.78,
- "text": "as"
- },
- {
- "id": 1238,
- "start": 479.78,
- "end": 479.89,
- "text": "we"
- },
- {
- "id": 1239,
- "start": 479.89,
- "end": 480.22,
- "text": "become"
- },
- {
- "id": 1240,
- "start": 480.22,
- "end": 480.4,
- "text": "more"
- },
- {
- "id": 1241,
- "start": 480.4,
- "end": 480.82,
- "text": "proactive"
- },
- {
- "id": 1242,
- "start": 480.995,
- "end": 481.36499999999995,
- "text": "in"
- },
- {
- "id": 1243,
- "start": 481.59,
- "end": 481.91,
- "text": "taking"
- },
- {
- "id": 1244,
- "start": 481.91,
- "end": 482.08,
- "text": "that"
- },
- {
- "id": 1245,
- "start": 482.08,
- "end": 482.32,
- "text": "stuff"
- },
- {
- "id": 1246,
- "start": 482.32,
- "end": 482.6,
- "text": "down,"
- },
- {
- "id": 1247,
- "start": 482.6,
- "end": 482.69,
- "text": "it"
- },
- {
- "id": 1248,
- "start": 482.69,
- "end": 482.89,
- "text": "means"
- },
- {
- "id": 1249,
- "start": 482.89,
- "end": 483,
- "text": "we"
- },
- {
- "id": 1250,
- "start": 483,
- "end": 483.14,
- "text": "can"
- },
- {
- "id": 1251,
- "start": 483.14,
- "end": 483.36,
- "text": "take"
- },
- {
- "id": 1252,
- "start": 483.36,
- "end": 483.45,
- "text": "it"
- },
- {
- "id": 1253,
- "start": 483.45,
- "end": 483.7,
- "text": "down"
- },
- {
- "id": 1254,
- "start": 483.7,
- "end": 484.98,
- "text": "faster,"
- },
- {
- "id": 1255,
- "start": 484.98,
- "end": 485.21,
- "text": "which"
- },
- {
- "id": 1256,
- "start": 485.21,
- "end": 485.45,
- "text": "means"
- },
- {
- "id": 1257,
- "start": 485.45,
- "end": 485.55,
- "text": "we"
- },
- {
- "id": 1258,
- "start": 485.55,
- "end": 485.68,
- "text": "can"
- },
- {
- "id": 1259,
- "start": 485.68,
- "end": 485.89,
- "text": "get"
- },
- {
- "id": 1260,
- "start": 485.89,
- "end": 486.02,
- "text": "to"
- },
- {
- "id": 1261,
- "start": 486.02,
- "end": 486.42,
- "text": "it"
- },
- {
- "id": 1262,
- "start": 486.42,
- "end": 486.79,
- "text": "before"
- },
- {
- "id": 1263,
- "start": 486.79,
- "end": 487.07,
- "text": "anyone"
- },
- {
- "id": 1264,
- "start": 487.07,
- "end": 487.43,
- "text": "reports"
- },
- {
- "id": 1265,
- "start": 487.43,
- "end": 487.97,
- "text": "it"
- },
- {
- "id": 1266,
- "start": 487.97,
- "end": 488.12,
- "text": "or"
- },
- {
- "id": 1267,
- "start": 488.12,
- "end": 488.4,
- "text": "even"
- },
- {
- "id": 1268,
- "start": 488.4,
- "end": 489.43,
- "text": "before"
- },
- {
- "id": 1269,
- "start": 489.43,
- "end": 489.78,
- "text": "anyone"
- },
- {
- "id": 1270,
- "start": 489.78,
- "end": 490.07,
- "text": "sees"
- },
- {
- "id": 1271,
- "start": 490.17,
- "end": 490.4,
- "text": "it,"
- },
- {
- "id": 1272,
- "start": 490.56,
- "end": 490.73,
- "text": "and"
- },
- {
- "id": 1273,
- "start": 490.73,
- "end": 490.82,
- "text": "we"
- },
- {
- "id": 1274,
- "start": 490.82,
- "end": 490.97,
- "text": "can"
- },
- {
- "id": 1275,
- "start": 490.97,
- "end": 491.25,
- "text": "take"
- },
- {
- "id": 1276,
- "start": 491.25,
- "end": 491.5,
- "text": "down"
- },
- {
- "id": 1277,
- "start": 491.575,
- "end": 491.845,
- "text": "more"
- },
- {
- "id": 1278,
- "start": 491.9,
- "end": 492.19,
- "text": "bad"
- },
- {
- "id": 1279,
- "start": 492.19,
- "end": 493.63,
- "text": "content."
- },
- {
- "id": 1280,
- "start": 492.79,
- "end": 493.75,
- "text": "You"
- },
- {
- "id": 1281,
- "start": 493.4800000000001,
- "end": 494.01,
- "text": "used"
- },
- {
- "id": 1282,
- "start": 494.17,
- "end": 494.27,
- "text": "the"
- },
- {
- "id": 1283,
- "start": 494.27,
- "end": 494.5,
- "text": "word"
- },
- {
- "id": 1284,
- "start": 494.5,
- "end": 495,
- "text": "“slow,”"
- },
- {
- "id": 1285,
- "start": 495,
- "end": 495.13,
- "text": "that"
- },
- {
- "id": 1286,
- "start": 495.13,
- "end": 495.2,
- "text": "it"
- },
- {
- "id": 1287,
- "start": 495.2,
- "end": 495.35,
- "text": "was"
- },
- {
- "id": 1288,
- "start": 495.35,
- "end": 495.42,
- "text": "a"
- },
- {
- "id": 1289,
- "start": 495.42,
- "end": 495.77,
- "text": "slow"
- },
- {
- "id": 1290,
- "start": 495.77,
- "end": 496.28,
- "text": "response"
- },
- {
- "id": 1291,
- "start": 496.28,
- "end": 496.42,
- "text": "by"
- },
- {
- "id": 1292,
- "start": 496.42,
- "end": 496.9,
- "text": "Facebook"
- },
- {
- "id": 1293,
- "start": 496.9,
- "end": 497.02,
- "text": "to"
- },
- {
- "id": 1294,
- "start": 497.02,
- "end": 497.25,
- "text": "this."
- },
- {
- "id": 1295,
- "start": 497.25,
- "end": 498.38,
- "text": "But"
- },
- {
- "id": 1296,
- "start": 498.38,
- "end": 498.64,
- "text": "we’ve"
- },
- {
- "id": 1297,
- "start": 498.64,
- "end": 499.03,
- "text": "spoken"
- },
- {
- "id": 1298,
- "start": 499.03,
- "end": 499.15,
- "text": "to"
- },
- {
- "id": 1299,
- "start": 499.15,
- "end": 499.48,
- "text": "people"
- },
- {
- "id": 1300,
- "start": 499.48,
- "end": 499.89,
- "text": "that,"
- },
- {
- "id": 1301,
- "start": 499.89,
- "end": 500.12,
- "text": "as"
- },
- {
- "id": 1302,
- "start": 500.12,
- "end": 500.36,
- "text": "early"
- },
- {
- "id": 1303,
- "start": 500.36,
- "end": 500.45,
- "text": "as"
- },
- {
- "id": 1304,
- "start": 501.11,
- "end": 501.31500000000005,
- "text": "2015,"
- },
- {
- "id": 1305,
- "start": 501.86,
- "end": 502.18,
- "text": "had"
- },
- {
- "id": 1306,
- "start": 502.18,
- "end": 502.68,
- "text": "spoken"
- },
- {
- "id": 1307,
- "start": 502.68,
- "end": 502.79,
- "text": "to"
- },
- {
- "id": 1308,
- "start": 502.79,
- "end": 503.36,
- "text": "Facebook"
- },
- {
- "id": 1309,
- "start": 503.36,
- "end": 503.86,
- "text": "about"
- },
- {
- "id": 1310,
- "start": 503.86,
- "end": 503.98,
- "text": "the"
- },
- {
- "id": 1311,
- "start": 503.98,
- "end": 504.48,
- "text": "potential"
- },
- {
- "id": 1312,
- "start": 504.48,
- "end": 505.31,
- "text": "for"
- },
- {
- "id": 1313,
- "start": 505.31,
- "end": 505.98,
- "text": "a"
- },
- {
- "id": 1314,
- "start": 505.98,
- "end": 506.8,
- "text": "genocide,"
- },
- {
- "id": 1315,
- "start": 506.5633333333334,
- "end": 507.43666666666667,
- "text": "a"
- },
- {
- "id": 1316,
- "start": 507.14666666666676,
- "end": 508.0733333333333,
- "text": "Rwanda-type"
- },
- {
- "id": 1317,
- "start": 507.73,
- "end": 508.71,
- "text": "situation"
- },
- {
- "id": 1318,
- "start": 508.71,
- "end": 509.11,
- "text": "in"
- },
- {
- "id": 1319,
- "start": 509.11,
- "end": 511.28,
- "text": "Myanmar."
- },
- {
- "id": 1320,
- "start": 511.28,
- "end": 511.57,
- "text": "Be"
- },
- {
- "id": 1321,
- "start": 511.57,
- "end": 511.82,
- "text": "more"
- },
- {
- "id": 1322,
- "start": 511.82,
- "end": 512.31,
- "text": "explicit,"
- },
- {
- "id": 1323,
- "start": 512.31,
- "end": 512.45,
- "text": "if"
- },
- {
- "id": 1324,
- "start": 512.45,
- "end": 512.55,
- "text": "you"
- },
- {
- "id": 1325,
- "start": 512.55,
- "end": 512.81,
- "text": "could,"
- },
- {
- "id": 1326,
- "start": 512.81,
- "end": 513.11,
- "text": "about"
- },
- {
- "id": 1327,
- "start": 513.11,
- "end": 513.42,
- "text": "what"
- },
- {
- "id": 1328,
- "start": 513.42,
- "end": 513.74,
- "text": "“slow”"
- },
- {
- "id": 1329,
- "start": 513.74,
- "end": 514.16,
- "text": "means"
- },
- {
- "id": 1330,
- "start": 514.16,
- "end": 514.29,
- "text": "to"
- },
- {
- "id": 1331,
- "start": 514.29,
- "end": 514.58,
- "text": "you."
- },
- {
- "id": 1332,
- "start": 514.58,
- "end": 515,
- "text": "What"
- },
- {
- "id": 1333,
- "start": 515,
- "end": 515.12,
- "text": "did"
- },
- {
- "id": 1334,
- "start": 515.12,
- "end": 515.35,
- "text": "that"
- },
- {
- "id": 1335,
- "start": 515.35,
- "end": 516.1,
- "text": "mean"
- },
- {
- "id": 1336,
- "start": 516.1,
- "end": 516.23,
- "text": "in"
- },
- {
- "id": 1337,
- "start": 516.23,
- "end": 516.5,
- "text": "terms"
- },
- {
- "id": 1338,
- "start": 516.5,
- "end": 516.62,
- "text": "of"
- },
- {
- "id": 1339,
- "start": 516.62,
- "end": 517.19,
- "text": "responding"
- },
- {
- "id": 1340,
- "start": 517.19,
- "end": 517.41,
- "text": "to"
- },
- {
- "id": 1341,
- "start": 517.41,
- "end": 517.75,
- "text": "the"
- },
- {
- "id": 1342,
- "start": 517.75,
- "end": 518.07,
- "text": "issue"
- },
- {
- "id": 1343,
- "start": 518.07,
- "end": 518.17,
- "text": "of"
- },
- {
- "id": 1344,
- "start": 518.17,
- "end": 518.39,
- "text": "hate"
- },
- {
- "id": 1345,
- "start": 518.39,
- "end": 518.82,
- "text": "speech"
- },
- {
- "id": 1346,
- "start": 518.82,
- "end": 520.48,
- "text": "there?"
- },
- {
- "id": 1347,
- "start": 520.48,
- "end": 520.6,
- "text": "I"
- },
- {
- "id": 1348,
- "start": 520.6,
- "end": 521.68,
- "text": "think"
- },
- {
- "id": 1349,
- "start": 521.68,
- "end": 522.11,
- "text": "the"
- },
- {
- "id": 1350,
- "start": 522.1,
- "end": 523.11,
- "text": "situation"
- },
- {
- "id": 1351,
- "start": 522.715,
- "end": 523.27,
- "text": "and"
- },
- {
- "id": 1352,
- "start": 523.33,
- "end": 523.43,
- "text": "the"
- },
- {
- "id": 1353,
- "start": 523.43,
- "end": 524.03,
- "text": "violence"
- },
- {
- "id": 1354,
- "start": 524.03,
- "end": 524.2,
- "text": "in"
- },
- {
- "id": 1355,
- "start": 524.2,
- "end": 525.09,
- "text": "Myanmar"
- },
- {
- "id": 1356,
- "start": 524.82,
- "end": 525.56,
- "text": "is"
- },
- {
- "id": 1357,
- "start": 525.805,
- "end": 526.5699999999999,
- "text": "horrifying."
- },
- {
- "id": 1358,
- "start": 526.79,
- "end": 527.58,
- "text": "And"
- },
- {
- "id": 1359,
- "start": 527.58,
- "end": 528.37,
- "text": "across"
- },
- {
- "id": 1360,
- "start": 528.37,
- "end": 528.5,
- "text": "the"
- },
- {
- "id": 1361,
- "start": 528.5,
- "end": 528.79,
- "text": "safety"
- },
- {
- "id": 1362,
- "start": 528.79,
- "end": 528.88,
- "text": "and"
- },
- {
- "id": 1363,
- "start": 528.88,
- "end": 529.29,
- "text": "security"
- },
- {
- "id": 1364,
- "start": 529.29,
- "end": 529.79,
- "text": "work,"
- },
- {
- "id": 1365,
- "start": 529.508,
- "end": 529.9859999999999,
- "text": "[Facebook"
- },
- {
- "id": 1366,
- "start": 529.726,
- "end": 530.182,
- "text": "founder"
- },
- {
- "id": 1367,
- "start": 529.944,
- "end": 530.3779999999999,
- "text": "and"
- },
- {
- "id": 1368,
- "start": 530.162,
- "end": 530.574,
- "text": "CEO]"
- },
- {
- "id": 1369,
- "start": 530.38,
- "end": 530.77,
- "text": "Mark"
- },
- {
- "id": 1370,
- "start": 530.575,
- "end": 530.835,
- "text": "[Zuckerberg]"
- },
- {
- "id": 1371,
- "start": 530.77,
- "end": 530.9,
- "text": "has"
- },
- {
- "id": 1372,
- "start": 531.035,
- "end": 531.245,
- "text": "said"
- },
- {
- "id": 1373,
- "start": 531.3,
- "end": 531.59,
- "text": "we"
- },
- {
- "id": 1374,
- "start": 531.59,
- "end": 531.96,
- "text": "didn’t"
- },
- {
- "id": 1375,
- "start": 531.96,
- "end": 532.37,
- "text": "invest"
- },
- {
- "id": 1376,
- "start": 532.37,
- "end": 533.68,
- "text": "enough"
- },
- {
- "id": 1377,
- "start": 533.68,
- "end": 534.88,
- "text": "and"
- },
- {
- "id": 1378,
- "start": 534.88,
- "end": 535.13,
- "text": "we’re"
- },
- {
- "id": 1379,
- "start": 535.13,
- "end": 535.5,
- "text": "changing"
- },
- {
- "id": 1380,
- "start": 535.5,
- "end": 537.88,
- "text": "that."
- },
- {
- "id": 1381,
- "start": 537.88,
- "end": 538.08,
- "text": "We"
- },
- {
- "id": 1382,
- "start": 538.08,
- "end": 538.43,
- "text": "believe"
- },
- {
- "id": 1383,
- "start": 538.43,
- "end": 538.96,
- "text": "Facebook"
- },
- {
- "id": 1384,
- "start": 538.6949999999999,
- "end": 539.0150000000001,
- "text": "–"
- },
- {
- "id": 1385,
- "start": 538.96,
- "end": 539.07,
- "text": "and"
- },
- {
- "id": 1386,
- "start": 539.07,
- "end": 539.12,
- "text": "I"
- },
- {
- "id": 1387,
- "start": 539.12,
- "end": 539.59,
- "text": "firmly"
- },
- {
- "id": 1388,
- "start": 539.59,
- "end": 539.96,
- "text": "believe"
- },
- {
- "id": 1389,
- "start": 539.7750000000001,
- "end": 540.24,
- "text": "–"
- },
- {
- "id": 1390,
- "start": 539.96,
- "end": 540.52,
- "text": "Facebook"
- },
- {
- "id": 1391,
- "start": 540.52,
- "end": 540.97,
- "text": "has"
- },
- {
- "id": 1392,
- "start": 540.97,
- "end": 541.06,
- "text": "a"
- },
- {
- "id": 1393,
- "start": 541.06,
- "end": 541.23,
- "text": "lot"
- },
- {
- "id": 1394,
- "start": 541.23,
- "end": 541.38,
- "text": "of"
- },
- {
- "id": 1395,
- "start": 541.38,
- "end": 541.95,
- "text": "good"
- },
- {
- "id": 1396,
- "start": 541.95,
- "end": 542.09,
- "text": "that"
- },
- {
- "id": 1397,
- "start": 542.09,
- "end": 542.18,
- "text": "it"
- },
- {
- "id": 1398,
- "start": 542.18,
- "end": 542.46,
- "text": "brings"
- },
- {
- "id": 1399,
- "start": 542.46,
- "end": 542.68,
- "text": "into"
- },
- {
- "id": 1400,
- "start": 542.68,
- "end": 542.78,
- "text": "the"
- },
- {
- "id": 1401,
- "start": 542.78,
- "end": 543.21,
- "text": "world."
- },
- {
- "id": 1402,
- "start": 543.21,
- "end": 543.42,
- "text": "But"
- },
- {
- "id": 1403,
- "start": 543.42,
- "end": 543.58,
- "text": "there"
- },
- {
- "id": 1404,
- "start": 543.58,
- "end": 543.71,
- "text": "is"
- },
- {
- "id": 1405,
- "start": 543.71,
- "end": 544,
- "text": "also"
- },
- {
- "id": 1406,
- "start": 544,
- "end": 544.79,
- "text": "abuse"
- },
- {
- "id": 1407,
- "start": 544.79,
- "end": 544.9,
- "text": "and"
- },
- {
- "id": 1408,
- "start": 544.9,
- "end": 544.99,
- "text": "there"
- },
- {
- "id": 1409,
- "start": 544.99,
- "end": 545.09,
- "text": "is"
- },
- {
- "id": 1410,
- "start": 545.09,
- "end": 545.37,
- "text": "also"
- },
- {
- "id": 1411,
- "start": 545.37,
- "end": 545.55,
- "text": "bad"
- },
- {
- "id": 1412,
- "start": 545.55,
- "end": 546.34,
- "text": "content,"
- },
- {
- "id": 1413,
- "start": 546.34,
- "end": 546.63,
- "text": "and"
- },
- {
- "id": 1414,
- "start": 546.63,
- "end": 546.77,
- "text": "it"
- },
- {
- "id": 1415,
- "start": 546.77,
- "end": 546.94,
- "text": "is"
- },
- {
- "id": 1416,
- "start": 546.94,
- "end": 547.13,
- "text": "our"
- },
- {
- "id": 1417,
- "start": 547.13,
- "end": 548.58,
- "text": "responsibility"
- },
- {
- "id": 1418,
- "start": 548.11,
- "end": 549.05,
- "text": "to"
- },
- {
- "id": 1419,
- "start": 548.89,
- "end": 549.4499999999999,
- "text": "minimize"
- },
- {
- "id": 1420,
- "start": 549.67,
- "end": 549.85,
- "text": "that"
- },
- {
- "id": 1421,
- "start": 549.85,
- "end": 550.78,
- "text": "bad"
- },
- {
- "id": 1422,
- "start": 550.78,
- "end": 550.97,
- "text": "and"
- },
- {
- "id": 1423,
- "start": 550.97,
- "end": 551.06,
- "text": "to"
- },
- {
- "id": 1424,
- "start": 551.4975000000001,
- "end": 551.6775,
- "text": "maximize"
- },
- {
- "id": 1425,
- "start": 552.0250000000001,
- "end": 552.2950000000001,
- "text": "the"
- },
- {
- "id": 1426,
- "start": 552.5525000000001,
- "end": 552.9125,
- "text": "good."
- },
- {
- "id": 1427,
- "start": 553.08,
- "end": 553.53,
- "text": "And"
- },
- {
- "id": 1428,
- "start": 553.53,
- "end": 554.43,
- "text": "we’re"
- },
- {
- "id": 1429,
- "start": 554.43,
- "end": 555.98,
- "text": "investing."
- },
- {
- "id": 1430,
- "start": 555.98,
- "end": 556.17,
- "text": "We’re"
- },
- {
- "id": 1431,
- "start": 556.17,
- "end": 556.42,
- "text": "going"
- },
- {
- "id": 1432,
- "start": 556.42,
- "end": 556.64,
- "text": "this"
- },
- {
- "id": 1433,
- "start": 556.64,
- "end": 556.89,
- "text": "year"
- },
- {
- "id": 1434,
- "start": 556.89,
- "end": 557.15,
- "text": "from"
- },
- {
- "id": 1435,
- "start": 557.3014285714286,
- "end": 557.6128571428571,
- "text": "10,000"
- },
- {
- "id": 1436,
- "start": 557.7128571428572,
- "end": 558.0757142857143,
- "text": "to"
- },
- {
- "id": 1437,
- "start": 558.1242857142856,
- "end": 558.5385714285713,
- "text": "20,000"
- },
- {
- "id": 1438,
- "start": 558.5357142857142,
- "end": 559.0014285714285,
- "text": "people"
- },
- {
- "id": 1439,
- "start": 558.9471428571428,
- "end": 559.4642857142857,
- "text": "that"
- },
- {
- "id": 1440,
- "start": 559.3585714285714,
- "end": 559.9271428571428,
- "text": "are"
- },
- {
- "id": 1441,
- "start": 559.77,
- "end": 560.39,
- "text": "working"
- },
- {
- "id": 1442,
- "start": 560.39,
- "end": 560.86,
- "text": "on"
- },
- {
- "id": 1443,
- "start": 560.86,
- "end": 561.26,
- "text": "safety"
- },
- {
- "id": 1444,
- "start": 561.26,
- "end": 561.38,
- "text": "and"
- },
- {
- "id": 1445,
- "start": 561.38,
- "end": 562.86,
- "text": "security."
- },
- {
- "id": 1446,
- "start": 562.86,
- "end": 563.01,
- "text": "It"
- },
- {
- "id": 1447,
- "start": 563.01,
- "end": 563.18,
- "text": "is"
- },
- {
- "id": 1448,
- "start": 563.18,
- "end": 563.99,
- "text": "a"
- },
- {
- "id": 1449,
- "start": 563.99,
- "end": 564.64,
- "text": "huge"
- },
- {
- "id": 1450,
- "start": 564.64,
- "end": 565.68,
- "text": "philosophical"
- },
- {
- "id": 1451,
- "start": 565.68,
- "end": 566.09,
- "text": "shift"
- },
- {
- "id": 1452,
- "start": 566.09,
- "end": 566.23,
- "text": "for"
- },
- {
- "id": 1453,
- "start": 566.23,
- "end": 566.96,
- "text": "us."
- },
- {
- "id": 1454,
- "start": 566.96,
- "end": 567.28,
- "text": "People"
- },
- {
- "id": 1455,
- "start": 567.28,
- "end": 567.53,
- "text": "talk"
- },
- {
- "id": 1456,
- "start": 567.53,
- "end": 567.87,
- "text": "about"
- },
- {
- "id": 1457,
- "start": 567.87,
- "end": 568.21,
- "text": "the"
- },
- {
- "id": 1458,
- "start": 568.2,
- "end": 568.54,
- "text": "shift"
- },
- {
- "id": 1459,
- "start": 568.4000000000001,
- "end": 568.8599999999999,
- "text": "to"
- },
- {
- "id": 1460,
- "start": 568.6,
- "end": 569.18,
- "text": "mobile"
- },
- {
- "id": 1461,
- "start": 569.18,
- "end": 569.35,
- "text": "that"
- },
- {
- "id": 1462,
- "start": 569.35,
- "end": 569.42,
- "text": "the"
- },
- {
- "id": 1463,
- "start": 569.42,
- "end": 570.3,
- "text": "company"
- },
- {
- "id": 1464,
- "start": 570.3,
- "end": 571.23,
- "text": "underwent"
- },
- {
- "id": 1465,
- "start": 571.23,
- "end": 571.66,
- "text": "five"
- },
- {
- "id": 1466,
- "start": 571.66,
- "end": 571.75,
- "text": "or"
- },
- {
- "id": 1467,
- "start": 571.75,
- "end": 572.01,
- "text": "six"
- },
- {
- "id": 1468,
- "start": 572.01,
- "end": 572.2,
- "text": "years"
- },
- {
- "id": 1469,
- "start": 572.2,
- "end": 573.13,
- "text": "ago,"
- },
- {
- "id": 1470,
- "start": 573.13,
- "end": 573.38,
- "text": "which"
- },
- {
- "id": 1471,
- "start": 573.38,
- "end": 573.62,
- "text": "really"
- },
- {
- "id": 1472,
- "start": 573.62,
- "end": 574.19,
- "text": "changed"
- },
- {
- "id": 1473,
- "start": 574.19,
- "end": 574.4,
- "text": "how"
- },
- {
- "id": 1474,
- "start": 574.4,
- "end": 574.5,
- "text": "the"
- },
- {
- "id": 1475,
- "start": 574.5,
- "end": 574.86,
- "text": "company"
- },
- {
- "id": 1476,
- "start": 574.86,
- "end": 576.03,
- "text": "operates."
- },
- {
- "id": 1477,
- "start": 576.03,
- "end": 576.3,
- "text": "This"
- },
- {
- "id": 1478,
- "start": 576.3,
- "end": 576.48,
- "text": "is"
- },
- {
- "id": 1479,
- "start": 576.48,
- "end": 576.57,
- "text": "a"
- },
- {
- "id": 1480,
- "start": 576.57,
- "end": 577.14,
- "text": "shift"
- },
- {
- "id": 1481,
- "start": 577.14,
- "end": 577.94,
- "text": "of"
- },
- {
- "id": 1482,
- "start": 577.94,
- "end": 578.08,
- "text": "a"
- },
- {
- "id": 1483,
- "start": 578.08,
- "end": 578.44,
- "text": "greater"
- },
- {
- "id": 1484,
- "start": 578.44,
- "end": 578.97,
- "text": "magnitude"
- },
- {
- "id": 1485,
- "start": 579.0350000000001,
- "end": 579.39,
- "text": "even."
- },
- {
- "id": 1486,
- "start": 579.63,
- "end": 579.81,
- "text": "And"
- },
- {
- "id": 1487,
- "start": 579.81,
- "end": 579.9,
- "text": "it"
- },
- {
- "id": 1488,
- "start": 579.9,
- "end": 580.05,
- "text": "is"
- },
- {
- "id": 1489,
- "start": 580.05,
- "end": 580.99,
- "text": "harder"
- },
- {
- "id": 1490,
- "start": 580.99,
- "end": 581.14,
- "text": "and"
- },
- {
- "id": 1491,
- "start": 581.14,
- "end": 581.29,
- "text": "more"
- },
- {
- "id": 1492,
- "start": 581.29,
- "end": 581.88,
- "text": "challenging"
- },
- {
- "id": 1493,
- "start": 581.88,
- "end": 582.23,
- "text": "because"
- },
- {
- "id": 1494,
- "start": 582.23,
- "end": 582.43,
- "text": "there"
- },
- {
- "id": 1495,
- "start": 582.43,
- "end": 582.67,
- "text": "are"
- },
- {
- "id": 1496,
- "start": 582.67,
- "end": 583.34,
- "text": "adversaries"
- },
- {
- "id": 1497,
- "start": 583.34,
- "end": 583.44,
- "text": "on"
- },
- {
- "id": 1498,
- "start": 583.44,
- "end": 583.56,
- "text": "the"
- },
- {
- "id": 1499,
- "start": 583.56,
- "end": 583.74,
- "text": "other"
- },
- {
- "id": 1500,
- "start": 583.74,
- "end": 584.37,
- "text": "side"
- },
- {
- "id": 1501,
- "start": 584.37,
- "end": 584.62,
- "text": "who"
- },
- {
- "id": 1502,
- "start": 584.62,
- "end": 584.76,
- "text": "will"
- },
- {
- "id": 1503,
- "start": 584.76,
- "end": 584.96,
- "text": "try"
- },
- {
- "id": 1504,
- "start": 584.96,
- "end": 585.05,
- "text": "to"
- },
- {
- "id": 1505,
- "start": 585.05,
- "end": 585.82,
- "text": "evade"
- },
- {
- "id": 1506,
- "start": 585.82,
- "end": 586,
- "text": "and"
- },
- {
- "id": 1507,
- "start": 586,
- "end": 586.16,
- "text": "try"
- },
- {
- "id": 1508,
- "start": 586.16,
- "end": 586.24,
- "text": "to"
- },
- {
- "id": 1509,
- "start": 586.24,
- "end": 586.75,
- "text": "exploit"
- },
- {
- "id": 1510,
- "start": 586.75,
- "end": 586.91,
- "text": "our"
- },
- {
- "id": 1511,
- "start": 586.91,
- "end": 588.38,
- "text": "systems."
- },
- {
- "id": 1512,
- "start": 588.38,
- "end": 588.56,
- "text": "And"
- },
- {
- "id": 1513,
- "start": 588.56,
- "end": 588.7,
- "text": "there"
- },
- {
- "id": 1514,
- "start": 588.7,
- "end": 588.83,
- "text": "will"
- },
- {
- "id": 1515,
- "start": 588.83,
- "end": 588.95,
- "text": "be"
- },
- {
- "id": 1516,
- "start": 588.95,
- "end": 589.09,
- "text": "new"
- },
- {
- "id": 1517,
- "start": 589.09,
- "end": 589.62,
- "text": "challenges"
- },
- {
- "id": 1518,
- "start": 589.62,
- "end": 589.74,
- "text": "all"
- },
- {
- "id": 1519,
- "start": 589.74,
- "end": 589.83,
- "text": "the"
- },
- {
- "id": 1520,
- "start": 589.83,
- "end": 590.73,
- "text": "time."
- },
- {
- "id": 1521,
- "start": 590.73,
- "end": 590.89,
- "text": "But"
- },
- {
- "id": 1522,
- "start": 590.89,
- "end": 590.99,
- "text": "it"
- },
- {
- "id": 1523,
- "start": 590.99,
- "end": 591.21,
- "text": "is"
- },
- {
- "id": 1524,
- "start": 591.21,
- "end": 591.96,
- "text": "our"
- },
- {
- "id": 1525,
- "start": 591.96,
- "end": 592.93,
- "text": "responsibility."
- },
- {
- "id": 1526,
- "start": 592.93,
- "end": 593.05,
- "text": "It’s"
- },
- {
- "id": 1527,
- "start": 593.05,
- "end": 593.19,
- "text": "our"
- },
- {
- "id": 1528,
- "start": 593.385,
- "end": 593.5350000000001,
- "text": "job,"
- },
- {
- "id": 1529,
- "start": 593.72,
- "end": 593.88,
- "text": "it’s"
- },
- {
- "id": 1530,
- "start": 593.88,
- "end": 594.28,
- "text": "literally"
- },
- {
- "id": 1531,
- "start": 594.28,
- "end": 594.47,
- "text": "my"
- },
- {
- "id": 1532,
- "start": 594.47,
- "end": 595.16,
- "text": "job,"
- },
- {
- "id": 1533,
- "start": 595.16,
- "end": 595.28,
- "text": "to"
- },
- {
- "id": 1534,
- "start": 595.28,
- "end": 595.38,
- "text": "be"
- },
- {
- "id": 1535,
- "start": 595.38,
- "end": 596.58,
- "text": "proactive"
- },
- {
- "id": 1536,
- "start": 596.58,
- "end": 596.74,
- "text": "and"
- },
- {
- "id": 1537,
- "start": 596.74,
- "end": 596.87,
- "text": "get"
- },
- {
- "id": 1538,
- "start": 596.87,
- "end": 597.07,
- "text": "ahead"
- },
- {
- "id": 1539,
- "start": 597.07,
- "end": 597.16,
- "text": "of"
- },
- {
- "id": 1540,
- "start": 597.16,
- "end": 598.7,
- "text": "it."
- },
- {
- "id": 1541,
- "start": 598.7,
- "end": 598.96,
- "text": "There’s"
- },
- {
- "id": 1542,
- "start": 598.96,
- "end": 599.03,
- "text": "a"
- },
- {
- "id": 1543,
- "start": 599.03,
- "end": 599.68,
- "text": "situation"
- },
- {
- "id": 1544,
- "start": 599.68,
- "end": 599.79,
- "text": "in"
- },
- {
- "id": 1545,
- "start": 599.79,
- "end": 599.87,
- "text": "the"
- },
- {
- "id": 1546,
- "start": 599.87,
- "end": 600.49,
- "text": "Philippines,"
- },
- {
- "id": 1547,
- "start": 600.49,
- "end": 600.65,
- "text": "for"
- },
- {
- "id": 1548,
- "start": 600.65,
- "end": 601.12,
- "text": "instance,"
- },
- {
- "id": 1549,
- "start": 601.12,
- "end": 602.185,
- "text": "where"
- },
- {
- "id": 1550,
- "start": 601.52,
- "end": 602.825,
- "text": "President"
- },
- {
- "id": 1551,
- "start": 602.1725,
- "end": 603.3000000000001,
- "text": "[Rodrigo]"
- },
- {
- "id": 1552,
- "start": 602.825,
- "end": 603.775,
- "text": "Duterte"
- },
- {
- "id": 1553,
- "start": 603.775,
- "end": 604.245,
- "text": "has"
- },
- {
- "id": 1554,
- "start": 604.245,
- "end": 605.925,
- "text": "been"
- },
- {
- "id": 1555,
- "start": 605.925,
- "end": 606.495,
- "text": "attacking"
- },
- {
- "id": 1556,
- "start": 606.495,
- "end": 607.205,
- "text": "critics,"
- },
- {
- "id": 1557,
- "start": 608.02,
- "end": 608.5450000000001,
- "text": "mobilizing"
- },
- {
- "id": 1558,
- "start": 609.545,
- "end": 609.885,
- "text": "large"
- },
- {
- "id": 1559,
- "start": 609.885,
- "end": 610.265,
- "text": "amounts"
- },
- {
- "id": 1560,
- "start": 610.265,
- "end": 610.375,
- "text": "of"
- },
- {
- "id": 1561,
- "start": 610.375,
- "end": 611.325,
- "text": "people"
- },
- {
- "id": 1562,
- "start": 611.325,
- "end": 611.725,
- "text": "on"
- },
- {
- "id": 1563,
- "start": 611.725,
- "end": 612.665,
- "text": "Facebook"
- },
- {
- "id": 1564,
- "start": 612.665,
- "end": 613.405,
- "text": "to"
- },
- {
- "id": 1565,
- "start": 613.405,
- "end": 613.825,
- "text": "attack"
- },
- {
- "id": 1566,
- "start": 613.825,
- "end": 614.255,
- "text": "critics"
- },
- {
- "id": 1567,
- "start": 614.255,
- "end": 614.365,
- "text": "of"
- },
- {
- "id": 1568,
- "start": 614.365,
- "end": 614.885,
- "text": "his"
- },
- {
- "id": 1569,
- "start": 615.315,
- "end": 615.815,
- "text": "and"
- },
- {
- "id": 1570,
- "start": 616.265,
- "end": 616.745,
- "text": "to"
- },
- {
- "id": 1571,
- "start": 616.745,
- "end": 617.515,
- "text": "basically"
- },
- {
- "id": 1572,
- "start": 617.515,
- "end": 617.875,
- "text": "threaten"
- },
- {
- "id": 1573,
- "start": 617.875,
- "end": 618.735,
- "text": "people."
- },
- {
- "id": 1574,
- "start": 618.735,
- "end": 619.545,
- "text": "And"
- },
- {
- "id": 1575,
- "start": 619.305,
- "end": 619.805,
- "text": "it’s"
- },
- {
- "id": 1576,
- "start": 620.0375,
- "end": 620.5075,
- "text": "organic"
- },
- {
- "id": 1577,
- "start": 620.7700000000001,
- "end": 621.2100000000002,
- "text": "to"
- },
- {
- "id": 1578,
- "start": 621.5025000000002,
- "end": 621.9125,
- "text": "Facebook."
- },
- {
- "id": 1579,
- "start": 622.235,
- "end": 622.615,
- "text": "There’s"
- },
- {
- "id": 1580,
- "start": 622.615,
- "end": 622.835,
- "text": "hate"
- },
- {
- "id": 1581,
- "start": 622.935,
- "end": 623.1400000000001,
- "text": "speech,"
- },
- {
- "id": 1582,
- "start": 623.255,
- "end": 623.445,
- "text": "there’s"
- },
- {
- "id": 1583,
- "start": 623.5799999999999,
- "end": 623.7750000000001,
- "text": "memes,"
- },
- {
- "id": 1584,
- "start": 623.905,
- "end": 624.105,
- "text": "there’s"
- },
- {
- "id": 1585,
- "start": 624.105,
- "end": 624.225,
- "text": "all"
- },
- {
- "id": 1586,
- "start": 624.225,
- "end": 624.475,
- "text": "sorts"
- },
- {
- "id": 1587,
- "start": 624.475,
- "end": 624.575,
- "text": "of"
- },
- {
- "id": 1588,
- "start": 624.575,
- "end": 625.125,
- "text": "things."
- },
- {
- "id": 1589,
- "start": 625.125,
- "end": 627.975,
- "text": "What"
- },
- {
- "id": 1590,
- "start": 627.975,
- "end": 628.035,
- "text": "are"
- },
- {
- "id": 1591,
- "start": 628.035,
- "end": 628.145,
- "text": "you"
- },
- {
- "id": 1592,
- "start": 628.145,
- "end": 628.565,
- "text": "doing"
- },
- {
- "id": 1593,
- "start": 628.5699999999999,
- "end": 629.065,
- "text": "to"
- },
- {
- "id": 1594,
- "start": 628.995,
- "end": 629.565,
- "text": "correct"
- },
- {
- "id": 1595,
- "start": 629.565,
- "end": 629.785,
- "text": "that"
- },
- {
- "id": 1596,
- "start": 629.785,
- "end": 630.435,
- "text": "issue"
- },
- {
- "id": 1597,
- "start": 630.435,
- "end": 630.795,
- "text": "in"
- },
- {
- "id": 1598,
- "start": 630.795,
- "end": 630.875,
- "text": "the"
- },
- {
- "id": 1599,
- "start": 630.875,
- "end": 631.965,
- "text": "Philippines?"
- },
- {
- "id": 1600,
- "start": 631.965,
- "end": 632.155,
- "text": "In"
- },
- {
- "id": 1601,
- "start": 632.155,
- "end": 632.245,
- "text": "the"
- },
- {
- "id": 1602,
- "start": 632.245,
- "end": 632.885,
- "text": "Philippines,"
- },
- {
- "id": 1603,
- "start": 632.885,
- "end": 633.055,
- "text": "we"
- },
- {
- "id": 1604,
- "start": 633.055,
- "end": 633.195,
- "text": "need"
- },
- {
- "id": 1605,
- "start": 633.195,
- "end": 633.285,
- "text": "to"
- },
- {
- "id": 1606,
- "start": 633.285,
- "end": 633.585,
- "text": "keep"
- },
- {
- "id": 1607,
- "start": 633.585,
- "end": 634.085,
- "text": "pushing"
- },
- {
- "id": 1608,
- "start": 634.085,
- "end": 634.695,
- "text": "on"
- },
- {
- "id": 1609,
- "start": 634.695,
- "end": 635.165,
- "text": "people"
- },
- {
- "id": 1610,
- "start": 635.165,
- "end": 635.285,
- "text": "and"
- },
- {
- "id": 1611,
- "start": 635.9183333333333,
- "end": 636.0583333333333,
- "text": "technology."
- },
- {
- "id": 1612,
- "start": 636.6716666666666,
- "end": 636.8316666666666,
- "text": "People—we"
- },
- {
- "id": 1613,
- "start": 637.425,
- "end": 637.605,
- "text": "have"
- },
- {
- "id": 1614,
- "start": 637.605,
- "end": 638.445,
- "text": "reviewers"
- },
- {
- "id": 1615,
- "start": 638.445,
- "end": 638.925,
- "text": "who"
- },
- {
- "id": 1616,
- "start": 638.925,
- "end": 639.465,
- "text": "understand"
- },
- {
- "id": 1617,
- "start": 639.465,
- "end": 639.545,
- "text": "the"
- },
- {
- "id": 1618,
- "start": 639.545,
- "end": 639.835,
- "text": "local"
- },
- {
- "id": 1619,
- "start": 639.835,
- "end": 640.425,
- "text": "context."
- },
- {
- "id": 1620,
- "start": 640.425,
- "end": 640.555,
- "text": "We"
- },
- {
- "id": 1621,
- "start": 640.555,
- "end": 641.215,
- "text": "have"
- },
- {
- "id": 1622,
- "start": 641.215,
- "end": 641.585,
- "text": "people"
- },
- {
- "id": 1623,
- "start": 641.585,
- "end": 641.765,
- "text": "on"
- },
- {
- "id": 1624,
- "start": 641.765,
- "end": 641.855,
- "text": "the"
- },
- {
- "id": 1625,
- "start": 641.855,
- "end": 642.325,
- "text": "ground"
- },
- {
- "id": 1626,
- "start": 642.325,
- "end": 642.545,
- "text": "who"
- },
- {
- "id": 1627,
- "start": 642.545,
- "end": 642.715,
- "text": "can"
- },
- {
- "id": 1628,
- "start": 642.715,
- "end": 643.045,
- "text": "work"
- },
- {
- "id": 1629,
- "start": 643.045,
- "end": 643.235,
- "text": "with"
- },
- {
- "id": 1630,
- "start": 643.235,
- "end": 644.005,
- "text": "NGOs"
- },
- {
- "id": 1631,
- "start": 644.005,
- "end": 644.175,
- "text": "and"
- },
- {
- "id": 1632,
- "start": 644.175,
- "end": 644.335,
- "text": "with"
- },
- {
- "id": 1633,
- "start": 644.335,
- "end": 644.865,
- "text": "journalists"
- },
- {
- "id": 1634,
- "start": 644.865,
- "end": 645.025,
- "text": "to"
- },
- {
- "id": 1635,
- "start": 645.025,
- "end": 645.315,
- "text": "better"
- },
- {
- "id": 1636,
- "start": 645.315,
- "end": 645.935,
- "text": "understand"
- },
- {
- "id": 1637,
- "start": 645.935,
- "end": 646.115,
- "text": "those"
- },
- {
- "id": 1638,
- "start": 646.2824999999999,
- "end": 646.5374999999999,
- "text": "experiences"
- },
- {
- "id": 1639,
- "start": 646.6299999999999,
- "end": 646.9599999999999,
- "text": "that"
- },
- {
- "id": 1640,
- "start": 646.9775,
- "end": 647.3824999999999,
- "text": "are"
- },
- {
- "id": 1641,
- "start": 647.325,
- "end": 647.805,
- "text": "happening"
- },
- {
- "id": 1642,
- "start": 647.805,
- "end": 647.975,
- "text": "through"
- },
- {
- "id": 1643,
- "start": 647.975,
- "end": 648.095,
- "text": "our"
- },
- {
- "id": 1644,
- "start": 648.2616666666668,
- "end": 648.3883333333333,
- "text": "platform"
- },
- {
- "id": 1645,
- "start": 648.5483333333334,
- "end": 648.6816666666666,
- "text": "so"
- },
- {
- "id": 1646,
- "start": 648.835,
- "end": 648.975,
- "text": "that"
- },
- {
- "id": 1647,
- "start": 648.975,
- "end": 649.075,
- "text": "we"
- },
- {
- "id": 1648,
- "start": 649.075,
- "end": 649.215,
- "text": "can"
- },
- {
- "id": 1649,
- "start": 649.215,
- "end": 650.005,
- "text": "build"
- },
- {
- "id": 1650,
- "start": 650.005,
- "end": 650.135,
- "text": "the"
- },
- {
- "id": 1651,
- "start": 650.135,
- "end": 650.345,
- "text": "right"
- },
- {
- "id": 1652,
- "start": 650.345,
- "end": 651.405,
- "text": "solutions"
- },
- {
- "id": 1653,
- "start": 651.405,
- "end": 651.605,
- "text": "and"
- },
- {
- "id": 1654,
- "start": 651.605,
- "end": 652.825,
- "text": "technologies,"
- },
- {
- "id": 1655,
- "start": 652.825,
- "end": 653.215,
- "text": "like"
- },
- {
- "id": 1656,
- "start": 653.215,
- "end": 654.085,
- "text": "proactively"
- },
- {
- "id": 1657,
- "start": 654.085,
- "end": 654.815,
- "text": "detecting"
- },
- {
- "id": 1658,
- "start": 654.815,
- "end": 655.055,
- "text": "fake"
- },
- {
- "id": 1659,
- "start": 655.055,
- "end": 655.515,
- "text": "accounts,"
- },
- {
- "id": 1660,
- "start": 655.515,
- "end": 656.115,
- "text": "proactively"
- },
- {
- "id": 1661,
- "start": 656.115,
- "end": 656.975,
- "text": "detecting"
- },
- {
- "id": 1662,
- "start": 656.975,
- "end": 657.335,
- "text": "hate"
- },
- {
- "id": 1663,
- "start": 657.335,
- "end": 658.175,
- "text": "speech,"
- },
- {
- "id": 1664,
- "start": 658.175,
- "end": 658.495,
- "text": "building"
- },
- {
- "id": 1665,
- "start": 658.495,
- "end": 658.905,
- "text": "tools"
- },
- {
- "id": 1666,
- "start": 658.905,
- "end": 659.055,
- "text": "for"
- },
- {
- "id": 1667,
- "start": 659.055,
- "end": 659.855,
- "text": "people"
- },
- {
- "id": 1668,
- "start": 659.855,
- "end": 660.025,
- "text": "to"
- },
- {
- "id": 1669,
- "start": 660.025,
- "end": 660.385,
- "text": "prevent"
- },
- {
- "id": 1670,
- "start": 660.385,
- "end": 661.375,
- "text": "harassment,"
- },
- {
- "id": 1671,
- "start": 661.375,
- "end": 662.085,
- "text": "and"
- },
- {
- "id": 1672,
- "start": 662.085,
- "end": 662.195,
- "text": "a"
- },
- {
- "id": 1673,
- "start": 662.195,
- "end": 662.535,
- "text": "lot"
- },
- {
- "id": 1674,
- "start": 662.535,
- "end": 662.825,
- "text": "of"
- },
- {
- "id": 1675,
- "start": 662.825,
- "end": 663.465,
- "text": "developments"
- },
- {
- "id": 1676,
- "start": 663.465,
- "end": 663.635,
- "text": "in"
- },
- {
- "id": 1677,
- "start": 663.635,
- "end": 664.075,
- "text": "our"
- },
- {
- "id": 1678,
- "start": 664.3600000000001,
- "end": 664.65,
- "text": "work"
- },
- {
- "id": 1679,
- "start": 665.085,
- "end": 665.225,
- "text": "on"
- },
- {
- "id": 1680,
- "start": 665.225,
- "end": 666.115,
- "text": "misinformation."
- },
- {
- "id": 1681,
- "start": 666.115,
- "end": 666.315,
- "text": "We"
- },
- {
- "id": 1682,
- "start": 666.315,
- "end": 666.625,
- "text": "work"
- },
- {
- "id": 1683,
- "start": 666.625,
- "end": 666.905,
- "text": "with"
- },
- {
- "id": 1684,
- "start": 666.905,
- "end": 667.285,
- "text": "three"
- },
- {
- "id": 1685,
- "start": 667.385,
- "end": 668.055,
- "text": "fact-checking"
- },
- {
- "id": 1686,
- "start": 667.865,
- "end": 668.825,
- "text": "partners"
- },
- {
- "id": 1687,
- "start": 668.825,
- "end": 668.975,
- "text": "in"
- },
- {
- "id": 1688,
- "start": 668.975,
- "end": 669.055,
- "text": "the"
- },
- {
- "id": 1689,
- "start": 669.055,
- "end": 669.985,
- "text": "Philippines."
- },
- {
- "id": 1690,
- "start": 669.985,
- "end": 670.175,
- "text": "We"
- },
- {
- "id": 1691,
- "start": 670.175,
- "end": 670.395,
- "text": "have"
- },
- {
- "id": 1692,
- "start": 670.523,
- "end": 670.742,
- "text": "Rappler;"
- },
- {
- "id": 1693,
- "start": 670.871,
- "end": 671.0889999999999,
- "text": "we"
- },
- {
- "id": 1694,
- "start": 671.2189999999999,
- "end": 671.4359999999999,
- "text": "have"
- },
- {
- "id": 1695,
- "start": 671.567,
- "end": 671.7829999999999,
- "text": "Verifile;"
- },
- {
- "id": 1696,
- "start": 671.915,
- "end": 672.13,
- "text": "we"
- },
- {
- "id": 1697,
- "start": 672.263,
- "end": 672.477,
- "text": "have"
- },
- {
- "id": 1698,
- "start": 672.611,
- "end": 672.824,
- "text": "AFP"
- },
- {
- "id": 1699,
- "start": 672.959,
- "end": 673.1709999999999,
- "text": "[Agence"
- },
- {
- "id": 1700,
- "start": 673.307,
- "end": 673.5179999999999,
- "text": "France-Presse]."
- },
- {
- "id": 1701,
- "start": 673.655,
- "end": 673.865,
- "text": "And"
- },
- {
- "id": 1702,
- "start": 673.865,
- "end": 673.985,
- "text": "the"
- },
- {
- "id": 1703,
- "start": 673.985,
- "end": 674.315,
- "text": "goal"
- },
- {
- "id": 1704,
- "start": 674.315,
- "end": 674.465,
- "text": "is"
- },
- {
- "id": 1705,
- "start": 674.465,
- "end": 674.645,
- "text": "for"
- },
- {
- "id": 1706,
- "start": 674.645,
- "end": 676.335,
- "text": "misinformation"
- },
- {
- "id": 1707,
- "start": 676.335,
- "end": 676.495,
- "text": "to"
- },
- {
- "id": 1708,
- "start": 676.495,
- "end": 676.785,
- "text": "not"
- },
- {
- "id": 1709,
- "start": 676.785,
- "end": 677.145,
- "text": "spread"
- },
- {
- "id": 1710,
- "start": 677.145,
- "end": 677.375,
- "text": "on"
- },
- {
- "id": 1711,
- "start": 677.375,
- "end": 678.895,
- "text": "Facebook."
- },
- {
- "id": 1712,
- "start": 678.895,
- "end": 679.095,
- "text": "One"
- },
- {
- "id": 1713,
- "start": 679.095,
- "end": 679.165,
- "text": "of"
- },
- {
- "id": 1714,
- "start": 679.165,
- "end": 679.265,
- "text": "the"
- },
- {
- "id": 1715,
- "start": 679.265,
- "end": 679.555,
- "text": "things"
- },
- {
- "id": 1716,
- "start": 679.555,
- "end": 679.665,
- "text": "that"
- },
- {
- "id": 1717,
- "start": 679.665,
- "end": 679.835,
- "text": "we’ve"
- },
- {
- "id": 1718,
- "start": 679.835,
- "end": 680.085,
- "text": "heard"
- },
- {
- "id": 1719,
- "start": 680.085,
- "end": 680.285,
- "text": "from"
- },
- {
- "id": 1720,
- "start": 680.285,
- "end": 680.495,
- "text": "some"
- },
- {
- "id": 1721,
- "start": 680.495,
- "end": 680.605,
- "text": "of"
- },
- {
- "id": 1722,
- "start": 680.605,
- "end": 680.935,
- "text": "those"
- },
- {
- "id": 1723,
- "start": 681.0500000000001,
- "end": 681.41,
- "text": "third-party"
- },
- {
- "id": 1724,
- "start": 681.495,
- "end": 681.885,
- "text": "groups"
- },
- {
- "id": 1725,
- "start": 681.885,
- "end": 682.015,
- "text": "is"
- },
- {
- "id": 1726,
- "start": 682.015,
- "end": 682.185,
- "text": "that"
- },
- {
- "id": 1727,
- "start": 682.185,
- "end": 682.305,
- "text": "they’re"
- },
- {
- "id": 1728,
- "start": 682.305,
- "end": 682.665,
- "text": "spending"
- },
- {
- "id": 1729,
- "start": 682.665,
- "end": 682.715,
- "text": "a"
- },
- {
- "id": 1730,
- "start": 682.715,
- "end": 682.925,
- "text": "lot"
- },
- {
- "id": 1731,
- "start": 682.925,
- "end": 683.005,
- "text": "of"
- },
- {
- "id": 1732,
- "start": 683.005,
- "end": 683.765,
- "text": "time"
- },
- {
- "id": 1733,
- "start": 683.765,
- "end": 684.275,
- "text": "helping"
- },
- {
- "id": 1734,
- "start": 684.275,
- "end": 684.425,
- "text": "you"
- },
- {
- "id": 1735,
- "start": 684.425,
- "end": 685.315,
- "text": "guys"
- },
- {
- "id": 1736,
- "start": 685.315,
- "end": 685.675,
- "text": "fix"
- },
- {
- "id": 1737,
- "start": 685.675,
- "end": 685.885,
- "text": "this"
- },
- {
- "id": 1738,
- "start": 686.1683333333333,
- "end": 686.3583333333332,
- "text": "mess"
- },
- {
- "id": 1739,
- "start": 686.6616666666666,
- "end": 686.8316666666666,
- "text": "while"
- },
- {
- "id": 1740,
- "start": 687.155,
- "end": 687.305,
- "text": "they"
- },
- {
- "id": 1741,
- "start": 687.305,
- "end": 687.505,
- "text": "should"
- },
- {
- "id": 1742,
- "start": 687.505,
- "end": 687.695,
- "text": "be"
- },
- {
- "id": 1743,
- "start": 687.6716666666666,
- "end": 687.9616666666667,
- "text": "spending"
- },
- {
- "id": 1744,
- "start": 687.8383333333334,
- "end": 688.2283333333334,
- "text": "time"
- },
- {
- "id": 1745,
- "start": 688.005,
- "end": 688.495,
- "text": "reporting"
- },
- {
- "id": 1746,
- "start": 688.495,
- "end": 688.645,
- "text": "on"
- },
- {
- "id": 1747,
- "start": 688.645,
- "end": 688.855,
- "text": "what’s"
- },
- {
- "id": 1748,
- "start": 688.855,
- "end": 689.185,
- "text": "going"
- },
- {
- "id": 1749,
- "start": 689.185,
- "end": 690.225,
- "text": "on."
- },
- {
- "id": 1750,
- "start": 690.225,
- "end": 690.365,
- "text": "Are"
- },
- {
- "id": 1751,
- "start": 690.365,
- "end": 690.905,
- "text": "you"
- },
- {
- "id": 1752,
- "start": 690.645,
- "end": 691.615,
- "text": "shifting"
- },
- {
- "id": 1753,
- "start": 691.23,
- "end": 691.8299999999999,
- "text": "too"
- },
- {
- "id": 1754,
- "start": 691.815,
- "end": 692.045,
- "text": "much"
- },
- {
- "id": 1755,
- "start": 692.045,
- "end": 692.135,
- "text": "of"
- },
- {
- "id": 1756,
- "start": 692.135,
- "end": 692.215,
- "text": "the"
- },
- {
- "id": 1757,
- "start": 692.215,
- "end": 693.165,
- "text": "responsibility"
- },
- {
- "id": 1758,
- "start": 693.0499999999998,
- "end": 693.705,
- "text": "onto"
- },
- {
- "id": 1759,
- "start": 693.885,
- "end": 694.245,
- "text": "third"
- },
- {
- "id": 1760,
- "start": 694.245,
- "end": 694.695,
- "text": "parties"
- },
- {
- "id": 1761,
- "start": 694.695,
- "end": 694.825,
- "text": "in"
- },
- {
- "id": 1762,
- "start": 694.825,
- "end": 695.195,
- "text": "places"
- },
- {
- "id": 1763,
- "start": 695.195,
- "end": 695.345,
- "text": "like"
- },
- {
- "id": 1764,
- "start": 695.345,
- "end": 695.435,
- "text": "the"
- },
- {
- "id": 1765,
- "start": 695.435,
- "end": 696.015,
- "text": "Philippines"
- },
- {
- "id": 1766,
- "start": 696.015,
- "end": 696.095,
- "text": "or"
- },
- {
- "id": 1767,
- "start": 696.095,
- "end": 697.155,
- "text": "Myanmar"
- },
- {
- "id": 1768,
- "start": 696.825,
- "end": 697.365,
- "text": "in"
- },
- {
- "id": 1769,
- "start": 697.3316666666667,
- "end": 697.7783333333333,
- "text": "order"
- },
- {
- "id": 1770,
- "start": 697.8383333333334,
- "end": 698.1916666666666,
- "text": "to"
- },
- {
- "id": 1771,
- "start": 698.345,
- "end": 698.605,
- "text": "fix"
- },
- {
- "id": 1772,
- "start": 698.605,
- "end": 698.945,
- "text": "something"
- },
- {
- "id": 1773,
- "start": 698.945,
- "end": 699.205,
- "text": "that"
- },
- {
- "id": 1774,
- "start": 699.205,
- "end": 699.455,
- "text": "should"
- },
- {
- "id": 1775,
- "start": 699.455,
- "end": 699.585,
- "text": "be"
- },
- {
- "id": 1776,
- "start": 699.585,
- "end": 700.055,
- "text": "inherently"
- },
- {
- "id": 1777,
- "start": 700.055,
- "end": 700.215,
- "text": "your"
- },
- {
- "id": 1778,
- "start": 700.4616666666666,
- "end": 700.645,
- "text": "problem?"
- },
- {
- "id": 1779,
- "start": 700.8683333333332,
- "end": 701.0749999999999,
- "text": "I"
- },
- {
- "id": 1780,
- "start": 701.275,
- "end": 701.505,
- "text": "think"
- },
- {
- "id": 1781,
- "start": 701.505,
- "end": 701.885,
- "text": "safety"
- },
- {
- "id": 1782,
- "start": 701.885,
- "end": 701.985,
- "text": "and"
- },
- {
- "id": 1783,
- "start": 701.985,
- "end": 702.515,
- "text": "security"
- },
- {
- "id": 1784,
- "start": 702.515,
- "end": 703.165,
- "text": "broadly"
- },
- {
- "id": 1785,
- "start": 703.165,
- "end": 703.325,
- "text": "is"
- },
- {
- "id": 1786,
- "start": 703.325,
- "end": 703.945,
- "text": "something"
- },
- {
- "id": 1787,
- "start": 703.945,
- "end": 704.635,
- "text": "where,"
- },
- {
- "id": 1788,
- "start": 704.635,
- "end": 704.815,
- "text": "as"
- },
- {
- "id": 1789,
- "start": 704.815,
- "end": 704.945,
- "text": "an"
- },
- {
- "id": 1790,
- "start": 704.945,
- "end": 705.825,
- "text": "industry,"
- },
- {
- "id": 1791,
- "start": 705.825,
- "end": 705.995,
- "text": "we"
- },
- {
- "id": 1792,
- "start": 705.995,
- "end": 706.145,
- "text": "need"
- },
- {
- "id": 1793,
- "start": 706.145,
- "end": 706.225,
- "text": "to"
- },
- {
- "id": 1794,
- "start": 706.225,
- "end": 706.595,
- "text": "partner"
- },
- {
- "id": 1795,
- "start": 706.595,
- "end": 707.135,
- "text": "together"
- },
- {
- "id": 1796,
- "start": 707.005,
- "end": 707.4649999999999,
- "text": "–"
- },
- {
- "id": 1797,
- "start": 707.415,
- "end": 707.795,
- "text": "whether"
- },
- {
- "id": 1798,
- "start": 707.795,
- "end": 708.045,
- "text": "it’s"
- },
- {
- "id": 1799,
- "start": 708.045,
- "end": 708.385,
- "text": "one"
- },
- {
- "id": 1800,
- "start": 708.385,
- "end": 708.935,
- "text": "technology"
- },
- {
- "id": 1801,
- "start": 708.935,
- "end": 709.475,
- "text": "company,"
- },
- {
- "id": 1802,
- "start": 709.475,
- "end": 709.755,
- "text": "whether"
- },
- {
- "id": 1803,
- "start": 709.755,
- "end": 709.905,
- "text": "it’s"
- },
- {
- "id": 1804,
- "start": 709.905,
- "end": 709.975,
- "text": "a"
- },
- {
- "id": 1805,
- "start": 710.13,
- "end": 710.215,
- "text": "series"
- },
- {
- "id": 1806,
- "start": 710.355,
- "end": 710.455,
- "text": "of"
- },
- {
- "id": 1807,
- "start": 710.455,
- "end": 710.995,
- "text": "technology"
- },
- {
- "id": 1808,
- "start": 711.205,
- "end": 711.6250000000001,
- "text": "companies."
- },
- {
- "id": 1809,
- "start": 711.955,
- "end": 712.255,
- "text": "There’s"
- },
- {
- "id": 1810,
- "start": 712.255,
- "end": 712.585,
- "text": "threats"
- },
- {
- "id": 1811,
- "start": 712.585,
- "end": 712.845,
- "text": "out"
- },
- {
- "id": 1812,
- "start": 712.845,
- "end": 713.525,
- "text": "there"
- },
- {
- "id": 1813,
- "start": 713.525,
- "end": 713.705,
- "text": "that"
- },
- {
- "id": 1814,
- "start": 713.705,
- "end": 713.845,
- "text": "are"
- },
- {
- "id": 1815,
- "start": 713.845,
- "end": 714.345,
- "text": "greater"
- },
- {
- "id": 1816,
- "start": 714.345,
- "end": 714.505,
- "text": "than"
- },
- {
- "id": 1817,
- "start": 714.505,
- "end": 714.755,
- "text": "any"
- },
- {
- "id": 1818,
- "start": 714.755,
- "end": 715.075,
- "text": "single"
- },
- {
- "id": 1819,
- "start": 715.3350000000002,
- "end": 715.615,
- "text": "platform"
- },
- {
- "id": 1820,
- "start": 715.915,
- "end": 716.155,
- "text": "and"
- },
- {
- "id": 1821,
- "start": 716.155,
- "end": 716.255,
- "text": "we"
- },
- {
- "id": 1822,
- "start": 716.255,
- "end": 716.515,
- "text": "need"
- },
- {
- "id": 1823,
- "start": 716.515,
- "end": 716.735,
- "text": "all"
- },
- {
- "id": 1824,
- "start": 716.735,
- "end": 716.825,
- "text": "the"
- },
- {
- "id": 1825,
- "start": 716.825,
- "end": 717.195,
- "text": "players"
- },
- {
- "id": 1826,
- "start": 717.195,
- "end": 717.805,
- "text": "involved"
- },
- {
- "id": 1827,
- "start": 717.75,
- "end": 718.155,
- "text": "to"
- },
- {
- "id": 1828,
- "start": 718.305,
- "end": 718.505,
- "text": "work"
- },
- {
- "id": 1829,
- "start": 718.505,
- "end": 719.505,
- "text": "together"
- },
- {
- "id": 1830,
- "start": 719.505,
- "end": 719.635,
- "text": "to"
- },
- {
- "id": 1831,
- "start": 719.635,
- "end": 719.885,
- "text": "help"
- },
- {
- "id": 1832,
- "start": 719.885,
- "end": 720.495,
- "text": "to"
- },
- {
- "id": 1833,
- "start": 720.495,
- "end": 721.705,
- "text": "understand"
- },
- {
- "id": 1834,
- "start": 721.385,
- "end": 721.935,
- "text": "bad"
- },
- {
- "id": 1835,
- "start": 721.7733333333333,
- "end": 722.3199999999999,
- "text": "actors,"
- },
- {
- "id": 1836,
- "start": 722.1616666666666,
- "end": 722.7049999999999,
- "text": "to"
- },
- {
- "id": 1837,
- "start": 722.55,
- "end": 723.09,
- "text": "identify"
- },
- {
- "id": 1838,
- "start": 723.09,
- "end": 723.28,
- "text": "where"
- },
- {
- "id": 1839,
- "start": 723.28,
- "end": 723.41,
- "text": "they’re"
- },
- {
- "id": 1840,
- "start": 723.41,
- "end": 723.71,
- "text": "coming"
- },
- {
- "id": 1841,
- "start": 723.71,
- "end": 724.05,
- "text": "from,"
- },
- {
- "id": 1842,
- "start": 724.05,
- "end": 724.19,
- "text": "so"
- },
- {
- "id": 1843,
- "start": 724.19,
- "end": 724.34,
- "text": "that"
- },
- {
- "id": 1844,
- "start": 724.34,
- "end": 724.49,
- "text": "we"
- },
- {
- "id": 1845,
- "start": 724.49,
- "end": 725.09,
- "text": "can"
- },
- {
- "id": 1846,
- "start": 725.09,
- "end": 725.48,
- "text": "go"
- },
- {
- "id": 1847,
- "start": 725.48,
- "end": 725.93,
- "text": "and"
- },
- {
- "id": 1848,
- "start": 725.93,
- "end": 726.91,
- "text": "proactively"
- },
- {
- "id": 1849,
- "start": 726.91,
- "end": 727.13,
- "text": "take"
- },
- {
- "id": 1850,
- "start": 727.13,
- "end": 727.46,
- "text": "action"
- },
- {
- "id": 1851,
- "start": 727.46,
- "end": 727.58,
- "text": "on"
- },
- {
- "id": 1852,
- "start": 727.58,
- "end": 727.78,
- "text": "them."
- },
- {
- "id": 1853,
- "start": 728.08,
- "end": 728.2149999999999,
- "text": "One"
- },
- {
- "id": 1854,
- "start": 728.58,
- "end": 728.65,
- "text": "of"
- },
- {
- "id": 1855,
- "start": 728.65,
- "end": 728.72,
- "text": "the"
- },
- {
- "id": 1856,
- "start": 728.72,
- "end": 729.14,
- "text": "strange"
- },
- {
- "id": 1857,
- "start": 729.14,
- "end": 729.41,
- "text": "things"
- },
- {
- "id": 1858,
- "start": 729.41,
- "end": 729.88,
- "text": "about"
- },
- {
- "id": 1859,
- "start": 729.88,
- "end": 730,
- "text": "the"
- },
- {
- "id": 1860,
- "start": 730,
- "end": 730.82,
- "text": "philosophical"
- },
- {
- "id": 1861,
- "start": 730.82,
- "end": 731.48,
- "text": "shift"
- },
- {
- "id": 1862,
- "start": 731.48,
- "end": 731.86,
- "text": "at"
- },
- {
- "id": 1863,
- "start": 731.86,
- "end": 732.61,
- "text": "Facebook"
- },
- {
- "id": 1864,
- "start": 732.61,
- "end": 733.32,
- "text": "of"
- },
- {
- "id": 1865,
- "start": 733.32,
- "end": 733.66,
- "text": "taking"
- },
- {
- "id": 1866,
- "start": 733.66,
- "end": 734.55,
- "text": "responsibility"
- },
- {
- "id": 1867,
- "start": 734.55,
- "end": 734.72,
- "text": "for"
- },
- {
- "id": 1868,
- "start": 734.72,
- "end": 735.4,
- "text": "content"
- },
- {
- "id": 1869,
- "start": 735.4750000000001,
- "end": 735.975,
- "text": "is,"
- },
- {
- "id": 1870,
- "start": 736.23,
- "end": 736.55,
- "text": "seems"
- },
- {
- "id": 1871,
- "start": 736.55,
- "end": 736.68,
- "text": "to"
- },
- {
- "id": 1872,
- "start": 736.68,
- "end": 738.15,
- "text": "me"
- },
- {
- "id": 1873,
- "start": 738.15,
- "end": 738.75,
- "text": "it"
- },
- {
- "id": 1874,
- "start": 738.75,
- "end": 738.91,
- "text": "may"
- },
- {
- "id": 1875,
- "start": 738.91,
- "end": 739.14,
- "text": "now"
- },
- {
- "id": 1876,
- "start": 739.14,
- "end": 739.84,
- "text": "be"
- },
- {
- "id": 1877,
- "start": 739.84,
- "end": 739.94,
- "text": "a"
- },
- {
- "id": 1878,
- "start": 739.94,
- "end": 740.56,
- "text": "situation"
- },
- {
- "id": 1879,
- "start": 740.56,
- "end": 740.71,
- "text": "where"
- },
- {
- "id": 1880,
- "start": 740.71,
- "end": 741.02,
- "text": "it’s:"
- },
- {
- "id": 1881,
- "start": 741.02,
- "end": 741.43,
- "text": "“careful"
- },
- {
- "id": 1882,
- "start": 741.43,
- "end": 741.56,
- "text": "what"
- },
- {
- "id": 1883,
- "start": 741.56,
- "end": 741.66,
- "text": "you"
- },
- {
- "id": 1884,
- "start": 741.66,
- "end": 741.92,
- "text": "wish"
- },
- {
- "id": 1885,
- "start": 741.92,
- "end": 742.5,
- "text": "for.”"
- },
- {
- "id": 1886,
- "start": 742.5,
- "end": 742.7,
- "text": "If"
- },
- {
- "id": 1887,
- "start": 742.7,
- "end": 742.82,
- "text": "we"
- },
- {
- "id": 1888,
- "start": 742.82,
- "end": 743.08,
- "text": "want"
- },
- {
- "id": 1889,
- "start": 743.08,
- "end": 743.51,
- "text": "Facebook"
- },
- {
- "id": 1890,
- "start": 743.51,
- "end": 743.6,
- "text": "to"
- },
- {
- "id": 1891,
- "start": 743.6,
- "end": 743.85,
- "text": "take"
- },
- {
- "id": 1892,
- "start": 743.85,
- "end": 744.04,
- "text": "more"
- },
- {
- "id": 1893,
- "start": 744.04,
- "end": 745.27,
- "text": "responsibility,"
- },
- {
- "id": 1894,
- "start": 745.27,
- "end": 745.51,
- "text": "it"
- },
- {
- "id": 1895,
- "start": 745.51,
- "end": 745.85,
- "text": "means"
- },
- {
- "id": 1896,
- "start": 745.85,
- "end": 746.33,
- "text": "essentially"
- },
- {
- "id": 1897,
- "start": 746.33,
- "end": 746.92,
- "text": "creating"
- },
- {
- "id": 1898,
- "start": 746.92,
- "end": 746.99,
- "text": "a"
- },
- {
- "id": 1899,
- "start": 746.99,
- "end": 747.71,
- "text": "larger"
- },
- {
- "id": 1900,
- "start": 747.71,
- "end": 748.23,
- "text": "army"
- },
- {
- "id": 1901,
- "start": 748.23,
- "end": 748.87,
- "text": "of"
- },
- {
- "id": 1902,
- "start": 748.87,
- "end": 749.21,
- "text": "people"
- },
- {
- "id": 1903,
- "start": 749.21,
- "end": 749.42,
- "text": "that"
- },
- {
- "id": 1904,
- "start": 749.42,
- "end": 749.59,
- "text": "are"
- },
- {
- "id": 1905,
- "start": 749.59,
- "end": 750.07,
- "text": "essentially"
- },
- {
- "id": 1906,
- "start": 750.07,
- "end": 751.01,
- "text": "censoring"
- },
- {
- "id": 1907,
- "start": 751.01,
- "end": 751.68,
- "text": "content"
- },
- {
- "id": 1908,
- "start": 751.68,
- "end": 751.93,
- "text": "that’s"
- },
- {
- "id": 1909,
- "start": 751.93,
- "end": 752.14,
- "text": "out"
- },
- {
- "id": 1910,
- "start": 752.13,
- "end": 752.44,
- "text": "there,"
- },
- {
- "id": 1911,
- "start": 752.44,
- "end": 752.8850000000001,
- "text": "or"
- },
- {
- "id": 1912,
- "start": 752.75,
- "end": 753.33,
- "text": "censoring"
- },
- {
- "id": 1913,
- "start": 753.4966666666667,
- "end": 753.9233333333333,
- "text": "the"
- },
- {
- "id": 1914,
- "start": 754.2433333333333,
- "end": 754.5166666666665,
- "text": "community."
- },
- {
- "id": 1915,
- "start": 754.99,
- "end": 755.11,
- "text": "Do"
- },
- {
- "id": 1916,
- "start": 755.11,
- "end": 755.22,
- "text": "you"
- },
- {
- "id": 1917,
- "start": 755.22,
- "end": 755.54,
- "text": "see"
- },
- {
- "id": 1918,
- "start": 755.54,
- "end": 756.01,
- "text": "yourself"
- },
- {
- "id": 1919,
- "start": 755.9699999999999,
- "end": 756.595,
- "text": "as"
- },
- {
- "id": 1920,
- "start": 756.4,
- "end": 757.18,
- "text": "building"
- },
- {
- "id": 1921,
- "start": 757.18,
- "end": 757.86,
- "text": "censorship"
- },
- {
- "id": 1922,
- "start": 757.86,
- "end": 758.18,
- "text": "tools"
- },
- {
- "id": 1923,
- "start": 758.18,
- "end": 758.28,
- "text": "to"
- },
- {
- "id": 1924,
- "start": 758.28,
- "end": 758.46,
- "text": "some"
- },
- {
- "id": 1925,
- "start": 758.46,
- "end": 759.57,
- "text": "degree?"
- },
- {
- "id": 1926,
- "start": 759.57,
- "end": 759.87,
- "text": "We"
- },
- {
- "id": 1927,
- "start": 759.87,
- "end": 760.05,
- "text": "see"
- },
- {
- "id": 1928,
- "start": 760.05,
- "end": 760.46,
- "text": "ourselves"
- },
- {
- "id": 1929,
- "start": 760.46,
- "end": 761.09,
- "text": "as"
- },
- {
- "id": 1930,
- "start": 761.09,
- "end": 761.48,
- "text": "trying"
- },
- {
- "id": 1931,
- "start": 761.48,
- "end": 761.62,
- "text": "to"
- },
- {
- "id": 1932,
- "start": 761.62,
- "end": 763.56,
- "text": "balance"
- },
- {
- "id": 1933,
- "start": 763.56,
- "end": 763.86,
- "text": "giving"
- },
- {
- "id": 1934,
- "start": 763.86,
- "end": 764.21,
- "text": "people"
- },
- {
- "id": 1935,
- "start": 764.21,
- "end": 764.27,
- "text": "a"
- },
- {
- "id": 1936,
- "start": 764.27,
- "end": 765.13,
- "text": "voice"
- },
- {
- "id": 1937,
- "start": 765.13,
- "end": 765.33,
- "text": "and"
- },
- {
- "id": 1938,
- "start": 765.33,
- "end": 766.13,
- "text": "creating"
- },
- {
- "id": 1939,
- "start": 766.13,
- "end": 766.37,
- "text": "that"
- },
- {
- "id": 1940,
- "start": 766.37,
- "end": 766.84,
- "text": "place"
- },
- {
- "id": 1941,
- "start": 766.84,
- "end": 767.66,
- "text": "for"
- },
- {
- "id": 1942,
- "start": 767.66,
- "end": 768.87,
- "text": "discussion"
- },
- {
- "id": 1943,
- "start": 768.87,
- "end": 769.22,
- "text": "with"
- },
- {
- "id": 1944,
- "start": 769.22,
- "end": 769.6,
- "text": "keeping"
- },
- {
- "id": 1945,
- "start": 769.6,
- "end": 769.97,
- "text": "people"
- },
- {
- "id": 1946,
- "start": 770.1899999999999,
- "end": 770.99,
- "text": "safe."
- },
- {
- "id": 1947,
- "start": 770.78,
- "end": 772.01,
- "text": "And"
- },
- {
- "id": 1948,
- "start": 772.01,
- "end": 772.26,
- "text": "there"
- },
- {
- "id": 1949,
- "start": 772.26,
- "end": 772.39,
- "text": "is"
- },
- {
- "id": 1950,
- "start": 772.39,
- "end": 772.58,
- "text": "no"
- },
- {
- "id": 1951,
- "start": 772.58,
- "end": 772.76,
- "text": "one"
- },
- {
- "id": 1952,
- "start": 772.76,
- "end": 772.97,
- "text": "right"
- },
- {
- "id": 1953,
- "start": 772.97,
- "end": 773.11,
- "text": "way"
- },
- {
- "id": 1954,
- "start": 773.11,
- "end": 773.21,
- "text": "to"
- },
- {
- "id": 1955,
- "start": 773.21,
- "end": 773.39,
- "text": "do"
- },
- {
- "id": 1956,
- "start": 773.39,
- "end": 773.86,
- "text": "this."
- },
- {
- "id": 1957,
- "start": 773.86,
- "end": 774,
- "text": "But"
- },
- {
- "id": 1958,
- "start": 774,
- "end": 774.22,
- "text": "that’s"
- },
- {
- "id": 1959,
- "start": 774.22,
- "end": 774.69,
- "text": "why"
- },
- {
- "id": 1960,
- "start": 774.69,
- "end": 774.87,
- "text": "we"
- },
- {
- "id": 1961,
- "start": 774.87,
- "end": 775.11,
- "text": "have"
- },
- {
- "id": 1962,
- "start": 775.11,
- "end": 775.24,
- "text": "to"
- },
- {
- "id": 1963,
- "start": 775.24,
- "end": 775.54,
- "text": "draw"
- },
- {
- "id": 1964,
- "start": 775.7433333333333,
- "end": 775.9933333333333,
- "text": "lines"
- },
- {
- "id": 1965,
- "start": 776.2466666666667,
- "end": 776.4466666666667,
- "text": "somewhere"
- },
- {
- "id": 1966,
- "start": 776.75,
- "end": 776.9,
- "text": "and"
- },
- {
- "id": 1967,
- "start": 776.9,
- "end": 777.1,
- "text": "that’s"
- },
- {
- "id": 1968,
- "start": 777.1,
- "end": 777.44,
- "text": "why"
- },
- {
- "id": 1969,
- "start": 777.44,
- "end": 777.56,
- "text": "we"
- },
- {
- "id": 1970,
- "start": 777.56,
- "end": 777.72,
- "text": "need"
- },
- {
- "id": 1971,
- "start": 777.72,
- "end": 777.82,
- "text": "to"
- },
- {
- "id": 1972,
- "start": 777.82,
- "end": 777.92,
- "text": "be"
- },
- {
- "id": 1973,
- "start": 777.92,
- "end": 778.13,
- "text": "very"
- },
- {
- "id": 1974,
- "start": 778.13,
- "end": 779.28,
- "text": "transparent"
- },
- {
- "id": 1975,
- "start": 779.28,
- "end": 779.48,
- "text": "about"
- },
- {
- "id": 1976,
- "start": 779.48,
- "end": 779.74,
- "text": "where"
- },
- {
- "id": 1977,
- "start": 779.74,
- "end": 779.98,
- "text": "those"
- },
- {
- "id": 1978,
- "start": 779.98,
- "end": 780.27,
- "text": "lines"
- },
- {
- "id": 1979,
- "start": 780.27,
- "end": 780.74,
- "text": "are"
- },
- {
- "id": 1980,
- "start": 780.74,
- "end": 780.93,
- "text": "so"
- },
- {
- "id": 1981,
- "start": 780.93,
- "end": 781.1,
- "text": "that"
- },
- {
- "id": 1982,
- "start": 781.1,
- "end": 781.21,
- "text": "we"
- },
- {
- "id": 1983,
- "start": 781.21,
- "end": 781.37,
- "text": "can"
- },
- {
- "id": 1984,
- "start": 781.37,
- "end": 781.82,
- "text": "evolve;"
- },
- {
- "id": 1985,
- "start": 781.82,
- "end": 781.99,
- "text": "so"
- },
- {
- "id": 1986,
- "start": 781.99,
- "end": 782.16,
- "text": "that"
- },
- {
- "id": 1987,
- "start": 782.16,
- "end": 782.28,
- "text": "we"
- },
- {
- "id": 1988,
- "start": 782.28,
- "end": 782.49,
- "text": "can"
- },
- {
- "id": 1989,
- "start": 782.81,
- "end": 783.24,
- "text": "learn."
- },
- {
- "id": 1990,
- "start": 783.34,
- "end": 783.99,
- "text": "And"
- },
- {
- "id": 1991,
- "start": 783.99,
- "end": 784.3,
- "text": "those"
- },
- {
- "id": 1992,
- "start": 784.3,
- "end": 784.91,
- "text": "manifest"
- },
- {
- "id": 1993,
- "start": 784.91,
- "end": 785.05,
- "text": "in"
- },
- {
- "id": 1994,
- "start": 785.05,
- "end": 785.21,
- "text": "our"
- },
- {
- "id": 1995,
- "start": 785.21,
- "end": 785.64,
- "text": "community"
- },
- {
- "id": 1996,
- "start": 785.64,
- "end": 787.27,
- "text": "standards"
- },
- {
- "id": 1997,
- "start": 787.27,
- "end": 787.44,
- "text": "where"
- },
- {
- "id": 1998,
- "start": 787.44,
- "end": 787.55,
- "text": "we"
- },
- {
- "id": 1999,
- "start": 787.55,
- "end": 788.15,
- "text": "articulate"
- },
- {
- "id": 2000,
- "start": 788.15,
- "end": 789.09,
- "text": "exactly"
- },
- {
- "id": 2001,
- "start": 789.09,
- "end": 789.41,
- "text": "where"
- },
- {
- "id": 2002,
- "start": 789.41,
- "end": 789.53,
- "text": "the"
- },
- {
- "id": 2003,
- "start": 789.53,
- "end": 789.86,
- "text": "lines"
- },
- {
- "id": 2004,
- "start": 789.86,
- "end": 790.63,
- "text": "are"
- },
- {
- "id": 2005,
- "start": 790.63,
- "end": 791.18,
- "text": "and"
- },
- {
- "id": 2006,
- "start": 791.18,
- "end": 791.49,
- "text": "what"
- },
- {
- "id": 2007,
- "start": 791.49,
- "end": 791.7,
- "text": "kind"
- },
- {
- "id": 2008,
- "start": 791.7,
- "end": 791.79,
- "text": "of"
- },
- {
- "id": 2009,
- "start": 791.79,
- "end": 792.2,
- "text": "content"
- },
- {
- "id": 2010,
- "start": 792.2,
- "end": 792.31,
- "text": "we"
- },
- {
- "id": 2011,
- "start": 792.31,
- "end": 792.56,
- "text": "take"
- },
- {
- "id": 2012,
- "start": 792.56,
- "end": 793.32,
- "text": "down."
- },
- {
- "id": 2013,
- "start": 793.32,
- "end": 793.59,
- "text": "And"
- },
- {
- "id": 2014,
- "start": 793.59,
- "end": 793.82,
- "text": "we"
- },
- {
- "id": 2015,
- "start": 793.82,
- "end": 793.98,
- "text": "will"
- },
- {
- "id": 2016,
- "start": 793.98,
- "end": 794.52,
- "text": "continue"
- },
- {
- "id": 2017,
- "start": 794.52,
- "end": 794.63,
- "text": "to"
- },
- {
- "id": 2018,
- "start": 794.63,
- "end": 795.51,
- "text": "evolve"
- },
- {
- "id": 2019,
- "start": 795.51,
- "end": 796.17,
- "text": "and"
- },
- {
- "id": 2020,
- "start": 796.17,
- "end": 796.84,
- "text": "learn"
- },
- {
- "id": 2021,
- "start": 796.84,
- "end": 797.04,
- "text": "the"
- },
- {
- "id": 2022,
- "start": 797.04,
- "end": 797.27,
- "text": "right"
- },
- {
- "id": 2023,
- "start": 797.27,
- "end": 797.85,
- "text": "place"
- },
- {
- "id": 2024,
- "start": 797.85,
- "end": 798.06,
- "text": "for"
- },
- {
- "id": 2025,
- "start": 798.06,
- "end": 798.3,
- "text": "those"
- },
- {
- "id": 2026,
- "start": 798.3,
- "end": 798.52,
- "text": "things"
- },
- {
- "id": 2027,
- "start": 798.52,
- "end": 798.63,
- "text": "to"
- },
- {
- "id": 2028,
- "start": 798.63,
- "end": 798.93,
- "text": "be"
- },
- {
- "id": 2029,
- "start": 798.93,
- "end": 799.86,
- "text": "because"
- },
- {
- "id": 2030,
- "start": 799.86,
- "end": 800.06,
- "text": "there"
- },
- {
- "id": 2031,
- "start": 800.06,
- "end": 800.21,
- "text": "is"
- },
- {
- "id": 2032,
- "start": 800.21,
- "end": 800.41,
- "text": "no"
- },
- {
- "id": 2033,
- "start": 800.41,
- "end": 800.77,
- "text": "one"
- },
- {
- "id": 2034,
- "start": 800.77,
- "end": 801,
- "text": "right"
- },
- {
- "id": 2035,
- "start": 801,
- "end": 801.42,
- "text": "solution"
- },
- {
- "id": 2036,
- "start": 801.42,
- "end": 801.55,
- "text": "for"
- },
- {
- "id": 2037,
- "start": 801.55,
- "end": 802.18,
- "text": "this."
- },
- {
- "id": 2038,
- "start": 802.18,
- "end": 802.33,
- "text": "But"
- },
- {
- "id": 2039,
- "start": 802.33,
- "end": 802.43,
- "text": "it"
- },
- {
- "id": 2040,
- "start": 802.43,
- "end": 802.74,
- "text": "has"
- },
- {
- "id": 2041,
- "start": 802.74,
- "end": 802.85,
- "text": "to"
- },
- {
- "id": 2042,
- "start": 802.85,
- "end": 802.98,
- "text": "be"
- },
- {
- "id": 2043,
- "start": 802.98,
- "end": 803.05,
- "text": "a"
- },
- {
- "id": 2044,
- "start": 803.05,
- "end": 804.08,
- "text": "balance"
- },
- {
- "id": 2045,
- "start": 804.08,
- "end": 804.26,
- "text": "and"
- },
- {
- "id": 2046,
- "start": 804.26,
- "end": 804.36,
- "text": "we"
- },
- {
- "id": 2047,
- "start": 804.36,
- "end": 804.6,
- "text": "have"
- },
- {
- "id": 2048,
- "start": 804.6,
- "end": 804.71,
- "text": "to"
- },
- {
- "id": 2049,
- "start": 804.71,
- "end": 804.9,
- "text": "give"
- },
- {
- "id": 2050,
- "start": 804.9,
- "end": 805.21,
- "text": "people"
- },
- {
- "id": 2051,
- "start": 805.21,
- "end": 805.27,
- "text": "a"
- },
- {
- "id": 2052,
- "start": 805.27,
- "end": 805.94,
- "text": "place"
- },
- {
- "id": 2053,
- "start": 805.94,
- "end": 806.08,
- "text": "to"
- },
- {
- "id": 2054,
- "start": 806.08,
- "end": 806.71,
- "text": "have,"
- },
- {
- "id": 2055,
- "start": 806.71,
- "end": 806.81,
- "text": "to"
- },
- {
- "id": 2056,
- "start": 806.81,
- "end": 806.88,
- "text": "be"
- },
- {
- "id": 2057,
- "start": 806.88,
- "end": 807,
- "text": "able"
- },
- {
- "id": 2058,
- "start": 807,
- "end": 807.06,
- "text": "to"
- },
- {
- "id": 2059,
- "start": 807.06,
- "end": 807.43,
- "text": "express"
- },
- {
- "id": 2060,
- "start": 807.43,
- "end": 807.93,
- "text": "themselves"
- },
- {
- "id": 2061,
- "start": 807.93,
- "end": 808.03,
- "text": "and"
- },
- {
- "id": 2062,
- "start": 808.03,
- "end": 808.1,
- "text": "to"
- },
- {
- "id": 2063,
- "start": 808.1,
- "end": 808.41,
- "text": "have"
- },
- {
- "id": 2064,
- "start": 808.41,
- "end": 809.64,
- "text": "conversation,"
- },
- {
- "id": 2065,
- "start": 809.64,
- "end": 809.92,
- "text": "while"
- },
- {
- "id": 2066,
- "start": 809.92,
- "end": 810.32,
- "text": "also"
- },
- {
- "id": 2067,
- "start": 810.32,
- "end": 810.94,
- "text": "watching"
- },
- {
- "id": 2068,
- "start": 810.94,
- "end": 811.11,
- "text": "for"
- },
- {
- "id": 2069,
- "start": 811.11,
- "end": 811.25,
- "text": "the"
- },
- {
- "id": 2070,
- "start": 811.25,
- "end": 811.44,
- "text": "edge"
- },
- {
- "id": 2071,
- "start": 811.44,
- "end": 812.37,
- "text": "cases"
- },
- {
- "id": 2072,
- "start": 812.37,
- "end": 812.54,
- "text": "and"
- },
- {
- "id": 2073,
- "start": 812.54,
- "end": 812.65,
- "text": "for"
- },
- {
- "id": 2074,
- "start": 812.65,
- "end": 812.76,
- "text": "the"
- },
- {
- "id": 2075,
- "start": 812.76,
- "end": 813.08,
- "text": "bad"
- },
- {
- "id": 2076,
- "start": 813.08,
- "end": 813.63,
- "text": "content,"
- },
- {
- "id": 2077,
- "start": 813.63,
- "end": 813.72,
- "text": "the"
- },
- {
- "id": 2078,
- "start": 813.72,
- "end": 813.94,
- "text": "bad"
- },
- {
- "id": 2079,
- "start": 813.94,
- "end": 814.38,
- "text": "actors"
- },
- {
- "id": 2080,
- "start": 814.205,
- "end": 814.46,
- "text": "and"
- },
- {
- "id": 2081,
- "start": 814.47,
- "end": 814.54,
- "text": "the"
- },
- {
- "id": 2082,
- "start": 814.54,
- "end": 814.74,
- "text": "bad"
- },
- {
- "id": 2083,
- "start": 814.9233333333334,
- "end": 815.1166666666667,
- "text": "behavior,"
- },
- {
- "id": 2084,
- "start": 815.3066666666667,
- "end": 815.4933333333333,
- "text": "so"
- },
- {
- "id": 2085,
- "start": 815.69,
- "end": 815.87,
- "text": "that"
- },
- {
- "id": 2086,
- "start": 815.87,
- "end": 815.97,
- "text": "we"
- },
- {
- "id": 2087,
- "start": 815.97,
- "end": 816.13,
- "text": "can"
- },
- {
- "id": 2088,
- "start": 816.13,
- "end": 816.34,
- "text": "keep"
- },
- {
- "id": 2089,
- "start": 816.34,
- "end": 816.6,
- "text": "people"
- },
- {
- "id": 2090,
- "start": 816.6,
- "end": 817.09,
- "text": "safe"
- },
- {
- "id": 2091,
- "start": 817.09,
- "end": 817.34,
- "text": "on"
- },
- {
- "id": 2092,
- "start": 817.34,
- "end": 817.41,
- "text": "the"
- },
- {
- "id": 2093,
- "start": 821.2250000000004,
- "end": 821.3149999999996,
- "text": "platform."
- },
- {
- "id": 2094,
- "start": 825.11,
- "end": 825.22,
- "text": "In"
- },
- {
- "id": 2095,
- "start": 825.22,
- "end": 825.51,
- "text": "terms"
- },
- {
- "id": 2096,
- "start": 825.51,
- "end": 825.62,
- "text": "of"
- },
- {
- "id": 2097,
- "start": 825.62,
- "end": 825.68,
- "text": "a"
- },
- {
- "id": 2098,
- "start": 825.68,
- "end": 825.88,
- "text": "kind"
- },
- {
- "id": 2099,
- "start": 825.88,
- "end": 825.96,
- "text": "of"
- },
- {
- "id": 2100,
- "start": 825.96,
- "end": 826.37,
- "text": "track"
- },
- {
- "id": 2101,
- "start": 826.37,
- "end": 827.24,
- "text": "record"
- },
- {
- "id": 2102,
- "start": 827.24,
- "end": 827.72,
- "text": "of"
- },
- {
- "id": 2103,
- "start": 827.72,
- "end": 828.01,
- "text": "being"
- },
- {
- "id": 2104,
- "start": 828.01,
- "end": 828.42,
- "text": "able"
- },
- {
- "id": 2105,
- "start": 828.42,
- "end": 828.98,
- "text": "to"
- },
- {
- "id": 2106,
- "start": 828.78,
- "end": 829.105,
- "text": "–"
- },
- {
- "id": 2107,
- "start": 829.14,
- "end": 829.23,
- "text": "the"
- },
- {
- "id": 2108,
- "start": 829.23,
- "end": 829.75,
- "text": "content"
- },
- {
- "id": 2109,
- "start": 829.75,
- "end": 830.75,
- "text": "moderation"
- },
- {
- "id": 2110,
- "start": 830.75,
- "end": 832.12,
- "text": "system"
- },
- {
- "id": 2111,
- "start": 832.12,
- "end": 832.81,
- "text": "that"
- },
- {
- "id": 2112,
- "start": 832.81,
- "end": 833.3,
- "text": "Facebook"
- },
- {
- "id": 2113,
- "start": 833.3,
- "end": 833.52,
- "text": "had"
- },
- {
- "id": 2114,
- "start": 833.52,
- "end": 833.64,
- "text": "in"
- },
- {
- "id": 2115,
- "start": 833.64,
- "end": 833.99,
- "text": "place"
- },
- {
- "id": 2116,
- "start": 833.99,
- "end": 834.14,
- "text": "for"
- },
- {
- "id": 2117,
- "start": 834.14,
- "end": 834.21,
- "text": "a"
- },
- {
- "id": 2118,
- "start": 834.21,
- "end": 834.44,
- "text": "long"
- },
- {
- "id": 2119,
- "start": 834.58,
- "end": 834.8950000000001,
- "text": "time,"
- },
- {
- "id": 2120,
- "start": 834.95,
- "end": 835.35,
- "text": "people"
- },
- {
- "id": 2121,
- "start": 835.35,
- "end": 835.81,
- "text": "reporting"
- },
- {
- "id": 2122,
- "start": 835.81,
- "end": 835.99,
- "text": "that"
- },
- {
- "id": 2123,
- "start": 835.99,
- "end": 836.82,
- "text": "content,"
- },
- {
- "id": 2124,
- "start": 836.82,
- "end": 836.95,
- "text": "do"
- },
- {
- "id": 2125,
- "start": 836.95,
- "end": 837.03,
- "text": "you"
- },
- {
- "id": 2126,
- "start": 837.03,
- "end": 837.3,
- "text": "think"
- },
- {
- "id": 2127,
- "start": 837.3,
- "end": 837.71,
- "text": "that"
- },
- {
- "id": 2128,
- "start": 837.71,
- "end": 838.08,
- "text": "worked"
- },
- {
- "id": 2129,
- "start": 838.08,
- "end": 839.37,
- "text": "well?"
- },
- {
- "id": 2130,
- "start": 839.37,
- "end": 839.52,
- "text": "Did"
- },
- {
- "id": 2131,
- "start": 839.52,
- "end": 839.79,
- "text": "that"
- },
- {
- "id": 2132,
- "start": 839.79,
- "end": 840.04,
- "text": "work"
- },
- {
- "id": 2133,
- "start": 840.04,
- "end": 840.29,
- "text": "well"
- },
- {
- "id": 2134,
- "start": 840.29,
- "end": 840.42,
- "text": "as"
- },
- {
- "id": 2135,
- "start": 840.42,
- "end": 840.49,
- "text": "a"
- },
- {
- "id": 2136,
- "start": 840.49,
- "end": 840.88,
- "text": "model"
- },
- {
- "id": 2137,
- "start": 840.88,
- "end": 841.44,
- "text": "for"
- },
- {
- "id": 2138,
- "start": 841.44,
- "end": 841.91,
- "text": "people"
- },
- {
- "id": 2139,
- "start": 841.91,
- "end": 842.06,
- "text": "to"
- },
- {
- "id": 2140,
- "start": 842.06,
- "end": 842.19,
- "text": "be"
- },
- {
- "id": 2141,
- "start": 842.19,
- "end": 842.34,
- "text": "able"
- },
- {
- "id": 2142,
- "start": 842.34,
- "end": 842.42,
- "text": "to"
- },
- {
- "id": 2143,
- "start": 842.42,
- "end": 842.8,
- "text": "flag"
- },
- {
- "id": 2144,
- "start": 842.7146666666666,
- "end": 843.208,
- "text": "content"
- },
- {
- "id": 2145,
- "start": 843.0093333333333,
- "end": 843.616,
- "text": "and"
- },
- {
- "id": 2146,
- "start": 843.304,
- "end": 844.024,
- "text": "get"
- },
- {
- "id": 2147,
- "start": 844.024,
- "end": 844.604,
- "text": "problematic"
- },
- {
- "id": 2148,
- "start": 844.604,
- "end": 845.044,
- "text": "content"
- },
- {
- "id": 2149,
- "start": 845.044,
- "end": 845.324,
- "text": "taken"
- },
- {
- "id": 2150,
- "start": 845.8289999999998,
- "end": 846.0189999999999,
- "text": "down?"
- },
- {
- "id": 2151,
- "start": 846.614,
- "end": 846.714,
- "text": "I"
- },
- {
- "id": 2152,
- "start": 846.714,
- "end": 847.034,
- "text": "actually"
- },
- {
- "id": 2153,
- "start": 847.034,
- "end": 847.284,
- "text": "think"
- },
- {
- "id": 2154,
- "start": 847.284,
- "end": 847.414,
- "text": "for"
- },
- {
- "id": 2155,
- "start": 847.414,
- "end": 847.564,
- "text": "the"
- },
- {
- "id": 2156,
- "start": 847.564,
- "end": 848.224,
- "text": "foreseeable"
- },
- {
- "id": 2157,
- "start": 848.224,
- "end": 848.654,
- "text": "future"
- },
- {
- "id": 2158,
- "start": 848.654,
- "end": 848.904,
- "text": "this"
- },
- {
- "id": 2159,
- "start": 848.904,
- "end": 849.204,
- "text": "will"
- },
- {
- "id": 2160,
- "start": 849.204,
- "end": 849.334,
- "text": "be"
- },
- {
- "id": 2161,
- "start": 849.334,
- "end": 849.394,
- "text": "a"
- },
- {
- "id": 2162,
- "start": 849.394,
- "end": 850.174,
- "text": "combination"
- },
- {
- "id": 2163,
- "start": 850.174,
- "end": 850.364,
- "text": "of"
- },
- {
- "id": 2164,
- "start": 850.364,
- "end": 851.194,
- "text": "people"
- },
- {
- "id": 2165,
- "start": 851.194,
- "end": 851.354,
- "text": "and"
- },
- {
- "id": 2166,
- "start": 851.354,
- "end": 852.614,
- "text": "technology."
- },
- {
- "id": 2167,
- "start": 852.614,
- "end": 853.154,
- "text": "Artificial"
- },
- {
- "id": 2168,
- "start": 853.154,
- "end": 853.784,
- "text": "intelligence"
- },
- {
- "id": 2169,
- "start": 853.784,
- "end": 853.914,
- "text": "is"
- },
- {
- "id": 2170,
- "start": 853.914,
- "end": 854.264,
- "text": "making"
- },
- {
- "id": 2171,
- "start": 854.264,
- "end": 854.354,
- "text": "a"
- },
- {
- "id": 2172,
- "start": 854.354,
- "end": 854.784,
- "text": "lot"
- },
- {
- "id": 2173,
- "start": 854.784,
- "end": 855.004,
- "text": "of"
- },
- {
- "id": 2174,
- "start": 855.004,
- "end": 856.094,
- "text": "progress,"
- },
- {
- "id": 2175,
- "start": 856.094,
- "end": 856.734,
- "text": "but"
- },
- {
- "id": 2176,
- "start": 856.734,
- "end": 856.914,
- "text": "it"
- },
- {
- "id": 2177,
- "start": 856.914,
- "end": 857.094,
- "text": "will"
- },
- {
- "id": 2178,
- "start": 857.094,
- "end": 857.484,
- "text": "always"
- },
- {
- "id": 2179,
- "start": 857.484,
- "end": 857.644,
- "text": "be"
- },
- {
- "id": 2180,
- "start": 857.644,
- "end": 858.224,
- "text": "limited"
- },
- {
- "id": 2181,
- "start": 858.224,
- "end": 858.414,
- "text": "in"
- },
- {
- "id": 2182,
- "start": 858.414,
- "end": 858.564,
- "text": "what"
- },
- {
- "id": 2183,
- "start": 858.564,
- "end": 858.664,
- "text": "it"
- },
- {
- "id": 2184,
- "start": 858.664,
- "end": 858.814,
- "text": "can"
- },
- {
- "id": 2185,
- "start": 858.9839999999999,
- "end": 859.1339999999999,
- "text": "do"
- },
- {
- "id": 2186,
- "start": 859.304,
- "end": 859.454,
- "text": "and"
- },
- {
- "id": 2187,
- "start": 859.454,
- "end": 859.564,
- "text": "we"
- },
- {
- "id": 2188,
- "start": 859.564,
- "end": 859.874,
- "text": "will"
- },
- {
- "id": 2189,
- "start": 859.874,
- "end": 860.824,
- "text": "always"
- },
- {
- "id": 2190,
- "start": 860.824,
- "end": 861.214,
- "text": "need"
- },
- {
- "id": 2191,
- "start": 861.214,
- "end": 861.844,
- "text": "people"
- },
- {
- "id": 2192,
- "start": 861.844,
- "end": 862.014,
- "text": "to"
- },
- {
- "id": 2193,
- "start": 862.014,
- "end": 862.394,
- "text": "report"
- },
- {
- "id": 2194,
- "start": 862.394,
- "end": 863.294,
- "text": "content"
- },
- {
- "id": 2195,
- "start": 863.294,
- "end": 863.484,
- "text": "and"
- },
- {
- "id": 2196,
- "start": 863.484,
- "end": 863.924,
- "text": "people"
- },
- {
- "id": 2197,
- "start": 863.924,
- "end": 864.064,
- "text": "to"
- },
- {
- "id": 2198,
- "start": 864.064,
- "end": 864.314,
- "text": "help"
- },
- {
- "id": 2199,
- "start": 864.314,
- "end": 864.624,
- "text": "review"
- },
- {
- "id": 2200,
- "start": 864.624,
- "end": 864.784,
- "text": "that"
- },
- {
- "id": 2201,
- "start": 864.784,
- "end": 865.514,
- "text": "content."
- },
- {
- "id": 2202,
- "start": 865.514,
- "end": 865.674,
- "text": "And"
- },
- {
- "id": 2203,
- "start": 865.674,
- "end": 865.914,
- "text": "as"
- },
- {
- "id": 2204,
- "start": 865.914,
- "end": 866.084,
- "text": "we’ve"
- },
- {
- "id": 2205,
- "start": 866.084,
- "end": 866.264,
- "text": "made"
- },
- {
- "id": 2206,
- "start": 866.264,
- "end": 867.414,
- "text": "progress,"
- },
- {
- "id": 2207,
- "start": 867.414,
- "end": 867.634,
- "text": "we’ve"
- },
- {
- "id": 2208,
- "start": 867.634,
- "end": 867.764,
- "text": "been"
- },
- {
- "id": 2209,
- "start": 867.764,
- "end": 867.984,
- "text": "able"
- },
- {
- "id": 2210,
- "start": 867.984,
- "end": 868.074,
- "text": "to"
- },
- {
- "id": 2211,
- "start": 868.074,
- "end": 868.174,
- "text": "be"
- },
- {
- "id": 2212,
- "start": 868.174,
- "end": 868.404,
- "text": "more"
- },
- {
- "id": 2213,
- "start": 868.404,
- "end": 869.374,
- "text": "proactive"
- },
- {
- "id": 2214,
- "start": 869.374,
- "end": 869.554,
- "text": "and"
- },
- {
- "id": 2215,
- "start": 869.554,
- "end": 869.704,
- "text": "get"
- },
- {
- "id": 2216,
- "start": 869.704,
- "end": 870.414,
- "text": "ahead"
- },
- {
- "id": 2217,
- "start": 870.414,
- "end": 870.594,
- "text": "and"
- },
- {
- "id": 2218,
- "start": 870.594,
- "end": 870.844,
- "text": "take"
- },
- {
- "id": 2219,
- "start": 870.844,
- "end": 871.054,
- "text": "down"
- },
- {
- "id": 2220,
- "start": 871.054,
- "end": 871.234,
- "text": "more"
- },
- {
- "id": 2221,
- "start": 871.234,
- "end": 871.434,
- "text": "bad"
- },
- {
- "id": 2222,
- "start": 871.434,
- "end": 871.984,
- "text": "content"
- },
- {
- "id": 2223,
- "start": 871.984,
- "end": 872.094,
- "text": "and"
- },
- {
- "id": 2224,
- "start": 872.094,
- "end": 872.324,
- "text": "take"
- },
- {
- "id": 2225,
- "start": 872.324,
- "end": 872.414,
- "text": "it"
- },
- {
- "id": 2226,
- "start": 872.414,
- "end": 872.644,
- "text": "down"
- },
- {
- "id": 2227,
- "start": 872.644,
- "end": 873.264,
- "text": "faster."
- },
- {
- "id": 2228,
- "start": 873.264,
- "end": 873.514,
- "text": "But"
- },
- {
- "id": 2229,
- "start": 873.514,
- "end": 873.894,
- "text": "people"
- },
- {
- "id": 2230,
- "start": 873.894,
- "end": 874.044,
- "text": "will"
- },
- {
- "id": 2231,
- "start": 874.044,
- "end": 874.504,
- "text": "continue"
- },
- {
- "id": 2232,
- "start": 874.504,
- "end": 874.574,
- "text": "to"
- },
- {
- "id": 2233,
- "start": 874.574,
- "end": 874.674,
- "text": "be"
- },
- {
- "id": 2234,
- "start": 874.674,
- "end": 875.024,
- "text": "part"
- },
- {
- "id": 2235,
- "start": 875.024,
- "end": 875.194,
- "text": "of"
- },
- {
- "id": 2236,
- "start": 875.194,
- "end": 875.294,
- "text": "the"
- },
- {
- "id": 2237,
- "start": 875.294,
- "end": 875.774,
- "text": "equation."
- },
- {
- "id": 2238,
- "start": 875.774,
- "end": 875.964,
- "text": "And"
- },
- {
- "id": 2239,
- "start": 875.964,
- "end": 876.104,
- "text": "what"
- },
- {
- "id": 2240,
- "start": 876.104,
- "end": 876.574,
- "text": "about"
- },
- {
- "id": 2241,
- "start": 876.574,
- "end": 877.484,
- "text": "transparency"
- },
- {
- "id": 2242,
- "start": 877.484,
- "end": 877.854,
- "text": "about"
- },
- {
- "id": 2243,
- "start": 877.854,
- "end": 878.124,
- "text": "who"
- },
- {
- "id": 2244,
- "start": 878.124,
- "end": 878.384,
- "text": "those"
- },
- {
- "id": 2245,
- "start": 878.384,
- "end": 878.784,
- "text": "people"
- },
- {
- "id": 2246,
- "start": 878.784,
- "end": 879.024,
- "text": "are,"
- },
- {
- "id": 2247,
- "start": 879.024,
- "end": 879.344,
- "text": "where"
- },
- {
- "id": 2248,
- "start": 879.344,
- "end": 879.524,
- "text": "they"
- },
- {
- "id": 2249,
- "start": 879.524,
- "end": 879.914,
- "text": "are,"
- },
- {
- "id": 2250,
- "start": 879.914,
- "end": 880.114,
- "text": "how"
- },
- {
- "id": 2251,
- "start": 880.114,
- "end": 880.304,
- "text": "they’re"
- },
- {
- "id": 2252,
- "start": 880.304,
- "end": 881.204,
- "text": "trained,"
- },
- {
- "id": 2253,
- "start": 881.204,
- "end": 881.534,
- "text": "what"
- },
- {
- "id": 2254,
- "start": 881.534,
- "end": 881.694,
- "text": "their"
- },
- {
- "id": 2255,
- "start": 881.694,
- "end": 882.354,
- "text": "backgrounds"
- },
- {
- "id": 2256,
- "start": 882.1990000000001,
- "end": 882.549,
- "text": "are?"
- },
- {
- "id": 2257,
- "start": 882.704,
- "end": 882.744,
- "text": "I"
- },
- {
- "id": 2258,
- "start": 882.744,
- "end": 882.934,
- "text": "mean"
- },
- {
- "id": 2259,
- "start": 882.934,
- "end": 883.124,
- "text": "these"
- },
- {
- "id": 2260,
- "start": 883.124,
- "end": 883.184,
- "text": "are"
- },
- {
- "id": 2261,
- "start": 883.184,
- "end": 883.294,
- "text": "the"
- },
- {
- "id": 2262,
- "start": 883.294,
- "end": 883.604,
- "text": "people"
- },
- {
- "id": 2263,
- "start": 883.5606666666667,
- "end": 883.8706666666667,
- "text": "who"
- },
- {
- "id": 2264,
- "start": 883.8273333333334,
- "end": 884.1373333333333,
- "text": "are"
- },
- {
- "id": 2265,
- "start": 884.094,
- "end": 884.404,
- "text": "doing"
- },
- {
- "id": 2266,
- "start": 884.404,
- "end": 884.614,
- "text": "this"
- },
- {
- "id": 2267,
- "start": 884.614,
- "end": 884.954,
- "text": "work"
- },
- {
- "id": 2268,
- "start": 884.8340000000001,
- "end": 885.059,
- "text": "when"
- },
- {
- "id": 2269,
- "start": 885.054,
- "end": 885.164,
- "text": "you’re"
- },
- {
- "id": 2270,
- "start": 885.164,
- "end": 885.664,
- "text": "hiring"
- },
- {
- "id": 2271,
- "start": 885.664,
- "end": 887.724,
- "text": "up."
- },
- {
- "id": 2272,
- "start": 887.724,
- "end": 887.844,
- "text": "I"
- },
- {
- "id": 2273,
- "start": 887.844,
- "end": 888.104,
- "text": "think"
- },
- {
- "id": 2274,
- "start": 888.104,
- "end": 888.224,
- "text": "for"
- },
- {
- "id": 2275,
- "start": 888.224,
- "end": 888.294,
- "text": "a"
- },
- {
- "id": 2276,
- "start": 888.294,
- "end": 888.484,
- "text": "lot"
- },
- {
- "id": 2277,
- "start": 888.484,
- "end": 888.604,
- "text": "of"
- },
- {
- "id": 2278,
- "start": 888.604,
- "end": 889.334,
- "text": "people"
- },
- {
- "id": 2279,
- "start": 889.334,
- "end": 889.564,
- "text": "we’ve"
- },
- {
- "id": 2280,
- "start": 889.564,
- "end": 890.014,
- "text": "spoken"
- },
- {
- "id": 2281,
- "start": 890.014,
- "end": 890.824,
- "text": "to"
- },
- {
- "id": 2282,
- "start": 890.824,
- "end": 891.064,
- "text": "out"
- },
- {
- "id": 2283,
- "start": 891.064,
- "end": 891.124,
- "text": "in"
- },
- {
- "id": 2284,
- "start": 891.124,
- "end": 891.214,
- "text": "the"
- },
- {
- "id": 2285,
- "start": 891.214,
- "end": 891.494,
- "text": "world"
- },
- {
- "id": 2286,
- "start": 891.434,
- "end": 891.8240000000001,
- "text": "who’ve"
- },
- {
- "id": 2287,
- "start": 891.654,
- "end": 892.154,
- "text": "had"
- },
- {
- "id": 2288,
- "start": 892.154,
- "end": 892.704,
- "text": "problems"
- },
- {
- "id": 2289,
- "start": 892.704,
- "end": 892.854,
- "text": "with"
- },
- {
- "id": 2290,
- "start": 892.854,
- "end": 894.654,
- "text": "content,"
- },
- {
- "id": 2291,
- "start": 894.654,
- "end": 894.934,
- "text": "they’ve"
- },
- {
- "id": 2292,
- "start": 894.934,
- "end": 895.144,
- "text": "had"
- },
- {
- "id": 2293,
- "start": 895.344,
- "end": 895.9639999999999,
- "text": "difficulties"
- },
- {
- "id": 2294,
- "start": 895.754,
- "end": 896.784,
- "text": "locating"
- },
- {
- "id": 2295,
- "start": 896.784,
- "end": 897.234,
- "text": "who"
- },
- {
- "id": 2296,
- "start": 897.234,
- "end": 897.324,
- "text": "it"
- },
- {
- "id": 2297,
- "start": 897.324,
- "end": 897.544,
- "text": "is"
- },
- {
- "id": 2298,
- "start": 897.544,
- "end": 897.754,
- "text": "that’s"
- },
- {
- "id": 2299,
- "start": 897.754,
- "end": 898.194,
- "text": "actually"
- },
- {
- "id": 2300,
- "start": 898.194,
- "end": 898.624,
- "text": "judging"
- },
- {
- "id": 2301,
- "start": 898.624,
- "end": 898.784,
- "text": "this"
- },
- {
- "id": 2302,
- "start": 898.784,
- "end": 899.344,
- "text": "content"
- },
- {
- "id": 2303,
- "start": 899.0640000000001,
- "end": 899.504,
- "text": "–"
- },
- {
- "id": 2304,
- "start": 899.344,
- "end": 899.664,
- "text": "things"
- },
- {
- "id": 2305,
- "start": 899.664,
- "end": 899.774,
- "text": "that"
- },
- {
- "id": 2306,
- "start": 899.774,
- "end": 899.884,
- "text": "were"
- },
- {
- "id": 2307,
- "start": 899.884,
- "end": 900.224,
- "text": "taken"
- },
- {
- "id": 2308,
- "start": 900.224,
- "end": 900.844,
- "text": "down"
- },
- {
- "id": 2309,
- "start": 900.844,
- "end": 901.004,
- "text": "that"
- },
- {
- "id": 2310,
- "start": 901.004,
- "end": 901.234,
- "text": "maybe"
- },
- {
- "id": 2311,
- "start": 901.234,
- "end": 901.484,
- "text": "shouldn’t"
- },
- {
- "id": 2312,
- "start": 901.484,
- "end": 901.584,
- "text": "have"
- },
- {
- "id": 2313,
- "start": 901.584,
- "end": 901.714,
- "text": "been"
- },
- {
- "id": 2314,
- "start": 901.714,
- "end": 902.024,
- "text": "taken"
- },
- {
- "id": 2315,
- "start": 902.024,
- "end": 902.644,
- "text": "down;"
- },
- {
- "id": 2316,
- "start": 902.644,
- "end": 902.974,
- "text": "things"
- },
- {
- "id": 2317,
- "start": 902.974,
- "end": 903.434,
- "text": "that"
- },
- {
- "id": 2318,
- "start": 903.434,
- "end": 903.664,
- "text": "should"
- },
- {
- "id": 2319,
- "start": 903.664,
- "end": 903.754,
- "text": "have"
- },
- {
- "id": 2320,
- "start": 903.754,
- "end": 903.894,
- "text": "been"
- },
- {
- "id": 2321,
- "start": 903.894,
- "end": 904.194,
- "text": "taken"
- },
- {
- "id": 2322,
- "start": 904.194,
- "end": 904.474,
- "text": "down"
- },
- {
- "id": 2323,
- "start": 904.474,
- "end": 904.594,
- "text": "that"
- },
- {
- "id": 2324,
- "start": 904.594,
- "end": 904.694,
- "text": "were"
- },
- {
- "id": 2325,
- "start": 904.694,
- "end": 904.964,
- "text": "never"
- },
- {
- "id": 2326,
- "start": 904.964,
- "end": 905.294,
- "text": "taken"
- },
- {
- "id": 2327,
- "start": 905.294,
- "end": 907.784,
- "text": "down."
- },
- {
- "id": 2328,
- "start": 907.784,
- "end": 908.284,
- "text": "What"
- },
- {
- "id": 2329,
- "start": 908.284,
- "end": 909.074,
- "text": "transparency"
- },
- {
- "id": 2330,
- "start": 909.074,
- "end": 909.144,
- "text": "are"
- },
- {
- "id": 2331,
- "start": 909.144,
- "end": 909.374,
- "text": "you"
- },
- {
- "id": 2332,
- "start": 909.374,
- "end": 909.674,
- "text": "giving"
- },
- {
- "id": 2333,
- "start": 909.674,
- "end": 909.784,
- "text": "in"
- },
- {
- "id": 2334,
- "start": 909.784,
- "end": 910.074,
- "text": "terms"
- },
- {
- "id": 2335,
- "start": 910.074,
- "end": 910.204,
- "text": "of"
- },
- {
- "id": 2336,
- "start": 910.204,
- "end": 910.404,
- "text": "who"
- },
- {
- "id": 2337,
- "start": 910.404,
- "end": 910.684,
- "text": "the"
- },
- {
- "id": 2338,
- "start": 910.684,
- "end": 911.094,
- "text": "people"
- },
- {
- "id": 2339,
- "start": 911.094,
- "end": 911.244,
- "text": "are"
- },
- {
- "id": 2340,
- "start": 911.244,
- "end": 911.394,
- "text": "that"
- },
- {
- "id": 2341,
- "start": 911.394,
- "end": 911.544,
- "text": "are"
- },
- {
- "id": 2342,
- "start": 911.544,
- "end": 912.554,
- "text": "moderating"
- },
- {
- "id": 2343,
- "start": 912.554,
- "end": 912.904,
- "text": "and"
- },
- {
- "id": 2344,
- "start": 912.904,
- "end": 913.144,
- "text": "where"
- },
- {
- "id": 2345,
- "start": 913.144,
- "end": 913.294,
- "text": "they"
- },
- {
- "id": 2346,
- "start": 913.294,
- "end": 913.684,
- "text": "are"
- },
- {
- "id": 2347,
- "start": 913.684,
- "end": 914.434,
- "text": "and"
- },
- {
- "id": 2348,
- "start": 914.434,
- "end": 914.724,
- "text": "what"
- },
- {
- "id": 2349,
- "start": 914.724,
- "end": 914.844,
- "text": "their"
- },
- {
- "id": 2350,
- "start": 914.844,
- "end": 915.674,
- "text": "qualifications"
- },
- {
- "id": 2351,
- "start": 915.674,
- "end": 915.794,
- "text": "are"
- },
- {
- "id": 2352,
- "start": 915.794,
- "end": 915.904,
- "text": "to"
- },
- {
- "id": 2353,
- "start": 915.904,
- "end": 916.104,
- "text": "do"
- },
- {
- "id": 2354,
- "start": 916.104,
- "end": 916.314,
- "text": "this"
- },
- {
- "id": 2355,
- "start": 916.9589999999998,
- "end": 917.1840000000002,
- "text": "work?"
- },
- {
- "id": 2356,
- "start": 917.814,
- "end": 918.054,
- "text": "We"
- },
- {
- "id": 2357,
- "start": 918.054,
- "end": 918.344,
- "text": "employ"
- },
- {
- "id": 2358,
- "start": 918.344,
- "end": 918.724,
- "text": "people"
- },
- {
- "id": 2359,
- "start": 918.724,
- "end": 919.084,
- "text": "around"
- },
- {
- "id": 2360,
- "start": 919.084,
- "end": 919.174,
- "text": "the"
- },
- {
- "id": 2361,
- "start": 919.174,
- "end": 919.564,
- "text": "world"
- },
- {
- "id": 2362,
- "start": 919.564,
- "end": 919.744,
- "text": "who"
- },
- {
- "id": 2363,
- "start": 919.744,
- "end": 920.124,
- "text": "bring"
- },
- {
- "id": 2364,
- "start": 920.124,
- "end": 920.774,
- "text": "in"
- },
- {
- "id": 2365,
- "start": 920.774,
- "end": 921.214,
- "text": "the"
- },
- {
- "id": 2366,
- "start": 921.214,
- "end": 921.754,
- "text": "knowledge"
- },
- {
- "id": 2367,
- "start": 921.754,
- "end": 921.944,
- "text": "of"
- },
- {
- "id": 2368,
- "start": 921.944,
- "end": 922.734,
- "text": "languages,"
- },
- {
- "id": 2369,
- "start": 922.734,
- "end": 922.854,
- "text": "of"
- },
- {
- "id": 2370,
- "start": 922.854,
- "end": 923.304,
- "text": "cultural"
- },
- {
- "id": 2371,
- "start": 923.304,
- "end": 923.944,
- "text": "context,"
- },
- {
- "id": 2372,
- "start": 923.944,
- "end": 924.154,
- "text": "so"
- },
- {
- "id": 2373,
- "start": 924.154,
- "end": 924.234,
- "text": "they"
- },
- {
- "id": 2374,
- "start": 924.234,
- "end": 924.384,
- "text": "can"
- },
- {
- "id": 2375,
- "start": 924.384,
- "end": 924.754,
- "text": "better"
- },
- {
- "id": 2376,
- "start": 924.754,
- "end": 926.214,
- "text": "understand."
- },
- {
- "id": 2377,
- "start": 926.214,
- "end": 926.364,
- "text": "But"
- },
- {
- "id": 2378,
- "start": 926.364,
- "end": 926.454,
- "text": "the"
- },
- {
- "id": 2379,
- "start": 926.454,
- "end": 927.094,
- "text": "focus"
- },
- {
- "id": 2380,
- "start": 927.094,
- "end": 927.264,
- "text": "that"
- },
- {
- "id": 2381,
- "start": 927.264,
- "end": 927.394,
- "text": "we"
- },
- {
- "id": 2382,
- "start": 927.394,
- "end": 927.854,
- "text": "have"
- },
- {
- "id": 2383,
- "start": 927.854,
- "end": 928.074,
- "text": "is"
- },
- {
- "id": 2384,
- "start": 928.074,
- "end": 928.284,
- "text": "on"
- },
- {
- "id": 2385,
- "start": 928.284,
- "end": 928.364,
- "text": "the"
- },
- {
- "id": 2386,
- "start": 928.364,
- "end": 929.224,
- "text": "standards,"
- },
- {
- "id": 2387,
- "start": 929.224,
- "end": 929.374,
- "text": "on"
- },
- {
- "id": 2388,
- "start": 929.374,
- "end": 929.734,
- "text": "what"
- },
- {
- "id": 2389,
- "start": 929.734,
- "end": 929.944,
- "text": "are"
- },
- {
- "id": 2390,
- "start": 929.944,
- "end": 930.554,
- "text": "the"
- },
- {
- "id": 2391,
- "start": 930.554,
- "end": 931.104,
- "text": "rules"
- },
- {
- "id": 2392,
- "start": 931.104,
- "end": 931.284,
- "text": "that"
- },
- {
- "id": 2393,
- "start": 931.284,
- "end": 931.464,
- "text": "they"
- },
- {
- "id": 2394,
- "start": 931.464,
- "end": 932.244,
- "text": "use"
- },
- {
- "id": 2395,
- "start": 932.244,
- "end": 932.454,
- "text": "to"
- },
- {
- "id": 2396,
- "start": 932.454,
- "end": 932.744,
- "text": "make"
- },
- {
- "id": 2397,
- "start": 932.744,
- "end": 932.944,
- "text": "these"
- },
- {
- "id": 2398,
- "start": 933.159,
- "end": 933.324,
- "text": "decisions."
- },
- {
- "id": 2399,
- "start": 933.574,
- "end": 933.704,
- "text": "And"
- },
- {
- "id": 2400,
- "start": 933.704,
- "end": 933.904,
- "text": "that’s"
- },
- {
- "id": 2401,
- "start": 933.904,
- "end": 934.744,
- "text": "why"
- },
- {
- "id": 2402,
- "start": 934.744,
- "end": 934.844,
- "text": "it"
- },
- {
- "id": 2403,
- "start": 934.844,
- "end": 934.984,
- "text": "was"
- },
- {
- "id": 2404,
- "start": 934.984,
- "end": 935.304,
- "text": "really"
- },
- {
- "id": 2405,
- "start": 935.304,
- "end": 935.774,
- "text": "important"
- },
- {
- "id": 2406,
- "start": 935.774,
- "end": 935.914,
- "text": "for"
- },
- {
- "id": 2407,
- "start": 935.914,
- "end": 936.344,
- "text": "us"
- },
- {
- "id": 2408,
- "start": 936.344,
- "end": 936.614,
- "text": "to"
- },
- {
- "id": 2409,
- "start": 936.614,
- "end": 937.144,
- "text": "publish"
- },
- {
- "id": 2410,
- "start": 937.144,
- "end": 937.224,
- "text": "the"
- },
- {
- "id": 2411,
- "start": 937.224,
- "end": 937.634,
- "text": "community"
- },
- {
- "id": 2412,
- "start": 937.634,
- "end": 938.754,
- "text": "standards"
- },
- {
- "id": 2413,
- "start": 938.754,
- "end": 938.904,
- "text": "in"
- },
- {
- "id": 2414,
- "start": 938.904,
- "end": 939.074,
- "text": "their"
- },
- {
- "id": 2415,
- "start": 939.074,
- "end": 939.594,
- "text": "full"
- },
- {
- "id": 2416,
- "start": 939.594,
- "end": 940.114,
- "text": "internal"
- },
- {
- "id": 2417,
- "start": 940.114,
- "end": 941.214,
- "text": "guidelines"
- },
- {
- "id": 2418,
- "start": 941.214,
- "end": 941.414,
- "text": "so"
- },
- {
- "id": 2419,
- "start": 941.414,
- "end": 941.814,
- "text": "that"
- },
- {
- "id": 2420,
- "start": 941.814,
- "end": 942.144,
- "text": "people"
- },
- {
- "id": 2421,
- "start": 942.144,
- "end": 942.294,
- "text": "could"
- },
- {
- "id": 2422,
- "start": 942.294,
- "end": 942.674,
- "text": "actually"
- },
- {
- "id": 2423,
- "start": 942.674,
- "end": 943.384,
- "text": "look"
- },
- {
- "id": 2424,
- "start": 943.384,
- "end": 943.564,
- "text": "and"
- },
- {
- "id": 2425,
- "start": 943.564,
- "end": 944.204,
- "text": "understand"
- },
- {
- "id": 2426,
- "start": 944.204,
- "end": 944.364,
- "text": "what"
- },
- {
- "id": 2427,
- "start": 944.364,
- "end": 944.854,
- "text": "decisions"
- },
- {
- "id": 2428,
- "start": 944.854,
- "end": 944.974,
- "text": "were"
- },
- {
- "id": 2429,
- "start": 944.974,
- "end": 945.204,
- "text": "being"
- },
- {
- "id": 2430,
- "start": 945.4539999999998,
- "end": 945.8890000000001,
- "text": "made"
- },
- {
- "id": 2431,
- "start": 945.934,
- "end": 946.574,
- "text": "and"
- },
- {
- "id": 2432,
- "start": 946.574,
- "end": 946.864,
- "text": "when"
- },
- {
- "id": 2433,
- "start": 946.864,
- "end": 946.984,
- "text": "we"
- },
- {
- "id": 2434,
- "start": 946.984,
- "end": 947.214,
- "text": "make"
- },
- {
- "id": 2435,
- "start": 947.3389999999999,
- "end": 947.8740000000001,
- "text": "mistakes."
- },
- {
- "id": 2436,
- "start": 947.694,
- "end": 948.534,
- "text": "And"
- },
- {
- "id": 2437,
- "start": 948.534,
- "end": 949.024,
- "text": "mistakes"
- },
- {
- "id": 2438,
- "start": 949.024,
- "end": 949.154,
- "text": "will"
- },
- {
- "id": 2439,
- "start": 949.154,
- "end": 949.264,
- "text": "be"
- },
- {
- "id": 2440,
- "start": 949.799,
- "end": 949.9440000000001,
- "text": "made."
- },
- {
- "id": 2441,
- "start": 950.444,
- "end": 950.624,
- "text": "They"
- },
- {
- "id": 2442,
- "start": 950.624,
- "end": 950.774,
- "text": "can"
- },
- {
- "id": 2443,
- "start": 951.3690000000001,
- "end": 951.534,
- "text": "understand:"
- },
- {
- "id": 2444,
- "start": 952.114,
- "end": 952.294,
- "text": "Is"
- },
- {
- "id": 2445,
- "start": 952.294,
- "end": 952.454,
- "text": "it"
- },
- {
- "id": 2446,
- "start": 952.454,
- "end": 952.704,
- "text": "just"
- },
- {
- "id": 2447,
- "start": 952.7139999999999,
- "end": 952.9273333333333,
- "text": "a"
- },
- {
- "id": 2448,
- "start": 952.9739999999999,
- "end": 953.1506666666667,
- "text": "mistake"
- },
- {
- "id": 2449,
- "start": 953.234,
- "end": 953.374,
- "text": "that"
- },
- {
- "id": 2450,
- "start": 953.374,
- "end": 953.544,
- "text": "was"
- },
- {
- "id": 2451,
- "start": 953.544,
- "end": 953.984,
- "text": "made"
- },
- {
- "id": 2452,
- "start": 954.5990000000002,
- "end": 954.9589999999998,
- "text": "as"
- },
- {
- "id": 2453,
- "start": 955.654,
- "end": 955.934,
- "text": "part"
- },
- {
- "id": 2454,
- "start": 955.934,
- "end": 956.034,
- "text": "of"
- },
- {
- "id": 2455,
- "start": 956.034,
- "end": 956.124,
- "text": "the"
- },
- {
- "id": 2456,
- "start": 956.124,
- "end": 956.624,
- "text": "enforcement"
- },
- {
- "id": 2457,
- "start": 956.624,
- "end": 957.194,
- "text": "process,"
- },
- {
- "id": 2458,
- "start": 957.184,
- "end": 957.654,
- "text": "or"
- },
- {
- "id": 2459,
- "start": 957.644,
- "end": 957.924,
- "text": "am"
- },
- {
- "id": 2460,
- "start": 958.104,
- "end": 958.194,
- "text": "I"
- },
- {
- "id": 2461,
- "start": 958.194,
- "end": 959.064,
- "text": "disagreeing"
- },
- {
- "id": 2462,
- "start": 959.064,
- "end": 959.594,
- "text": "with"
- },
- {
- "id": 2463,
- "start": 959.594,
- "end": 959.924,
- "text": "the"
- },
- {
- "id": 2464,
- "start": 959.924,
- "end": 960.394,
- "text": "rules"
- },
- {
- "id": 2465,
- "start": 960.394,
- "end": 960.514,
- "text": "and"
- },
- {
- "id": 2466,
- "start": 960.514,
- "end": 960.584,
- "text": "the"
- },
- {
- "id": 2467,
- "start": 960.584,
- "end": 960.754,
- "text": "way"
- },
- {
- "id": 2468,
- "start": 960.754,
- "end": 960.894,
- "text": "that"
- },
- {
- "id": 2469,
- "start": 960.894,
- "end": 961.044,
- "text": "they’re"
- },
- {
- "id": 2470,
- "start": 961.044,
- "end": 961.464,
- "text": "written?"
- },
- {
- "id": 2471,
- "start": 961.464,
- "end": 961.644,
- "text": "And"
- },
- {
- "id": 2472,
- "start": 961.644,
- "end": 961.754,
- "text": "we"
- },
- {
- "id": 2473,
- "start": 961.754,
- "end": 962.874,
- "text": "welcome"
- },
- {
- "id": 2474,
- "start": 962.874,
- "end": 962.974,
- "text": "the"
- },
- {
- "id": 2475,
- "start": 962.974,
- "end": 963.454,
- "text": "continued"
- },
- {
- "id": 2476,
- "start": 963.454,
- "end": 964.194,
- "text": "conversation"
- },
- {
- "id": 2477,
- "start": 964.2204999999999,
- "end": 964.7255,
- "text": "about"
- },
- {
- "id": 2478,
- "start": 964.987,
- "end": 965.257,
- "text": "where"
- },
- {
- "id": 2479,
- "start": 965.257,
- "end": 965.537,
- "text": "those"
- },
- {
- "id": 2480,
- "start": 965.537,
- "end": 965.827,
- "text": "lines"
- },
- {
- "id": 2481,
- "start": 965.827,
- "end": 967.287,
- "text": "are."
- },
- {
- "id": 2482,
- "start": 967.287,
- "end": 967.677,
- "text": "So"
- },
- {
- "id": 2483,
- "start": 967.677,
- "end": 967.827,
- "text": "what"
- },
- {
- "id": 2484,
- "start": 967.827,
- "end": 968.317,
- "text": "assurance"
- },
- {
- "id": 2485,
- "start": 968.317,
- "end": 968.517,
- "text": "could"
- },
- {
- "id": 2486,
- "start": 968.517,
- "end": 968.637,
- "text": "you"
- },
- {
- "id": 2487,
- "start": 968.637,
- "end": 968.837,
- "text": "give,"
- },
- {
- "id": 2488,
- "start": 968.7036666666665,
- "end": 968.867,
- "text": "for"
- },
- {
- "id": 2489,
- "start": 968.7703333333333,
- "end": 968.897,
- "text": "instance,"
- },
- {
- "id": 2490,
- "start": 968.837,
- "end": 968.927,
- "text": "to"
- },
- {
- "id": 2491,
- "start": 968.927,
- "end": 969.897,
- "text": "someone"
- },
- {
- "id": 2492,
- "start": 969.897,
- "end": 970.057,
- "text": "in"
- },
- {
- "id": 2493,
- "start": 970.057,
- "end": 970.967,
- "text": "Ukraine"
- },
- {
- "id": 2494,
- "start": 970.967,
- "end": 971.407,
- "text": "that"
- },
- {
- "id": 2495,
- "start": 971.407,
- "end": 971.667,
- "text": "his"
- },
- {
- "id": 2496,
- "start": 971.667,
- "end": 971.747,
- "text": "or"
- },
- {
- "id": 2497,
- "start": 971.747,
- "end": 971.957,
- "text": "her"
- },
- {
- "id": 2498,
- "start": 971.957,
- "end": 972.617,
- "text": "content"
- },
- {
- "id": 2499,
- "start": 972.617,
- "end": 972.817,
- "text": "that"
- },
- {
- "id": 2500,
- "start": 972.817,
- "end": 973.057,
- "text": "either"
- },
- {
- "id": 2501,
- "start": 973.057,
- "end": 973.197,
- "text": "has"
- },
- {
- "id": 2502,
- "start": 973.197,
- "end": 973.357,
- "text": "been"
- },
- {
- "id": 2503,
- "start": 973.357,
- "end": 973.697,
- "text": "taken"
- },
- {
- "id": 2504,
- "start": 973.697,
- "end": 974.117,
- "text": "down"
- },
- {
- "id": 2505,
- "start": 974.117,
- "end": 976.307,
- "text": "or"
- },
- {
- "id": 2506,
- "start": 976.307,
- "end": 976.867,
- "text": "was"
- },
- {
- "id": 2507,
- "start": 976.867,
- "end": 977.457,
- "text": "reported"
- },
- {
- "id": 2508,
- "start": 977.162,
- "end": 977.747,
- "text": "as"
- },
- {
- "id": 2509,
- "start": 977.457,
- "end": 978.037,
- "text": "problematic"
- },
- {
- "id": 2510,
- "start": 978.037,
- "end": 978.897,
- "text": "content,"
- },
- {
- "id": 2511,
- "start": 978.897,
- "end": 979.907,
- "text": "that"
- },
- {
- "id": 2512,
- "start": 979.907,
- "end": 980.027,
- "text": "the"
- },
- {
- "id": 2513,
- "start": 980.027,
- "end": 980.477,
- "text": "person"
- },
- {
- "id": 2514,
- "start": 980.397,
- "end": 980.927,
- "text": "who’s"
- },
- {
- "id": 2515,
- "start": 980.767,
- "end": 981.377,
- "text": "doing"
- },
- {
- "id": 2516,
- "start": 981.377,
- "end": 981.707,
- "text": "the"
- },
- {
- "id": 2517,
- "start": 981.707,
- "end": 983.147,
- "text": "moderating,"
- },
- {
- "id": 2518,
- "start": 983.147,
- "end": 983.617,
- "text": "the"
- },
- {
- "id": 2519,
- "start": 983.617,
- "end": 983.947,
- "text": "people"
- },
- {
- "id": 2520,
- "start": 983.947,
- "end": 984.077,
- "text": "that"
- },
- {
- "id": 2521,
- "start": 984.077,
- "end": 984.137,
- "text": "are"
- },
- {
- "id": 2522,
- "start": 984.137,
- "end": 984.447,
- "text": "doing"
- },
- {
- "id": 2523,
- "start": 984.447,
- "end": 984.747,
- "text": "it,"
- },
- {
- "id": 2524,
- "start": 984.747,
- "end": 985.547,
- "text": "are"
- },
- {
- "id": 2525,
- "start": 985.547,
- "end": 985.877,
- "text": "either"
- },
- {
- "id": 2526,
- "start": 985.877,
- "end": 986.937,
- "text": "Ukrainian"
- },
- {
- "id": 2527,
- "start": 986.937,
- "end": 987.467,
- "text": "or"
- },
- {
- "id": 2528,
- "start": 987.467,
- "end": 988.287,
- "text": "Russian"
- },
- {
- "id": 2529,
- "start": 988.287,
- "end": 988.997,
- "text": "or"
- },
- {
- "id": 2530,
- "start": 988.997,
- "end": 989.347,
- "text": "what’s"
- },
- {
- "id": 2531,
- "start": 989.347,
- "end": 989.537,
- "text": "their"
- },
- {
- "id": 2532,
- "start": 989.537,
- "end": 990.397,
- "text": "background?"
- },
- {
- "id": 2533,
- "start": 990.397,
- "end": 990.807,
- "text": "Because"
- },
- {
- "id": 2534,
- "start": 990.807,
- "end": 991.267,
- "text": "everyone’s"
- },
- {
- "id": 2535,
- "start": 991.037,
- "end": 991.452,
- "text": "going"
- },
- {
- "id": 2536,
- "start": 991.267,
- "end": 991.637,
- "text": "to"
- },
- {
- "id": 2537,
- "start": 991.4970000000001,
- "end": 991.8219999999999,
- "text": "–"
- },
- {
- "id": 2538,
- "start": 991.727,
- "end": 992.007,
- "text": "any"
- },
- {
- "id": 2539,
- "start": 992.007,
- "end": 992.997,
- "text": "individual,"
- },
- {
- "id": 2540,
- "start": 992.997,
- "end": 993.437,
- "text": "despite"
- },
- {
- "id": 2541,
- "start": 993.437,
- "end": 993.527,
- "text": "the"
- },
- {
- "id": 2542,
- "start": 993.527,
- "end": 993.837,
- "text": "rules"
- },
- {
- "id": 2543,
- "start": 993.837,
- "end": 993.917,
- "text": "you"
- },
- {
- "id": 2544,
- "start": 993.917,
- "end": 994.077,
- "text": "might"
- },
- {
- "id": 2545,
- "start": 994.077,
- "end": 994.227,
- "text": "have"
- },
- {
- "id": 2546,
- "start": 994.227,
- "end": 994.347,
- "text": "in"
- },
- {
- "id": 2547,
- "start": 994.347,
- "end": 995.107,
- "text": "place,"
- },
- {
- "id": 2548,
- "start": 995.107,
- "end": 995.297,
- "text": "could"
- },
- {
- "id": 2549,
- "start": 995.297,
- "end": 995.757,
- "text": "probably"
- },
- {
- "id": 2550,
- "start": 995.757,
- "end": 995.987,
- "text": "bring"
- },
- {
- "id": 2551,
- "start": 995.987,
- "end": 996.197,
- "text": "some"
- },
- {
- "id": 2552,
- "start": 996.197,
- "end": 996.657,
- "text": "bias"
- },
- {
- "id": 2553,
- "start": 996.657,
- "end": 997.527,
- "text": "to"
- },
- {
- "id": 2554,
- "start": 997.527,
- "end": 998.147,
- "text": "what"
- },
- {
- "id": 2555,
- "start": 998.147,
- "end": 998.227,
- "text": "it"
- },
- {
- "id": 2556,
- "start": 998.227,
- "end": 998.437,
- "text": "is"
- },
- {
- "id": 2557,
- "start": 998.437,
- "end": 998.617,
- "text": "that"
- },
- {
- "id": 2558,
- "start": 999.092,
- "end": 999.517,
- "text": "they’re"
- },
- {
- "id": 2559,
- "start": 999.747,
- "end": 1000.417,
- "text": "reviewing"
- },
- {
- "id": 2560,
- "start": 1000.417,
- "end": 1001.027,
- "text": "or"
- },
- {
- "id": 2561,
- "start": 1001.027,
- "end": 1001.247,
- "text": "they"
- },
- {
- "id": 2562,
- "start": 1001.247,
- "end": 1001.667,
- "text": "could"
- },
- {
- "id": 2563,
- "start": 1001.667,
- "end": 1002.097,
- "text": "come"
- },
- {
- "id": 2564,
- "start": 1002.087,
- "end": 1002.517,
- "text": "from"
- },
- {
- "id": 2565,
- "start": 1002.302,
- "end": 1002.6120000000001,
- "text": "–"
- },
- {
- "id": 2566,
- "start": 1002.517,
- "end": 1002.707,
- "text": "and"
- },
- {
- "id": 2567,
- "start": 1002.707,
- "end": 1002.937,
- "text": "think"
- },
- {
- "id": 2568,
- "start": 1002.937,
- "end": 1003.217,
- "text": "one"
- },
- {
- "id": 2569,
- "start": 1003.217,
- "end": 1003.897,
- "text": "word"
- },
- {
- "id": 2570,
- "start": 1003.897,
- "end": 1004.207,
- "text": "means"
- },
- {
- "id": 2571,
- "start": 1004.207,
- "end": 1004.557,
- "text": "something"
- },
- {
- "id": 2572,
- "start": 1004.557,
- "end": 1004.657,
- "text": "in"
- },
- {
- "id": 2573,
- "start": 1004.657,
- "end": 1005.977,
- "text": "Ukrainian"
- },
- {
- "id": 2574,
- "start": 1005.977,
- "end": 1006.257,
- "text": "that"
- },
- {
- "id": 2575,
- "start": 1006.257,
- "end": 1006.327,
- "text": "it"
- },
- {
- "id": 2576,
- "start": 1006.327,
- "end": 1006.587,
- "text": "doesn’t"
- },
- {
- "id": 2577,
- "start": 1006.587,
- "end": 1006.707,
- "text": "mean"
- },
- {
- "id": 2578,
- "start": 1006.707,
- "end": 1006.817,
- "text": "in"
- },
- {
- "id": 2579,
- "start": 1006.817,
- "end": 1007.157,
- "text": "Russian,"
- },
- {
- "id": 2580,
- "start": 1007.157,
- "end": 1007.317,
- "text": "for"
- },
- {
- "id": 2581,
- "start": 1007.317,
- "end": 1008.947,
- "text": "instance."
- },
- {
- "id": 2582,
- "start": 1008.947,
- "end": 1009.477,
- "text": "We"
- },
- {
- "id": 2583,
- "start": 1009.477,
- "end": 1009.877,
- "text": "employ"
- },
- {
- "id": 2584,
- "start": 1009.877,
- "end": 1010.267,
- "text": "people"
- },
- {
- "id": 2585,
- "start": 1010.267,
- "end": 1010.647,
- "text": "who"
- },
- {
- "id": 2586,
- "start": 1010.647,
- "end": 1011.037,
- "text": "bring"
- },
- {
- "id": 2587,
- "start": 1011.037,
- "end": 1011.277,
- "text": "in"
- },
- {
- "id": 2588,
- "start": 1011.277,
- "end": 1011.357,
- "text": "a"
- },
- {
- "id": 2589,
- "start": 1011.357,
- "end": 1011.957,
- "text": "variety"
- },
- {
- "id": 2590,
- "start": 1011.957,
- "end": 1012.107,
- "text": "of"
- },
- {
- "id": 2591,
- "start": 1012.107,
- "end": 1012.217,
- "text": "the"
- },
- {
- "id": 2592,
- "start": 1012.217,
- "end": 1012.517,
- "text": "local"
- },
- {
- "id": 2593,
- "start": 1013.2470000000003,
- "end": 1013.5020000000002,
- "text": "context."
- },
- {
- "id": 2594,
- "start": 1014.277,
- "end": 1014.487,
- "text": "How"
- },
- {
- "id": 2595,
- "start": 1014.487,
- "end": 1014.577,
- "text": "can"
- },
- {
- "id": 2596,
- "start": 1014.607,
- "end": 1014.722,
- "text": "people"
- },
- {
- "id": 2597,
- "start": 1014.727,
- "end": 1014.867,
- "text": "be"
- },
- {
- "id": 2598,
- "start": 1014.867,
- "end": 1015.377,
- "text": "assured"
- },
- {
- "id": 2599,
- "start": 1015.377,
- "end": 1015.487,
- "text": "of"
- },
- {
- "id": 2600,
- "start": 1015.487,
- "end": 1018.157,
- "text": "that?"
- },
- {
- "id": 2601,
- "start": 1018.157,
- "end": 1018.187,
- "text": "I"
- },
- {
- "id": 2602,
- "start": 1018.187,
- "end": 1018.327,
- "text": "mean"
- },
- {
- "id": 2603,
- "start": 1018.327,
- "end": 1018.497,
- "text": "what"
- },
- {
- "id": 2604,
- "start": 1018.497,
- "end": 1019.247,
- "text": "transparency"
- },
- {
- "id": 2605,
- "start": 1019.247,
- "end": 1019.447,
- "text": "could"
- },
- {
- "id": 2606,
- "start": 1019.447,
- "end": 1019.567,
- "text": "you"
- },
- {
- "id": 2607,
- "start": 1019.567,
- "end": 1020.447,
- "text": "offer"
- },
- {
- "id": 2608,
- "start": 1020.447,
- "end": 1020.967,
- "text": "to"
- },
- {
- "id": 2609,
- "start": 1020.967,
- "end": 1021.687,
- "text": "us"
- },
- {
- "id": 2610,
- "start": 1021.687,
- "end": 1022.027,
- "text": "or"
- },
- {
- "id": 2611,
- "start": 1022.027,
- "end": 1022.437,
- "text": "to"
- },
- {
- "id": 2612,
- "start": 1022.437,
- "end": 1022.777,
- "text": "people"
- },
- {
- "id": 2613,
- "start": 1022.777,
- "end": 1022.947,
- "text": "that"
- },
- {
- "id": 2614,
- "start": 1022.947,
- "end": 1023.977,
- "text": "are"
- },
- {
- "id": 2615,
- "start": 1023.977,
- "end": 1024.437,
- "text": "affected"
- },
- {
- "id": 2616,
- "start": 1024.437,
- "end": 1024.797,
- "text": "by"
- },
- {
- "id": 2617,
- "start": 1024.727,
- "end": 1025.397,
- "text": "content"
- },
- {
- "id": 2618,
- "start": 1025.062,
- "end": 1025.5169999999998,
- "text": "–"
- },
- {
- "id": 2619,
- "start": 1025.397,
- "end": 1025.637,
- "text": "either"
- },
- {
- "id": 2620,
- "start": 1025.637,
- "end": 1025.837,
- "text": "good"
- },
- {
- "id": 2621,
- "start": 1025.837,
- "end": 1025.927,
- "text": "or"
- },
- {
- "id": 2622,
- "start": 1025.927,
- "end": 1026.227,
- "text": "bad"
- },
- {
- "id": 2623,
- "start": 1026.227,
- "end": 1026.767,
- "text": "content"
- },
- {
- "id": 2624,
- "start": 1026.612,
- "end": 1027.257,
- "text": "–"
- },
- {
- "id": 2625,
- "start": 1026.997,
- "end": 1027.747,
- "text": "that"
- },
- {
- "id": 2626,
- "start": 1027.747,
- "end": 1028.147,
- "text": "these"
- },
- {
- "id": 2627,
- "start": 1028.147,
- "end": 1028.497,
- "text": "people"
- },
- {
- "id": 2628,
- "start": 1028.497,
- "end": 1029.257,
- "text": "actually"
- },
- {
- "id": 2629,
- "start": 1029.257,
- "end": 1029.567,
- "text": "do"
- },
- {
- "id": 2630,
- "start": 1029.567,
- "end": 1030.037,
- "text": "reflect"
- },
- {
- "id": 2631,
- "start": 1030.037,
- "end": 1030.497,
- "text": "something"
- },
- {
- "id": 2632,
- "start": 1030.497,
- "end": 1031.077,
- "text": "that’s"
- },
- {
- "id": 2633,
- "start": 1031.077,
- "end": 1031.287,
- "text": "more"
- },
- {
- "id": 2634,
- "start": 1031.287,
- "end": 1032.387,
- "text": "nuanced"
- },
- {
- "id": 2635,
- "start": 1032.387,
- "end": 1032.577,
- "text": "if"
- },
- {
- "id": 2636,
- "start": 1032.577,
- "end": 1032.697,
- "text": "we"
- },
- {
- "id": 2637,
- "start": 1032.697,
- "end": 1032.917,
- "text": "don’t"
- },
- {
- "id": 2638,
- "start": 1032.917,
- "end": 1033.177,
- "text": "know"
- },
- {
- "id": 2639,
- "start": 1033.177,
- "end": 1033.337,
- "text": "who"
- },
- {
- "id": 2640,
- "start": 1033.337,
- "end": 1033.527,
- "text": "they"
- },
- {
- "id": 2641,
- "start": 1034.037,
- "end": 1034.277,
- "text": "are?"
- },
- {
- "id": 2642,
- "start": 1034.737,
- "end": 1035.027,
- "text": "One"
- },
- {
- "id": 2643,
- "start": 1035.027,
- "end": 1035.097,
- "text": "of"
- },
- {
- "id": 2644,
- "start": 1035.097,
- "end": 1035.187,
- "text": "the"
- },
- {
- "id": 2645,
- "start": 1035.187,
- "end": 1035.397,
- "text": "things"
- },
- {
- "id": 2646,
- "start": 1035.397,
- "end": 1035.617,
- "text": "that’s"
- },
- {
- "id": 2647,
- "start": 1035.617,
- "end": 1036.097,
- "text": "really"
- },
- {
- "id": 2648,
- "start": 1036.097,
- "end": 1036.677,
- "text": "important"
- },
- {
- "id": 2649,
- "start": 1036.677,
- "end": 1036.837,
- "text": "that"
- },
- {
- "id": 2650,
- "start": 1036.837,
- "end": 1037.017,
- "text": "we’ve"
- },
- {
- "id": 2651,
- "start": 1037.017,
- "end": 1037.177,
- "text": "been"
- },
- {
- "id": 2652,
- "start": 1037.177,
- "end": 1037.527,
- "text": "rolling"
- },
- {
- "id": 2653,
- "start": 1037.527,
- "end": 1037.687,
- "text": "out"
- },
- {
- "id": 2654,
- "start": 1037.687,
- "end": 1037.907,
- "text": "this"
- },
- {
- "id": 2655,
- "start": 1037.907,
- "end": 1038.257,
- "text": "year"
- },
- {
- "id": 2656,
- "start": 1038.257,
- "end": 1038.377,
- "text": "is"
- },
- {
- "id": 2657,
- "start": 1038.377,
- "end": 1038.487,
- "text": "the"
- },
- {
- "id": 2658,
- "start": 1038.487,
- "end": 1038.937,
- "text": "ability"
- },
- {
- "id": 2659,
- "start": 1038.937,
- "end": 1039.377,
- "text": "to"
- },
- {
- "id": 2660,
- "start": 1039.377,
- "end": 1040.247,
- "text": "appeal."
- },
- {
- "id": 2661,
- "start": 1040.247,
- "end": 1040.617,
- "text": "So"
- },
- {
- "id": 2662,
- "start": 1040.617,
- "end": 1040.767,
- "text": "if"
- },
- {
- "id": 2663,
- "start": 1040.767,
- "end": 1040.807,
- "text": "a"
- },
- {
- "id": 2664,
- "start": 1040.807,
- "end": 1041.047,
- "text": "piece"
- },
- {
- "id": 2665,
- "start": 1041.047,
- "end": 1041.137,
- "text": "of"
- },
- {
- "id": 2666,
- "start": 1041.137,
- "end": 1041.597,
- "text": "content"
- },
- {
- "id": 2667,
- "start": 1041.4270000000001,
- "end": 1041.817,
- "text": "is"
- },
- {
- "id": 2668,
- "start": 1041.717,
- "end": 1042.037,
- "text": "taken"
- },
- {
- "id": 2669,
- "start": 1042.037,
- "end": 1042.377,
- "text": "down,"
- },
- {
- "id": 2670,
- "start": 1042.377,
- "end": 1042.477,
- "text": "if"
- },
- {
- "id": 2671,
- "start": 1042.477,
- "end": 1042.517,
- "text": "a"
- },
- {
- "id": 2672,
- "start": 1042.517,
- "end": 1042.787,
- "text": "certain"
- },
- {
- "id": 2673,
- "start": 1042.787,
- "end": 1043.227,
- "text": "decision"
- },
- {
- "id": 2674,
- "start": 1043.227,
- "end": 1043.377,
- "text": "is"
- },
- {
- "id": 2675,
- "start": 1043.377,
- "end": 1044.447,
- "text": "made,"
- },
- {
- "id": 2676,
- "start": 1044.447,
- "end": 1045.037,
- "text": "people"
- },
- {
- "id": 2677,
- "start": 1045.037,
- "end": 1045.357,
- "text": "should"
- },
- {
- "id": 2678,
- "start": 1045.357,
- "end": 1045.567,
- "text": "have"
- },
- {
- "id": 2679,
- "start": 1045.567,
- "end": 1045.677,
- "text": "the"
- },
- {
- "id": 2680,
- "start": 1045.677,
- "end": 1046.327,
- "text": "ability"
- },
- {
- "id": 2681,
- "start": 1046.327,
- "end": 1046.497,
- "text": "to"
- },
- {
- "id": 2682,
- "start": 1046.497,
- "end": 1046.957,
- "text": "ask"
- },
- {
- "id": 2683,
- "start": 1046.957,
- "end": 1047.127,
- "text": "for"
- },
- {
- "id": 2684,
- "start": 1047.127,
- "end": 1047.197,
- "text": "an"
- },
- {
- "id": 2685,
- "start": 1047.197,
- "end": 1047.637,
- "text": "additional"
- },
- {
- "id": 2686,
- "start": 1047.637,
- "end": 1048.647,
- "text": "review"
- },
- {
- "id": 2687,
- "start": 1048.647,
- "end": 1049.057,
- "text": "and"
- },
- {
- "id": 2688,
- "start": 1049.057,
- "end": 1049.417,
- "text": "provide"
- },
- {
- "id": 2689,
- "start": 1049.417,
- "end": 1049.837,
- "text": "additional"
- },
- {
- "id": 2690,
- "start": 1050.1119999999999,
- "end": 1050.477,
- "text": "context."
- },
- {
- "id": 2691,
- "start": 1050.807,
- "end": 1051.117,
- "text": "And"
- },
- {
- "id": 2692,
- "start": 1051.117,
- "end": 1051.257,
- "text": "we"
- },
- {
- "id": 2693,
- "start": 1051.257,
- "end": 1051.587,
- "text": "use"
- },
- {
- "id": 2694,
- "start": 1051.587,
- "end": 1052.457,
- "text": "those,"
- },
- {
- "id": 2695,
- "start": 1052.457,
- "end": 1052.817,
- "text": "first"
- },
- {
- "id": 2696,
- "start": 1052.817,
- "end": 1052.897,
- "text": "of"
- },
- {
- "id": 2697,
- "start": 1052.897,
- "end": 1053.127,
- "text": "all,"
- },
- {
- "id": 2698,
- "start": 1053.127,
- "end": 1053.267,
- "text": "to"
- },
- {
- "id": 2699,
- "start": 1053.267,
- "end": 1053.547,
- "text": "help"
- },
- {
- "id": 2700,
- "start": 1053.547,
- "end": 1053.777,
- "text": "to"
- },
- {
- "id": 2701,
- "start": 1053.777,
- "end": 1054.257,
- "text": "correct"
- },
- {
- "id": 2702,
- "start": 1054.257,
- "end": 1054.787,
- "text": "mistakes"
- },
- {
- "id": 2703,
- "start": 1054.787,
- "end": 1055.087,
- "text": "that"
- },
- {
- "id": 2704,
- "start": 1055.087,
- "end": 1055.317,
- "text": "may"
- },
- {
- "id": 2705,
- "start": 1055.317,
- "end": 1055.447,
- "text": "be"
- },
- {
- "id": 2706,
- "start": 1055.447,
- "end": 1056.247,
- "text": "made,"
- },
- {
- "id": 2707,
- "start": 1056.247,
- "end": 1056.457,
- "text": "but"
- },
- {
- "id": 2708,
- "start": 1056.457,
- "end": 1056.817,
- "text": "also"
- },
- {
- "id": 2709,
- "start": 1056.817,
- "end": 1056.977,
- "text": "to"
- },
- {
- "id": 2710,
- "start": 1056.977,
- "end": 1057.347,
- "text": "provide"
- },
- {
- "id": 2711,
- "start": 1057.347,
- "end": 1057.397,
- "text": "a"
- },
- {
- "id": 2712,
- "start": 1057.397,
- "end": 1058.377,
- "text": "signal"
- },
- {
- "id": 2713,
- "start": 1058.377,
- "end": 1058.567,
- "text": "that"
- },
- {
- "id": 2714,
- "start": 1058.567,
- "end": 1058.697,
- "text": "we"
- },
- {
- "id": 2715,
- "start": 1058.697,
- "end": 1058.877,
- "text": "can"
- },
- {
- "id": 2716,
- "start": 1058.877,
- "end": 1059.847,
- "text": "see"
- },
- {
- "id": 2717,
- "start": 1059.847,
- "end": 1060.507,
- "text": "where"
- },
- {
- "id": 2718,
- "start": 1060.507,
- "end": 1061.107,
- "text": "and"
- },
- {
- "id": 2719,
- "start": 1061.107,
- "end": 1061.367,
- "text": "what"
- },
- {
- "id": 2720,
- "start": 1061.367,
- "end": 1061.607,
- "text": "kind"
- },
- {
- "id": 2721,
- "start": 1061.607,
- "end": 1061.707,
- "text": "of"
- },
- {
- "id": 2722,
- "start": 1061.707,
- "end": 1062.457,
- "text": "mistakes"
- },
- {
- "id": 2723,
- "start": 1062.457,
- "end": 1063.097,
- "text": "maybe"
- },
- {
- "id": 2724,
- "start": 1063.097,
- "end": 1063.347,
- "text": "are"
- },
- {
- "id": 2725,
- "start": 1063.347,
- "end": 1063.567,
- "text": "being"
- },
- {
- "id": 2726,
- "start": 1063.567,
- "end": 1064.127,
- "text": "made"
- },
- {
- "id": 2727,
- "start": 1064.127,
- "end": 1064.287,
- "text": "so"
- },
- {
- "id": 2728,
- "start": 1064.287,
- "end": 1064.407,
- "text": "that"
- },
- {
- "id": 2729,
- "start": 1064.407,
- "end": 1064.517,
- "text": "we"
- },
- {
- "id": 2730,
- "start": 1064.517,
- "end": 1064.677,
- "text": "can"
- },
- {
- "id": 2731,
- "start": 1064.677,
- "end": 1065.147,
- "text": "continue"
- },
- {
- "id": 2732,
- "start": 1065.147,
- "end": 1065.237,
- "text": "to"
- },
- {
- "id": 2733,
- "start": 1065.237,
- "end": 1066.267,
- "text": "improve"
- },
- {
- "id": 2734,
- "start": 1065.997,
- "end": 1066.527,
- "text": "those"
- },
- {
- "id": 2735,
- "start": 1066.5703333333333,
- "end": 1067.0136666666667,
- "text": "systems."
- },
- {
- "id": 2736,
- "start": 1067.1436666666666,
- "end": 1067.5003333333334,
- "text": "Now,"
- },
- {
- "id": 2737,
- "start": 1067.717,
- "end": 1067.987,
- "text": "more"
- },
- {
- "id": 2738,
- "start": 1067.987,
- "end": 1069.747,
- "text": "broadly"
- },
- {
- "id": 2739,
- "start": 1068.627,
- "end": 1069.987,
- "text": "we"
- },
- {
- "id": 2740,
- "start": 1069.217,
- "end": 1070.1703333333335,
- "text": "are"
- },
- {
- "id": 2741,
- "start": 1069.807,
- "end": 1070.3536666666666,
- "text": "–"
- },
- {
- "id": 2742,
- "start": 1070.397,
- "end": 1070.537,
- "text": "we"
- },
- {
- "id": 2743,
- "start": 1070.537,
- "end": 1070.627,
- "text": "have"
- },
- {
- "id": 2744,
- "start": 1070.627,
- "end": 1070.747,
- "text": "been"
- },
- {
- "id": 2745,
- "start": 1070.747,
- "end": 1071.007,
- "text": "very"
- },
- {
- "id": 2746,
- "start": 1071.007,
- "end": 1071.527,
- "text": "focused"
- },
- {
- "id": 2747,
- "start": 1071.527,
- "end": 1071.857,
- "text": "on"
- },
- {
- "id": 2748,
- "start": 1071.857,
- "end": 1072.607,
- "text": "sharing"
- },
- {
- "id": 2749,
- "start": 1072.607,
- "end": 1073.647,
- "text": "and"
- },
- {
- "id": 2750,
- "start": 1073.647,
- "end": 1074.947,
- "text": "publishing"
- },
- {
- "id": 2751,
- "start": 1074.947,
- "end": 1075.597,
- "text": "metrics"
- },
- {
- "id": 2752,
- "start": 1075.597,
- "end": 1076.137,
- "text": "that"
- },
- {
- "id": 2753,
- "start": 1076.137,
- "end": 1076.387,
- "text": "can"
- },
- {
- "id": 2754,
- "start": 1076.387,
- "end": 1076.607,
- "text": "help"
- },
- {
- "id": 2755,
- "start": 1076.607,
- "end": 1076.767,
- "text": "give"
- },
- {
- "id": 2756,
- "start": 1076.767,
- "end": 1076.817,
- "text": "a"
- },
- {
- "id": 2757,
- "start": 1076.817,
- "end": 1077.157,
- "text": "sense"
- },
- {
- "id": 2758,
- "start": 1077.157,
- "end": 1077.267,
- "text": "of"
- },
- {
- "id": 2759,
- "start": 1077.267,
- "end": 1077.367,
- "text": "the"
- },
- {
- "id": 2760,
- "start": 1077.367,
- "end": 1078.267,
- "text": "progress"
- },
- {
- "id": 2761,
- "start": 1078.267,
- "end": 1078.427,
- "text": "that"
- },
- {
- "id": 2762,
- "start": 1078.427,
- "end": 1078.557,
- "text": "is"
- },
- {
- "id": 2763,
- "start": 1078.557,
- "end": 1078.787,
- "text": "being"
- },
- {
- "id": 2764,
- "start": 1078.787,
- "end": 1079.547,
- "text": "made."
- },
- {
- "id": 2765,
- "start": 1079.547,
- "end": 1080.197,
- "text": "So"
- },
- {
- "id": 2766,
- "start": 1080.197,
- "end": 1080.507,
- "text": "taking"
- },
- {
- "id": 2767,
- "start": 1080.507,
- "end": 1080.557,
- "text": "a"
- },
- {
- "id": 2768,
- "start": 1080.557,
- "end": 1080.777,
- "text": "step"
- },
- {
- "id": 2769,
- "start": 1080.777,
- "end": 1082.047,
- "text": "back,"
- },
- {
- "id": 2770,
- "start": 1082.047,
- "end": 1082.197,
- "text": "one"
- },
- {
- "id": 2771,
- "start": 1082.197,
- "end": 1082.267,
- "text": "of"
- },
- {
- "id": 2772,
- "start": 1082.267,
- "end": 1082.327,
- "text": "the"
- },
- {
- "id": 2773,
- "start": 1082.327,
- "end": 1082.517,
- "text": "most"
- },
- {
- "id": 2774,
- "start": 1082.517,
- "end": 1082.967,
- "text": "important"
- },
- {
- "id": 2775,
- "start": 1082.967,
- "end": 1083.717,
- "text": "things"
- },
- {
- "id": 2776,
- "start": 1083.717,
- "end": 1083.877,
- "text": "in"
- },
- {
- "id": 2777,
- "start": 1083.877,
- "end": 1085.193,
- "text": "approaching"
- },
- {
- "id": 2778,
- "start": 1085.193,
- "end": 1085.433,
- "text": "a"
- },
- {
- "id": 2779,
- "start": 1085.433,
- "end": 1085.833,
- "text": "system"
- },
- {
- "id": 2780,
- "start": 1085.833,
- "end": 1085.973,
- "text": "of"
- },
- {
- "id": 2781,
- "start": 1085.948,
- "end": 1086.393,
- "text": "this"
- },
- {
- "id": 2782,
- "start": 1086.063,
- "end": 1086.813,
- "text": "scale"
- },
- {
- "id": 2783,
- "start": 1086.813,
- "end": 1087.013,
- "text": "has"
- },
- {
- "id": 2784,
- "start": 1087.013,
- "end": 1087.153,
- "text": "been"
- },
- {
- "id": 2785,
- "start": 1087.153,
- "end": 1087.273,
- "text": "to"
- },
- {
- "id": 2786,
- "start": 1087.273,
- "end": 1087.793,
- "text": "take"
- },
- {
- "id": 2787,
- "start": 1087.793,
- "end": 1087.913,
- "text": "a"
- },
- {
- "id": 2788,
- "start": 1087.913,
- "end": 1088.533,
- "text": "methodical"
- },
- {
- "id": 2789,
- "start": 1088.533,
- "end": 1089.553,
- "text": "approach."
- },
- {
- "id": 2790,
- "start": 1089.553,
- "end": 1089.883,
- "text": "And"
- },
- {
- "id": 2791,
- "start": 1089.883,
- "end": 1090.043,
- "text": "the"
- },
- {
- "id": 2792,
- "start": 1090.043,
- "end": 1090.263,
- "text": "most"
- },
- {
- "id": 2793,
- "start": 1090.263,
- "end": 1090.743,
- "text": "important"
- },
- {
- "id": 2794,
- "start": 1090.743,
- "end": 1091.603,
- "text": "thing"
- },
- {
- "id": 2795,
- "start": 1091.603,
- "end": 1091.753,
- "text": "in"
- },
- {
- "id": 2796,
- "start": 1091.753,
- "end": 1091.803,
- "text": "a"
- },
- {
- "id": 2797,
- "start": 1091.803,
- "end": 1092.373,
- "text": "methodical"
- },
- {
- "id": 2798,
- "start": 1092.373,
- "end": 1093.383,
- "text": "approach"
- },
- {
- "id": 2799,
- "start": 1093.383,
- "end": 1093.533,
- "text": "is"
- },
- {
- "id": 2800,
- "start": 1093.533,
- "end": 1093.613,
- "text": "to"
- },
- {
- "id": 2801,
- "start": 1093.613,
- "end": 1093.853,
- "text": "have"
- },
- {
- "id": 2802,
- "start": 1093.853,
- "end": 1094.513,
- "text": "measurement,"
- },
- {
- "id": 2803,
- "start": 1094.358,
- "end": 1094.783,
- "text": "to"
- },
- {
- "id": 2804,
- "start": 1094.863,
- "end": 1095.053,
- "text": "have"
- },
- {
- "id": 2805,
- "start": 1095.053,
- "end": 1095.473,
- "text": "metrics,"
- },
- {
- "id": 2806,
- "start": 1095.473,
- "end": 1095.733,
- "text": "because"
- },
- {
- "id": 2807,
- "start": 1095.733,
- "end": 1096.133,
- "text": "metrics"
- },
- {
- "id": 2808,
- "start": 1096.133,
- "end": 1096.273,
- "text": "will"
- },
- {
- "id": 2809,
- "start": 1096.273,
- "end": 1096.493,
- "text": "help"
- },
- {
- "id": 2810,
- "start": 1096.493,
- "end": 1096.603,
- "text": "us"
- },
- {
- "id": 2811,
- "start": 1097.1505,
- "end": 1097.3155,
- "text": "understand"
- },
- {
- "id": 2812,
- "start": 1097.808,
- "end": 1098.028,
- "text": "the"
- },
- {
- "id": 2813,
- "start": 1098.4655,
- "end": 1098.7405,
- "text": "experiences"
- },
- {
- "id": 2814,
- "start": 1099.123,
- "end": 1099.453,
- "text": "that"
- },
- {
- "id": 2815,
- "start": 1099.453,
- "end": 1099.643,
- "text": "2"
- },
- {
- "id": 2816,
- "start": 1099.643,
- "end": 1099.973,
- "text": "billion"
- },
- {
- "id": 2817,
- "start": 1099.973,
- "end": 1101.053,
- "text": "people"
- },
- {
- "id": 2818,
- "start": 1101.053,
- "end": 1101.503,
- "text": "in"
- },
- {
- "id": 2819,
- "start": 1101.503,
- "end": 1102.093,
- "text": "various"
- },
- {
- "id": 2820,
- "start": 1102.093,
- "end": 1102.543,
- "text": "countries"
- },
- {
- "id": 2821,
- "start": 1102.543,
- "end": 1102.643,
- "text": "are"
- },
- {
- "id": 2822,
- "start": 1102.643,
- "end": 1103.063,
- "text": "actually"
- },
- {
- "id": 2823,
- "start": 1103.063,
- "end": 1103.853,
- "text": "having."
- },
- {
- "id": 2824,
- "start": 1103.853,
- "end": 1103.973,
- "text": "They"
- },
- {
- "id": 2825,
- "start": 1103.973,
- "end": 1104.133,
- "text": "will"
- },
- {
- "id": 2826,
- "start": 1104.133,
- "end": 1104.333,
- "text": "help"
- },
- {
- "id": 2827,
- "start": 1104.333,
- "end": 1104.473,
- "text": "us"
- },
- {
- "id": 2828,
- "start": 1104.473,
- "end": 1105.753,
- "text": "identify"
- },
- {
- "id": 2829,
- "start": 1105.753,
- "end": 1106.003,
- "text": "where"
- },
- {
- "id": 2830,
- "start": 1106.003,
- "end": 1106.103,
- "text": "the"
- },
- {
- "id": 2831,
- "start": 1106.103,
- "end": 1106.473,
- "text": "gaps"
- },
- {
- "id": 2832,
- "start": 1106.473,
- "end": 1107.383,
- "text": "are"
- },
- {
- "id": 2833,
- "start": 1107.383,
- "end": 1107.543,
- "text": "and"
- },
- {
- "id": 2834,
- "start": 1107.543,
- "end": 1107.693,
- "text": "where"
- },
- {
- "id": 2835,
- "start": 1107.693,
- "end": 1107.793,
- "text": "we"
- },
- {
- "id": 2836,
- "start": 1107.793,
- "end": 1107.923,
- "text": "need"
- },
- {
- "id": 2837,
- "start": 1107.923,
- "end": 1108.013,
- "text": "to"
- },
- {
- "id": 2838,
- "start": 1108.013,
- "end": 1108.183,
- "text": "put"
- },
- {
- "id": 2839,
- "start": 1108.183,
- "end": 1108.363,
- "text": "more"
- },
- {
- "id": 2840,
- "start": 1108.363,
- "end": 1108.843,
- "text": "attention"
- },
- {
- "id": 2841,
- "start": 1108.843,
- "end": 1108.973,
- "text": "and"
- },
- {
- "id": 2842,
- "start": 1108.973,
- "end": 1109.693,
- "text": "focus,"
- },
- {
- "id": 2843,
- "start": 1109.693,
- "end": 1109.843,
- "text": "and"
- },
- {
- "id": 2844,
- "start": 1109.843,
- "end": 1109.943,
- "text": "they"
- },
- {
- "id": 2845,
- "start": 1109.943,
- "end": 1110.143,
- "text": "will"
- },
- {
- "id": 2846,
- "start": 1110.143,
- "end": 1110.363,
- "text": "help"
- },
- {
- "id": 2847,
- "start": 1110.363,
- "end": 1110.703,
- "text": "us"
- },
- {
- "id": 2848,
- "start": 1110.703,
- "end": 1111.313,
- "text": "measure"
- },
- {
- "id": 2849,
- "start": 1111.313,
- "end": 1111.463,
- "text": "and"
- },
- {
- "id": 2850,
- "start": 1111.463,
- "end": 1111.933,
- "text": "track"
- },
- {
- "id": 2851,
- "start": 1111.933,
- "end": 1112.013,
- "text": "the"
- },
- {
- "id": 2852,
- "start": 1112.013,
- "end": 1112.523,
- "text": "progress"
- },
- {
- "id": 2853,
- "start": 1112.523,
- "end": 1112.693,
- "text": "that"
- },
- {
- "id": 2854,
- "start": 1112.693,
- "end": 1112.863,
- "text": "we’ve"
- },
- {
- "id": 2855,
- "start": 1113.523,
- "end": 1113.713,
- "text": "made."
- },
- {
- "id": 2856,
- "start": 1114.353,
- "end": 1114.563,
- "text": "As"
- },
- {
- "id": 2857,
- "start": 1114.563,
- "end": 1114.753,
- "text": "we’ve"
- },
- {
- "id": 2858,
- "start": 1114.753,
- "end": 1115.313,
- "text": "developed"
- },
- {
- "id": 2859,
- "start": 1115.313,
- "end": 1116.283,
- "text": "those"
- },
- {
- "id": 2860,
- "start": 1116.283,
- "end": 1117.263,
- "text": "metrics"
- },
- {
- "id": 2861,
- "start": 1117.263,
- "end": 1119.293,
- "text": "internally"
- },
- {
- "id": 2862,
- "start": 1119.293,
- "end": 1119.403,
- "text": "to"
- },
- {
- "id": 2863,
- "start": 1119.403,
- "end": 1119.653,
- "text": "help"
- },
- {
- "id": 2864,
- "start": 1119.653,
- "end": 1119.763,
- "text": "our"
- },
- {
- "id": 2865,
- "start": 1119.763,
- "end": 1120.193,
- "text": "teams"
- },
- {
- "id": 2866,
- "start": 1120.5929999999998,
- "end": 1121.023,
- "text": "operate,"
- },
- {
- "id": 2867,
- "start": 1121.423,
- "end": 1121.853,
- "text": "last"
- },
- {
- "id": 2868,
- "start": 1121.853,
- "end": 1122.443,
- "text": "year"
- },
- {
- "id": 2869,
- "start": 1122.443,
- "end": 1123.033,
- "text": "we"
- },
- {
- "id": 2870,
- "start": 1123.033,
- "end": 1123.833,
- "text": "resolved"
- },
- {
- "id": 2871,
- "start": 1123.833,
- "end": 1124.613,
- "text": "to"
- },
- {
- "id": 2872,
- "start": 1124.613,
- "end": 1125.113,
- "text": "publish"
- },
- {
- "id": 2873,
- "start": 1125.113,
- "end": 1125.323,
- "text": "those"
- },
- {
- "id": 2874,
- "start": 1125.323,
- "end": 1125.793,
- "text": "metrics"
- },
- {
- "id": 2875,
- "start": 1125.558,
- "end": 1125.853,
- "text": "so"
- },
- {
- "id": 2876,
- "start": 1125.793,
- "end": 1125.913,
- "text": "that"
- },
- {
- "id": 2877,
- "start": 1125.913,
- "end": 1126.003,
- "text": "we"
- },
- {
- "id": 2878,
- "start": 1126.003,
- "end": 1126.143,
- "text": "could"
- },
- {
- "id": 2879,
- "start": 1126.143,
- "end": 1126.433,
- "text": "also"
- },
- {
- "id": 2880,
- "start": 1126.433,
- "end": 1126.603,
- "text": "have"
- },
- {
- "id": 2881,
- "start": 1126.603,
- "end": 1126.673,
- "text": "a"
- },
- {
- "id": 2882,
- "start": 1126.673,
- "end": 1127.883,
- "text": "conversation"
- },
- {
- "id": 2883,
- "start": 1127.613,
- "end": 1128.103,
- "text": "with"
- },
- {
- "id": 2884,
- "start": 1127.883,
- "end": 1128.3380000000002,
- "text": "the"
- },
- {
- "id": 2885,
- "start": 1128.153,
- "end": 1128.573,
- "text": "world"
- },
- {
- "id": 2886,
- "start": 1128.573,
- "end": 1129.753,
- "text": "about"
- },
- {
- "id": 2887,
- "start": 1129.753,
- "end": 1130.023,
- "text": "what"
- },
- {
- "id": 2888,
- "start": 1130.023,
- "end": 1130.133,
- "text": "is"
- },
- {
- "id": 2889,
- "start": 1130.133,
- "end": 1130.243,
- "text": "the"
- },
- {
- "id": 2890,
- "start": 1130.243,
- "end": 1130.423,
- "text": "right"
- },
- {
- "id": 2891,
- "start": 1130.423,
- "end": 1130.613,
- "text": "way"
- },
- {
- "id": 2892,
- "start": 1130.613,
- "end": 1130.713,
- "text": "to"
- },
- {
- "id": 2893,
- "start": 1130.713,
- "end": 1131.343,
- "text": "measure"
- },
- {
- "id": 2894,
- "start": 1131.343,
- "end": 1131.903,
- "text": "systems"
- },
- {
- "id": 2895,
- "start": 1131.903,
- "end": 1132.103,
- "text": "such"
- },
- {
- "id": 2896,
- "start": 1132.103,
- "end": 1132.213,
- "text": "as"
- },
- {
- "id": 2897,
- "start": 1132.213,
- "end": 1132.493,
- "text": "this."
- },
- {
- "id": 2898,
- "start": 1132.493,
- "end": 1132.683,
- "text": "How"
- },
- {
- "id": 2899,
- "start": 1132.6779999999999,
- "end": 1132.858,
- "text": "does"
- },
- {
- "id": 2900,
- "start": 1132.863,
- "end": 1133.033,
- "text": "the"
- },
- {
- "id": 2901,
- "start": 1133.033,
- "end": 1133.783,
- "text": "industry"
- },
- {
- "id": 2902,
- "start": 1133.783,
- "end": 1134.093,
- "text": "be"
- },
- {
- "id": 2903,
- "start": 1134.093,
- "end": 1135.253,
- "text": "benchmarking"
- },
- {
- "id": 2904,
- "start": 1135.253,
- "end": 1135.593,
- "text": "these"
- },
- {
- "id": 2905,
- "start": 1135.593,
- "end": 1135.903,
- "text": "kinds"
- },
- {
- "id": 2906,
- "start": 1135.903,
- "end": 1136.023,
- "text": "of"
- },
- {
- "id": 2907,
- "start": 1136.023,
- "end": 1136.693,
- "text": "systems"
- },
- {
- "id": 2908,
- "start": 1136.693,
- "end": 1137.553,
- "text": "and"
- },
- {
- "id": 2909,
- "start": 1137.553,
- "end": 1137.773,
- "text": "how"
- },
- {
- "id": 2910,
- "start": 1137.773,
- "end": 1137.863,
- "text": "do"
- },
- {
- "id": 2911,
- "start": 1137.863,
- "end": 1137.963,
- "text": "we"
- },
- {
- "id": 2912,
- "start": 1137.963,
- "end": 1138.413,
- "text": "track"
- },
- {
- "id": 2913,
- "start": 1138.413,
- "end": 1138.493,
- "text": "the"
- },
- {
- "id": 2914,
- "start": 1138.493,
- "end": 1139.243,
- "text": "progress"
- },
- {
- "id": 2915,
- "start": 1139.243,
- "end": 1139.423,
- "text": "that"
- },
- {
- "id": 2916,
- "start": 1139.423,
- "end": 1139.713,
- "text": "is"
- },
- {
- "id": 2917,
- "start": 1139.713,
- "end": 1140.043,
- "text": "being"
- },
- {
- "id": 2918,
- "start": 1140.043,
- "end": 1140.753,
- "text": "made?"
- },
- {
- "id": 2919,
- "start": 1140.753,
- "end": 1140.933,
- "text": "In"
- },
- {
- "id": 2920,
- "start": 1140.933,
- "end": 1141.793,
- "text": "May,"
- },
- {
- "id": 2921,
- "start": 1141.793,
- "end": 1141.943,
- "text": "we"
- },
- {
- "id": 2922,
- "start": 1141.943,
- "end": 1142.333,
- "text": "published"
- },
- {
- "id": 2923,
- "start": 1142.333,
- "end": 1142.433,
- "text": "our"
- },
- {
- "id": 2924,
- "start": 1142.433,
- "end": 1142.883,
- "text": "first"
- },
- {
- "id": 2925,
- "start": 1142.883,
- "end": 1143.223,
- "text": "community"
- },
- {
- "id": 2926,
- "start": 1143.223,
- "end": 1143.633,
- "text": "standards"
- },
- {
- "id": 2927,
- "start": 1143.633,
- "end": 1144.113,
- "text": "enforcement"
- },
- {
- "id": 2928,
- "start": 1144.113,
- "end": 1145.053,
- "text": "report."
- },
- {
- "id": 2929,
- "start": 1145.053,
- "end": 1145.333,
- "text": "There"
- },
- {
- "id": 2930,
- "start": 1145.333,
- "end": 1145.543,
- "text": "will"
- },
- {
- "id": 2931,
- "start": 1145.543,
- "end": 1145.683,
- "text": "be"
- },
- {
- "id": 2932,
- "start": 1145.683,
- "end": 1146.113,
- "text": "more."
- },
- {
- "id": 2933,
- "start": 1146.113,
- "end": 1146.233,
- "text": "We"
- },
- {
- "id": 2934,
- "start": 1146.233,
- "end": 1146.363,
- "text": "will"
- },
- {
- "id": 2935,
- "start": 1146.363,
- "end": 1146.823,
- "text": "continue"
- },
- {
- "id": 2936,
- "start": 1146.823,
- "end": 1146.903,
- "text": "to"
- },
- {
- "id": 2937,
- "start": 1146.903,
- "end": 1147.313,
- "text": "publish"
- },
- {
- "id": 2938,
- "start": 1147.313,
- "end": 1147.963,
- "text": "those,"
- },
- {
- "id": 2939,
- "start": 1147.963,
- "end": 1148.673,
- "text": "which"
- },
- {
- "id": 2940,
- "start": 1148.673,
- "end": 1149.103,
- "text": "lays"
- },
- {
- "id": 2941,
- "start": 1149.103,
- "end": 1149.703,
- "text": "out"
- },
- {
- "id": 2942,
- "start": 1149.703,
- "end": 1149.853,
- "text": "a"
- },
- {
- "id": 2943,
- "start": 1149.853,
- "end": 1150.393,
- "text": "number"
- },
- {
- "id": 2944,
- "start": 1150.393,
- "end": 1150.643,
- "text": "of"
- },
- {
- "id": 2945,
- "start": 1150.643,
- "end": 1151.343,
- "text": "measures"
- },
- {
- "id": 2946,
- "start": 1151.343,
- "end": 1152.263,
- "text": "across"
- },
- {
- "id": 2947,
- "start": 1152.263,
- "end": 1152.633,
- "text": "different"
- },
- {
- "id": 2948,
- "start": 1152.633,
- "end": 1152.973,
- "text": "types"
- },
- {
- "id": 2949,
- "start": 1152.973,
- "end": 1153.073,
- "text": "of"
- },
- {
- "id": 2950,
- "start": 1153.073,
- "end": 1154.453,
- "text": "violations"
- },
- {
- "id": 2951,
- "start": 1154.453,
- "end": 1154.663,
- "text": "to"
- },
- {
- "id": 2952,
- "start": 1154.663,
- "end": 1155.493,
- "text": "reflect"
- },
- {
- "id": 2953,
- "start": 1155.493,
- "end": 1155.623,
- "text": "the"
- },
- {
- "id": 2954,
- "start": 1155.623,
- "end": 1156.213,
- "text": "state"
- },
- {
- "id": 2955,
- "start": 1156.213,
- "end": 1156.923,
- "text": "of"
- },
- {
- "id": 2956,
- "start": 1156.923,
- "end": 1157.203,
- "text": "how"
- },
- {
- "id": 2957,
- "start": 1157.203,
- "end": 1157.453,
- "text": "things"
- },
- {
- "id": 2958,
- "start": 1157.373,
- "end": 1157.818,
- "text": "are"
- },
- {
- "id": 2959,
- "start": 1157.543,
- "end": 1158.183,
- "text": "going"
- },
- {
- "id": 2960,
- "start": 1158.183,
- "end": 1158.453,
- "text": "and"
- },
- {
- "id": 2961,
- "start": 1158.453,
- "end": 1158.663,
- "text": "where"
- },
- {
- "id": 2962,
- "start": 1158.663,
- "end": 1158.753,
- "text": "the"
- },
- {
- "id": 2963,
- "start": 1159.093,
- "end": 1159.5196666666668,
- "text": "progress"
- },
- {
- "id": 2964,
- "start": 1159.523,
- "end": 1160.2863333333332,
- "text": "is."
- },
- {
- "id": 2965,
- "start": 1159.953,
- "end": 1161.053,
- "text": "And"
- },
- {
- "id": 2966,
- "start": 1161.053,
- "end": 1161.263,
- "text": "we"
- },
- {
- "id": 2967,
- "start": 1161.263,
- "end": 1161.543,
- "text": "really"
- },
- {
- "id": 2968,
- "start": 1161.543,
- "end": 1161.733,
- "text": "think"
- },
- {
- "id": 2969,
- "start": 1161.733,
- "end": 1161.883,
- "text": "that"
- },
- {
- "id": 2970,
- "start": 1161.883,
- "end": 1162.023,
- "text": "by"
- },
- {
- "id": 2971,
- "start": 1162.023,
- "end": 1163.063,
- "text": "having"
- },
- {
- "id": 2972,
- "start": 1163.063,
- "end": 1163.413,
- "text": "those"
- },
- {
- "id": 2973,
- "start": 1163.413,
- "end": 1163.803,
- "text": "numbers"
- },
- {
- "id": 2974,
- "start": 1163.803,
- "end": 1164.093,
- "text": "out"
- },
- {
- "id": 2975,
- "start": 1164.093,
- "end": 1164.183,
- "text": "and"
- },
- {
- "id": 2976,
- "start": 1164.183,
- "end": 1164.263,
- "text": "by"
- },
- {
- "id": 2977,
- "start": 1164.263,
- "end": 1164.543,
- "text": "having"
- },
- {
- "id": 2978,
- "start": 1164.543,
- "end": 1164.593,
- "text": "a"
- },
- {
- "id": 2979,
- "start": 1164.593,
- "end": 1165.563,
- "text": "conversation"
- },
- {
- "id": 2980,
- "start": 1165.563,
- "end": 1165.863,
- "text": "about"
- },
- {
- "id": 2981,
- "start": 1165.863,
- "end": 1166.103,
- "text": "what"
- },
- {
- "id": 2982,
- "start": 1166.103,
- "end": 1166.213,
- "text": "is"
- },
- {
- "id": 2983,
- "start": 1166.213,
- "end": 1166.323,
- "text": "the"
- },
- {
- "id": 2984,
- "start": 1166.323,
- "end": 1166.613,
- "text": "right"
- },
- {
- "id": 2985,
- "start": 1166.613,
- "end": 1167.113,
- "text": "way"
- },
- {
- "id": 2986,
- "start": 1167.113,
- "end": 1167.293,
- "text": "to"
- },
- {
- "id": 2987,
- "start": 1167.293,
- "end": 1167.793,
- "text": "reflect"
- },
- {
- "id": 2988,
- "start": 1167.793,
- "end": 1168.103,
- "text": "the"
- },
- {
- "id": 2989,
- "start": 1168.103,
- "end": 1168.873,
- "text": "progress,"
- },
- {
- "id": 2990,
- "start": 1168.873,
- "end": 1168.993,
- "text": "we"
- },
- {
- "id": 2991,
- "start": 1168.993,
- "end": 1170.493,
- "text": "can"
- },
- {
- "id": 2992,
- "start": 1170.493,
- "end": 1171.153,
- "text": "understand"
- },
- {
- "id": 2993,
- "start": 1171.153,
- "end": 1171.293,
- "text": "and"
- },
- {
- "id": 2994,
- "start": 1171.293,
- "end": 1171.393,
- "text": "be"
- },
- {
- "id": 2995,
- "start": 1171.393,
- "end": 1171.963,
- "text": "accountable"
- },
- {
- "id": 2996,
- "start": 1171.963,
- "end": 1172.073,
- "text": "to"
- },
- {
- "id": 2997,
- "start": 1172.073,
- "end": 1172.173,
- "text": "the"
- },
- {
- "id": 2998,
- "start": 1172.173,
- "end": 1172.453,
- "text": "world,"
- },
- {
- "id": 2999,
- "start": 1172.453,
- "end": 1172.923,
- "text": "frankly,"
- },
- {
- "id": 3000,
- "start": 1172.923,
- "end": 1173.843,
- "text": "for"
- },
- {
- "id": 3001,
- "start": 1173.843,
- "end": 1173.973,
- "text": "the"
- },
- {
- "id": 3002,
- "start": 1173.973,
- "end": 1174.153,
- "text": "kind"
- },
- {
- "id": 3003,
- "start": 1174.153,
- "end": 1174.213,
- "text": "of"
- },
- {
- "id": 3004,
- "start": 1174.213,
- "end": 1174.613,
- "text": "progress"
- },
- {
- "id": 3005,
- "start": 1174.613,
- "end": 1174.803,
- "text": "that’s"
- },
- {
- "id": 3006,
- "start": 1174.803,
- "end": 1175.013,
- "text": "being"
- },
- {
- "id": 3007,
- "start": 1175.013,
- "end": 1175.593,
- "text": "made"
- },
- {
- "id": 3008,
- "start": 1175.593,
- "end": 1176.043,
- "text": "and"
- },
- {
- "id": 3009,
- "start": 1176.043,
- "end": 1176.963,
- "text": "understand"
- },
- {
- "id": 3010,
- "start": 1176.963,
- "end": 1177.213,
- "text": "where"
- },
- {
- "id": 3011,
- "start": 1177.213,
- "end": 1177.303,
- "text": "the"
- },
- {
- "id": 3012,
- "start": 1177.303,
- "end": 1177.623,
- "text": "gaps"
- },
- {
- "id": 3013,
- "start": 1177.623,
- "end": 1178.023,
- "text": "are"
- },
- {
- "id": 3014,
- "start": 1178.023,
- "end": 1178.403,
- "text": "and"
- },
- {
- "id": 3015,
- "start": 1178.403,
- "end": 1178.613,
- "text": "where"
- },
- {
- "id": 3016,
- "start": 1178.613,
- "end": 1178.713,
- "text": "we"
- },
- {
- "id": 3017,
- "start": 1178.713,
- "end": 1178.873,
- "text": "need"
- },
- {
- "id": 3018,
- "start": 1178.873,
- "end": 1178.963,
- "text": "to"
- },
- {
- "id": 3019,
- "start": 1178.963,
- "end": 1179.073,
- "text": "do"
- },
- {
- "id": 3020,
- "start": 1179.073,
- "end": 1179.263,
- "text": "more"
- },
- {
- "id": 3021,
- "start": 1179.713,
- "end": 1179.908,
- "text": "work."
- },
- {
- "id": 3022,
- "start": 1180.353,
- "end": 1180.553,
- "text": "In"
- },
- {
- "id": 3023,
- "start": 1180.553,
- "end": 1180.953,
- "text": "terms"
- },
- {
- "id": 3024,
- "start": 1180.953,
- "end": 1183.113,
- "text": "of"
- },
- {
- "id": 3025,
- "start": 1183.113,
- "end": 1183.353,
- "text": "the"
- },
- {
- "id": 3026,
- "start": 1183.353,
- "end": 1183.613,
- "text": "ad"
- },
- {
- "id": 3027,
- "start": 1183.613,
- "end": 1184.693,
- "text": "review,"
- },
- {
- "id": 3028,
- "start": 1184.693,
- "end": 1184.963,
- "text": "that’s"
- },
- {
- "id": 3029,
- "start": 1184.963,
- "end": 1185.113,
- "text": "your"
- },
- {
- "id": 3030,
- "start": 1185.113,
- "end": 1185.583,
- "text": "purview,"
- },
- {
- "id": 3031,
- "start": 1185.583,
- "end": 1185.813,
- "text": "right,"
- },
- {
- "id": 3032,
- "start": 1185.813,
- "end": 1186.563,
- "text": "is"
- },
- {
- "id": 3033,
- "start": 1186.563,
- "end": 1186.663,
- "text": "the"
- },
- {
- "id": 3034,
- "start": 1186.663,
- "end": 1186.803,
- "text": "new"
- },
- {
- "id": 3035,
- "start": 1186.803,
- "end": 1187.203,
- "text": "tools"
- },
- {
- "id": 3036,
- "start": 1187.203,
- "end": 1187.353,
- "text": "that"
- },
- {
- "id": 3037,
- "start": 1187.548,
- "end": 1188.0030000000002,
- "text": "you’re…"
- },
- {
- "id": 3038,
- "start": 1187.893,
- "end": 1188.653,
- "text": "Transparency"
- },
- {
- "id": 3039,
- "start": 1188.653,
- "end": 1188.823,
- "text": "and"
- },
- {
- "id": 3040,
- "start": 1189.248,
- "end": 1189.6029999999998,
- "text": "verification."
- },
- {
- "id": 3041,
- "start": 1189.843,
- "end": 1190.383,
- "text": "So"
- },
- {
- "id": 3042,
- "start": 1190.383,
- "end": 1190.533,
- "text": "one"
- },
- {
- "id": 3043,
- "start": 1190.533,
- "end": 1190.593,
- "text": "of"
- },
- {
- "id": 3044,
- "start": 1190.593,
- "end": 1190.663,
- "text": "the"
- },
- {
- "id": 3045,
- "start": 1190.663,
- "end": 1190.943,
- "text": "main"
- },
- {
- "id": 3046,
- "start": 1190.943,
- "end": 1191.343,
- "text": "issues"
- },
- {
- "id": 3047,
- "start": 1191.343,
- "end": 1191.433,
- "text": "in"
- },
- {
- "id": 3048,
- "start": 1191.433,
- "end": 1191.513,
- "text": "the"
- },
- {
- "id": 3049,
- "start": 1191.813,
- "end": 1192.088,
- "text": "2016"
- },
- {
- "id": 3050,
- "start": 1192.193,
- "end": 1192.663,
- "text": "election"
- },
- {
- "id": 3051,
- "start": 1192.663,
- "end": 1195.323,
- "text": "was"
- },
- {
- "id": 3052,
- "start": 1195.323,
- "end": 1195.883,
- "text": "malicious"
- },
- {
- "id": 3053,
- "start": 1195.883,
- "end": 1196.563,
- "text": "advertising"
- },
- {
- "id": 3054,
- "start": 1196.563,
- "end": 1196.703,
- "text": "on"
- },
- {
- "id": 3055,
- "start": 1196.703,
- "end": 1198.113,
- "text": "Facebook."
- },
- {
- "id": 3056,
- "start": 1198.113,
- "end": 1198.393,
- "text": "What"
- },
- {
- "id": 3057,
- "start": 1198.393,
- "end": 1199.253,
- "text": "assurances"
- },
- {
- "id": 3058,
- "start": 1199.253,
- "end": 1199.513,
- "text": "are"
- },
- {
- "id": 3059,
- "start": 1199.513,
- "end": 1199.763,
- "text": "there"
- },
- {
- "id": 3060,
- "start": 1199.763,
- "end": 1200.023,
- "text": "that"
- },
- {
- "id": 3061,
- "start": 1200.023,
- "end": 1200.283,
- "text": "that’s"
- },
- {
- "id": 3062,
- "start": 1200.283,
- "end": 1200.493,
- "text": "not"
- },
- {
- "id": 3063,
- "start": 1200.4029999999998,
- "end": 1200.663,
- "text": "going"
- },
- {
- "id": 3064,
- "start": 1200.523,
- "end": 1200.833,
- "text": "to"
- },
- {
- "id": 3065,
- "start": 1200.643,
- "end": 1201.003,
- "text": "happen"
- },
- {
- "id": 3066,
- "start": 1201.003,
- "end": 1201.073,
- "text": "in"
- },
- {
- "id": 3067,
- "start": 1201.7030000000002,
- "end": 1201.8530000000003,
- "text": "the"
- },
- {
- "id": 3068,
- "start": 1202.403,
- "end": 1202.633,
- "text": "2018"
- },
- {
- "id": 3069,
- "start": 1203.1029999999998,
- "end": 1203.4129999999998,
- "text": "midterms?"
- },
- {
- "id": 3070,
- "start": 1203.803,
- "end": 1204.193,
- "text": "We’ve"
- },
- {
- "id": 3071,
- "start": 1204.193,
- "end": 1204.928,
- "text": "built"
- },
- {
- "id": 3072,
- "start": 1204.928,
- "end": 1205.018,
- "text": "a"
- },
- {
- "id": 3073,
- "start": 1205.018,
- "end": 1205.178,
- "text": "lot"
- },
- {
- "id": 3074,
- "start": 1205.178,
- "end": 1205.268,
- "text": "of"
- },
- {
- "id": 3075,
- "start": 1205.268,
- "end": 1206.108,
- "text": "systems"
- },
- {
- "id": 3076,
- "start": 1206.108,
- "end": 1206.268,
- "text": "to"
- },
- {
- "id": 3077,
- "start": 1206.268,
- "end": 1206.888,
- "text": "help"
- },
- {
- "id": 3078,
- "start": 1206.888,
- "end": 1207.158,
- "text": "to"
- },
- {
- "id": 3079,
- "start": 1207.158,
- "end": 1207.568,
- "text": "provide"
- },
- {
- "id": 3080,
- "start": 1207.568,
- "end": 1208.358,
- "text": "transparency"
- },
- {
- "id": 3081,
- "start": 1208.358,
- "end": 1208.458,
- "text": "to"
- },
- {
- "id": 3082,
- "start": 1208.458,
- "end": 1209.258,
- "text": "people"
- },
- {
- "id": 3083,
- "start": 1209.258,
- "end": 1210.228,
- "text": "on"
- },
- {
- "id": 3084,
- "start": 1210.228,
- "end": 1211.018,
- "text": "ads."
- },
- {
- "id": 3085,
- "start": 1211.018,
- "end": 1211.198,
- "text": "And"
- },
- {
- "id": 3086,
- "start": 1211.198,
- "end": 1211.348,
- "text": "so"
- },
- {
- "id": 3087,
- "start": 1211.348,
- "end": 1211.678,
- "text": "first"
- },
- {
- "id": 3088,
- "start": 1211.678,
- "end": 1211.768,
- "text": "of"
- },
- {
- "id": 3089,
- "start": 1211.768,
- "end": 1212.158,
- "text": "all,"
- },
- {
- "id": 3090,
- "start": 1212.158,
- "end": 1212.338,
- "text": "on"
- },
- {
- "id": 3091,
- "start": 1212.338,
- "end": 1212.638,
- "text": "any"
- },
- {
- "id": 3092,
- "start": 1212.638,
- "end": 1213.138,
- "text": "page"
- },
- {
- "id": 3093,
- "start": 1213.138,
- "end": 1213.278,
- "text": "you"
- },
- {
- "id": 3094,
- "start": 1213.278,
- "end": 1213.428,
- "text": "can"
- },
- {
- "id": 3095,
- "start": 1213.428,
- "end": 1213.738,
- "text": "click"
- },
- {
- "id": 3096,
- "start": 1213.738,
- "end": 1213.828,
- "text": "and"
- },
- {
- "id": 3097,
- "start": 1213.828,
- "end": 1213.908,
- "text": "you"
- },
- {
- "id": 3098,
- "start": 1213.908,
- "end": 1214.038,
- "text": "can"
- },
- {
- "id": 3099,
- "start": 1214.038,
- "end": 1214.348,
- "text": "see"
- },
- {
- "id": 3100,
- "start": 1214.348,
- "end": 1214.598,
- "text": "all"
- },
- {
- "id": 3101,
- "start": 1214.598,
- "end": 1214.668,
- "text": "of"
- },
- {
- "id": 3102,
- "start": 1214.668,
- "end": 1214.798,
- "text": "the"
- },
- {
- "id": 3103,
- "start": 1214.798,
- "end": 1215.008,
- "text": "ads"
- },
- {
- "id": 3104,
- "start": 1215.008,
- "end": 1215.108,
- "text": "that"
- },
- {
- "id": 3105,
- "start": 1215.108,
- "end": 1215.168,
- "text": "are"
- },
- {
- "id": 3106,
- "start": 1215.168,
- "end": 1215.548,
- "text": "running"
- },
- {
- "id": 3107,
- "start": 1215.548,
- "end": 1215.698,
- "text": "on"
- },
- {
- "id": 3108,
- "start": 1215.698,
- "end": 1215.858,
- "text": "that"
- },
- {
- "id": 3109,
- "start": 1215.858,
- "end": 1216.658,
- "text": "page,"
- },
- {
- "id": 3110,
- "start": 1216.658,
- "end": 1216.878,
- "text": "which"
- },
- {
- "id": 3111,
- "start": 1216.878,
- "end": 1217.158,
- "text": "gives"
- },
- {
- "id": 3112,
- "start": 1217.158,
- "end": 1217.598,
- "text": "anyone"
- },
- {
- "id": 3113,
- "start": 1217.598,
- "end": 1217.958,
- "text": "full"
- },
- {
- "id": 3114,
- "start": 1217.958,
- "end": 1219.208,
- "text": "transparency"
- },
- {
- "id": 3115,
- "start": 1219.208,
- "end": 1220.098,
- "text": "into"
- },
- {
- "id": 3116,
- "start": 1220.098,
- "end": 1220.378,
- "text": "any"
- },
- {
- "id": 3117,
- "start": 1220.378,
- "end": 1220.818,
- "text": "ads"
- },
- {
- "id": 3118,
- "start": 1220.818,
- "end": 1221.408,
- "text": "that"
- },
- {
- "id": 3119,
- "start": 1221.408,
- "end": 1221.768,
- "text": "people"
- },
- {
- "id": 3120,
- "start": 1221.768,
- "end": 1222.058,
- "text": "are"
- },
- {
- "id": 3121,
- "start": 1222.058,
- "end": 1222.628,
- "text": "actually"
- },
- {
- "id": 3122,
- "start": 1222.628,
- "end": 1223.238,
- "text": "running,"
- },
- {
- "id": 3123,
- "start": 1223.238,
- "end": 1223.548,
- "text": "even"
- },
- {
- "id": 3124,
- "start": 1223.548,
- "end": 1223.648,
- "text": "if"
- },
- {
- "id": 3125,
- "start": 1223.648,
- "end": 1223.788,
- "text": "they’re"
- },
- {
- "id": 3126,
- "start": 1223.788,
- "end": 1224.008,
- "text": "not"
- },
- {
- "id": 3127,
- "start": 1224.008,
- "end": 1224.458,
- "text": "targeted"
- },
- {
- "id": 3128,
- "start": 1224.458,
- "end": 1225.148,
- "text": "specifically"
- },
- {
- "id": 3129,
- "start": 1225.148,
- "end": 1225.258,
- "text": "at"
- },
- {
- "id": 3130,
- "start": 1225.258,
- "end": 1225.708,
- "text": "me"
- },
- {
- "id": 3131,
- "start": 1225.698,
- "end": 1226.018,
- "text": "or"
- },
- {
- "id": 3132,
- "start": 1225.863,
- "end": 1226.138,
- "text": "at"
- },
- {
- "id": 3133,
- "start": 1226.028,
- "end": 1226.258,
- "text": "any"
- },
- {
- "id": 3134,
- "start": 1226.258,
- "end": 1226.718,
- "text": "specific"
- },
- {
- "id": 3135,
- "start": 1226.718,
- "end": 1227.818,
- "text": "person."
- },
- {
- "id": 3136,
- "start": 1227.818,
- "end": 1228.048,
- "text": "The"
- },
- {
- "id": 3137,
- "start": 1228.048,
- "end": 1228.328,
- "text": "other"
- },
- {
- "id": 3138,
- "start": 1228.328,
- "end": 1228.708,
- "text": "very"
- },
- {
- "id": 3139,
- "start": 1228.708,
- "end": 1229.128,
- "text": "important"
- },
- {
- "id": 3140,
- "start": 1229.128,
- "end": 1229.948,
- "text": "thing"
- },
- {
- "id": 3141,
- "start": 1229.948,
- "end": 1230.558,
- "text": "is"
- },
- {
- "id": 3142,
- "start": 1230.558,
- "end": 1231.048,
- "text": "political"
- },
- {
- "id": 3143,
- "start": 1231.048,
- "end": 1231.768,
- "text": "advertising."
- },
- {
- "id": 3144,
- "start": 1231.768,
- "end": 1231.948,
- "text": "We"
- },
- {
- "id": 3145,
- "start": 1231.948,
- "end": 1232.108,
- "text": "need"
- },
- {
- "id": 3146,
- "start": 1232.108,
- "end": 1232.188,
- "text": "to"
- },
- {
- "id": 3147,
- "start": 1232.188,
- "end": 1232.378,
- "text": "make"
- },
- {
- "id": 3148,
- "start": 1232.378,
- "end": 1232.648,
- "text": "sure"
- },
- {
- "id": 3149,
- "start": 1232.648,
- "end": 1232.788,
- "text": "that"
- },
- {
- "id": 3150,
- "start": 1232.788,
- "end": 1232.918,
- "text": "there"
- },
- {
- "id": 3151,
- "start": 1232.918,
- "end": 1233.048,
- "text": "is"
- },
- {
- "id": 3152,
- "start": 1233.048,
- "end": 1234.308,
- "text": "authenticity"
- },
- {
- "id": 3153,
- "start": 1234.308,
- "end": 1234.458,
- "text": "in"
- },
- {
- "id": 3154,
- "start": 1234.458,
- "end": 1234.958,
- "text": "political"
- },
- {
- "id": 3155,
- "start": 1234.958,
- "end": 1236.148,
- "text": "advertising."
- },
- {
- "id": 3156,
- "start": 1236.148,
- "end": 1236.368,
- "text": "And"
- },
- {
- "id": 3157,
- "start": 1236.368,
- "end": 1236.658,
- "text": "so"
- },
- {
- "id": 3158,
- "start": 1236.658,
- "end": 1236.988,
- "text": "any"
- },
- {
- "id": 3159,
- "start": 1236.988,
- "end": 1237.868,
- "text": "ad"
- },
- {
- "id": 3160,
- "start": 1237.868,
- "end": 1238.328,
- "text": "that"
- },
- {
- "id": 3161,
- "start": 1238.328,
- "end": 1238.538,
- "text": "is"
- },
- {
- "id": 3162,
- "start": 1238.538,
- "end": 1239.498,
- "text": "political,"
- },
- {
- "id": 3163,
- "start": 1239.498,
- "end": 1239.738,
- "text": "or"
- },
- {
- "id": 3164,
- "start": 1239.738,
- "end": 1239.928,
- "text": "even"
- },
- {
- "id": 3165,
- "start": 1239.928,
- "end": 1240.198,
- "text": "around"
- },
- {
- "id": 3166,
- "start": 1240.198,
- "end": 1240.238,
- "text": "a"
- },
- {
- "id": 3167,
- "start": 1240.238,
- "end": 1240.748,
- "text": "political"
- },
- {
- "id": 3168,
- "start": 1240.748,
- "end": 1241.418,
- "text": "issue,"
- },
- {
- "id": 3169,
- "start": 1241.418,
- "end": 1241.788,
- "text": "goes"
- },
- {
- "id": 3170,
- "start": 1241.788,
- "end": 1241.938,
- "text": "through"
- },
- {
- "id": 3171,
- "start": 1241.938,
- "end": 1241.998,
- "text": "a"
- },
- {
- "id": 3172,
- "start": 1241.998,
- "end": 1242.668,
- "text": "verification"
- },
- {
- "id": 3173,
- "start": 1242.668,
- "end": 1243.218,
- "text": "process"
- },
- {
- "id": 3174,
- "start": 1243.218,
- "end": 1243.358,
- "text": "where"
- },
- {
- "id": 3175,
- "start": 1243.358,
- "end": 1243.488,
- "text": "we"
- },
- {
- "id": 3176,
- "start": 1243.488,
- "end": 1244.108,
- "text": "verify"
- },
- {
- "id": 3177,
- "start": 1244.108,
- "end": 1244.278,
- "text": "the"
- },
- {
- "id": 3178,
- "start": 1244.278,
- "end": 1245.168,
- "text": "identity"
- },
- {
- "id": 3179,
- "start": 1245.168,
- "end": 1245.328,
- "text": "of"
- },
- {
- "id": 3180,
- "start": 1245.328,
- "end": 1245.418,
- "text": "the"
- },
- {
- "id": 3181,
- "start": 1245.418,
- "end": 1245.828,
- "text": "person"
- },
- {
- "id": 3182,
- "start": 1245.828,
- "end": 1245.928,
- "text": "who"
- },
- {
- "id": 3183,
- "start": 1245.928,
- "end": 1246.078,
- "text": "is"
- },
- {
- "id": 3184,
- "start": 1246.078,
- "end": 1246.348,
- "text": "running"
- },
- {
- "id": 3185,
- "start": 1246.348,
- "end": 1246.508,
- "text": "the"
- },
- {
- "id": 3186,
- "start": 1246.508,
- "end": 1246.798,
- "text": "ad."
- },
- {
- "id": 3187,
- "start": 1246.798,
- "end": 1246.898,
- "text": "We"
- },
- {
- "id": 3188,
- "start": 1246.898,
- "end": 1247.508,
- "text": "verify"
- },
- {
- "id": 3189,
- "start": 1247.508,
- "end": 1247.638,
- "text": "that"
- },
- {
- "id": 3190,
- "start": 1247.638,
- "end": 1247.828,
- "text": "they’re"
- },
- {
- "id": 3191,
- "start": 1247.828,
- "end": 1248.018,
- "text": "in"
- },
- {
- "id": 3192,
- "start": 1248.018,
- "end": 1248.108,
- "text": "the"
- },
- {
- "id": 3193,
- "start": 1248.108,
- "end": 1248.498,
- "text": "United"
- },
- {
- "id": 3194,
- "start": 1248.498,
- "end": 1249.628,
- "text": "States"
- },
- {
- "id": 3195,
- "start": 1249.628,
- "end": 1249.768,
- "text": "and"
- },
- {
- "id": 3196,
- "start": 1249.768,
- "end": 1249.898,
- "text": "we"
- },
- {
- "id": 3197,
- "start": 1249.898,
- "end": 1250.148,
- "text": "added"
- },
- {
- "id": 3198,
- "start": 1250.023,
- "end": 1250.598,
- "text": "a"
- },
- {
- "id": 3199,
- "start": 1250.148,
- "end": 1251.048,
- "text": "label"
- },
- {
- "id": 3200,
- "start": 1251.048,
- "end": 1251.248,
- "text": "that"
- },
- {
- "id": 3201,
- "start": 1251.248,
- "end": 1252.208,
- "text": "shows"
- },
- {
- "id": 3202,
- "start": 1252.208,
- "end": 1252.388,
- "text": "that"
- },
- {
- "id": 3203,
- "start": 1252.388,
- "end": 1252.558,
- "text": "this"
- },
- {
- "id": 3204,
- "start": 1252.558,
- "end": 1252.678,
- "text": "is"
- },
- {
- "id": 3205,
- "start": 1252.678,
- "end": 1252.798,
- "text": "an"
- },
- {
- "id": 3206,
- "start": 1252.798,
- "end": 1253.748,
- "text": "ad"
- },
- {
- "id": 3207,
- "start": 1253.748,
- "end": 1254.108,
- "text": "taken"
- },
- {
- "id": 3208,
- "start": 1254.108,
- "end": 1254.618,
- "text": "out"
- },
- {
- "id": 3209,
- "start": 1254.378,
- "end": 1254.8813333333333,
- "text": "–"
- },
- {
- "id": 3210,
- "start": 1254.648,
- "end": 1255.1446666666666,
- "text": "a"
- },
- {
- "id": 3211,
- "start": 1254.918,
- "end": 1255.408,
- "text": "disclosure"
- },
- {
- "id": 3212,
- "start": 1255.408,
- "end": 1255.708,
- "text": "label"
- },
- {
- "id": 3213,
- "start": 1255.708,
- "end": 1255.948,
- "text": "kind"
- },
- {
- "id": 3214,
- "start": 1255.948,
- "end": 1256.178,
- "text": "of"
- },
- {
- "id": 3215,
- "start": 1256.178,
- "end": 1256.498,
- "text": "like"
- },
- {
- "id": 3216,
- "start": 1256.498,
- "end": 1256.658,
- "text": "what"
- },
- {
- "id": 3217,
- "start": 1256.658,
- "end": 1256.768,
- "text": "we"
- },
- {
- "id": 3218,
- "start": 1256.768,
- "end": 1257.028,
- "text": "have"
- },
- {
- "id": 3219,
- "start": 1257.028,
- "end": 1257.158,
- "text": "on"
- },
- {
- "id": 3220,
- "start": 1257.158,
- "end": 1257.868,
- "text": "TV"
- },
- {
- "id": 3221,
- "start": 1257.868,
- "end": 1258.008,
- "text": "but"
- },
- {
- "id": 3222,
- "start": 1258.008,
- "end": 1258.318,
- "text": "actually"
- },
- {
- "id": 3223,
- "start": 1258.318,
- "end": 1258.458,
- "text": "with"
- },
- {
- "id": 3224,
- "start": 1258.458,
- "end": 1258.648,
- "text": "even"
- },
- {
- "id": 3225,
- "start": 1258.648,
- "end": 1258.898,
- "text": "more"
- },
- {
- "id": 3226,
- "start": 1259.086,
- "end": 1259.316,
- "text": "verification."
- },
- {
- "id": 3227,
- "start": 1259.5240000000001,
- "end": 1259.7340000000002,
- "text": "And"
- },
- {
- "id": 3228,
- "start": 1259.962,
- "end": 1260.152,
- "text": "the"
- },
- {
- "id": 3229,
- "start": 1260.4,
- "end": 1260.5700000000002,
- "text": "goal"
- },
- {
- "id": 3230,
- "start": 1260.838,
- "end": 1260.988,
- "text": "is"
- },
- {
- "id": 3231,
- "start": 1260.988,
- "end": 1261.308,
- "text": "really"
- },
- {
- "id": 3232,
- "start": 1261.308,
- "end": 1261.488,
- "text": "for"
- },
- {
- "id": 3233,
- "start": 1261.488,
- "end": 1261.988,
- "text": "political"
- },
- {
- "id": 3234,
- "start": 1261.988,
- "end": 1263.208,
- "text": "ads"
- },
- {
- "id": 3235,
- "start": 1263.208,
- "end": 1263.848,
- "text": "to"
- },
- {
- "id": 3236,
- "start": 1263.848,
- "end": 1264.078,
- "text": "be"
- },
- {
- "id": 3237,
- "start": 1264.078,
- "end": 1264.588,
- "text": "something"
- },
- {
- "id": 3238,
- "start": 1264.588,
- "end": 1264.808,
- "text": "that"
- },
- {
- "id": 3239,
- "start": 1264.808,
- "end": 1265.128,
- "text": "people"
- },
- {
- "id": 3240,
- "start": 1265.128,
- "end": 1265.298,
- "text": "can"
- },
- {
- "id": 3241,
- "start": 1265.298,
- "end": 1265.898,
- "text": "trust"
- },
- {
- "id": 3242,
- "start": 1265.898,
- "end": 1266.058,
- "text": "and"
- },
- {
- "id": 3243,
- "start": 1266.058,
- "end": 1266.188,
- "text": "can"
- },
- {
- "id": 3244,
- "start": 1266.188,
- "end": 1266.928,
- "text": "understand"
- },
- {
- "id": 3245,
- "start": 1266.928,
- "end": 1267.078,
- "text": "when"
- },
- {
- "id": 3246,
- "start": 1267.078,
- "end": 1267.228,
- "text": "they"
- },
- {
- "id": 3247,
- "start": 1267.228,
- "end": 1267.388,
- "text": "see"
- },
- {
- "id": 3248,
- "start": 1267.388,
- "end": 1267.548,
- "text": "them"
- },
- {
- "id": 3249,
- "start": 1267.548,
- "end": 1267.628,
- "text": "in"
- },
- {
- "id": 3250,
- "start": 1267.628,
- "end": 1267.748,
- "text": "their"
- },
- {
- "id": 3251,
- "start": 1267.748,
- "end": 1267.938,
- "text": "News"
- },
- {
- "id": 3252,
- "start": 1267.9313333333334,
- "end": 1268.1213333333335,
- "text": "Feed."
- },
- {
- "id": 3253,
- "start": 1268.1146666666668,
- "end": 1268.304666666667,
- "text": "Are"
- },
- {
- "id": 3254,
- "start": 1268.298,
- "end": 1268.488,
- "text": "people"
- },
- {
- "id": 3255,
- "start": 1268.4813333333334,
- "end": 1268.6713333333335,
- "text": "going"
- },
- {
- "id": 3256,
- "start": 1268.6646666666666,
- "end": 1268.8546666666666,
- "text": "to"
- },
- {
- "id": 3257,
- "start": 1268.848,
- "end": 1269.038,
- "text": "have"
- },
- {
- "id": 3258,
- "start": 1269.038,
- "end": 1269.248,
- "text": "any"
- },
- {
- "id": 3259,
- "start": 1269.266,
- "end": 1269.47,
- "text": "idea"
- },
- {
- "id": 3260,
- "start": 1269.4940000000001,
- "end": 1269.692,
- "text": "as"
- },
- {
- "id": 3261,
- "start": 1269.7220000000002,
- "end": 1269.914,
- "text": "to"
- },
- {
- "id": 3262,
- "start": 1269.9500000000003,
- "end": 1270.136,
- "text": "who’s"
- },
- {
- "id": 3263,
- "start": 1270.178,
- "end": 1270.358,
- "text": "been"
- },
- {
- "id": 3264,
- "start": 1270.358,
- "end": 1270.878,
- "text": "targeted"
- },
- {
- "id": 3265,
- "start": 1270.878,
- "end": 1271.058,
- "text": "by"
- },
- {
- "id": 3266,
- "start": 1271.058,
- "end": 1271.278,
- "text": "those"
- },
- {
- "id": 3267,
- "start": 1271.278,
- "end": 1272.048,
- "text": "ads?"
- },
- {
- "id": 3268,
- "start": 1272.048,
- "end": 1272.548,
- "text": "So"
- },
- {
- "id": 3269,
- "start": 1272.548,
- "end": 1272.778,
- "text": "we"
- },
- {
- "id": 3270,
- "start": 1272.778,
- "end": 1273.048,
- "text": "have"
- },
- {
- "id": 3271,
- "start": 1273.048,
- "end": 1273.678,
- "text": "a"
- },
- {
- "id": 3272,
- "start": 1273.678,
- "end": 1274.538,
- "text": "political"
- },
- {
- "id": 3273,
- "start": 1274.538,
- "end": 1275.208,
- "text": "archive"
- },
- {
- "id": 3274,
- "start": 1275.208,
- "end": 1275.408,
- "text": "where"
- },
- {
- "id": 3275,
- "start": 1275.408,
- "end": 1275.728,
- "text": "all"
- },
- {
- "id": 3276,
- "start": 1275.728,
- "end": 1275.818,
- "text": "of"
- },
- {
- "id": 3277,
- "start": 1275.818,
- "end": 1275.978,
- "text": "the"
- },
- {
- "id": 3278,
- "start": 1275.978,
- "end": 1276.678,
- "text": "ads,"
- },
- {
- "id": 3279,
- "start": 1276.678,
- "end": 1277.268,
- "text": "including"
- },
- {
- "id": 3280,
- "start": 1277.268,
- "end": 1277.468,
- "text": "some"
- },
- {
- "id": 3281,
- "start": 1277.468,
- "end": 1277.568,
- "text": "of"
- },
- {
- "id": 3282,
- "start": 1277.568,
- "end": 1277.658,
- "text": "the"
- },
- {
- "id": 3283,
- "start": 1277.658,
- "end": 1278.498,
- "text": "details"
- },
- {
- "id": 3284,
- "start": 1278.498,
- "end": 1279.158,
- "text": "on"
- },
- {
- "id": 3285,
- "start": 1279.158,
- "end": 1279.368,
- "text": "their"
- },
- {
- "id": 3286,
- "start": 1279.368,
- "end": 1279.938,
- "text": "settings,"
- },
- {
- "id": 3287,
- "start": 1279.938,
- "end": 1280.198,
- "text": "will"
- },
- {
- "id": 3288,
- "start": 1280.198,
- "end": 1280.318,
- "text": "be"
- },
- {
- "id": 3289,
- "start": 1280.318,
- "end": 1281.268,
- "text": "available."
- },
- {
- "id": 3290,
- "start": 1281.268,
- "end": 1281.808,
- "text": "And"
- },
- {
- "id": 3291,
- "start": 1281.808,
- "end": 1282.028,
- "text": "we’ve"
- },
- {
- "id": 3292,
- "start": 1282.028,
- "end": 1282.348,
- "text": "already"
- },
- {
- "id": 3293,
- "start": 1282.348,
- "end": 1283.248,
- "text": "seen"
- },
- {
- "id": 3294,
- "start": 1283.248,
- "end": 1284.018,
- "text": "researchers"
- },
- {
- "id": 3295,
- "start": 1284.018,
- "end": 1284.138,
- "text": "and"
- },
- {
- "id": 3296,
- "start": 1284.138,
- "end": 1284.718,
- "text": "journalists"
- },
- {
- "id": 3297,
- "start": 1284.718,
- "end": 1285.128,
- "text": "use"
- },
- {
- "id": 3298,
- "start": 1285.128,
- "end": 1285.338,
- "text": "our"
- },
- {
- "id": 3299,
- "start": 1285.328,
- "end": 1285.818,
- "text": "political"
- },
- {
- "id": 3300,
- "start": 1285.673,
- "end": 1286.433,
- "text": "ad"
- },
- {
- "id": 3301,
- "start": 1286.018,
- "end": 1287.048,
- "text": "archive"
- },
- {
- "id": 3302,
- "start": 1287.048,
- "end": 1287.238,
- "text": "to"
- },
- {
- "id": 3303,
- "start": 1287.238,
- "end": 1287.588,
- "text": "go"
- },
- {
- "id": 3304,
- "start": 1287.588,
- "end": 1287.728,
- "text": "and"
- },
- {
- "id": 3305,
- "start": 1287.728,
- "end": 1287.868,
- "text": "to"
- },
- {
- "id": 3306,
- "start": 1287.868,
- "end": 1288.338,
- "text": "look"
- },
- {
- "id": 3307,
- "start": 1288.338,
- "end": 1288.628,
- "text": "at"
- },
- {
- "id": 3308,
- "start": 1288.628,
- "end": 1288.858,
- "text": "what"
- },
- {
- "id": 3309,
- "start": 1288.858,
- "end": 1288.928,
- "text": "are"
- },
- {
- "id": 3310,
- "start": 1288.928,
- "end": 1289.068,
- "text": "the"
- },
- {
- "id": 3311,
- "start": 1289.068,
- "end": 1289.578,
- "text": "trends."
- },
- {
- "id": 3312,
- "start": 1289.578,
- "end": 1289.708,
- "text": "So"
- },
- {
- "id": 3313,
- "start": 1289.708,
- "end": 1289.888,
- "text": "for"
- },
- {
- "id": 3314,
- "start": 1289.888,
- "end": 1290.388,
- "text": "example,"
- },
- {
- "id": 3315,
- "start": 1290.388,
- "end": 1290.628,
- "text": "even"
- },
- {
- "id": 3316,
- "start": 1290.628,
- "end": 1291.038,
- "text": "around"
- },
- {
- "id": 3317,
- "start": 1291.038,
- "end": 1291.638,
- "text": "the"
- },
- {
- "id": 3318,
- "start": 1291.638,
- "end": 1292.108,
- "text": "Supreme"
- },
- {
- "id": 3319,
- "start": 1292.108,
- "end": 1292.418,
- "text": "Court"
- },
- {
- "id": 3320,
- "start": 1292.418,
- "end": 1293.648,
- "text": "nominations,"
- },
- {
- "id": 3321,
- "start": 1293.648,
- "end": 1294.018,
- "text": "different"
- },
- {
- "id": 3322,
- "start": 1294.018,
- "end": 1294.578,
- "text": "groups"
- },
- {
- "id": 3323,
- "start": 1294.578,
- "end": 1294.808,
- "text": "took"
- },
- {
- "id": 3324,
- "start": 1294.808,
- "end": 1295.038,
- "text": "out"
- },
- {
- "id": 3325,
- "start": 1295.038,
- "end": 1295.358,
- "text": "different"
- },
- {
- "id": 3326,
- "start": 1295.358,
- "end": 1296.698,
- "text": "ads"
- },
- {
- "id": 3327,
- "start": 1296.698,
- "end": 1297.138,
- "text": "promoting"
- },
- {
- "id": 3328,
- "start": 1297.138,
- "end": 1297.458,
- "text": "different"
- },
- {
- "id": 3329,
- "start": 1297.458,
- "end": 1298.078,
- "text": "viewpoints"
- },
- {
- "id": 3330,
- "start": 1298.078,
- "end": 1298.178,
- "text": "on"
- },
- {
- "id": 3331,
- "start": 1298.178,
- "end": 1298.258,
- "text": "the"
- },
- {
- "id": 3332,
- "start": 1298.258,
- "end": 1298.978,
- "text": "candidates."
- },
- {
- "id": 3333,
- "start": 1298.978,
- "end": 1299.438,
- "text": "And"
- },
- {
- "id": 3334,
- "start": 1299.438,
- "end": 1299.628,
- "text": "there"
- },
- {
- "id": 3335,
- "start": 1299.628,
- "end": 1299.718,
- "text": "were"
- },
- {
- "id": 3336,
- "start": 1299.718,
- "end": 1300.138,
- "text": "multiple"
- },
- {
- "id": 3337,
- "start": 1300.2030000000002,
- "end": 1300.4679999999998,
- "text": "stories"
- },
- {
- "id": 3338,
- "start": 1300.688,
- "end": 1300.798,
- "text": "in"
- },
- {
- "id": 3339,
- "start": 1300.798,
- "end": 1300.868,
- "text": "the"
- },
- {
- "id": 3340,
- "start": 1300.868,
- "end": 1301.628,
- "text": "media"
- },
- {
- "id": 3341,
- "start": 1301.628,
- "end": 1302.298,
- "text": "using"
- },
- {
- "id": 3342,
- "start": 1302.298,
- "end": 1302.788,
- "text": "our"
- },
- {
- "id": 3343,
- "start": 1302.788,
- "end": 1303.268,
- "text": "political"
- },
- {
- "id": 3344,
- "start": 1303.268,
- "end": 1303.438,
- "text": "ad"
- },
- {
- "id": 3345,
- "start": 1303.438,
- "end": 1304.538,
- "text": "archive"
- },
- {
- "id": 3346,
- "start": 1304.538,
- "end": 1304.738,
- "text": "that"
- },
- {
- "id": 3347,
- "start": 1304.738,
- "end": 1304.868,
- "text": "were"
- },
- {
- "id": 3348,
- "start": 1304.868,
- "end": 1305.558,
- "text": "reflecting"
- },
- {
- "id": 3349,
- "start": 1305.558,
- "end": 1306.078,
- "text": "on"
- },
- {
- "id": 3350,
- "start": 1306.078,
- "end": 1306.298,
- "text": "what"
- },
- {
- "id": 3351,
- "start": 1306.298,
- "end": 1306.528,
- "text": "those"
- },
- {
- "id": 3352,
- "start": 1306.528,
- "end": 1306.988,
- "text": "messages"
- },
- {
- "id": 3353,
- "start": 1306.988,
- "end": 1307.608,
- "text": "are"
- },
- {
- "id": 3354,
- "start": 1307.608,
- "end": 1307.928,
- "text": "and"
- },
- {
- "id": 3355,
- "start": 1307.928,
- "end": 1308.198,
- "text": "what"
- },
- {
- "id": 3356,
- "start": 1308.198,
- "end": 1308.588,
- "text": "groups"
- },
- {
- "id": 3357,
- "start": 1308.588,
- "end": 1308.708,
- "text": "were"
- },
- {
- "id": 3358,
- "start": 1308.833,
- "end": 1308.993,
- "text": "running"
- },
- {
- "id": 3359,
- "start": 1309.078,
- "end": 1309.278,
- "text": "which"
- },
- {
- "id": 3360,
- "start": 1309.278,
- "end": 1309.488,
- "text": "kind"
- },
- {
- "id": 3361,
- "start": 1309.488,
- "end": 1309.558,
- "text": "of"
- },
- {
- "id": 3362,
- "start": 1312.5229999999992,
- "end": 1312.6579999999994,
- "text": "directions."
- },
- {
- "id": 3363,
- "start": 1315.558,
- "end": 1315.758,
- "text": "In"
- },
- {
- "id": 3364,
- "start": 1315.758,
- "end": 1316.118,
- "text": "terms"
- },
- {
- "id": 3365,
- "start": 1316.118,
- "end": 1316.468,
- "text": "of"
- },
- {
- "id": 3366,
- "start": 1316.468,
- "end": 1316.778,
- "text": "the"
- },
- {
- "id": 3367,
- "start": 1316.778,
- "end": 1317.108,
- "text": "bigger"
- },
- {
- "id": 3368,
- "start": 1317.108,
- "end": 1317.518,
- "text": "picture"
- },
- {
- "id": 3369,
- "start": 1317.518,
- "end": 1317.748,
- "text": "here,"
- },
- {
- "id": 3370,
- "start": 1317.748,
- "end": 1317.848,
- "text": "in"
- },
- {
- "id": 3371,
- "start": 1317.848,
- "end": 1318.148,
- "text": "terms"
- },
- {
- "id": 3372,
- "start": 1318.148,
- "end": 1318.228,
- "text": "of"
- },
- {
- "id": 3373,
- "start": 1318.228,
- "end": 1318.428,
- "text": "what"
- },
- {
- "id": 3374,
- "start": 1318.428,
- "end": 1318.578,
- "text": "your"
- },
- {
- "id": 3375,
- "start": 1318.578,
- "end": 1319.068,
- "text": "task"
- },
- {
- "id": 3376,
- "start": 1319.068,
- "end": 1320.788,
- "text": "is,"
- },
- {
- "id": 3377,
- "start": 1320.788,
- "end": 1320.988,
- "text": "is"
- },
- {
- "id": 3378,
- "start": 1320.988,
- "end": 1321.088,
- "text": "it"
- },
- {
- "id": 3379,
- "start": 1321.088,
- "end": 1321.178,
- "text": "an"
- },
- {
- "id": 3380,
- "start": 1321.178,
- "end": 1321.868,
- "text": "impossible"
- },
- {
- "id": 3381,
- "start": 1321.868,
- "end": 1322.858,
- "text": "task?"
- },
- {
- "id": 3382,
- "start": 1322.858,
- "end": 1322.958,
- "text": "You’re"
- },
- {
- "id": 3383,
- "start": 1322.958,
- "end": 1323.318,
- "text": "talking"
- },
- {
- "id": 3384,
- "start": 1323.318,
- "end": 1323.658,
- "text": "about"
- },
- {
- "id": 3385,
- "start": 1323.658,
- "end": 1323.828,
- "text": "more"
- },
- {
- "id": 3386,
- "start": 1323.828,
- "end": 1323.928,
- "text": "than"
- },
- {
- "id": 3387,
- "start": 1323.928,
- "end": 1324.108,
- "text": "2"
- },
- {
- "id": 3388,
- "start": 1324.108,
- "end": 1324.438,
- "text": "billion"
- },
- {
- "id": 3389,
- "start": 1324.438,
- "end": 1325.258,
- "text": "people"
- },
- {
- "id": 3390,
- "start": 1325.258,
- "end": 1325.418,
- "text": "that"
- },
- {
- "id": 3391,
- "start": 1325.418,
- "end": 1325.478,
- "text": "are"
- },
- {
- "id": 3392,
- "start": 1325.478,
- "end": 1325.918,
- "text": "connected"
- },
- {
- "id": 3393,
- "start": 1325.918,
- "end": 1326.028,
- "text": "to"
- },
- {
- "id": 3394,
- "start": 1326.028,
- "end": 1326.098,
- "text": "a"
- },
- {
- "id": 3395,
- "start": 1326.098,
- "end": 1326.478,
- "text": "single"
- },
- {
- "id": 3396,
- "start": 1326.478,
- "end": 1327.348,
- "text": "platform."
- },
- {
- "id": 3397,
- "start": 1327.348,
- "end": 1327.478,
- "text": "You’re"
- },
- {
- "id": 3398,
- "start": 1327.478,
- "end": 1327.798,
- "text": "talking"
- },
- {
- "id": 3399,
- "start": 1327.798,
- "end": 1328.768,
- "text": "about"
- },
- {
- "id": 3400,
- "start": 1328.768,
- "end": 1329.328,
- "text": "dozens"
- },
- {
- "id": 3401,
- "start": 1329.328,
- "end": 1329.448,
- "text": "of"
- },
- {
- "id": 3402,
- "start": 1329.448,
- "end": 1331.068,
- "text": "countries,"
- },
- {
- "id": 3403,
- "start": 1331.068,
- "end": 1331.558,
- "text": "multiple"
- },
- {
- "id": 3404,
- "start": 1331.558,
- "end": 1335.368,
- "text": "languages."
- },
- {
- "id": 3405,
- "start": 1335.368,
- "end": 1336.598,
- "text": "Given"
- },
- {
- "id": 3406,
- "start": 1336.598,
- "end": 1336.808,
- "text": "the"
- },
- {
- "id": 3407,
- "start": 1336.808,
- "end": 1337.448,
- "text": "magnitude"
- },
- {
- "id": 3408,
- "start": 1337.448,
- "end": 1337.568,
- "text": "of"
- },
- {
- "id": 3409,
- "start": 1337.568,
- "end": 1337.978,
- "text": "that"
- },
- {
- "id": 3410,
- "start": 1337.978,
- "end": 1338.178,
- "text": "and"
- },
- {
- "id": 3411,
- "start": 1338.178,
- "end": 1339.168,
- "text": "given,"
- },
- {
- "id": 3412,
- "start": 1339.168,
- "end": 1339.888,
- "text": "frankly,"
- },
- {
- "id": 3413,
- "start": 1339.888,
- "end": 1340.048,
- "text": "a"
- },
- {
- "id": 3414,
- "start": 1340.048,
- "end": 1340.438,
- "text": "track"
- },
- {
- "id": 3415,
- "start": 1340.438,
- "end": 1340.758,
- "text": "record"
- },
- {
- "id": 3416,
- "start": 1340.758,
- "end": 1340.878,
- "text": "of"
- },
- {
- "id": 3417,
- "start": 1340.878,
- "end": 1341.158,
- "text": "this"
- },
- {
- "id": 3418,
- "start": 1341.158,
- "end": 1341.618,
- "text": "company"
- },
- {
- "id": 3419,
- "start": 1341.618,
- "end": 1341.718,
- "text": "and"
- },
- {
- "id": 3420,
- "start": 1341.718,
- "end": 1341.968,
- "text": "its"
- },
- {
- "id": 3421,
- "start": 1341.968,
- "end": 1343.378,
- "text": "responsibilities,"
- },
- {
- "id": 3422,
- "start": 1343.158,
- "end": 1343.648,
- "text": "I’m"
- },
- {
- "id": 3423,
- "start": 1344.058,
- "end": 1344.4079999999997,
- "text": "skeptical"
- },
- {
- "id": 3424,
- "start": 1344.958,
- "end": 1345.168,
- "text": "that"
- },
- {
- "id": 3425,
- "start": 1345.168,
- "end": 1345.398,
- "text": "that"
- },
- {
- "id": 3426,
- "start": 1345.398,
- "end": 1345.688,
- "text": "could"
- },
- {
- "id": 3427,
- "start": 1345.688,
- "end": 1346.468,
- "text": "work"
- },
- {
- "id": 3428,
- "start": 1346.468,
- "end": 1346.638,
- "text": "in"
- },
- {
- "id": 3429,
- "start": 1346.638,
- "end": 1346.898,
- "text": "some"
- },
- {
- "id": 3430,
- "start": 1346.898,
- "end": 1347.788,
- "text": "way."
- },
- {
- "id": 3431,
- "start": 1347.788,
- "end": 1348.418,
- "text": "What"
- },
- {
- "id": 3432,
- "start": 1348.418,
- "end": 1348.478,
- "text": "do"
- },
- {
- "id": 3433,
- "start": 1348.478,
- "end": 1348.608,
- "text": "you"
- },
- {
- "id": 3434,
- "start": 1348.608,
- "end": 1348.768,
- "text": "have"
- },
- {
- "id": 3435,
- "start": 1348.768,
- "end": 1348.858,
- "text": "to"
- },
- {
- "id": 3436,
- "start": 1348.858,
- "end": 1349.088,
- "text": "say"
- },
- {
- "id": 3437,
- "start": 1349.088,
- "end": 1349.178,
- "text": "to"
- },
- {
- "id": 3438,
- "start": 1349.178,
- "end": 1349.578,
- "text": "me"
- },
- {
- "id": 3439,
- "start": 1349.603,
- "end": 1350.118,
- "text": "–"
- },
- {
- "id": 3440,
- "start": 1350.028,
- "end": 1350.658,
- "text": "what"
- },
- {
- "id": 3441,
- "start": 1350.343,
- "end": 1350.688,
- "text": "do"
- },
- {
- "id": 3442,
- "start": 1350.658,
- "end": 1350.718,
- "text": "you"
- },
- {
- "id": 3443,
- "start": 1350.718,
- "end": 1350.818,
- "text": "have"
- },
- {
- "id": 3444,
- "start": 1350.818,
- "end": 1350.908,
- "text": "to"
- },
- {
- "id": 3445,
- "start": 1350.908,
- "end": 1351.188,
- "text": "say"
- },
- {
- "id": 3446,
- "start": 1351.2846666666667,
- "end": 1351.5446666666667,
- "text": "to"
- },
- {
- "id": 3447,
- "start": 1351.6613333333335,
- "end": 1351.9013333333335,
- "text": "a"
- },
- {
- "id": 3448,
- "start": 1352.038,
- "end": 1352.258,
- "text": "skeptic"
- },
- {
- "id": 3449,
- "start": 1352.4146666666666,
- "end": 1352.6146666666666,
- "text": "who"
- },
- {
- "id": 3450,
- "start": 1352.7913333333333,
- "end": 1352.9713333333334,
- "text": "says"
- },
- {
- "id": 3451,
- "start": 1353.168,
- "end": 1353.328,
- "text": "this"
- },
- {
- "id": 3452,
- "start": 1353.328,
- "end": 1353.518,
- "text": "just"
- },
- {
- "id": 3453,
- "start": 1353.518,
- "end": 1353.778,
- "text": "sounds"
- },
- {
- "id": 3454,
- "start": 1353.778,
- "end": 1353.908,
- "text": "like"
- },
- {
- "id": 3455,
- "start": 1353.908,
- "end": 1353.968,
- "text": "an"
- },
- {
- "id": 3456,
- "start": 1353.968,
- "end": 1354.548,
- "text": "impossible"
- },
- {
- "id": 3457,
- "start": 1354.818,
- "end": 1355.213,
- "text": "task?"
- },
- {
- "id": 3458,
- "start": 1355.668,
- "end": 1355.878,
- "text": "We"
- },
- {
- "id": 3459,
- "start": 1355.878,
- "end": 1356.308,
- "text": "clearly"
- },
- {
- "id": 3460,
- "start": 1356.308,
- "end": 1356.778,
- "text": "have"
- },
- {
- "id": 3461,
- "start": 1356.778,
- "end": 1356.878,
- "text": "a"
- },
- {
- "id": 3462,
- "start": 1356.878,
- "end": 1357.098,
- "text": "lot"
- },
- {
- "id": 3463,
- "start": 1357.098,
- "end": 1357.288,
- "text": "of"
- },
- {
- "id": 3464,
- "start": 1357.288,
- "end": 1357.598,
- "text": "work"
- },
- {
- "id": 3465,
- "start": 1357.598,
- "end": 1357.818,
- "text": "ahead"
- },
- {
- "id": 3466,
- "start": 1357.818,
- "end": 1357.908,
- "text": "of"
- },
- {
- "id": 3467,
- "start": 1357.908,
- "end": 1358.588,
- "text": "us."
- },
- {
- "id": 3468,
- "start": 1358.588,
- "end": 1358.758,
- "text": "But"
- },
- {
- "id": 3469,
- "start": 1358.758,
- "end": 1358.988,
- "text": "when"
- },
- {
- "id": 3470,
- "start": 1358.988,
- "end": 1359.098,
- "text": "we"
- },
- {
- "id": 3471,
- "start": 1359.098,
- "end": 1359.268,
- "text": "have"
- },
- {
- "id": 3472,
- "start": 1359.268,
- "end": 1359.438,
- "text": "put"
- },
- {
- "id": 3473,
- "start": 1359.438,
- "end": 1359.548,
- "text": "our"
- },
- {
- "id": 3474,
- "start": 1359.548,
- "end": 1359.908,
- "text": "minds"
- },
- {
- "id": 3475,
- "start": 1359.908,
- "end": 1360.018,
- "text": "to"
- },
- {
- "id": 3476,
- "start": 1360.018,
- "end": 1361.018,
- "text": "things,"
- },
- {
- "id": 3477,
- "start": 1361.018,
- "end": 1361.578,
- "text": "then"
- },
- {
- "id": 3478,
- "start": 1361.578,
- "end": 1361.798,
- "text": "we"
- },
- {
- "id": 3479,
- "start": 1361.798,
- "end": 1361.948,
- "text": "have"
- },
- {
- "id": 3480,
- "start": 1361.948,
- "end": 1362.098,
- "text": "been"
- },
- {
- "id": 3481,
- "start": 1362.098,
- "end": 1362.878,
- "text": "able"
- },
- {
- "id": 3482,
- "start": 1362.878,
- "end": 1363.028,
- "text": "to"
- },
- {
- "id": 3483,
- "start": 1363.028,
- "end": 1363.238,
- "text": "turn"
- },
- {
- "id": 3484,
- "start": 1363.238,
- "end": 1363.328,
- "text": "the"
- },
- {
- "id": 3485,
- "start": 1363.328,
- "end": 1363.768,
- "text": "tide."
- },
- {
- "id": 3486,
- "start": 1363.768,
- "end": 1363.928,
- "text": "And"
- },
- {
- "id": 3487,
- "start": 1363.928,
- "end": 1364.028,
- "text": "we"
- },
- {
- "id": 3488,
- "start": 1364.028,
- "end": 1364.208,
- "text": "have"
- },
- {
- "id": 3489,
- "start": 1364.208,
- "end": 1364.358,
- "text": "been"
- },
- {
- "id": 3490,
- "start": 1364.358,
- "end": 1364.678,
- "text": "able"
- },
- {
- "id": 3491,
- "start": 1364.678,
- "end": 1364.818,
- "text": "to"
- },
- {
- "id": 3492,
- "start": 1364.818,
- "end": 1365.668,
- "text": "move"
- },
- {
- "id": 3493,
- "start": 1365.668,
- "end": 1365.868,
- "text": "in"
- },
- {
- "id": 3494,
- "start": 1365.868,
- "end": 1365.958,
- "text": "the"
- },
- {
- "id": 3495,
- "start": 1365.958,
- "end": 1366.248,
- "text": "case"
- },
- {
- "id": 3496,
- "start": 1366.248,
- "end": 1366.338,
- "text": "of"
- },
- {
- "id": 3497,
- "start": 1366.338,
- "end": 1366.638,
- "text": "safety"
- },
- {
- "id": 3498,
- "start": 1366.638,
- "end": 1366.738,
- "text": "and"
- },
- {
- "id": 3499,
- "start": 1366.738,
- "end": 1368.038,
- "text": "security"
- },
- {
- "id": 3500,
- "start": 1368.038,
- "end": 1368.218,
- "text": "to"
- },
- {
- "id": 3501,
- "start": 1368.218,
- "end": 1368.478,
- "text": "being"
- },
- {
- "id": 3502,
- "start": 1368.478,
- "end": 1369.138,
- "text": "proactive,"
- },
- {
- "id": 3503,
- "start": 1369.138,
- "end": 1369.248,
- "text": "to"
- },
- {
- "id": 3504,
- "start": 1369.248,
- "end": 1369.518,
- "text": "getting"
- },
- {
- "id": 3505,
- "start": 1369.518,
- "end": 1369.808,
- "text": "ahead"
- },
- {
- "id": 3506,
- "start": 1369.808,
- "end": 1369.918,
- "text": "of"
- },
- {
- "id": 3507,
- "start": 1370.0529999999999,
- "end": 1370.173,
- "text": "threats,"
- },
- {
- "id": 3508,
- "start": 1370.298,
- "end": 1370.428,
- "text": "to"
- },
- {
- "id": 3509,
- "start": 1370.428,
- "end": 1370.808,
- "text": "taking"
- },
- {
- "id": 3510,
- "start": 1370.808,
- "end": 1371.098,
- "text": "down"
- },
- {
- "id": 3511,
- "start": 1371.098,
- "end": 1371.318,
- "text": "bad"
- },
- {
- "id": 3512,
- "start": 1371.318,
- "end": 1371.858,
- "text": "actors,"
- },
- {
- "id": 3513,
- "start": 1371.858,
- "end": 1372.408,
- "text": "to"
- },
- {
- "id": 3514,
- "start": 1372.148,
- "end": 1372.968,
- "text": "finding"
- },
- {
- "id": 3515,
- "start": 1372.9529999999997,
- "end": 1373.4830000000002,
- "text": "more"
- },
- {
- "id": 3516,
- "start": 1373.758,
- "end": 1373.998,
- "text": "bad"
- },
- {
- "id": 3517,
- "start": 1373.998,
- "end": 1374.718,
- "text": "content."
- },
- {
- "id": 3518,
- "start": 1374.718,
- "end": 1375.018,
- "text": "And"
- },
- {
- "id": 3519,
- "start": 1375.018,
- "end": 1375.208,
- "text": "this"
- },
- {
- "id": 3520,
- "start": 1375.208,
- "end": 1375.318,
- "text": "is"
- },
- {
- "id": 3521,
- "start": 1375.318,
- "end": 1375.378,
- "text": "a"
- },
- {
- "id": 3522,
- "start": 1375.378,
- "end": 1375.668,
- "text": "huge"
- },
- {
- "id": 3523,
- "start": 1375.668,
- "end": 1376.588,
- "text": "investment."
- },
- {
- "id": 3524,
- "start": 1376.588,
- "end": 1377.428,
- "text": "So"
- },
- {
- "id": 3525,
- "start": 1377.428,
- "end": 1377.828,
- "text": "last"
- },
- {
- "id": 3526,
- "start": 1377.828,
- "end": 1378.118,
- "text": "year,"
- },
- {
- "id": 3527,
- "start": 1378.118,
- "end": 1378.248,
- "text": "for"
- },
- {
- "id": 3528,
- "start": 1378.808,
- "end": 1379.458,
- "text": "example—every"
- },
- {
- "id": 3529,
- "start": 1379.498,
- "end": 1380.668,
- "text": "year,"
- },
- {
- "id": 3530,
- "start": 1380.668,
- "end": 1381.188,
- "text": "Facebook"
- },
- {
- "id": 3531,
- "start": 1381.188,
- "end": 1381.468,
- "text": "goes"
- },
- {
- "id": 3532,
- "start": 1381.468,
- "end": 1381.898,
- "text": "through"
- },
- {
- "id": 3533,
- "start": 1381.898,
- "end": 1382.328,
- "text": "a"
- },
- {
- "id": 3534,
- "start": 1382.328,
- "end": 1382.708,
- "text": "planning"
- },
- {
- "id": 3535,
- "start": 1382.708,
- "end": 1383.308,
- "text": "process"
- },
- {
- "id": 3536,
- "start": 1383.308,
- "end": 1383.978,
- "text": "where"
- },
- {
- "id": 3537,
- "start": 1383.978,
- "end": 1384.248,
- "text": "every"
- },
- {
- "id": 3538,
- "start": 1384.248,
- "end": 1384.468,
- "text": "team"
- },
- {
- "id": 3539,
- "start": 1384.468,
- "end": 1384.768,
- "text": "across"
- },
- {
- "id": 3540,
- "start": 1384.768,
- "end": 1384.838,
- "text": "the"
- },
- {
- "id": 3541,
- "start": 1384.838,
- "end": 1385.718,
- "text": "company"
- },
- {
- "id": 3542,
- "start": 1385.718,
- "end": 1386.008,
- "text": "lays"
- },
- {
- "id": 3543,
- "start": 1386.008,
- "end": 1386.148,
- "text": "out"
- },
- {
- "id": 3544,
- "start": 1386.148,
- "end": 1386.198,
- "text": "a"
- },
- {
- "id": 3545,
- "start": 1386.198,
- "end": 1386.448,
- "text": "number"
- },
- {
- "id": 3546,
- "start": 1386.448,
- "end": 1386.528,
- "text": "of"
- },
- {
- "id": 3547,
- "start": 1386.528,
- "end": 1387.058,
- "text": "plans"
- },
- {
- "id": 3548,
- "start": 1387.058,
- "end": 1387.188,
- "text": "and"
- },
- {
- "id": 3549,
- "start": 1387.188,
- "end": 1387.638,
- "text": "ultimately"
- },
- {
- "id": 3550,
- "start": 1387.638,
- "end": 1388.488,
- "text": "Mark"
- },
- {
- "id": 3551,
- "start": 1388.488,
- "end": 1389.458,
- "text": "decides"
- },
- {
- "id": 3552,
- "start": 1389.458,
- "end": 1389.718,
- "text": "which"
- },
- {
- "id": 3553,
- "start": 1389.718,
- "end": 1390.208,
- "text": "teams"
- },
- {
- "id": 3554,
- "start": 1390.208,
- "end": 1390.398,
- "text": "get"
- },
- {
- "id": 3555,
- "start": 1390.398,
- "end": 1390.658,
- "text": "which"
- },
- {
- "id": 3556,
- "start": 1390.658,
- "end": 1390.938,
- "text": "kind"
- },
- {
- "id": 3557,
- "start": 1390.938,
- "end": 1391.498,
- "text": "of"
- },
- {
- "id": 3558,
- "start": 1391.498,
- "end": 1392.828,
- "text": "resources."
- },
- {
- "id": 3559,
- "start": 1392.828,
- "end": 1393.228,
- "text": "Last"
- },
- {
- "id": 3560,
- "start": 1393.228,
- "end": 1393.568,
- "text": "year,"
- },
- {
- "id": 3561,
- "start": 1393.568,
- "end": 1393.688,
- "text": "as"
- },
- {
- "id": 3562,
- "start": 1393.688,
- "end": 1393.798,
- "text": "we"
- },
- {
- "id": 3563,
- "start": 1393.798,
- "end": 1393.908,
- "text": "were"
- },
- {
- "id": 3564,
- "start": 1393.908,
- "end": 1394.128,
- "text": "just"
- },
- {
- "id": 3565,
- "start": 1394.128,
- "end": 1394.548,
- "text": "starting"
- },
- {
- "id": 3566,
- "start": 1394.548,
- "end": 1394.708,
- "text": "this"
- },
- {
- "id": 3567,
- "start": 1394.708,
- "end": 1396.098,
- "text": "process,"
- },
- {
- "id": 3568,
- "start": 1396.098,
- "end": 1396.408,
- "text": "Mark"
- },
- {
- "id": 3569,
- "start": 1396.408,
- "end": 1396.598,
- "text": "sent"
- },
- {
- "id": 3570,
- "start": 1396.598,
- "end": 1396.678,
- "text": "me"
- },
- {
- "id": 3571,
- "start": 1396.678,
- "end": 1396.758,
- "text": "an"
- },
- {
- "id": 3572,
- "start": 1396.758,
- "end": 1397.638,
- "text": "email"
- },
- {
- "id": 3573,
- "start": 1397.638,
- "end": 1397.808,
- "text": "and"
- },
- {
- "id": 3574,
- "start": 1397.808,
- "end": 1397.918,
- "text": "he"
- },
- {
- "id": 3575,
- "start": 1397.918,
- "end": 1398.688,
- "text": "said,"
- },
- {
- "id": 3576,
- "start": 1398.688,
- "end": 1399.058,
- "text": "“Before"
- },
- {
- "id": 3577,
- "start": 1399.058,
- "end": 1399.098,
- "text": "I"
- },
- {
- "id": 3578,
- "start": 1399.098,
- "end": 1399.338,
- "text": "even"
- },
- {
- "id": 3579,
- "start": 1399.348,
- "end": 1399.5646666666667,
- "text": "start"
- },
- {
- "id": 3580,
- "start": 1399.598,
- "end": 1399.7913333333333,
- "text": "it"
- },
- {
- "id": 3581,
- "start": 1399.848,
- "end": 1400.018,
- "text": "with"
- },
- {
- "id": 3582,
- "start": 1400.018,
- "end": 1400.358,
- "text": "anyone"
- },
- {
- "id": 3583,
- "start": 1400.358,
- "end": 1401.118,
- "text": "else,"
- },
- {
- "id": 3584,
- "start": 1401.118,
- "end": 1401.308,
- "text": "how"
- },
- {
- "id": 3585,
- "start": 1401.308,
- "end": 1401.488,
- "text": "much"
- },
- {
- "id": 3586,
- "start": 1401.488,
- "end": 1401.598,
- "text": "do"
- },
- {
- "id": 3587,
- "start": 1401.598,
- "end": 1401.798,
- "text": "you"
- },
- {
- "id": 3588,
- "start": 1401.798,
- "end": 1402.868,
- "text": "need?”"
- },
- {
- "id": 3589,
- "start": 1402.868,
- "end": 1403.108,
- "text": "And"
- },
- {
- "id": 3590,
- "start": 1403.108,
- "end": 1403.218,
- "text": "to"
- },
- {
- "id": 3591,
- "start": 1403.218,
- "end": 1403.438,
- "text": "me"
- },
- {
- "id": 3592,
- "start": 1403.438,
- "end": 1405.528,
- "text": "that"
- },
- {
- "id": 3593,
- "start": 1405.528,
- "end": 1405.738,
- "text": "made"
- },
- {
- "id": 3594,
- "start": 1405.738,
- "end": 1406.268,
- "text": "crystal"
- },
- {
- "id": 3595,
- "start": 1406.268,
- "end": 1407.268,
- "text": "clear"
- },
- {
- "id": 3596,
- "start": 1407.268,
- "end": 1408.268,
- "text": "that"
- },
- {
- "id": 3597,
- "start": 1408.268,
- "end": 1408.648,
- "text": "this"
- },
- {
- "id": 3598,
- "start": 1408.648,
- "end": 1408.788,
- "text": "is"
- },
- {
- "id": 3599,
- "start": 1408.788,
- "end": 1408.878,
- "text": "the"
- },
- {
- "id": 3600,
- "start": 1408.878,
- "end": 1409.178,
- "text": "most"
- },
- {
- "id": 3601,
- "start": 1409.178,
- "end": 1409.648,
- "text": "important"
- },
- {
- "id": 3602,
- "start": 1409.648,
- "end": 1409.828,
- "text": "thing"
- },
- {
- "id": 3603,
- "start": 1409.828,
- "end": 1410.008,
- "text": "for"
- },
- {
- "id": 3604,
- "start": 1410.008,
- "end": 1410.468,
- "text": "us"
- },
- {
- "id": 3605,
- "start": 1410.468,
- "end": 1410.848,
- "text": "as"
- },
- {
- "id": 3606,
- "start": 1410.838,
- "end": 1410.908,
- "text": "a"
- },
- {
- "id": 3607,
- "start": 1411.353,
- "end": 1411.603,
- "text": "company."
- },
- {
- "id": 3608,
- "start": 1411.868,
- "end": 1412.298,
- "text": "And"
- },
- {
- "id": 3609,
- "start": 1412.298,
- "end": 1412.428,
- "text": "as"
- },
- {
- "id": 3610,
- "start": 1412.428,
- "end": 1412.498,
- "text": "a"
- },
- {
- "id": 3611,
- "start": 1412.498,
- "end": 1412.938,
- "text": "result,"
- },
- {
- "id": 3612,
- "start": 1412.938,
- "end": 1413.068,
- "text": "we’re"
- },
- {
- "id": 3613,
- "start": 1413.068,
- "end": 1413.488,
- "text": "growing"
- },
- {
- "id": 3614,
- "start": 1413.488,
- "end": 1413.698,
- "text": "this"
- },
- {
- "id": 3615,
- "start": 1413.698,
- "end": 1413.888,
- "text": "year"
- },
- {
- "id": 3616,
- "start": 1413.888,
- "end": 1414.118,
- "text": "from"
- },
- {
- "id": 3617,
- "start": 1414.2955,
- "end": 1414.663,
- "text": "10,000"
- },
- {
- "id": 3618,
- "start": 1414.703,
- "end": 1415.208,
- "text": "to"
- },
- {
- "id": 3619,
- "start": 1415.1105,
- "end": 1415.753,
- "text": "20,000"
- },
- {
- "id": 3620,
- "start": 1415.518,
- "end": 1416.298,
- "text": "people"
- },
- {
- "id": 3621,
- "start": 1416.298,
- "end": 1416.708,
- "text": "working"
- },
- {
- "id": 3622,
- "start": 1416.708,
- "end": 1416.818,
- "text": "on"
- },
- {
- "id": 3623,
- "start": 1416.818,
- "end": 1417.108,
- "text": "safety"
- },
- {
- "id": 3624,
- "start": 1417.108,
- "end": 1417.198,
- "text": "and"
- },
- {
- "id": 3625,
- "start": 1417.198,
- "end": 1418.508,
- "text": "security"
- },
- {
- "id": 3626,
- "start": 1418.508,
- "end": 1418.688,
- "text": "and"
- },
- {
- "id": 3627,
- "start": 1418.688,
- "end": 1418.798,
- "text": "we’re"
- },
- {
- "id": 3628,
- "start": 1418.798,
- "end": 1419.098,
- "text": "making"
- },
- {
- "id": 3629,
- "start": 1419.098,
- "end": 1419.778,
- "text": "progress"
- },
- {
- "id": 3630,
- "start": 1419.778,
- "end": 1419.888,
- "text": "in"
- },
- {
- "id": 3631,
- "start": 1419.888,
- "end": 1419.938,
- "text": "a"
- },
- {
- "id": 3632,
- "start": 1419.938,
- "end": 1420.198,
- "text": "number"
- },
- {
- "id": 3633,
- "start": 1420.198,
- "end": 1420.288,
- "text": "of"
- },
- {
- "id": 3634,
- "start": 1420.288,
- "end": 1420.638,
- "text": "areas."
- },
- {
- "id": 3635,
- "start": 1420.638,
- "end": 1420.738,
- "text": "We"
- },
- {
- "id": 3636,
- "start": 1420.738,
- "end": 1420.878,
- "text": "have"
- },
- {
- "id": 3637,
- "start": 1420.878,
- "end": 1420.918,
- "text": "a"
- },
- {
- "id": 3638,
- "start": 1420.918,
- "end": 1421.198,
- "text": "lot"
- },
- {
- "id": 3639,
- "start": 1421.198,
- "end": 1421.278,
- "text": "of"
- },
- {
- "id": 3640,
- "start": 1421.278,
- "end": 1421.468,
- "text": "work"
- },
- {
- "id": 3641,
- "start": 1421.468,
- "end": 1421.678,
- "text": "ahead"
- },
- {
- "id": 3642,
- "start": 1421.678,
- "end": 1421.768,
- "text": "of"
- },
- {
- "id": 3643,
- "start": 1421.768,
- "end": 1422.768,
- "text": "us"
- },
- {
- "id": 3644,
- "start": 1422.768,
- "end": 1422.938,
- "text": "but"
- },
- {
- "id": 3645,
- "start": 1422.938,
- "end": 1423.138,
- "text": "there’s"
- },
- {
- "id": 3646,
- "start": 1423.138,
- "end": 1423.208,
- "text": "a"
- },
- {
- "id": 3647,
- "start": 1423.208,
- "end": 1423.378,
- "text": "lot"
- },
- {
- "id": 3648,
- "start": 1423.378,
- "end": 1423.448,
- "text": "of"
- },
- {
- "id": 3649,
- "start": 1423.448,
- "end": 1423.818,
- "text": "progress"
- },
- {
- "id": 3650,
- "start": 1423.818,
- "end": 1424.008,
- "text": "that’s"
- },
- {
- "id": 3651,
- "start": 1424.008,
- "end": 1424.158,
- "text": "been"
- },
- {
- "id": 3652,
- "start": 1424.158,
- "end": 1424.458,
- "text": "made"
- },
- {
- "id": 3653,
- "start": 1424.458,
- "end": 1424.898,
- "text": "and"
- },
- {
- "id": 3654,
- "start": 1424.898,
- "end": 1425.088,
- "text": "there"
- },
- {
- "id": 3655,
- "start": 1425.088,
- "end": 1425.248,
- "text": "will"
- },
- {
- "id": 3656,
- "start": 1425.248,
- "end": 1425.368,
- "text": "be"
- },
- {
- "id": 3657,
- "start": 1425.798,
- "end": 1425.938,
- "text": "challenges."
- },
- {
- "id": 3658,
- "start": 1426.348,
- "end": 1426.508,
- "text": "But"
- },
- {
- "id": 3659,
- "start": 1426.508,
- "end": 1426.608,
- "text": "it"
- },
- {
- "id": 3660,
- "start": 1426.608,
- "end": 1426.798,
- "text": "is"
- },
- {
- "id": 3661,
- "start": 1426.798,
- "end": 1427.178,
- "text": "our"
- },
- {
- "id": 3662,
- "start": 1427.178,
- "end": 1428.448,
- "text": "responsibility"
- },
- {
- "id": 3663,
- "start": 1428.448,
- "end": 1428.848,
- "text": "and"
- },
- {
- "id": 3664,
- "start": 1428.848,
- "end": 1429.098,
- "text": "it’s"
- },
- {
- "id": 3665,
- "start": 1429.098,
- "end": 1429.378,
- "text": "my"
- },
- {
- "id": 3666,
- "start": 1429.378,
- "end": 1430.158,
- "text": "job"
- },
- {
- "id": 3667,
- "start": 1430.158,
- "end": 1430.288,
- "text": "to"
- },
- {
- "id": 3668,
- "start": 1430.288,
- "end": 1430.428,
- "text": "be"
- },
- {
- "id": 3669,
- "start": 1430.428,
- "end": 1430.668,
- "text": "ready"
- },
- {
- "id": 3670,
- "start": 1430.668,
- "end": 1430.828,
- "text": "for"
- },
- {
- "id": 3671,
- "start": 1430.828,
- "end": 1431.158,
- "text": "them"
- },
- {
- "id": 3672,
- "start": 1431.158,
- "end": 1431.308,
- "text": "and"
- },
- {
- "id": 3673,
- "start": 1431.308,
- "end": 1431.388,
- "text": "to"
- },
- {
- "id": 3674,
- "start": 1431.388,
- "end": 1431.528,
- "text": "get"
- },
- {
- "id": 3675,
- "start": 1431.528,
- "end": 1431.728,
- "text": "ahead"
- },
- {
- "id": 3676,
- "start": 1431.728,
- "end": 1431.828,
- "text": "of"
- },
- {
- "id": 3677,
- "start": 1431.828,
- "end": 1431.998,
- "text": "them."
- },
- {
- "id": 3678,
- "start": 1431.998,
- "end": 1432.228,
- "text": "So"
- },
- {
- "id": 3679,
- "start": 1432.228,
- "end": 1432.418,
- "text": "what"
- },
- {
- "id": 3680,
- "start": 1432.418,
- "end": 1432.588,
- "text": "is"
- },
- {
- "id": 3681,
- "start": 1432.588,
- "end": 1432.738,
- "text": "your"
- },
- {
- "id": 3682,
- "start": 1432.738,
- "end": 1433.088,
- "text": "biggest"
- },
- {
- "id": 3683,
- "start": 1433.088,
- "end": 1434.568,
- "text": "challenge?"
- },
- {
- "id": 3684,
- "start": 1434.568,
- "end": 1434.858,
- "text": "There"
- },
- {
- "id": 3685,
- "start": 1434.858,
- "end": 1435.048,
- "text": "is"
- },
- {
- "id": 3686,
- "start": 1435.048,
- "end": 1435.198,
- "text": "a"
- },
- {
- "id": 3687,
- "start": 1435.198,
- "end": 1435.578,
- "text": "lot"
- },
- {
- "id": 3688,
- "start": 1436.688,
- "end": 1436.9379999999996,
- "text": "of–sorry"
- },
- {
- "id": 3689,
- "start": 1438.178,
- "end": 1438.298,
- "text": "let"
- },
- {
- "id": 3690,
- "start": 1438.298,
- "end": 1438.378,
- "text": "me"
- },
- {
- "id": 3691,
- "start": 1438.378,
- "end": 1438.728,
- "text": "reframe"
- },
- {
- "id": 3692,
- "start": 1438.728,
- "end": 1440.468,
- "text": "that."
- },
- {
- "id": 3693,
- "start": 1440.468,
- "end": 1440.648,
- "text": "We"
- },
- {
- "id": 3694,
- "start": 1440.648,
- "end": 1441.028,
- "text": "have"
- },
- {
- "id": 3695,
- "start": 1441.028,
- "end": 1441.118,
- "text": "a"
- },
- {
- "id": 3696,
- "start": 1441.118,
- "end": 1441.308,
- "text": "lot"
- },
- {
- "id": 3697,
- "start": 1441.308,
- "end": 1441.398,
- "text": "of"
- },
- {
- "id": 3698,
- "start": 1441.398,
- "end": 1441.568,
- "text": "work"
- },
- {
- "id": 3699,
- "start": 1441.568,
- "end": 1441.768,
- "text": "ahead"
- },
- {
- "id": 3700,
- "start": 1441.768,
- "end": 1441.858,
- "text": "of"
- },
- {
- "id": 3701,
- "start": 1441.858,
- "end": 1442.538,
- "text": "us."
- },
- {
- "id": 3702,
- "start": 1442.238,
- "end": 1442.868,
- "text": "And—"
- },
- {
- "id": 3703,
- "start": 1442.5529999999999,
- "end": 1442.978,
- "text": "Like"
- },
- {
- "id": 3704,
- "start": 1442.868,
- "end": 1443.088,
- "text": "what,"
- },
- {
- "id": 3705,
- "start": 1443.088,
- "end": 1443.248,
- "text": "for"
- },
- {
- "id": 3706,
- "start": 1443.248,
- "end": 1444.158,
- "text": "instance?"
- },
- {
- "id": 3707,
- "start": 1444.158,
- "end": 1444.368,
- "text": "What"
- },
- {
- "id": 3708,
- "start": 1444.368,
- "end": 1444.568,
- "text": "work"
- },
- {
- "id": 3709,
- "start": 1444.568,
- "end": 1444.638,
- "text": "do"
- },
- {
- "id": 3710,
- "start": 1444.638,
- "end": 1444.728,
- "text": "you"
- },
- {
- "id": 3711,
- "start": 1444.728,
- "end": 1444.898,
- "text": "have"
- },
- {
- "id": 3712,
- "start": 1445.158,
- "end": 1445.348,
- "text": "ahead?"
- },
- {
- "id": 3713,
- "start": 1445.588,
- "end": 1445.798,
- "text": "And"
- },
- {
- "id": 3714,
- "start": 1445.798,
- "end": 1445.928,
- "text": "how"
- },
- {
- "id": 3715,
- "start": 1445.928,
- "end": 1446.288,
- "text": "quickly"
- },
- {
- "id": 3716,
- "start": 1446.288,
- "end": 1446.468,
- "text": "can"
- },
- {
- "id": 3717,
- "start": 1446.468,
- "end": 1446.558,
- "text": "you"
- },
- {
- "id": 3718,
- "start": 1446.558,
- "end": 1446.748,
- "text": "do"
- },
- {
- "id": 3719,
- "start": 1446.748,
- "end": 1447.738,
- "text": "it?"
- },
- {
- "id": 3720,
- "start": 1446.898,
- "end": 1448.078,
- "text": "This"
- },
- {
- "id": 3721,
- "start": 1448.3613333333333,
- "end": 1449.2013333333339,
- "text": "is"
- },
- {
- "id": 3722,
- "start": 1449.8246666666664,
- "end": 1450.3246666666669,
- "text": "a—this"
- },
- {
- "id": 3723,
- "start": 1451.288,
- "end": 1451.448,
- "text": "is"
- },
- {
- "id": 3724,
- "start": 1451.448,
- "end": 1451.528,
- "text": "the"
- },
- {
- "id": 3725,
- "start": 1451.528,
- "end": 1451.778,
- "text": "kind"
- },
- {
- "id": 3726,
- "start": 1451.778,
- "end": 1451.928,
- "text": "of"
- },
- {
- "id": 3727,
- "start": 1451.928,
- "end": 1452.378,
- "text": "work"
- },
- {
- "id": 3728,
- "start": 1452.378,
- "end": 1452.708,
- "text": "that"
- },
- {
- "id": 3729,
- "start": 1452.708,
- "end": 1453.078,
- "text": "never"
- },
- {
- "id": 3730,
- "start": 1453.078,
- "end": 1453.348,
- "text": "really"
- },
- {
- "id": 3731,
- "start": 1453.348,
- "end": 1453.678,
- "text": "ends"
- },
- {
- "id": 3732,
- "start": 1453.678,
- "end": 1454.008,
- "text": "because"
- },
- {
- "id": 3733,
- "start": 1454.008,
- "end": 1454.158,
- "text": "we"
- },
- {
- "id": 3734,
- "start": 1454.158,
- "end": 1454.318,
- "text": "will"
- },
- {
- "id": 3735,
- "start": 1454.318,
- "end": 1455.418,
- "text": "have"
- },
- {
- "id": 3736,
- "start": 1455.418,
- "end": 1456.128,
- "text": "adversaries"
- },
- {
- "id": 3737,
- "start": 1456.128,
- "end": 1456.228,
- "text": "on"
- },
- {
- "id": 3738,
- "start": 1456.228,
- "end": 1456.348,
- "text": "the"
- },
- {
- "id": 3739,
- "start": 1456.348,
- "end": 1456.538,
- "text": "other"
- },
- {
- "id": 3740,
- "start": 1456.538,
- "end": 1456.958,
- "text": "side"
- },
- {
- "id": 3741,
- "start": 1456.958,
- "end": 1457.108,
- "text": "who"
- },
- {
- "id": 3742,
- "start": 1457.108,
- "end": 1457.228,
- "text": "are"
- },
- {
- "id": 3743,
- "start": 1457.228,
- "end": 1457.608,
- "text": "trying"
- },
- {
- "id": 3744,
- "start": 1457.608,
- "end": 1457.928,
- "text": "to"
- },
- {
- "id": 3745,
- "start": 1457.928,
- "end": 1458.798,
- "text": "evade"
- },
- {
- "id": 3746,
- "start": 1458.798,
- "end": 1458.988,
- "text": "or"
- },
- {
- "id": 3747,
- "start": 1458.988,
- "end": 1459.398,
- "text": "exploit"
- },
- {
- "id": 3748,
- "start": 1459.398,
- "end": 1459.498,
- "text": "our"
- },
- {
- "id": 3749,
- "start": 1459.498,
- "end": 1460.488,
- "text": "systems."
- },
- {
- "id": 3750,
- "start": 1460.488,
- "end": 1460.668,
- "text": "And"
- },
- {
- "id": 3751,
- "start": 1460.668,
- "end": 1461.198,
- "text": "so"
- },
- {
- "id": 3752,
- "start": 1461.198,
- "end": 1461.348,
- "text": "we"
- },
- {
- "id": 3753,
- "start": 1461.348,
- "end": 1461.538,
- "text": "have"
- },
- {
- "id": 3754,
- "start": 1461.538,
- "end": 1461.618,
- "text": "to"
- },
- {
- "id": 3755,
- "start": 1461.618,
- "end": 1462.858,
- "text": "constantly"
- },
- {
- "id": 3756,
- "start": 1462.858,
- "end": 1463.028,
- "text": "be"
- },
- {
- "id": 3757,
- "start": 1463.028,
- "end": 1463.678,
- "text": "ready"
- },
- {
- "id": 3758,
- "start": 1463.678,
- "end": 1463.888,
- "text": "and"
- },
- {
- "id": 3759,
- "start": 1463.888,
- "end": 1464.008,
- "text": "be"
- },
- {
- "id": 3760,
- "start": 1464.008,
- "end": 1464.698,
- "text": "proactive"
- },
- {
- "id": 3761,
- "start": 1464.698,
- "end": 1464.838,
- "text": "and"
- },
- {
- "id": 3762,
- "start": 1464.838,
- "end": 1465.098,
- "text": "keep"
- },
- {
- "id": 3763,
- "start": 1465.098,
- "end": 1465.678,
- "text": "learning"
- },
- {
- "id": 3764,
- "start": 1465.678,
- "end": 1465.888,
- "text": "so"
- },
- {
- "id": 3765,
- "start": 1465.888,
- "end": 1466.088,
- "text": "that"
- },
- {
- "id": 3766,
- "start": 1466.088,
- "end": 1466.228,
- "text": "we"
- },
- {
- "id": 3767,
- "start": 1466.228,
- "end": 1466.388,
- "text": "can"
- },
- {
- "id": 3768,
- "start": 1466.388,
- "end": 1466.588,
- "text": "get"
- },
- {
- "id": 3769,
- "start": 1466.588,
- "end": 1467.538,
- "text": "ahead"
- },
- {
- "id": 3770,
- "start": 1467.538,
- "end": 1467.998,
- "text": "of"
- },
- {
- "id": 3771,
- "start": 1467.998,
- "end": 1468.128,
- "text": "the"
- },
- {
- "id": 3772,
- "start": 1468.128,
- "end": 1468.378,
- "text": "next"
- },
- {
- "id": 3773,
- "start": 1468.378,
- "end": 1468.868,
- "text": "challenges"
- },
- {
- "id": 3774,
- "start": 1468.868,
- "end": 1469.048,
- "text": "that"
- },
- {
- "id": 3775,
- "start": 1469.048,
- "end": 1469.598,
- "text": "come"
- },
- {
- "id": 3776,
- "start": 1469.598,
- "end": 1469.888,
- "text": "ahead"
- },
- {
- "id": 3777,
- "start": 1469.888,
- "end": 1469.988,
- "text": "of"
- },
- {
- "id": 3778,
- "start": 1470.088,
- "end": 1470.383,
- "text": "us,"
- },
- {
- "id": 3779,
- "start": 1470.288,
- "end": 1470.778,
- "text": "and"
- },
- {
- "id": 3780,
- "start": 1470.778,
- "end": 1471.078,
- "text": "that"
- },
- {
- "id": 3781,
- "start": 1471.078,
- "end": 1471.418,
- "text": "is"
- },
- {
- "id": 3782,
- "start": 1471.418,
- "end": 1471.728,
- "text": "our"
- },
- {
- "id": 3783,
- "start": 1471.728,
- "end": 1472.088,
- "text": "job"
- },
- {
- "id": 3784,
- "start": 1472.088,
- "end": 1472.198,
- "text": "to"
- },
- {
- "id": 3785,
- "start": 1472.198,
- "end": 1476.628,
- "text": "do."
- },
- {
- "id": 3786,
- "start": 1476.628,
- "end": 1477.088,
- "text": "Do"
- },
- {
- "id": 3787,
- "start": 1477.088,
- "end": 1477.168,
- "text": "you"
- },
- {
- "id": 3788,
- "start": 1477.168,
- "end": 1477.428,
- "text": "think"
- },
- {
- "id": 3789,
- "start": 1477.428,
- "end": 1477.578,
- "text": "when"
- },
- {
- "id": 3790,
- "start": 1477.578,
- "end": 1477.988,
- "text": "Mark"
- },
- {
- "id": 3791,
- "start": 1477.988,
- "end": 1478.438,
- "text": "gave"
- },
- {
- "id": 3792,
- "start": 1478.438,
- "end": 1478.908,
- "text": "you"
- },
- {
- "id": 3793,
- "start": 1478.908,
- "end": 1479.458,
- "text": "essentially"
- },
- {
- "id": 3794,
- "start": 1479.458,
- "end": 1479.538,
- "text": "a"
- },
- {
- "id": 3795,
- "start": 1479.538,
- "end": 1479.828,
- "text": "blank"
- },
- {
- "id": 3796,
- "start": 1480.6280000000002,
- "end": 1480.8229999999999,
- "text": "check"
- },
- {
- "id": 3797,
- "start": 1481.718,
- "end": 1481.818,
- "text": "to"
- },
- {
- "id": 3798,
- "start": 1481.818,
- "end": 1482.008,
- "text": "do"
- },
- {
- "id": 3799,
- "start": 1482.008,
- "end": 1482.108,
- "text": "the"
- },
- {
- "id": 3800,
- "start": 1482.108,
- "end": 1482.348,
- "text": "work"
- },
- {
- "id": 3801,
- "start": 1482.348,
- "end": 1482.518,
- "text": "that"
- },
- {
- "id": 3802,
- "start": 1482.518,
- "end": 1482.638,
- "text": "you’re"
- },
- {
- "id": 3803,
- "start": 1482.638,
- "end": 1483.448,
- "text": "doing,"
- },
- {
- "id": 3804,
- "start": 1483.448,
- "end": 1483.708,
- "text": "was"
- },
- {
- "id": 3805,
- "start": 1483.708,
- "end": 1483.858,
- "text": "he"
- },
- {
- "id": 3806,
- "start": 1483.858,
- "end": 1483.978,
- "text": "in"
- },
- {
- "id": 3807,
- "start": 1483.978,
- "end": 1484.278,
- "text": "some"
- },
- {
- "id": 3808,
- "start": 1484.278,
- "end": 1486.698,
- "text": "way"
- },
- {
- "id": 3809,
- "start": 1486.698,
- "end": 1487.068,
- "text": "trying"
- },
- {
- "id": 3810,
- "start": 1487.068,
- "end": 1487.168,
- "text": "to"
- },
- {
- "id": 3811,
- "start": 1487.168,
- "end": 1487.988,
- "text": "salvage"
- },
- {
- "id": 3812,
- "start": 1487.988,
- "end": 1488.448,
- "text": "the"
- },
- {
- "id": 3813,
- "start": 1488.448,
- "end": 1489.018,
- "text": "essential"
- },
- {
- "id": 3814,
- "start": 1489.018,
- "end": 1489.528,
- "text": "idea"
- },
- {
- "id": 3815,
- "start": 1489.528,
- "end": 1489.698,
- "text": "of"
- },
- {
- "id": 3816,
- "start": 1489.698,
- "end": 1489.888,
- "text": "what"
- },
- {
- "id": 3817,
- "start": 1489.888,
- "end": 1490.098,
- "text": "he’s"
- },
- {
- "id": 3818,
- "start": 1490.098,
- "end": 1490.558,
- "text": "created,"
- },
- {
- "id": 3819,
- "start": 1490.558,
- "end": 1490.758,
- "text": "which"
- },
- {
- "id": 3820,
- "start": 1490.758,
- "end": 1490.918,
- "text": "is"
- },
- {
- "id": 3821,
- "start": 1490.918,
- "end": 1491.138,
- "text": "this"
- },
- {
- "id": 3822,
- "start": 1491.138,
- "end": 1492.078,
- "text": "idea"
- },
- {
- "id": 3823,
- "start": 1492.078,
- "end": 1492.298,
- "text": "of"
- },
- {
- "id": 3824,
- "start": 1492.298,
- "end": 1493.588,
- "text": "connecting"
- },
- {
- "id": 3825,
- "start": 1493.588,
- "end": 1494.128,
- "text": "everyone"
- },
- {
- "id": 3826,
- "start": 1494.128,
- "end": 1494.328,
- "text": "on"
- },
- {
- "id": 3827,
- "start": 1494.328,
- "end": 1494.578,
- "text": "earth"
- },
- {
- "id": 3828,
- "start": 1494.578,
- "end": 1495.098,
- "text": "to"
- },
- {
- "id": 3829,
- "start": 1495.098,
- "end": 1495.438,
- "text": "his"
- },
- {
- "id": 3830,
- "start": 1495.438,
- "end": 1495.848,
- "text": "single"
- },
- {
- "id": 3831,
- "start": 1495.848,
- "end": 1496.888,
- "text": "platform?"
- },
- {
- "id": 3832,
- "start": 1496.888,
- "end": 1498.458,
- "text": "Because"
- },
- {
- "id": 3833,
- "start": 1498.458,
- "end": 1498.708,
- "text": "it"
- },
- {
- "id": 3834,
- "start": 1498.708,
- "end": 1499.178,
- "text": "seems"
- },
- {
- "id": 3835,
- "start": 1499.178,
- "end": 1499.408,
- "text": "like"
- },
- {
- "id": 3836,
- "start": 1499.408,
- "end": 1499.768,
- "text": "almost"
- },
- {
- "id": 3837,
- "start": 1499.768,
- "end": 1499.828,
- "text": "a"
- },
- {
- "id": 3838,
- "start": 1499.828,
- "end": 1500.078,
- "text": "Hail"
- },
- {
- "id": 3839,
- "start": 1500.078,
- "end": 1500.468,
- "text": "Mary"
- },
- {
- "id": 3840,
- "start": 1500.468,
- "end": 1502.798,
- "text": "pass"
- },
- {
- "id": 3841,
- "start": 1502.798,
- "end": 1502.978,
- "text": "for"
- },
- {
- "id": 3842,
- "start": 1502.978,
- "end": 1503.298,
- "text": "the"
- },
- {
- "id": 3843,
- "start": 1503.298,
- "end": 1503.828,
- "text": "beauty"
- },
- {
- "id": 3844,
- "start": 1503.828,
- "end": 1503.988,
- "text": "of"
- },
- {
- "id": 3845,
- "start": 1503.988,
- "end": 1504.208,
- "text": "that"
- },
- {
- "id": 3846,
- "start": 1504.208,
- "end": 1504.598,
- "text": "idea,"
- },
- {
- "id": 3847,
- "start": 1504.598,
- "end": 1504.768,
- "text": "the"
- },
- {
- "id": 3848,
- "start": 1504.768,
- "end": 1505.368,
- "text": "idealism"
- },
- {
- "id": 3849,
- "start": 1505.368,
- "end": 1505.518,
- "text": "of"
- },
- {
- "id": 3850,
- "start": 1505.518,
- "end": 1505.718,
- "text": "that"
- },
- {
- "id": 3851,
- "start": 1505.718,
- "end": 1506.688,
- "text": "idea."
- },
- {
- "id": 3852,
- "start": 1506.688,
- "end": 1506.998,
- "text": "We"
- },
- {
- "id": 3853,
- "start": 1506.998,
- "end": 1507.258,
- "text": "know"
- },
- {
- "id": 3854,
- "start": 1507.258,
- "end": 1507.398,
- "text": "we"
- },
- {
- "id": 3855,
- "start": 1507.398,
- "end": 1507.608,
- "text": "have"
- },
- {
- "id": 3856,
- "start": 1507.608,
- "end": 1507.668,
- "text": "a"
- },
- {
- "id": 3857,
- "start": 1507.668,
- "end": 1508.578,
- "text": "responsibility."
- },
- {
- "id": 3858,
- "start": 1508.578,
- "end": 1509.388,
- "text": "Facebook"
- },
- {
- "id": 3859,
- "start": 1509.388,
- "end": 1510.278,
- "text": "brings"
- },
- {
- "id": 3860,
- "start": 1510.278,
- "end": 1510.758,
- "text": "many"
- },
- {
- "id": 3861,
- "start": 1510.758,
- "end": 1511.008,
- "text": "good"
- },
- {
- "id": 3862,
- "start": 1511.008,
- "end": 1511.448,
- "text": "things"
- },
- {
- "id": 3863,
- "start": 1511.448,
- "end": 1511.698,
- "text": "into"
- },
- {
- "id": 3864,
- "start": 1511.698,
- "end": 1511.808,
- "text": "the"
- },
- {
- "id": 3865,
- "start": 1512.343,
- "end": 1512.4879999999998,
- "text": "world."
- },
- {
- "id": 3866,
- "start": 1512.988,
- "end": 1513.168,
- "text": "But"
- },
- {
- "id": 3867,
- "start": 1513.168,
- "end": 1513.298,
- "text": "there"
- },
- {
- "id": 3868,
- "start": 1513.298,
- "end": 1513.428,
- "text": "is"
- },
- {
- "id": 3869,
- "start": 1513.428,
- "end": 1514.208,
- "text": "also"
- },
- {
- "id": 3870,
- "start": 1514.208,
- "end": 1515.388,
- "text": "abuse"
- },
- {
- "id": 3871,
- "start": 1515.388,
- "end": 1515.788,
- "text": "and"
- },
- {
- "id": 3872,
- "start": 1515.788,
- "end": 1515.948,
- "text": "we"
- },
- {
- "id": 3873,
- "start": 1515.948,
- "end": 1516.188,
- "text": "have"
- },
- {
- "id": 3874,
- "start": 1516.188,
- "end": 1516.308,
- "text": "to"
- },
- {
- "id": 3875,
- "start": 1516.488,
- "end": 1516.588,
- "text": "minimize"
- },
- {
- "id": 3876,
- "start": 1516.788,
- "end": 1516.868,
- "text": "the"
- },
- {
- "id": 3877,
- "start": 1516.868,
- "end": 1517.568,
- "text": "bad"
- },
- {
- "id": 3878,
- "start": 1517.288,
- "end": 1517.728,
- "text": "and"
- },
- {
- "id": 3879,
- "start": 1517.8980000000001,
- "end": 1518.173,
- "text": "maximize"
- },
- {
- "id": 3880,
- "start": 1518.508,
- "end": 1518.618,
- "text": "the"
- },
- {
- "id": 3881,
- "start": 1518.618,
- "end": 1519.028,
- "text": "good."
- },
- {
- "id": 3882,
- "start": 1519.028,
- "end": 1519.278,
- "text": "That"
- },
- {
- "id": 3883,
- "start": 1519.278,
- "end": 1519.488,
- "text": "is"
- },
- {
- "id": 3884,
- "start": 1519.488,
- "end": 1519.688,
- "text": "our"
- },
- {
- "id": 3885,
- "start": 1519.688,
- "end": 1520.588,
- "text": "job"
- },
- {
- "id": 3886,
- "start": 1520.588,
- "end": 1520.988,
- "text": "and"
- },
- {
- "id": 3887,
- "start": 1520.988,
- "end": 1521.148,
- "text": "there"
- },
- {
- "id": 3888,
- "start": 1521.148,
- "end": 1521.318,
- "text": "will"
- },
- {
- "id": 3889,
- "start": 1521.318,
- "end": 1521.438,
- "text": "be"
- },
- {
- "id": 3890,
- "start": 1521.438,
- "end": 1522.068,
- "text": "challenges."
- },
- {
- "id": 3891,
- "start": 1522.068,
- "end": 1522.198,
- "text": "There"
- },
- {
- "id": 3892,
- "start": 1522.198,
- "end": 1522.348,
- "text": "will"
- },
- {
- "id": 3893,
- "start": 1522.348,
- "end": 1522.488,
- "text": "be"
- },
- {
- "id": 3894,
- "start": 1522.488,
- "end": 1523.238,
- "text": "adversaries"
- },
- {
- "id": 3895,
- "start": 1523.238,
- "end": 1523.398,
- "text": "who"
- },
- {
- "id": 3896,
- "start": 1523.398,
- "end": 1523.538,
- "text": "will"
- },
- {
- "id": 3897,
- "start": 1523.538,
- "end": 1523.748,
- "text": "try"
- },
- {
- "id": 3898,
- "start": 1523.748,
- "end": 1523.838,
- "text": "to"
- },
- {
- "id": 3899,
- "start": 1523.838,
- "end": 1524.188,
- "text": "evade"
- },
- {
- "id": 3900,
- "start": 1524.188,
- "end": 1524.278,
- "text": "our"
- },
- {
- "id": 3901,
- "start": 1524.278,
- "end": 1525.688,
- "text": "systems."
- },
- {
- "id": 3902,
- "start": 1525.688,
- "end": 1525.978,
- "text": "We"
- },
- {
- "id": 3903,
- "start": 1525.978,
- "end": 1526.238,
- "text": "have"
- },
- {
- "id": 3904,
- "start": 1526.238,
- "end": 1526.348,
- "text": "to"
- },
- {
- "id": 3905,
- "start": 1526.348,
- "end": 1526.508,
- "text": "be"
- },
- {
- "id": 3906,
- "start": 1526.508,
- "end": 1527.258,
- "text": "ready"
- },
- {
- "id": 3907,
- "start": 1527.258,
- "end": 1527.478,
- "text": "and"
- },
- {
- "id": 3908,
- "start": 1527.478,
- "end": 1527.568,
- "text": "it"
- },
- {
- "id": 3909,
- "start": 1527.568,
- "end": 1527.728,
- "text": "is"
- },
- {
- "id": 3910,
- "start": 1527.728,
- "end": 1527.918,
- "text": "our"
- },
- {
- "id": 3911,
- "start": 1527.918,
- "end": 1528.808,
- "text": "responsibility."
- },
- {
- "id": 3912,
- "start": 1528.808,
- "end": 1529.108,
- "text": "It’s"
- },
- {
- "id": 3913,
- "start": 1529.108,
- "end": 1529.538,
- "text": "literally"
- },
- {
- "id": 3914,
- "start": 1529.538,
- "end": 1529.708,
- "text": "my"
- },
- {
- "id": 3915,
- "start": 1529.708,
- "end": 1530.228,
- "text": "job"
- },
- {
- "id": 3916,
- "start": 1530.228,
- "end": 1530.358,
- "text": "to"
- },
- {
- "id": 3917,
- "start": 1530.358,
- "end": 1530.818,
- "text": "continue"
- },
- {
- "id": 3918,
- "start": 1530.818,
- "end": 1530.908,
- "text": "to"
- },
- {
- "id": 3919,
- "start": 1530.908,
- "end": 1531.048,
- "text": "get"
- },
- {
- "id": 3920,
- "start": 1531.048,
- "end": 1531.238,
- "text": "ahead"
- },
- {
- "id": 3921,
- "start": 1531.238,
- "end": 1531.348,
- "text": "of"
- },
- {
- "id": 3922,
- "start": 1531.338,
- "end": 1531.698,
- "text": "those."
- }
- ],
- "paragraphs": [
- {
- "id": 0,
- "start": 1.41,
- "end": 8.775,
- "speaker": "James Jacoby"
- },
- {
- "id": 1,
- "start": 8.81,
- "end": 9.96,
- "speaker": "James Jacoby"
- },
- {
- "id": 2,
- "start": 9.96,
- "end": 15.84,
- "speaker": "James Jacoby"
- },
- {
- "id": 3,
- "start": 15.84,
- "end": 19.675,
- "speaker": "Guy Rosen"
- },
- {
- "id": 4,
- "start": 19.67,
- "end": 27.79,
- "speaker": "Guy Rosen"
- },
- {
- "id": 5,
- "start": 27.79,
- "end": 41.52499999999998,
- "speaker": "Guy Rosen"
- },
- {
- "id": 6,
- "start": 41.74,
- "end": 57.81,
- "speaker": "Guy Rosen"
- },
- {
- "id": 7,
- "start": 57.81,
- "end": 68.73,
- "speaker": "Guy Rosen"
- },
- {
- "id": 8,
- "start": 68.73,
- "end": 72.255,
- "speaker": "Guy Rosen"
- },
- {
- "id": 9,
- "start": 72.74,
- "end": 89.18,
- "speaker": "Guy Rosen"
- },
- {
- "id": 10,
- "start": 88.8,
- "end": 91.445,
- "speaker": "Guy Rosen"
- },
- {
- "id": 11,
- "start": 91.78,
- "end": 95,
- "speaker": "Guy Rosen"
- },
- {
- "id": 12,
- "start": 95,
- "end": 97.69,
- "speaker": "James Jacoby"
- },
- {
- "id": 13,
- "start": 97.9,
- "end": 101.01000000000002,
- "speaker": "James Jacoby"
- },
- {
- "id": 14,
- "start": 101.04,
- "end": 109.49,
- "speaker": "Guy Rosen"
- },
- {
- "id": 15,
- "start": 109.49,
- "end": 121.42,
- "speaker": "Guy Rosen"
- },
- {
- "id": 16,
- "start": 121.42,
- "end": 131.02,
- "speaker": "Guy Rosen"
- },
- {
- "id": 17,
- "start": 131.02,
- "end": 137.39,
- "speaker": "Guy Rosen"
- },
- {
- "id": 18,
- "start": 137.39,
- "end": 149.155,
- "speaker": "Guy Rosen"
- },
- {
- "id": 19,
- "start": 149.32,
- "end": 160.115,
- "speaker": "Guy Rosen"
- },
- {
- "id": 20,
- "start": 162.25,
- "end": 166.06,
- "speaker": "Guy Rosen"
- },
- {
- "id": 21,
- "start": 166.35,
- "end": 169.31,
- "speaker": "Guy Rosen"
- },
- {
- "id": 22,
- "start": 169.31,
- "end": 181.9,
- "speaker": "Guy Rosen"
- },
- {
- "id": 23,
- "start": 181.9,
- "end": 192.02,
- "speaker": "Guy Rosen"
- },
- {
- "id": 24,
- "start": 192.02,
- "end": 205.28,
- "speaker": "Guy Rosen"
- },
- {
- "id": 25,
- "start": 205.28,
- "end": 209.82,
- "speaker": "Guy Rosen"
- },
- {
- "id": 26,
- "start": 209.82,
- "end": 211.8,
- "speaker": "Guy Rosen"
- },
- {
- "id": 27,
- "start": 211.8,
- "end": 214.33,
- "speaker": "Guy Rosen"
- },
- {
- "id": 28,
- "start": 214.5966666666667,
- "end": 223.475,
- "speaker": "James Jacoby"
- },
- {
- "id": 29,
- "start": 223.66,
- "end": 232.425,
- "speaker": "Guy Rosen"
- },
- {
- "id": 30,
- "start": 232.68,
- "end": 235.16,
- "speaker": "Guy Rosen"
- },
- {
- "id": 31,
- "start": 235.16,
- "end": 249.44,
- "speaker": "Guy Rosen"
- },
- {
- "id": 32,
- "start": 249.44,
- "end": 256.24,
- "speaker": "Guy Rosen"
- },
- {
- "id": 33,
- "start": 256.24,
- "end": 263.67499999999995,
- "speaker": "Guy Rosen"
- },
- {
- "id": 34,
- "start": 263.85,
- "end": 265.785,
- "speaker": "Guy Rosen"
- },
- {
- "id": 35,
- "start": 266.15,
- "end": 282.74,
- "speaker": "James Jacoby"
- },
- {
- "id": 36,
- "start": 282.74,
- "end": 289.44,
- "speaker": "James Jacoby"
- },
- {
- "id": 37,
- "start": 289.74,
- "end": 295.04,
- "speaker": "Guy Rosen"
- },
- {
- "id": 38,
- "start": 295.18,
- "end": 304.06,
- "speaker": "Guy Rosen"
- },
- {
- "id": 39,
- "start": 304.06,
- "end": 305.065,
- "speaker": "Guy Rosen"
- },
- {
- "id": 40,
- "start": 305.54,
- "end": 309.22,
- "speaker": "Guy Rosen"
- },
- {
- "id": 41,
- "start": 309.22,
- "end": 315.86,
- "speaker": "Guy Rosen"
- },
- {
- "id": 42,
- "start": 315.86,
- "end": 320.09,
- "speaker": "Guy Rosen"
- },
- {
- "id": 43,
- "start": 320.09,
- "end": 328.92499999999995,
- "speaker": "Guy Rosen"
- },
- {
- "id": 44,
- "start": 329.14,
- "end": 336.16,
- "speaker": "Guy Rosen"
- },
- {
- "id": 45,
- "start": 336.16,
- "end": 357.165,
- "speaker": "Guy Rosen"
- },
- {
- "id": 46,
- "start": 357.74,
- "end": 375.115,
- "speaker": "Guy Rosen"
- },
- {
- "id": 47,
- "start": 375.6,
- "end": 380.44,
- "speaker": "Guy Rosen"
- },
- {
- "id": 48,
- "start": 380.44,
- "end": 387.65,
- "speaker": "Guy Rosen"
- },
- {
- "id": 49,
- "start": 387.65,
- "end": 404.045,
- "speaker": "James Jacoby"
- },
- {
- "id": 50,
- "start": 404.09,
- "end": 407.31,
- "speaker": "James Jacoby"
- },
- {
- "id": 51,
- "start": 407.31,
- "end": 419.24,
- "speaker": "Guy Rosen"
- },
- {
- "id": 52,
- "start": 419.24,
- "end": 421.06,
- "speaker": "Guy Rosen"
- },
- {
- "id": 53,
- "start": 421.06,
- "end": 424.67,
- "speaker": "Guy Rosen"
- },
- {
- "id": 54,
- "start": 424.67,
- "end": 432.38,
- "speaker": "Guy Rosen"
- },
- {
- "id": 55,
- "start": 432.38,
- "end": 437.01000000000005,
- "speaker": "Guy Rosen"
- },
- {
- "id": 56,
- "start": 437.36,
- "end": 442.5,
- "speaker": "Guy Rosen"
- },
- {
- "id": 57,
- "start": 442.5,
- "end": 453.9950000000001,
- "speaker": "Guy Rosen"
- },
- {
- "id": 58,
- "start": 454.24,
- "end": 471.16,
- "speaker": "Guy Rosen"
- },
- {
- "id": 59,
- "start": 471.16,
- "end": 478.15,
- "speaker": "Guy Rosen"
- },
- {
- "id": 60,
- "start": 478.15,
- "end": 479.38,
- "speaker": "Guy Rosen"
- },
- {
- "id": 61,
- "start": 479.38,
- "end": 493.63,
- "speaker": "Guy Rosen"
- },
- {
- "id": 62,
- "start": 492.79,
- "end": 497.25,
- "speaker": "James Jacoby"
- },
- {
- "id": 63,
- "start": 497.25,
- "end": 511.28,
- "speaker": "James Jacoby"
- },
- {
- "id": 64,
- "start": 511.28,
- "end": 514.58,
- "speaker": "James Jacoby"
- },
- {
- "id": 65,
- "start": 514.58,
- "end": 520.48,
- "speaker": "James Jacoby"
- },
- {
- "id": 66,
- "start": 520.48,
- "end": 526.5699999999999,
- "speaker": "Guy Rosen"
- },
- {
- "id": 67,
- "start": 526.79,
- "end": 537.88,
- "speaker": "Guy Rosen"
- },
- {
- "id": 68,
- "start": 537.88,
- "end": 543.21,
- "speaker": "Guy Rosen"
- },
- {
- "id": 69,
- "start": 543.21,
- "end": 552.9125,
- "speaker": "Guy Rosen"
- },
- {
- "id": 70,
- "start": 553.08,
- "end": 555.98,
- "speaker": "Guy Rosen"
- },
- {
- "id": 71,
- "start": 555.98,
- "end": 562.86,
- "speaker": "Guy Rosen"
- },
- {
- "id": 72,
- "start": 562.86,
- "end": 566.96,
- "speaker": "Guy Rosen"
- },
- {
- "id": 73,
- "start": 566.96,
- "end": 576.03,
- "speaker": "Guy Rosen"
- },
- {
- "id": 74,
- "start": 576.03,
- "end": 579.39,
- "speaker": "Guy Rosen"
- },
- {
- "id": 75,
- "start": 579.63,
- "end": 588.38,
- "speaker": "Guy Rosen"
- },
- {
- "id": 76,
- "start": 588.38,
- "end": 590.73,
- "speaker": "Guy Rosen"
- },
- {
- "id": 77,
- "start": 590.73,
- "end": 592.93,
- "speaker": "Guy Rosen"
- },
- {
- "id": 78,
- "start": 592.93,
- "end": 598.7,
- "speaker": "Guy Rosen"
- },
- {
- "id": 79,
- "start": 598.7,
- "end": 618.735,
- "speaker": "James Jacoby"
- },
- {
- "id": 80,
- "start": 618.735,
- "end": 621.9125,
- "speaker": "James Jacoby"
- },
- {
- "id": 81,
- "start": 622.235,
- "end": 625.125,
- "speaker": "James Jacoby"
- },
- {
- "id": 82,
- "start": 625.125,
- "end": 631.965,
- "speaker": "James Jacoby"
- },
- {
- "id": 83,
- "start": 631.965,
- "end": 636.0583333333333,
- "speaker": "Guy Rosen"
- },
- {
- "id": 84,
- "start": 636.6716666666666,
- "end": 640.425,
- "speaker": "Guy Rosen"
- },
- {
- "id": 85,
- "start": 640.425,
- "end": 666.115,
- "speaker": "Guy Rosen"
- },
- {
- "id": 86,
- "start": 666.115,
- "end": 669.985,
- "speaker": "Guy Rosen"
- },
- {
- "id": 87,
- "start": 669.985,
- "end": 673.5179999999999,
- "speaker": "Guy Rosen"
- },
- {
- "id": 88,
- "start": 673.655,
- "end": 678.895,
- "speaker": "Guy Rosen"
- },
- {
- "id": 89,
- "start": 678.895,
- "end": 690.225,
- "speaker": "James Jacoby"
- },
- {
- "id": 90,
- "start": 690.225,
- "end": 700.645,
- "speaker": "James Jacoby"
- },
- {
- "id": 91,
- "start": 700.8683333333332,
- "end": 711.6250000000001,
- "speaker": "Guy Rosen"
- },
- {
- "id": 92,
- "start": 711.955,
- "end": 727.78,
- "speaker": "Guy Rosen"
- },
- {
- "id": 93,
- "start": 728.08,
- "end": 742.5,
- "speaker": "James Jacoby"
- },
- {
- "id": 94,
- "start": 742.5,
- "end": 754.5166666666665,
- "speaker": "James Jacoby"
- },
- {
- "id": 95,
- "start": 754.99,
- "end": 759.57,
- "speaker": "James Jacoby"
- },
- {
- "id": 96,
- "start": 759.57,
- "end": 770.99,
- "speaker": "Guy Rosen"
- },
- {
- "id": 97,
- "start": 770.78,
- "end": 773.86,
- "speaker": "Guy Rosen"
- },
- {
- "id": 98,
- "start": 773.86,
- "end": 783.24,
- "speaker": "Guy Rosen"
- },
- {
- "id": 99,
- "start": 783.34,
- "end": 793.32,
- "speaker": "Guy Rosen"
- },
- {
- "id": 100,
- "start": 793.32,
- "end": 802.18,
- "speaker": "Guy Rosen"
- },
- {
- "id": 101,
- "start": 802.18,
- "end": 821.3149999999996,
- "speaker": "Guy Rosen"
- },
- {
- "id": 102,
- "start": 825.11,
- "end": 839.37,
- "speaker": "James Jacoby"
- },
- {
- "id": 103,
- "start": 839.37,
- "end": 846.0189999999999,
- "speaker": "James Jacoby"
- },
- {
- "id": 104,
- "start": 846.614,
- "end": 852.614,
- "speaker": "Guy Rosen"
- },
- {
- "id": 105,
- "start": 852.614,
- "end": 865.514,
- "speaker": "Guy Rosen"
- },
- {
- "id": 106,
- "start": 865.514,
- "end": 873.264,
- "speaker": "Guy Rosen"
- },
- {
- "id": 107,
- "start": 873.264,
- "end": 875.774,
- "speaker": "Guy Rosen"
- },
- {
- "id": 108,
- "start": 875.774,
- "end": 882.549,
- "speaker": "James Jacoby"
- },
- {
- "id": 109,
- "start": 882.704,
- "end": 887.724,
- "speaker": "James Jacoby"
- },
- {
- "id": 110,
- "start": 887.724,
- "end": 907.784,
- "speaker": "James Jacoby"
- },
- {
- "id": 111,
- "start": 907.784,
- "end": 917.1840000000002,
- "speaker": "James Jacoby"
- },
- {
- "id": 112,
- "start": 917.814,
- "end": 926.214,
- "speaker": "Guy Rosen"
- },
- {
- "id": 113,
- "start": 926.214,
- "end": 933.324,
- "speaker": "Guy Rosen"
- },
- {
- "id": 114,
- "start": 933.574,
- "end": 947.8740000000001,
- "speaker": "Guy Rosen"
- },
- {
- "id": 115,
- "start": 947.694,
- "end": 949.9440000000001,
- "speaker": "Guy Rosen"
- },
- {
- "id": 116,
- "start": 950.444,
- "end": 961.464,
- "speaker": "Guy Rosen"
- },
- {
- "id": 117,
- "start": 961.464,
- "end": 967.287,
- "speaker": "Guy Rosen"
- },
- {
- "id": 118,
- "start": 967.287,
- "end": 990.397,
- "speaker": "James Jacoby"
- },
- {
- "id": 119,
- "start": 990.397,
- "end": 1008.947,
- "speaker": "James Jacoby"
- },
- {
- "id": 120,
- "start": 1008.947,
- "end": 1013.5020000000002,
- "speaker": "Guy Rosen"
- },
- {
- "id": 121,
- "start": 1014.277,
- "end": 1018.157,
- "speaker": "James Jacoby"
- },
- {
- "id": 122,
- "start": 1018.157,
- "end": 1034.277,
- "speaker": "James Jacoby"
- },
- {
- "id": 123,
- "start": 1034.737,
- "end": 1040.247,
- "speaker": "Guy Rosen"
- },
- {
- "id": 124,
- "start": 1040.247,
- "end": 1050.477,
- "speaker": "Guy Rosen"
- },
- {
- "id": 125,
- "start": 1050.807,
- "end": 1067.0136666666667,
- "speaker": "Guy Rosen"
- },
- {
- "id": 126,
- "start": 1067.1436666666666,
- "end": 1079.547,
- "speaker": "Guy Rosen"
- },
- {
- "id": 127,
- "start": 1079.547,
- "end": 1089.553,
- "speaker": "Guy Rosen"
- },
- {
- "id": 128,
- "start": 1089.553,
- "end": 1103.853,
- "speaker": "Guy Rosen"
- },
- {
- "id": 129,
- "start": 1103.853,
- "end": 1113.713,
- "speaker": "Guy Rosen"
- },
- {
- "id": 130,
- "start": 1114.353,
- "end": 1132.493,
- "speaker": "Guy Rosen"
- },
- {
- "id": 131,
- "start": 1132.493,
- "end": 1140.753,
- "speaker": "Guy Rosen"
- },
- {
- "id": 132,
- "start": 1140.753,
- "end": 1145.053,
- "speaker": "Guy Rosen"
- },
- {
- "id": 133,
- "start": 1145.053,
- "end": 1146.113,
- "speaker": "Guy Rosen"
- },
- {
- "id": 134,
- "start": 1146.113,
- "end": 1160.2863333333332,
- "speaker": "Guy Rosen"
- },
- {
- "id": 135,
- "start": 1159.953,
- "end": 1179.908,
- "speaker": "Guy Rosen"
- },
- {
- "id": 136,
- "start": 1180.353,
- "end": 1188.0030000000002,
- "speaker": "James Jacoby"
- },
- {
- "id": 137,
- "start": 1187.893,
- "end": 1189.6029999999998,
- "speaker": "Guy Rosen"
- },
- {
- "id": 138,
- "start": 1189.843,
- "end": 1198.113,
- "speaker": "James Jacoby"
- },
- {
- "id": 139,
- "start": 1198.113,
- "end": 1203.4129999999998,
- "speaker": "James Jacoby"
- },
- {
- "id": 140,
- "start": 1203.803,
- "end": 1211.018,
- "speaker": "Guy Rosen"
- },
- {
- "id": 141,
- "start": 1211.018,
- "end": 1227.818,
- "speaker": "Guy Rosen"
- },
- {
- "id": 142,
- "start": 1227.818,
- "end": 1231.768,
- "speaker": "Guy Rosen"
- },
- {
- "id": 143,
- "start": 1231.768,
- "end": 1236.148,
- "speaker": "Guy Rosen"
- },
- {
- "id": 144,
- "start": 1236.148,
- "end": 1246.798,
- "speaker": "Guy Rosen"
- },
- {
- "id": 145,
- "start": 1246.798,
- "end": 1259.316,
- "speaker": "Guy Rosen"
- },
- {
- "id": 146,
- "start": 1259.5240000000001,
- "end": 1268.1213333333335,
- "speaker": "Guy Rosen"
- },
- {
- "id": 147,
- "start": 1268.1146666666668,
- "end": 1272.048,
- "speaker": "James Jacoby"
- },
- {
- "id": 148,
- "start": 1272.048,
- "end": 1281.268,
- "speaker": "Guy Rosen"
- },
- {
- "id": 149,
- "start": 1281.268,
- "end": 1289.578,
- "speaker": "Guy Rosen"
- },
- {
- "id": 150,
- "start": 1289.578,
- "end": 1298.978,
- "speaker": "Guy Rosen"
- },
- {
- "id": 151,
- "start": 1298.978,
- "end": 1312.6579999999994,
- "speaker": "Guy Rosen"
- },
- {
- "id": 152,
- "start": 1315.558,
- "end": 1322.858,
- "speaker": "James Jacoby"
- },
- {
- "id": 153,
- "start": 1322.858,
- "end": 1327.348,
- "speaker": "James Jacoby"
- },
- {
- "id": 154,
- "start": 1327.348,
- "end": 1335.368,
- "speaker": "James Jacoby"
- },
- {
- "id": 155,
- "start": 1335.368,
- "end": 1347.788,
- "speaker": "James Jacoby"
- },
- {
- "id": 156,
- "start": 1347.788,
- "end": 1355.213,
- "speaker": "James Jacoby"
- },
- {
- "id": 157,
- "start": 1355.668,
- "end": 1358.588,
- "speaker": "Guy Rosen"
- },
- {
- "id": 158,
- "start": 1358.588,
- "end": 1363.768,
- "speaker": "Guy Rosen"
- },
- {
- "id": 159,
- "start": 1363.768,
- "end": 1374.718,
- "speaker": "Guy Rosen"
- },
- {
- "id": 160,
- "start": 1374.718,
- "end": 1376.588,
- "speaker": "Guy Rosen"
- },
- {
- "id": 161,
- "start": 1376.588,
- "end": 1392.828,
- "speaker": "Guy Rosen"
- },
- {
- "id": 162,
- "start": 1392.828,
- "end": 1402.868,
- "speaker": "Guy Rosen"
- },
- {
- "id": 163,
- "start": 1402.868,
- "end": 1411.603,
- "speaker": "Guy Rosen"
- },
- {
- "id": 164,
- "start": 1411.868,
- "end": 1420.638,
- "speaker": "Guy Rosen"
- },
- {
- "id": 165,
- "start": 1420.638,
- "end": 1425.938,
- "speaker": "Guy Rosen"
- },
- {
- "id": 166,
- "start": 1426.348,
- "end": 1431.998,
- "speaker": "Guy Rosen"
- },
- {
- "id": 167,
- "start": 1431.998,
- "end": 1434.568,
- "speaker": "James Jacoby"
- },
- {
- "id": 168,
- "start": 1434.568,
- "end": 1440.468,
- "speaker": "Guy Rosen"
- },
- {
- "id": 169,
- "start": 1440.468,
- "end": 1442.538,
- "speaker": "Guy Rosen"
- },
- {
- "id": 170,
- "start": 1442.238,
- "end": 1442.868,
- "speaker": "Guy Rosen"
- },
- {
- "id": 171,
- "start": 1442.5529999999999,
- "end": 1444.158,
- "speaker": "James Jacoby"
- },
- {
- "id": 172,
- "start": 1444.158,
- "end": 1445.348,
- "speaker": "James Jacoby"
- },
- {
- "id": 173,
- "start": 1445.588,
- "end": 1447.738,
- "speaker": "James Jacoby"
- },
- {
- "id": 174,
- "start": 1446.898,
- "end": 1460.488,
- "speaker": "Guy Rosen"
- },
- {
- "id": 175,
- "start": 1460.488,
- "end": 1476.628,
- "speaker": "Guy Rosen"
- },
- {
- "id": 176,
- "start": 1476.628,
- "end": 1496.888,
- "speaker": "James Jacoby"
- },
- {
- "id": 177,
- "start": 1496.888,
- "end": 1506.688,
- "speaker": "James Jacoby"
- },
- {
- "id": 178,
- "start": 1506.688,
- "end": 1508.578,
- "speaker": "Guy Rosen"
- },
- {
- "id": 179,
- "start": 1508.578,
- "end": 1512.4879999999998,
- "speaker": "Guy Rosen"
- },
- {
- "id": 180,
- "start": 1512.988,
- "end": 1519.028,
- "speaker": "Guy Rosen"
- },
- {
- "id": 181,
- "start": 1519.028,
- "end": 1522.068,
- "speaker": "Guy Rosen"
- },
- {
- "id": 182,
- "start": 1522.068,
- "end": 1525.688,
- "speaker": "Guy Rosen"
- },
- {
- "id": 183,
- "start": 1525.688,
- "end": 1528.808,
- "speaker": "Guy Rosen"
- },
- {
- "id": 184,
- "start": 1528.808,
- "end": 1531.698,
- "speaker": "Guy Rosen"
- }
- ]
- }
- }
-
-]
\ No newline at end of file
diff --git a/packages/Helpers/which-js-env/index.js b/packages/Helpers/which-js-env/index.js
deleted file mode 100644
index 166f332..0000000
--- a/packages/Helpers/which-js-env/index.js
+++ /dev/null
@@ -1,61 +0,0 @@
-/**
- * Determines the enviroment Javascript is being run on
- * @returns - 'browser', 'electron', 'cep'. where cep stands for adobe CEP panel
- */
-function whichJsEnv() {
- // Is browser Eg client side app
- if (window.process === undefined) {
- // console.debug('In browser Environment');
- if (process.env.REACT_APP_NODE_ENV === 'demo') {
- return 'demo';
- }
-
- return 'browser';
- } else {
- if (window.process.versions.electron !== undefined) {
- // console.debug('In Electron Enviroment');
- // console.info('In Electron v: ', window.process.versions.electron);
- // console.info('Using chrome v: ', window.process.versions.chrome);
- return 'electron';
- }
- else if (window.process.versions.cep !== undefined) {
- // console.debug('In Adobe CEP Environment');
- // console.info('In Chromium v: ', window.process.versions.chromium);
- // console.info('In CEP (Adobe Common Extensibility Platform ) v: ', window.process.versions.cep);
- // console.info('adjusting current working directory for Adobe CEP');
- // console.log('Starting directory: ' + process.cwd());
- try {
- process.chdir(__dirname);
- // process.chdir('..');
- // console.log('New directory: ' + process.cwd());
- }
- catch (err) {
- console.log('chdir: ' + err);
- }
-
- return 'cep';
-
- }
- else {
- console.error("couldn't determine the js environment");
-
- return undefined;
- }
- }
-}
-
-function isBrowser() {
- return whichJsEnv() === 'browser';
-}
-
-function isElectron() {
- return whichJsEnv() === 'electron';
-}
-
-function isCep() {
- return whichJsEnv() === 'isCep';
-}
-
-export default whichJsEnv;
-
-export { isElectron, isBrowser, isCep, whichJsEnv };
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/CustomAlert/index.js b/packages/components/TranscriptForm/CustomAlert/index.js
index 1d8a9b5..c865775 100644
--- a/packages/components/TranscriptForm/CustomAlert/index.js
+++ b/packages/components/TranscriptForm/CustomAlert/index.js
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import Alert from 'react-bootstrap/Alert';
-const CustomAlert = ( { props } ) => {
+const CustomAlert = ({ ...props } ) => {
const [ showAlert, toggleShowAlert ] = useState(props.show);
diff --git a/packages/components/TranscriptForm/TranscriptWrapper/index.js b/packages/components/TranscriptForm/TranscriptWrapper/index.js
deleted file mode 100644
index be8b5a6..0000000
--- a/packages/components/TranscriptForm/TranscriptWrapper/index.js
+++ /dev/null
@@ -1,48 +0,0 @@
-import ApiWrapper from '../../../Helpers/ApiWrapper';
-
-const newTranscriptWrapper = async (form, projectId) => {
-
- try {
- console.log('inside try');
-
- const tester = await ApiWrapper.createTranscript(projectId, form)
- .then(response => {
- if (response.status === true) {
- console.log('YAY SUCCESS');
- const tempObj = {
- success: true,
- response: response,
- transcriptId: response.transcriptId,
- transcript: response.transcript
- };
-
- console.log(tempObj);
-
- return (tempObj);
-
- } else if (response.status === false) {
- console.log('BOO');
- const tempObj = {
- success: false,
- };
-
- return tempObj;
- }
- }).catch(() => {
- const tempObj = {
- success: false
- };
-
- console.log(tempObj);
-
- return tempObj;
- });
-
- return tester;
-
- } catch (e) {
- console.error('error submitting:::', e);
- }
-};
-
-export default newTranscriptWrapper;
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index e939d94..e1d67eb 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -1,8 +1,8 @@
-import React, { useState } from 'react';
+import React, { useState, useEffect } from 'react';
+import PropTypes from 'prop-types';
import Form from 'react-bootstrap/Form';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
-import TranscriptWrapper from './TranscriptWrapper/index.js';
import CustomAlert from './CustomAlert';
const TranscriptForm = ({ ...props }) => {
@@ -11,15 +11,13 @@ const TranscriptForm = ({ ...props }) => {
const [ description, setDescription ] = useState(props.description);
const [ isValidated, setValidationStatus ] = useState(false);
const [ formData, setFormData ] = useState({});
- const [ isUploading, setIsUploading ] = useState(false);
- const [ uploadCompleted, setUploadCompletion ] = useState(null);
- const [ redirect, setShouldRedirect ] = useState(false);
- const [ transcriptId, setNewTranscriptId ] = useState(null);
- const [ notificationMessage, updateNotificationMessage ] = useState(null);
-
- const setNotificationMessage = () => {
- if (!uploadCompleted) {
+ const [ uploadCompleted, setUploadCompletion ] = useState(props.uploadCompleted);
+ const [ notificationMessage, updateNotificationMessage ] = useState(props.notification);
+
+ useEffect(() => {
+ if (!props.uploadCompleted) {
const alert = {
/>;
updateNotificationMessage(alert);
}
- };
+ }, [ uploadCompleted ]);
- const handleTitleChange = event => {
- setTitle(event.target.value);
- };
+ const handleFileUpload = e => {
+ const file = e.target.files[0];
- const handleDescriptionChange = event => {
- setDescription(event.target.value);
- };
+ if (!title) {
+ setTitle(file.name);
+ }
- const handleFileUpload = e => {
- const files = Array.from(e.target.files);
- const file = files[0];
- const tmpObj = {
+ const fileObj = {
title: title,
description: description,
file: file,
type: file.type
};
- if (file.path) {
- tmpObj.path = file.path;
- }
- setFormData(tmpObj);
- if (!title) {
- setTitle(file.name);
+ if (file.path) {
+ fileObj.path = file.path;
}
+ setFormData(fileObj);
};
- const sendRequest = async () => {
-
+ const sendRequest = () => {
const tmpObj = {
...formData,
title: title,
@@ -65,42 +55,25 @@ const TranscriptForm = ({ ...props }) => {
};
setFormData(tmpObj);
- props.handleSaveForm(formData);
- props.handleSubmitForm(formData);
-
- await TranscriptWrapper(formData, props.projectId)
- .then((response) => {
- console.log('inside then');
- if (response.success === true) {
- console.log('inside where success is true');
- setIsUploading(false);
- setUploadCompletion(true);
- setShouldRedirect(true);
- setNewTranscriptId(response.transcriptId);
- props.handleSaveForm(response.transcript);
-
- return;
- } else {
- console.log('response.success not true');
- setIsUploading(false);
- setShouldRedirect(false);
- setNotificationMessage();
-
- return;
- }
- });
+ props.handleSubmitForm(tmpObj);
};
- const handleSubmit = async (event) => {
+ const handleSubmit = (event) => {
const form = event.currentTarget;
event.preventDefault();
event.stopPropagation();
- return (!form.checkValidity()) ? setValidationStatus(true) : await sendRequest();
+ if (!form.checkValidity()) {
+ setValidationStatus(true);
+ }
+ else {
+ setValidationStatus(true);
+ sendRequest();
+ }
};
return (<>
- {/* { notificationMessage } */}
+ { notificationMessage }
Chose a title for your Transcript
@@ -130,7 +103,7 @@ const TranscriptForm = ({ ...props }) => {
type="text"
placeholder="Enter a Transcript description"
value={ description }
- onChange={ e => handleDescriptionChange(e) }
+ onChange={ e => setDescription(e.target.value) }
/>
Chose an optional description for your Transcript
@@ -166,4 +139,24 @@ const TranscriptForm = ({ ...props }) => {
);
};
+TranscriptForm.propTypes = {
+ id: PropTypes.number.isRequired,
+ projectId: PropTypes.number.isRequired,
+ title: PropTypes.string.isRequired,
+ description: PropTypes.string,
+ uploadCompleted: PropTypes.bool.isRequired,
+ handleSubmitForm: PropTypes.func.isRequired,
+};
+
+TranscriptForm.defaultProps = {
+ id: 456,
+ projectId: 123,
+ title: 'Sample Transcript Title',
+ description: 'Sample Transcript Description',
+ uploadCompleted: true,
+ handleSubmitForm: () => {
+ console.log('Form submitted');
+ },
+};
+
export default TranscriptForm;
\ No newline at end of file
diff --git a/packages/components/TranscriptForm/stories/index.stories.js b/packages/components/TranscriptForm/stories/index.stories.js
index abcdd1b..d7a5854 100644
--- a/packages/components/TranscriptForm/stories/index.stories.js
+++ b/packages/components/TranscriptForm/stories/index.stories.js
@@ -16,12 +16,12 @@ export const transcriptFormProps = {
projectId: 123,
title: 'Sample Transcript Title',
description: 'Sample Transcript Description',
- id: 456
+ id: 456,
+ uploadCompleted: false
};
export const transcriptFormActions = actions(
{
- handleSaveForm: 'Form saved',
handleCloseModal: 'Modal closed',
handleSubmitForm: 'Form submitted' }
);
@@ -32,7 +32,7 @@ storiesOf('Transcript Form / Custom Alert', module)
return (
);
From 3a310d810f8d7a4cb04c7eaae6e71f289864dc87 Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Tue, 10 Sep 2019 11:50:14 +0100
Subject: [PATCH 05/11] Merge with master, file reordering
---
packages/components/FormModal/index.js | 24 ++++++++++++++----
.../FormModal/stories/index.stories.js | 25 +++++++++++--------
.../{FormModal => }/ItemForm/index.js | 0
.../ItemForm/stories/index.stories.js | 18 +++++++++++++
packages/components/List/index.js | 1 -
packages/components/TranscriptForm/index.js | 8 +++---
.../TranscriptForm/stories/index.stories.js | 23 +++++++++++------
7 files changed, 72 insertions(+), 27 deletions(-)
rename packages/components/{FormModal => }/ItemForm/index.js (100%)
create mode 100644 packages/components/ItemForm/stories/index.stories.js
diff --git a/packages/components/FormModal/index.js b/packages/components/FormModal/index.js
index d8adb07..abc1234 100644
--- a/packages/components/FormModal/index.js
+++ b/packages/components/FormModal/index.js
@@ -1,22 +1,36 @@
import React, { useState } from 'react';
import PropTypes from 'prop-types';
import Modal from 'react-bootstrap/Modal';
-import ItemForm from './ItemForm/index.js';
+import ItemForm from '../ItemForm/index.js';
+import TranscriptForm from '../TranscriptForm/index.js';
const ItemFormModal = (props) => {
-
const [ showModal, toggleShowModal ] = useState(props.showModal);
+ const form = () => {
+ if (props.type === 'transcript') {
+ return (
+
+ );
+ } else {
+ return (
+
+ );
+ }
+ };
+
return (
toggleShowModal(!showModal) }>
{props.modalTitle}
-
+ {form()}
);
diff --git a/packages/components/FormModal/stories/index.stories.js b/packages/components/FormModal/stories/index.stories.js
index bde4f7b..3c7fe18 100644
--- a/packages/components/FormModal/stories/index.stories.js
+++ b/packages/components/FormModal/stories/index.stories.js
@@ -1,15 +1,14 @@
import React from 'react';
-
import { storiesOf } from '@storybook/react';
import { actions } from '@storybook/addon-actions';
import StoryRouter from 'storybook-react-router';
import FormModal from '../index.js';
-import ItemForm from '../ItemForm';
export const modalItems = [ {
id: 1,
+ itemType: 'project',
showModal: true,
- title: 'Example Transcript Title',
+ title: 'Example Project Title',
description: 'This is a sample card description. This is fun!',
url: '/projects/1/transcripts/1234',
modalTitle: 'Edit Project',
@@ -17,6 +16,15 @@ export const modalItems = [ {
showModal: true,
modalTitle: 'New Project',
id: 2
+}, {
+ projectId: 123,
+ title: '',
+ description: '',
+ uploadCompleted: true,
+ showModal: true,
+ modalTitle: 'New Transcript',
+ id: 3,
+ type: 'transcript'
} ];
export const modalActions = actions({ handleSaveForm: 'Form saved' });
@@ -42,16 +50,13 @@ storiesOf('Form Modal', module)
/>
);
- });
-
-storiesOf('Form Modal / Item Form', module)
- .addDecorator(StoryRouter())
- .add('Edit Project', () => {
+ })
+ .add('New Transcript', () => {
return (
);
diff --git a/packages/components/FormModal/ItemForm/index.js b/packages/components/ItemForm/index.js
similarity index 100%
rename from packages/components/FormModal/ItemForm/index.js
rename to packages/components/ItemForm/index.js
diff --git a/packages/components/ItemForm/stories/index.stories.js b/packages/components/ItemForm/stories/index.stories.js
new file mode 100644
index 0000000..dcb2b14
--- /dev/null
+++ b/packages/components/ItemForm/stories/index.stories.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import { storiesOf } from '@storybook/react';
+import StoryRouter from 'storybook-react-router';
+import ItemForm from '../index.js';
+import { modalActions, modalItems } from '../../FormModal/stories/index.stories.js';
+
+storiesOf('Item Form', module)
+ .addDecorator(StoryRouter())
+ .add('Edit Project', () => {
+ return (
+
+ );
+ });
\ No newline at end of file
diff --git a/packages/components/List/index.js b/packages/components/List/index.js
index 451a4ac..1202432 100644
--- a/packages/components/List/index.js
+++ b/packages/components/List/index.js
@@ -6,7 +6,6 @@ import TranscriptCard from '../TranscriptCard';
const List = ({ projectItems, handleEdit, handleDelete }) => {
- console.log(projectItems);
const [ items, setItems ] = useState(projectItems);
const includesText = (text, subsetText) => {
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index e1d67eb..1fa9439 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -55,7 +55,8 @@ const TranscriptForm = ({ ...props }) => {
};
setFormData(tmpObj);
- props.handleSubmitForm(tmpObj);
+
+ props.handleSaveForm(tmpObj);
};
const handleSubmit = (event) => {
@@ -68,6 +69,7 @@ const TranscriptForm = ({ ...props }) => {
}
else {
setValidationStatus(true);
+
sendRequest();
}
};
@@ -154,8 +156,8 @@ TranscriptForm.defaultProps = {
title: 'Sample Transcript Title',
description: 'Sample Transcript Description',
uploadCompleted: true,
- handleSubmitForm: () => {
- console.log('Form submitted');
+ handleSaveForm: () => {
+ console.log('Form saved');
},
};
diff --git a/packages/components/TranscriptForm/stories/index.stories.js b/packages/components/TranscriptForm/stories/index.stories.js
index d7a5854..f824af6 100644
--- a/packages/components/TranscriptForm/stories/index.stories.js
+++ b/packages/components/TranscriptForm/stories/index.stories.js
@@ -5,6 +5,8 @@ import StoryRouter from 'storybook-react-router';
import CustomAlert from '../CustomAlert/index.js';
import TranscriptForm from '../index.js';
+import { modalActions } from '../../FormModal/stories/index.stories.js';
+
export const alertProps = {
variant: 'danger',
heading: 'Error could not contact the server',
@@ -17,15 +19,9 @@ export const transcriptFormProps = {
title: 'Sample Transcript Title',
description: 'Sample Transcript Description',
id: 456,
- uploadCompleted: false
+ uploadCompleted: true
};
-export const transcriptFormActions = actions(
- {
- handleCloseModal: 'Modal closed',
- handleSubmitForm: 'Form submitted' }
-);
-
storiesOf('Transcript Form / Custom Alert', module)
.addDecorator(StoryRouter())
.add('Transcript Error', () => {
@@ -44,8 +40,19 @@ storiesOf('Transcript Form', module)
return (
+ );
+ })
+ .add('Transcript Error', () => {
+ return (
+
);
From 4c5202bd1dee139c10ab352fe56895ce99344d06 Mon Sep 17 00:00:00 2001
From: Alli Shultes
Date: Wed, 11 Sep 2019 16:59:07 +0100
Subject: [PATCH 06/11] Update packages/components/TranscriptForm/index.js
Co-Authored-By: Eimi Okuno
---
packages/components/TranscriptForm/index.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index 1fa9439..1f533ba 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -128,7 +128,7 @@ const TranscriptForm = ({ ...props }) => {
Looks good!
- Please chose a audio or video file to upload
+ Please choose a audio or video file to upload
@@ -161,4 +161,4 @@ TranscriptForm.defaultProps = {
},
};
-export default TranscriptForm;
\ No newline at end of file
+export default TranscriptForm;
From ee4b0c56d4cafb9eabf81162d5e1efd214ffdc6d Mon Sep 17 00:00:00 2001
From: Alli Shultes
Date: Wed, 11 Sep 2019 16:59:14 +0100
Subject: [PATCH 07/11] Update packages/components/TranscriptForm/index.js
Co-Authored-By: Eimi Okuno
---
packages/components/TranscriptForm/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index 1f533ba..fcb049f 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -112,7 +112,7 @@ const TranscriptForm = ({ ...props }) => {
Looks good!
- Please chose a description for your transcript
+ Please choose a description for your transcript
From fc2610fd10f312f25d7e05ab6617c23e89c9c1bd Mon Sep 17 00:00:00 2001
From: Alli Shultes
Date: Wed, 11 Sep 2019 16:59:22 +0100
Subject: [PATCH 08/11] Update packages/components/TranscriptForm/index.js
Co-Authored-By: Eimi Okuno
---
packages/components/TranscriptForm/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index fcb049f..17c0ffb 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -108,7 +108,7 @@ const TranscriptForm = ({ ...props }) => {
onChange={ e => setDescription(e.target.value) }
/>
- Chose an optional description for your Transcript
+ Choose an optional description for your Transcript
Looks good!
From a2404ccb92725fb74fd1f910aee9f9823ef67612 Mon Sep 17 00:00:00 2001
From: Alli Shultes
Date: Wed, 11 Sep 2019 16:59:29 +0100
Subject: [PATCH 09/11] Update packages/components/TranscriptForm/index.js
Co-Authored-By: Eimi Okuno
---
packages/components/TranscriptForm/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index 17c0ffb..08e98d7 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -91,7 +91,7 @@ const TranscriptForm = ({ ...props }) => {
onChange={ e => setTitle(e.target.value) }
/>
- Chose a title for your Transcript
+ Choose a title for your Transcript
Looks good!
From e1cc19d8eef582936f2c9c741c0994ee7e8f8c2d Mon Sep 17 00:00:00 2001
From: Alli Shultes
Date: Wed, 11 Sep 2019 16:59:37 +0100
Subject: [PATCH 10/11] Update packages/components/TranscriptForm/index.js
Co-Authored-By: Eimi Okuno
---
packages/components/TranscriptForm/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index 08e98d7..d14ff29 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -95,7 +95,7 @@ const TranscriptForm = ({ ...props }) => {
Looks good!
- Please chose a title for your transcript
+ Please choose a title for your transcript
From 0a424c8ab180f7dfdfd49c209d58ec91fb06c9ed Mon Sep 17 00:00:00 2001
From: Allison Shultes
Date: Thu, 12 Sep 2019 10:32:41 +0100
Subject: [PATCH 11/11] Refactors CustomAlert, TranscriptForm
---
.storybook/addons.js | 2 +-
.storybook/config.js | 2 -
package-lock.json | 169 +++++++++++++++++-
package.json | 1 -
.../{TranscriptForm => }/CustomAlert/index.js | 0
.../CustomAlert/stories/index.stories.js | 21 +++
packages/components/FormModal/index.js | 19 +-
packages/components/TranscriptForm/index.js | 32 +---
.../TranscriptForm/stories/index.stories.js | 34 +---
9 files changed, 190 insertions(+), 90 deletions(-)
rename packages/components/{TranscriptForm => }/CustomAlert/index.js (100%)
create mode 100644 packages/components/CustomAlert/stories/index.stories.js
diff --git a/.storybook/addons.js b/.storybook/addons.js
index 23ec40c..aa9c8cd 100644
--- a/.storybook/addons.js
+++ b/.storybook/addons.js
@@ -1,5 +1,5 @@
-import '@storybook/addon-knobs/register';
import '@storybook/addon-viewport/register';
import '@storybook/addon-actions/register';
import '@storybook/addon-links/register';
import '@storybook/addon-a11y/register';
+
diff --git a/.storybook/config.js b/.storybook/config.js
index f4a9aaa..41f6ddc 100644
--- a/.storybook/config.js
+++ b/.storybook/config.js
@@ -2,8 +2,6 @@
import { configure, addDecorator, addParameters } from '@storybook/react';
import { withA11y } from '@storybook/addon-a11y';
-// automatically import all files ending in *.stories.js
-// https://webpack.js.org/guides/dependency-management/
const components = require.context('../packages/components/', true, /.stories.js$/);
// const demo = require.context('../demo/', true, /.stories.js$/);
const styles = require.context('./styles', true, /\.scss$/);
diff --git a/package-lock.json b/package-lock.json
index 25b56af..14ba103 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1624,16 +1624,16 @@
}
},
"@storybook/addon-knobs": {
- "version": "5.1.9",
- "resolved": "https://registry.npmjs.org/@storybook/addon-knobs/-/addon-knobs-5.1.9.tgz",
- "integrity": "sha512-7/bICMYtR9CaTqfZX1kT2pBOTLZo3HxeslyQKWWsWlNElV33Ym2d0PPL5eS36eFxG/ZOp6lQWIFhunNnlmP5xg==",
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-knobs/-/addon-knobs-5.1.11.tgz",
+ "integrity": "sha512-16GY8IPxVBcmq5TqPtP6254Qw5FvdefDZjIQd+ByJJliQjXZMQKxEl6JhRq98iUfSxEB+6JCPnpKPa666jmCMA==",
"dev": true,
"requires": {
- "@storybook/addons": "5.1.9",
- "@storybook/client-api": "5.1.9",
- "@storybook/components": "5.1.9",
- "@storybook/core-events": "5.1.9",
- "@storybook/theming": "5.1.9",
+ "@storybook/addons": "5.1.11",
+ "@storybook/client-api": "5.1.11",
+ "@storybook/components": "5.1.11",
+ "@storybook/core-events": "5.1.11",
+ "@storybook/theming": "5.1.11",
"copy-to-clipboard": "^3.0.8",
"core-js": "^3.0.1",
"escape-html": "^1.0.3",
@@ -1645,6 +1645,159 @@
"react-color": "^2.17.0",
"react-lifecycles-compat": "^3.0.4",
"react-select": "^2.2.0"
+ },
+ "dependencies": {
+ "@storybook/addons": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-5.1.11.tgz",
+ "integrity": "sha512-714Xg6pX4rjDY1urL94w4oOxIiK6jCFSp4oKvqLj7dli5CG7d34Yt9joyTgOb2pkbrgmbMWAZJq0L0iOjHzpzw==",
+ "dev": true,
+ "requires": {
+ "@storybook/api": "5.1.11",
+ "@storybook/channels": "5.1.11",
+ "@storybook/client-logger": "5.1.11",
+ "core-js": "^3.0.1",
+ "global": "^4.3.2",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/api": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/api/-/api-5.1.11.tgz",
+ "integrity": "sha512-zzPZM6W67D4YKCbUN4RhC/w+/CtnH/hFbSh/QUBdwXFB1aLh2qA1UTyB8i6m6OA6JgVHBqEkl10KhmeILLv/eA==",
+ "dev": true,
+ "requires": {
+ "@storybook/channels": "5.1.11",
+ "@storybook/client-logger": "5.1.11",
+ "@storybook/core-events": "5.1.11",
+ "@storybook/router": "5.1.11",
+ "@storybook/theming": "5.1.11",
+ "core-js": "^3.0.1",
+ "fast-deep-equal": "^2.0.1",
+ "global": "^4.3.2",
+ "lodash": "^4.17.11",
+ "memoizerific": "^1.11.3",
+ "prop-types": "^15.6.2",
+ "react": "^16.8.3",
+ "semver": "^6.0.0",
+ "shallow-equal": "^1.1.0",
+ "store2": "^2.7.1",
+ "telejson": "^2.2.1",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/channels": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-5.1.11.tgz",
+ "integrity": "sha512-MlrjVGNvYOnDvv2JDRhr4wikbnZ8HCFCpVsFqKPFxj7I3OYBR417RvFkydX3Rtx4kwB9rmZEgLhfAfsSytkALg==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.0.1"
+ }
+ },
+ "@storybook/client-api": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-5.1.11.tgz",
+ "integrity": "sha512-znzSxZ1ZCqtEKrFoW7xT8iBbdiAXaQ8RNxQFKHuYPqWX+RLol6S3duEOxu491X2SzUg0StUmrX5qL9Rnth8dRQ==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "5.1.11",
+ "@storybook/client-logger": "5.1.11",
+ "@storybook/core-events": "5.1.11",
+ "@storybook/router": "5.1.11",
+ "common-tags": "^1.8.0",
+ "core-js": "^3.0.1",
+ "eventemitter3": "^3.1.0",
+ "global": "^4.3.2",
+ "is-plain-object": "^3.0.0",
+ "lodash": "^4.17.11",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.6.0"
+ }
+ },
+ "@storybook/client-logger": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-5.1.11.tgz",
+ "integrity": "sha512-je4To+9zD3SEJsKe9R4u15N4bdXFBR7pdBToaRIur+XSvvShLFehZGseQi+4uPAj8vyG34quGTCeUC/BKY0LwQ==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.0.1"
+ }
+ },
+ "@storybook/components": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-5.1.11.tgz",
+ "integrity": "sha512-EQgD7HL2CWnnY968KrwUSU2dtKFGTGRJVc4vwphYEeZwAI0lX6qbTMuwEP22hDZ2OSRBxcvcXT8cvduDlZlFng==",
+ "dev": true,
+ "requires": {
+ "@storybook/client-logger": "5.1.11",
+ "@storybook/theming": "5.1.11",
+ "core-js": "^3.0.1",
+ "global": "^4.3.2",
+ "markdown-to-jsx": "^6.9.1",
+ "memoizerific": "^1.11.3",
+ "polished": "^3.3.1",
+ "popper.js": "^1.14.7",
+ "prop-types": "^15.7.2",
+ "react": "^16.8.3",
+ "react-dom": "^16.8.3",
+ "react-focus-lock": "^1.18.3",
+ "react-helmet-async": "^1.0.2",
+ "react-popper-tooltip": "^2.8.3",
+ "react-syntax-highlighter": "^8.0.1",
+ "react-textarea-autosize": "^7.1.0",
+ "recompose": "^0.30.0",
+ "simplebar-react": "^1.0.0-alpha.6"
+ }
+ },
+ "@storybook/core-events": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-5.1.11.tgz",
+ "integrity": "sha512-m+yIFRdB47+IPBFBGS2OUXrSLkoz5iAXvb3c0lGAePf5wSR+o/Ni/9VD5l6xBf+InxHLSc9gcDEJehrT0fJAaQ==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.0.1"
+ }
+ },
+ "@storybook/router": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/router/-/router-5.1.11.tgz",
+ "integrity": "sha512-Xt7R1IOWLlIxis6VKV9G8F+e/G4G8ng1zXCqoDq+/RlWzlQJ5ccO4bUm2/XGS1rEgY4agMzmzjum18HoATpLGA==",
+ "dev": true,
+ "requires": {
+ "@reach/router": "^1.2.1",
+ "core-js": "^3.0.1",
+ "global": "^4.3.2",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.6.0"
+ }
+ },
+ "@storybook/theming": {
+ "version": "5.1.11",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-5.1.11.tgz",
+ "integrity": "sha512-PtRPfiAWx5pQbTm45yyPB+CuW/vyDmcmNOt+xnDzK52omeWaSD7XK2RfadN3u4QXCgha7zs35Ppx1htJio2NRA==",
+ "dev": true,
+ "requires": {
+ "@emotion/core": "^10.0.9",
+ "@emotion/styled": "^10.0.7",
+ "@storybook/client-logger": "5.1.11",
+ "common-tags": "^1.8.0",
+ "core-js": "^3.0.1",
+ "deep-object-diff": "^1.1.0",
+ "emotion-theming": "^10.0.9",
+ "global": "^4.3.2",
+ "memoizerific": "^1.11.3",
+ "polished": "^3.3.1",
+ "prop-types": "^15.7.2",
+ "resolve-from": "^5.0.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
}
},
"@storybook/addon-links": {
diff --git a/package.json b/package.json
index 7ee9ebc..226391c 100644
--- a/package.json
+++ b/package.json
@@ -56,7 +56,6 @@
"@babel/core": "^7.5.5",
"@storybook/addon-a11y": "^5.0.8",
"@storybook/addon-actions": "^5.1.9",
- "@storybook/addon-knobs": "^5.0.8",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-viewport": "^5.0.8",
"@storybook/addons": "^5.1.9",
diff --git a/packages/components/TranscriptForm/CustomAlert/index.js b/packages/components/CustomAlert/index.js
similarity index 100%
rename from packages/components/TranscriptForm/CustomAlert/index.js
rename to packages/components/CustomAlert/index.js
diff --git a/packages/components/CustomAlert/stories/index.stories.js b/packages/components/CustomAlert/stories/index.stories.js
new file mode 100644
index 0000000..8522de1
--- /dev/null
+++ b/packages/components/CustomAlert/stories/index.stories.js
@@ -0,0 +1,21 @@
+import React from 'react';
+import { storiesOf } from '@storybook/react';
+import CustomAlert from '../index.js';
+
+export const alertProps = {
+ variant: 'danger',
+ heading: 'Error could not contact the server',
+ message: 'There was an error trying to create this transcript on the server',
+ show: true
+};
+
+storiesOf('Custom Alert', module)
+ .add('Default', () => {
+ return (
+
+ );
+ });
\ No newline at end of file
diff --git a/packages/components/FormModal/index.js b/packages/components/FormModal/index.js
index abc1234..2dd4f91 100644
--- a/packages/components/FormModal/index.js
+++ b/packages/components/FormModal/index.js
@@ -1,4 +1,5 @@
import React, { useState } from 'react';
+import { withKnobs, text, boolean, number } from '@storybook/addon-knobs';
import PropTypes from 'prop-types';
import Modal from 'react-bootstrap/Modal';
import ItemForm from '../ItemForm/index.js';
@@ -8,21 +9,7 @@ const ItemFormModal = (props) => {
const [ showModal, toggleShowModal ] = useState(props.showModal);
- const form = () => {
- if (props.type === 'transcript') {
- return (
-
- );
- } else {
- return (
-
- );
- }
- };
+ const form = (props.type === 'transcript') ? : ;
return (
toggleShowModal(!showModal) }>
@@ -30,7 +17,7 @@ const ItemFormModal = (props) => {
{props.modalTitle}
- {form()}
+ {form}
);
diff --git a/packages/components/TranscriptForm/index.js b/packages/components/TranscriptForm/index.js
index d14ff29..dee955a 100644
--- a/packages/components/TranscriptForm/index.js
+++ b/packages/components/TranscriptForm/index.js
@@ -3,7 +3,6 @@ import PropTypes from 'prop-types';
import Form from 'react-bootstrap/Form';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
-import CustomAlert from './CustomAlert';
const TranscriptForm = ({ ...props }) => {
@@ -11,21 +10,6 @@ const TranscriptForm = ({ ...props }) => {
const [ description, setDescription ] = useState(props.description);
const [ isValidated, setValidationStatus ] = useState(false);
const [ formData, setFormData ] = useState({});
- const [ uploadCompleted, setUploadCompletion ] = useState(props.uploadCompleted);
- const [ notificationMessage, updateNotificationMessage ] = useState(props.notification);
-
- useEffect(() => {
- if (!props.uploadCompleted) {
- const alert = There was an error trying to create this transcript on the server }
- />;
- updateNotificationMessage(alert);
- }
- }, [ uploadCompleted ]);
const handleFileUpload = e => {
const file = e.target.files[0];
@@ -41,9 +25,6 @@ const TranscriptForm = ({ ...props }) => {
type: file.type
};
- if (file.path) {
- fileObj.path = file.path;
- }
setFormData(fileObj);
};
@@ -63,19 +44,14 @@ const TranscriptForm = ({ ...props }) => {
const form = event.currentTarget;
event.preventDefault();
event.stopPropagation();
+ setValidationStatus(true);
- if (!form.checkValidity()) {
- setValidationStatus(true);
- }
- else {
- setValidationStatus(true);
-
+ if (form.checkValidity()) {
sendRequest();
}
};
return (<>
- { notificationMessage }