cmn-balm-congcong.json 182 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912
  1. {
  2. "index": {
  3. "group": {
  4. "_attributes": {
  5. "swac_coll_copyright": "(c) 2010 Association Shtooka",
  6. "swac_coll_license": "Creative Commons BY 3.0 U.S",
  7. "swac_lang": "cmn",
  8. "swac_speak_birth_year": "1984",
  9. "swac_speak_gender": "F",
  10. "swac_speak_lang": "wuu",
  11. "swac_speak_lang_region": "Shanghaï",
  12. "swac_speak_liv_country": "FR",
  13. "swac_speak_liv_town": "Paris",
  14. "swac_speak_name": "Congcong",
  15. "swac_tech_date": "2010-03-13",
  16. "swac_tech_soft": "Shtooka Recorder/1.3"
  17. },
  18. "file": [
  19. {
  20. "_attributes": {
  21. "path": "cmn-016c8670.ogg"
  22. },
  23. "tag": {
  24. "_attributes": {
  25. "swac_text": "唯一的"
  26. }
  27. }
  28. },
  29. {
  30. "_attributes": {
  31. "path": "cmn-0187ac5b.ogg"
  32. },
  33. "tag": {
  34. "_attributes": {
  35. "swac_text": "酒"
  36. }
  37. }
  38. },
  39. {
  40. "_attributes": {
  41. "path": "cmn-01cde6ca.ogg"
  42. },
  43. "tag": {
  44. "_attributes": {
  45. "swac_text": "星星"
  46. }
  47. }
  48. },
  49. {
  50. "_attributes": {
  51. "path": "cmn-02145682.ogg"
  52. },
  53. "tag": {
  54. "_attributes": {
  55. "swac_text": "血"
  56. }
  57. }
  58. },
  59. {
  60. "_attributes": {
  61. "path": "cmn-0323f1bb.ogg"
  62. },
  63. "tag": {
  64. "_attributes": {
  65. "swac_text": "法律"
  66. }
  67. }
  68. },
  69. {
  70. "_attributes": {
  71. "path": "cmn-032a3e41.ogg"
  72. },
  73. "tag": {
  74. "_attributes": {
  75. "swac_text": "国家"
  76. }
  77. }
  78. },
  79. {
  80. "_attributes": {
  81. "path": "cmn-03cd4a7c.ogg"
  82. },
  83. "tag": {
  84. "_attributes": {
  85. "swac_text": "发现"
  86. }
  87. }
  88. },
  89. {
  90. "_attributes": {
  91. "path": "cmn-03f73677.ogg"
  92. },
  93. "tag": {
  94. "_attributes": {
  95. "swac_text": "现在"
  96. }
  97. }
  98. },
  99. {
  100. "_attributes": {
  101. "path": "cmn-043246c4.ogg"
  102. },
  103. "tag": {
  104. "_attributes": {
  105. "swac_text": "自行车"
  106. }
  107. }
  108. },
  109. {
  110. "_attributes": {
  111. "path": "cmn-05c912cf.ogg"
  112. },
  113. "tag": {
  114. "_attributes": {
  115. "swac_text": "很多"
  116. }
  117. }
  118. },
  119. {
  120. "_attributes": {
  121. "path": "cmn-060a2f8c.ogg"
  122. },
  123. "tag": {
  124. "_attributes": {
  125. "swac_text": "开车"
  126. }
  127. }
  128. },
  129. {
  130. "_attributes": {
  131. "path": "cmn-06e23c48.ogg"
  132. },
  133. "tag": {
  134. "_attributes": {
  135. "swac_text": "其他"
  136. }
  137. }
  138. },
  139. {
  140. "_attributes": {
  141. "path": "cmn-073d4744.ogg"
  142. },
  143. "tag": {
  144. "_attributes": {
  145. "swac_text": "勺子"
  146. }
  147. }
  148. },
  149. {
  150. "_attributes": {
  151. "path": "cmn-079d4205.ogg"
  152. },
  153. "tag": {
  154. "_attributes": {
  155. "swac_text": "空"
  156. }
  157. }
  158. },
  159. {
  160. "_attributes": {
  161. "path": "cmn-07f288e9.ogg"
  162. },
  163. "tag": {
  164. "_attributes": {
  165. "swac_text": "历史"
  166. }
  167. }
  168. },
  169. {
  170. "_attributes": {
  171. "path": "cmn-0935d373.ogg"
  172. },
  173. "tag": {
  174. "_attributes": {
  175. "swac_text": "母亲"
  176. }
  177. }
  178. },
  179. {
  180. "_attributes": {
  181. "path": "cmn-09859c9a.ogg"
  182. },
  183. "tag": {
  184. "_attributes": {
  185. "swac_text": "生命"
  186. }
  187. }
  188. },
  189. {
  190. "_attributes": {
  191. "path": "cmn-09bdac4e.ogg"
  192. },
  193. "tag": {
  194. "_attributes": {
  195. "swac_text": "纸张"
  196. }
  197. }
  198. },
  199. {
  200. "_attributes": {
  201. "path": "cmn-0a535711.ogg"
  202. },
  203. "tag": {
  204. "_attributes": {
  205. "swac_text": "生活"
  206. }
  207. }
  208. },
  209. {
  210. "_attributes": {
  211. "path": "cmn-0a87c0e3.ogg"
  212. },
  213. "tag": {
  214. "_attributes": {
  215. "swac_text": "午餐"
  216. }
  217. }
  218. },
  219. {
  220. "_attributes": {
  221. "path": "cmn-0ac1dfbc.ogg"
  222. },
  223. "tag": {
  224. "_attributes": {
  225. "swac_text": "低"
  226. }
  227. }
  228. },
  229. {
  230. "_attributes": {
  231. "path": "cmn-0ad618c6.ogg"
  232. },
  233. "tag": {
  234. "_attributes": {
  235. "swac_text": "再见"
  236. }
  237. }
  238. },
  239. {
  240. "_attributes": {
  241. "path": "cmn-0b09085e.ogg"
  242. },
  243. "tag": {
  244. "_attributes": {
  245. "swac_text": "噪音"
  246. }
  247. }
  248. },
  249. {
  250. "_attributes": {
  251. "path": "cmn-0b106591.ogg"
  252. },
  253. "tag": {
  254. "_attributes": {
  255. "swac_text": "孩子"
  256. }
  257. }
  258. },
  259. {
  260. "_attributes": {
  261. "path": "cmn-0bb38c77.ogg"
  262. },
  263. "tag": {
  264. "_attributes": {
  265. "swac_text": "空气"
  266. }
  267. }
  268. },
  269. {
  270. "_attributes": {
  271. "path": "cmn-0bd4d7fe.ogg"
  272. },
  273. "tag": {
  274. "_attributes": {
  275. "swac_text": "考试"
  276. }
  277. }
  278. },
  279. {
  280. "_attributes": {
  281. "path": "cmn-0bf0e2f4.ogg"
  282. },
  283. "tag": {
  284. "_attributes": {
  285. "swac_text": "烧"
  286. }
  287. }
  288. },
  289. {
  290. "_attributes": {
  291. "path": "cmn-0c6b6172.ogg"
  292. },
  293. "tag": {
  294. "_attributes": {
  295. "swac_text": "感冒"
  296. }
  297. }
  298. },
  299. {
  300. "_attributes": {
  301. "path": "cmn-0da4f18b.ogg"
  302. },
  303. "tag": {
  304. "_attributes": {
  305. "swac_text": "有空"
  306. }
  307. }
  308. },
  309. {
  310. "_attributes": {
  311. "path": "cmn-0e261443.ogg"
  312. },
  313. "tag": {
  314. "_attributes": {
  315. "swac_text": "浸"
  316. }
  317. }
  318. },
  319. {
  320. "_attributes": {
  321. "path": "cmn-0e8a4a2b.ogg"
  322. },
  323. "tag": {
  324. "_attributes": {
  325. "swac_text": "前面"
  326. }
  327. }
  328. },
  329. {
  330. "_attributes": {
  331. "path": "cmn-0e9ae27f.ogg"
  332. },
  333. "tag": {
  334. "_attributes": {
  335. "swac_text": "长"
  336. }
  337. }
  338. },
  339. {
  340. "_attributes": {
  341. "path": "cmn-0eeae608.ogg"
  342. },
  343. "tag": {
  344. "_attributes": {
  345. "swac_text": "因特网"
  346. }
  347. }
  348. },
  349. {
  350. "_attributes": {
  351. "path": "cmn-0ef50a53.ogg"
  352. },
  353. "tag": {
  354. "_attributes": {
  355. "swac_text": "少男"
  356. }
  357. }
  358. },
  359. {
  360. "_attributes": {
  361. "path": "cmn-0f03c659.ogg"
  362. },
  363. "tag": {
  364. "_attributes": {
  365. "swac_text": "绿"
  366. }
  367. }
  368. },
  369. {
  370. "_attributes": {
  371. "path": "cmn-0f1e9f47.ogg"
  372. },
  373. "tag": {
  374. "_attributes": {
  375. "swac_text": "出"
  376. }
  377. }
  378. },
  379. {
  380. "_attributes": {
  381. "path": "cmn-0fa43581.ogg"
  382. },
  383. "tag": {
  384. "_attributes": {
  385. "swac_text": "我想要..."
  386. }
  387. }
  388. },
  389. {
  390. "_attributes": {
  391. "path": "cmn-0fcb2b2c.ogg"
  392. },
  393. "tag": {
  394. "_attributes": {
  395. "swac_text": "部长"
  396. }
  397. }
  398. },
  399. {
  400. "_attributes": {
  401. "path": "cmn-100b34f0.ogg"
  402. },
  403. "tag": {
  404. "_attributes": {
  405. "swac_text": "丈夫"
  406. }
  407. }
  408. },
  409. {
  410. "_attributes": {
  411. "path": "cmn-104648e6.ogg"
  412. },
  413. "tag": {
  414. "_attributes": {
  415. "swac_text": "纸巾"
  416. }
  417. }
  418. },
  419. {
  420. "_attributes": {
  421. "path": "cmn-109a629f.ogg"
  422. },
  423. "tag": {
  424. "_attributes": {
  425. "swac_text": "一个月"
  426. }
  427. }
  428. },
  429. {
  430. "_attributes": {
  431. "path": "cmn-11c92285.ogg"
  432. },
  433. "tag": {
  434. "_attributes": {
  435. "swac_text": "村"
  436. }
  437. }
  438. },
  439. {
  440. "_attributes": {
  441. "path": "cmn-11d0d7ba.ogg"
  442. },
  443. "tag": {
  444. "_attributes": {
  445. "swac_text": "山"
  446. }
  447. }
  448. },
  449. {
  450. "_attributes": {
  451. "path": "cmn-12405570.ogg"
  452. },
  453. "tag": {
  454. "_attributes": {
  455. "swac_text": "药房"
  456. }
  457. }
  458. },
  459. {
  460. "_attributes": {
  461. "path": "cmn-1278dcf3.ogg"
  462. },
  463. "tag": {
  464. "_attributes": {
  465. "swac_text": "出发"
  466. }
  467. }
  468. },
  469. {
  470. "_attributes": {
  471. "path": "cmn-13ace787.ogg"
  472. },
  473. "tag": {
  474. "_attributes": {
  475. "swac_text": "今天"
  476. }
  477. }
  478. },
  479. {
  480. "_attributes": {
  481. "path": "cmn-13ca4a36.ogg"
  482. },
  483. "tag": {
  484. "_attributes": {
  485. "swac_text": "雨"
  486. }
  487. }
  488. },
  489. {
  490. "_attributes": {
  491. "path": "cmn-144759ce.ogg"
  492. },
  493. "tag": {
  494. "_attributes": {
  495. "swac_text": "星期一"
  496. }
  497. }
  498. },
  499. {
  500. "_attributes": {
  501. "path": "cmn-145eedb3.ogg"
  502. },
  503. "tag": {
  504. "_attributes": {
  505. "swac_text": "烟草"
  506. }
  507. }
  508. },
  509. {
  510. "_attributes": {
  511. "path": "cmn-14f59325.ogg"
  512. },
  513. "tag": {
  514. "_attributes": {
  515. "swac_text": "父母"
  516. }
  517. }
  518. },
  519. {
  520. "_attributes": {
  521. "path": "cmn-15de9858.ogg"
  522. },
  523. "tag": {
  524. "_attributes": {
  525. "swac_text": "鸟"
  526. }
  527. }
  528. },
  529. {
  530. "_attributes": {
  531. "path": "cmn-16081209.ogg"
  532. },
  533. "tag": {
  534. "_attributes": {
  535. "swac_text": "蚊子"
  536. }
  537. }
  538. },
  539. {
  540. "_attributes": {
  541. "path": "cmn-161280b1.ogg"
  542. },
  543. "tag": {
  544. "_attributes": {
  545. "swac_text": "梨"
  546. }
  547. }
  548. },
  549. {
  550. "_attributes": {
  551. "path": "cmn-1683b11f.ogg"
  552. },
  553. "tag": {
  554. "_attributes": {
  555. "swac_text": "方向"
  556. }
  557. }
  558. },
  559. {
  560. "_attributes": {
  561. "path": "cmn-17857f1f.ogg"
  562. },
  563. "tag": {
  564. "_attributes": {
  565. "swac_text": "脚"
  566. }
  567. }
  568. },
  569. {
  570. "_attributes": {
  571. "path": "cmn-188d7727.ogg"
  572. },
  573. "tag": {
  574. "_attributes": {
  575. "swac_text": "港口"
  576. }
  577. }
  578. },
  579. {
  580. "_attributes": {
  581. "path": "cmn-1921900f.ogg"
  582. },
  583. "tag": {
  584. "_attributes": {
  585. "swac_text": "家庭"
  586. }
  587. }
  588. },
  589. {
  590. "_attributes": {
  591. "path": "cmn-19574161.ogg"
  592. },
  593. "tag": {
  594. "_attributes": {
  595. "swac_text": "船"
  596. }
  597. }
  598. },
  599. {
  600. "_attributes": {
  601. "path": "cmn-19aff414.ogg"
  602. },
  603. "tag": {
  604. "_attributes": {
  605. "swac_text": "回头见!"
  606. }
  607. }
  608. },
  609. {
  610. "_attributes": {
  611. "path": "cmn-1a1a584d.ogg"
  612. },
  613. "tag": {
  614. "_attributes": {
  615. "swac_text": "价格"
  616. }
  617. }
  618. },
  619. {
  620. "_attributes": {
  621. "path": "cmn-1a1bdff3.ogg"
  622. },
  623. "tag": {
  624. "_attributes": {
  625. "swac_text": "为什么?"
  626. }
  627. }
  628. },
  629. {
  630. "_attributes": {
  631. "path": "cmn-1a723a2d.ogg"
  632. },
  633. "tag": {
  634. "_attributes": {
  635. "swac_text": "画"
  636. }
  637. }
  638. },
  639. {
  640. "_attributes": {
  641. "path": "cmn-1bad6479.ogg"
  642. },
  643. "tag": {
  644. "_attributes": {
  645. "swac_text": "幸福"
  646. }
  647. }
  648. },
  649. {
  650. "_attributes": {
  651. "path": "cmn-1bbe8b92.ogg"
  652. },
  653. "tag": {
  654. "_attributes": {
  655. "swac_text": "有"
  656. }
  657. }
  658. },
  659. {
  660. "_attributes": {
  661. "path": "cmn-1d4edc8a.ogg"
  662. },
  663. "tag": {
  664. "_attributes": {
  665. "swac_text": "身体"
  666. }
  667. }
  668. },
  669. {
  670. "_attributes": {
  671. "path": "cmn-1df9e2ae.ogg"
  672. },
  673. "tag": {
  674. "_attributes": {
  675. "swac_text": "太阳"
  676. }
  677. }
  678. },
  679. {
  680. "_attributes": {
  681. "path": "cmn-1f29ef64.ogg"
  682. },
  683. "tag": {
  684. "_attributes": {
  685. "swac_text": "心脏"
  686. }
  687. }
  688. },
  689. {
  690. "_attributes": {
  691. "path": "cmn-1fffa6ed.ogg"
  692. },
  693. "tag": {
  694. "_attributes": {
  695. "swac_text": "大家"
  696. }
  697. }
  698. },
  699. {
  700. "_attributes": {
  701. "path": "cmn-202e1678.ogg"
  702. },
  703. "tag": {
  704. "_attributes": {
  705. "swac_text": "盘子"
  706. }
  707. }
  708. },
  709. {
  710. "_attributes": {
  711. "path": "cmn-206b0a00.ogg"
  712. },
  713. "tag": {
  714. "_attributes": {
  715. "swac_text": "癌症"
  716. }
  717. }
  718. },
  719. {
  720. "_attributes": {
  721. "path": "cmn-21498d74.ogg"
  722. },
  723. "tag": {
  724. "_attributes": {
  725. "swac_text": "星期四"
  726. }
  727. }
  728. },
  729. {
  730. "_attributes": {
  731. "path": "cmn-21b60840.ogg"
  732. },
  733. "tag": {
  734. "_attributes": {
  735. "swac_text": "等等我!"
  736. }
  737. }
  738. },
  739. {
  740. "_attributes": {
  741. "path": "cmn-220b66b0.ogg"
  742. },
  743. "tag": {
  744. "_attributes": {
  745. "swac_text": "死亡"
  746. }
  747. }
  748. },
  749. {
  750. "_attributes": {
  751. "path": "cmn-222ece37.ogg"
  752. },
  753. "tag": {
  754. "_attributes": {
  755. "swac_text": "神父"
  756. }
  757. }
  758. },
  759. {
  760. "_attributes": {
  761. "path": "cmn-22628fac.ogg"
  762. },
  763. "tag": {
  764. "_attributes": {
  765. "swac_text": "我说法语"
  766. }
  767. }
  768. },
  769. {
  770. "_attributes": {
  771. "path": "cmn-2265a5c4.ogg"
  772. },
  773. "tag": {
  774. "_attributes": {
  775. "swac_text": "饭"
  776. }
  777. }
  778. },
  779. {
  780. "_attributes": {
  781. "path": "cmn-22711e0c.ogg"
  782. },
  783. "tag": {
  784. "_attributes": {
  785. "swac_text": "果汁"
  786. }
  787. }
  788. },
  789. {
  790. "_attributes": {
  791. "path": "cmn-228e9458.ogg"
  792. },
  793. "tag": {
  794. "_attributes": {
  795. "swac_text": "那里"
  796. }
  797. }
  798. },
  799. {
  800. "_attributes": {
  801. "path": "cmn-235af603.ogg"
  802. },
  803. "tag": {
  804. "_attributes": {
  805. "swac_text": "教育"
  806. }
  807. }
  808. },
  809. {
  810. "_attributes": {
  811. "path": "cmn-242ade03.ogg"
  812. },
  813. "tag": {
  814. "_attributes": {
  815. "swac_text": "请"
  816. }
  817. }
  818. },
  819. {
  820. "_attributes": {
  821. "path": "cmn-249c5f96.ogg"
  822. },
  823. "tag": {
  824. "_attributes": {
  825. "swac_text": "旧"
  826. }
  827. }
  828. },
  829. {
  830. "_attributes": {
  831. "path": "cmn-24c7f63f.ogg"
  832. },
  833. "tag": {
  834. "_attributes": {
  835. "swac_text": "羊"
  836. }
  837. }
  838. },
  839. {
  840. "_attributes": {
  841. "path": "cmn-24d1cca2.ogg"
  842. },
  843. "tag": {
  844. "_attributes": {
  845. "swac_text": "明白"
  846. }
  847. }
  848. },
  849. {
  850. "_attributes": {
  851. "path": "cmn-25baabd1.ogg"
  852. },
  853. "tag": {
  854. "_attributes": {
  855. "swac_text": "花"
  856. }
  857. }
  858. },
  859. {
  860. "_attributes": {
  861. "path": "cmn-25d7658b.ogg"
  862. },
  863. "tag": {
  864. "_attributes": {
  865. "swac_text": "容易"
  866. }
  867. }
  868. },
  869. {
  870. "_attributes": {
  871. "path": "cmn-25fcbcde.ogg"
  872. },
  873. "tag": {
  874. "_attributes": {
  875. "swac_text": "嘴"
  876. }
  877. }
  878. },
  879. {
  880. "_attributes": {
  881. "path": "cmn-267cc491.ogg"
  882. },
  883. "tag": {
  884. "_attributes": {
  885. "swac_text": "我"
  886. }
  887. }
  888. },
  889. {
  890. "_attributes": {
  891. "path": "cmn-26865323.ogg"
  892. },
  893. "tag": {
  894. "_attributes": {
  895. "swac_text": "工厂"
  896. }
  897. }
  898. },
  899. {
  900. "_attributes": {
  901. "path": "cmn-271fc631.ogg"
  902. },
  903. "tag": {
  904. "_attributes": {
  905. "swac_text": "玉米"
  906. }
  907. }
  908. },
  909. {
  910. "_attributes": {
  911. "path": "cmn-27f4d77d.ogg"
  912. },
  913. "tag": {
  914. "_attributes": {
  915. "swac_text": "手臂"
  916. }
  917. }
  918. },
  919. {
  920. "_attributes": {
  921. "path": "cmn-283392a5.ogg"
  922. },
  923. "tag": {
  924. "_attributes": {
  925. "swac_text": "茶杯"
  926. }
  927. }
  928. },
  929. {
  930. "_attributes": {
  931. "path": "cmn-29188eac.ogg"
  932. },
  933. "tag": {
  934. "_attributes": {
  935. "swac_text": "城市"
  936. }
  937. }
  938. },
  939. {
  940. "_attributes": {
  941. "path": "cmn-29206147.ogg"
  942. },
  943. "tag": {
  944. "_attributes": {
  945. "swac_text": "工作"
  946. }
  947. }
  948. },
  949. {
  950. "_attributes": {
  951. "path": "cmn-2965e54a.ogg"
  952. },
  953. "tag": {
  954. "_attributes": {
  955. "swac_text": "大学"
  956. }
  957. }
  958. },
  959. {
  960. "_attributes": {
  961. "path": "cmn-29ce666c.ogg"
  962. },
  963. "tag": {
  964. "_attributes": {
  965. "swac_text": "奶奶"
  966. }
  967. }
  968. },
  969. {
  970. "_attributes": {
  971. "path": "cmn-2a765e3e.ogg"
  972. },
  973. "tag": {
  974. "_attributes": {
  975. "swac_text": "镜子"
  976. }
  977. }
  978. },
  979. {
  980. "_attributes": {
  981. "path": "cmn-2aaaff98.ogg"
  982. },
  983. "tag": {
  984. "_attributes": {
  985. "swac_text": "醒"
  986. }
  987. }
  988. },
  989. {
  990. "_attributes": {
  991. "path": "cmn-2adbec16.ogg"
  992. },
  993. "tag": {
  994. "_attributes": {
  995. "swac_text": "多少?"
  996. }
  997. }
  998. },
  999. {
  1000. "_attributes": {
  1001. "path": "cmn-2b4c5d01.ogg"
  1002. },
  1003. "tag": {
  1004. "_attributes": {
  1005. "swac_text": "女士"
  1006. }
  1007. }
  1008. },
  1009. {
  1010. "_attributes": {
  1011. "path": "cmn-2b6adc9c.ogg"
  1012. },
  1013. "tag": {
  1014. "_attributes": {
  1015. "swac_text": "祝你身体健康!"
  1016. }
  1017. }
  1018. },
  1019. {
  1020. "_attributes": {
  1021. "path": "cmn-2bab575b.ogg"
  1022. },
  1023. "tag": {
  1024. "_attributes": {
  1025. "swac_text": "斗争"
  1026. }
  1027. }
  1028. },
  1029. {
  1030. "_attributes": {
  1031. "path": "cmn-2c02dbca.ogg"
  1032. },
  1033. "tag": {
  1034. "_attributes": {
  1035. "swac_text": "慢"
  1036. }
  1037. }
  1038. },
  1039. {
  1040. "_attributes": {
  1041. "path": "cmn-2c096856.ogg"
  1042. },
  1043. "tag": {
  1044. "_attributes": {
  1045. "swac_text": "海滩"
  1046. }
  1047. }
  1048. },
  1049. {
  1050. "_attributes": {
  1051. "path": "cmn-2c9bc69c.ogg"
  1052. },
  1053. "tag": {
  1054. "_attributes": {
  1055. "swac_text": "文凭"
  1056. }
  1057. }
  1058. },
  1059. {
  1060. "_attributes": {
  1061. "path": "cmn-2caf7f00.ogg"
  1062. },
  1063. "tag": {
  1064. "_attributes": {
  1065. "swac_text": "爱滋病"
  1066. }
  1067. }
  1068. },
  1069. {
  1070. "_attributes": {
  1071. "path": "cmn-2d9c9228.ogg"
  1072. },
  1073. "tag": {
  1074. "_attributes": {
  1075. "swac_text": "读"
  1076. }
  1077. }
  1078. },
  1079. {
  1080. "_attributes": {
  1081. "path": "cmn-2fc77767.ogg"
  1082. },
  1083. "tag": {
  1084. "_attributes": {
  1085. "swac_text": "星期二"
  1086. }
  1087. }
  1088. },
  1089. {
  1090. "_attributes": {
  1091. "path": "cmn-2ff5230f.ogg"
  1092. },
  1093. "tag": {
  1094. "_attributes": {
  1095. "swac_text": "这里"
  1096. }
  1097. }
  1098. },
  1099. {
  1100. "_attributes": {
  1101. "path": "cmn-30412ad5.ogg"
  1102. },
  1103. "tag": {
  1104. "_attributes": {
  1105. "swac_text": "宗教"
  1106. }
  1107. }
  1108. },
  1109. {
  1110. "_attributes": {
  1111. "path": "cmn-3070cc5d.ogg"
  1112. },
  1113. "tag": {
  1114. "_attributes": {
  1115. "swac_text": "火"
  1116. }
  1117. }
  1118. },
  1119. {
  1120. "_attributes": {
  1121. "path": "cmn-307dd630.ogg"
  1122. },
  1123. "tag": {
  1124. "_attributes": {
  1125. "swac_text": "来"
  1126. }
  1127. }
  1128. },
  1129. {
  1130. "_attributes": {
  1131. "path": "cmn-3081870c.ogg"
  1132. },
  1133. "tag": {
  1134. "_attributes": {
  1135. "swac_text": "更多"
  1136. }
  1137. }
  1138. },
  1139. {
  1140. "_attributes": {
  1141. "path": "cmn-3156dfa2.ogg"
  1142. },
  1143. "tag": {
  1144. "_attributes": {
  1145. "swac_text": "盐"
  1146. }
  1147. }
  1148. },
  1149. {
  1150. "_attributes": {
  1151. "path": "cmn-31a588dd.ogg"
  1152. },
  1153. "tag": {
  1154. "_attributes": {
  1155. "swac_text": "她"
  1156. }
  1157. }
  1158. },
  1159. {
  1160. "_attributes": {
  1161. "path": "cmn-325db3af.ogg"
  1162. },
  1163. "tag": {
  1164. "_attributes": {
  1165. "swac_text": "晚上好"
  1166. }
  1167. }
  1168. },
  1169. {
  1170. "_attributes": {
  1171. "path": "cmn-326f7281.ogg"
  1172. },
  1173. "tag": {
  1174. "_attributes": {
  1175. "swac_text": "牛奶"
  1176. }
  1177. }
  1178. },
  1179. {
  1180. "_attributes": {
  1181. "path": "cmn-3344b3ed.ogg"
  1182. },
  1183. "tag": {
  1184. "_attributes": {
  1185. "swac_text": "和平"
  1186. }
  1187. }
  1188. },
  1189. {
  1190. "_attributes": {
  1191. "path": "cmn-33ac707f.ogg"
  1192. },
  1193. "tag": {
  1194. "_attributes": {
  1195. "swac_text": "强"
  1196. }
  1197. }
  1198. },
  1199. {
  1200. "_attributes": {
  1201. "path": "cmn-33c4aec5.ogg"
  1202. },
  1203. "tag": {
  1204. "_attributes": {
  1205. "swac_text": "这是什么?"
  1206. }
  1207. }
  1208. },
  1209. {
  1210. "_attributes": {
  1211. "path": "cmn-347b43e2.ogg"
  1212. },
  1213. "tag": {
  1214. "_attributes": {
  1215. "swac_text": "蛋糕"
  1216. }
  1217. }
  1218. },
  1219. {
  1220. "_attributes": {
  1221. "path": "cmn-34c6c50c.ogg"
  1222. },
  1223. "tag": {
  1224. "_attributes": {
  1225. "swac_text": "合同"
  1226. }
  1227. }
  1228. },
  1229. {
  1230. "_attributes": {
  1231. "path": "cmn-34c869f4.ogg"
  1232. },
  1233. "tag": {
  1234. "_attributes": {
  1235. "swac_text": "社会"
  1236. }
  1237. }
  1238. },
  1239. {
  1240. "_attributes": {
  1241. "path": "cmn-36296e70.ogg"
  1242. },
  1243. "tag": {
  1244. "_attributes": {
  1245. "swac_text": "朋友"
  1246. }
  1247. }
  1248. },
  1249. {
  1250. "_attributes": {
  1251. "path": "cmn-3660b212.ogg"
  1252. },
  1253. "tag": {
  1254. "_attributes": {
  1255. "swac_text": "油"
  1256. }
  1257. }
  1258. },
  1259. {
  1260. "_attributes": {
  1261. "path": "cmn-366c2291.ogg"
  1262. },
  1263. "tag": {
  1264. "_attributes": {
  1265. "swac_text": "姐姐"
  1266. }
  1267. }
  1268. },
  1269. {
  1270. "_attributes": {
  1271. "path": "cmn-3673aba6.ogg"
  1272. },
  1273. "tag": {
  1274. "_attributes": {
  1275. "swac_text": "地狱"
  1276. }
  1277. }
  1278. },
  1279. {
  1280. "_attributes": {
  1281. "path": "cmn-36c84cc4.ogg"
  1282. },
  1283. "tag": {
  1284. "_attributes": {
  1285. "swac_text": "好"
  1286. }
  1287. }
  1288. },
  1289. {
  1290. "_attributes": {
  1291. "path": "cmn-36d2781e.ogg"
  1292. },
  1293. "tag": {
  1294. "_attributes": {
  1295. "swac_text": "睡"
  1296. }
  1297. }
  1298. },
  1299. {
  1300. "_attributes": {
  1301. "path": "cmn-371d0844.ogg"
  1302. },
  1303. "tag": {
  1304. "_attributes": {
  1305. "swac_text": "灯"
  1306. }
  1307. }
  1308. },
  1309. {
  1310. "_attributes": {
  1311. "path": "cmn-37678c0c.ogg"
  1312. },
  1313. "tag": {
  1314. "_attributes": {
  1315. "swac_text": "政治"
  1316. }
  1317. }
  1318. },
  1319. {
  1320. "_attributes": {
  1321. "path": "cmn-38c4d257.ogg"
  1322. },
  1323. "tag": {
  1324. "_attributes": {
  1325. "swac_text": "公共汽车"
  1326. }
  1327. }
  1328. },
  1329. {
  1330. "_attributes": {
  1331. "path": "cmn-38cac41a.ogg"
  1332. },
  1333. "tag": {
  1334. "_attributes": {
  1335. "swac_text": "打电话"
  1336. }
  1337. }
  1338. },
  1339. {
  1340. "_attributes": {
  1341. "path": "cmn-38d96cd9.ogg"
  1342. },
  1343. "tag": {
  1344. "_attributes": {
  1345. "swac_text": "军人"
  1346. }
  1347. }
  1348. },
  1349. {
  1350. "_attributes": {
  1351. "path": "cmn-3ab22732.ogg"
  1352. },
  1353. "tag": {
  1354. "_attributes": {
  1355. "swac_text": "星期六"
  1356. }
  1357. }
  1358. },
  1359. {
  1360. "_attributes": {
  1361. "path": "cmn-3bb17d33.ogg"
  1362. },
  1363. "tag": {
  1364. "_attributes": {
  1365. "swac_text": "一天"
  1366. }
  1367. }
  1368. },
  1369. {
  1370. "_attributes": {
  1371. "path": "cmn-3bd5c0ed.ogg"
  1372. },
  1373. "tag": {
  1374. "_attributes": {
  1375. "swac_text": "火柴"
  1376. }
  1377. }
  1378. },
  1379. {
  1380. "_attributes": {
  1381. "path": "cmn-3c39cde8.ogg"
  1382. },
  1383. "tag": {
  1384. "_attributes": {
  1385. "swac_text": "枕头"
  1386. }
  1387. }
  1388. },
  1389. {
  1390. "_attributes": {
  1391. "path": "cmn-3c561d54.ogg"
  1392. },
  1393. "tag": {
  1394. "_attributes": {
  1395. "swac_text": "地毯"
  1396. }
  1397. }
  1398. },
  1399. {
  1400. "_attributes": {
  1401. "path": "cmn-3c9d278e.ogg"
  1402. },
  1403. "tag": {
  1404. "_attributes": {
  1405. "swac_text": "旅行"
  1406. }
  1407. }
  1408. },
  1409. {
  1410. "_attributes": {
  1411. "path": "cmn-3cabef31.ogg"
  1412. },
  1413. "tag": {
  1414. "_attributes": {
  1415. "swac_text": "星期五"
  1416. }
  1417. }
  1418. },
  1419. {
  1420. "_attributes": {
  1421. "path": "cmn-3e6447ad.ogg"
  1422. },
  1423. "tag": {
  1424. "_attributes": {
  1425. "swac_text": "耳朵"
  1426. }
  1427. }
  1428. },
  1429. {
  1430. "_attributes": {
  1431. "path": "cmn-3ef09f42.ogg"
  1432. },
  1433. "tag": {
  1434. "_attributes": {
  1435. "swac_text": "外婆"
  1436. }
  1437. }
  1438. },
  1439. {
  1440. "_attributes": {
  1441. "path": "cmn-401708e5.ogg"
  1442. },
  1443. "tag": {
  1444. "_attributes": {
  1445. "swac_text": "天堂"
  1446. }
  1447. }
  1448. },
  1449. {
  1450. "_attributes": {
  1451. "path": "cmn-40b6425f.ogg"
  1452. },
  1453. "tag": {
  1454. "_attributes": {
  1455. "swac_text": "弟弟"
  1456. }
  1457. }
  1458. },
  1459. {
  1460. "_attributes": {
  1461. "path": "cmn-411b7527.ogg"
  1462. },
  1463. "tag": {
  1464. "_attributes": {
  1465. "swac_text": "给...看"
  1466. }
  1467. }
  1468. },
  1469. {
  1470. "_attributes": {
  1471. "path": "cmn-413cdeef.ogg"
  1472. },
  1473. "tag": {
  1474. "_attributes": {
  1475. "swac_text": "忘记"
  1476. }
  1477. }
  1478. },
  1479. {
  1480. "_attributes": {
  1481. "path": "cmn-41cbc37e.ogg"
  1482. },
  1483. "tag": {
  1484. "_attributes": {
  1485. "swac_text": "邮票"
  1486. }
  1487. }
  1488. },
  1489. {
  1490. "_attributes": {
  1491. "path": "cmn-42c0857b.ogg"
  1492. },
  1493. "tag": {
  1494. "_attributes": {
  1495. "swac_text": "我住大学宿舍"
  1496. }
  1497. }
  1498. },
  1499. {
  1500. "_attributes": {
  1501. "path": "cmn-432fe755.ogg"
  1502. },
  1503. "tag": {
  1504. "_attributes": {
  1505. "swac_text": "床"
  1506. }
  1507. }
  1508. },
  1509. {
  1510. "_attributes": {
  1511. "path": "cmn-437d4db7.ogg"
  1512. },
  1513. "tag": {
  1514. "_attributes": {
  1515. "swac_text": "教授"
  1516. }
  1517. }
  1518. },
  1519. {
  1520. "_attributes": {
  1521. "path": "cmn-438eafcf.ogg"
  1522. },
  1523. "tag": {
  1524. "_attributes": {
  1525. "swac_text": "桥"
  1526. }
  1527. }
  1528. },
  1529. {
  1530. "_attributes": {
  1531. "path": "cmn-44f44561.ogg"
  1532. },
  1533. "tag": {
  1534. "_attributes": {
  1535. "swac_text": "关"
  1536. }
  1537. }
  1538. },
  1539. {
  1540. "_attributes": {
  1541. "path": "cmn-456e471a.ogg"
  1542. },
  1543. "tag": {
  1544. "_attributes": {
  1545. "swac_text": "丢"
  1546. }
  1547. }
  1548. },
  1549. {
  1550. "_attributes": {
  1551. "path": "cmn-458a3ed2.ogg"
  1552. },
  1553. "tag": {
  1554. "_attributes": {
  1555. "swac_text": "墙"
  1556. }
  1557. }
  1558. },
  1559. {
  1560. "_attributes": {
  1561. "path": "cmn-459a9a19.ogg"
  1562. },
  1563. "tag": {
  1564. "_attributes": {
  1565. "swac_text": "腿"
  1566. }
  1567. }
  1568. },
  1569. {
  1570. "_attributes": {
  1571. "path": "cmn-46a9f548.ogg"
  1572. },
  1573. "tag": {
  1574. "_attributes": {
  1575. "swac_text": "证券交易所"
  1576. }
  1577. }
  1578. },
  1579. {
  1580. "_attributes": {
  1581. "path": "cmn-46bfe155.ogg"
  1582. },
  1583. "tag": {
  1584. "_attributes": {
  1585. "swac_text": "白"
  1586. }
  1587. }
  1588. },
  1589. {
  1590. "_attributes": {
  1591. "path": "cmn-4778a36b.ogg"
  1592. },
  1593. "tag": {
  1594. "_attributes": {
  1595. "swac_text": "从不"
  1596. }
  1597. }
  1598. },
  1599. {
  1600. "_attributes": {
  1601. "path": "cmn-481c5c0c.ogg"
  1602. },
  1603. "tag": {
  1604. "_attributes": {
  1605. "swac_text": "水果"
  1606. }
  1607. }
  1608. },
  1609. {
  1610. "_attributes": {
  1611. "path": "cmn-48256932.ogg"
  1612. },
  1613. "tag": {
  1614. "_attributes": {
  1615. "swac_text": "看见"
  1616. }
  1617. }
  1618. },
  1619. {
  1620. "_attributes": {
  1621. "path": "cmn-48a10390.ogg"
  1622. },
  1623. "tag": {
  1624. "_attributes": {
  1625. "swac_text": "哥哥"
  1626. }
  1627. }
  1628. },
  1629. {
  1630. "_attributes": {
  1631. "path": "cmn-4905e74a.ogg"
  1632. },
  1633. "tag": {
  1634. "_attributes": {
  1635. "swac_text": "柠檬"
  1636. }
  1637. }
  1638. },
  1639. {
  1640. "_attributes": {
  1641. "path": "cmn-493c4e48.ogg"
  1642. },
  1643. "tag": {
  1644. "_attributes": {
  1645. "swac_text": "小孩"
  1646. }
  1647. }
  1648. },
  1649. {
  1650. "_attributes": {
  1651. "path": "cmn-494ca110.ogg"
  1652. },
  1653. "tag": {
  1654. "_attributes": {
  1655. "swac_text": "狼"
  1656. }
  1657. }
  1658. },
  1659. {
  1660. "_attributes": {
  1661. "path": "cmn-4bf4bdb3.ogg"
  1662. },
  1663. "tag": {
  1664. "_attributes": {
  1665. "swac_text": "午饭"
  1666. }
  1667. }
  1668. },
  1669. {
  1670. "_attributes": {
  1671. "path": "cmn-4c64f8d8.ogg"
  1672. },
  1673. "tag": {
  1674. "_attributes": {
  1675. "swac_text": "回答"
  1676. }
  1677. }
  1678. },
  1679. {
  1680. "_attributes": {
  1681. "path": "cmn-4c849880.ogg"
  1682. },
  1683. "tag": {
  1684. "_attributes": {
  1685. "swac_text": "黄油"
  1686. }
  1687. }
  1688. },
  1689. {
  1690. "_attributes": {
  1691. "path": "cmn-4d64190a.ogg"
  1692. },
  1693. "tag": {
  1694. "_attributes": {
  1695. "swac_text": "警察"
  1696. }
  1697. }
  1698. },
  1699. {
  1700. "_attributes": {
  1701. "path": "cmn-4df5d558.ogg"
  1702. },
  1703. "tag": {
  1704. "_attributes": {
  1705. "swac_text": "嘴唇"
  1706. }
  1707. }
  1708. },
  1709. {
  1710. "_attributes": {
  1711. "path": "cmn-4df6c433.ogg"
  1712. },
  1713. "tag": {
  1714. "_attributes": {
  1715. "swac_text": "运河"
  1716. }
  1717. }
  1718. },
  1719. {
  1720. "_attributes": {
  1721. "path": "cmn-4e1000c3.ogg"
  1722. },
  1723. "tag": {
  1724. "_attributes": {
  1725. "swac_text": "工程师"
  1726. }
  1727. }
  1728. },
  1729. {
  1730. "_attributes": {
  1731. "path": "cmn-4e8a5a3a.ogg"
  1732. },
  1733. "tag": {
  1734. "_attributes": {
  1735. "swac_text": "刀"
  1736. }
  1737. }
  1738. },
  1739. {
  1740. "_attributes": {
  1741. "path": "cmn-4ec15758.ogg"
  1742. },
  1743. "tag": {
  1744. "_attributes": {
  1745. "swac_text": "醋"
  1746. }
  1747. }
  1748. },
  1749. {
  1750. "_attributes": {
  1751. "path": "cmn-4ef51d13.ogg"
  1752. },
  1753. "tag": {
  1754. "_attributes": {
  1755. "swac_text": "生日"
  1756. }
  1757. }
  1758. },
  1759. {
  1760. "_attributes": {
  1761. "path": "cmn-4ef93b9d.ogg"
  1762. },
  1763. "tag": {
  1764. "_attributes": {
  1765. "swac_text": "邻居"
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "_attributes": {
  1771. "path": "cmn-4ff7e06c.ogg"
  1772. },
  1773. "tag": {
  1774. "_attributes": {
  1775. "swac_text": "他"
  1776. }
  1777. }
  1778. },
  1779. {
  1780. "_attributes": {
  1781. "path": "cmn-50a2b841.ogg"
  1782. },
  1783. "tag": {
  1784. "_attributes": {
  1785. "swac_text": "你好"
  1786. }
  1787. }
  1788. },
  1789. {
  1790. "_attributes": {
  1791. "path": "cmn-50a7720d.ogg"
  1792. },
  1793. "tag": {
  1794. "_attributes": {
  1795. "swac_text": "你叫什么名字?"
  1796. }
  1797. }
  1798. },
  1799. {
  1800. "_attributes": {
  1801. "path": "cmn-50b385b4.ogg"
  1802. },
  1803. "tag": {
  1804. "_attributes": {
  1805. "swac_text": "瓶子"
  1806. }
  1807. }
  1808. },
  1809. {
  1810. "_attributes": {
  1811. "path": "cmn-50c65e07.ogg"
  1812. },
  1813. "tag": {
  1814. "_attributes": {
  1815. "swac_text": "衬衫"
  1816. }
  1817. }
  1818. },
  1819. {
  1820. "_attributes": {
  1821. "path": "cmn-510dc77d.ogg"
  1822. },
  1823. "tag": {
  1824. "_attributes": {
  1825. "swac_text": "不是"
  1826. }
  1827. }
  1828. },
  1829. {
  1830. "_attributes": {
  1831. "path": "cmn-52a6b049.ogg"
  1832. },
  1833. "tag": {
  1834. "_attributes": {
  1835. "swac_text": "左边"
  1836. }
  1837. }
  1838. },
  1839. {
  1840. "_attributes": {
  1841. "path": "cmn-5305045d.ogg"
  1842. },
  1843. "tag": {
  1844. "_attributes": {
  1845. "swac_text": "我在巴黎读书"
  1846. }
  1847. }
  1848. },
  1849. {
  1850. "_attributes": {
  1851. "path": "cmn-530c7a1a.ogg"
  1852. },
  1853. "tag": {
  1854. "_attributes": {
  1855. "swac_text": "摩托车"
  1856. }
  1857. }
  1858. },
  1859. {
  1860. "_attributes": {
  1861. "path": "cmn-533d0c9a.ogg"
  1862. },
  1863. "tag": {
  1864. "_attributes": {
  1865. "swac_text": "歌剧"
  1866. }
  1867. }
  1868. },
  1869. {
  1870. "_attributes": {
  1871. "path": "cmn-55912595.ogg"
  1872. },
  1873. "tag": {
  1874. "_attributes": {
  1875. "swac_text": "在"
  1876. }
  1877. }
  1878. },
  1879. {
  1880. "_attributes": {
  1881. "path": "cmn-559893d9.ogg"
  1882. },
  1883. "tag": {
  1884. "_attributes": {
  1885. "swac_text": "吃"
  1886. }
  1887. }
  1888. },
  1889. {
  1890. "_attributes": {
  1891. "path": "cmn-560fc521.ogg"
  1892. },
  1893. "tag": {
  1894. "_attributes": {
  1895. "swac_text": "头"
  1896. }
  1897. }
  1898. },
  1899. {
  1900. "_attributes": {
  1901. "path": "cmn-56147e8a.ogg"
  1902. },
  1903. "tag": {
  1904. "_attributes": {
  1905. "swac_text": "牛肉"
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "_attributes": {
  1911. "path": "cmn-561ca00f.ogg"
  1912. },
  1913. "tag": {
  1914. "_attributes": {
  1915. "swac_text": "问"
  1916. }
  1917. }
  1918. },
  1919. {
  1920. "_attributes": {
  1921. "path": "cmn-56734d39.ogg"
  1922. },
  1923. "tag": {
  1924. "_attributes": {
  1925. "swac_text": "经济"
  1926. }
  1927. }
  1928. },
  1929. {
  1930. "_attributes": {
  1931. "path": "cmn-568d6c36.ogg"
  1932. },
  1933. "tag": {
  1934. "_attributes": {
  1935. "swac_text": "苹果"
  1936. }
  1937. }
  1938. },
  1939. {
  1940. "_attributes": {
  1941. "path": "cmn-5761fde1.ogg"
  1942. },
  1943. "tag": {
  1944. "_attributes": {
  1945. "swac_text": "棕"
  1946. }
  1947. }
  1948. },
  1949. {
  1950. "_attributes": {
  1951. "path": "cmn-5767840f.ogg"
  1952. },
  1953. "tag": {
  1954. "_attributes": {
  1955. "swac_text": "明天"
  1956. }
  1957. }
  1958. },
  1959. {
  1960. "_attributes": {
  1961. "path": "cmn-5779813a.ogg"
  1962. },
  1963. "tag": {
  1964. "_attributes": {
  1965. "swac_text": "能够"
  1966. }
  1967. }
  1968. },
  1969. {
  1970. "_attributes": {
  1971. "path": "cmn-579231bc.ogg"
  1972. },
  1973. "tag": {
  1974. "_attributes": {
  1975. "swac_text": "地球"
  1976. }
  1977. }
  1978. },
  1979. {
  1980. "_attributes": {
  1981. "path": "cmn-58276849.ogg"
  1982. },
  1983. "tag": {
  1984. "_attributes": {
  1985. "swac_text": "饭店"
  1986. }
  1987. }
  1988. },
  1989. {
  1990. "_attributes": {
  1991. "path": "cmn-586a2885.ogg"
  1992. },
  1993. "tag": {
  1994. "_attributes": {
  1995. "swac_text": "土豆"
  1996. }
  1997. }
  1998. },
  1999. {
  2000. "_attributes": {
  2001. "path": "cmn-58917c41.ogg"
  2002. },
  2003. "tag": {
  2004. "_attributes": {
  2005. "swac_text": "票"
  2006. }
  2007. }
  2008. },
  2009. {
  2010. "_attributes": {
  2011. "path": "cmn-58d4324c.ogg"
  2012. },
  2013. "tag": {
  2014. "_attributes": {
  2015. "swac_text": "总是"
  2016. }
  2017. }
  2018. },
  2019. {
  2020. "_attributes": {
  2021. "path": "cmn-58f20d36.ogg"
  2022. },
  2023. "tag": {
  2024. "_attributes": {
  2025. "swac_text": "政府"
  2026. }
  2027. }
  2028. },
  2029. {
  2030. "_attributes": {
  2031. "path": "cmn-594cdaa8.ogg"
  2032. },
  2033. "tag": {
  2034. "_attributes": {
  2035. "swac_text": "她们"
  2036. }
  2037. }
  2038. },
  2039. {
  2040. "_attributes": {
  2041. "path": "cmn-5aa48596.ogg"
  2042. },
  2043. "tag": {
  2044. "_attributes": {
  2045. "swac_text": "消防员"
  2046. }
  2047. }
  2048. },
  2049. {
  2050. "_attributes": {
  2051. "path": "cmn-5ac6f809.ogg"
  2052. },
  2053. "tag": {
  2054. "_attributes": {
  2055. "swac_text": "学习"
  2056. }
  2057. }
  2058. },
  2059. {
  2060. "_attributes": {
  2061. "path": "cmn-5b18b242.ogg"
  2062. },
  2063. "tag": {
  2064. "_attributes": {
  2065. "swac_text": "书"
  2066. }
  2067. }
  2068. },
  2069. {
  2070. "_attributes": {
  2071. "path": "cmn-5ba1cafe.ogg"
  2072. },
  2073. "tag": {
  2074. "_attributes": {
  2075. "swac_text": "番茄"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. "_attributes": {
  2081. "path": "cmn-5c30a0b1.ogg"
  2082. },
  2083. "tag": {
  2084. "_attributes": {
  2085. "swac_text": "进"
  2086. }
  2087. }
  2088. },
  2089. {
  2090. "_attributes": {
  2091. "path": "cmn-5daf4c95.ogg"
  2092. },
  2093. "tag": {
  2094. "_attributes": {
  2095. "swac_text": "党派"
  2096. }
  2097. }
  2098. },
  2099. {
  2100. "_attributes": {
  2101. "path": "cmn-5dce5fdc.ogg"
  2102. },
  2103. "tag": {
  2104. "_attributes": {
  2105. "swac_text": "应该..."
  2106. }
  2107. }
  2108. },
  2109. {
  2110. "_attributes": {
  2111. "path": "cmn-5df666a7.ogg"
  2112. },
  2113. "tag": {
  2114. "_attributes": {
  2115. "swac_text": "课"
  2116. }
  2117. }
  2118. },
  2119. {
  2120. "_attributes": {
  2121. "path": "cmn-5ecf6197.ogg"
  2122. },
  2123. "tag": {
  2124. "_attributes": {
  2125. "swac_text": "一小时"
  2126. }
  2127. }
  2128. },
  2129. {
  2130. "_attributes": {
  2131. "path": "cmn-5f781fbc.ogg"
  2132. },
  2133. "tag": {
  2134. "_attributes": {
  2135. "swac_text": "公司"
  2136. }
  2137. }
  2138. },
  2139. {
  2140. "_attributes": {
  2141. "path": "cmn-61c68565.ogg"
  2142. },
  2143. "tag": {
  2144. "_attributes": {
  2145. "swac_text": "中午"
  2146. }
  2147. }
  2148. },
  2149. {
  2150. "_attributes": {
  2151. "path": "cmn-6215a6b0.ogg"
  2152. },
  2153. "tag": {
  2154. "_attributes": {
  2155. "swac_text": "人们"
  2156. }
  2157. }
  2158. },
  2159. {
  2160. "_attributes": {
  2161. "path": "cmn-62177238.ogg"
  2162. },
  2163. "tag": {
  2164. "_attributes": {
  2165. "swac_text": "漂亮"
  2166. }
  2167. }
  2168. },
  2169. {
  2170. "_attributes": {
  2171. "path": "cmn-622a1809.ogg"
  2172. },
  2173. "tag": {
  2174. "_attributes": {
  2175. "swac_text": "做"
  2176. }
  2177. }
  2178. },
  2179. {
  2180. "_attributes": {
  2181. "path": "cmn-631274b5.ogg"
  2182. },
  2183. "tag": {
  2184. "_attributes": {
  2185. "swac_text": "贵"
  2186. }
  2187. }
  2188. },
  2189. {
  2190. "_attributes": {
  2191. "path": "cmn-6315ac89.ogg"
  2192. },
  2193. "tag": {
  2194. "_attributes": {
  2195. "swac_text": "香烟"
  2196. }
  2197. }
  2198. },
  2199. {
  2200. "_attributes": {
  2201. "path": "cmn-6316d894.ogg"
  2202. },
  2203. "tag": {
  2204. "_attributes": {
  2205. "swac_text": "餐"
  2206. }
  2207. }
  2208. },
  2209. {
  2210. "_attributes": {
  2211. "path": "cmn-6434bdce.ogg"
  2212. },
  2213. "tag": {
  2214. "_attributes": {
  2215. "swac_text": "人"
  2216. }
  2217. }
  2218. },
  2219. {
  2220. "_attributes": {
  2221. "path": "cmn-6540da8f.ogg"
  2222. },
  2223. "tag": {
  2224. "_attributes": {
  2225. "swac_text": "火车"
  2226. }
  2227. }
  2228. },
  2229. {
  2230. "_attributes": {
  2231. "path": "cmn-65835508.ogg"
  2232. },
  2233. "tag": {
  2234. "_attributes": {
  2235. "swac_text": "小心!"
  2236. }
  2237. }
  2238. },
  2239. {
  2240. "_attributes": {
  2241. "path": "cmn-667b5263.ogg"
  2242. },
  2243. "tag": {
  2244. "_attributes": {
  2245. "swac_text": "鱼"
  2246. }
  2247. }
  2248. },
  2249. {
  2250. "_attributes": {
  2251. "path": "cmn-68b4d2bb.ogg"
  2252. },
  2253. "tag": {
  2254. "_attributes": {
  2255. "swac_text": "冷"
  2256. }
  2257. }
  2258. },
  2259. {
  2260. "_attributes": {
  2261. "path": "cmn-69bf3e7e.ogg"
  2262. },
  2263. "tag": {
  2264. "_attributes": {
  2265. "swac_text": "...在哪里?"
  2266. }
  2267. }
  2268. },
  2269. {
  2270. "_attributes": {
  2271. "path": "cmn-6a232c98.ogg"
  2272. },
  2273. "tag": {
  2274. "_attributes": {
  2275. "swac_text": "小鼠"
  2276. }
  2277. }
  2278. },
  2279. {
  2280. "_attributes": {
  2281. "path": "cmn-6a377db6.ogg"
  2282. },
  2283. "tag": {
  2284. "_attributes": {
  2285. "swac_text": "重复"
  2286. }
  2287. }
  2288. },
  2289. {
  2290. "_attributes": {
  2291. "path": "cmn-6a7065c8.ogg"
  2292. },
  2293. "tag": {
  2294. "_attributes": {
  2295. "swac_text": "椅子"
  2296. }
  2297. }
  2298. },
  2299. {
  2300. "_attributes": {
  2301. "path": "cmn-6abb6393.ogg"
  2302. },
  2303. "tag": {
  2304. "_attributes": {
  2305. "swac_text": "牙齿"
  2306. }
  2307. }
  2308. },
  2309. {
  2310. "_attributes": {
  2311. "path": "cmn-6af0f225.ogg"
  2312. },
  2313. "tag": {
  2314. "_attributes": {
  2315. "swac_text": "套房"
  2316. }
  2317. }
  2318. },
  2319. {
  2320. "_attributes": {
  2321. "path": "cmn-6b7bec0f.ogg"
  2322. },
  2323. "tag": {
  2324. "_attributes": {
  2325. "swac_text": "发"
  2326. }
  2327. }
  2328. },
  2329. {
  2330. "_attributes": {
  2331. "path": "cmn-6b9f4836.ogg"
  2332. },
  2333. "tag": {
  2334. "_attributes": {
  2335. "swac_text": "兄弟"
  2336. }
  2337. }
  2338. },
  2339. {
  2340. "_attributes": {
  2341. "path": "cmn-6bb45801.ogg"
  2342. },
  2343. "tag": {
  2344. "_attributes": {
  2345. "swac_text": "干净"
  2346. }
  2347. }
  2348. },
  2349. {
  2350. "_attributes": {
  2351. "path": "cmn-6bdaa495.ogg"
  2352. },
  2353. "tag": {
  2354. "_attributes": {
  2355. "swac_text": "放"
  2356. }
  2357. }
  2358. },
  2359. {
  2360. "_attributes": {
  2361. "path": "cmn-6c135357.ogg"
  2362. },
  2363. "tag": {
  2364. "_attributes": {
  2365. "swac_text": "我叫..."
  2366. }
  2367. }
  2368. },
  2369. {
  2370. "_attributes": {
  2371. "path": "cmn-6d126a73.ogg"
  2372. },
  2373. "tag": {
  2374. "_attributes": {
  2375. "swac_text": "税收"
  2376. }
  2377. }
  2378. },
  2379. {
  2380. "_attributes": {
  2381. "path": "cmn-6d244c20.ogg"
  2382. },
  2383. "tag": {
  2384. "_attributes": {
  2385. "swac_text": "动物"
  2386. }
  2387. }
  2388. },
  2389. {
  2390. "_attributes": {
  2391. "path": "cmn-6d9be16a.ogg"
  2392. },
  2393. "tag": {
  2394. "_attributes": {
  2395. "swac_text": "星期三"
  2396. }
  2397. }
  2398. },
  2399. {
  2400. "_attributes": {
  2401. "path": "cmn-6dc58bbc.ogg"
  2402. },
  2403. "tag": {
  2404. "_attributes": {
  2405. "swac_text": "姐妹"
  2406. }
  2407. }
  2408. },
  2409. {
  2410. "_attributes": {
  2411. "path": "cmn-6e0104b7.ogg"
  2412. },
  2413. "tag": {
  2414. "_attributes": {
  2415. "swac_text": "葡萄"
  2416. }
  2417. }
  2418. },
  2419. {
  2420. "_attributes": {
  2421. "path": "cmn-6e5e386e.ogg"
  2422. },
  2423. "tag": {
  2424. "_attributes": {
  2425. "swac_text": "我很好"
  2426. }
  2427. }
  2428. },
  2429. {
  2430. "_attributes": {
  2431. "path": "cmn-6fc99609.ogg"
  2432. },
  2433. "tag": {
  2434. "_attributes": {
  2435. "swac_text": "鸡肉"
  2436. }
  2437. }
  2438. },
  2439. {
  2440. "_attributes": {
  2441. "path": "cmn-70ae6128.ogg"
  2442. },
  2443. "tag": {
  2444. "_attributes": {
  2445. "swac_text": "火车站"
  2446. }
  2447. }
  2448. },
  2449. {
  2450. "_attributes": {
  2451. "path": "cmn-70c021bc.ogg"
  2452. },
  2453. "tag": {
  2454. "_attributes": {
  2455. "swac_text": "带来"
  2456. }
  2457. }
  2458. },
  2459. {
  2460. "_attributes": {
  2461. "path": "cmn-71cf1036.ogg"
  2462. },
  2463. "tag": {
  2464. "_attributes": {
  2465. "swac_text": "后面"
  2466. }
  2467. }
  2468. },
  2469. {
  2470. "_attributes": {
  2471. "path": "cmn-7231034e.ogg"
  2472. },
  2473. "tag": {
  2474. "_attributes": {
  2475. "swac_text": "快"
  2476. }
  2477. }
  2478. },
  2479. {
  2480. "_attributes": {
  2481. "path": "cmn-72e5e7fd.ogg"
  2482. },
  2483. "tag": {
  2484. "_attributes": {
  2485. "swac_text": "卷心菜"
  2486. }
  2487. }
  2488. },
  2489. {
  2490. "_attributes": {
  2491. "path": "cmn-745957ec.ogg"
  2492. },
  2493. "tag": {
  2494. "_attributes": {
  2495. "swac_text": "生病"
  2496. }
  2497. }
  2498. },
  2499. {
  2500. "_attributes": {
  2501. "path": "cmn-74a904c7.ogg"
  2502. },
  2503. "tag": {
  2504. "_attributes": {
  2505. "swac_text": "厨房"
  2506. }
  2507. }
  2508. },
  2509. {
  2510. "_attributes": {
  2511. "path": "cmn-74c6fe14.ogg"
  2512. },
  2513. "tag": {
  2514. "_attributes": {
  2515. "swac_text": "头发"
  2516. }
  2517. }
  2518. },
  2519. {
  2520. "_attributes": {
  2521. "path": "cmn-74fda535.ogg"
  2522. },
  2523. "tag": {
  2524. "_attributes": {
  2525. "swac_text": "晚安"
  2526. }
  2527. }
  2528. },
  2529. {
  2530. "_attributes": {
  2531. "path": "cmn-751e9bc1.ogg"
  2532. },
  2533. "tag": {
  2534. "_attributes": {
  2535. "swac_text": "红"
  2536. }
  2537. }
  2538. },
  2539. {
  2540. "_attributes": {
  2541. "path": "cmn-757a18f4.ogg"
  2542. },
  2543. "tag": {
  2544. "_attributes": {
  2545. "swac_text": "没人"
  2546. }
  2547. }
  2548. },
  2549. {
  2550. "_attributes": {
  2551. "path": "cmn-75fee348.ogg"
  2552. },
  2553. "tag": {
  2554. "_attributes": {
  2555. "swac_text": "浴室"
  2556. }
  2557. }
  2558. },
  2559. {
  2560. "_attributes": {
  2561. "path": "cmn-7746a722.ogg"
  2562. },
  2563. "tag": {
  2564. "_attributes": {
  2565. "swac_text": "医院"
  2566. }
  2567. }
  2568. },
  2569. {
  2570. "_attributes": {
  2571. "path": "cmn-77e00a1a.ogg"
  2572. },
  2573. "tag": {
  2574. "_attributes": {
  2575. "swac_text": "开心"
  2576. }
  2577. }
  2578. },
  2579. {
  2580. "_attributes": {
  2581. "path": "cmn-78177459.ogg"
  2582. },
  2583. "tag": {
  2584. "_attributes": {
  2585. "swac_text": "叉"
  2586. }
  2587. }
  2588. },
  2589. {
  2590. "_attributes": {
  2591. "path": "cmn-78b1ca25.ogg"
  2592. },
  2593. "tag": {
  2594. "_attributes": {
  2595. "swac_text": "地址"
  2596. }
  2597. }
  2598. },
  2599. {
  2600. "_attributes": {
  2601. "path": "cmn-78e52ed0.ogg"
  2602. },
  2603. "tag": {
  2604. "_attributes": {
  2605. "swac_text": "接受"
  2606. }
  2607. }
  2608. },
  2609. {
  2610. "_attributes": {
  2611. "path": "cmn-799ef867.ogg"
  2612. },
  2613. "tag": {
  2614. "_attributes": {
  2615. "swac_text": "爸爸"
  2616. }
  2617. }
  2618. },
  2619. {
  2620. "_attributes": {
  2621. "path": "cmn-7a4185df.ogg"
  2622. },
  2623. "tag": {
  2624. "_attributes": {
  2625. "swac_text": "汽油"
  2626. }
  2627. }
  2628. },
  2629. {
  2630. "_attributes": {
  2631. "path": "cmn-7a4fb9ef.ogg"
  2632. },
  2633. "tag": {
  2634. "_attributes": {
  2635. "swac_text": "汽车"
  2636. }
  2637. }
  2638. },
  2639. {
  2640. "_attributes": {
  2641. "path": "cmn-7a589bf4.ogg"
  2642. },
  2643. "tag": {
  2644. "_attributes": {
  2645. "swac_text": "脏"
  2646. }
  2647. }
  2648. },
  2649. {
  2650. "_attributes": {
  2651. "path": "cmn-7ae7ac2d.ogg"
  2652. },
  2653. "tag": {
  2654. "_attributes": {
  2655. "swac_text": "水"
  2656. }
  2657. }
  2658. },
  2659. {
  2660. "_attributes": {
  2661. "path": "cmn-7b216a3b.ogg"
  2662. },
  2663. "tag": {
  2664. "_attributes": {
  2665. "swac_text": "树"
  2666. }
  2667. }
  2668. },
  2669. {
  2670. "_attributes": {
  2671. "path": "cmn-7b3133ba.ogg"
  2672. },
  2673. "tag": {
  2674. "_attributes": {
  2675. "swac_text": "我不知道"
  2676. }
  2677. }
  2678. },
  2679. {
  2680. "_attributes": {
  2681. "path": "cmn-7b512b46.ogg"
  2682. },
  2683. "tag": {
  2684. "_attributes": {
  2685. "swac_text": "结束"
  2686. }
  2687. }
  2688. },
  2689. {
  2690. "_attributes": {
  2691. "path": "cmn-7bf30115.ogg"
  2692. },
  2693. "tag": {
  2694. "_attributes": {
  2695. "swac_text": "打火机"
  2696. }
  2697. }
  2698. },
  2699. {
  2700. "_attributes": {
  2701. "path": "cmn-7c6bbdab.ogg"
  2702. },
  2703. "tag": {
  2704. "_attributes": {
  2705. "swac_text": "帽子"
  2706. }
  2707. }
  2708. },
  2709. {
  2710. "_attributes": {
  2711. "path": "cmn-7cfc5764.ogg"
  2712. },
  2713. "tag": {
  2714. "_attributes": {
  2715. "swac_text": "下面"
  2716. }
  2717. }
  2718. },
  2719. {
  2720. "_attributes": {
  2721. "path": "cmn-7dc6ef2a.ogg"
  2722. },
  2723. "tag": {
  2724. "_attributes": {
  2725. "swac_text": "住"
  2726. }
  2727. }
  2728. },
  2729. {
  2730. "_attributes": {
  2731. "path": "cmn-7e455680.ogg"
  2732. },
  2733. "tag": {
  2734. "_attributes": {
  2735. "swac_text": "湖"
  2736. }
  2737. }
  2738. },
  2739. {
  2740. "_attributes": {
  2741. "path": "cmn-7e4b8d08.ogg"
  2742. },
  2743. "tag": {
  2744. "_attributes": {
  2745. "swac_text": "汤"
  2746. }
  2747. }
  2748. },
  2749. {
  2750. "_attributes": {
  2751. "path": "cmn-7e64f673.ogg"
  2752. },
  2753. "tag": {
  2754. "_attributes": {
  2755. "swac_text": "文化"
  2756. }
  2757. }
  2758. },
  2759. {
  2760. "_attributes": {
  2761. "path": "cmn-7ecd53b4.ogg"
  2762. },
  2763. "tag": {
  2764. "_attributes": {
  2765. "swac_text": "知道"
  2766. }
  2767. }
  2768. },
  2769. {
  2770. "_attributes": {
  2771. "path": "cmn-7f908d4a.ogg"
  2772. },
  2773. "tag": {
  2774. "_attributes": {
  2775. "swac_text": "先生"
  2776. }
  2777. }
  2778. },
  2779. {
  2780. "_attributes": {
  2781. "path": "cmn-80b6274f.ogg"
  2782. },
  2783. "tag": {
  2784. "_attributes": {
  2785. "swac_text": "花园"
  2786. }
  2787. }
  2788. },
  2789. {
  2790. "_attributes": {
  2791. "path": "cmn-80cfaa0f.ogg"
  2792. },
  2793. "tag": {
  2794. "_attributes": {
  2795. "swac_text": "互联网"
  2796. }
  2797. }
  2798. },
  2799. {
  2800. "_attributes": {
  2801. "path": "cmn-81c7d345.ogg"
  2802. },
  2803. "tag": {
  2804. "_attributes": {
  2805. "swac_text": "街"
  2806. }
  2807. }
  2808. },
  2809. {
  2810. "_attributes": {
  2811. "path": "cmn-8212b4e5.ogg"
  2812. },
  2813. "tag": {
  2814. "_attributes": {
  2815. "swac_text": "苍蝇"
  2816. }
  2817. }
  2818. },
  2819. {
  2820. "_attributes": {
  2821. "path": "cmn-82f89cd3.ogg"
  2822. },
  2823. "tag": {
  2824. "_attributes": {
  2825. "swac_text": "光"
  2826. }
  2827. }
  2828. },
  2829. {
  2830. "_attributes": {
  2831. "path": "cmn-830fc462.ogg"
  2832. },
  2833. "tag": {
  2834. "_attributes": {
  2835. "swac_text": "我们"
  2836. }
  2837. }
  2838. },
  2839. {
  2840. "_attributes": {
  2841. "path": "cmn-830fd714.ogg"
  2842. },
  2843. "tag": {
  2844. "_attributes": {
  2845. "swac_text": "慢慢地"
  2846. }
  2847. }
  2848. },
  2849. {
  2850. "_attributes": {
  2851. "path": "cmn-8355f2be.ogg"
  2852. },
  2853. "tag": {
  2854. "_attributes": {
  2855. "swac_text": "生产"
  2856. }
  2857. }
  2858. },
  2859. {
  2860. "_attributes": {
  2861. "path": "cmn-8357367e.ogg"
  2862. },
  2863. "tag": {
  2864. "_attributes": {
  2865. "swac_text": "计算"
  2866. }
  2867. }
  2868. },
  2869. {
  2870. "_attributes": {
  2871. "path": "cmn-840f5ab1.ogg"
  2872. },
  2873. "tag": {
  2874. "_attributes": {
  2875. "swac_text": "东"
  2876. }
  2877. }
  2878. },
  2879. {
  2880. "_attributes": {
  2881. "path": "cmn-848919fa.ogg"
  2882. },
  2883. "tag": {
  2884. "_attributes": {
  2885. "swac_text": "谁?"
  2886. }
  2887. }
  2888. },
  2889. {
  2890. "_attributes": {
  2891. "path": "cmn-85617390.ogg"
  2892. },
  2893. "tag": {
  2894. "_attributes": {
  2895. "swac_text": "周三"
  2896. }
  2897. }
  2898. },
  2899. {
  2900. "_attributes": {
  2901. "path": "cmn-8568d43d.ogg"
  2902. },
  2903. "tag": {
  2904. "_attributes": {
  2905. "swac_text": "糖"
  2906. }
  2907. }
  2908. },
  2909. {
  2910. "_attributes": {
  2911. "path": "cmn-8582af3f.ogg"
  2912. },
  2913. "tag": {
  2914. "_attributes": {
  2915. "swac_text": "拒绝"
  2916. }
  2917. }
  2918. },
  2919. {
  2920. "_attributes": {
  2921. "path": "cmn-85d519b6.ogg"
  2922. },
  2923. "tag": {
  2924. "_attributes": {
  2925. "swac_text": "男人"
  2926. }
  2927. }
  2928. },
  2929. {
  2930. "_attributes": {
  2931. "path": "cmn-85deb210.ogg"
  2932. },
  2933. "tag": {
  2934. "_attributes": {
  2935. "swac_text": "猫"
  2936. }
  2937. }
  2938. },
  2939. {
  2940. "_attributes": {
  2941. "path": "cmn-85e11cea.ogg"
  2942. },
  2943. "tag": {
  2944. "_attributes": {
  2945. "swac_text": "卫生间"
  2946. }
  2947. }
  2948. },
  2949. {
  2950. "_attributes": {
  2951. "path": "cmn-85f1ec7c.ogg"
  2952. },
  2953. "tag": {
  2954. "_attributes": {
  2955. "swac_text": "我20岁"
  2956. }
  2957. }
  2958. },
  2959. {
  2960. "_attributes": {
  2961. "path": "cmn-860ff64e.ogg"
  2962. },
  2963. "tag": {
  2964. "_attributes": {
  2965. "swac_text": "一分钟"
  2966. }
  2967. }
  2968. },
  2969. {
  2970. "_attributes": {
  2971. "path": "cmn-868052f6.ogg"
  2972. },
  2973. "tag": {
  2974. "_attributes": {
  2975. "swac_text": "真的"
  2976. }
  2977. }
  2978. },
  2979. {
  2980. "_attributes": {
  2981. "path": "cmn-86d0cb94.ogg"
  2982. },
  2983. "tag": {
  2984. "_attributes": {
  2985. "swac_text": "妻子"
  2986. }
  2987. }
  2988. },
  2989. {
  2990. "_attributes": {
  2991. "path": "cmn-882f495e.ogg"
  2992. },
  2993. "tag": {
  2994. "_attributes": {
  2995. "swac_text": "橙子"
  2996. }
  2997. }
  2998. },
  2999. {
  3000. "_attributes": {
  3001. "path": "cmn-887c62bb.ogg"
  3002. },
  3003. "tag": {
  3004. "_attributes": {
  3005. "swac_text": "纸"
  3006. }
  3007. }
  3008. },
  3009. {
  3010. "_attributes": {
  3011. "path": "cmn-89fd89d1.ogg"
  3012. },
  3013. "tag": {
  3014. "_attributes": {
  3015. "swac_text": "更少"
  3016. }
  3017. }
  3018. },
  3019. {
  3020. "_attributes": {
  3021. "path": "cmn-8abdc5d2.ogg"
  3022. },
  3023. "tag": {
  3024. "_attributes": {
  3025. "swac_text": "蔬菜"
  3026. }
  3027. }
  3028. },
  3029. {
  3030. "_attributes": {
  3031. "path": "cmn-8af61b16.ogg"
  3032. },
  3033. "tag": {
  3034. "_attributes": {
  3035. "swac_text": "词典"
  3036. }
  3037. }
  3038. },
  3039. {
  3040. "_attributes": {
  3041. "path": "cmn-8b49bd3c.ogg"
  3042. },
  3043. "tag": {
  3044. "_attributes": {
  3045. "swac_text": "停"
  3046. }
  3047. }
  3048. },
  3049. {
  3050. "_attributes": {
  3051. "path": "cmn-8c626e2a.ogg"
  3052. },
  3053. "tag": {
  3054. "_attributes": {
  3055. "swac_text": "蓝"
  3056. }
  3057. }
  3058. },
  3059. {
  3060. "_attributes": {
  3061. "path": "cmn-8d96d7ae.ogg"
  3062. },
  3063. "tag": {
  3064. "_attributes": {
  3065. "swac_text": "祖母"
  3066. }
  3067. }
  3068. },
  3069. {
  3070. "_attributes": {
  3071. "path": "cmn-8d9f42b8.ogg"
  3072. },
  3073. "tag": {
  3074. "_attributes": {
  3075. "swac_text": "妹妹"
  3076. }
  3077. }
  3078. },
  3079. {
  3080. "_attributes": {
  3081. "path": "cmn-8eb9fefe.ogg"
  3082. },
  3083. "tag": {
  3084. "_attributes": {
  3085. "swac_text": "床单"
  3086. }
  3087. }
  3088. },
  3089. {
  3090. "_attributes": {
  3091. "path": "cmn-901a87a4.ogg"
  3092. },
  3093. "tag": {
  3094. "_attributes": {
  3095. "swac_text": "餐巾"
  3096. }
  3097. }
  3098. },
  3099. {
  3100. "_attributes": {
  3101. "path": "cmn-901eb874.ogg"
  3102. },
  3103. "tag": {
  3104. "_attributes": {
  3105. "swac_text": "医生"
  3106. }
  3107. }
  3108. },
  3109. {
  3110. "_attributes": {
  3111. "path": "cmn-90680009.ogg"
  3112. },
  3113. "tag": {
  3114. "_attributes": {
  3115. "swac_text": "鞋子"
  3116. }
  3117. }
  3118. },
  3119. {
  3120. "_attributes": {
  3121. "path": "cmn-90f40075.ogg"
  3122. },
  3123. "tag": {
  3124. "_attributes": {
  3125. "swac_text": "药"
  3126. }
  3127. }
  3128. },
  3129. {
  3130. "_attributes": {
  3131. "path": "cmn-9190f44a.ogg"
  3132. },
  3133. "tag": {
  3134. "_attributes": {
  3135. "swac_text": "柜子"
  3136. }
  3137. }
  3138. },
  3139. {
  3140. "_attributes": {
  3141. "path": "cmn-93268067.ogg"
  3142. },
  3143. "tag": {
  3144. "_attributes": {
  3145. "swac_text": "信"
  3146. }
  3147. }
  3148. },
  3149. {
  3150. "_attributes": {
  3151. "path": "cmn-93cf34bf.ogg"
  3152. },
  3153. "tag": {
  3154. "_attributes": {
  3155. "swac_text": "上帝"
  3156. }
  3157. }
  3158. },
  3159. {
  3160. "_attributes": {
  3161. "path": "cmn-944022c7.ogg"
  3162. },
  3163. "tag": {
  3164. "_attributes": {
  3165. "swac_text": "连衣裙"
  3166. }
  3167. }
  3168. },
  3169. {
  3170. "_attributes": {
  3171. "path": "cmn-94d6dd46.ogg"
  3172. },
  3173. "tag": {
  3174. "_attributes": {
  3175. "swac_text": "妈妈"
  3176. }
  3177. }
  3178. },
  3179. {
  3180. "_attributes": {
  3181. "path": "cmn-952ccaf2.ogg"
  3182. },
  3183. "tag": {
  3184. "_attributes": {
  3185. "swac_text": "累"
  3186. }
  3187. }
  3188. },
  3189. {
  3190. "_attributes": {
  3191. "path": "cmn-965d3f57.ogg"
  3192. },
  3193. "tag": {
  3194. "_attributes": {
  3195. "swac_text": "饮料"
  3196. }
  3197. }
  3198. },
  3199. {
  3200. "_attributes": {
  3201. "path": "cmn-96a28c62.ogg"
  3202. },
  3203. "tag": {
  3204. "_attributes": {
  3205. "swac_text": "父亲"
  3206. }
  3207. }
  3208. },
  3209. {
  3210. "_attributes": {
  3211. "path": "cmn-9784def6.ogg"
  3212. },
  3213. "tag": {
  3214. "_attributes": {
  3215. "swac_text": "欢迎!"
  3216. }
  3217. }
  3218. },
  3219. {
  3220. "_attributes": {
  3221. "path": "cmn-97cc51f5.ogg"
  3222. },
  3223. "tag": {
  3224. "_attributes": {
  3225. "swac_text": "站"
  3226. }
  3227. }
  3228. },
  3229. {
  3230. "_attributes": {
  3231. "path": "cmn-97fced2b.ogg"
  3232. },
  3233. "tag": {
  3234. "_attributes": {
  3235. "swac_text": "梯形教室"
  3236. }
  3237. }
  3238. },
  3239. {
  3240. "_attributes": {
  3241. "path": "cmn-98039e7d.ogg"
  3242. },
  3243. "tag": {
  3244. "_attributes": {
  3245. "swac_text": "房租"
  3246. }
  3247. }
  3248. },
  3249. {
  3250. "_attributes": {
  3251. "path": "cmn-981039dd.ogg"
  3252. },
  3253. "tag": {
  3254. "_attributes": {
  3255. "swac_text": "记者"
  3256. }
  3257. }
  3258. },
  3259. {
  3260. "_attributes": {
  3261. "path": "cmn-9857534c.ogg"
  3262. },
  3263. "tag": {
  3264. "_attributes": {
  3265. "swac_text": "病人"
  3266. }
  3267. }
  3268. },
  3269. {
  3270. "_attributes": {
  3271. "path": "cmn-9abff013.ogg"
  3272. },
  3273. "tag": {
  3274. "_attributes": {
  3275. "swac_text": "一起"
  3276. }
  3277. }
  3278. },
  3279. {
  3280. "_attributes": {
  3281. "path": "cmn-9ac102fe.ogg"
  3282. },
  3283. "tag": {
  3284. "_attributes": {
  3285. "swac_text": "到达"
  3286. }
  3287. }
  3288. },
  3289. {
  3290. "_attributes": {
  3291. "path": "cmn-9b1ffec1.ogg"
  3292. },
  3293. "tag": {
  3294. "_attributes": {
  3295. "swac_text": "污染"
  3296. }
  3297. }
  3298. },
  3299. {
  3300. "_attributes": {
  3301. "path": "cmn-9dc52bb9.ogg"
  3302. },
  3303. "tag": {
  3304. "_attributes": {
  3305. "swac_text": "房屋"
  3306. }
  3307. }
  3308. },
  3309. {
  3310. "_attributes": {
  3311. "path": "cmn-9e1f9d83.ogg"
  3312. },
  3313. "tag": {
  3314. "_attributes": {
  3315. "swac_text": "禁止"
  3316. }
  3317. }
  3318. },
  3319. {
  3320. "_attributes": {
  3321. "path": "cmn-9e79ff1b.ogg"
  3322. },
  3323. "tag": {
  3324. "_attributes": {
  3325. "swac_text": "作家"
  3326. }
  3327. }
  3328. },
  3329. {
  3330. "_attributes": {
  3331. "path": "cmn-9e91e067.ogg"
  3332. },
  3333. "tag": {
  3334. "_attributes": {
  3335. "swac_text": "油画"
  3336. }
  3337. }
  3338. },
  3339. {
  3340. "_attributes": {
  3341. "path": "cmn-9e9909d2.ogg"
  3342. },
  3343. "tag": {
  3344. "_attributes": {
  3345. "swac_text": "海"
  3346. }
  3347. }
  3348. },
  3349. {
  3350. "_attributes": {
  3351. "path": "cmn-9ed6116c.ogg"
  3352. },
  3353. "tag": {
  3354. "_attributes": {
  3355. "swac_text": "怎样?"
  3356. }
  3357. }
  3358. },
  3359. {
  3360. "_attributes": {
  3361. "path": "cmn-9ef30476.ogg"
  3362. },
  3363. "tag": {
  3364. "_attributes": {
  3365. "swac_text": "什么时候?"
  3366. }
  3367. }
  3368. },
  3369. {
  3370. "_attributes": {
  3371. "path": "cmn-9fd72915.ogg"
  3372. },
  3373. "tag": {
  3374. "_attributes": {
  3375. "swac_text": "被子"
  3376. }
  3377. }
  3378. },
  3379. {
  3380. "_attributes": {
  3381. "path": "cmn-a089e4c9.ogg"
  3382. },
  3383. "tag": {
  3384. "_attributes": {
  3385. "swac_text": "遇见"
  3386. }
  3387. }
  3388. },
  3389. {
  3390. "_attributes": {
  3391. "path": "cmn-a151e7e5.ogg"
  3392. },
  3393. "tag": {
  3394. "_attributes": {
  3395. "swac_text": "奶酪"
  3396. }
  3397. }
  3398. },
  3399. {
  3400. "_attributes": {
  3401. "path": "cmn-a210614b.ogg"
  3402. },
  3403. "tag": {
  3404. "_attributes": {
  3405. "swac_text": "晚饭"
  3406. }
  3407. }
  3408. },
  3409. {
  3410. "_attributes": {
  3411. "path": "cmn-a21313ba.ogg"
  3412. },
  3413. "tag": {
  3414. "_attributes": {
  3415. "swac_text": "一秒"
  3416. }
  3417. }
  3418. },
  3419. {
  3420. "_attributes": {
  3421. "path": "cmn-a379f8fd.ogg"
  3422. },
  3423. "tag": {
  3424. "_attributes": {
  3425. "swac_text": "进步"
  3426. }
  3427. }
  3428. },
  3429. {
  3430. "_attributes": {
  3431. "path": "cmn-a430e4a3.ogg"
  3432. },
  3433. "tag": {
  3434. "_attributes": {
  3435. "swac_text": "右边"
  3436. }
  3437. }
  3438. },
  3439. {
  3440. "_attributes": {
  3441. "path": "cmn-a5149404.ogg"
  3442. },
  3443. "tag": {
  3444. "_attributes": {
  3445. "swac_text": "你几岁了?"
  3446. }
  3447. }
  3448. },
  3449. {
  3450. "_attributes": {
  3451. "path": "cmn-a621f370.ogg"
  3452. },
  3453. "tag": {
  3454. "_attributes": {
  3455. "swac_text": "周日"
  3456. }
  3457. }
  3458. },
  3459. {
  3460. "_attributes": {
  3461. "path": "cmn-a66359bf.ogg"
  3462. },
  3463. "tag": {
  3464. "_attributes": {
  3465. "swac_text": "钱"
  3466. }
  3467. }
  3468. },
  3469. {
  3470. "_attributes": {
  3471. "path": "cmn-a6ad5c0a.ogg"
  3472. },
  3473. "tag": {
  3474. "_attributes": {
  3475. "swac_text": "尝试"
  3476. }
  3477. }
  3478. },
  3479. {
  3480. "_attributes": {
  3481. "path": "cmn-a7db7df6.ogg"
  3482. },
  3483. "tag": {
  3484. "_attributes": {
  3485. "swac_text": "一年"
  3486. }
  3487. }
  3488. },
  3489. {
  3490. "_attributes": {
  3491. "path": "cmn-a87906a8.ogg"
  3492. },
  3493. "tag": {
  3494. "_attributes": {
  3495. "swac_text": "准备好了"
  3496. }
  3497. }
  3498. },
  3499. {
  3500. "_attributes": {
  3501. "path": "cmn-a9351af9.ogg"
  3502. },
  3503. "tag": {
  3504. "_attributes": {
  3505. "swac_text": "北"
  3506. }
  3507. }
  3508. },
  3509. {
  3510. "_attributes": {
  3511. "path": "cmn-a93cacb5.ogg"
  3512. },
  3513. "tag": {
  3514. "_attributes": {
  3515. "swac_text": "值"
  3516. }
  3517. }
  3518. },
  3519. {
  3520. "_attributes": {
  3521. "path": "cmn-a9432983.ogg"
  3522. },
  3523. "tag": {
  3524. "_attributes": {
  3525. "swac_text": "不在"
  3526. }
  3527. }
  3528. },
  3529. {
  3530. "_attributes": {
  3531. "path": "cmn-a9db1498.ogg"
  3532. },
  3533. "tag": {
  3534. "_attributes": {
  3535. "swac_text": "去"
  3536. }
  3537. }
  3538. },
  3539. {
  3540. "_attributes": {
  3541. "path": "cmn-a9f56ce5.ogg"
  3542. },
  3543. "tag": {
  3544. "_attributes": {
  3545. "swac_text": "建造"
  3546. }
  3547. }
  3548. },
  3549. {
  3550. "_attributes": {
  3551. "path": "cmn-aa6dfbb5.ogg"
  3552. },
  3553. "tag": {
  3554. "_attributes": {
  3555. "swac_text": "眼镜"
  3556. }
  3557. }
  3558. },
  3559. {
  3560. "_attributes": {
  3561. "path": "cmn-aab89f63.ogg"
  3562. },
  3563. "tag": {
  3564. "_attributes": {
  3565. "swac_text": "金"
  3566. }
  3567. }
  3568. },
  3569. {
  3570. "_attributes": {
  3571. "path": "cmn-aae913dc.ogg"
  3572. },
  3573. "tag": {
  3574. "_attributes": {
  3575. "swac_text": "教堂"
  3576. }
  3577. }
  3578. },
  3579. {
  3580. "_attributes": {
  3581. "path": "cmn-abb34ccd.ogg"
  3582. },
  3583. "tag": {
  3584. "_attributes": {
  3585. "swac_text": "窗户"
  3586. }
  3587. }
  3588. },
  3589. {
  3590. "_attributes": {
  3591. "path": "cmn-ac00f842.ogg"
  3592. },
  3593. "tag": {
  3594. "_attributes": {
  3595. "swac_text": "太"
  3596. }
  3597. }
  3598. },
  3599. {
  3600. "_attributes": {
  3601. "path": "cmn-ac186eee.ogg"
  3602. },
  3603. "tag": {
  3604. "_attributes": {
  3605. "swac_text": "战争"
  3606. }
  3607. }
  3608. },
  3609. {
  3610. "_attributes": {
  3611. "path": "cmn-ac1fd49d.ogg"
  3612. },
  3613. "tag": {
  3614. "_attributes": {
  3615. "swac_text": "玻璃杯"
  3616. }
  3617. }
  3618. },
  3619. {
  3620. "_attributes": {
  3621. "path": "cmn-ac56162a.ogg"
  3622. },
  3623. "tag": {
  3624. "_attributes": {
  3625. "swac_text": "农业"
  3626. }
  3627. }
  3628. },
  3629. {
  3630. "_attributes": {
  3631. "path": "cmn-ad00c241.ogg"
  3632. },
  3633. "tag": {
  3634. "_attributes": {
  3635. "swac_text": "早上"
  3636. }
  3637. }
  3638. },
  3639. {
  3640. "_attributes": {
  3641. "path": "cmn-addfcb6b.ogg"
  3642. },
  3643. "tag": {
  3644. "_attributes": {
  3645. "swac_text": "是"
  3646. }
  3647. }
  3648. },
  3649. {
  3650. "_attributes": {
  3651. "path": "cmn-ae00b6ac.ogg"
  3652. },
  3653. "tag": {
  3654. "_attributes": {
  3655. "swac_text": "层"
  3656. }
  3657. }
  3658. },
  3659. {
  3660. "_attributes": {
  3661. "path": "cmn-ae198259.ogg"
  3662. },
  3663. "tag": {
  3664. "_attributes": {
  3665. "swac_text": "出租车"
  3666. }
  3667. }
  3668. },
  3669. {
  3670. "_attributes": {
  3671. "path": "cmn-aeb6d081.ogg"
  3672. },
  3673. "tag": {
  3674. "_attributes": {
  3675. "swac_text": "县"
  3676. }
  3677. }
  3678. },
  3679. {
  3680. "_attributes": {
  3681. "path": "cmn-afcc0713.ogg"
  3682. },
  3683. "tag": {
  3684. "_attributes": {
  3685. "swac_text": "买"
  3686. }
  3687. }
  3688. },
  3689. {
  3690. "_attributes": {
  3691. "path": "cmn-b02e2bb8.ogg"
  3692. },
  3693. "tag": {
  3694. "_attributes": {
  3695. "swac_text": "南"
  3696. }
  3697. }
  3698. },
  3699. {
  3700. "_attributes": {
  3701. "path": "cmn-b06f5173.ogg"
  3702. },
  3703. "tag": {
  3704. "_attributes": {
  3705. "swac_text": "蛋"
  3706. }
  3707. }
  3708. },
  3709. {
  3710. "_attributes": {
  3711. "path": "cmn-b0c8b193.ogg"
  3712. },
  3713. "tag": {
  3714. "_attributes": {
  3715. "swac_text": "什么?"
  3716. }
  3717. }
  3718. },
  3719. {
  3720. "_attributes": {
  3721. "path": "cmn-b0e54ccd.ogg"
  3722. },
  3723. "tag": {
  3724. "_attributes": {
  3725. "swac_text": "便宜"
  3726. }
  3727. }
  3728. },
  3729. {
  3730. "_attributes": {
  3731. "path": "cmn-b140f6c8.ogg"
  3732. },
  3733. "tag": {
  3734. "_attributes": {
  3735. "swac_text": "星期天"
  3736. }
  3737. }
  3738. },
  3739. {
  3740. "_attributes": {
  3741. "path": "cmn-b142f5a0.ogg"
  3742. },
  3743. "tag": {
  3744. "_attributes": {
  3745. "swac_text": "爷爷"
  3746. }
  3747. }
  3748. },
  3749. {
  3750. "_attributes": {
  3751. "path": "cmn-b14f61d6.ogg"
  3752. },
  3753. "tag": {
  3754. "_attributes": {
  3755. "swac_text": "蝴蝶"
  3756. }
  3757. }
  3758. },
  3759. {
  3760. "_attributes": {
  3761. "path": "cmn-b1beabae.ogg"
  3762. },
  3763. "tag": {
  3764. "_attributes": {
  3765. "swac_text": "飞机"
  3766. }
  3767. }
  3768. },
  3769. {
  3770. "_attributes": {
  3771. "path": "cmn-b220bede.ogg"
  3772. },
  3773. "tag": {
  3774. "_attributes": {
  3775. "swac_text": "名"
  3776. }
  3777. }
  3778. },
  3779. {
  3780. "_attributes": {
  3781. "path": "cmn-b249b77e.ogg"
  3782. },
  3783. "tag": {
  3784. "_attributes": {
  3785. "swac_text": "危险"
  3786. }
  3787. }
  3788. },
  3789. {
  3790. "_attributes": {
  3791. "path": "cmn-b2579267.ogg"
  3792. },
  3793. "tag": {
  3794. "_attributes": {
  3795. "swac_text": "结婚"
  3796. }
  3797. }
  3798. },
  3799. {
  3800. "_attributes": {
  3801. "path": "cmn-b2b320a7.ogg"
  3802. },
  3803. "tag": {
  3804. "_attributes": {
  3805. "swac_text": "儿子"
  3806. }
  3807. }
  3808. },
  3809. {
  3810. "_attributes": {
  3811. "path": "cmn-b31e932c.ogg"
  3812. },
  3813. "tag": {
  3814. "_attributes": {
  3815. "swac_text": "艺术"
  3816. }
  3817. }
  3818. },
  3819. {
  3820. "_attributes": {
  3821. "path": "cmn-b374eea1.ogg"
  3822. },
  3823. "tag": {
  3824. "_attributes": {
  3825. "swac_text": "婴儿"
  3826. }
  3827. }
  3828. },
  3829. {
  3830. "_attributes": {
  3831. "path": "cmn-b452d568.ogg"
  3832. },
  3833. "tag": {
  3834. "_attributes": {
  3835. "swac_text": "少年"
  3836. }
  3837. }
  3838. },
  3839. {
  3840. "_attributes": {
  3841. "path": "cmn-b462df74.ogg"
  3842. },
  3843. "tag": {
  3844. "_attributes": {
  3845. "swac_text": "写"
  3846. }
  3847. }
  3848. },
  3849. {
  3850. "_attributes": {
  3851. "path": "cmn-b46c727d.ogg"
  3852. },
  3853. "tag": {
  3854. "_attributes": {
  3855. "swac_text": "工人"
  3856. }
  3857. }
  3858. },
  3859. {
  3860. "_attributes": {
  3861. "path": "cmn-b4797b26.ogg"
  3862. },
  3863. "tag": {
  3864. "_attributes": {
  3865. "swac_text": "电话"
  3866. }
  3867. }
  3868. },
  3869. {
  3870. "_attributes": {
  3871. "path": "cmn-b4960277.ogg"
  3872. },
  3873. "tag": {
  3874. "_attributes": {
  3875. "swac_text": "黄"
  3876. }
  3877. }
  3878. },
  3879. {
  3880. "_attributes": {
  3881. "path": "cmn-b4b24c83.ogg"
  3882. },
  3883. "tag": {
  3884. "_attributes": {
  3885. "swac_text": "商业"
  3886. }
  3887. }
  3888. },
  3889. {
  3890. "_attributes": {
  3891. "path": "cmn-b4de9a6a.ogg"
  3892. },
  3893. "tag": {
  3894. "_attributes": {
  3895. "swac_text": "果酱"
  3896. }
  3897. }
  3898. },
  3899. {
  3900. "_attributes": {
  3901. "path": "cmn-b545b5e9.ogg"
  3902. },
  3903. "tag": {
  3904. "_attributes": {
  3905. "swac_text": "学校"
  3906. }
  3907. }
  3908. },
  3909. {
  3910. "_attributes": {
  3911. "path": "cmn-b55dde0c.ogg"
  3912. },
  3913. "tag": {
  3914. "_attributes": {
  3915. "swac_text": "路"
  3916. }
  3917. }
  3918. },
  3919. {
  3920. "_attributes": {
  3921. "path": "cmn-b5919f86.ogg"
  3922. },
  3923. "tag": {
  3924. "_attributes": {
  3925. "swac_text": "他们"
  3926. }
  3927. }
  3928. },
  3929. {
  3930. "_attributes": {
  3931. "path": "cmn-b6dbbf3e.ogg"
  3932. },
  3933. "tag": {
  3934. "_attributes": {
  3935. "swac_text": "手袋"
  3936. }
  3937. }
  3938. },
  3939. {
  3940. "_attributes": {
  3941. "path": "cmn-b6e5649f.ogg"
  3942. },
  3943. "tag": {
  3944. "_attributes": {
  3945. "swac_text": "幸会!"
  3946. }
  3947. }
  3948. },
  3949. {
  3950. "_attributes": {
  3951. "path": "cmn-b7fb4495.ogg"
  3952. },
  3953. "tag": {
  3954. "_attributes": {
  3955. "swac_text": "音乐"
  3956. }
  3957. }
  3958. },
  3959. {
  3960. "_attributes": {
  3961. "path": "cmn-ba1505b1.ogg"
  3962. },
  3963. "tag": {
  3964. "_attributes": {
  3965. "swac_text": "灰"
  3966. }
  3967. }
  3968. },
  3969. {
  3970. "_attributes": {
  3971. "path": "cmn-ba3411b9.ogg"
  3972. },
  3973. "tag": {
  3974. "_attributes": {
  3975. "swac_text": "新闻界"
  3976. }
  3977. }
  3978. },
  3979. {
  3980. "_attributes": {
  3981. "path": "cmn-ba53df5c.ogg"
  3982. },
  3983. "tag": {
  3984. "_attributes": {
  3985. "swac_text": "天空"
  3986. }
  3987. }
  3988. },
  3989. {
  3990. "_attributes": {
  3991. "path": "cmn-badeae18.ogg"
  3992. },
  3993. "tag": {
  3994. "_attributes": {
  3995. "swac_text": "衣服"
  3996. }
  3997. }
  3998. },
  3999. {
  4000. "_attributes": {
  4001. "path": "cmn-bae652ce.ogg"
  4002. },
  4003. "tag": {
  4004. "_attributes": {
  4005. "swac_text": "忙"
  4006. }
  4007. }
  4008. },
  4009. {
  4010. "_attributes": {
  4011. "path": "cmn-bb077fb7.ogg"
  4012. },
  4013. "tag": {
  4014. "_attributes": {
  4015. "swac_text": "帮助"
  4016. }
  4017. }
  4018. },
  4019. {
  4020. "_attributes": {
  4021. "path": "cmn-bb85207c.ogg"
  4022. },
  4023. "tag": {
  4024. "_attributes": {
  4025. "swac_text": "自然"
  4026. }
  4027. }
  4028. },
  4029. {
  4030. "_attributes": {
  4031. "path": "cmn-bbcb0136.ogg"
  4032. },
  4033. "tag": {
  4034. "_attributes": {
  4035. "swac_text": "食物"
  4036. }
  4037. }
  4038. },
  4039. {
  4040. "_attributes": {
  4041. "path": "cmn-bc0ba076.ogg"
  4042. },
  4043. "tag": {
  4044. "_attributes": {
  4045. "swac_text": "源"
  4046. }
  4047. }
  4048. },
  4049. {
  4050. "_attributes": {
  4051. "path": "cmn-bcb51c12.ogg"
  4052. },
  4053. "tag": {
  4054. "_attributes": {
  4055. "swac_text": "很少"
  4056. }
  4057. }
  4058. },
  4059. {
  4060. "_attributes": {
  4061. "path": "cmn-bce549af.ogg"
  4062. },
  4063. "tag": {
  4064. "_attributes": {
  4065. "swac_text": "近"
  4066. }
  4067. }
  4068. },
  4069. {
  4070. "_attributes": {
  4071. "path": "cmn-bcec185b.ogg"
  4072. },
  4073. "tag": {
  4074. "_attributes": {
  4075. "swac_text": "洗"
  4076. }
  4077. }
  4078. },
  4079. {
  4080. "_attributes": {
  4081. "path": "cmn-bd238fb9.ogg"
  4082. },
  4083. "tag": {
  4084. "_attributes": {
  4085. "swac_text": "说"
  4086. }
  4087. }
  4088. },
  4089. {
  4090. "_attributes": {
  4091. "path": "cmn-bd343037.ogg"
  4092. },
  4093. "tag": {
  4094. "_attributes": {
  4095. "swac_text": "工业"
  4096. }
  4097. }
  4098. },
  4099. {
  4100. "_attributes": {
  4101. "path": "cmn-bd35add6.ogg"
  4102. },
  4103. "tag": {
  4104. "_attributes": {
  4105. "swac_text": "不客气"
  4106. }
  4107. }
  4108. },
  4109. {
  4110. "_attributes": {
  4111. "path": "cmn-bdea0ec9.ogg"
  4112. },
  4113. "tag": {
  4114. "_attributes": {
  4115. "swac_text": "商人"
  4116. }
  4117. }
  4118. },
  4119. {
  4120. "_attributes": {
  4121. "path": "cmn-be54eb10.ogg"
  4122. },
  4123. "tag": {
  4124. "_attributes": {
  4125. "swac_text": "新"
  4126. }
  4127. }
  4128. },
  4129. {
  4130. "_attributes": {
  4131. "path": "cmn-bec84800.ogg"
  4132. },
  4133. "tag": {
  4134. "_attributes": {
  4135. "swac_text": "爱情"
  4136. }
  4137. }
  4138. },
  4139. {
  4140. "_attributes": {
  4141. "path": "cmn-becdf535.ogg"
  4142. },
  4143. "tag": {
  4144. "_attributes": {
  4145. "swac_text": "早餐"
  4146. }
  4147. }
  4148. },
  4149. {
  4150. "_attributes": {
  4151. "path": "cmn-bf6f8597.ogg"
  4152. },
  4153. "tag": {
  4154. "_attributes": {
  4155. "swac_text": "大蒜"
  4156. }
  4157. }
  4158. },
  4159. {
  4160. "_attributes": {
  4161. "path": "cmn-bf7f053a.ogg"
  4162. },
  4163. "tag": {
  4164. "_attributes": {
  4165. "swac_text": "门"
  4166. }
  4167. }
  4168. },
  4169. {
  4170. "_attributes": {
  4171. "path": "cmn-bfd1492e.ogg"
  4172. },
  4173. "tag": {
  4174. "_attributes": {
  4175. "swac_text": "背包"
  4176. }
  4177. }
  4178. },
  4179. {
  4180. "_attributes": {
  4181. "path": "cmn-c0413511.ogg"
  4182. },
  4183. "tag": {
  4184. "_attributes": {
  4185. "swac_text": "机器"
  4186. }
  4187. }
  4188. },
  4189. {
  4190. "_attributes": {
  4191. "path": "cmn-c1661fb6.ogg"
  4192. },
  4193. "tag": {
  4194. "_attributes": {
  4195. "swac_text": "总统"
  4196. }
  4197. }
  4198. },
  4199. {
  4200. "_attributes": {
  4201. "path": "cmn-c19d8361.ogg"
  4202. },
  4203. "tag": {
  4204. "_attributes": {
  4205. "swac_text": "毛巾"
  4206. }
  4207. }
  4208. },
  4209. {
  4210. "_attributes": {
  4211. "path": "cmn-c2000967.ogg"
  4212. },
  4213. "tag": {
  4214. "_attributes": {
  4215. "swac_text": "节日"
  4216. }
  4217. }
  4218. },
  4219. {
  4220. "_attributes": {
  4221. "path": "cmn-c2050caa.ogg"
  4222. },
  4223. "tag": {
  4224. "_attributes": {
  4225. "swac_text": "手"
  4226. }
  4227. }
  4228. },
  4229. {
  4230. "_attributes": {
  4231. "path": "cmn-c2543512.ogg"
  4232. },
  4233. "tag": {
  4234. "_attributes": {
  4235. "swac_text": "远"
  4236. }
  4237. }
  4238. },
  4239. {
  4240. "_attributes": {
  4241. "path": "cmn-c3247291.ogg"
  4242. },
  4243. "tag": {
  4244. "_attributes": {
  4245. "swac_text": "早"
  4246. }
  4247. }
  4248. },
  4249. {
  4250. "_attributes": {
  4251. "path": "cmn-c3ecb5d3.ogg"
  4252. },
  4253. "tag": {
  4254. "_attributes": {
  4255. "swac_text": "公路"
  4256. }
  4257. }
  4258. },
  4259. {
  4260. "_attributes": {
  4261. "path": "cmn-c3f19193.ogg"
  4262. },
  4263. "tag": {
  4264. "_attributes": {
  4265. "swac_text": "边境"
  4266. }
  4267. }
  4268. },
  4269. {
  4270. "_attributes": {
  4271. "path": "cmn-c4403001.ogg"
  4272. },
  4273. "tag": {
  4274. "_attributes": {
  4275. "swac_text": "上面"
  4276. }
  4277. }
  4278. },
  4279. {
  4280. "_attributes": {
  4281. "path": "cmn-c482d6af.ogg"
  4282. },
  4283. "tag": {
  4284. "_attributes": {
  4285. "swac_text": "舌头"
  4286. }
  4287. }
  4288. },
  4289. {
  4290. "_attributes": {
  4291. "path": "cmn-c4d84efb.ogg"
  4292. },
  4293. "tag": {
  4294. "_attributes": {
  4295. "swac_text": "巧克力"
  4296. }
  4297. }
  4298. },
  4299. {
  4300. "_attributes": {
  4301. "path": "cmn-c539f10b.ogg"
  4302. },
  4303. "tag": {
  4304. "_attributes": {
  4305. "swac_text": "还"
  4306. }
  4307. }
  4308. },
  4309. {
  4310. "_attributes": {
  4311. "path": "cmn-c5619947.ogg"
  4312. },
  4313. "tag": {
  4314. "_attributes": {
  4315. "swac_text": "肉"
  4316. }
  4317. }
  4318. },
  4319. {
  4320. "_attributes": {
  4321. "path": "cmn-c6681ef0.ogg"
  4322. },
  4323. "tag": {
  4324. "_attributes": {
  4325. "swac_text": "咖啡"
  4326. }
  4327. }
  4328. },
  4329. {
  4330. "_attributes": {
  4331. "path": "cmn-c695dfbe.ogg"
  4332. },
  4333. "tag": {
  4334. "_attributes": {
  4335. "swac_text": "假的"
  4336. }
  4337. }
  4338. },
  4339. {
  4340. "_attributes": {
  4341. "path": "cmn-c7291b2e.ogg"
  4342. },
  4343. "tag": {
  4344. "_attributes": {
  4345. "swac_text": "卖"
  4346. }
  4347. }
  4348. },
  4349. {
  4350. "_attributes": {
  4351. "path": "cmn-c72adf2d.ogg"
  4352. },
  4353. "tag": {
  4354. "_attributes": {
  4355. "swac_text": "森林"
  4356. }
  4357. }
  4358. },
  4359. {
  4360. "_attributes": {
  4361. "path": "cmn-c73de59d.ogg"
  4362. },
  4363. "tag": {
  4364. "_attributes": {
  4365. "swac_text": "周二"
  4366. }
  4367. }
  4368. },
  4369. {
  4370. "_attributes": {
  4371. "path": "cmn-c791a68b.ogg"
  4372. },
  4373. "tag": {
  4374. "_attributes": {
  4375. "swac_text": "庙"
  4376. }
  4377. }
  4378. },
  4379. {
  4380. "_attributes": {
  4381. "path": "cmn-c79c0cb2.ogg"
  4382. },
  4383. "tag": {
  4384. "_attributes": {
  4385. "swac_text": "谢谢"
  4386. }
  4387. }
  4388. },
  4389. {
  4390. "_attributes": {
  4391. "path": "cmn-c7b89ccd.ogg"
  4392. },
  4393. "tag": {
  4394. "_attributes": {
  4395. "swac_text": "烟灰缸"
  4396. }
  4397. }
  4398. },
  4399. {
  4400. "_attributes": {
  4401. "path": "cmn-c7d47061.ogg"
  4402. },
  4403. "tag": {
  4404. "_attributes": {
  4405. "swac_text": "鼠"
  4406. }
  4407. }
  4408. },
  4409. {
  4410. "_attributes": {
  4411. "path": "cmn-c888448e.ogg"
  4412. },
  4413. "tag": {
  4414. "_attributes": {
  4415. "swac_text": "云"
  4416. }
  4417. }
  4418. },
  4419. {
  4420. "_attributes": {
  4421. "path": "cmn-c99e3a0d.ogg"
  4422. },
  4423. "tag": {
  4424. "_attributes": {
  4425. "swac_text": "喜欢"
  4426. }
  4427. }
  4428. },
  4429. {
  4430. "_attributes": {
  4431. "path": "cmn-c9aafb50.ogg"
  4432. },
  4433. "tag": {
  4434. "_attributes": {
  4435. "swac_text": "小"
  4436. }
  4437. }
  4438. },
  4439. {
  4440. "_attributes": {
  4441. "path": "cmn-c9b31f8e.ogg"
  4442. },
  4443. "tag": {
  4444. "_attributes": {
  4445. "swac_text": "周四"
  4446. }
  4447. }
  4448. },
  4449. {
  4450. "_attributes": {
  4451. "path": "cmn-c9c59b38.ogg"
  4452. },
  4453. "tag": {
  4454. "_attributes": {
  4455. "swac_text": "市场"
  4456. }
  4457. }
  4458. },
  4459. {
  4460. "_attributes": {
  4461. "path": "cmn-ca8a6a8f.ogg"
  4462. },
  4463. "tag": {
  4464. "_attributes": {
  4465. "swac_text": "粉红"
  4466. }
  4467. }
  4468. },
  4469. {
  4470. "_attributes": {
  4471. "path": "cmn-cad42298.ogg"
  4472. },
  4473. "tag": {
  4474. "_attributes": {
  4475. "swac_text": "电视机"
  4476. }
  4477. }
  4478. },
  4479. {
  4480. "_attributes": {
  4481. "path": "cmn-cb00388f.ogg"
  4482. },
  4483. "tag": {
  4484. "_attributes": {
  4485. "swac_text": "哪里?"
  4486. }
  4487. }
  4488. },
  4489. {
  4490. "_attributes": {
  4491. "path": "cmn-cbbfca64.ogg"
  4492. },
  4493. "tag": {
  4494. "_attributes": {
  4495. "swac_text": "电脑"
  4496. }
  4497. }
  4498. },
  4499. {
  4500. "_attributes": {
  4501. "path": "cmn-cbdd1a65.ogg"
  4502. },
  4503. "tag": {
  4504. "_attributes": {
  4505. "swac_text": "帐单"
  4506. }
  4507. }
  4508. },
  4509. {
  4510. "_attributes": {
  4511. "path": "cmn-cc01da5e.ogg"
  4512. },
  4513. "tag": {
  4514. "_attributes": {
  4515. "swac_text": "班级"
  4516. }
  4517. }
  4518. },
  4519. {
  4520. "_attributes": {
  4521. "path": "cmn-cc411d96.ogg"
  4522. },
  4523. "tag": {
  4524. "_attributes": {
  4525. "swac_text": "少女"
  4526. }
  4527. }
  4528. },
  4529. {
  4530. "_attributes": {
  4531. "path": "cmn-cc6bbd58.ogg"
  4532. },
  4533. "tag": {
  4534. "_attributes": {
  4535. "swac_text": "月亮"
  4536. }
  4537. }
  4538. },
  4539. {
  4540. "_attributes": {
  4541. "path": "cmn-cc915941.ogg"
  4542. },
  4543. "tag": {
  4544. "_attributes": {
  4545. "swac_text": "地板"
  4546. }
  4547. }
  4548. },
  4549. {
  4550. "_attributes": {
  4551. "path": "cmn-cd42829c.ogg"
  4552. },
  4553. "tag": {
  4554. "_attributes": {
  4555. "swac_text": "国王"
  4556. }
  4557. }
  4558. },
  4559. {
  4560. "_attributes": {
  4561. "path": "cmn-cecc3182.ogg"
  4562. },
  4563. "tag": {
  4564. "_attributes": {
  4565. "swac_text": "学生"
  4566. }
  4567. }
  4568. },
  4569. {
  4570. "_attributes": {
  4571. "path": "cmn-cf40642c.ogg"
  4572. },
  4573. "tag": {
  4574. "_attributes": {
  4575. "swac_text": "江"
  4576. }
  4577. }
  4578. },
  4579. {
  4580. "_attributes": {
  4581. "path": "cmn-cf626c9c.ogg"
  4582. },
  4583. "tag": {
  4584. "_attributes": {
  4585. "swac_text": "笔直"
  4586. }
  4587. }
  4588. },
  4589. {
  4590. "_attributes": {
  4591. "path": "cmn-cf806469.ogg"
  4592. },
  4593. "tag": {
  4594. "_attributes": {
  4595. "swac_text": "老师"
  4596. }
  4597. }
  4598. },
  4599. {
  4600. "_attributes": {
  4601. "path": "cmn-d01ebebb.ogg"
  4602. },
  4603. "tag": {
  4604. "_attributes": {
  4605. "swac_text": "西"
  4606. }
  4607. }
  4608. },
  4609. {
  4610. "_attributes": {
  4611. "path": "cmn-d0abdf37.ogg"
  4612. },
  4613. "tag": {
  4614. "_attributes": {
  4615. "swac_text": "饼干"
  4616. }
  4617. }
  4618. },
  4619. {
  4620. "_attributes": {
  4621. "path": "cmn-d0f3cb2b.ogg"
  4622. },
  4623. "tag": {
  4624. "_attributes": {
  4625. "swac_text": "农村"
  4626. }
  4627. }
  4628. },
  4629. {
  4630. "_attributes": {
  4631. "path": "cmn-d1060a43.ogg"
  4632. },
  4633. "tag": {
  4634. "_attributes": {
  4635. "swac_text": "蜜蜂"
  4636. }
  4637. }
  4638. },
  4639. {
  4640. "_attributes": {
  4641. "path": "cmn-d1879a9d.ogg"
  4642. },
  4643. "tag": {
  4644. "_attributes": {
  4645. "swac_text": "拿"
  4646. }
  4647. }
  4648. },
  4649. {
  4650. "_attributes": {
  4651. "path": "cmn-d18d0a8c.ogg"
  4652. },
  4653. "tag": {
  4654. "_attributes": {
  4655. "swac_text": "锅"
  4656. }
  4657. }
  4658. },
  4659. {
  4660. "_attributes": {
  4661. "path": "cmn-d1b6f4e4.ogg"
  4662. },
  4663. "tag": {
  4664. "_attributes": {
  4665. "swac_text": "哪个?"
  4666. }
  4667. }
  4668. },
  4669. {
  4670. "_attributes": {
  4671. "path": "cmn-d23e74ed.ogg"
  4672. },
  4673. "tag": {
  4674. "_attributes": {
  4675. "swac_text": "昨天"
  4676. }
  4677. }
  4678. },
  4679. {
  4680. "_attributes": {
  4681. "path": "cmn-d248b5c8.ogg"
  4682. },
  4683. "tag": {
  4684. "_attributes": {
  4685. "swac_text": "周六"
  4686. }
  4687. }
  4688. },
  4689. {
  4690. "_attributes": {
  4691. "path": "cmn-d26278e9.ogg"
  4692. },
  4693. "tag": {
  4694. "_attributes": {
  4695. "swac_text": "啤酒"
  4696. }
  4697. }
  4698. },
  4699. {
  4700. "_attributes": {
  4701. "path": "cmn-d2a5a3d3.ogg"
  4702. },
  4703. "tag": {
  4704. "_attributes": {
  4705. "swac_text": "年轻"
  4706. }
  4707. }
  4708. },
  4709. {
  4710. "_attributes": {
  4711. "path": "cmn-d2b184ff.ogg"
  4712. },
  4713. "tag": {
  4714. "_attributes": {
  4715. "swac_text": "大"
  4716. }
  4717. }
  4718. },
  4719. {
  4720. "_attributes": {
  4721. "path": "cmn-d37a8023.ogg"
  4722. },
  4723. "tag": {
  4724. "_attributes": {
  4725. "swac_text": "可能"
  4726. }
  4727. }
  4728. },
  4729. {
  4730. "_attributes": {
  4731. "path": "cmn-d37d4a1f.ogg"
  4732. },
  4733. "tag": {
  4734. "_attributes": {
  4735. "swac_text": "总理"
  4736. }
  4737. }
  4738. },
  4739. {
  4740. "_attributes": {
  4741. "path": "cmn-d4517dcb.ogg"
  4742. },
  4743. "tag": {
  4744. "_attributes": {
  4745. "swac_text": "周五"
  4746. }
  4747. }
  4748. },
  4749. {
  4750. "_attributes": {
  4751. "path": "cmn-d4782469.ogg"
  4752. },
  4753. "tag": {
  4754. "_attributes": {
  4755. "swac_text": "我来自法国"
  4756. }
  4757. }
  4758. },
  4759. {
  4760. "_attributes": {
  4761. "path": "cmn-d4bf85f3.ogg"
  4762. },
  4763. "tag": {
  4764. "_attributes": {
  4765. "swac_text": "鸡"
  4766. }
  4767. }
  4768. },
  4769. {
  4770. "_attributes": {
  4771. "path": "cmn-d51a2e2b.ogg"
  4772. },
  4773. "tag": {
  4774. "_attributes": {
  4775. "swac_text": "小麦"
  4776. }
  4777. }
  4778. },
  4779. {
  4780. "_attributes": {
  4781. "path": "cmn-d53c950f.ogg"
  4782. },
  4783. "tag": {
  4784. "_attributes": {
  4785. "swac_text": "宽"
  4786. }
  4787. }
  4788. },
  4789. {
  4790. "_attributes": {
  4791. "path": "cmn-d6094a88.ogg"
  4792. },
  4793. "tag": {
  4794. "_attributes": {
  4795. "swac_text": "留"
  4796. }
  4797. }
  4798. },
  4799. {
  4800. "_attributes": {
  4801. "path": "cmn-d617d273.ogg"
  4802. },
  4803. "tag": {
  4804. "_attributes": {
  4805. "swac_text": "你"
  4806. }
  4807. }
  4808. },
  4809. {
  4810. "_attributes": {
  4811. "path": "cmn-d655d467.ogg"
  4812. },
  4813. "tag": {
  4814. "_attributes": {
  4815. "swac_text": "未婚妻"
  4816. }
  4817. }
  4818. },
  4819. {
  4820. "_attributes": {
  4821. "path": "cmn-d6587330.ogg"
  4822. },
  4823. "tag": {
  4824. "_attributes": {
  4825. "swac_text": "风"
  4826. }
  4827. }
  4828. },
  4829. {
  4830. "_attributes": {
  4831. "path": "cmn-d6636e3e.ogg"
  4832. },
  4833. "tag": {
  4834. "_attributes": {
  4835. "swac_text": "猪肉"
  4836. }
  4837. }
  4838. },
  4839. {
  4840. "_attributes": {
  4841. "path": "cmn-d69afe2e.ogg"
  4842. },
  4843. "tag": {
  4844. "_attributes": {
  4845. "swac_text": "我不能"
  4846. }
  4847. }
  4848. },
  4849. {
  4850. "_attributes": {
  4851. "path": "cmn-d69fe0cb.ogg"
  4852. },
  4853. "tag": {
  4854. "_attributes": {
  4855. "swac_text": "报刊杂志"
  4856. }
  4857. }
  4858. },
  4859. {
  4860. "_attributes": {
  4861. "path": "cmn-d6b55b0c.ogg"
  4862. },
  4863. "tag": {
  4864. "_attributes": {
  4865. "swac_text": "河"
  4866. }
  4867. }
  4868. },
  4869. {
  4870. "_attributes": {
  4871. "path": "cmn-d78892c0.ogg"
  4872. },
  4873. "tag": {
  4874. "_attributes": {
  4875. "swac_text": "读书"
  4876. }
  4877. }
  4878. },
  4879. {
  4880. "_attributes": {
  4881. "path": "cmn-d8282389.ogg"
  4882. },
  4883. "tag": {
  4884. "_attributes": {
  4885. "swac_text": "姓"
  4886. }
  4887. }
  4888. },
  4889. {
  4890. "_attributes": {
  4891. "path": "cmn-d8a08338.ogg"
  4892. },
  4893. "tag": {
  4894. "_attributes": {
  4895. "swac_text": "剪刀"
  4896. }
  4897. }
  4898. },
  4899. {
  4900. "_attributes": {
  4901. "path": "cmn-d8b561c4.ogg"
  4902. },
  4903. "tag": {
  4904. "_attributes": {
  4905. "swac_text": "一星期"
  4906. }
  4907. }
  4908. },
  4909. {
  4910. "_attributes": {
  4911. "path": "cmn-d94be69c.ogg"
  4912. },
  4913. "tag": {
  4914. "_attributes": {
  4915. "swac_text": "黑"
  4916. }
  4917. }
  4918. },
  4919. {
  4920. "_attributes": {
  4921. "path": "cmn-d958f533.ogg"
  4922. },
  4923. "tag": {
  4924. "_attributes": {
  4925. "swac_text": "工会"
  4926. }
  4927. }
  4928. },
  4929. {
  4930. "_attributes": {
  4931. "path": "cmn-d99538c7.ogg"
  4932. },
  4933. "tag": {
  4934. "_attributes": {
  4935. "swac_text": "厕所"
  4936. }
  4937. }
  4938. },
  4939. {
  4940. "_attributes": {
  4941. "path": "cmn-da0de704.ogg"
  4942. },
  4943. "tag": {
  4944. "_attributes": {
  4945. "swac_text": "人民"
  4946. }
  4947. }
  4948. },
  4949. {
  4950. "_attributes": {
  4951. "path": "cmn-daaf8d73.ogg"
  4952. },
  4953. "tag": {
  4954. "_attributes": {
  4955. "swac_text": "出口"
  4956. }
  4957. }
  4958. },
  4959. {
  4960. "_attributes": {
  4961. "path": "cmn-dad564d4.ogg"
  4962. },
  4963. "tag": {
  4964. "_attributes": {
  4965. "swac_text": "银行"
  4966. }
  4967. }
  4968. },
  4969. {
  4970. "_attributes": {
  4971. "path": "cmn-db177a01.ogg"
  4972. },
  4973. "tag": {
  4974. "_attributes": {
  4975. "swac_text": "马铃薯"
  4976. }
  4977. }
  4978. },
  4979. {
  4980. "_attributes": {
  4981. "path": "cmn-db3ebedc.ogg"
  4982. },
  4983. "tag": {
  4984. "_attributes": {
  4985. "swac_text": "女人"
  4986. }
  4987. }
  4988. },
  4989. {
  4990. "_attributes": {
  4991. "path": "cmn-db4284cc.ogg"
  4992. },
  4993. "tag": {
  4994. "_attributes": {
  4995. "swac_text": "鼻子"
  4996. }
  4997. }
  4998. },
  4999. {
  5000. "_attributes": {
  5001. "path": "cmn-dc21e617.ogg"
  5002. },
  5003. "tag": {
  5004. "_attributes": {
  5005. "swac_text": "等"
  5006. }
  5007. }
  5008. },
  5009. {
  5010. "_attributes": {
  5011. "path": "cmn-dc7a3d3a.ogg"
  5012. },
  5013. "tag": {
  5014. "_attributes": {
  5015. "swac_text": "外公"
  5016. }
  5017. }
  5018. },
  5019. {
  5020. "_attributes": {
  5021. "path": "cmn-dcb76ded.ogg"
  5022. },
  5023. "tag": {
  5024. "_attributes": {
  5025. "swac_text": "军队"
  5026. }
  5027. }
  5028. },
  5029. {
  5030. "_attributes": {
  5031. "path": "cmn-dd0d7f8b.ogg"
  5032. },
  5033. "tag": {
  5034. "_attributes": {
  5035. "swac_text": "洋葱"
  5036. }
  5037. }
  5038. },
  5039. {
  5040. "_attributes": {
  5041. "path": "cmn-dd0e43a4.ogg"
  5042. },
  5043. "tag": {
  5044. "_attributes": {
  5045. "swac_text": "给"
  5046. }
  5047. }
  5048. },
  5049. {
  5050. "_attributes": {
  5051. "path": "cmn-de67c1ff.ogg"
  5052. },
  5053. "tag": {
  5054. "_attributes": {
  5055. "swac_text": "足够"
  5056. }
  5057. }
  5058. },
  5059. {
  5060. "_attributes": {
  5061. "path": "cmn-de7076f9.ogg"
  5062. },
  5063. "tag": {
  5064. "_attributes": {
  5065. "swac_text": "牛"
  5066. }
  5067. }
  5068. },
  5069. {
  5070. "_attributes": {
  5071. "path": "cmn-def37430.ogg"
  5072. },
  5073. "tag": {
  5074. "_attributes": {
  5075. "swac_text": "肥皂"
  5076. }
  5077. }
  5078. },
  5079. {
  5080. "_attributes": {
  5081. "path": "cmn-df98a532.ogg"
  5082. },
  5083. "tag": {
  5084. "_attributes": {
  5085. "swac_text": "桌子"
  5086. }
  5087. }
  5088. },
  5089. {
  5090. "_attributes": {
  5091. "path": "cmn-e0324d2a.ogg"
  5092. },
  5093. "tag": {
  5094. "_attributes": {
  5095. "swac_text": "前额"
  5096. }
  5097. }
  5098. },
  5099. {
  5100. "_attributes": {
  5101. "path": "cmn-e0369842.ogg"
  5102. },
  5103. "tag": {
  5104. "_attributes": {
  5105. "swac_text": "钥匙"
  5106. }
  5107. }
  5108. },
  5109. {
  5110. "_attributes": {
  5111. "path": "cmn-e1464daf.ogg"
  5112. },
  5113. "tag": {
  5114. "_attributes": {
  5115. "swac_text": "岛"
  5116. }
  5117. }
  5118. },
  5119. {
  5120. "_attributes": {
  5121. "path": "cmn-e1677cc4.ogg"
  5122. },
  5123. "tag": {
  5124. "_attributes": {
  5125. "swac_text": "房间"
  5126. }
  5127. }
  5128. },
  5129. {
  5130. "_attributes": {
  5131. "path": "cmn-e269671a.ogg"
  5132. },
  5133. "tag": {
  5134. "_attributes": {
  5135. "swac_text": "对不起!"
  5136. }
  5137. }
  5138. },
  5139. {
  5140. "_attributes": {
  5141. "path": "cmn-e2773e09.ogg"
  5142. },
  5143. "tag": {
  5144. "_attributes": {
  5145. "swac_text": "晚"
  5146. }
  5147. }
  5148. },
  5149. {
  5150. "_attributes": {
  5151. "path": "cmn-e2dbe54e.ogg"
  5152. },
  5153. "tag": {
  5154. "_attributes": {
  5155. "swac_text": "餐馆"
  5156. }
  5157. }
  5158. },
  5159. {
  5160. "_attributes": {
  5161. "path": "cmn-e3188fc0.ogg"
  5162. },
  5163. "tag": {
  5164. "_attributes": {
  5165. "swac_text": "想起"
  5166. }
  5167. }
  5168. },
  5169. {
  5170. "_attributes": {
  5171. "path": "cmn-e3631c1b.ogg"
  5172. },
  5173. "tag": {
  5174. "_attributes": {
  5175. "swac_text": "晚餐"
  5176. }
  5177. }
  5178. },
  5179. {
  5180. "_attributes": {
  5181. "path": "cmn-e3c94841.ogg"
  5182. },
  5183. "tag": {
  5184. "_attributes": {
  5185. "swac_text": "你好吗?"
  5186. }
  5187. }
  5188. },
  5189. {
  5190. "_attributes": {
  5191. "path": "cmn-e47af612.ogg"
  5192. },
  5193. "tag": {
  5194. "_attributes": {
  5195. "swac_text": "单独的"
  5196. }
  5197. }
  5198. },
  5199. {
  5200. "_attributes": {
  5201. "path": "cmn-e49f7587.ogg"
  5202. },
  5203. "tag": {
  5204. "_attributes": {
  5205. "swac_text": "下午"
  5206. }
  5207. }
  5208. },
  5209. {
  5210. "_attributes": {
  5211. "path": "cmn-e4e4c91d.ogg"
  5212. },
  5213. "tag": {
  5214. "_attributes": {
  5215. "swac_text": "这多少钱?"
  5216. }
  5217. }
  5218. },
  5219. {
  5220. "_attributes": {
  5221. "path": "cmn-e54b9f27.ogg"
  5222. },
  5223. "tag": {
  5224. "_attributes": {
  5225. "swac_text": "西红柿"
  5226. }
  5227. }
  5228. },
  5229. {
  5230. "_attributes": {
  5231. "path": "cmn-e57e29d1.ogg"
  5232. },
  5233. "tag": {
  5234. "_attributes": {
  5235. "swac_text": "健康"
  5236. }
  5237. }
  5238. },
  5239. {
  5240. "_attributes": {
  5241. "path": "cmn-e5f05850.ogg"
  5242. },
  5243. "tag": {
  5244. "_attributes": {
  5245. "swac_text": "狗"
  5246. }
  5247. }
  5248. },
  5249. {
  5250. "_attributes": {
  5251. "path": "cmn-e649ca73.ogg"
  5252. },
  5253. "tag": {
  5254. "_attributes": {
  5255. "swac_text": "舞蹈"
  5256. }
  5257. }
  5258. },
  5259. {
  5260. "_attributes": {
  5261. "path": "cmn-e667bbaf.ogg"
  5262. },
  5263. "tag": {
  5264. "_attributes": {
  5265. "swac_text": "教室"
  5266. }
  5267. }
  5268. },
  5269. {
  5270. "_attributes": {
  5271. "path": "cmn-e6f49383.ogg"
  5272. },
  5273. "tag": {
  5274. "_attributes": {
  5275. "swac_text": "环境"
  5276. }
  5277. }
  5278. },
  5279. {
  5280. "_attributes": {
  5281. "path": "cmn-e746b4c3.ogg"
  5282. },
  5283. "tag": {
  5284. "_attributes": {
  5285. "swac_text": "胡椒粉"
  5286. }
  5287. }
  5288. },
  5289. {
  5290. "_attributes": {
  5291. "path": "cmn-e79ae6d8.ogg"
  5292. },
  5293. "tag": {
  5294. "_attributes": {
  5295. "swac_text": "祖父"
  5296. }
  5297. }
  5298. },
  5299. {
  5300. "_attributes": {
  5301. "path": "cmn-e980a1bf.ogg"
  5302. },
  5303. "tag": {
  5304. "_attributes": {
  5305. "swac_text": "坏"
  5306. }
  5307. }
  5308. },
  5309. {
  5310. "_attributes": {
  5311. "path": "cmn-ea554c69.ogg"
  5312. },
  5313. "tag": {
  5314. "_attributes": {
  5315. "swac_text": "高"
  5316. }
  5317. }
  5318. },
  5319. {
  5320. "_attributes": {
  5321. "path": "cmn-eaac1d5e.ogg"
  5322. },
  5323. "tag": {
  5324. "_attributes": {
  5325. "swac_text": "你好!"
  5326. }
  5327. }
  5328. },
  5329. {
  5330. "_attributes": {
  5331. "path": "cmn-eb015e2b.ogg"
  5332. },
  5333. "tag": {
  5334. "_attributes": {
  5335. "swac_text": "翻译"
  5336. }
  5337. }
  5338. },
  5339. {
  5340. "_attributes": {
  5341. "path": "cmn-eb250bea.ogg"
  5342. },
  5343. "tag": {
  5344. "_attributes": {
  5345. "swac_text": "热"
  5346. }
  5347. }
  5348. },
  5349. {
  5350. "_attributes": {
  5351. "path": "cmn-eb533b19.ogg"
  5352. },
  5353. "tag": {
  5354. "_attributes": {
  5355. "swac_text": "女儿"
  5356. }
  5357. }
  5358. },
  5359. {
  5360. "_attributes": {
  5361. "path": "cmn-eb87e2a7.ogg"
  5362. },
  5363. "tag": {
  5364. "_attributes": {
  5365. "swac_text": "帘子"
  5366. }
  5367. }
  5368. },
  5369. {
  5370. "_attributes": {
  5371. "path": "cmn-ebb06b65.ogg"
  5372. },
  5373. "tag": {
  5374. "_attributes": {
  5375. "swac_text": "面包"
  5376. }
  5377. }
  5378. },
  5379. {
  5380. "_attributes": {
  5381. "path": "cmn-ebc61fe6.ogg"
  5382. },
  5383. "tag": {
  5384. "_attributes": {
  5385. "swac_text": "杏"
  5386. }
  5387. }
  5388. },
  5389. {
  5390. "_attributes": {
  5391. "path": "cmn-ebdf38e6.ogg"
  5392. },
  5393. "tag": {
  5394. "_attributes": {
  5395. "swac_text": "革命"
  5396. }
  5397. }
  5398. },
  5399. {
  5400. "_attributes": {
  5401. "path": "cmn-ec5b4d65.ogg"
  5402. },
  5403. "tag": {
  5404. "_attributes": {
  5405. "swac_text": "州"
  5406. }
  5407. }
  5408. },
  5409. {
  5410. "_attributes": {
  5411. "path": "cmn-ecd28e49.ogg"
  5412. },
  5413. "tag": {
  5414. "_attributes": {
  5415. "swac_text": "你说法语吗?"
  5416. }
  5417. }
  5418. },
  5419. {
  5420. "_attributes": {
  5421. "path": "cmn-ed8499f4.ogg"
  5422. },
  5423. "tag": {
  5424. "_attributes": {
  5425. "swac_text": "茶"
  5426. }
  5427. }
  5428. },
  5429. {
  5430. "_attributes": {
  5431. "path": "cmn-eda1b46a.ogg"
  5432. },
  5433. "tag": {
  5434. "_attributes": {
  5435. "swac_text": "难看"
  5436. }
  5437. }
  5438. },
  5439. {
  5440. "_attributes": {
  5441. "path": "cmn-ee878f13.ogg"
  5442. },
  5443. "tag": {
  5444. "_attributes": {
  5445. "swac_text": "一周"
  5446. }
  5447. }
  5448. },
  5449. {
  5450. "_attributes": {
  5451. "path": "cmn-ef8a7008.ogg"
  5452. },
  5453. "tag": {
  5454. "_attributes": {
  5455. "swac_text": "地图"
  5456. }
  5457. }
  5458. },
  5459. {
  5460. "_attributes": {
  5461. "path": "cmn-ef91cd5b.ogg"
  5462. },
  5463. "tag": {
  5464. "_attributes": {
  5465. "swac_text": "你们"
  5466. }
  5467. }
  5468. },
  5469. {
  5470. "_attributes": {
  5471. "path": "cmn-efeea5b1.ogg"
  5472. },
  5473. "tag": {
  5474. "_attributes": {
  5475. "swac_text": "进口"
  5476. }
  5477. }
  5478. },
  5479. {
  5480. "_attributes": {
  5481. "path": "cmn-f03e7445.ogg"
  5482. },
  5483. "tag": {
  5484. "_attributes": {
  5485. "swac_text": "病"
  5486. }
  5487. }
  5488. },
  5489. {
  5490. "_attributes": {
  5491. "path": "cmn-f0ae2b6f.ogg"
  5492. },
  5493. "tag": {
  5494. "_attributes": {
  5495. "swac_text": "晚上"
  5496. }
  5497. }
  5498. },
  5499. {
  5500. "_attributes": {
  5501. "path": "cmn-f0d991c4.ogg"
  5502. },
  5503. "tag": {
  5504. "_attributes": {
  5505. "swac_text": "农民"
  5506. }
  5507. }
  5508. },
  5509. {
  5510. "_attributes": {
  5511. "path": "cmn-f1d7bf08.ogg"
  5512. },
  5513. "tag": {
  5514. "_attributes": {
  5515. "swac_text": "房子"
  5516. }
  5517. }
  5518. },
  5519. {
  5520. "_attributes": {
  5521. "path": "cmn-f22be90d.ogg"
  5522. },
  5523. "tag": {
  5524. "_attributes": {
  5525. "swac_text": "袜子"
  5526. }
  5527. }
  5528. },
  5529. {
  5530. "_attributes": {
  5531. "path": "cmn-f2f18e7b.ogg"
  5532. },
  5533. "tag": {
  5534. "_attributes": {
  5535. "swac_text": "职业"
  5536. }
  5537. }
  5538. },
  5539. {
  5540. "_attributes": {
  5541. "path": "cmn-f37ec73e.ogg"
  5542. },
  5543. "tag": {
  5544. "_attributes": {
  5545. "swac_text": "皮肤"
  5546. }
  5547. }
  5548. },
  5549. {
  5550. "_attributes": {
  5551. "path": "cmn-f421ebd5.ogg"
  5552. },
  5553. "tag": {
  5554. "_attributes": {
  5555. "swac_text": "手帕"
  5556. }
  5557. }
  5558. },
  5559. {
  5560. "_attributes": {
  5561. "path": "cmn-f43c863b.ogg"
  5562. },
  5563. "tag": {
  5564. "_attributes": {
  5565. "swac_text": "外币兑换处"
  5566. }
  5567. }
  5568. },
  5569. {
  5570. "_attributes": {
  5571. "path": "cmn-f4ce910d.ogg"
  5572. },
  5573. "tag": {
  5574. "_attributes": {
  5575. "swac_text": "满"
  5576. }
  5577. }
  5578. },
  5579. {
  5580. "_attributes": {
  5581. "path": "cmn-f4d0f462.ogg"
  5582. },
  5583. "tag": {
  5584. "_attributes": {
  5585. "swac_text": "冰箱"
  5586. }
  5587. }
  5588. },
  5589. {
  5590. "_attributes": {
  5591. "path": "cmn-f5a0a9cd.ogg"
  5592. },
  5593. "tag": {
  5594. "_attributes": {
  5595. "swac_text": "开"
  5596. }
  5597. }
  5598. },
  5599. {
  5600. "_attributes": {
  5601. "path": "cmn-f5a77129.ogg"
  5602. },
  5603. "tag": {
  5604. "_attributes": {
  5605. "swac_text": "股市"
  5606. }
  5607. }
  5608. },
  5609. {
  5610. "_attributes": {
  5611. "path": "cmn-f6201037.ogg"
  5612. },
  5613. "tag": {
  5614. "_attributes": {
  5615. "swac_text": "平底锅"
  5616. }
  5617. }
  5618. },
  5619. {
  5620. "_attributes": {
  5621. "path": "cmn-f6269381.ogg"
  5622. },
  5623. "tag": {
  5624. "_attributes": {
  5625. "swac_text": "外国的"
  5626. }
  5627. }
  5628. },
  5629. {
  5630. "_attributes": {
  5631. "path": "cmn-f64ec914.ogg"
  5632. },
  5633. "tag": {
  5634. "_attributes": {
  5635. "swac_text": "眼睛"
  5636. }
  5637. }
  5638. },
  5639. {
  5640. "_attributes": {
  5641. "path": "cmn-f68df445.ogg"
  5642. },
  5643. "tag": {
  5644. "_attributes": {
  5645. "swac_text": "电影"
  5646. }
  5647. }
  5648. },
  5649. {
  5650. "_attributes": {
  5651. "path": "cmn-f7b919cd.ogg"
  5652. },
  5653. "tag": {
  5654. "_attributes": {
  5655. "swac_text": "再见!"
  5656. }
  5657. }
  5658. },
  5659. {
  5660. "_attributes": {
  5661. "path": "cmn-f895308f.ogg"
  5662. },
  5663. "tag": {
  5664. "_attributes": {
  5665. "swac_text": "裙子"
  5666. }
  5667. }
  5668. },
  5669. {
  5670. "_attributes": {
  5671. "path": "cmn-f8e02128.ogg"
  5672. },
  5673. "tag": {
  5674. "_attributes": {
  5675. "swac_text": "兔子"
  5676. }
  5677. }
  5678. },
  5679. {
  5680. "_attributes": {
  5681. "path": "cmn-f923075d.ogg"
  5682. },
  5683. "tag": {
  5684. "_attributes": {
  5685. "swac_text": "唱"
  5686. }
  5687. }
  5688. },
  5689. {
  5690. "_attributes": {
  5691. "path": "cmn-f9503eeb.ogg"
  5692. },
  5693. "tag": {
  5694. "_attributes": {
  5695. "swac_text": "红酒"
  5696. }
  5697. }
  5698. },
  5699. {
  5700. "_attributes": {
  5701. "path": "cmn-f98c73f7.ogg"
  5702. },
  5703. "tag": {
  5704. "_attributes": {
  5705. "swac_text": "老"
  5706. }
  5707. }
  5708. },
  5709. {
  5710. "_attributes": {
  5711. "path": "cmn-f9cd093c.ogg"
  5712. },
  5713. "tag": {
  5714. "_attributes": {
  5715. "swac_text": "喝"
  5716. }
  5717. }
  5718. },
  5719. {
  5720. "_attributes": {
  5721. "path": "cmn-f9d4a681.ogg"
  5722. },
  5723. "tag": {
  5724. "_attributes": {
  5725. "swac_text": "未婚夫"
  5726. }
  5727. }
  5728. },
  5729. {
  5730. "_attributes": {
  5731. "path": "cmn-f9d7da5e.ogg"
  5732. },
  5733. "tag": {
  5734. "_attributes": {
  5735. "swac_text": "马"
  5736. }
  5737. }
  5738. },
  5739. {
  5740. "_attributes": {
  5741. "path": "cmn-fa8457b4.ogg"
  5742. },
  5743. "tag": {
  5744. "_attributes": {
  5745. "swac_text": "樱桃"
  5746. }
  5747. }
  5748. },
  5749. {
  5750. "_attributes": {
  5751. "path": "cmn-fabe260c.ogg"
  5752. },
  5753. "tag": {
  5754. "_attributes": {
  5755. "swac_text": "丑"
  5756. }
  5757. }
  5758. },
  5759. {
  5760. "_attributes": {
  5761. "path": "cmn-fad410f3.ogg"
  5762. },
  5763. "tag": {
  5764. "_attributes": {
  5765. "swac_text": "裤子"
  5766. }
  5767. }
  5768. },
  5769. {
  5770. "_attributes": {
  5771. "path": "cmn-fb201a71.ogg"
  5772. },
  5773. "tag": {
  5774. "_attributes": {
  5775. "swac_text": "开始"
  5776. }
  5777. }
  5778. },
  5779. {
  5780. "_attributes": {
  5781. "path": "cmn-fba96a2c.ogg"
  5782. },
  5783. "tag": {
  5784. "_attributes": {
  5785. "swac_text": "芥末"
  5786. }
  5787. }
  5788. },
  5789. {
  5790. "_attributes": {
  5791. "path": "cmn-fc4d41ba.ogg"
  5792. },
  5793. "tag": {
  5794. "_attributes": {
  5795. "swac_text": "天花板"
  5796. }
  5797. }
  5798. },
  5799. {
  5800. "_attributes": {
  5801. "path": "cmn-fc5a62f8.ogg"
  5802. },
  5803. "tag": {
  5804. "_attributes": {
  5805. "swac_text": "米"
  5806. }
  5807. }
  5808. },
  5809. {
  5810. "_attributes": {
  5811. "path": "cmn-fc9097da.ogg"
  5812. },
  5813. "tag": {
  5814. "_attributes": {
  5815. "swac_text": "婚礼"
  5816. }
  5817. }
  5818. },
  5819. {
  5820. "_attributes": {
  5821. "path": "cmn-fcbdcb34.ogg"
  5822. },
  5823. "tag": {
  5824. "_attributes": {
  5825. "swac_text": "周一"
  5826. }
  5827. }
  5828. },
  5829. {
  5830. "_attributes": {
  5831. "path": "cmn-fd62cd9a.ogg"
  5832. },
  5833. "tag": {
  5834. "_attributes": {
  5835. "swac_text": "大衣"
  5836. }
  5837. }
  5838. },
  5839. {
  5840. "_attributes": {
  5841. "path": "cmn-fd819bd7.ogg"
  5842. },
  5843. "tag": {
  5844. "_attributes": {
  5845. "swac_text": "主席"
  5846. }
  5847. }
  5848. },
  5849. {
  5850. "_attributes": {
  5851. "path": "cmn-fdc42b1a.ogg"
  5852. },
  5853. "tag": {
  5854. "_attributes": {
  5855. "swac_text": "雪"
  5856. }
  5857. }
  5858. },
  5859. {
  5860. "_attributes": {
  5861. "path": "cmn-fdf8b2bf.ogg"
  5862. },
  5863. "tag": {
  5864. "_attributes": {
  5865. "swac_text": "听见"
  5866. }
  5867. }
  5868. },
  5869. {
  5870. "_attributes": {
  5871. "path": "cmn-fe05ce26.ogg"
  5872. },
  5873. "tag": {
  5874. "_attributes": {
  5875. "swac_text": "难"
  5876. }
  5877. }
  5878. },
  5879. {
  5880. "_attributes": {
  5881. "path": "cmn-fe49ae80.ogg"
  5882. },
  5883. "tag": {
  5884. "_attributes": {
  5885. "swac_text": "听"
  5886. }
  5887. }
  5888. },
  5889. {
  5890. "_attributes": {
  5891. "path": "cmn-ff2f7e4e.ogg"
  5892. },
  5893. "tag": {
  5894. "_attributes": {
  5895. "swac_text": "愿意"
  5896. }
  5897. }
  5898. },
  5899. {
  5900. "_attributes": {
  5901. "path": "cmn-ffbe8865.ogg"
  5902. },
  5903. "tag": {
  5904. "_attributes": {
  5905. "swac_text": "早饭"
  5906. }
  5907. }
  5908. }
  5909. ]
  5910. }
  5911. }
  5912. }