{"words":[["0","[MUSIC PLAYING]"],["480",""],["960",""],["1440",""],["1920",""],["2400",""],["2880",""],["3360",""],["3840",""],["4320",""],["4800",""],["5290","DOUG LLOYD: All"],["5360","right,"],["5520","so"],["5600","bubble"],["5960","sort"],["6260","is"],["6390","an"],["6600","algorithm"],["6730","you can"],["7000","use"],["7270","to"],["7740","sort a set"],["8020","of"],["8109","elements."],["8419",""],["8730","Let's"],["8790","take"],["8930","a"],["8970","look"],["9110","at"],["9150","how"],["9330","it"],["9390","works."],["9870",""],["10360",""],["10850","So"],["10950","the"],["11050","basic"],["11160","idea"],["11400","behind"],["11690","bubble"],["11920","sort"],["12100","is"],["12190","this."],["12670",""],["12955",""],["13240","We"],["13620","generally"],["13875",""],["14130","want"],["14390","to"],["14550","move"],["14870","higher"],["15300","valued"],["15690","elements"],["16090","generally"],["16480","to"],["16560","the"],["16650","right,"],["17060",""],["17340","and"],["17580","lower"],["18030","valued"],["18330","elements"],["18700","generally"],["19130","to"],["19220","the"],["19290","left,"],["19660","as"],["19780","we"],["19860","would"],["19980","expect."],["20340","We want"],["20560","the"],["20640","lower"],["20900","things"],["21190","to"],["21280","be"],["21480","at the"],["21550","beginning,"],["22030","and"],["22340","the"],["22480","higher"],["22760","things"],["23060","to"],["23140","be"],["23430",""],["23720","at"],["23940","the"],["24100","end."],["24410",""],["24690",""],["24970","How"],["25100","do"],["25160","we"],["25260","do"],["25390","this?"],["25800",""],["26130","Well"],["26400","in"],["26470","pseudocode"],["26750","code,"],["27050","we"],["27140","could"],["27280","say,"],["27710","let's"],["28040","set"],["28210","a"],["28290","swap"],["28760","counter"],["29080","to"],["29220","a"],["29280","non-zero"],["29570",""],["29860","value."],["30320","We'll"],["30430","see"],["30590","why"],["30880","we"],["31030","do"],["31170","that"],["31330","in"],["31420","a"],["31470","second."],["31820",""],["32195",""],["32570","And"],["32640","then"],["32790","we"],["32990","repeat"],["33490","the"],["33570","following"],["33990","process"],["34450","until"],["34940","the"],["35030","swap"],["35330","counter"],["35620","is 0,"],["36090","or"],["36300","until"],["36490","we"],["36600","make"],["36800","no"],["37060","swaps"],["37470","at"],["37550","all."],["37890",""],["38290",""],["38690",""],["38940",""],["39040",""],["39450",""],["39910","Reset"],["40200","the"],["40310","swap"],["40470","counter"],["40630","to"],["40700","0"],["41130","if"],["41250","it's"],["41370","not"],["41530","already"],["41770","0."],["42140",""],["42483",""],["42826",""],["43170","Then"],["43660","look"],["43960","at"],["44100","every"],["44470","adjacent"],["44750",""],["45030","pair"],["45320","of"],["45410","elements."],["45710",""],["46010",""],["46420","If"],["46590","those"],["46840","two"],["47000","elements"],["47390","are"],["47500","not"],["47830","in"],["47960","order,"],["48400",""],["48660","swap"],["49150","them,"],["49550","and"],["49730","add"],["50000","1"],["50240","to the"],["50370","swap"],["50650","counter."],["51000",""],["51340",""],["51680","If"],["51890","you're"],["52130","thinking"],["52430","about"],["52600","this"],["52750","before"],["53030","you"],["53090","visualize"],["53550","it,"],["53870","notice"],["54210","that"],["54360","this"],["54530","will"],["54940","move"],["55420","lower"],["55760","valued"],["56060","elements"],["56450","to"],["56540","the"],["56620","left"],["57120",""],["57480","and"],["57700","higher"],["58010","valued"],["58270","elements"],["58620","to"],["58710","the"],["58860","right,"],["59140","effectively"],["59405",""],["59670","doing"],["59960","what"],["60050","we"],["60130","want"],["60310","to"],["60380","do,"],["60720","which"],["60780","is"],["60880","move"],["61205",""],["61530",""],["61970","those"],["62180","groups"],["62390","of"],["62460","elements"],["62850","in"],["62970","that"],["63160","way."],["63470",""],["63940","Let's"],["64190","visualize"],["64620","how"],["64730","this"],["64890","might"],["65090","look"],["65349","using"],["65750",""],["66160","our"],["66485",""],["66810","array that"],["67260","we"],["67350","used"],["67650","to"],["67980",""],["68190","test"],["68430","out"],["68510","these"],["68800",""],["69205",""],["69610","algorithms."],["69880",""],["70150",""],["70425",""],["70700","We"],["70820","have"],["70890","an"],["70980","unsorted"],["71160",""],["71370",""],["71460","array"],["71510",""],["71700","here"],["71860","again,"],["72150","indicated"],["72540","by"],["72700","all"],["72920","of the"],["73030","elements"],["73420","being"],["73680","in"],["73740","red."],["74080",""],["74460",""],["74840","And"],["75120",""],["75400",""],["75650","I"],["75790","set"],["76070","my"],["76180","swap"],["76490","counter"],["76740","to"],["76880","a"],["76940","nonzero"],["77300",""],["77660","value."],["77970","I"],["78070","arbitrarily"],["78325",""],["78580","chose"],["78810","negative"],["79140","1--"],["79455","it's"],["79770","not"],["79970","0."],["80410",""],["80610","We"],["80800","want"],["80960","to"],["81030","repeat"],["81410","this"],["81590","process"],["81885",""],["82180","until"],["82520","the"],["82590","swap"],["82830","counter is"],["83130","0."],["83550",""],["83840","This"],["83980","is"],["84090","why"],["84260","I"],["84370","set"],["84540","my"],["84640","swap"],["84900","counter"],["85140","to"],["85260","some"],["85660","non-zero"],["85925",""],["86190","value,"],["86540","because"],["86855",""],["87170",""],["87370","otherwise"],["87770",""],["88170",""],["88440","the swap"],["88610","counter"],["88840","would"],["89010","be"],["89110","0."],["89400","We"],["89480","wouldn't"],["89650","even"],["89770",""],["89830","begin"],["90240","the"],["90320","process of"],["90690","the"],["90810","algorithm."],["91240",""],["91680","So"],["91780","again,"],["91960","the"],["92020","steps"],["92300","are--"],["92770","reset"],["93110","the"],["93170","swap"],["93390","counter"],["93610","to"],["93680","0,"],["94160",""],["94550","then"],["94730","look"],["94960","at"],["95070","every"],["95390","adjacent"],["95830","pair,"],["96220","and"],["96590","if"],["96790","they're"],["97020","out"],["97230","of"],["97320","order,"],["97610",""],["97900","swap"],["98390","them,"],["98850","and"],["99040","add"],["99280","1"],["99500","to the"],["99610","swap"],["99900","counter."],["100220",""],["100610","So"],["100720","let's"],["100870","begin"],["101120","this"],["101250","process."],["101680","So"],["101720","the"],["101770","first"],["101960","thing"],["102040","we"],["102160","do"],["102310","is"],["102400","we"],["102500","set"],["102710","the"],["102780","swap"],["103020","counter to"],["103260","0,"],["103670",""],["104050",""],["104430","and"],["104570","then"],["104670","we"],["104750","start"],["104980","looking"],["105320","at"],["105420","each"],["105660","adjacent"],["106080","pair."],["106420",""],["106660","So"],["106870","we"],["107000","first"],["107240","start"],["107450","looking"],["107740","at"],["107960","5"],["108230","and"],["108350","2."],["108670",""],["109140","We"],["109280","see"],["109430","that they"],["109630","are"],["109820","out"],["110010","of"],["110120","order"],["110560","and"],["110690","so"],["110820","we"],["110920","swap"],["111390","them."],["111660",""],["112035",""],["112410","And"],["112540","we"],["112670","add"],["112890","1"],["113230","to the swap"],["113510","counter."],["113830","So now"],["113970","our"],["114090","swap counter"],["114345","is"],["114600","1,"],["114870",""],["115140","and"],["115380","2"],["115590","and"],["115720","5"],["116020","have"],["116140","been"],["116340","switched."],["116640",""],["116940",""],["117400",""],["117860","Now"],["117990","we"],["118080","repeat"],["118320","the"],["118410","process"],["118790","again."],["119150",""],["119370","We"],["119560","look"],["119700","at"],["119760","the"],["119830","next"],["120070","adjacent"],["120460","pair,"],["120750","5"],["121180","and"],["121380","1--"],["121790",""],["122065",""],["122340","they're"],["122590","also"],["122970","out"],["123140","of"],["123250","order,"],["123540","so"],["123670","we"],["123770","swap"],["124260","them"],["124600","and"],["124790","add"],["125000","1"],["125230","to"],["125310","the"],["125400","swap"],["125710","counter."],["126060",""],["126510",""],["126960","Then"],["127100","we"],["127200","look"],["127380","at"],["127520","5"],["127830","and"],["127970","3."],["128260",""],["128550",""],["128900","They are"],["129350","out"],["129560","of"],["129690","order,"],["130110",""],["130430","so"],["130610","we"],["130710","swap"],["131070","them"],["131440","and"],["131600","we"],["131720","add"],["131960","1"],["132130","to"],["132190","the"],["132290","swap"],["132570","counter."],["132930",""],["133380",""],["133830","Then"],["133960","we"],["134040","look"],["134190","at"],["134330","5"],["134570","and"],["134680","6."],["134970",""],["135260",""],["135550","They're in"],["135820","order,"],["136100","so"],["136200","we"],["136270","don't"],["136420","actually"],["136620","need"],["136760","to"],["136820","swap"],["137130","anything"],["137430","this"],["137620","time."],["137940",""],["138285",""],["138630","Then"],["138840","we"],["138950","look"],["139100","at"],["139180","6"],["139440","and"],["139550","4."],["140000",""],["140250","They're"],["140620","also"],["140970","out"],["141120","of"],["141200","order,"],["141540","so"],["141710","we"],["141810","swap"],["142190","them"],["142670","and"],["142930","we"],["143080","add"],["143300","1"],["143560","to"],["143660","the"],["143740","swap"],["144020","counter."],["144400",""],["144660",""],["144920","Now"],["145160","notice"],["145500","what's"],["145670","happened."],["145950",""],["146230","We've"],["146440","moved"],["146930","6"],["147300",""],["147670",""],["147940","all"],["148180","the"],["148260","way"],["148510","to"],["148630","the"],["148820","end."],["149290",""],["149710","So"],["150000","in selection"],["150400","sort,"],["150630","if"],["150710","you've"],["150830","seen"],["151060","that"],["151270","video,"],["151660","what"],["151800","we"],["151910","did"],["152070","was"],["152180","we"],["152280","ended"],["152510","up"],["152580","moving"],["152910","the"],["152990","smallest"],["153305",""],["153620","elements"],["153890",""],["154160","in"],["154290","building"],["154760",""],["155030",""],["155290","the"],["155550","sorted"],["155830","array"],["156270","essentially"],["156720","from"],["157100","left"],["157480","to"],["157610","right,"],["157910","smallest"],["158360","to"],["158460","largest."],["158745",""],["159030",""],["159335",""],["159640","In"],["159770","the"],["159850","case"],["160050","of"],["160120","bubble"],["160410","sort,"],["160810","if"],["161060","we're"],["161230","following"],["161680","this"],["161920","particular"],["162180",""],["162440","algorithm,"],["162820",""],["163200","we're"],["163310","actually"],["163510","going"],["163590","to"],["163630","be"],["163700","building"],["164090",""],["164290",""],["164700",""],["165110",""],["165480",""],["165710","the"],["165760","sorted"],["166010","array"],["166230","from"],["166460","right"],["166720","to"],["166830","left,"],["167210","largest"],["167700","to"],["167740","smallest."],["168070",""],["168400",""],["168750",""],["169100","We have"],["169440","effectively"],["169940","bubbled"],["170285",""],["170630","6,"],["171090","the"],["171200","largest"],["171630","value,"],["171925",""],["172220","all"],["172680","the"],["172760","way"],["172960","to"],["173060","the"],["173170","end."],["173505",""],["173840","And"],["173920","so"],["174040","we"],["174160","can"],["174270","now"],["174390","declare"],["174800","that that"],["175230","is"],["175370","sorted,"],["175640",""],["175910",""],["176165","and"],["176420","in"],["176510","future"],["176970","iterations--"],["177300",""],["177630","going"],["177880","through"],["178070","the"],["178230","array"],["178520","again--"],["178825",""],["179130","we"],["179320","don't"],["179480","have"],["179640","to"],["179750","consider"],["180180","6"],["180600","anymore."],["180940",""],["181280","We"],["181400",""],["181520","only"],["181960","have"],["182040","to"],["182140","consider"],["182490","the"],["182720","unsorted"],["183055",""],["183390","elements"],["183850","when we're"],["184090","looking"],["184400","at"],["184680","adjacent"],["184940",""],["185200","pairs."],["185485",""],["185770",""],["186065",""],["186360","So"],["186490","we have"],["186650","finished"],["186990","one"],["187170","pass through"],["187570","bubble"],["187810","sort."],["188075",""],["188340","So"],["188510",""],["188780",""],["189030","now"],["189210","we"],["189670","go"],["189770","back"],["189950","to"],["190040","the"],["190080","question,"],["190460","repeat"],["190850","until"],["191030","the"],["191120","swap"],["191390","counter is"],["191690","0."],["192120",""],["192400","Well"],["192580","the swap counter"],["192960","is"],["193080","4,"],["193430","so"],["193550","we're"],["193610","going"],["193690","to"],["193740","keep"],["193950","repeating"],["194270","this"],["194400","process"],["194800","again."],["195105",""],["195410","We're"],["195540","going"],["195620","to"],["195700","reset"],["196000","the"],["196070","swap"],["196340","counter to"],["196610","0,"],["197060",""],["197430","and"],["197560","look"],["197760","at"],["197830","each"],["198020","adjacent"],["198420","pair."],["198770",""],["199180","So"],["199360","we"],["199440","start"],["199630","with"],["199750","2"],["199960","and"],["200030","1--"],["200300","they're"],["200480","out"],["200610","of"],["200720","order,"],["201000","so"],["201090","we"],["201170","swap"],["201500","them"],["201890","and"],["201960","we"],["202060","add"],["202260","1"],["202450","to the"],["202580","swap"],["202840","counter."],["203150",""],["203620","2"],["203890",""],["204160","and"],["204260","3,"],["204710","they're"],["205000","in"],["205070","order."],["205490","We"],["205500","don't need"],["205700","to"],["205800","do"],["205950","anything."],["206350",""],["206705",""],["207060","3 and"],["207380","5"],["207690","are in"],["207840","order."],["208200",""],["208420","We"],["208500","don't need to"],["208600","do"],["208770","anything"],["209100","there."],["209480",""],["209815",""],["210150","5"],["210380","and"],["210460","4,"],["210720",""],["210980","they"],["211200","are"],["211490","out"],["211700","of"],["211820","order,"],["212300",""],["212410","and so we need"],["212550","to"],["212700","swap"],["213030","them"],["213360","and"],["213540","add"],["213770","1"],["213940","to the"],["214070","swap"],["214350","counter."],["214700",""],["215130","And"],["215320","now"],["215630","we've"],["215850","moved"],["216260","5,"],["216575",""],["216890","the"],["216970","next"],["217240",""],["217510","largest"],["217765",""],["218020","element,"],["218450",""],["218880","to"],["219010","the"],["219240","end"],["219570","of"],["219720","the"],["219900","unsorted"],["220165",""],["220430","portion."],["220920","So"],["221070","we"],["221160","can"],["221270","now"],["221410","call"],["221640","that"],["221980",""],["222250","part"],["222470","of"],["222570","the"],["222660","sorted"],["223110","portion."],["223520",""],["223940",""],["224360","Now"],["224640","you're"],["224850","looking"],["225135",""],["225420","at"],["225560","the"],["225630","screen"],["226080","and"],["226190","probably"],["226660","can"],["226880","tell,"],["227180","as"],["227390","can"],["227570","I,"],["227880",""],["228130","that"],["228300","the"],["228460","array"],["228900","is"],["229200","sorted"],["229680","right"],["229860","now."],["230130","But"],["230260","we"],["230410","can't"],["230680",""],["230950","prove"],["231440","that yet."],["231820","We"],["232050","don't"],["232300","have"],["232750","a"],["232900","guarantee"],["233325",""],["233750","that"],["233890","it's"],["234020","sorted."],["234510",""],["234800","But"],["234950","this"],["235090","is"],["235170","where"],["235290","the"],["235390","swap"],["235680","counter's"],["235980","going"],["236090","to"],["236150","come"],["236350","into"],["236510","play."],["236900","So we've"],["236940","completed"],["237380","a"],["237440","pass."],["237940",""],["238313",""],["238686",""],["239060","The"],["239160","swap"],["239440","counter"],["239710","is"],["239870","2."],["240260",""],["240520","So"],["240670","we're"],["240750","going"],["240840","to"],["240910","repeat"],["241270","this"],["241420","process"],["241830","again,"],["242190","repeat"],["242540","until"],["242760","the"],["242830","swap"],["243080","counter is"],["243410","0."],["243695",""],["243980",""],["244290","Reset"],["244610","the"],["244690","swap"],["244910","counter"],["245150","to"],["245220","0."],["245550","So"],["245670","we'll"],["245790","reset"],["246120","it."],["246350",""],["246820","Now"],["247010","look"],["247230","at"],["247320","each"],["247610","adjacent"],["247870",""],["248130","pair."],["248530",""],["248956",""],["249382",""],["249810","That's"],["250100","in"],["250220","order,"],["250520","1"],["250760","and"],["250880","2."],["251220",""],["251550",""],["251880","2"],["252090","and"],["252210","3"],["252430","are"],["252530","in"],["252600","order."],["252930",""],["253260",""],["253590","3"],["253820","and"],["253910","4"],["254340","are in order."],["254660",""],["255010","So"],["255150","at"],["255290","this"],["255510","point,"],["255850","notice"],["256120",""],["256390","we've"],["256670","completed"],["256960",""],["257250","looking"],["257560","at"],["257690","every"],["258040","adjacent"],["258519","pair,"],["258930",""],["259250","but"],["259410","the"],["259500","swap"],["259755",""],["260010","counter"],["260269",""],["260529",""],["260730","is"],["260899","still"],["261399","0."],["261704",""],["262010",""],["262270",""],["262530","If"],["262680","we"],["262900","don't"],["263070","have"],["263300","to"],["263410","switch"],["263800",""],["264190","any"],["264490","elements,"],["264860",""],["265230","then"],["265400","they"],["265520","must"],["265825",""],["266130","be"],["266370","in"],["266500","order,"],["266800","by"],["266910","virtue"],["267220","of"],["267280","this"],["267440","process."],["267890",""],["268340","And"],["268510","so"],["268815",""],["269120",""],["269340","an efficiency"],["269720",""],["270100","of"],["270180","sorts,"],["270510","that"],["270620","we"],["270890","computer"],["271190","scientists"],["271470",""],["271750","love,"],["272000","is"],["272080","we"],["272210","can"],["272350","now"],["272500","declare"],["272790",""],["273080",""],["273340","the"],["273470","entire"],["273820",""],["274170","array"],["274495",""],["274820",""],["275120","must"],["275560","be"],["275670","sorted,"],["275945",""],["276220",""],["276440","because"],["276610","we didn't"],["276780","have"],["276890","to"],["276970","swap"],["277225",""],["277480","any"],["277730","elements."],["278160","That's"],["278330","pretty"],["278500","nice."],["278910",""],["279400",""],["279890",""],["280380","So"],["280400","what's"],["280500","the"],["280600","worst"],["280900","case"],["281390","scenario"],["281680",""],["281970","with"],["282100","bubble"],["282340","sort?"],["282610",""],["282880",""],["283260","In"],["283370","the"],["283450","worst"],["283680","case"],["284010","the"],["284040","array is in"],["284530","completely"],["284835",""],["285140","reverse"],["285415",""],["285690","order,"],["285965",""],["286240","and"],["286450","so"],["286530","we"],["286610","have"],["286800","to"],["286900","bubble"],["287325",""],["287750",""],["287980","each"],["288210","of"],["288300","the"],["288390","large"],["288820","elements"],["289160",""],["289500","all"],["289870","the"],["289940","way"],["290070","across"],["290420","the"],["290600","array."],["290950",""],["291365",""],["291780","And"],["291900","we"],["292165",""],["292430","effectively"],["292860","also"],["293110","have to"],["293190","bubble"],["293470","all of"],["293720","the"],["293810","small"],["294310","elements"],["294650",""],["294990","back"],["295350","all"],["295520","the"],["295570","way"],["295670","across"],["296020","the"],["296140","array,"],["296340","too."],["296650",""],["297050","So"],["297290","each"],["297520","of"],["297610","the"],["297790","n"],["298030","elements"],["298490","has"],["298720","to"],["298840","move"],["299110",""],["299380","across"],["299726",""],["300072",""],["300420","all"],["300660","of"],["300760","the"],["300890","other"],["301150","n"],["301310","elements."],["301630",""],["301950","So"],["302440","that's"],["302630","the"],["302730","worst"],["303070","case"],["303260","scenario."],["303670",""],["304105",""],["304540","In"],["304650","the"],["304690","best"],["304900","case"],["305090","scenario"],["305345",""],["305600","though, this"],["305700","is"],["305810","slightly"],["306240","different"],["306540","from"],["306660","selection"],["307100","sort."],["307440",""],["307880","The"],["308000","array is"],["308280","already"],["308560","sorted"],["308860","when"],["309160","we"],["309250","go"],["309410","in."],["309725",""],["310040","We"],["310150","don't"],["310260","have"],["310380","to"],["310460","make"],["310640","any"],["310810","swaps"],["311240","on"],["311300","the"],["311360","first"],["311710","pass."],["311990",""],["312270",""],["312550","So"],["312700","we"],["312800","might"],["313080","have"],["313210","to"],["313320","look"],["313530","at"],["313800","fewer"],["313970",""],["314170","elements,"],["314440",""],["314710","right?"],["314940","We"],["315000","don't"],["315140","have"],["315230","to"],["315350","repeat"],["315700","this"],["315870","process"],["316260",""],["316650","a"],["316760","number"],["317120","of"],["317190","times"],["317530","over."],["317890",""],["318235",""],["318580","So"],["318830","what"],["318980","does"],["319050","that"],["319230","mean?"],["319540","So what's"],["319800","the"],["319890","worst"],["320145",""],["320400","case"],["320660","scenario"],["321130","for"],["321250","bubble"],["321490","sort,"],["321800",""],["322120","and"],["322240","what's"],["322390","the"],["322490","best"],["322870","case"],["323090","scenario"],["323480","for"],["323580","bubble"],["323800","sort?"],["324130",""],["324530",""],["324930",""],["325330","Did"],["325460","you"],["325520","guess"],["325740","this?"],["326240",""],["326622",""],["327004",""],["327386",""],["327770","In the"],["327850","worst"],["328150","case"],["328540",""],["328800","you"],["328910","have"],["329030","to"],["329110","iterate"],["329430","across"],["329760","all"],["330040","the n"],["330390","elements"],["330720",""],["331050",""],["331380","n"],["331650","times."],["332035",""],["332420","So"],["332430","the"],["332510","worst"],["332760","case is"],["333030","n"],["333280","squared."],["333760",""],["334220","If"],["334380","the"],["334480","array is"],["334750","perfectly"],["335210","sorted"],["335475",""],["335740","though,"],["336230","you"],["336380","only"],["336550","have"],["336680","to"],["336770","look"],["336950","at"],["337030","each"],["337220","of"],["337270","the"],["337410","elements"],["337705",""],["338000","once."],["338290",""],["338580","And"],["339010","if"],["339150","the"],["339300","swap"],["339680","counter is"],["339970","still"],["340250","0,"],["340650","you"],["340820","can"],["340980","say"],["341240","this"],["341500","array is"],["341870","sorted."],["342150",""],["342430",""],["342670","And"],["342940","so in"],["343070","the"],["343200","best"],["343560","case,"],["344040","this"],["344280","is"],["344420","actually"],["344780","better"],["345080","than"],["345380","selection"],["345780","sort--"],["346150",""],["346410","it's"],["346650","omega"],["346940",""],["347230","of"],["347730","n."],["348230",""],["348730",""],["349230","I'm"],["349410","Doug"],["349610","Lloyd."],["349990",""],["350270","This"],["350500","is"],["350590","CS50."],["350890",""],["351190",""],["351490",""],["351790",""],["352090",""],["352390",""],["352690",""],["352990",""],["353290",""],["353590",""],["353890",""],["354190",""]],"paragraphs":[0,3360,5290,10850,24970,39910,70700,91680,106660,119370,144920,173840,195410,210150,224360,236900,246820,262530,280380,304540,318580,334220,349230],"speakers":{"5290":"DOUG LLOYD"}}