chi-balm.json 418 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032
  1. {
  2. "index": {
  3. "group": {
  4. "_attributes": {
  5. "swac_lang": "chi",
  6. "swac_speak_name": "Wei Gao",
  7. "swac_speak_gender": "M",
  8. "swac_speak_birth_year": "1979",
  9. "swac_speak_lang": "chi",
  10. "swac_speak_lang_country": "CH",
  11. "swac_speak_lang_region": "Pekin",
  12. "swac_speak_liv_country": "CH",
  13. "swac_speak_liv_town": "Pekin",
  14. "swac_pron_speed": "1",
  15. "swac_coll_name": "Base Audio Libre de Mots Chinois",
  16. "swac_coll_section": "HSK 1",
  17. "swac_coll_desc": "Cette collection est essentiellement destinée aux personnes étudiant le chinois comme langue étrangère ainsi qu'à la production de matériel pédagogique.",
  18. "swac_coll_org": "Shtooka Project",
  19. "swac_coll_org_url": "http://shtooka.net/",
  20. "swac_coll_license": "Creative Commons BY",
  21. "swac_coll_copyright": "Copyright© 2006 Wei Gao, Vion Nicolas",
  22. "swac_coll_authors": "Wei Gao, Vion Nicolas",
  23. "swac_coll_url": "http://shtooka.net/audio-base/chi/",
  24. "swac_tech_qlt": "4",
  25. "swac_tech_date": "2006-10-29",
  26. "swac_tech_soft": "Shtooka TB"
  27. },
  28. "file": [
  29. {
  30. "_attributes": {
  31. "path": "chi-00e89fc7.ogg"
  32. },
  33. "tag": {
  34. "_attributes": {
  35. "swac_text": "原来",
  36. "swac_alphaidx": "yuánlái",
  37. "swac_pron_phon": "yuánlái"
  38. }
  39. }
  40. },
  41. {
  42. "_attributes": {
  43. "path": "chi-00fa1443.ogg"
  44. },
  45. "tag": {
  46. "_attributes": {
  47. "swac_text": "英语",
  48. "swac_alphaidx": "yīngyǔ",
  49. "swac_pron_phon": "yīngyǔ"
  50. }
  51. }
  52. },
  53. {
  54. "_attributes": {
  55. "path": "chi-011050c3.ogg"
  56. },
  57. "tag": {
  58. "_attributes": {
  59. "swac_text": "青年",
  60. "swac_alphaidx": "qīngnián",
  61. "swac_pron_phon": "qīngnián"
  62. }
  63. }
  64. },
  65. {
  66. "_attributes": {
  67. "path": "chi-015113ae.ogg"
  68. },
  69. "tag": {
  70. "_attributes": {
  71. "swac_text": "哪",
  72. "swac_alphaidx": "nǎ",
  73. "swac_pron_phon": "nǎ"
  74. }
  75. }
  76. },
  77. {
  78. "_attributes": {
  79. "path": "chi-01c440ae.ogg"
  80. },
  81. "tag": {
  82. "_attributes": {
  83. "swac_text": "饭",
  84. "swac_alphaidx": "fàn",
  85. "swac_pron_phon": "fàn"
  86. }
  87. }
  88. },
  89. {
  90. "_attributes": {
  91. "path": "chi-01eda419.ogg"
  92. },
  93. "tag": {
  94. "_attributes": {
  95. "swac_text": "出",
  96. "swac_alphaidx": "chū",
  97. "swac_pron_phon": "chū"
  98. }
  99. }
  100. },
  101. {
  102. "_attributes": {
  103. "path": "chi-0227841a.ogg"
  104. },
  105. "tag": {
  106. "_attributes": {
  107. "swac_text": "上午",
  108. "swac_alphaidx": "shàngwǔ",
  109. "swac_pron_phon": "shàngwǔ"
  110. }
  111. }
  112. },
  113. {
  114. "_attributes": {
  115. "path": "chi-023eeafd.ogg"
  116. },
  117. "tag": {
  118. "_attributes": {
  119. "swac_text": "发现",
  120. "swac_alphaidx": "fāxiàn",
  121. "swac_pron_phon": "fāxiàn"
  122. }
  123. }
  124. },
  125. {
  126. "_attributes": {
  127. "path": "chi-02685fe8.ogg"
  128. },
  129. "tag": {
  130. "_attributes": {
  131. "swac_text": "阴",
  132. "swac_alphaidx": "yīn",
  133. "swac_pron_phon": "yīn"
  134. }
  135. }
  136. },
  137. {
  138. "_attributes": {
  139. "path": "chi-02920349.ogg"
  140. },
  141. "tag": {
  142. "_attributes": {
  143. "swac_text": "香",
  144. "swac_alphaidx": "xiāng",
  145. "swac_pron_phon": "xiāng"
  146. }
  147. }
  148. },
  149. {
  150. "_attributes": {
  151. "path": "chi-02a461a2.ogg"
  152. },
  153. "tag": {
  154. "_attributes": {
  155. "swac_text": "呢",
  156. "swac_alphaidx": "ne",
  157. "swac_pron_phon": "ne"
  158. }
  159. }
  160. },
  161. {
  162. "_attributes": {
  163. "path": "chi-02bc1e63.ogg"
  164. },
  165. "tag": {
  166. "_attributes": {
  167. "swac_text": "不久",
  168. "swac_alphaidx": "bùjiǔ",
  169. "swac_pron_phon": "bùjiǔ"
  170. }
  171. }
  172. },
  173. {
  174. "_attributes": {
  175. "path": "chi-0313c133.ogg"
  176. },
  177. "tag": {
  178. "_attributes": {
  179. "swac_text": "物理",
  180. "swac_alphaidx": "wùlǐ",
  181. "swac_pron_phon": "wùlǐ"
  182. }
  183. }
  184. },
  185. {
  186. "_attributes": {
  187. "path": "chi-034f5fee.ogg"
  188. },
  189. "tag": {
  190. "_attributes": {
  191. "swac_text": "工厂",
  192. "swac_alphaidx": "gōngchǎng",
  193. "swac_pron_phon": "gōngchǎng"
  194. }
  195. }
  196. },
  197. {
  198. "_attributes": {
  199. "path": "chi-0363a1a8.ogg"
  200. },
  201. "tag": {
  202. "_attributes": {
  203. "swac_text": "解决",
  204. "swac_alphaidx": "jiějué",
  205. "swac_pron_phon": "jiějué"
  206. }
  207. }
  208. },
  209. {
  210. "_attributes": {
  211. "path": "chi-0389e19f.ogg"
  212. },
  213. "tag": {
  214. "_attributes": {
  215. "swac_text": "药",
  216. "swac_alphaidx": "yào",
  217. "swac_pron_phon": "yào"
  218. }
  219. }
  220. },
  221. {
  222. "_attributes": {
  223. "path": "chi-038f39ee.ogg"
  224. },
  225. "tag": {
  226. "_attributes": {
  227. "swac_text": "劳动",
  228. "swac_alphaidx": "láodòng",
  229. "swac_pron_phon": "láodòng"
  230. }
  231. }
  232. },
  233. {
  234. "_attributes": {
  235. "path": "chi-039e6b3e.ogg"
  236. },
  237. "tag": {
  238. "_attributes": {
  239. "swac_text": "应该",
  240. "swac_alphaidx": "yīnggāi",
  241. "swac_pron_phon": "yīnggāi"
  242. }
  243. }
  244. },
  245. {
  246. "_attributes": {
  247. "path": "chi-03dbb630.ogg"
  248. },
  249. "tag": {
  250. "_attributes": {
  251. "swac_text": "文化",
  252. "swac_alphaidx": "wénhuà",
  253. "swac_pron_phon": "wénhuà"
  254. }
  255. }
  256. },
  257. {
  258. "_attributes": {
  259. "path": "chi-0478b7b0.ogg"
  260. },
  261. "tag": {
  262. "_attributes": {
  263. "swac_text": "今年",
  264. "swac_alphaidx": "jīnnián",
  265. "swac_pron_phon": "jīnnián"
  266. }
  267. }
  268. },
  269. {
  270. "_attributes": {
  271. "path": "chi-04c62a92.ogg"
  272. },
  273. "tag": {
  274. "_attributes": {
  275. "swac_text": "影响",
  276. "swac_alphaidx": "yǐngxiǎng",
  277. "swac_pron_phon": "yǐngxiǎng"
  278. }
  279. }
  280. },
  281. {
  282. "_attributes": {
  283. "path": "chi-04cbd366.ogg"
  284. },
  285. "tag": {
  286. "_attributes": {
  287. "swac_text": "最初",
  288. "swac_alphaidx": "zuìchū",
  289. "swac_pron_phon": "zuìchū"
  290. }
  291. }
  292. },
  293. {
  294. "_attributes": {
  295. "path": "chi-05d4c283.ogg"
  296. },
  297. "tag": {
  298. "_attributes": {
  299. "swac_text": "下边",
  300. "swac_alphaidx": "xiàbiān",
  301. "swac_pron_phon": "xiàbiān"
  302. }
  303. }
  304. },
  305. {
  306. "_attributes": {
  307. "path": "chi-05dec1b1.ogg"
  308. },
  309. "tag": {
  310. "_attributes": {
  311. "swac_text": "只",
  312. "swac_alphaidx": "zhī",
  313. "swac_pron_phon": "zhī"
  314. }
  315. }
  316. },
  317. {
  318. "_attributes": {
  319. "path": "chi-05f6dca6.ogg"
  320. },
  321. "tag": {
  322. "_attributes": {
  323. "swac_text": "出现",
  324. "swac_alphaidx": "chūxiàn",
  325. "swac_pron_phon": "chūxiàn"
  326. }
  327. }
  328. },
  329. {
  330. "_attributes": {
  331. "path": "chi-05fc2516.ogg"
  332. },
  333. "tag": {
  334. "_attributes": {
  335. "swac_text": "球",
  336. "swac_alphaidx": "qiú",
  337. "swac_pron_phon": "qiú"
  338. }
  339. }
  340. },
  341. {
  342. "_attributes": {
  343. "path": "chi-05ff8b24.ogg"
  344. },
  345. "tag": {
  346. "_attributes": {
  347. "swac_text": "文学",
  348. "swac_alphaidx": "wénxué",
  349. "swac_pron_phon": "wénxué"
  350. }
  351. }
  352. },
  353. {
  354. "_attributes": {
  355. "path": "chi-0602fc8e.ogg"
  356. },
  357. "tag": {
  358. "_attributes": {
  359. "swac_text": "难",
  360. "swac_alphaidx": "nán",
  361. "swac_pron_phon": "nán"
  362. }
  363. }
  364. },
  365. {
  366. "_attributes": {
  367. "path": "chi-06b476f7.ogg"
  368. },
  369. "tag": {
  370. "_attributes": {
  371. "swac_text": "早晨",
  372. "swac_alphaidx": "zǎochen",
  373. "swac_pron_phon": "zǎochen"
  374. }
  375. }
  376. },
  377. {
  378. "_attributes": {
  379. "path": "chi-06d2b5ce.ogg"
  380. },
  381. "tag": {
  382. "_attributes": {
  383. "swac_text": "关心",
  384. "swac_alphaidx": "guānxīn",
  385. "swac_pron_phon": "guānxīn"
  386. }
  387. }
  388. },
  389. {
  390. "_attributes": {
  391. "path": "chi-06f1bfed.ogg"
  392. },
  393. "tag": {
  394. "_attributes": {
  395. "swac_text": "读",
  396. "swac_alphaidx": "dú",
  397. "swac_pron_phon": "dú"
  398. }
  399. }
  400. },
  401. {
  402. "_attributes": {
  403. "path": "chi-074f155f.ogg"
  404. },
  405. "tag": {
  406. "_attributes": {
  407. "swac_text": "被",
  408. "swac_alphaidx": "bèi",
  409. "swac_pron_phon": "bèi"
  410. }
  411. }
  412. },
  413. {
  414. "_attributes": {
  415. "path": "chi-077aae57.ogg"
  416. },
  417. "tag": {
  418. "_attributes": {
  419. "swac_text": "跳",
  420. "swac_alphaidx": "tiào",
  421. "swac_pron_phon": "tiào"
  422. }
  423. }
  424. },
  425. {
  426. "_attributes": {
  427. "path": "chi-07b7e5f1.ogg"
  428. },
  429. "tag": {
  430. "_attributes": {
  431. "swac_text": "腿",
  432. "swac_alphaidx": "tuǐ",
  433. "swac_pron_phon": "tuǐ"
  434. }
  435. }
  436. },
  437. {
  438. "_attributes": {
  439. "path": "chi-07dc259a.ogg"
  440. },
  441. "tag": {
  442. "_attributes": {
  443. "swac_text": "牛奶",
  444. "swac_alphaidx": "niúnǎi",
  445. "swac_pron_phon": "niúnǎi"
  446. }
  447. }
  448. },
  449. {
  450. "_attributes": {
  451. "path": "chi-0833556b.ogg"
  452. },
  453. "tag": {
  454. "_attributes": {
  455. "swac_text": "号",
  456. "swac_alphaidx": "hào",
  457. "swac_pron_phon": "hào"
  458. }
  459. }
  460. },
  461. {
  462. "_attributes": {
  463. "path": "chi-0867146a.ogg"
  464. },
  465. "tag": {
  466. "_attributes": {
  467. "swac_text": "试",
  468. "swac_alphaidx": "shì",
  469. "swac_pron_phon": "shì"
  470. }
  471. }
  472. },
  473. {
  474. "_attributes": {
  475. "path": "chi-08781b5b.ogg"
  476. },
  477. "tag": {
  478. "_attributes": {
  479. "swac_text": "出租汽车",
  480. "swac_alphaidx": "chūzūqìchē",
  481. "swac_pron_phon": "chūzūqìchē"
  482. }
  483. }
  484. },
  485. {
  486. "_attributes": {
  487. "path": "chi-0a2a8ceb.ogg"
  488. },
  489. "tag": {
  490. "_attributes": {
  491. "swac_text": "看",
  492. "swac_alphaidx": "kàn",
  493. "swac_pron_phon": "kàn"
  494. }
  495. }
  496. },
  497. {
  498. "_attributes": {
  499. "path": "chi-0a3d9734.ogg"
  500. },
  501. "tag": {
  502. "_attributes": {
  503. "swac_text": "比较",
  504. "swac_alphaidx": "bǐjiào",
  505. "swac_pron_phon": "bǐjiào"
  506. }
  507. }
  508. },
  509. {
  510. "_attributes": {
  511. "path": "chi-0a65b736.ogg"
  512. },
  513. "tag": {
  514. "_attributes": {
  515. "swac_text": "丰富",
  516. "swac_alphaidx": "fēngfù",
  517. "swac_pron_phon": "fēngfù"
  518. }
  519. }
  520. },
  521. {
  522. "_attributes": {
  523. "path": "chi-0ad60165.ogg"
  524. },
  525. "tag": {
  526. "_attributes": {
  527. "swac_text": "篮球",
  528. "swac_alphaidx": "lánqiú",
  529. "swac_pron_phon": "lánqiú"
  530. }
  531. }
  532. },
  533. {
  534. "_attributes": {
  535. "path": "chi-0af1155b.ogg"
  536. },
  537. "tag": {
  538. "_attributes": {
  539. "swac_text": "数",
  540. "swac_alphaidx": "shǔ",
  541. "swac_pron_phon": "shǔ"
  542. }
  543. }
  544. },
  545. {
  546. "_attributes": {
  547. "path": "chi-0afa7a6d.ogg"
  548. },
  549. "tag": {
  550. "_attributes": {
  551. "swac_text": "红",
  552. "swac_alphaidx": "hóng",
  553. "swac_pron_phon": "hóng"
  554. }
  555. }
  556. },
  557. {
  558. "_attributes": {
  559. "path": "chi-0b1837b3.ogg"
  560. },
  561. "tag": {
  562. "_attributes": {
  563. "swac_text": "爱人",
  564. "swac_alphaidx": "àiren",
  565. "swac_pron_phon": "àiren"
  566. }
  567. }
  568. },
  569. {
  570. "_attributes": {
  571. "path": "chi-0b38b0a6.ogg"
  572. },
  573. "tag": {
  574. "_attributes": {
  575. "swac_text": "健康",
  576. "swac_alphaidx": "jiànkāng",
  577. "swac_pron_phon": "jiànkāng"
  578. }
  579. }
  580. },
  581. {
  582. "_attributes": {
  583. "path": "chi-0b3ff2f4.ogg"
  584. },
  585. "tag": {
  586. "_attributes": {
  587. "swac_text": "年轻",
  588. "swac_alphaidx": "niánqīng",
  589. "swac_pron_phon": "niánqīng"
  590. }
  591. }
  592. },
  593. {
  594. "_attributes": {
  595. "path": "chi-0b67227a.ogg"
  596. },
  597. "tag": {
  598. "_attributes": {
  599. "swac_text": "录音",
  600. "swac_alphaidx": "lùyīn",
  601. "swac_pron_phon": "lùyīn"
  602. }
  603. }
  604. },
  605. {
  606. "_attributes": {
  607. "path": "chi-0b919ae9.ogg"
  608. },
  609. "tag": {
  610. "_attributes": {
  611. "swac_text": "次",
  612. "swac_alphaidx": "cì",
  613. "swac_pron_phon": "cì"
  614. }
  615. }
  616. },
  617. {
  618. "_attributes": {
  619. "path": "chi-0bed37d2.ogg"
  620. },
  621. "tag": {
  622. "_attributes": {
  623. "swac_text": "上边",
  624. "swac_alphaidx": "shàngbiān",
  625. "swac_pron_phon": "shàngbiān"
  626. }
  627. }
  628. },
  629. {
  630. "_attributes": {
  631. "path": "chi-0c08ffe8.ogg"
  632. },
  633. "tag": {
  634. "_attributes": {
  635. "swac_text": "两",
  636. "swac_alphaidx": "liǎng",
  637. "swac_pron_phon": "liǎng"
  638. }
  639. }
  640. },
  641. {
  642. "_attributes": {
  643. "path": "chi-0c67a387.ogg"
  644. },
  645. "tag": {
  646. "_attributes": {
  647. "swac_text": "请",
  648. "swac_alphaidx": "qǐng",
  649. "swac_pron_phon": "qǐng"
  650. }
  651. }
  652. },
  653. {
  654. "_attributes": {
  655. "path": "chi-0c6a253a.ogg"
  656. },
  657. "tag": {
  658. "_attributes": {
  659. "swac_text": "活动",
  660. "swac_alphaidx": "huódòng",
  661. "swac_pron_phon": "huódòng"
  662. }
  663. }
  664. },
  665. {
  666. "_attributes": {
  667. "path": "chi-0cc42a99.ogg"
  668. },
  669. "tag": {
  670. "_attributes": {
  671. "swac_text": "新年",
  672. "swac_alphaidx": "xīnnián",
  673. "swac_pron_phon": "xīnnián"
  674. }
  675. }
  676. },
  677. {
  678. "_attributes": {
  679. "path": "chi-0d09e547.ogg"
  680. },
  681. "tag": {
  682. "_attributes": {
  683. "swac_text": "起来",
  684. "swac_alphaidx": "qǐlái",
  685. "swac_pron_phon": "qǐlái"
  686. }
  687. }
  688. },
  689. {
  690. "_attributes": {
  691. "path": "chi-0d1f52a9.ogg"
  692. },
  693. "tag": {
  694. "_attributes": {
  695. "swac_text": "礼物",
  696. "swac_alphaidx": "lǐwù",
  697. "swac_pron_phon": "lǐwù"
  698. }
  699. }
  700. },
  701. {
  702. "_attributes": {
  703. "path": "chi-0d37aee9.ogg"
  704. },
  705. "tag": {
  706. "_attributes": {
  707. "swac_text": "跳舞",
  708. "swac_alphaidx": "tiàowǔ",
  709. "swac_pron_phon": "tiàowǔ"
  710. }
  711. }
  712. },
  713. {
  714. "_attributes": {
  715. "path": "chi-0dd7fcdf.ogg"
  716. },
  717. "tag": {
  718. "_attributes": {
  719. "swac_text": "间",
  720. "swac_alphaidx": "jiān",
  721. "swac_pron_phon": "jiān"
  722. }
  723. }
  724. },
  725. {
  726. "_attributes": {
  727. "path": "chi-0ddbf6b4.ogg"
  728. },
  729. "tag": {
  730. "_attributes": {
  731. "swac_text": "因为",
  732. "swac_alphaidx": "yīnwèi",
  733. "swac_pron_phon": "yīnwèi"
  734. }
  735. }
  736. },
  737. {
  738. "_attributes": {
  739. "path": "chi-0e3ba523.ogg"
  740. },
  741. "tag": {
  742. "_attributes": {
  743. "swac_text": "喝",
  744. "swac_alphaidx": "hē",
  745. "swac_pron_phon": "hē"
  746. }
  747. }
  748. },
  749. {
  750. "_attributes": {
  751. "path": "chi-0e8f371b.ogg"
  752. },
  753. "tag": {
  754. "_attributes": {
  755. "swac_text": "亮",
  756. "swac_alphaidx": "liàng",
  757. "swac_pron_phon": "liàng"
  758. }
  759. }
  760. },
  761. {
  762. "_attributes": {
  763. "path": "chi-0ec80504.ogg"
  764. },
  765. "tag": {
  766. "_attributes": {
  767. "swac_text": "带",
  768. "swac_alphaidx": "dài",
  769. "swac_pron_phon": "dài"
  770. }
  771. }
  772. },
  773. {
  774. "_attributes": {
  775. "path": "chi-0fa15844.ogg"
  776. },
  777. "tag": {
  778. "_attributes": {
  779. "swac_text": "不同",
  780. "swac_alphaidx": "bùtóng",
  781. "swac_pron_phon": "bùtóng"
  782. }
  783. }
  784. },
  785. {
  786. "_attributes": {
  787. "path": "chi-102de6bc.ogg"
  788. },
  789. "tag": {
  790. "_attributes": {
  791. "swac_text": "过",
  792. "swac_alphaidx": "guò",
  793. "swac_pron_phon": "guò"
  794. }
  795. }
  796. },
  797. {
  798. "_attributes": {
  799. "path": "chi-10453b34.ogg"
  800. },
  801. "tag": {
  802. "_attributes": {
  803. "swac_text": "牛",
  804. "swac_alphaidx": "niú",
  805. "swac_pron_phon": "niú"
  806. }
  807. }
  808. },
  809. {
  810. "_attributes": {
  811. "path": "chi-106a239a.ogg"
  812. },
  813. "tag": {
  814. "_attributes": {
  815. "swac_text": "这里",
  816. "swac_alphaidx": "zhèli",
  817. "swac_pron_phon": "zhèli"
  818. }
  819. }
  820. },
  821. {
  822. "_attributes": {
  823. "path": "chi-10a38ade.ogg"
  824. },
  825. "tag": {
  826. "_attributes": {
  827. "swac_text": "嘴",
  828. "swac_alphaidx": "zuǐ",
  829. "swac_pron_phon": "zuǐ"
  830. }
  831. }
  832. },
  833. {
  834. "_attributes": {
  835. "path": "chi-1116eff7.ogg"
  836. },
  837. "tag": {
  838. "_attributes": {
  839. "swac_text": "书",
  840. "swac_alphaidx": "shū",
  841. "swac_pron_phon": "shū"
  842. }
  843. }
  844. },
  845. {
  846. "_attributes": {
  847. "path": "chi-1144872b.ogg"
  848. },
  849. "tag": {
  850. "_attributes": {
  851. "swac_text": "有",
  852. "swac_alphaidx": "yǒu",
  853. "swac_pron_phon": "yǒu"
  854. }
  855. }
  856. },
  857. {
  858. "_attributes": {
  859. "path": "chi-11ca5549.ogg"
  860. },
  861. "tag": {
  862. "_attributes": {
  863. "swac_text": "忙",
  864. "swac_alphaidx": "máng",
  865. "swac_pron_phon": "máng"
  866. }
  867. }
  868. },
  869. {
  870. "_attributes": {
  871. "path": "chi-11e215d3.ogg"
  872. },
  873. "tag": {
  874. "_attributes": {
  875. "swac_text": "春",
  876. "swac_alphaidx": "chūn",
  877. "swac_pron_phon": "chūn"
  878. }
  879. }
  880. },
  881. {
  882. "_attributes": {
  883. "path": "chi-11e9c2db.ogg"
  884. },
  885. "tag": {
  886. "_attributes": {
  887. "swac_text": "我们",
  888. "swac_alphaidx": "wǒmen",
  889. "swac_pron_phon": "wǒmen"
  890. }
  891. }
  892. },
  893. {
  894. "_attributes": {
  895. "path": "chi-121bea56.ogg"
  896. },
  897. "tag": {
  898. "_attributes": {
  899. "swac_text": "学院",
  900. "swac_alphaidx": "xuéyuàn",
  901. "swac_pron_phon": "xuéyuàn"
  902. }
  903. }
  904. },
  905. {
  906. "_attributes": {
  907. "path": "chi-12566223.ogg"
  908. },
  909. "tag": {
  910. "_attributes": {
  911. "swac_text": "许多",
  912. "swac_alphaidx": "xǔduō",
  913. "swac_pron_phon": "xǔduō"
  914. }
  915. }
  916. },
  917. {
  918. "_attributes": {
  919. "path": "chi-135c09c4.ogg"
  920. },
  921. "tag": {
  922. "_attributes": {
  923. "swac_text": "那些",
  924. "swac_alphaidx": "nàxiē",
  925. "swac_pron_phon": "nàxiē"
  926. }
  927. }
  928. },
  929. {
  930. "_attributes": {
  931. "path": "chi-139e9dbb.ogg"
  932. },
  933. "tag": {
  934. "_attributes": {
  935. "swac_text": "时间",
  936. "swac_alphaidx": "shíjiān",
  937. "swac_pron_phon": "shíjiān"
  938. }
  939. }
  940. },
  941. {
  942. "_attributes": {
  943. "path": "chi-13ba5975.ogg"
  944. },
  945. "tag": {
  946. "_attributes": {
  947. "swac_text": "城",
  948. "swac_alphaidx": "chéng",
  949. "swac_pron_phon": "chéng"
  950. }
  951. }
  952. },
  953. {
  954. "_attributes": {
  955. "path": "chi-13ee041f.ogg"
  956. },
  957. "tag": {
  958. "_attributes": {
  959. "swac_text": "外边",
  960. "swac_alphaidx": "wàibiān",
  961. "swac_pron_phon": "wàibiān"
  962. }
  963. }
  964. },
  965. {
  966. "_attributes": {
  967. "path": "chi-146cee5c.ogg"
  968. },
  969. "tag": {
  970. "_attributes": {
  971. "swac_text": "年纪",
  972. "swac_alphaidx": "niánjì",
  973. "swac_pron_phon": "niánjì"
  974. }
  975. }
  976. },
  977. {
  978. "_attributes": {
  979. "path": "chi-15064dc6.ogg"
  980. },
  981. "tag": {
  982. "_attributes": {
  983. "swac_text": "碰",
  984. "swac_alphaidx": "pèng",
  985. "swac_pron_phon": "pèng"
  986. }
  987. }
  988. },
  989. {
  990. "_attributes": {
  991. "path": "chi-153ed9e6.ogg"
  992. },
  993. "tag": {
  994. "_attributes": {
  995. "swac_text": "晴",
  996. "swac_alphaidx": "qíng",
  997. "swac_pron_phon": "qíng"
  998. }
  999. }
  1000. },
  1001. {
  1002. "_attributes": {
  1003. "path": "chi-159dce10.ogg"
  1004. },
  1005. "tag": {
  1006. "_attributes": {
  1007. "swac_text": "倍",
  1008. "swac_alphaidx": "bèi",
  1009. "swac_pron_phon": "bèi"
  1010. }
  1011. }
  1012. },
  1013. {
  1014. "_attributes": {
  1015. "path": "chi-15fd9513.ogg"
  1016. },
  1017. "tag": {
  1018. "_attributes": {
  1019. "swac_text": "元",
  1020. "swac_alphaidx": "yuán",
  1021. "swac_pron_phon": "yuán"
  1022. }
  1023. }
  1024. },
  1025. {
  1026. "_attributes": {
  1027. "path": "chi-16354733.ogg"
  1028. },
  1029. "tag": {
  1030. "_attributes": {
  1031. "swac_text": "发",
  1032. "swac_alphaidx": "fā",
  1033. "swac_pron_phon": "fā"
  1034. }
  1035. }
  1036. },
  1037. {
  1038. "_attributes": {
  1039. "path": "chi-16d9a013.ogg"
  1040. },
  1041. "tag": {
  1042. "_attributes": {
  1043. "swac_text": "留念",
  1044. "swac_alphaidx": "liúniàn",
  1045. "swac_pron_phon": "liúniàn"
  1046. }
  1047. }
  1048. },
  1049. {
  1050. "_attributes": {
  1051. "path": "chi-17a1670c.ogg"
  1052. },
  1053. "tag": {
  1054. "_attributes": {
  1055. "swac_text": "身体",
  1056. "swac_alphaidx": "shēntǐ",
  1057. "swac_pron_phon": "shēntǐ"
  1058. }
  1059. }
  1060. },
  1061. {
  1062. "_attributes": {
  1063. "path": "chi-17aa6f2a.ogg"
  1064. },
  1065. "tag": {
  1066. "_attributes": {
  1067. "swac_text": "毛",
  1068. "swac_alphaidx": "máo",
  1069. "swac_pron_phon": "máo"
  1070. }
  1071. }
  1072. },
  1073. {
  1074. "_attributes": {
  1075. "path": "chi-17ca710e.ogg"
  1076. },
  1077. "tag": {
  1078. "_attributes": {
  1079. "swac_text": "回来",
  1080. "swac_alphaidx": "huílái",
  1081. "swac_pron_phon": "huílái"
  1082. }
  1083. }
  1084. },
  1085. {
  1086. "_attributes": {
  1087. "path": "chi-17ede02e.ogg"
  1088. },
  1089. "tag": {
  1090. "_attributes": {
  1091. "swac_text": "刀",
  1092. "swac_alphaidx": "dāo",
  1093. "swac_pron_phon": "dāo"
  1094. }
  1095. }
  1096. },
  1097. {
  1098. "_attributes": {
  1099. "path": "chi-18981d0a.ogg"
  1100. },
  1101. "tag": {
  1102. "_attributes": {
  1103. "swac_text": "大家",
  1104. "swac_alphaidx": "dàjiā",
  1105. "swac_pron_phon": "dàjiā"
  1106. }
  1107. }
  1108. },
  1109. {
  1110. "_attributes": {
  1111. "path": "chi-18f3bc61.ogg"
  1112. },
  1113. "tag": {
  1114. "_attributes": {
  1115. "swac_text": "天气",
  1116. "swac_alphaidx": "tiānqì",
  1117. "swac_pron_phon": "tiānqì"
  1118. }
  1119. }
  1120. },
  1121. {
  1122. "_attributes": {
  1123. "path": "chi-195ba5c0.ogg"
  1124. },
  1125. "tag": {
  1126. "_attributes": {
  1127. "swac_text": "认为",
  1128. "swac_alphaidx": "rènwéi",
  1129. "swac_pron_phon": "rènwéi"
  1130. }
  1131. }
  1132. },
  1133. {
  1134. "_attributes": {
  1135. "path": "chi-19d26513.ogg"
  1136. },
  1137. "tag": {
  1138. "_attributes": {
  1139. "swac_text": "房间",
  1140. "swac_alphaidx": "fángjiān",
  1141. "swac_pron_phon": "fángjiān"
  1142. }
  1143. }
  1144. },
  1145. {
  1146. "_attributes": {
  1147. "path": "chi-19d28c1b.ogg"
  1148. },
  1149. "tag": {
  1150. "_attributes": {
  1151. "swac_text": "岁",
  1152. "swac_alphaidx": "suì",
  1153. "swac_pron_phon": "suì"
  1154. }
  1155. }
  1156. },
  1157. {
  1158. "_attributes": {
  1159. "path": "chi-1a0a4c20.ogg"
  1160. },
  1161. "tag": {
  1162. "_attributes": {
  1163. "swac_text": "友好",
  1164. "swac_alphaidx": "yǒuhǎo",
  1165. "swac_pron_phon": "yǒuhǎo"
  1166. }
  1167. }
  1168. },
  1169. {
  1170. "_attributes": {
  1171. "path": "chi-1a3248b2.ogg"
  1172. },
  1173. "tag": {
  1174. "_attributes": {
  1175. "swac_text": "车站",
  1176. "swac_alphaidx": "chēzhàn",
  1177. "swac_pron_phon": "chēzhàn"
  1178. }
  1179. }
  1180. },
  1181. {
  1182. "_attributes": {
  1183. "path": "chi-1a6bf310.ogg"
  1184. },
  1185. "tag": {
  1186. "_attributes": {
  1187. "swac_text": "挺",
  1188. "swac_alphaidx": "tǐng",
  1189. "swac_pron_phon": "tǐng"
  1190. }
  1191. }
  1192. },
  1193. {
  1194. "_attributes": {
  1195. "path": "chi-1af20553.ogg"
  1196. },
  1197. "tag": {
  1198. "_attributes": {
  1199. "swac_text": "负责",
  1200. "swac_alphaidx": "fùzé",
  1201. "swac_pron_phon": "fùzé"
  1202. }
  1203. }
  1204. },
  1205. {
  1206. "_attributes": {
  1207. "path": "chi-1b127b81.ogg"
  1208. },
  1209. "tag": {
  1210. "_attributes": {
  1211. "swac_text": "准备",
  1212. "swac_alphaidx": "zhǔnbèi",
  1213. "swac_pron_phon": "zhǔnbèi"
  1214. }
  1215. }
  1216. },
  1217. {
  1218. "_attributes": {
  1219. "path": "chi-1b186193.ogg"
  1220. },
  1221. "tag": {
  1222. "_attributes": {
  1223. "swac_text": "下",
  1224. "swac_alphaidx": "xià",
  1225. "swac_pron_phon": "xià"
  1226. }
  1227. }
  1228. },
  1229. {
  1230. "_attributes": {
  1231. "path": "chi-1b3df0fa.ogg"
  1232. },
  1233. "tag": {
  1234. "_attributes": {
  1235. "swac_text": "人",
  1236. "swac_alphaidx": "rén",
  1237. "swac_pron_phon": "rén"
  1238. }
  1239. }
  1240. },
  1241. {
  1242. "_attributes": {
  1243. "path": "chi-1b57d83a.ogg"
  1244. },
  1245. "tag": {
  1246. "_attributes": {
  1247. "swac_text": "念",
  1248. "swac_alphaidx": "niàn",
  1249. "swac_pron_phon": "niàn"
  1250. }
  1251. }
  1252. },
  1253. {
  1254. "_attributes": {
  1255. "path": "chi-1b7f9fc0.ogg"
  1256. },
  1257. "tag": {
  1258. "_attributes": {
  1259. "swac_text": "作",
  1260. "swac_alphaidx": "zuò",
  1261. "swac_pron_phon": "zuò"
  1262. }
  1263. }
  1264. },
  1265. {
  1266. "_attributes": {
  1267. "path": "chi-1b854c9d.ogg"
  1268. },
  1269. "tag": {
  1270. "_attributes": {
  1271. "swac_text": "让",
  1272. "swac_alphaidx": "ràng",
  1273. "swac_pron_phon": "ràng"
  1274. }
  1275. }
  1276. },
  1277. {
  1278. "_attributes": {
  1279. "path": "chi-1baf3134.ogg"
  1280. },
  1281. "tag": {
  1282. "_attributes": {
  1283. "swac_text": "虽然",
  1284. "swac_alphaidx": "suīrán",
  1285. "swac_pron_phon": "suīrán"
  1286. }
  1287. }
  1288. },
  1289. {
  1290. "_attributes": {
  1291. "path": "chi-1c85601d.ogg"
  1292. },
  1293. "tag": {
  1294. "_attributes": {
  1295. "swac_text": "散步",
  1296. "swac_alphaidx": "sànbù",
  1297. "swac_pron_phon": "sànbù"
  1298. }
  1299. }
  1300. },
  1301. {
  1302. "_attributes": {
  1303. "path": "chi-1c9b1e15.ogg"
  1304. },
  1305. "tag": {
  1306. "_attributes": {
  1307. "swac_text": "日子",
  1308. "swac_alphaidx": "rìzi",
  1309. "swac_pron_phon": "rìzi"
  1310. }
  1311. }
  1312. },
  1313. {
  1314. "_attributes": {
  1315. "path": "chi-1ccd9547.ogg"
  1316. },
  1317. "tag": {
  1318. "_attributes": {
  1319. "swac_text": "馆",
  1320. "swac_alphaidx": "guǎn",
  1321. "swac_pron_phon": "guǎn"
  1322. }
  1323. }
  1324. },
  1325. {
  1326. "_attributes": {
  1327. "path": "chi-1d11065e.ogg"
  1328. },
  1329. "tag": {
  1330. "_attributes": {
  1331. "swac_text": "住",
  1332. "swac_alphaidx": "zhù",
  1333. "swac_pron_phon": "zhù"
  1334. }
  1335. }
  1336. },
  1337. {
  1338. "_attributes": {
  1339. "path": "chi-1d48c3f8.ogg"
  1340. },
  1341. "tag": {
  1342. "_attributes": {
  1343. "swac_text": "行",
  1344. "swac_alphaidx": "xíng",
  1345. "swac_pron_phon": "xíng"
  1346. }
  1347. }
  1348. },
  1349. {
  1350. "_attributes": {
  1351. "path": "chi-1d4fdd2e.ogg"
  1352. },
  1353. "tag": {
  1354. "_attributes": {
  1355. "swac_text": "早",
  1356. "swac_alphaidx": "zǎo",
  1357. "swac_pron_phon": "zǎo"
  1358. }
  1359. }
  1360. },
  1361. {
  1362. "_attributes": {
  1363. "path": "chi-1dd1941a.ogg"
  1364. },
  1365. "tag": {
  1366. "_attributes": {
  1367. "swac_text": "母亲",
  1368. "swac_alphaidx": "mǔqīn",
  1369. "swac_pron_phon": "mǔqīn"
  1370. }
  1371. }
  1372. },
  1373. {
  1374. "_attributes": {
  1375. "path": "chi-1de9d04c.ogg"
  1376. },
  1377. "tag": {
  1378. "_attributes": {
  1379. "swac_text": "树",
  1380. "swac_alphaidx": "shù",
  1381. "swac_pron_phon": "shù"
  1382. }
  1383. }
  1384. },
  1385. {
  1386. "_attributes": {
  1387. "path": "chi-1dec952f.ogg"
  1388. },
  1389. "tag": {
  1390. "_attributes": {
  1391. "swac_text": "一般",
  1392. "swac_alphaidx": "yìbān",
  1393. "swac_pron_phon": "yìbān"
  1394. }
  1395. }
  1396. },
  1397. {
  1398. "_attributes": {
  1399. "path": "chi-1e348142.ogg"
  1400. },
  1401. "tag": {
  1402. "_attributes": {
  1403. "swac_text": "用",
  1404. "swac_alphaidx": "yòng",
  1405. "swac_pron_phon": "yòng"
  1406. }
  1407. }
  1408. },
  1409. {
  1410. "_attributes": {
  1411. "path": "chi-1e5022a5.ogg"
  1412. },
  1413. "tag": {
  1414. "_attributes": {
  1415. "swac_text": "汉字",
  1416. "swac_alphaidx": "hànzì",
  1417. "swac_pron_phon": "hànzì"
  1418. }
  1419. }
  1420. },
  1421. {
  1422. "_attributes": {
  1423. "path": "chi-1e5f0f3c.ogg"
  1424. },
  1425. "tag": {
  1426. "_attributes": {
  1427. "swac_text": "精神",
  1428. "swac_alphaidx": "jīngshén",
  1429. "swac_pron_phon": "jīngshén"
  1430. }
  1431. }
  1432. },
  1433. {
  1434. "_attributes": {
  1435. "path": "chi-1fafdba2.ogg"
  1436. },
  1437. "tag": {
  1438. "_attributes": {
  1439. "swac_text": "特别",
  1440. "swac_alphaidx": "tèbié",
  1441. "swac_pron_phon": "tèbié"
  1442. }
  1443. }
  1444. },
  1445. {
  1446. "_attributes": {
  1447. "path": "chi-202aaae2.ogg"
  1448. },
  1449. "tag": {
  1450. "_attributes": {
  1451. "swac_text": "听说",
  1452. "swac_alphaidx": "tīngshuō",
  1453. "swac_pron_phon": "tīngshuō"
  1454. }
  1455. }
  1456. },
  1457. {
  1458. "_attributes": {
  1459. "path": "chi-20810648.ogg"
  1460. },
  1461. "tag": {
  1462. "_attributes": {
  1463. "swac_text": "参加",
  1464. "swac_alphaidx": "cānjiā",
  1465. "swac_pron_phon": "cānjiā"
  1466. }
  1467. }
  1468. },
  1469. {
  1470. "_attributes": {
  1471. "path": "chi-20b2dd93.ogg"
  1472. },
  1473. "tag": {
  1474. "_attributes": {
  1475. "swac_text": "借",
  1476. "swac_alphaidx": "jiè",
  1477. "swac_pron_phon": "jiè"
  1478. }
  1479. }
  1480. },
  1481. {
  1482. "_attributes": {
  1483. "path": "chi-20c1a2db.ogg"
  1484. },
  1485. "tag": {
  1486. "_attributes": {
  1487. "swac_text": "结果",
  1488. "swac_alphaidx": "jiéguǒ",
  1489. "swac_pron_phon": "jiéguǒ"
  1490. }
  1491. }
  1492. },
  1493. {
  1494. "_attributes": {
  1495. "path": "chi-20e65f69.ogg"
  1496. },
  1497. "tag": {
  1498. "_attributes": {
  1499. "swac_text": "篇",
  1500. "swac_alphaidx": "piān",
  1501. "swac_pron_phon": "piān"
  1502. }
  1503. }
  1504. },
  1505. {
  1506. "_attributes": {
  1507. "path": "chi-20f05ddc.ogg"
  1508. },
  1509. "tag": {
  1510. "_attributes": {
  1511. "swac_text": "不如",
  1512. "swac_alphaidx": "bùrú",
  1513. "swac_pron_phon": "bùrú"
  1514. }
  1515. }
  1516. },
  1517. {
  1518. "_attributes": {
  1519. "path": "chi-220c8b73.ogg"
  1520. },
  1521. "tag": {
  1522. "_attributes": {
  1523. "swac_text": "拍",
  1524. "swac_alphaidx": "pāi",
  1525. "swac_pron_phon": "pāi"
  1526. }
  1527. }
  1528. },
  1529. {
  1530. "_attributes": {
  1531. "path": "chi-22ddc428.ogg"
  1532. },
  1533. "tag": {
  1534. "_attributes": {
  1535. "swac_text": "着",
  1536. "swac_alphaidx": "zhe",
  1537. "swac_pron_phon": "zhe"
  1538. }
  1539. }
  1540. },
  1541. {
  1542. "_attributes": {
  1543. "path": "chi-22ded4aa.ogg"
  1544. },
  1545. "tag": {
  1546. "_attributes": {
  1547. "swac_text": "那里",
  1548. "swac_alphaidx": "nàli",
  1549. "swac_pron_phon": "nàli"
  1550. }
  1551. }
  1552. },
  1553. {
  1554. "_attributes": {
  1555. "path": "chi-2351822d.ogg"
  1556. },
  1557. "tag": {
  1558. "_attributes": {
  1559. "swac_text": "事情",
  1560. "swac_alphaidx": "shìqing",
  1561. "swac_pron_phon": "shìqing"
  1562. }
  1563. }
  1564. },
  1565. {
  1566. "_attributes": {
  1567. "path": "chi-2385cd83.ogg"
  1568. },
  1569. "tag": {
  1570. "_attributes": {
  1571. "swac_text": "成绩",
  1572. "swac_alphaidx": "chéngjī",
  1573. "swac_pron_phon": "chéngjī"
  1574. }
  1575. }
  1576. },
  1577. {
  1578. "_attributes": {
  1579. "path": "chi-2396d935.ogg"
  1580. },
  1581. "tag": {
  1582. "_attributes": {
  1583. "swac_text": "月球",
  1584. "swac_alphaidx": "yuèqiú",
  1585. "swac_pron_phon": "yuèqiú"
  1586. }
  1587. }
  1588. },
  1589. {
  1590. "_attributes": {
  1591. "path": "chi-23aae511.ogg"
  1592. },
  1593. "tag": {
  1594. "_attributes": {
  1595. "swac_text": "起床",
  1596. "swac_alphaidx": "qǐchuáng",
  1597. "swac_pron_phon": "qǐchuáng"
  1598. }
  1599. }
  1600. },
  1601. {
  1602. "_attributes": {
  1603. "path": "chi-23c08d83.ogg"
  1604. },
  1605. "tag": {
  1606. "_attributes": {
  1607. "swac_text": "明年",
  1608. "swac_alphaidx": "míngnián",
  1609. "swac_pron_phon": "míngnián"
  1610. }
  1611. }
  1612. },
  1613. {
  1614. "_attributes": {
  1615. "path": "chi-23c7acc5.ogg"
  1616. },
  1617. "tag": {
  1618. "_attributes": {
  1619. "swac_text": "游泳",
  1620. "swac_alphaidx": "yóuyǒng",
  1621. "swac_pron_phon": "yóuyǒng"
  1622. }
  1623. }
  1624. },
  1625. {
  1626. "_attributes": {
  1627. "path": "chi-24005915.ogg"
  1628. },
  1629. "tag": {
  1630. "_attributes": {
  1631. "swac_text": "十",
  1632. "swac_alphaidx": "shí",
  1633. "swac_pron_phon": "shí"
  1634. }
  1635. }
  1636. },
  1637. {
  1638. "_attributes": {
  1639. "path": "chi-24063610.ogg"
  1640. },
  1641. "tag": {
  1642. "_attributes": {
  1643. "swac_text": "汉语",
  1644. "swac_alphaidx": "hànyǔ",
  1645. "swac_pron_phon": "hànyǔ"
  1646. }
  1647. }
  1648. },
  1649. {
  1650. "_attributes": {
  1651. "path": "chi-243190b4.ogg"
  1652. },
  1653. "tag": {
  1654. "_attributes": {
  1655. "swac_text": "圆",
  1656. "swac_alphaidx": "yuán",
  1657. "swac_pron_phon": "yuán"
  1658. }
  1659. }
  1660. },
  1661. {
  1662. "_attributes": {
  1663. "path": "chi-24d1c103.ogg"
  1664. },
  1665. "tag": {
  1666. "_attributes": {
  1667. "swac_text": "活儿",
  1668. "swac_alphaidx": "huór",
  1669. "swac_pron_phon": "huór"
  1670. }
  1671. }
  1672. },
  1673. {
  1674. "_attributes": {
  1675. "path": "chi-24e7f025.ogg"
  1676. },
  1677. "tag": {
  1678. "_attributes": {
  1679. "swac_text": "注意",
  1680. "swac_alphaidx": "zhùyì",
  1681. "swac_pron_phon": "zhùyì"
  1682. }
  1683. }
  1684. },
  1685. {
  1686. "_attributes": {
  1687. "path": "chi-250c3808.ogg"
  1688. },
  1689. "tag": {
  1690. "_attributes": {
  1691. "swac_text": "绿",
  1692. "swac_alphaidx": "lǜ",
  1693. "swac_pron_phon": "lǜ"
  1694. }
  1695. }
  1696. },
  1697. {
  1698. "_attributes": {
  1699. "path": "chi-25188442.ogg"
  1700. },
  1701. "tag": {
  1702. "_attributes": {
  1703. "swac_text": "为",
  1704. "swac_alphaidx": "wéi",
  1705. "swac_pron_phon": "wéi"
  1706. }
  1707. }
  1708. },
  1709. {
  1710. "_attributes": {
  1711. "path": "chi-252b958d.ogg"
  1712. },
  1713. "tag": {
  1714. "_attributes": {
  1715. "swac_text": "连_都_",
  1716. "swac_alphaidx": "lián_dōu",
  1717. "swac_pron_phon": "lián_dōu"
  1718. }
  1719. }
  1720. },
  1721. {
  1722. "_attributes": {
  1723. "path": "chi-2567c75b.ogg"
  1724. },
  1725. "tag": {
  1726. "_attributes": {
  1727. "swac_text": "门口",
  1728. "swac_alphaidx": "ménkǒu",
  1729. "swac_pron_phon": "ménkǒu"
  1730. }
  1731. }
  1732. },
  1733. {
  1734. "_attributes": {
  1735. "path": "chi-25a6e316.ogg"
  1736. },
  1737. "tag": {
  1738. "_attributes": {
  1739. "swac_text": "脸",
  1740. "swac_alphaidx": "liǎn",
  1741. "swac_pron_phon": "liǎn"
  1742. }
  1743. }
  1744. },
  1745. {
  1746. "_attributes": {
  1747. "path": "chi-269af39d.ogg"
  1748. },
  1749. "tag": {
  1750. "_attributes": {
  1751. "swac_text": "中间",
  1752. "swac_alphaidx": "zhōngjiān",
  1753. "swac_pron_phon": "zhōngjiān"
  1754. }
  1755. }
  1756. },
  1757. {
  1758. "_attributes": {
  1759. "path": "chi-270ac633.ogg"
  1760. },
  1761. "tag": {
  1762. "_attributes": {
  1763. "swac_text": "退",
  1764. "swac_alphaidx": "tuì",
  1765. "swac_pron_phon": "tuì"
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "_attributes": {
  1771. "path": "chi-2763b6c2.ogg"
  1772. },
  1773. "tag": {
  1774. "_attributes": {
  1775. "swac_text": "疼",
  1776. "swac_alphaidx": "téng",
  1777. "swac_pron_phon": "téng"
  1778. }
  1779. }
  1780. },
  1781. {
  1782. "_attributes": {
  1783. "path": "chi-279f3e38.ogg"
  1784. },
  1785. "tag": {
  1786. "_attributes": {
  1787. "swac_text": "这样",
  1788. "swac_alphaidx": "zhèyàng",
  1789. "swac_pron_phon": "zhèyàng"
  1790. }
  1791. }
  1792. },
  1793. {
  1794. "_attributes": {
  1795. "path": "chi-27b887a2.ogg"
  1796. },
  1797. "tag": {
  1798. "_attributes": {
  1799. "swac_text": "本子",
  1800. "swac_alphaidx": "běnzi",
  1801. "swac_pron_phon": "běnzi"
  1802. }
  1803. }
  1804. },
  1805. {
  1806. "_attributes": {
  1807. "path": "chi-2832389f.ogg"
  1808. },
  1809. "tag": {
  1810. "_attributes": {
  1811. "swac_text": "去",
  1812. "swac_alphaidx": "qù",
  1813. "swac_pron_phon": "qù"
  1814. }
  1815. }
  1816. },
  1817. {
  1818. "_attributes": {
  1819. "path": "chi-28792b16.ogg"
  1820. },
  1821. "tag": {
  1822. "_attributes": {
  1823. "swac_text": "除了_以外",
  1824. "swac_alphaidx": "chúle_yǐwài",
  1825. "swac_pron_phon": "chúle_yǐwài"
  1826. }
  1827. }
  1828. },
  1829. {
  1830. "_attributes": {
  1831. "path": "chi-28a690d1.ogg"
  1832. },
  1833. "tag": {
  1834. "_attributes": {
  1835. "swac_text": "十分",
  1836. "swac_alphaidx": "shífēn",
  1837. "swac_pron_phon": "shífēn"
  1838. }
  1839. }
  1840. },
  1841. {
  1842. "_attributes": {
  1843. "path": "chi-28d82833.ogg"
  1844. },
  1845. "tag": {
  1846. "_attributes": {
  1847. "swac_text": "凉快",
  1848. "swac_alphaidx": "liángkuai",
  1849. "swac_pron_phon": "liángkuai"
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "_attributes": {
  1855. "path": "chi-292aa32e.ogg"
  1856. },
  1857. "tag": {
  1858. "_attributes": {
  1859. "swac_text": "表示",
  1860. "swac_alphaidx": "biǎoshì",
  1861. "swac_pron_phon": "biǎoshì"
  1862. }
  1863. }
  1864. },
  1865. {
  1866. "_attributes": {
  1867. "path": "chi-29efa8a1.ogg"
  1868. },
  1869. "tag": {
  1870. "_attributes": {
  1871. "swac_text": "全体",
  1872. "swac_alphaidx": "quántǐ",
  1873. "swac_pron_phon": "quántǐ"
  1874. }
  1875. }
  1876. },
  1877. {
  1878. "_attributes": {
  1879. "path": "chi-2a267e89.ogg"
  1880. },
  1881. "tag": {
  1882. "_attributes": {
  1883. "swac_text": "家庭",
  1884. "swac_alphaidx": "jiātíng",
  1885. "swac_pron_phon": "jiātíng"
  1886. }
  1887. }
  1888. },
  1889. {
  1890. "_attributes": {
  1891. "path": "chi-2a300ac9.ogg"
  1892. },
  1893. "tag": {
  1894. "_attributes": {
  1895. "swac_text": "出来",
  1896. "swac_alphaidx": "chūlái",
  1897. "swac_pron_phon": "chūlái"
  1898. }
  1899. }
  1900. },
  1901. {
  1902. "_attributes": {
  1903. "path": "chi-2a3f599e.ogg"
  1904. },
  1905. "tag": {
  1906. "_attributes": {
  1907. "swac_text": "你",
  1908. "swac_alphaidx": "nǐ",
  1909. "swac_pron_phon": "nǐ"
  1910. }
  1911. }
  1912. },
  1913. {
  1914. "_attributes": {
  1915. "path": "chi-2a456cb3.ogg"
  1916. },
  1917. "tag": {
  1918. "_attributes": {
  1919. "swac_text": "该",
  1920. "swac_alphaidx": "gāi",
  1921. "swac_pron_phon": "gāi"
  1922. }
  1923. }
  1924. },
  1925. {
  1926. "_attributes": {
  1927. "path": "chi-2a506a09.ogg"
  1928. },
  1929. "tag": {
  1930. "_attributes": {
  1931. "swac_text": "确实",
  1932. "swac_alphaidx": "quèshí",
  1933. "swac_pron_phon": "quèshí"
  1934. }
  1935. }
  1936. },
  1937. {
  1938. "_attributes": {
  1939. "path": "chi-2a6ef7c2.ogg"
  1940. },
  1941. "tag": {
  1942. "_attributes": {
  1943. "swac_text": "重要",
  1944. "swac_alphaidx": "zhòngyào",
  1945. "swac_pron_phon": "zhòngyào"
  1946. }
  1947. }
  1948. },
  1949. {
  1950. "_attributes": {
  1951. "path": "chi-2b390e52.ogg"
  1952. },
  1953. "tag": {
  1954. "_attributes": {
  1955. "swac_text": "再",
  1956. "swac_alphaidx": "zài",
  1957. "swac_pron_phon": "zài"
  1958. }
  1959. }
  1960. },
  1961. {
  1962. "_attributes": {
  1963. "path": "chi-2bb9aba4.ogg"
  1964. },
  1965. "tag": {
  1966. "_attributes": {
  1967. "swac_text": "方便",
  1968. "swac_alphaidx": "fāngbiàn",
  1969. "swac_pron_phon": "fāngbiàn"
  1970. }
  1971. }
  1972. },
  1973. {
  1974. "_attributes": {
  1975. "path": "chi-2bfcfa82.ogg"
  1976. },
  1977. "tag": {
  1978. "_attributes": {
  1979. "swac_text": "叫",
  1980. "swac_alphaidx": "jiào",
  1981. "swac_pron_phon": "jiào"
  1982. }
  1983. }
  1984. },
  1985. {
  1986. "_attributes": {
  1987. "path": "chi-2c40b8af.ogg"
  1988. },
  1989. "tag": {
  1990. "_attributes": {
  1991. "swac_text": "生日",
  1992. "swac_alphaidx": "shēngri",
  1993. "swac_pron_phon": "shēngri"
  1994. }
  1995. }
  1996. },
  1997. {
  1998. "_attributes": {
  1999. "path": "chi-2ccd8e48.ogg"
  2000. },
  2001. "tag": {
  2002. "_attributes": {
  2003. "swac_text": "句",
  2004. "swac_alphaidx": "jù",
  2005. "swac_pron_phon": "jù"
  2006. }
  2007. }
  2008. },
  2009. {
  2010. "_attributes": {
  2011. "path": "chi-2d352917.ogg"
  2012. },
  2013. "tag": {
  2014. "_attributes": {
  2015. "swac_text": "联系",
  2016. "swac_alphaidx": "liánxì",
  2017. "swac_pron_phon": "liánxì"
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "_attributes": {
  2023. "path": "chi-2d3d58b3.ogg"
  2024. },
  2025. "tag": {
  2026. "_attributes": {
  2027. "swac_text": "饺子",
  2028. "swac_alphaidx": "jiǎozi",
  2029. "swac_pron_phon": "jiǎozi"
  2030. }
  2031. }
  2032. },
  2033. {
  2034. "_attributes": {
  2035. "path": "chi-2d9d12c4.ogg"
  2036. },
  2037. "tag": {
  2038. "_attributes": {
  2039. "swac_text": "爱",
  2040. "swac_alphaidx": "ài",
  2041. "swac_pron_phon": "ài"
  2042. }
  2043. }
  2044. },
  2045. {
  2046. "_attributes": {
  2047. "path": "chi-2e2d5d08.ogg"
  2048. },
  2049. "tag": {
  2050. "_attributes": {
  2051. "swac_text": "它们",
  2052. "swac_alphaidx": "tāmen",
  2053. "swac_pron_phon": "tāmen"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. "_attributes": {
  2059. "path": "chi-2e4fc1cd.ogg"
  2060. },
  2061. "tag": {
  2062. "_attributes": {
  2063. "swac_text": "可以",
  2064. "swac_alphaidx": "kěyǐ",
  2065. "swac_pron_phon": "kěyǐ"
  2066. }
  2067. }
  2068. },
  2069. {
  2070. "_attributes": {
  2071. "path": "chi-2e63dba9.ogg"
  2072. },
  2073. "tag": {
  2074. "_attributes": {
  2075. "swac_text": "什么",
  2076. "swac_alphaidx": "shénme",
  2077. "swac_pron_phon": "shénme"
  2078. }
  2079. }
  2080. },
  2081. {
  2082. "_attributes": {
  2083. "path": "chi-2e81d302.ogg"
  2084. },
  2085. "tag": {
  2086. "_attributes": {
  2087. "swac_text": "中学",
  2088. "swac_alphaidx": "zhōngxué",
  2089. "swac_pron_phon": "zhōngxué"
  2090. }
  2091. }
  2092. },
  2093. {
  2094. "_attributes": {
  2095. "path": "chi-2e84f159.ogg"
  2096. },
  2097. "tag": {
  2098. "_attributes": {
  2099. "swac_text": "可能",
  2100. "swac_alphaidx": "kěnéng",
  2101. "swac_pron_phon": "kěnéng"
  2102. }
  2103. }
  2104. },
  2105. {
  2106. "_attributes": {
  2107. "path": "chi-2ea0de3d.ogg"
  2108. },
  2109. "tag": {
  2110. "_attributes": {
  2111. "swac_text": "几",
  2112. "swac_alphaidx": "jǐ",
  2113. "swac_pron_phon": "jǐ"
  2114. }
  2115. }
  2116. },
  2117. {
  2118. "_attributes": {
  2119. "path": "chi-2ec7d36b.ogg"
  2120. },
  2121. "tag": {
  2122. "_attributes": {
  2123. "swac_text": "从_到_",
  2124. "swac_alphaidx": "cóng_dào_",
  2125. "swac_pron_phon": "cóng_dào_"
  2126. }
  2127. }
  2128. },
  2129. {
  2130. "_attributes": {
  2131. "path": "chi-2f238cc8.ogg"
  2132. },
  2133. "tag": {
  2134. "_attributes": {
  2135. "swac_text": "得",
  2136. "swac_alphaidx": "dé",
  2137. "swac_pron_phon": "dé"
  2138. }
  2139. }
  2140. },
  2141. {
  2142. "_attributes": {
  2143. "path": "chi-2fc891d8.ogg"
  2144. },
  2145. "tag": {
  2146. "_attributes": {
  2147. "swac_text": "市",
  2148. "swac_alphaidx": "shì",
  2149. "swac_pron_phon": "shì"
  2150. }
  2151. }
  2152. },
  2153. {
  2154. "_attributes": {
  2155. "path": "chi-2fe1c3cb.ogg"
  2156. },
  2157. "tag": {
  2158. "_attributes": {
  2159. "swac_text": "上课",
  2160. "swac_alphaidx": "shàngkè",
  2161. "swac_pron_phon": "shàngkè"
  2162. }
  2163. }
  2164. },
  2165. {
  2166. "_attributes": {
  2167. "path": "chi-3087fff1.ogg"
  2168. },
  2169. "tag": {
  2170. "_attributes": {
  2171. "swac_text": "新闻",
  2172. "swac_alphaidx": "xīnwén",
  2173. "swac_pron_phon": "xīnwén"
  2174. }
  2175. }
  2176. },
  2177. {
  2178. "_attributes": {
  2179. "path": "chi-30c0ca40.ogg"
  2180. },
  2181. "tag": {
  2182. "_attributes": {
  2183. "swac_text": "羊",
  2184. "swac_alphaidx": "yáng",
  2185. "swac_pron_phon": "yáng"
  2186. }
  2187. }
  2188. },
  2189. {
  2190. "_attributes": {
  2191. "path": "chi-30e1549a.ogg"
  2192. },
  2193. "tag": {
  2194. "_attributes": {
  2195. "swac_text": "请问",
  2196. "swac_alphaidx": "qǐngwèn",
  2197. "swac_pron_phon": "qǐngwèn"
  2198. }
  2199. }
  2200. },
  2201. {
  2202. "_attributes": {
  2203. "path": "chi-310e5e4a.ogg"
  2204. },
  2205. "tag": {
  2206. "_attributes": {
  2207. "swac_text": "慢",
  2208. "swac_alphaidx": "màn",
  2209. "swac_pron_phon": "màn"
  2210. }
  2211. }
  2212. },
  2213. {
  2214. "_attributes": {
  2215. "path": "chi-32385544.ogg"
  2216. },
  2217. "tag": {
  2218. "_attributes": {
  2219. "swac_text": "向",
  2220. "swac_alphaidx": "xiàng",
  2221. "swac_pron_phon": "xiàng"
  2222. }
  2223. }
  2224. },
  2225. {
  2226. "_attributes": {
  2227. "path": "chi-32667508.ogg"
  2228. },
  2229. "tag": {
  2230. "_attributes": {
  2231. "swac_text": "中文",
  2232. "swac_alphaidx": "zhōngwén",
  2233. "swac_pron_phon": "zhōngwén"
  2234. }
  2235. }
  2236. },
  2237. {
  2238. "_attributes": {
  2239. "path": "chi-32747d95.ogg"
  2240. },
  2241. "tag": {
  2242. "_attributes": {
  2243. "swac_text": "文章",
  2244. "swac_alphaidx": "wénzhāng",
  2245. "swac_pron_phon": "wénzhāng"
  2246. }
  2247. }
  2248. },
  2249. {
  2250. "_attributes": {
  2251. "path": "chi-329196d9.ogg"
  2252. },
  2253. "tag": {
  2254. "_attributes": {
  2255. "swac_text": "发展",
  2256. "swac_alphaidx": "fāzhǎn",
  2257. "swac_pron_phon": "fāzhǎn"
  2258. }
  2259. }
  2260. },
  2261. {
  2262. "_attributes": {
  2263. "path": "chi-32d7dd89.ogg"
  2264. },
  2265. "tag": {
  2266. "_attributes": {
  2267. "swac_text": "所以",
  2268. "swac_alphaidx": "suǒyǐ",
  2269. "swac_pron_phon": "suǒyǐ"
  2270. }
  2271. }
  2272. },
  2273. {
  2274. "_attributes": {
  2275. "path": "chi-32de3924.ogg"
  2276. },
  2277. "tag": {
  2278. "_attributes": {
  2279. "swac_text": "信",
  2280. "swac_alphaidx": "xìn",
  2281. "swac_pron_phon": "xìn"
  2282. }
  2283. }
  2284. },
  2285. {
  2286. "_attributes": {
  2287. "path": "chi-32f6bbe4.ogg"
  2288. },
  2289. "tag": {
  2290. "_attributes": {
  2291. "swac_text": "抽",
  2292. "swac_alphaidx": "chōu",
  2293. "swac_pron_phon": "chōu"
  2294. }
  2295. }
  2296. },
  2297. {
  2298. "_attributes": {
  2299. "path": "chi-33306ada.ogg"
  2300. },
  2301. "tag": {
  2302. "_attributes": {
  2303. "swac_text": "研究",
  2304. "swac_alphaidx": "yánjiū",
  2305. "swac_pron_phon": "yánjiū"
  2306. }
  2307. }
  2308. },
  2309. {
  2310. "_attributes": {
  2311. "path": "chi-334a72a1.ogg"
  2312. },
  2313. "tag": {
  2314. "_attributes": {
  2315. "swac_text": "晚饭",
  2316. "swac_alphaidx": "wǎnfàn",
  2317. "swac_pron_phon": "wǎnfàn"
  2318. }
  2319. }
  2320. },
  2321. {
  2322. "_attributes": {
  2323. "path": "chi-335277ef.ogg"
  2324. },
  2325. "tag": {
  2326. "_attributes": {
  2327. "swac_text": "打",
  2328. "swac_alphaidx": "dǎ",
  2329. "swac_pron_phon": "dǎ"
  2330. }
  2331. }
  2332. },
  2333. {
  2334. "_attributes": {
  2335. "path": "chi-33586c55.ogg"
  2336. },
  2337. "tag": {
  2338. "_attributes": {
  2339. "swac_text": "遍",
  2340. "swac_alphaidx": "biàn",
  2341. "swac_pron_phon": "biàn"
  2342. }
  2343. }
  2344. },
  2345. {
  2346. "_attributes": {
  2347. "path": "chi-3359ca4a.ogg"
  2348. },
  2349. "tag": {
  2350. "_attributes": {
  2351. "swac_text": "友谊",
  2352. "swac_alphaidx": "yǒuyì",
  2353. "swac_pron_phon": "yǒuyì"
  2354. }
  2355. }
  2356. },
  2357. {
  2358. "_attributes": {
  2359. "path": "chi-33fa18ab.ogg"
  2360. },
  2361. "tag": {
  2362. "_attributes": {
  2363. "swac_text": "整齐",
  2364. "swac_alphaidx": "zhěngqí",
  2365. "swac_pron_phon": "zhěngqí"
  2366. }
  2367. }
  2368. },
  2369. {
  2370. "_attributes": {
  2371. "path": "chi-3431e244.ogg"
  2372. },
  2373. "tag": {
  2374. "_attributes": {
  2375. "swac_text": "老",
  2376. "swac_alphaidx": "lǎo",
  2377. "swac_pron_phon": "lǎo"
  2378. }
  2379. }
  2380. },
  2381. {
  2382. "_attributes": {
  2383. "path": "chi-351692dc.ogg"
  2384. },
  2385. "tag": {
  2386. "_attributes": {
  2387. "swac_text": "表扬",
  2388. "swac_alphaidx": "biǎoyáng",
  2389. "swac_pron_phon": "biǎoyáng"
  2390. }
  2391. }
  2392. },
  2393. {
  2394. "_attributes": {
  2395. "path": "chi-3532dfb9.ogg"
  2396. },
  2397. "tag": {
  2398. "_attributes": {
  2399. "swac_text": "高兴",
  2400. "swac_alphaidx": "gāoxìng",
  2401. "swac_pron_phon": "gāoxìng"
  2402. }
  2403. }
  2404. },
  2405. {
  2406. "_attributes": {
  2407. "path": "chi-354d54b3.ogg"
  2408. },
  2409. "tag": {
  2410. "_attributes": {
  2411. "swac_text": "句子",
  2412. "swac_alphaidx": "jùzi",
  2413. "swac_pron_phon": "jùzi"
  2414. }
  2415. }
  2416. },
  2417. {
  2418. "_attributes": {
  2419. "path": "chi-35638310.ogg"
  2420. },
  2421. "tag": {
  2422. "_attributes": {
  2423. "swac_text": "敢",
  2424. "swac_alphaidx": "gǎn",
  2425. "swac_pron_phon": "gǎn"
  2426. }
  2427. }
  2428. },
  2429. {
  2430. "_attributes": {
  2431. "path": "chi-3586263c.ogg"
  2432. },
  2433. "tag": {
  2434. "_attributes": {
  2435. "swac_text": "学",
  2436. "swac_alphaidx": "xué",
  2437. "swac_pron_phon": "xué"
  2438. }
  2439. }
  2440. },
  2441. {
  2442. "_attributes": {
  2443. "path": "chi-35aa2dbe.ogg"
  2444. },
  2445. "tag": {
  2446. "_attributes": {
  2447. "swac_text": "找",
  2448. "swac_alphaidx": "zhǎo",
  2449. "swac_pron_phon": "zhǎo"
  2450. }
  2451. }
  2452. },
  2453. {
  2454. "_attributes": {
  2455. "path": "chi-3677e7da.ogg"
  2456. },
  2457. "tag": {
  2458. "_attributes": {
  2459. "swac_text": "听",
  2460. "swac_alphaidx": "tīng",
  2461. "swac_pron_phon": "tīng"
  2462. }
  2463. }
  2464. },
  2465. {
  2466. "_attributes": {
  2467. "path": "chi-369eb1eb.ogg"
  2468. },
  2469. "tag": {
  2470. "_attributes": {
  2471. "swac_text": "不但",
  2472. "swac_alphaidx": "búdàn",
  2473. "swac_pron_phon": "búdàn"
  2474. }
  2475. }
  2476. },
  2477. {
  2478. "_attributes": {
  2479. "path": "chi-36c096c2.ogg"
  2480. },
  2481. "tag": {
  2482. "_attributes": {
  2483. "swac_text": "实现",
  2484. "swac_alphaidx": "shíxiàn",
  2485. "swac_pron_phon": "shíxiàn"
  2486. }
  2487. }
  2488. },
  2489. {
  2490. "_attributes": {
  2491. "path": "chi-36cbb69c.ogg"
  2492. },
  2493. "tag": {
  2494. "_attributes": {
  2495. "swac_text": "批评",
  2496. "swac_alphaidx": "pīpíng",
  2497. "swac_pron_phon": "pīpíng"
  2498. }
  2499. }
  2500. },
  2501. {
  2502. "_attributes": {
  2503. "path": "chi-36decb9e.ogg"
  2504. },
  2505. "tag": {
  2506. "_attributes": {
  2507. "swac_text": "刮",
  2508. "swac_alphaidx": "guā",
  2509. "swac_pron_phon": "guā"
  2510. }
  2511. }
  2512. },
  2513. {
  2514. "_attributes": {
  2515. "path": "chi-36f406e8.ogg"
  2516. },
  2517. "tag": {
  2518. "_attributes": {
  2519. "swac_text": "课",
  2520. "swac_alphaidx": "kè",
  2521. "swac_pron_phon": "kè"
  2522. }
  2523. }
  2524. },
  2525. {
  2526. "_attributes": {
  2527. "path": "chi-370e4a0c.ogg"
  2528. },
  2529. "tag": {
  2530. "_attributes": {
  2531. "swac_text": "过来",
  2532. "swac_alphaidx": "guòlái",
  2533. "swac_pron_phon": "guòlái"
  2534. }
  2535. }
  2536. },
  2537. {
  2538. "_attributes": {
  2539. "path": "chi-37490b61.ogg"
  2540. },
  2541. "tag": {
  2542. "_attributes": {
  2543. "swac_text": "也",
  2544. "swac_alphaidx": "yě",
  2545. "swac_pron_phon": "yě"
  2546. }
  2547. }
  2548. },
  2549. {
  2550. "_attributes": {
  2551. "path": "chi-378d8a6a.ogg"
  2552. },
  2553. "tag": {
  2554. "_attributes": {
  2555. "swac_text": "椅子",
  2556. "swac_alphaidx": "yǐzi",
  2557. "swac_pron_phon": "yǐzi"
  2558. }
  2559. }
  2560. },
  2561. {
  2562. "_attributes": {
  2563. "path": "chi-37f771e8.ogg"
  2564. },
  2565. "tag": {
  2566. "_attributes": {
  2567. "swac_text": "相信",
  2568. "swac_alphaidx": "xiāngxìn",
  2569. "swac_pron_phon": "xiāngxìn"
  2570. }
  2571. }
  2572. },
  2573. {
  2574. "_attributes": {
  2575. "path": "chi-387ce83b.ogg"
  2576. },
  2577. "tag": {
  2578. "_attributes": {
  2579. "swac_text": "一",
  2580. "swac_alphaidx": "yī",
  2581. "swac_pron_phon": "yī"
  2582. }
  2583. }
  2584. },
  2585. {
  2586. "_attributes": {
  2587. "path": "chi-388810e0.ogg"
  2588. },
  2589. "tag": {
  2590. "_attributes": {
  2591. "swac_text": "怕",
  2592. "swac_alphaidx": "pà",
  2593. "swac_pron_phon": "pà"
  2594. }
  2595. }
  2596. },
  2597. {
  2598. "_attributes": {
  2599. "path": "chi-38ada5f2.ogg"
  2600. },
  2601. "tag": {
  2602. "_attributes": {
  2603. "swac_text": "久",
  2604. "swac_alphaidx": "jiǔ",
  2605. "swac_pron_phon": "jiǔ"
  2606. }
  2607. }
  2608. },
  2609. {
  2610. "_attributes": {
  2611. "path": "chi-38d258e7.ogg"
  2612. },
  2613. "tag": {
  2614. "_attributes": {
  2615. "swac_text": "前",
  2616. "swac_alphaidx": "qián",
  2617. "swac_pron_phon": "qián"
  2618. }
  2619. }
  2620. },
  2621. {
  2622. "_attributes": {
  2623. "path": "chi-38e61e00.ogg"
  2624. },
  2625. "tag": {
  2626. "_attributes": {
  2627. "swac_text": "请假",
  2628. "swac_alphaidx": "qǐngjià",
  2629. "swac_pron_phon": "qǐngjià"
  2630. }
  2631. }
  2632. },
  2633. {
  2634. "_attributes": {
  2635. "path": "chi-39205b85.ogg"
  2636. },
  2637. "tag": {
  2638. "_attributes": {
  2639. "swac_text": "收",
  2640. "swac_alphaidx": "shōu",
  2641. "swac_pron_phon": "shōu"
  2642. }
  2643. }
  2644. },
  2645. {
  2646. "_attributes": {
  2647. "path": "chi-39788fb8.ogg"
  2648. },
  2649. "tag": {
  2650. "_attributes": {
  2651. "swac_text": "天",
  2652. "swac_alphaidx": "tiān",
  2653. "swac_pron_phon": "tiān"
  2654. }
  2655. }
  2656. },
  2657. {
  2658. "_attributes": {
  2659. "path": "chi-397ae9f4.ogg"
  2660. },
  2661. "tag": {
  2662. "_attributes": {
  2663. "swac_text": "瓶",
  2664. "swac_alphaidx": "píng",
  2665. "swac_pron_phon": "píng"
  2666. }
  2667. }
  2668. },
  2669. {
  2670. "_attributes": {
  2671. "path": "chi-39980963.ogg"
  2672. },
  2673. "tag": {
  2674. "_attributes": {
  2675. "swac_text": "喊",
  2676. "swac_alphaidx": "hǎn",
  2677. "swac_pron_phon": "hǎn"
  2678. }
  2679. }
  2680. },
  2681. {
  2682. "_attributes": {
  2683. "path": "chi-39c9500d.ogg"
  2684. },
  2685. "tag": {
  2686. "_attributes": {
  2687. "swac_text": "掉",
  2688. "swac_alphaidx": "diào",
  2689. "swac_pron_phon": "diào"
  2690. }
  2691. }
  2692. },
  2693. {
  2694. "_attributes": {
  2695. "path": "chi-3a037746.ogg"
  2696. },
  2697. "tag": {
  2698. "_attributes": {
  2699. "swac_text": "预习",
  2700. "swac_alphaidx": "yùxí",
  2701. "swac_pron_phon": "yùxí"
  2702. }
  2703. }
  2704. },
  2705. {
  2706. "_attributes": {
  2707. "path": "chi-3a3c9bf3.ogg"
  2708. },
  2709. "tag": {
  2710. "_attributes": {
  2711. "swac_text": "对",
  2712. "swac_alphaidx": "duì",
  2713. "swac_pron_phon": "duì"
  2714. }
  2715. }
  2716. },
  2717. {
  2718. "_attributes": {
  2719. "path": "chi-3a8097b4.ogg"
  2720. },
  2721. "tag": {
  2722. "_attributes": {
  2723. "swac_text": "进",
  2724. "swac_alphaidx": "jìn",
  2725. "swac_pron_phon": "jìn"
  2726. }
  2727. }
  2728. },
  2729. {
  2730. "_attributes": {
  2731. "path": "chi-3ab885f3.ogg"
  2732. },
  2733. "tag": {
  2734. "_attributes": {
  2735. "swac_text": "机场",
  2736. "swac_alphaidx": "jīchǎng",
  2737. "swac_pron_phon": "jīchǎng"
  2738. }
  2739. }
  2740. },
  2741. {
  2742. "_attributes": {
  2743. "path": "chi-3adc7855.ogg"
  2744. },
  2745. "tag": {
  2746. "_attributes": {
  2747. "swac_text": "分钟",
  2748. "swac_alphaidx": "fēnzhōng",
  2749. "swac_pron_phon": "fēnzhōng"
  2750. }
  2751. }
  2752. },
  2753. {
  2754. "_attributes": {
  2755. "path": "chi-3bc23699.ogg"
  2756. },
  2757. "tag": {
  2758. "_attributes": {
  2759. "swac_text": "冬天",
  2760. "swac_alphaidx": "dōngtiān",
  2761. "swac_pron_phon": "dōngtiān"
  2762. }
  2763. }
  2764. },
  2765. {
  2766. "_attributes": {
  2767. "path": "chi-3bd99d1d.ogg"
  2768. },
  2769. "tag": {
  2770. "_attributes": {
  2771. "swac_text": "表",
  2772. "swac_alphaidx": "biǎo",
  2773. "swac_pron_phon": "biǎo"
  2774. }
  2775. }
  2776. },
  2777. {
  2778. "_attributes": {
  2779. "path": "chi-3befa171.ogg"
  2780. },
  2781. "tag": {
  2782. "_attributes": {
  2783. "swac_text": "银行",
  2784. "swac_alphaidx": "yínháng",
  2785. "swac_pron_phon": "yínháng"
  2786. }
  2787. }
  2788. },
  2789. {
  2790. "_attributes": {
  2791. "path": "chi-3c03b503.ogg"
  2792. },
  2793. "tag": {
  2794. "_attributes": {
  2795. "swac_text": "为",
  2796. "swac_alphaidx": "wèi",
  2797. "swac_pron_phon": "wèi"
  2798. }
  2799. }
  2800. },
  2801. {
  2802. "_attributes": {
  2803. "path": "chi-3c133486.ogg"
  2804. },
  2805. "tag": {
  2806. "_attributes": {
  2807. "swac_text": "汤",
  2808. "swac_alphaidx": "tāng",
  2809. "swac_pron_phon": "tāng"
  2810. }
  2811. }
  2812. },
  2813. {
  2814. "_attributes": {
  2815. "path": "chi-3c4636b0.ogg"
  2816. },
  2817. "tag": {
  2818. "_attributes": {
  2819. "swac_text": "进去",
  2820. "swac_alphaidx": "jìnqù",
  2821. "swac_pron_phon": "jìnqù"
  2822. }
  2823. }
  2824. },
  2825. {
  2826. "_attributes": {
  2827. "path": "chi-3c585654.ogg"
  2828. },
  2829. "tag": {
  2830. "_attributes": {
  2831. "swac_text": "互相",
  2832. "swac_alphaidx": "hùxiāng",
  2833. "swac_pron_phon": "hùxiāng"
  2834. }
  2835. }
  2836. },
  2837. {
  2838. "_attributes": {
  2839. "path": "chi-3d057fa1.ogg"
  2840. },
  2841. "tag": {
  2842. "_attributes": {
  2843. "swac_text": "跟",
  2844. "swac_alphaidx": "gēn",
  2845. "swac_pron_phon": "gēn"
  2846. }
  2847. }
  2848. },
  2849. {
  2850. "_attributes": {
  2851. "path": "chi-3d4eb003.ogg"
  2852. },
  2853. "tag": {
  2854. "_attributes": {
  2855. "swac_text": "睡觉",
  2856. "swac_alphaidx": "shuìjiào",
  2857. "swac_pron_phon": "shuìjiào"
  2858. }
  2859. }
  2860. },
  2861. {
  2862. "_attributes": {
  2863. "path": "chi-3d6358ef.ogg"
  2864. },
  2865. "tag": {
  2866. "_attributes": {
  2867. "swac_text": "发烧",
  2868. "swac_alphaidx": "fāshāo",
  2869. "swac_pron_phon": "fāshāo"
  2870. }
  2871. }
  2872. },
  2873. {
  2874. "_attributes": {
  2875. "path": "chi-3dc7616d.ogg"
  2876. },
  2877. "tag": {
  2878. "_attributes": {
  2879. "swac_text": "剩",
  2880. "swac_alphaidx": "shèng",
  2881. "swac_pron_phon": "shèng"
  2882. }
  2883. }
  2884. },
  2885. {
  2886. "_attributes": {
  2887. "path": "chi-3dd7c67f.ogg"
  2888. },
  2889. "tag": {
  2890. "_attributes": {
  2891. "swac_text": "还",
  2892. "swac_alphaidx": "hái",
  2893. "swac_pron_phon": "hái"
  2894. }
  2895. }
  2896. },
  2897. {
  2898. "_attributes": {
  2899. "path": "chi-3dda3fdc.ogg"
  2900. },
  2901. "tag": {
  2902. "_attributes": {
  2903. "swac_text": "运动",
  2904. "swac_alphaidx": "yùndòng",
  2905. "swac_pron_phon": "yùndòng"
  2906. }
  2907. }
  2908. },
  2909. {
  2910. "_attributes": {
  2911. "path": "chi-3e05ce36.ogg"
  2912. },
  2913. "tag": {
  2914. "_attributes": {
  2915. "swac_text": "别",
  2916. "swac_alphaidx": "bié",
  2917. "swac_pron_phon": "bié"
  2918. }
  2919. }
  2920. },
  2921. {
  2922. "_attributes": {
  2923. "path": "chi-3e19e621.ogg"
  2924. },
  2925. "tag": {
  2926. "_attributes": {
  2927. "swac_text": "暖和",
  2928. "swac_alphaidx": "nuǎnhuo",
  2929. "swac_pron_phon": "nuǎnhuo"
  2930. }
  2931. }
  2932. },
  2933. {
  2934. "_attributes": {
  2935. "path": "chi-3e65df5e.ogg"
  2936. },
  2937. "tag": {
  2938. "_attributes": {
  2939. "swac_text": "意义",
  2940. "swac_alphaidx": "yìyì",
  2941. "swac_pron_phon": "yìyì"
  2942. }
  2943. }
  2944. },
  2945. {
  2946. "_attributes": {
  2947. "path": "chi-3e9201ef.ogg"
  2948. },
  2949. "tag": {
  2950. "_attributes": {
  2951. "swac_text": "送",
  2952. "swac_alphaidx": "sòng",
  2953. "swac_pron_phon": "sòng"
  2954. }
  2955. }
  2956. },
  2957. {
  2958. "_attributes": {
  2959. "path": "chi-3ed02588.ogg"
  2960. },
  2961. "tag": {
  2962. "_attributes": {
  2963. "swac_text": "香蕉",
  2964. "swac_alphaidx": "xiāngjiāo",
  2965. "swac_pron_phon": "xiāngjiāo"
  2966. }
  2967. }
  2968. },
  2969. {
  2970. "_attributes": {
  2971. "path": "chi-3f466680.ogg"
  2972. },
  2973. "tag": {
  2974. "_attributes": {
  2975. "swac_text": "后",
  2976. "swac_alphaidx": "hòu",
  2977. "swac_pron_phon": "hòu"
  2978. }
  2979. }
  2980. },
  2981. {
  2982. "_attributes": {
  2983. "path": "chi-3f58abba.ogg"
  2984. },
  2985. "tag": {
  2986. "_attributes": {
  2987. "swac_text": "挂",
  2988. "swac_alphaidx": "guà",
  2989. "swac_pron_phon": "guà"
  2990. }
  2991. }
  2992. },
  2993. {
  2994. "_attributes": {
  2995. "path": "chi-3f59f614.ogg"
  2996. },
  2997. "tag": {
  2998. "_attributes": {
  2999. "swac_text": "病",
  3000. "swac_alphaidx": "bìng",
  3001. "swac_pron_phon": "bìng"
  3002. }
  3003. }
  3004. },
  3005. {
  3006. "_attributes": {
  3007. "path": "chi-3f7253a5.ogg"
  3008. },
  3009. "tag": {
  3010. "_attributes": {
  3011. "swac_text": "祖国",
  3012. "swac_alphaidx": "zǔguó",
  3013. "swac_pron_phon": "zǔguó"
  3014. }
  3015. }
  3016. },
  3017. {
  3018. "_attributes": {
  3019. "path": "chi-3f843b81.ogg"
  3020. },
  3021. "tag": {
  3022. "_attributes": {
  3023. "swac_text": "鱼",
  3024. "swac_alphaidx": "yú",
  3025. "swac_pron_phon": "yú"
  3026. }
  3027. }
  3028. },
  3029. {
  3030. "_attributes": {
  3031. "path": "chi-3f986770.ogg"
  3032. },
  3033. "tag": {
  3034. "_attributes": {
  3035. "swac_text": "星期日",
  3036. "swac_alphaidx": "xīngqīrì",
  3037. "swac_pron_phon": "xīngqīrì"
  3038. }
  3039. }
  3040. },
  3041. {
  3042. "_attributes": {
  3043. "path": "chi-3ff280c3.ogg"
  3044. },
  3045. "tag": {
  3046. "_attributes": {
  3047. "swac_text": "半",
  3048. "swac_alphaidx": "bàn",
  3049. "swac_pron_phon": "bàn"
  3050. }
  3051. }
  3052. },
  3053. {
  3054. "_attributes": {
  3055. "path": "chi-40007348.ogg"
  3056. },
  3057. "tag": {
  3058. "_attributes": {
  3059. "swac_text": "刚",
  3060. "swac_alphaidx": "gāng",
  3061. "swac_pron_phon": "gāng"
  3062. }
  3063. }
  3064. },
  3065. {
  3066. "_attributes": {
  3067. "path": "chi-4028330e.ogg"
  3068. },
  3069. "tag": {
  3070. "_attributes": {
  3071. "swac_text": "见面",
  3072. "swac_alphaidx": "jiànmiàn",
  3073. "swac_pron_phon": "jiànmiàn"
  3074. }
  3075. }
  3076. },
  3077. {
  3078. "_attributes": {
  3079. "path": "chi-403a4557.ogg"
  3080. },
  3081. "tag": {
  3082. "_attributes": {
  3083. "swac_text": "需要",
  3084. "swac_alphaidx": "xūyào",
  3085. "swac_pron_phon": "xūyào"
  3086. }
  3087. }
  3088. },
  3089. {
  3090. "_attributes": {
  3091. "path": "chi-40848b13.ogg"
  3092. },
  3093. "tag": {
  3094. "_attributes": {
  3095. "swac_text": "各",
  3096. "swac_alphaidx": "gè",
  3097. "swac_pron_phon": "gè"
  3098. }
  3099. }
  3100. },
  3101. {
  3102. "_attributes": {
  3103. "path": "chi-4089b7e0.ogg"
  3104. },
  3105. "tag": {
  3106. "_attributes": {
  3107. "swac_text": "清楚",
  3108. "swac_alphaidx": "qīngchu",
  3109. "swac_pron_phon": "qīngchu"
  3110. }
  3111. }
  3112. },
  3113. {
  3114. "_attributes": {
  3115. "path": "chi-40a6c2cb.ogg"
  3116. },
  3117. "tag": {
  3118. "_attributes": {
  3119. "swac_text": "能",
  3120. "swac_alphaidx": "néng",
  3121. "swac_pron_phon": "néng"
  3122. }
  3123. }
  3124. },
  3125. {
  3126. "_attributes": {
  3127. "path": "chi-40e994d4.ogg"
  3128. },
  3129. "tag": {
  3130. "_attributes": {
  3131. "swac_text": "放假",
  3132. "swac_alphaidx": "fàngjià",
  3133. "swac_pron_phon": "fàngjià"
  3134. }
  3135. }
  3136. },
  3137. {
  3138. "_attributes": {
  3139. "path": "chi-40ec9324.ogg"
  3140. },
  3141. "tag": {
  3142. "_attributes": {
  3143. "swac_text": "跑",
  3144. "swac_alphaidx": "pǎo",
  3145. "swac_pron_phon": "pǎo"
  3146. }
  3147. }
  3148. },
  3149. {
  3150. "_attributes": {
  3151. "path": "chi-41671672.ogg"
  3152. },
  3153. "tag": {
  3154. "_attributes": {
  3155. "swac_text": "和",
  3156. "swac_alphaidx": "hé",
  3157. "swac_pron_phon": "hé"
  3158. }
  3159. }
  3160. },
  3161. {
  3162. "_attributes": {
  3163. "path": "chi-4168a012.ogg"
  3164. },
  3165. "tag": {
  3166. "_attributes": {
  3167. "swac_text": "回",
  3168. "swac_alphaidx": "huí",
  3169. "swac_pron_phon": "huí"
  3170. }
  3171. }
  3172. },
  3173. {
  3174. "_attributes": {
  3175. "path": "chi-419e33a3.ogg"
  3176. },
  3177. "tag": {
  3178. "_attributes": {
  3179. "swac_text": "集合",
  3180. "swac_alphaidx": "jíhé",
  3181. "swac_pron_phon": "jíhé"
  3182. }
  3183. }
  3184. },
  3185. {
  3186. "_attributes": {
  3187. "path": "chi-42e766ab.ogg"
  3188. },
  3189. "tag": {
  3190. "_attributes": {
  3191. "swac_text": "水平",
  3192. "swac_alphaidx": "shuǐpíng",
  3193. "swac_pron_phon": "shuǐpíng"
  3194. }
  3195. }
  3196. },
  3197. {
  3198. "_attributes": {
  3199. "path": "chi-42f00370.ogg"
  3200. },
  3201. "tag": {
  3202. "_attributes": {
  3203. "swac_text": "所有",
  3204. "swac_alphaidx": "suǒyǒu",
  3205. "swac_pron_phon": "suǒyǒu"
  3206. }
  3207. }
  3208. },
  3209. {
  3210. "_attributes": {
  3211. "path": "chi-4327f978.ogg"
  3212. },
  3213. "tag": {
  3214. "_attributes": {
  3215. "swac_text": "高",
  3216. "swac_alphaidx": "gāo",
  3217. "swac_pron_phon": "gāo"
  3218. }
  3219. }
  3220. },
  3221. {
  3222. "_attributes": {
  3223. "path": "chi-43391199.ogg"
  3224. },
  3225. "tag": {
  3226. "_attributes": {
  3227. "swac_text": "愿意",
  3228. "swac_alphaidx": "yuànyì",
  3229. "swac_pron_phon": "yuànyì"
  3230. }
  3231. }
  3232. },
  3233. {
  3234. "_attributes": {
  3235. "path": "chi-4376f4e7.ogg"
  3236. },
  3237. "tag": {
  3238. "_attributes": {
  3239. "swac_text": "长",
  3240. "swac_alphaidx": "zhǎng",
  3241. "swac_pron_phon": "zhǎng"
  3242. }
  3243. }
  3244. },
  3245. {
  3246. "_attributes": {
  3247. "path": "chi-43a61487.ogg"
  3248. },
  3249. "tag": {
  3250. "_attributes": {
  3251. "swac_text": "说明",
  3252. "swac_alphaidx": "shuōmíng",
  3253. "swac_pron_phon": "shuōmíng"
  3254. }
  3255. }
  3256. },
  3257. {
  3258. "_attributes": {
  3259. "path": "chi-43b1bbe7.ogg"
  3260. },
  3261. "tag": {
  3262. "_attributes": {
  3263. "swac_text": "接着",
  3264. "swac_alphaidx": "jiēzhe",
  3265. "swac_pron_phon": "jiēzhe"
  3266. }
  3267. }
  3268. },
  3269. {
  3270. "_attributes": {
  3271. "path": "chi-43c8531b.ogg"
  3272. },
  3273. "tag": {
  3274. "_attributes": {
  3275. "swac_text": "满",
  3276. "swac_alphaidx": "mǎn",
  3277. "swac_pron_phon": "mǎn"
  3278. }
  3279. }
  3280. },
  3281. {
  3282. "_attributes": {
  3283. "path": "chi-4437c502.ogg"
  3284. },
  3285. "tag": {
  3286. "_attributes": {
  3287. "swac_text": "记",
  3288. "swac_alphaidx": "jì",
  3289. "swac_pron_phon": "jì"
  3290. }
  3291. }
  3292. },
  3293. {
  3294. "_attributes": {
  3295. "path": "chi-44388596.ogg"
  3296. },
  3297. "tag": {
  3298. "_attributes": {
  3299. "swac_text": "经过",
  3300. "swac_alphaidx": "jīngguò",
  3301. "swac_pron_phon": "jīngguò"
  3302. }
  3303. }
  3304. },
  3305. {
  3306. "_attributes": {
  3307. "path": "chi-44488969.ogg"
  3308. },
  3309. "tag": {
  3310. "_attributes": {
  3311. "swac_text": "政府",
  3312. "swac_alphaidx": "zhèngfǔ",
  3313. "swac_pron_phon": "zhèngfǔ"
  3314. }
  3315. }
  3316. },
  3317. {
  3318. "_attributes": {
  3319. "path": "chi-444e50ad.ogg"
  3320. },
  3321. "tag": {
  3322. "_attributes": {
  3323. "swac_text": "回去",
  3324. "swac_alphaidx": "huíqù",
  3325. "swac_pron_phon": "huíqù"
  3326. }
  3327. }
  3328. },
  3329. {
  3330. "_attributes": {
  3331. "path": "chi-4503596f.ogg"
  3332. },
  3333. "tag": {
  3334. "_attributes": {
  3335. "swac_text": "访问",
  3336. "swac_alphaidx": "fǎngwèn",
  3337. "swac_pron_phon": "fǎngwèn"
  3338. }
  3339. }
  3340. },
  3341. {
  3342. "_attributes": {
  3343. "path": "chi-454deb6a.ogg"
  3344. },
  3345. "tag": {
  3346. "_attributes": {
  3347. "swac_text": "使用",
  3348. "swac_alphaidx": "shǐyòng",
  3349. "swac_pron_phon": "shǐyòng"
  3350. }
  3351. }
  3352. },
  3353. {
  3354. "_attributes": {
  3355. "path": "chi-46033933.ogg"
  3356. },
  3357. "tag": {
  3358. "_attributes": {
  3359. "swac_text": "擦",
  3360. "swac_alphaidx": "cā",
  3361. "swac_pron_phon": "cā"
  3362. }
  3363. }
  3364. },
  3365. {
  3366. "_attributes": {
  3367. "path": "chi-4647307c.ogg"
  3368. },
  3369. "tag": {
  3370. "_attributes": {
  3371. "swac_text": "介绍",
  3372. "swac_alphaidx": "jièshào",
  3373. "swac_pron_phon": "jièshào"
  3374. }
  3375. }
  3376. },
  3377. {
  3378. "_attributes": {
  3379. "path": "chi-4668426e.ogg"
  3380. },
  3381. "tag": {
  3382. "_attributes": {
  3383. "swac_text": "每",
  3384. "swac_alphaidx": "měi",
  3385. "swac_pron_phon": "měi"
  3386. }
  3387. }
  3388. },
  3389. {
  3390. "_attributes": {
  3391. "path": "chi-46ab9acc.ogg"
  3392. },
  3393. "tag": {
  3394. "_attributes": {
  3395. "swac_text": "但是",
  3396. "swac_alphaidx": "dànshì",
  3397. "swac_pron_phon": "dànshì"
  3398. }
  3399. }
  3400. },
  3401. {
  3402. "_attributes": {
  3403. "path": "chi-46d9b346.ogg"
  3404. },
  3405. "tag": {
  3406. "_attributes": {
  3407. "swac_text": "胜利",
  3408. "swac_alphaidx": "shènglì",
  3409. "swac_pron_phon": "shènglì"
  3410. }
  3411. }
  3412. },
  3413. {
  3414. "_attributes": {
  3415. "path": "chi-46ec3cc7.ogg"
  3416. },
  3417. "tag": {
  3418. "_attributes": {
  3419. "swac_text": "点心",
  3420. "swac_alphaidx": "diǎnxin",
  3421. "swac_pron_phon": "diǎnxin"
  3422. }
  3423. }
  3424. },
  3425. {
  3426. "_attributes": {
  3427. "path": "chi-4700bc8c.ogg"
  3428. },
  3429. "tag": {
  3430. "_attributes": {
  3431. "swac_text": "月",
  3432. "swac_alphaidx": "yuè",
  3433. "swac_pron_phon": "yuè"
  3434. }
  3435. }
  3436. },
  3437. {
  3438. "_attributes": {
  3439. "path": "chi-470ae9d0.ogg"
  3440. },
  3441. "tag": {
  3442. "_attributes": {
  3443. "swac_text": "的",
  3444. "swac_alphaidx": "de",
  3445. "swac_pron_phon": "de"
  3446. }
  3447. }
  3448. },
  3449. {
  3450. "_attributes": {
  3451. "path": "chi-475b9758.ogg"
  3452. },
  3453. "tag": {
  3454. "_attributes": {
  3455. "swac_text": "赢",
  3456. "swac_alphaidx": "yíng",
  3457. "swac_pron_phon": "yíng"
  3458. }
  3459. }
  3460. },
  3461. {
  3462. "_attributes": {
  3463. "path": "chi-4760e59d.ogg"
  3464. },
  3465. "tag": {
  3466. "_attributes": {
  3467. "swac_text": "东",
  3468. "swac_alphaidx": "dōng",
  3469. "swac_pron_phon": "dōng"
  3470. }
  3471. }
  3472. },
  3473. {
  3474. "_attributes": {
  3475. "path": "chi-47f97fdc.ogg"
  3476. },
  3477. "tag": {
  3478. "_attributes": {
  3479. "swac_text": "来",
  3480. "swac_alphaidx": "lái",
  3481. "swac_pron_phon": "lái"
  3482. }
  3483. }
  3484. },
  3485. {
  3486. "_attributes": {
  3487. "path": "chi-480dd630.ogg"
  3488. },
  3489. "tag": {
  3490. "_attributes": {
  3491. "swac_text": "外国",
  3492. "swac_alphaidx": "wàiguó",
  3493. "swac_pron_phon": "wàiguó"
  3494. }
  3495. }
  3496. },
  3497. {
  3498. "_attributes": {
  3499. "path": "chi-485b7463.ogg"
  3500. },
  3501. "tag": {
  3502. "_attributes": {
  3503. "swac_text": "要是",
  3504. "swac_alphaidx": "yàoshi",
  3505. "swac_pron_phon": "yàoshi"
  3506. }
  3507. }
  3508. },
  3509. {
  3510. "_attributes": {
  3511. "path": "chi-48c18db6.ogg"
  3512. },
  3513. "tag": {
  3514. "_attributes": {
  3515. "swac_text": "现代",
  3516. "swac_alphaidx": "xiàndài",
  3517. "swac_pron_phon": "xiàndài"
  3518. }
  3519. }
  3520. },
  3521. {
  3522. "_attributes": {
  3523. "path": "chi-4913d073.ogg"
  3524. },
  3525. "tag": {
  3526. "_attributes": {
  3527. "swac_text": "米",
  3528. "swac_alphaidx": "mǐ",
  3529. "swac_pron_phon": "mǐ"
  3530. }
  3531. }
  3532. },
  3533. {
  3534. "_attributes": {
  3535. "path": "chi-49265cb9.ogg"
  3536. },
  3537. "tag": {
  3538. "_attributes": {
  3539. "swac_text": "教",
  3540. "swac_alphaidx": "jiāo",
  3541. "swac_pron_phon": "jiāo"
  3542. }
  3543. }
  3544. },
  3545. {
  3546. "_attributes": {
  3547. "path": "chi-49366f6a.ogg"
  3548. },
  3549. "tag": {
  3550. "_attributes": {
  3551. "swac_text": "今天",
  3552. "swac_alphaidx": "jīntiān",
  3553. "swac_pron_phon": "jīntiān"
  3554. }
  3555. }
  3556. },
  3557. {
  3558. "_attributes": {
  3559. "path": "chi-4a119dce.ogg"
  3560. },
  3561. "tag": {
  3562. "_attributes": {
  3563. "swac_text": "有时候",
  3564. "swac_alphaidx": "yǒushíhou",
  3565. "swac_pron_phon": "yǒushíhou"
  3566. }
  3567. }
  3568. },
  3569. {
  3570. "_attributes": {
  3571. "path": "chi-4a4c4329.ogg"
  3572. },
  3573. "tag": {
  3574. "_attributes": {
  3575. "swac_text": "容易",
  3576. "swac_alphaidx": "róngyì",
  3577. "swac_pron_phon": "róngyì"
  3578. }
  3579. }
  3580. },
  3581. {
  3582. "_attributes": {
  3583. "path": "chi-4a729569.ogg"
  3584. },
  3585. "tag": {
  3586. "_attributes": {
  3587. "swac_text": "坚持",
  3588. "swac_alphaidx": "jiānchí",
  3589. "swac_pron_phon": "jiānchí"
  3590. }
  3591. }
  3592. },
  3593. {
  3594. "_attributes": {
  3595. "path": "chi-4aa00965.ogg"
  3596. },
  3597. "tag": {
  3598. "_attributes": {
  3599. "swac_text": "想",
  3600. "swac_alphaidx": "xiǎng",
  3601. "swac_pron_phon": "xiǎng"
  3602. }
  3603. }
  3604. },
  3605. {
  3606. "_attributes": {
  3607. "path": "chi-4af33b3b.ogg"
  3608. },
  3609. "tag": {
  3610. "_attributes": {
  3611. "swac_text": "晚",
  3612. "swac_alphaidx": "wǎn",
  3613. "swac_pron_phon": "wǎn"
  3614. }
  3615. }
  3616. },
  3617. {
  3618. "_attributes": {
  3619. "path": "chi-4b0be6d0.ogg"
  3620. },
  3621. "tag": {
  3622. "_attributes": {
  3623. "swac_text": "寒假",
  3624. "swac_alphaidx": "hánjià",
  3625. "swac_pron_phon": "hánjià"
  3626. }
  3627. }
  3628. },
  3629. {
  3630. "_attributes": {
  3631. "path": "chi-4b76610a.ogg"
  3632. },
  3633. "tag": {
  3634. "_attributes": {
  3635. "swac_text": "脏",
  3636. "swac_alphaidx": "zāng",
  3637. "swac_pron_phon": "zāng"
  3638. }
  3639. }
  3640. },
  3641. {
  3642. "_attributes": {
  3643. "path": "chi-4bee62ef.ogg"
  3644. },
  3645. "tag": {
  3646. "_attributes": {
  3647. "swac_text": "附近",
  3648. "swac_alphaidx": "fùjìn",
  3649. "swac_pron_phon": "fùjìn"
  3650. }
  3651. }
  3652. },
  3653. {
  3654. "_attributes": {
  3655. "path": "chi-4c056d78.ogg"
  3656. },
  3657. "tag": {
  3658. "_attributes": {
  3659. "swac_text": "踢",
  3660. "swac_alphaidx": "tī",
  3661. "swac_pron_phon": "tī"
  3662. }
  3663. }
  3664. },
  3665. {
  3666. "_attributes": {
  3667. "path": "chi-4c0e7ede.ogg"
  3668. },
  3669. "tag": {
  3670. "_attributes": {
  3671. "swac_text": "件",
  3672. "swac_alphaidx": "jiàn",
  3673. "swac_pron_phon": "jiàn"
  3674. }
  3675. }
  3676. },
  3677. {
  3678. "_attributes": {
  3679. "path": "chi-4c6fd5bb.ogg"
  3680. },
  3681. "tag": {
  3682. "_attributes": {
  3683. "swac_text": "咱",
  3684. "swac_alphaidx": "zán",
  3685. "swac_pron_phon": "zán"
  3686. }
  3687. }
  3688. },
  3689. {
  3690. "_attributes": {
  3691. "path": "chi-4ce2c989.ogg"
  3692. },
  3693. "tag": {
  3694. "_attributes": {
  3695. "swac_text": "谈",
  3696. "swac_alphaidx": "tán",
  3697. "swac_pron_phon": "tán"
  3698. }
  3699. }
  3700. },
  3701. {
  3702. "_attributes": {
  3703. "path": "chi-4d000786.ogg"
  3704. },
  3705. "tag": {
  3706. "_attributes": {
  3707. "swac_text": "团结",
  3708. "swac_alphaidx": "tuánjié",
  3709. "swac_pron_phon": "tuánjié"
  3710. }
  3711. }
  3712. },
  3713. {
  3714. "_attributes": {
  3715. "path": "chi-4d1df6ae.ogg"
  3716. },
  3717. "tag": {
  3718. "_attributes": {
  3719. "swac_text": "啦",
  3720. "swac_alphaidx": "la",
  3721. "swac_pron_phon": "la"
  3722. }
  3723. }
  3724. },
  3725. {
  3726. "_attributes": {
  3727. "path": "chi-4da3ea51.ogg"
  3728. },
  3729. "tag": {
  3730. "_attributes": {
  3731. "swac_text": "讨论",
  3732. "swac_alphaidx": "tǎolùn",
  3733. "swac_pron_phon": "tǎolùn"
  3734. }
  3735. }
  3736. },
  3737. {
  3738. "_attributes": {
  3739. "path": "chi-4e0cacfd.ogg"
  3740. },
  3741. "tag": {
  3742. "_attributes": {
  3743. "swac_text": "省",
  3744. "swac_alphaidx": "shěng",
  3745. "swac_pron_phon": "shěng"
  3746. }
  3747. }
  3748. },
  3749. {
  3750. "_attributes": {
  3751. "path": "chi-4e54b7fd.ogg"
  3752. },
  3753. "tag": {
  3754. "_attributes": {
  3755. "swac_text": "条",
  3756. "swac_alphaidx": "tiáo",
  3757. "swac_pron_phon": "tiáo"
  3758. }
  3759. }
  3760. },
  3761. {
  3762. "_attributes": {
  3763. "path": "chi-4e785f19.ogg"
  3764. },
  3765. "tag": {
  3766. "_attributes": {
  3767. "swac_text": "语言",
  3768. "swac_alphaidx": "yǔyán",
  3769. "swac_pron_phon": "yǔyán"
  3770. }
  3771. }
  3772. },
  3773. {
  3774. "_attributes": {
  3775. "path": "chi-4e926c13.ogg"
  3776. },
  3777. "tag": {
  3778. "_attributes": {
  3779. "swac_text": "政治",
  3780. "swac_alphaidx": "zhèngzhì",
  3781. "swac_pron_phon": "zhèngzhì"
  3782. }
  3783. }
  3784. },
  3785. {
  3786. "_attributes": {
  3787. "path": "chi-4ebf92ad.ogg"
  3788. },
  3789. "tag": {
  3790. "_attributes": {
  3791. "swac_text": "增加",
  3792. "swac_alphaidx": "zēngjiā",
  3793. "swac_pron_phon": "zēngjiā"
  3794. }
  3795. }
  3796. },
  3797. {
  3798. "_attributes": {
  3799. "path": "chi-4eca912c.ogg"
  3800. },
  3801. "tag": {
  3802. "_attributes": {
  3803. "swac_text": "二",
  3804. "swac_alphaidx": "èr",
  3805. "swac_pron_phon": "èr"
  3806. }
  3807. }
  3808. },
  3809. {
  3810. "_attributes": {
  3811. "path": "chi-4f449f04.ogg"
  3812. },
  3813. "tag": {
  3814. "_attributes": {
  3815. "swac_text": "打算",
  3816. "swac_alphaidx": "dǎsuàn",
  3817. "swac_pron_phon": "dǎsuàn"
  3818. }
  3819. }
  3820. },
  3821. {
  3822. "_attributes": {
  3823. "path": "chi-5013738f.ogg"
  3824. },
  3825. "tag": {
  3826. "_attributes": {
  3827. "swac_text": "而且",
  3828. "swac_alphaidx": "érqiě",
  3829. "swac_pron_phon": "érqiě"
  3830. }
  3831. }
  3832. },
  3833. {
  3834. "_attributes": {
  3835. "path": "chi-50394369.ogg"
  3836. },
  3837. "tag": {
  3838. "_attributes": {
  3839. "swac_text": "第",
  3840. "swac_alphaidx": "dì",
  3841. "swac_pron_phon": "dì"
  3842. }
  3843. }
  3844. },
  3845. {
  3846. "_attributes": {
  3847. "path": "chi-50c84393.ogg"
  3848. },
  3849. "tag": {
  3850. "_attributes": {
  3851. "swac_text": "数学",
  3852. "swac_alphaidx": "shùxué",
  3853. "swac_pron_phon": "shùxué"
  3854. }
  3855. }
  3856. },
  3857. {
  3858. "_attributes": {
  3859. "path": "chi-5133ad1a.ogg"
  3860. },
  3861. "tag": {
  3862. "_attributes": {
  3863. "swac_text": "封",
  3864. "swac_alphaidx": "fēng",
  3865. "swac_pron_phon": "fēng"
  3866. }
  3867. }
  3868. },
  3869. {
  3870. "_attributes": {
  3871. "path": "chi-5141b376.ogg"
  3872. },
  3873. "tag": {
  3874. "_attributes": {
  3875. "swac_text": "结束",
  3876. "swac_alphaidx": "jiéshù",
  3877. "swac_pron_phon": "jiéshù"
  3878. }
  3879. }
  3880. },
  3881. {
  3882. "_attributes": {
  3883. "path": "chi-5193ab94.ogg"
  3884. },
  3885. "tag": {
  3886. "_attributes": {
  3887. "swac_text": "工作",
  3888. "swac_alphaidx": "gōngzuò",
  3889. "swac_pron_phon": "gōngzuò"
  3890. }
  3891. }
  3892. },
  3893. {
  3894. "_attributes": {
  3895. "path": "chi-51a88a92.ogg"
  3896. },
  3897. "tag": {
  3898. "_attributes": {
  3899. "swac_text": "伟大",
  3900. "swac_alphaidx": "wěidà",
  3901. "swac_pron_phon": "wěidà"
  3902. }
  3903. }
  3904. },
  3905. {
  3906. "_attributes": {
  3907. "path": "chi-51d05e55.ogg"
  3908. },
  3909. "tag": {
  3910. "_attributes": {
  3911. "swac_text": "再见",
  3912. "swac_alphaidx": "zàijiàn",
  3913. "swac_pron_phon": "zàijiàn"
  3914. }
  3915. }
  3916. },
  3917. {
  3918. "_attributes": {
  3919. "path": "chi-52cd1c59.ogg"
  3920. },
  3921. "tag": {
  3922. "_attributes": {
  3923. "swac_text": "永远",
  3924. "swac_alphaidx": "yǒngyuǎn",
  3925. "swac_pron_phon": "yǒngyuǎn"
  3926. }
  3927. }
  3928. },
  3929. {
  3930. "_attributes": {
  3931. "path": "chi-52d4f31c.ogg"
  3932. },
  3933. "tag": {
  3934. "_attributes": {
  3935. "swac_text": "课文",
  3936. "swac_alphaidx": "kèwén",
  3937. "swac_pron_phon": "kèwén"
  3938. }
  3939. }
  3940. },
  3941. {
  3942. "_attributes": {
  3943. "path": "chi-52dedabe.ogg"
  3944. },
  3945. "tag": {
  3946. "_attributes": {
  3947. "swac_text": "国家",
  3948. "swac_alphaidx": "guójiā",
  3949. "swac_pron_phon": "guójiā"
  3950. }
  3951. }
  3952. },
  3953. {
  3954. "_attributes": {
  3955. "path": "chi-52df8b2e.ogg"
  3956. },
  3957. "tag": {
  3958. "_attributes": {
  3959. "swac_text": "不要",
  3960. "swac_alphaidx": "búyào",
  3961. "swac_pron_phon": "búyào"
  3962. }
  3963. }
  3964. },
  3965. {
  3966. "_attributes": {
  3967. "path": "chi-538ed92b.ogg"
  3968. },
  3969. "tag": {
  3970. "_attributes": {
  3971. "swac_text": "山",
  3972. "swac_alphaidx": "shān",
  3973. "swac_pron_phon": "shān"
  3974. }
  3975. }
  3976. },
  3977. {
  3978. "_attributes": {
  3979. "path": "chi-53b6b004.ogg"
  3980. },
  3981. "tag": {
  3982. "_attributes": {
  3983. "swac_text": "衣服",
  3984. "swac_alphaidx": "yīfu",
  3985. "swac_pron_phon": "yīfu"
  3986. }
  3987. }
  3988. },
  3989. {
  3990. "_attributes": {
  3991. "path": "chi-53be836a.ogg"
  3992. },
  3993. "tag": {
  3994. "_attributes": {
  3995. "swac_text": "磁带",
  3996. "swac_alphaidx": "cídài",
  3997. "swac_pron_phon": "cídài"
  3998. }
  3999. }
  4000. },
  4001. {
  4002. "_attributes": {
  4003. "path": "chi-53d229a8.ogg"
  4004. },
  4005. "tag": {
  4006. "_attributes": {
  4007. "swac_text": "夏天",
  4008. "swac_alphaidx": "xiàtiān",
  4009. "swac_pron_phon": "xiàtiān"
  4010. }
  4011. }
  4012. },
  4013. {
  4014. "_attributes": {
  4015. "path": "chi-53e75a27.ogg"
  4016. },
  4017. "tag": {
  4018. "_attributes": {
  4019. "swac_text": "中",
  4020. "swac_alphaidx": "zhōng",
  4021. "swac_pron_phon": "zhōng"
  4022. }
  4023. }
  4024. },
  4025. {
  4026. "_attributes": {
  4027. "path": "chi-53ebc6c5.ogg"
  4028. },
  4029. "tag": {
  4030. "_attributes": {
  4031. "swac_text": "信封",
  4032. "swac_alphaidx": "xìnfēng",
  4033. "swac_pron_phon": "xìnfēng"
  4034. }
  4035. }
  4036. },
  4037. {
  4038. "_attributes": {
  4039. "path": "chi-53f2d1a7.ogg"
  4040. },
  4041. "tag": {
  4042. "_attributes": {
  4043. "swac_text": "事",
  4044. "swac_alphaidx": "shì",
  4045. "swac_pron_phon": "shì"
  4046. }
  4047. }
  4048. },
  4049. {
  4050. "_attributes": {
  4051. "path": "chi-54310d17.ogg"
  4052. },
  4053. "tag": {
  4054. "_attributes": {
  4055. "swac_text": "工业",
  4056. "swac_alphaidx": "gōngyè",
  4057. "swac_pron_phon": "gōngyè"
  4058. }
  4059. }
  4060. },
  4061. {
  4062. "_attributes": {
  4063. "path": "chi-5452268e.ogg"
  4064. },
  4065. "tag": {
  4066. "_attributes": {
  4067. "swac_text": "河",
  4068. "swac_alphaidx": "hé",
  4069. "swac_pron_phon": "hé"
  4070. }
  4071. }
  4072. },
  4073. {
  4074. "_attributes": {
  4075. "path": "chi-54f7b9c8.ogg"
  4076. },
  4077. "tag": {
  4078. "_attributes": {
  4079. "swac_text": "展览",
  4080. "swac_alphaidx": "zhǎnlǎn",
  4081. "swac_pron_phon": "zhǎnlǎn"
  4082. }
  4083. }
  4084. },
  4085. {
  4086. "_attributes": {
  4087. "path": "chi-551d3de3.ogg"
  4088. },
  4089. "tag": {
  4090. "_attributes": {
  4091. "swac_text": "床",
  4092. "swac_alphaidx": "chuáng",
  4093. "swac_pron_phon": "chuáng"
  4094. }
  4095. }
  4096. },
  4097. {
  4098. "_attributes": {
  4099. "path": "chi-55326c67.ogg"
  4100. },
  4101. "tag": {
  4102. "_attributes": {
  4103. "swac_text": "师傅",
  4104. "swac_alphaidx": "shīfu",
  4105. "swac_pron_phon": "shīfu"
  4106. }
  4107. }
  4108. },
  4109. {
  4110. "_attributes": {
  4111. "path": "chi-55695839.ogg"
  4112. },
  4113. "tag": {
  4114. "_attributes": {
  4115. "swac_text": "看病",
  4116. "swac_alphaidx": "kànbìng",
  4117. "swac_pron_phon": "kànbìng"
  4118. }
  4119. }
  4120. },
  4121. {
  4122. "_attributes": {
  4123. "path": "chi-5593ad17.ogg"
  4124. },
  4125. "tag": {
  4126. "_attributes": {
  4127. "swac_text": "大",
  4128. "swac_alphaidx": "dà",
  4129. "swac_pron_phon": "dà"
  4130. }
  4131. }
  4132. },
  4133. {
  4134. "_attributes": {
  4135. "path": "chi-55acc040.ogg"
  4136. },
  4137. "tag": {
  4138. "_attributes": {
  4139. "swac_text": "鞋",
  4140. "swac_alphaidx": "xié",
  4141. "swac_pron_phon": "xié"
  4142. }
  4143. }
  4144. },
  4145. {
  4146. "_attributes": {
  4147. "path": "chi-56239123.ogg"
  4148. },
  4149. "tag": {
  4150. "_attributes": {
  4151. "swac_text": "鸡蛋",
  4152. "swac_alphaidx": "jīdàn",
  4153. "swac_pron_phon": "jīdàn"
  4154. }
  4155. }
  4156. },
  4157. {
  4158. "_attributes": {
  4159. "path": "chi-56fc3a95.ogg"
  4160. },
  4161. "tag": {
  4162. "_attributes": {
  4163. "swac_text": "觉得",
  4164. "swac_alphaidx": "juéde",
  4165. "swac_pron_phon": "juéde"
  4166. }
  4167. }
  4168. },
  4169. {
  4170. "_attributes": {
  4171. "path": "chi-5722f324.ogg"
  4172. },
  4173. "tag": {
  4174. "_attributes": {
  4175. "swac_text": "抬",
  4176. "swac_alphaidx": "tái",
  4177. "swac_pron_phon": "tái"
  4178. }
  4179. }
  4180. },
  4181. {
  4182. "_attributes": {
  4183. "path": "chi-5760c7ed.ogg"
  4184. },
  4185. "tag": {
  4186. "_attributes": {
  4187. "swac_text": "时候",
  4188. "swac_alphaidx": "shíhou",
  4189. "swac_pron_phon": "shíhou"
  4190. }
  4191. }
  4192. },
  4193. {
  4194. "_attributes": {
  4195. "path": "chi-57faa40e.ogg"
  4196. },
  4197. "tag": {
  4198. "_attributes": {
  4199. "swac_text": "留",
  4200. "swac_alphaidx": "liú",
  4201. "swac_pron_phon": "liú"
  4202. }
  4203. }
  4204. },
  4205. {
  4206. "_attributes": {
  4207. "path": "chi-58074329.ogg"
  4208. },
  4209. "tag": {
  4210. "_attributes": {
  4211. "swac_text": "画儿",
  4212. "swac_alphaidx": "huàr",
  4213. "swac_pron_phon": "huàr"
  4214. }
  4215. }
  4216. },
  4217. {
  4218. "_attributes": {
  4219. "path": "chi-5919ddf8.ogg"
  4220. },
  4221. "tag": {
  4222. "_attributes": {
  4223. "swac_text": "部分",
  4224. "swac_alphaidx": "bùfen",
  4225. "swac_pron_phon": "bùfen"
  4226. }
  4227. }
  4228. },
  4229. {
  4230. "_attributes": {
  4231. "path": "chi-591deed7.ogg"
  4232. },
  4233. "tag": {
  4234. "_attributes": {
  4235. "swac_text": "成",
  4236. "swac_alphaidx": "chéng",
  4237. "swac_pron_phon": "chéng"
  4238. }
  4239. }
  4240. },
  4241. {
  4242. "_attributes": {
  4243. "path": "chi-59300740.ogg"
  4244. },
  4245. "tag": {
  4246. "_attributes": {
  4247. "swac_text": "文艺",
  4248. "swac_alphaidx": "wényì",
  4249. "swac_pron_phon": "wényì"
  4250. }
  4251. }
  4252. },
  4253. {
  4254. "_attributes": {
  4255. "path": "chi-59a26bd1.ogg"
  4256. },
  4257. "tag": {
  4258. "_attributes": {
  4259. "swac_text": "茶",
  4260. "swac_alphaidx": "chá",
  4261. "swac_pron_phon": "chá"
  4262. }
  4263. }
  4264. },
  4265. {
  4266. "_attributes": {
  4267. "path": "chi-59cea427.ogg"
  4268. },
  4269. "tag": {
  4270. "_attributes": {
  4271. "swac_text": "雪",
  4272. "swac_alphaidx": "xuě",
  4273. "swac_pron_phon": "xuě"
  4274. }
  4275. }
  4276. },
  4277. {
  4278. "_attributes": {
  4279. "path": "chi-59f6df3b.ogg"
  4280. },
  4281. "tag": {
  4282. "_attributes": {
  4283. "swac_text": "女儿",
  4284. "swac_alphaidx": "nǚér",
  4285. "swac_pron_phon": "nǚér"
  4286. }
  4287. }
  4288. },
  4289. {
  4290. "_attributes": {
  4291. "path": "chi-5a34e159.ogg"
  4292. },
  4293. "tag": {
  4294. "_attributes": {
  4295. "swac_text": "足球",
  4296. "swac_alphaidx": "zúqiú",
  4297. "swac_pron_phon": "zúqiú"
  4298. }
  4299. }
  4300. },
  4301. {
  4302. "_attributes": {
  4303. "path": "chi-5a764ab3.ogg"
  4304. },
  4305. "tag": {
  4306. "_attributes": {
  4307. "swac_text": "离",
  4308. "swac_alphaidx": "lí",
  4309. "swac_pron_phon": "lí"
  4310. }
  4311. }
  4312. },
  4313. {
  4314. "_attributes": {
  4315. "path": "chi-5acdc3ce.ogg"
  4316. },
  4317. "tag": {
  4318. "_attributes": {
  4319. "swac_text": "小",
  4320. "swac_alphaidx": "xiǎo",
  4321. "swac_pron_phon": "xiǎo"
  4322. }
  4323. }
  4324. },
  4325. {
  4326. "_attributes": {
  4327. "path": "chi-5b0329f8.ogg"
  4328. },
  4329. "tag": {
  4330. "_attributes": {
  4331. "swac_text": "根",
  4332. "swac_alphaidx": "gēn",
  4333. "swac_pron_phon": "gēn"
  4334. }
  4335. }
  4336. },
  4337. {
  4338. "_attributes": {
  4339. "path": "chi-5b2508d8.ogg"
  4340. },
  4341. "tag": {
  4342. "_attributes": {
  4343. "swac_text": "突然",
  4344. "swac_alphaidx": "tūrán",
  4345. "swac_pron_phon": "tūrán"
  4346. }
  4347. }
  4348. },
  4349. {
  4350. "_attributes": {
  4351. "path": "chi-5b366cae.ogg"
  4352. },
  4353. "tag": {
  4354. "_attributes": {
  4355. "swac_text": "八",
  4356. "swac_alphaidx": "bā",
  4357. "swac_pron_phon": "bā"
  4358. }
  4359. }
  4360. },
  4361. {
  4362. "_attributes": {
  4363. "path": "chi-5b7c4762.ogg"
  4364. },
  4365. "tag": {
  4366. "_attributes": {
  4367. "swac_text": "活",
  4368. "swac_alphaidx": "huó",
  4369. "swac_pron_phon": "huó"
  4370. }
  4371. }
  4372. },
  4373. {
  4374. "_attributes": {
  4375. "path": "chi-5c7b9694.ogg"
  4376. },
  4377. "tag": {
  4378. "_attributes": {
  4379. "swac_text": "手表",
  4380. "swac_alphaidx": "shǒubiǎo",
  4381. "swac_pron_phon": "shǒubiǎo"
  4382. }
  4383. }
  4384. },
  4385. {
  4386. "_attributes": {
  4387. "path": "chi-5ca21b73.ogg"
  4388. },
  4389. "tag": {
  4390. "_attributes": {
  4391. "swac_text": "反对",
  4392. "swac_alphaidx": "fǎnduì",
  4393. "swac_pron_phon": "fǎnduì"
  4394. }
  4395. }
  4396. },
  4397. {
  4398. "_attributes": {
  4399. "path": "chi-5cbe963a.ogg"
  4400. },
  4401. "tag": {
  4402. "_attributes": {
  4403. "swac_text": "从_起",
  4404. "swac_alphaidx": "cóng_qǐ",
  4405. "swac_pron_phon": "cóng_qǐ"
  4406. }
  4407. }
  4408. },
  4409. {
  4410. "_attributes": {
  4411. "path": "chi-5d0355b3.ogg"
  4412. },
  4413. "tag": {
  4414. "_attributes": {
  4415. "swac_text": "得很",
  4416. "swac_alphaidx": "dehěn",
  4417. "swac_pron_phon": "dehěn"
  4418. }
  4419. }
  4420. },
  4421. {
  4422. "_attributes": {
  4423. "path": "chi-5deaf0cd.ogg"
  4424. },
  4425. "tag": {
  4426. "_attributes": {
  4427. "swac_text": "正在",
  4428. "swac_alphaidx": "zhèngzài",
  4429. "swac_pron_phon": "zhèngzài"
  4430. }
  4431. }
  4432. },
  4433. {
  4434. "_attributes": {
  4435. "path": "chi-5dfad60c.ogg"
  4436. },
  4437. "tag": {
  4438. "_attributes": {
  4439. "swac_text": "哥哥",
  4440. "swac_alphaidx": "gēge",
  4441. "swac_pron_phon": "gēge"
  4442. }
  4443. }
  4444. },
  4445. {
  4446. "_attributes": {
  4447. "path": "chi-5e035aaa.ogg"
  4448. },
  4449. "tag": {
  4450. "_attributes": {
  4451. "swac_text": "乱",
  4452. "swac_alphaidx": "luàn",
  4453. "swac_pron_phon": "luàn"
  4454. }
  4455. }
  4456. },
  4457. {
  4458. "_attributes": {
  4459. "path": "chi-5e1172b8.ogg"
  4460. },
  4461. "tag": {
  4462. "_attributes": {
  4463. "swac_text": "她",
  4464. "swac_alphaidx": "tā",
  4465. "swac_pron_phon": "tā"
  4466. }
  4467. }
  4468. },
  4469. {
  4470. "_attributes": {
  4471. "path": "chi-5e4162bb.ogg"
  4472. },
  4473. "tag": {
  4474. "_attributes": {
  4475. "swac_text": "服务",
  4476. "swac_alphaidx": "fúwù",
  4477. "swac_pron_phon": "fúwù"
  4478. }
  4479. }
  4480. },
  4481. {
  4482. "_attributes": {
  4483. "path": "chi-5f151152.ogg"
  4484. },
  4485. "tag": {
  4486. "_attributes": {
  4487. "swac_text": "当",
  4488. "swac_alphaidx": "dāng",
  4489. "swac_pron_phon": "dāng"
  4490. }
  4491. }
  4492. },
  4493. {
  4494. "_attributes": {
  4495. "path": "chi-5f2d52a8.ogg"
  4496. },
  4497. "tag": {
  4498. "_attributes": {
  4499. "swac_text": "算",
  4500. "swac_alphaidx": "suàn",
  4501. "swac_pron_phon": "suàn"
  4502. }
  4503. }
  4504. },
  4505. {
  4506. "_attributes": {
  4507. "path": "chi-5f32b010.ogg"
  4508. },
  4509. "tag": {
  4510. "_attributes": {
  4511. "swac_text": "工人",
  4512. "swac_alphaidx": "gōngrén",
  4513. "swac_pron_phon": "gōngrén"
  4514. }
  4515. }
  4516. },
  4517. {
  4518. "_attributes": {
  4519. "path": "chi-5fda963d.ogg"
  4520. },
  4521. "tag": {
  4522. "_attributes": {
  4523. "swac_text": "去年",
  4524. "swac_alphaidx": "qùnián",
  4525. "swac_pron_phon": "qùnián"
  4526. }
  4527. }
  4528. },
  4529. {
  4530. "_attributes": {
  4531. "path": "chi-5feb9591.ogg"
  4532. },
  4533. "tag": {
  4534. "_attributes": {
  4535. "swac_text": "呐",
  4536. "swac_alphaidx": "na",
  4537. "swac_pron_phon": "na"
  4538. }
  4539. }
  4540. },
  4541. {
  4542. "_attributes": {
  4543. "path": "chi-606e6570.ogg"
  4544. },
  4545. "tag": {
  4546. "_attributes": {
  4547. "swac_text": "锻炼",
  4548. "swac_alphaidx": "duànliàn",
  4549. "swac_pron_phon": "duànliàn"
  4550. }
  4551. }
  4552. },
  4553. {
  4554. "_attributes": {
  4555. "path": "chi-6085b98e.ogg"
  4556. },
  4557. "tag": {
  4558. "_attributes": {
  4559. "swac_text": "咱们",
  4560. "swac_alphaidx": "zánmen",
  4561. "swac_pron_phon": "zánmen"
  4562. }
  4563. }
  4564. },
  4565. {
  4566. "_attributes": {
  4567. "path": "chi-60cba6c5.ogg"
  4568. },
  4569. "tag": {
  4570. "_attributes": {
  4571. "swac_text": "科学",
  4572. "swac_alphaidx": "kēxué",
  4573. "swac_pron_phon": "kēxué"
  4574. }
  4575. }
  4576. },
  4577. {
  4578. "_attributes": {
  4579. "path": "chi-60f2dada.ogg"
  4580. },
  4581. "tag": {
  4582. "_attributes": {
  4583. "swac_text": "桌子",
  4584. "swac_alphaidx": "zhuōzi",
  4585. "swac_pron_phon": "zhuōzi"
  4586. }
  4587. }
  4588. },
  4589. {
  4590. "_attributes": {
  4591. "path": "chi-60fdcd5d.ogg"
  4592. },
  4593. "tag": {
  4594. "_attributes": {
  4595. "swac_text": "快",
  4596. "swac_alphaidx": "kuài",
  4597. "swac_pron_phon": "kuài"
  4598. }
  4599. }
  4600. },
  4601. {
  4602. "_attributes": {
  4603. "path": "chi-612d32b1.ogg"
  4604. },
  4605. "tag": {
  4606. "_attributes": {
  4607. "swac_text": "啊",
  4608. "swac_alphaidx": "ā",
  4609. "swac_pron_phon": "ā"
  4610. }
  4611. }
  4612. },
  4613. {
  4614. "_attributes": {
  4615. "path": "chi-61542e2d.ogg"
  4616. },
  4617. "tag": {
  4618. "_attributes": {
  4619. "swac_text": "开始",
  4620. "swac_alphaidx": "kāishǐ",
  4621. "swac_pron_phon": "kāishǐ"
  4622. }
  4623. }
  4624. },
  4625. {
  4626. "_attributes": {
  4627. "path": "chi-6212fec0.ogg"
  4628. },
  4629. "tag": {
  4630. "_attributes": {
  4631. "swac_text": "办",
  4632. "swac_alphaidx": "bàn",
  4633. "swac_pron_phon": "bàn"
  4634. }
  4635. }
  4636. },
  4637. {
  4638. "_attributes": {
  4639. "path": "chi-621ec34c.ogg"
  4640. },
  4641. "tag": {
  4642. "_attributes": {
  4643. "swac_text": "这",
  4644. "swac_alphaidx": "zhè",
  4645. "swac_pron_phon": "zhè"
  4646. }
  4647. }
  4648. },
  4649. {
  4650. "_attributes": {
  4651. "path": "chi-6227d66a.ogg"
  4652. },
  4653. "tag": {
  4654. "_attributes": {
  4655. "swac_text": "西",
  4656. "swac_alphaidx": "xī",
  4657. "swac_pron_phon": "xī"
  4658. }
  4659. }
  4660. },
  4661. {
  4662. "_attributes": {
  4663. "path": "chi-62376c25.ogg"
  4664. },
  4665. "tag": {
  4666. "_attributes": {
  4667. "swac_text": "听写",
  4668. "swac_alphaidx": "tīngxiě",
  4669. "swac_pron_phon": "tīngxiě"
  4670. }
  4671. }
  4672. },
  4673. {
  4674. "_attributes": {
  4675. "path": "chi-623cfabf.ogg"
  4676. },
  4677. "tag": {
  4678. "_attributes": {
  4679. "swac_text": "国",
  4680. "swac_alphaidx": "guó",
  4681. "swac_pron_phon": "guó"
  4682. }
  4683. }
  4684. },
  4685. {
  4686. "_attributes": {
  4687. "path": "chi-6254eb48.ogg"
  4688. },
  4689. "tag": {
  4690. "_attributes": {
  4691. "swac_text": "年",
  4692. "swac_alphaidx": "nián",
  4693. "swac_pron_phon": "nián"
  4694. }
  4695. }
  4696. },
  4697. {
  4698. "_attributes": {
  4699. "path": "chi-628ff6f9.ogg"
  4700. },
  4701. "tag": {
  4702. "_attributes": {
  4703. "swac_text": "了",
  4704. "swac_alphaidx": "le",
  4705. "swac_pron_phon": "le"
  4706. }
  4707. }
  4708. },
  4709. {
  4710. "_attributes": {
  4711. "path": "chi-62960b5c.ogg"
  4712. },
  4713. "tag": {
  4714. "_attributes": {
  4715. "swac_text": "西边",
  4716. "swac_alphaidx": "xībiān",
  4717. "swac_pron_phon": "xībiān"
  4718. }
  4719. }
  4720. },
  4721. {
  4722. "_attributes": {
  4723. "path": "chi-629b8073.ogg"
  4724. },
  4725. "tag": {
  4726. "_attributes": {
  4727. "swac_text": "困难",
  4728. "swac_alphaidx": "kùnnan",
  4729. "swac_pron_phon": "kùnnan"
  4730. }
  4731. }
  4732. },
  4733. {
  4734. "_attributes": {
  4735. "path": "chi-633a3230.ogg"
  4736. },
  4737. "tag": {
  4738. "_attributes": {
  4739. "swac_text": "全部",
  4740. "swac_alphaidx": "quánbù",
  4741. "swac_pron_phon": "quánbù"
  4742. }
  4743. }
  4744. },
  4745. {
  4746. "_attributes": {
  4747. "path": "chi-633bfa50.ogg"
  4748. },
  4749. "tag": {
  4750. "_attributes": {
  4751. "swac_text": "立刻",
  4752. "swac_alphaidx": "lìkè",
  4753. "swac_pron_phon": "lìkè"
  4754. }
  4755. }
  4756. },
  4757. {
  4758. "_attributes": {
  4759. "path": "chi-63ccff7a.ogg"
  4760. },
  4761. "tag": {
  4762. "_attributes": {
  4763. "swac_text": "辆",
  4764. "swac_alphaidx": "liàng",
  4765. "swac_pron_phon": "liàng"
  4766. }
  4767. }
  4768. },
  4769. {
  4770. "_attributes": {
  4771. "path": "chi-63e45bf7.ogg"
  4772. },
  4773. "tag": {
  4774. "_attributes": {
  4775. "swac_text": "搞",
  4776. "swac_alphaidx": "gǎo",
  4777. "swac_pron_phon": "gǎo"
  4778. }
  4779. }
  4780. },
  4781. {
  4782. "_attributes": {
  4783. "path": "chi-644e8bfd.ogg"
  4784. },
  4785. "tag": {
  4786. "_attributes": {
  4787. "swac_text": "分",
  4788. "swac_alphaidx": "fēn",
  4789. "swac_pron_phon": "fēn"
  4790. }
  4791. }
  4792. },
  4793. {
  4794. "_attributes": {
  4795. "path": "chi-6461ef5f.ogg"
  4796. },
  4797. "tag": {
  4798. "_attributes": {
  4799. "swac_text": "改",
  4800. "swac_alphaidx": "gǎi",
  4801. "swac_pron_phon": "gǎi"
  4802. }
  4803. }
  4804. },
  4805. {
  4806. "_attributes": {
  4807. "path": "chi-6483aeb6.ogg"
  4808. },
  4809. "tag": {
  4810. "_attributes": {
  4811. "swac_text": "颜色",
  4812. "swac_alphaidx": "yánsè",
  4813. "swac_pron_phon": "yánsè"
  4814. }
  4815. }
  4816. },
  4817. {
  4818. "_attributes": {
  4819. "path": "chi-64b8c429.ogg"
  4820. },
  4821. "tag": {
  4822. "_attributes": {
  4823. "swac_text": "男",
  4824. "swac_alphaidx": "nán",
  4825. "swac_pron_phon": "nán"
  4826. }
  4827. }
  4828. },
  4829. {
  4830. "_attributes": {
  4831. "path": "chi-64c0894f.ogg"
  4832. },
  4833. "tag": {
  4834. "_attributes": {
  4835. "swac_text": "笑",
  4836. "swac_alphaidx": "xiào",
  4837. "swac_pron_phon": "xiào"
  4838. }
  4839. }
  4840. },
  4841. {
  4842. "_attributes": {
  4843. "path": "chi-65137ea7.ogg"
  4844. },
  4845. "tag": {
  4846. "_attributes": {
  4847. "swac_text": "呀",
  4848. "swac_alphaidx": "yā",
  4849. "swac_pron_phon": "yā"
  4850. }
  4851. }
  4852. },
  4853. {
  4854. "_attributes": {
  4855. "path": "chi-652d0b77.ogg"
  4856. },
  4857. "tag": {
  4858. "_attributes": {
  4859. "swac_text": "欢迎",
  4860. "swac_alphaidx": "huānyíng",
  4861. "swac_pron_phon": "huānyíng"
  4862. }
  4863. }
  4864. },
  4865. {
  4866. "_attributes": {
  4867. "path": "chi-6545e2a1.ogg"
  4868. },
  4869. "tag": {
  4870. "_attributes": {
  4871. "swac_text": "系",
  4872. "swac_alphaidx": "xì",
  4873. "swac_pron_phon": "xì"
  4874. }
  4875. }
  4876. },
  4877. {
  4878. "_attributes": {
  4879. "path": "chi-65cdbe48.ogg"
  4880. },
  4881. "tag": {
  4882. "_attributes": {
  4883. "swac_text": "一边_一边",
  4884. "swac_alphaidx": "yìbiān_4biān_",
  4885. "swac_pron_phon": "yìbiān_4biān_"
  4886. }
  4887. }
  4888. },
  4889. {
  4890. "_attributes": {
  4891. "path": "chi-6600ea36.ogg"
  4892. },
  4893. "tag": {
  4894. "_attributes": {
  4895. "swac_text": "精彩",
  4896. "swac_alphaidx": "jīngcǎi",
  4897. "swac_pron_phon": "jīngcǎi"
  4898. }
  4899. }
  4900. },
  4901. {
  4902. "_attributes": {
  4903. "path": "chi-663a0425.ogg"
  4904. },
  4905. "tag": {
  4906. "_attributes": {
  4907. "swac_text": "戴",
  4908. "swac_alphaidx": "dài",
  4909. "swac_pron_phon": "dài"
  4910. }
  4911. }
  4912. },
  4913. {
  4914. "_attributes": {
  4915. "path": "chi-6685aafc.ogg"
  4916. },
  4917. "tag": {
  4918. "_attributes": {
  4919. "swac_text": "民族",
  4920. "swac_alphaidx": "mínzú",
  4921. "swac_pron_phon": "mínzú"
  4922. }
  4923. }
  4924. },
  4925. {
  4926. "_attributes": {
  4927. "path": "chi-66a040c8.ogg"
  4928. },
  4929. "tag": {
  4930. "_attributes": {
  4931. "swac_text": "出去",
  4932. "swac_alphaidx": "chūqù",
  4933. "swac_pron_phon": "chūqù"
  4934. }
  4935. }
  4936. },
  4937. {
  4938. "_attributes": {
  4939. "path": "chi-66cc2f6e.ogg"
  4940. },
  4941. "tag": {
  4942. "_attributes": {
  4943. "swac_text": "地",
  4944. "swac_alphaidx": "dì",
  4945. "swac_pron_phon": "dì"
  4946. }
  4947. }
  4948. },
  4949. {
  4950. "_attributes": {
  4951. "path": "chi-66dbff9d.ogg"
  4952. },
  4953. "tag": {
  4954. "_attributes": {
  4955. "swac_text": "痛快",
  4956. "swac_alphaidx": "tòngkuai",
  4957. "swac_pron_phon": "tòngkuai"
  4958. }
  4959. }
  4960. },
  4961. {
  4962. "_attributes": {
  4963. "path": "chi-66f94bac.ogg"
  4964. },
  4965. "tag": {
  4966. "_attributes": {
  4967. "swac_text": "危险",
  4968. "swac_alphaidx": "wēixiǎn",
  4969. "swac_pron_phon": "wēixiǎn"
  4970. }
  4971. }
  4972. },
  4973. {
  4974. "_attributes": {
  4975. "path": "chi-66fa61c8.ogg"
  4976. },
  4977. "tag": {
  4978. "_attributes": {
  4979. "swac_text": "人们",
  4980. "swac_alphaidx": "rénmen",
  4981. "swac_pron_phon": "rénmen"
  4982. }
  4983. }
  4984. },
  4985. {
  4986. "_attributes": {
  4987. "path": "chi-676b6f4c.ogg"
  4988. },
  4989. "tag": {
  4990. "_attributes": {
  4991. "swac_text": "有名",
  4992. "swac_alphaidx": "yǒumíng",
  4993. "swac_pron_phon": "yǒumíng"
  4994. }
  4995. }
  4996. },
  4997. {
  4998. "_attributes": {
  4999. "path": "chi-67f4500c.ogg"
  5000. },
  5001. "tag": {
  5002. "_attributes": {
  5003. "swac_text": "才",
  5004. "swac_alphaidx": "cái",
  5005. "swac_pron_phon": "cái"
  5006. }
  5007. }
  5008. },
  5009. {
  5010. "_attributes": {
  5011. "path": "chi-6836592e.ogg"
  5012. },
  5013. "tag": {
  5014. "_attributes": {
  5015. "swac_text": "门",
  5016. "swac_alphaidx": "mén",
  5017. "swac_pron_phon": "mén"
  5018. }
  5019. }
  5020. },
  5021. {
  5022. "_attributes": {
  5023. "path": "chi-68376680.ogg"
  5024. },
  5025. "tag": {
  5026. "_attributes": {
  5027. "swac_text": "没关系",
  5028. "swac_alphaidx": "méiguānxi",
  5029. "swac_pron_phon": "méiguānxi"
  5030. }
  5031. }
  5032. },
  5033. {
  5034. "_attributes": {
  5035. "path": "chi-683f15c3.ogg"
  5036. },
  5037. "tag": {
  5038. "_attributes": {
  5039. "swac_text": "冬",
  5040. "swac_alphaidx": "dōng",
  5041. "swac_pron_phon": "dōng"
  5042. }
  5043. }
  5044. },
  5045. {
  5046. "_attributes": {
  5047. "path": "chi-68ac43c1.ogg"
  5048. },
  5049. "tag": {
  5050. "_attributes": {
  5051. "swac_text": "小孩儿",
  5052. "swac_alphaidx": "xiǎoháir",
  5053. "swac_pron_phon": "xiǎoháir"
  5054. }
  5055. }
  5056. },
  5057. {
  5058. "_attributes": {
  5059. "path": "chi-68b56ea3.ogg"
  5060. },
  5061. "tag": {
  5062. "_attributes": {
  5063. "swac_text": "大概",
  5064. "swac_alphaidx": "dàgài",
  5065. "swac_pron_phon": "dàgài"
  5066. }
  5067. }
  5068. },
  5069. {
  5070. "_attributes": {
  5071. "path": "chi-6922d633.ogg"
  5072. },
  5073. "tag": {
  5074. "_attributes": {
  5075. "swac_text": "完",
  5076. "swac_alphaidx": "wán",
  5077. "swac_pron_phon": "wán"
  5078. }
  5079. }
  5080. },
  5081. {
  5082. "_attributes": {
  5083. "path": "chi-695b73d4.ogg"
  5084. },
  5085. "tag": {
  5086. "_attributes": {
  5087. "swac_text": "将来",
  5088. "swac_alphaidx": "jiānglái",
  5089. "swac_pron_phon": "jiānglái"
  5090. }
  5091. }
  5092. },
  5093. {
  5094. "_attributes": {
  5095. "path": "chi-69745ce3.ogg"
  5096. },
  5097. "tag": {
  5098. "_attributes": {
  5099. "swac_text": "学习",
  5100. "swac_alphaidx": "xuéxí",
  5101. "swac_pron_phon": "xuéxí"
  5102. }
  5103. }
  5104. },
  5105. {
  5106. "_attributes": {
  5107. "path": "chi-6998554e.ogg"
  5108. },
  5109. "tag": {
  5110. "_attributes": {
  5111. "swac_text": "纸",
  5112. "swac_alphaidx": "zhǐ",
  5113. "swac_pron_phon": "zhǐ"
  5114. }
  5115. }
  5116. },
  5117. {
  5118. "_attributes": {
  5119. "path": "chi-69b355cb.ogg"
  5120. },
  5121. "tag": {
  5122. "_attributes": {
  5123. "swac_text": "任何",
  5124. "swac_alphaidx": "rènhé",
  5125. "swac_pron_phon": "rènhé"
  5126. }
  5127. }
  5128. },
  5129. {
  5130. "_attributes": {
  5131. "path": "chi-6a1047ea.ogg"
  5132. },
  5133. "tag": {
  5134. "_attributes": {
  5135. "swac_text": "技术",
  5136. "swac_alphaidx": "jìshù",
  5137. "swac_pron_phon": "jìshù"
  5138. }
  5139. }
  5140. },
  5141. {
  5142. "_attributes": {
  5143. "path": "chi-6a19c1ac.ogg"
  5144. },
  5145. "tag": {
  5146. "_attributes": {
  5147. "swac_text": "现在",
  5148. "swac_alphaidx": "xiànzài",
  5149. "swac_pron_phon": "xiànzài"
  5150. }
  5151. }
  5152. },
  5153. {
  5154. "_attributes": {
  5155. "path": "chi-6a33cadb.ogg"
  5156. },
  5157. "tag": {
  5158. "_attributes": {
  5159. "swac_text": "不用",
  5160. "swac_alphaidx": "búyòng",
  5161. "swac_pron_phon": "búyòng"
  5162. }
  5163. }
  5164. },
  5165. {
  5166. "_attributes": {
  5167. "path": "chi-6a99ef82.ogg"
  5168. },
  5169. "tag": {
  5170. "_attributes": {
  5171. "swac_text": "双",
  5172. "swac_alphaidx": "shuāng",
  5173. "swac_pron_phon": "shuāng"
  5174. }
  5175. }
  5176. },
  5177. {
  5178. "_attributes": {
  5179. "path": "chi-6ac98175.ogg"
  5180. },
  5181. "tag": {
  5182. "_attributes": {
  5183. "swac_text": "消息",
  5184. "swac_alphaidx": "xiāoxi",
  5185. "swac_pron_phon": "xiāoxi"
  5186. }
  5187. }
  5188. },
  5189. {
  5190. "_attributes": {
  5191. "path": "chi-6ad2acc8.ogg"
  5192. },
  5193. "tag": {
  5194. "_attributes": {
  5195. "swac_text": "动物",
  5196. "swac_alphaidx": "dòngwù",
  5197. "swac_pron_phon": "dòngwù"
  5198. }
  5199. }
  5200. },
  5201. {
  5202. "_attributes": {
  5203. "path": "chi-6adb94d1.ogg"
  5204. },
  5205. "tag": {
  5206. "_attributes": {
  5207. "swac_text": "知道",
  5208. "swac_alphaidx": "zhīdào",
  5209. "swac_pron_phon": "zhīdào"
  5210. }
  5211. }
  5212. },
  5213. {
  5214. "_attributes": {
  5215. "path": "chi-6b188298.ogg"
  5216. },
  5217. "tag": {
  5218. "_attributes": {
  5219. "swac_text": "大夫",
  5220. "swac_alphaidx": "dàifu",
  5221. "swac_pron_phon": "dàifu"
  5222. }
  5223. }
  5224. },
  5225. {
  5226. "_attributes": {
  5227. "path": "chi-6b4ed51e.ogg"
  5228. },
  5229. "tag": {
  5230. "_attributes": {
  5231. "swac_text": "会",
  5232. "swac_alphaidx": "huì",
  5233. "swac_pron_phon": "huì"
  5234. }
  5235. }
  5236. },
  5237. {
  5238. "_attributes": {
  5239. "path": "chi-6c678794.ogg"
  5240. },
  5241. "tag": {
  5242. "_attributes": {
  5243. "swac_text": "不",
  5244. "swac_alphaidx": "bù",
  5245. "swac_pron_phon": "bù"
  5246. }
  5247. }
  5248. },
  5249. {
  5250. "_attributes": {
  5251. "path": "chi-6c8874ba.ogg"
  5252. },
  5253. "tag": {
  5254. "_attributes": {
  5255. "swac_text": "帮助",
  5256. "swac_alphaidx": "bāngzhù",
  5257. "swac_pron_phon": "bāngzhù"
  5258. }
  5259. }
  5260. },
  5261. {
  5262. "_attributes": {
  5263. "path": "chi-6ceaf439.ogg"
  5264. },
  5265. "tag": {
  5266. "_attributes": {
  5267. "swac_text": "春天",
  5268. "swac_alphaidx": "chūntiān",
  5269. "swac_pron_phon": "chūntiān"
  5270. }
  5271. }
  5272. },
  5273. {
  5274. "_attributes": {
  5275. "path": "chi-6d2ba76e.ogg"
  5276. },
  5277. "tag": {
  5278. "_attributes": {
  5279. "swac_text": "态度",
  5280. "swac_alphaidx": "tàidu",
  5281. "swac_pron_phon": "tàidu"
  5282. }
  5283. }
  5284. },
  5285. {
  5286. "_attributes": {
  5287. "path": "chi-6d2ec0ef.ogg"
  5288. },
  5289. "tag": {
  5290. "_attributes": {
  5291. "swac_text": "电话",
  5292. "swac_alphaidx": "diànhuà",
  5293. "swac_pron_phon": "diànhuà"
  5294. }
  5295. }
  5296. },
  5297. {
  5298. "_attributes": {
  5299. "path": "chi-6d607e56.ogg"
  5300. },
  5301. "tag": {
  5302. "_attributes": {
  5303. "swac_text": "抱",
  5304. "swac_alphaidx": "bào",
  5305. "swac_pron_phon": "bào"
  5306. }
  5307. }
  5308. },
  5309. {
  5310. "_attributes": {
  5311. "path": "chi-6dbe3195.ogg"
  5312. },
  5313. "tag": {
  5314. "_attributes": {
  5315. "swac_text": "一会儿",
  5316. "swac_alphaidx": "yíhuìr",
  5317. "swac_pron_phon": "yíhuìr"
  5318. }
  5319. }
  5320. },
  5321. {
  5322. "_attributes": {
  5323. "path": "chi-6e4fb365.ogg"
  5324. },
  5325. "tag": {
  5326. "_attributes": {
  5327. "swac_text": "做",
  5328. "swac_alphaidx": "zuò",
  5329. "swac_pron_phon": "zuò"
  5330. }
  5331. }
  5332. },
  5333. {
  5334. "_attributes": {
  5335. "path": "chi-6e67643e.ogg"
  5336. },
  5337. "tag": {
  5338. "_attributes": {
  5339. "swac_text": "感谢",
  5340. "swac_alphaidx": "gǎnxiè",
  5341. "swac_pron_phon": "gǎnxiè"
  5342. }
  5343. }
  5344. },
  5345. {
  5346. "_attributes": {
  5347. "path": "chi-6e9f5485.ogg"
  5348. },
  5349. "tag": {
  5350. "_attributes": {
  5351. "swac_text": "握手",
  5352. "swac_alphaidx": "wòshǒu",
  5353. "swac_pron_phon": "wòshǒu"
  5354. }
  5355. }
  5356. },
  5357. {
  5358. "_attributes": {
  5359. "path": "chi-6f08ed10.ogg"
  5360. },
  5361. "tag": {
  5362. "_attributes": {
  5363. "swac_text": "猪",
  5364. "swac_alphaidx": "zhū",
  5365. "swac_pron_phon": "zhū"
  5366. }
  5367. }
  5368. },
  5369. {
  5370. "_attributes": {
  5371. "path": "chi-6f2b10dd.ogg"
  5372. },
  5373. "tag": {
  5374. "_attributes": {
  5375. "swac_text": "走",
  5376. "swac_alphaidx": "zǒu",
  5377. "swac_pron_phon": "zǒu"
  5378. }
  5379. }
  5380. },
  5381. {
  5382. "_attributes": {
  5383. "path": "chi-6f4632cc.ogg"
  5384. },
  5385. "tag": {
  5386. "_attributes": {
  5387. "swac_text": "同意",
  5388. "swac_alphaidx": "tóngyì",
  5389. "swac_pron_phon": "tóngyì"
  5390. }
  5391. }
  5392. },
  5393. {
  5394. "_attributes": {
  5395. "path": "chi-6f66023e.ogg"
  5396. },
  5397. "tag": {
  5398. "_attributes": {
  5399. "swac_text": "咳嗽",
  5400. "swac_alphaidx": "késou",
  5401. "swac_pron_phon": "késou"
  5402. }
  5403. }
  5404. },
  5405. {
  5406. "_attributes": {
  5407. "path": "chi-6f74d696.ogg"
  5408. },
  5409. "tag": {
  5410. "_attributes": {
  5411. "swac_text": "离开",
  5412. "swac_alphaidx": "líkāi",
  5413. "swac_pron_phon": "líkāi"
  5414. }
  5415. }
  5416. },
  5417. {
  5418. "_attributes": {
  5419. "path": "chi-6f80568a.ogg"
  5420. },
  5421. "tag": {
  5422. "_attributes": {
  5423. "swac_text": "名字",
  5424. "swac_alphaidx": "míngzi",
  5425. "swac_pron_phon": "míngzi"
  5426. }
  5427. }
  5428. },
  5429. {
  5430. "_attributes": {
  5431. "path": "chi-6faa66b9.ogg"
  5432. },
  5433. "tag": {
  5434. "_attributes": {
  5435. "swac_text": "坐",
  5436. "swac_alphaidx": "zuò",
  5437. "swac_pron_phon": "zuò"
  5438. }
  5439. }
  5440. },
  5441. {
  5442. "_attributes": {
  5443. "path": "chi-6fc2ac51.ogg"
  5444. },
  5445. "tag": {
  5446. "_attributes": {
  5447. "swac_text": "海",
  5448. "swac_alphaidx": "hǎi",
  5449. "swac_pron_phon": "hǎi"
  5450. }
  5451. }
  5452. },
  5453. {
  5454. "_attributes": {
  5455. "path": "chi-7046ac94.ogg"
  5456. },
  5457. "tag": {
  5458. "_attributes": {
  5459. "swac_text": "白",
  5460. "swac_alphaidx": "bái",
  5461. "swac_pron_phon": "bái"
  5462. }
  5463. }
  5464. },
  5465. {
  5466. "_attributes": {
  5467. "path": "chi-71446d0d.ogg"
  5468. },
  5469. "tag": {
  5470. "_attributes": {
  5471. "swac_text": "关系",
  5472. "swac_alphaidx": "guānxi",
  5473. "swac_pron_phon": "guānxi"
  5474. }
  5475. }
  5476. },
  5477. {
  5478. "_attributes": {
  5479. "path": "chi-71535ed5.ogg"
  5480. },
  5481. "tag": {
  5482. "_attributes": {
  5483. "swac_text": "合适",
  5484. "swac_alphaidx": "héshì",
  5485. "swac_pron_phon": "héshì"
  5486. }
  5487. }
  5488. },
  5489. {
  5490. "_attributes": {
  5491. "path": "chi-71cfc353.ogg"
  5492. },
  5493. "tag": {
  5494. "_attributes": {
  5495. "swac_text": "七",
  5496. "swac_alphaidx": "qī",
  5497. "swac_pron_phon": "qī"
  5498. }
  5499. }
  5500. },
  5501. {
  5502. "_attributes": {
  5503. "path": "chi-721d7a5c.ogg"
  5504. },
  5505. "tag": {
  5506. "_attributes": {
  5507. "swac_text": "飞机",
  5508. "swac_alphaidx": "fēijī",
  5509. "swac_pron_phon": "fēijī"
  5510. }
  5511. }
  5512. },
  5513. {
  5514. "_attributes": {
  5515. "path": "chi-722059f2.ogg"
  5516. },
  5517. "tag": {
  5518. "_attributes": {
  5519. "swac_text": "检查",
  5520. "swac_alphaidx": "jiǎnchá",
  5521. "swac_pron_phon": "jiǎnchá"
  5522. }
  5523. }
  5524. },
  5525. {
  5526. "_attributes": {
  5527. "path": "chi-723e4306.ogg"
  5528. },
  5529. "tag": {
  5530. "_attributes": {
  5531. "swac_text": "变化",
  5532. "swac_alphaidx": "biànhuà",
  5533. "swac_pron_phon": "biànhuà"
  5534. }
  5535. }
  5536. },
  5537. {
  5538. "_attributes": {
  5539. "path": "chi-72bcecc6.ogg"
  5540. },
  5541. "tag": {
  5542. "_attributes": {
  5543. "swac_text": "周",
  5544. "swac_alphaidx": "zhōu",
  5545. "swac_pron_phon": "zhōu"
  5546. }
  5547. }
  5548. },
  5549. {
  5550. "_attributes": {
  5551. "path": "chi-72fa15e8.ogg"
  5552. },
  5553. "tag": {
  5554. "_attributes": {
  5555. "swac_text": "公共汽车",
  5556. "swac_alphaidx": "gōnggòngqìchē",
  5557. "swac_pron_phon": "gōnggòngqìchē"
  5558. }
  5559. }
  5560. },
  5561. {
  5562. "_attributes": {
  5563. "path": "chi-73619ffa.ogg"
  5564. },
  5565. "tag": {
  5566. "_attributes": {
  5567. "swac_text": "一点儿",
  5568. "swac_alphaidx": "yìdiǎnr",
  5569. "swac_pron_phon": "yìdiǎnr"
  5570. }
  5571. }
  5572. },
  5573. {
  5574. "_attributes": {
  5575. "path": "chi-73c30e44.ogg"
  5576. },
  5577. "tag": {
  5578. "_attributes": {
  5579. "swac_text": "也许",
  5580. "swac_alphaidx": "yěxǔ",
  5581. "swac_pron_phon": "yěxǔ"
  5582. }
  5583. }
  5584. },
  5585. {
  5586. "_attributes": {
  5587. "path": "chi-73d18d0a.ogg"
  5588. },
  5589. "tag": {
  5590. "_attributes": {
  5591. "swac_text": "一_就_",
  5592. "swac_alphaidx": "yī_jiù_",
  5593. "swac_pron_phon": "yī_jiù_"
  5594. }
  5595. }
  5596. },
  5597. {
  5598. "_attributes": {
  5599. "path": "chi-73fd9699.ogg"
  5600. },
  5601. "tag": {
  5602. "_attributes": {
  5603. "swac_text": "个",
  5604. "swac_alphaidx": "gè",
  5605. "swac_pron_phon": "gè"
  5606. }
  5607. }
  5608. },
  5609. {
  5610. "_attributes": {
  5611. "path": "chi-740106d0.ogg"
  5612. },
  5613. "tag": {
  5614. "_attributes": {
  5615. "swac_text": "蓝",
  5616. "swac_alphaidx": "lán",
  5617. "swac_pron_phon": "lán"
  5618. }
  5619. }
  5620. },
  5621. {
  5622. "_attributes": {
  5623. "path": "chi-740f3cd9.ogg"
  5624. },
  5625. "tag": {
  5626. "_attributes": {
  5627. "swac_text": "历史",
  5628. "swac_alphaidx": "lìshǐ",
  5629. "swac_pron_phon": "lìshǐ"
  5630. }
  5631. }
  5632. },
  5633. {
  5634. "_attributes": {
  5635. "path": "chi-74322fe7.ogg"
  5636. },
  5637. "tag": {
  5638. "_attributes": {
  5639. "swac_text": "办法",
  5640. "swac_alphaidx": "bànfǎ",
  5641. "swac_pron_phon": "bànfǎ"
  5642. }
  5643. }
  5644. },
  5645. {
  5646. "_attributes": {
  5647. "path": "chi-743c4167.ogg"
  5648. },
  5649. "tag": {
  5650. "_attributes": {
  5651. "swac_text": "远",
  5652. "swac_alphaidx": "yuǎn",
  5653. "swac_pron_phon": "yuǎn"
  5654. }
  5655. }
  5656. },
  5657. {
  5658. "_attributes": {
  5659. "path": "chi-74b415b1.ogg"
  5660. },
  5661. "tag": {
  5662. "_attributes": {
  5663. "swac_text": "进来",
  5664. "swac_alphaidx": "jìnlái",
  5665. "swac_pron_phon": "jìnlái"
  5666. }
  5667. }
  5668. },
  5669. {
  5670. "_attributes": {
  5671. "path": "chi-74bd82a0.ogg"
  5672. },
  5673. "tag": {
  5674. "_attributes": {
  5675. "swac_text": "服务员",
  5676. "swac_alphaidx": "fúwùyuán",
  5677. "swac_pron_phon": "fúwùyuán"
  5678. }
  5679. }
  5680. },
  5681. {
  5682. "_attributes": {
  5683. "path": "chi-74e32bbc.ogg"
  5684. },
  5685. "tag": {
  5686. "_attributes": {
  5687. "swac_text": "六",
  5688. "swac_alphaidx": "liù",
  5689. "swac_pron_phon": "liù"
  5690. }
  5691. }
  5692. },
  5693. {
  5694. "_attributes": {
  5695. "path": "chi-751014ff.ogg"
  5696. },
  5697. "tag": {
  5698. "_attributes": {
  5699. "swac_text": "黑板",
  5700. "swac_alphaidx": "hēibǎn",
  5701. "swac_pron_phon": "hēibǎn"
  5702. }
  5703. }
  5704. },
  5705. {
  5706. "_attributes": {
  5707. "path": "chi-75203241.ogg"
  5708. },
  5709. "tag": {
  5710. "_attributes": {
  5711. "swac_text": "布",
  5712. "swac_alphaidx": "bù",
  5713. "swac_pron_phon": "bù"
  5714. }
  5715. }
  5716. },
  5717. {
  5718. "_attributes": {
  5719. "path": "chi-75a1a4f6.ogg"
  5720. },
  5721. "tag": {
  5722. "_attributes": {
  5723. "swac_text": "学校",
  5724. "swac_alphaidx": "xuéxiào",
  5725. "swac_pron_phon": "xuéxiào"
  5726. }
  5727. }
  5728. },
  5729. {
  5730. "_attributes": {
  5731. "path": "chi-75b3ff5b.ogg"
  5732. },
  5733. "tag": {
  5734. "_attributes": {
  5735. "swac_text": "妈妈",
  5736. "swac_alphaidx": "māma",
  5737. "swac_pron_phon": "māma"
  5738. }
  5739. }
  5740. },
  5741. {
  5742. "_attributes": {
  5743. "path": "chi-76043924.ogg"
  5744. },
  5745. "tag": {
  5746. "_attributes": {
  5747. "swac_text": "票",
  5748. "swac_alphaidx": "piào",
  5749. "swac_pron_phon": "piào"
  5750. }
  5751. }
  5752. },
  5753. {
  5754. "_attributes": {
  5755. "path": "chi-761d7743.ogg"
  5756. },
  5757. "tag": {
  5758. "_attributes": {
  5759. "swac_text": "最近",
  5760. "swac_alphaidx": "zuìjìn",
  5761. "swac_pron_phon": "zuìjìn"
  5762. }
  5763. }
  5764. },
  5765. {
  5766. "_attributes": {
  5767. "path": "chi-762e8daa.ogg"
  5768. },
  5769. "tag": {
  5770. "_attributes": {
  5771. "swac_text": "钟",
  5772. "swac_alphaidx": "zhōng",
  5773. "swac_pron_phon": "zhōng"
  5774. }
  5775. }
  5776. },
  5777. {
  5778. "_attributes": {
  5779. "path": "chi-766679aa.ogg"
  5780. },
  5781. "tag": {
  5782. "_attributes": {
  5783. "swac_text": "同志",
  5784. "swac_alphaidx": "tóngzhì",
  5785. "swac_pron_phon": "tóngzhì"
  5786. }
  5787. }
  5788. },
  5789. {
  5790. "_attributes": {
  5791. "path": "chi-76a379f5.ogg"
  5792. },
  5793. "tag": {
  5794. "_attributes": {
  5795. "swac_text": "肉",
  5796. "swac_alphaidx": "ròu",
  5797. "swac_pron_phon": "ròu"
  5798. }
  5799. }
  5800. },
  5801. {
  5802. "_attributes": {
  5803. "path": "chi-76eaeb09.ogg"
  5804. },
  5805. "tag": {
  5806. "_attributes": {
  5807. "swac_text": "周围",
  5808. "swac_alphaidx": "zhōuwéi",
  5809. "swac_pron_phon": "zhōuwéi"
  5810. }
  5811. }
  5812. },
  5813. {
  5814. "_attributes": {
  5815. "path": "chi-77012b86.ogg"
  5816. },
  5817. "tag": {
  5818. "_attributes": {
  5819. "swac_text": "五",
  5820. "swac_alphaidx": "wǔ",
  5821. "swac_pron_phon": "wǔ"
  5822. }
  5823. }
  5824. },
  5825. {
  5826. "_attributes": {
  5827. "path": "chi-771928ad.ogg"
  5828. },
  5829. "tag": {
  5830. "_attributes": {
  5831. "swac_text": "派",
  5832. "swac_alphaidx": "pài",
  5833. "swac_pron_phon": "pài"
  5834. }
  5835. }
  5836. },
  5837. {
  5838. "_attributes": {
  5839. "path": "chi-7744adb1.ogg"
  5840. },
  5841. "tag": {
  5842. "_attributes": {
  5843. "swac_text": "位",
  5844. "swac_alphaidx": "wèi",
  5845. "swac_pron_phon": "wèi"
  5846. }
  5847. }
  5848. },
  5849. {
  5850. "_attributes": {
  5851. "path": "chi-77d40b6c.ogg"
  5852. },
  5853. "tag": {
  5854. "_attributes": {
  5855. "swac_text": "上来",
  5856. "swac_alphaidx": "shànglái",
  5857. "swac_pron_phon": "shànglái"
  5858. }
  5859. }
  5860. },
  5861. {
  5862. "_attributes": {
  5863. "path": "chi-77f352fc.ogg"
  5864. },
  5865. "tag": {
  5866. "_attributes": {
  5867. "swac_text": "经常",
  5868. "swac_alphaidx": "jīngcháng",
  5869. "swac_pron_phon": "jīngcháng"
  5870. }
  5871. }
  5872. },
  5873. {
  5874. "_attributes": {
  5875. "path": "chi-780daec3.ogg"
  5876. },
  5877. "tag": {
  5878. "_attributes": {
  5879. "swac_text": "晚上",
  5880. "swac_alphaidx": "wǎnshang",
  5881. "swac_pron_phon": "wǎnshang"
  5882. }
  5883. }
  5884. },
  5885. {
  5886. "_attributes": {
  5887. "path": "chi-7886f924.ogg"
  5888. },
  5889. "tag": {
  5890. "_attributes": {
  5891. "swac_text": "提",
  5892. "swac_alphaidx": "tí",
  5893. "swac_pron_phon": "tí"
  5894. }
  5895. }
  5896. },
  5897. {
  5898. "_attributes": {
  5899. "path": "chi-78bdcfbe.ogg"
  5900. },
  5901. "tag": {
  5902. "_attributes": {
  5903. "swac_text": "劳驾",
  5904. "swac_alphaidx": "láojià",
  5905. "swac_pron_phon": "láojià"
  5906. }
  5907. }
  5908. },
  5909. {
  5910. "_attributes": {
  5911. "path": "chi-78e9b4ff.ogg"
  5912. },
  5913. "tag": {
  5914. "_attributes": {
  5915. "swac_text": "进行",
  5916. "swac_alphaidx": "jìnxíng",
  5917. "swac_pron_phon": "jìnxíng"
  5918. }
  5919. }
  5920. },
  5921. {
  5922. "_attributes": {
  5923. "path": "chi-79179a0b.ogg"
  5924. },
  5925. "tag": {
  5926. "_attributes": {
  5927. "swac_text": "秋天",
  5928. "swac_alphaidx": "qiūtiān",
  5929. "swac_pron_phon": "qiūtiān"
  5930. }
  5931. }
  5932. },
  5933. {
  5934. "_attributes": {
  5935. "path": "chi-7931a07f.ogg"
  5936. },
  5937. "tag": {
  5938. "_attributes": {
  5939. "swac_text": "班",
  5940. "swac_alphaidx": "bān",
  5941. "swac_pron_phon": "bān"
  5942. }
  5943. }
  5944. },
  5945. {
  5946. "_attributes": {
  5947. "path": "chi-798f1acd.ogg"
  5948. },
  5949. "tag": {
  5950. "_attributes": {
  5951. "swac_text": "客气",
  5952. "swac_alphaidx": "kèqi",
  5953. "swac_pron_phon": "kèqi"
  5954. }
  5955. }
  5956. },
  5957. {
  5958. "_attributes": {
  5959. "path": "chi-7a5d643c.ogg"
  5960. },
  5961. "tag": {
  5962. "_attributes": {
  5963. "swac_text": "好像",
  5964. "swac_alphaidx": "hǎoxiàng",
  5965. "swac_pron_phon": "hǎoxiàng"
  5966. }
  5967. }
  5968. },
  5969. {
  5970. "_attributes": {
  5971. "path": "chi-7ab5f4a2.ogg"
  5972. },
  5973. "tag": {
  5974. "_attributes": {
  5975. "swac_text": "例如",
  5976. "swac_alphaidx": "lìrú",
  5977. "swac_pron_phon": "lìrú"
  5978. }
  5979. }
  5980. },
  5981. {
  5982. "_attributes": {
  5983. "path": "chi-7ad1eec4.ogg"
  5984. },
  5985. "tag": {
  5986. "_attributes": {
  5987. "swac_text": "开玩笑",
  5988. "swac_alphaidx": "kāiwánxiào",
  5989. "swac_pron_phon": "kāiwánxiào"
  5990. }
  5991. }
  5992. },
  5993. {
  5994. "_attributes": {
  5995. "path": "chi-7b43d03a.ogg"
  5996. },
  5997. "tag": {
  5998. "_attributes": {
  5999. "swac_text": "东边",
  6000. "swac_alphaidx": "dōngbiān",
  6001. "swac_pron_phon": "dōngbiān"
  6002. }
  6003. }
  6004. },
  6005. {
  6006. "_attributes": {
  6007. "path": "chi-7b5b2828.ogg"
  6008. },
  6009. "tag": {
  6010. "_attributes": {
  6011. "swac_text": "下午",
  6012. "swac_alphaidx": "xiàwǔ",
  6013. "swac_pron_phon": "xiàwǔ"
  6014. }
  6015. }
  6016. },
  6017. {
  6018. "_attributes": {
  6019. "path": "chi-7bf14fa7.ogg"
  6020. },
  6021. "tag": {
  6022. "_attributes": {
  6023. "swac_text": "真正",
  6024. "swac_alphaidx": "zhēnzhèng",
  6025. "swac_pron_phon": "zhēnzhèng"
  6026. }
  6027. }
  6028. },
  6029. {
  6030. "_attributes": {
  6031. "path": "chi-7c1d390e.ogg"
  6032. },
  6033. "tag": {
  6034. "_attributes": {
  6035. "swac_text": "加",
  6036. "swac_alphaidx": "jiā",
  6037. "swac_pron_phon": "jiā"
  6038. }
  6039. }
  6040. },
  6041. {
  6042. "_attributes": {
  6043. "path": "chi-7c2f396e.ogg"
  6044. },
  6045. "tag": {
  6046. "_attributes": {
  6047. "swac_text": "得",
  6048. "swac_alphaidx": "de",
  6049. "swac_pron_phon": "de"
  6050. }
  6051. }
  6052. },
  6053. {
  6054. "_attributes": {
  6055. "path": "chi-7c6c1f67.ogg"
  6056. },
  6057. "tag": {
  6058. "_attributes": {
  6059. "swac_text": "千",
  6060. "swac_alphaidx": "qiān",
  6061. "swac_pron_phon": "qiān"
  6062. }
  6063. }
  6064. },
  6065. {
  6066. "_attributes": {
  6067. "path": "chi-7ca55908.ogg"
  6068. },
  6069. "tag": {
  6070. "_attributes": {
  6071. "swac_text": "电视",
  6072. "swac_alphaidx": "diànshì",
  6073. "swac_pron_phon": "diànshì"
  6074. }
  6075. }
  6076. },
  6077. {
  6078. "_attributes": {
  6079. "path": "chi-7d409ef8.ogg"
  6080. },
  6081. "tag": {
  6082. "_attributes": {
  6083. "swac_text": "旁边",
  6084. "swac_alphaidx": "pángbiān",
  6085. "swac_pron_phon": "pángbiān"
  6086. }
  6087. }
  6088. },
  6089. {
  6090. "_attributes": {
  6091. "path": "chi-7d70645f.ogg"
  6092. },
  6093. "tag": {
  6094. "_attributes": {
  6095. "swac_text": "教室",
  6096. "swac_alphaidx": "jiàoshì",
  6097. "swac_pron_phon": "jiàoshì"
  6098. }
  6099. }
  6100. },
  6101. {
  6102. "_attributes": {
  6103. "path": "chi-7dc84c74.ogg"
  6104. },
  6105. "tag": {
  6106. "_attributes": {
  6107. "swac_text": "饿",
  6108. "swac_alphaidx": "è",
  6109. "swac_pron_phon": "è"
  6110. }
  6111. }
  6112. },
  6113. {
  6114. "_attributes": {
  6115. "path": "chi-7e2f8e74.ogg"
  6116. },
  6117. "tag": {
  6118. "_attributes": {
  6119. "swac_text": "干部",
  6120. "swac_alphaidx": "gànbù",
  6121. "swac_pron_phon": "gànbù"
  6122. }
  6123. }
  6124. },
  6125. {
  6126. "_attributes": {
  6127. "path": "chi-7e643a91.ogg"
  6128. },
  6129. "tag": {
  6130. "_attributes": {
  6131. "swac_text": "话",
  6132. "swac_alphaidx": "huà",
  6133. "swac_pron_phon": "huà"
  6134. }
  6135. }
  6136. },
  6137. {
  6138. "_attributes": {
  6139. "path": "chi-7ee59eea.ogg"
  6140. },
  6141. "tag": {
  6142. "_attributes": {
  6143. "swac_text": "认真",
  6144. "swac_alphaidx": "rènzhēn",
  6145. "swac_pron_phon": "rènzhēn"
  6146. }
  6147. }
  6148. },
  6149. {
  6150. "_attributes": {
  6151. "path": "chi-7f9f6e44.ogg"
  6152. },
  6153. "tag": {
  6154. "_attributes": {
  6155. "swac_text": "思想",
  6156. "swac_alphaidx": "sīxiǎng",
  6157. "swac_pron_phon": "sīxiǎng"
  6158. }
  6159. }
  6160. },
  6161. {
  6162. "_attributes": {
  6163. "path": "chi-7fc085f0.ogg"
  6164. },
  6165. "tag": {
  6166. "_attributes": {
  6167. "swac_text": "些",
  6168. "swac_alphaidx": "xiē",
  6169. "swac_pron_phon": "xiē"
  6170. }
  6171. }
  6172. },
  6173. {
  6174. "_attributes": {
  6175. "path": "chi-800f92a3.ogg"
  6176. },
  6177. "tag": {
  6178. "_attributes": {
  6179. "swac_text": "挤",
  6180. "swac_alphaidx": "jǐ",
  6181. "swac_pron_phon": "jǐ"
  6182. }
  6183. }
  6184. },
  6185. {
  6186. "_attributes": {
  6187. "path": "chi-801024cf.ogg"
  6188. },
  6189. "tag": {
  6190. "_attributes": {
  6191. "swac_text": "从",
  6192. "swac_alphaidx": "cóng",
  6193. "swac_pron_phon": "cóng"
  6194. }
  6195. }
  6196. },
  6197. {
  6198. "_attributes": {
  6199. "path": "chi-8099fab6.ogg"
  6200. },
  6201. "tag": {
  6202. "_attributes": {
  6203. "swac_text": "大声",
  6204. "swac_alphaidx": "dàshēng",
  6205. "swac_pron_phon": "dàshēng"
  6206. }
  6207. }
  6208. },
  6209. {
  6210. "_attributes": {
  6211. "path": "chi-80c72910.ogg"
  6212. },
  6213. "tag": {
  6214. "_attributes": {
  6215. "swac_text": "提高",
  6216. "swac_alphaidx": "tígāo",
  6217. "swac_pron_phon": "tígāo"
  6218. }
  6219. }
  6220. },
  6221. {
  6222. "_attributes": {
  6223. "path": "chi-8154f62c.ogg"
  6224. },
  6225. "tag": {
  6226. "_attributes": {
  6227. "swac_text": "北",
  6228. "swac_alphaidx": "běi",
  6229. "swac_pron_phon": "běi"
  6230. }
  6231. }
  6232. },
  6233. {
  6234. "_attributes": {
  6235. "path": "chi-8158ec8d.ogg"
  6236. },
  6237. "tag": {
  6238. "_attributes": {
  6239. "swac_text": "必须",
  6240. "swac_alphaidx": "bìxū",
  6241. "swac_pron_phon": "bìxū"
  6242. }
  6243. }
  6244. },
  6245. {
  6246. "_attributes": {
  6247. "path": "chi-81bb847f.ogg"
  6248. },
  6249. "tag": {
  6250. "_attributes": {
  6251. "swac_text": "饱",
  6252. "swac_alphaidx": "bǎo",
  6253. "swac_pron_phon": "bǎo"
  6254. }
  6255. }
  6256. },
  6257. {
  6258. "_attributes": {
  6259. "path": "chi-81d3aed8.ogg"
  6260. },
  6261. "tag": {
  6262. "_attributes": {
  6263. "swac_text": "照相",
  6264. "swac_alphaidx": "zhàoxiàng",
  6265. "swac_pron_phon": "zhàoxiàng"
  6266. }
  6267. }
  6268. },
  6269. {
  6270. "_attributes": {
  6271. "path": "chi-82024715.ogg"
  6272. },
  6273. "tag": {
  6274. "_attributes": {
  6275. "swac_text": "还是",
  6276. "swac_alphaidx": "háishì",
  6277. "swac_pron_phon": "háishì"
  6278. }
  6279. }
  6280. },
  6281. {
  6282. "_attributes": {
  6283. "path": "chi-82108707.ogg"
  6284. },
  6285. "tag": {
  6286. "_attributes": {
  6287. "swac_text": "方面",
  6288. "swac_alphaidx": "fāngmiàn",
  6289. "swac_pron_phon": "fāngmiàn"
  6290. }
  6291. }
  6292. },
  6293. {
  6294. "_attributes": {
  6295. "path": "chi-822ba232.ogg"
  6296. },
  6297. "tag": {
  6298. "_attributes": {
  6299. "swac_text": "他",
  6300. "swac_alphaidx": "tā",
  6301. "swac_pron_phon": "tā"
  6302. }
  6303. }
  6304. },
  6305. {
  6306. "_attributes": {
  6307. "path": "chi-826ea348.ogg"
  6308. },
  6309. "tag": {
  6310. "_attributes": {
  6311. "swac_text": "非常",
  6312. "swac_alphaidx": "fēicháng",
  6313. "swac_pron_phon": "fēicháng"
  6314. }
  6315. }
  6316. },
  6317. {
  6318. "_attributes": {
  6319. "path": "chi-82e4a63d.ogg"
  6320. },
  6321. "tag": {
  6322. "_attributes": {
  6323. "swac_text": "人民",
  6324. "swac_alphaidx": "rénmín",
  6325. "swac_pron_phon": "rénmín"
  6326. }
  6327. }
  6328. },
  6329. {
  6330. "_attributes": {
  6331. "path": "chi-8382a011.ogg"
  6332. },
  6333. "tag": {
  6334. "_attributes": {
  6335. "swac_text": "外语",
  6336. "swac_alphaidx": "wàiyǔ",
  6337. "swac_pron_phon": "wàiyǔ"
  6338. }
  6339. }
  6340. },
  6341. {
  6342. "_attributes": {
  6343. "path": "chi-8394d7ca.ogg"
  6344. },
  6345. "tag": {
  6346. "_attributes": {
  6347. "swac_text": "体育",
  6348. "swac_alphaidx": "tǐyù",
  6349. "swac_pron_phon": "tǐyù"
  6350. }
  6351. }
  6352. },
  6353. {
  6354. "_attributes": {
  6355. "path": "chi-839a2676.ogg"
  6356. },
  6357. "tag": {
  6358. "_attributes": {
  6359. "swac_text": "米饭",
  6360. "swac_alphaidx": "mǐfàn",
  6361. "swac_pron_phon": "mǐfàn"
  6362. }
  6363. }
  6364. },
  6365. {
  6366. "_attributes": {
  6367. "path": "chi-83d6bd29.ogg"
  6368. },
  6369. "tag": {
  6370. "_attributes": {
  6371. "swac_text": "酸",
  6372. "swac_alphaidx": "suān",
  6373. "swac_pron_phon": "suān"
  6374. }
  6375. }
  6376. },
  6377. {
  6378. "_attributes": {
  6379. "path": "chi-83e80ae5.ogg"
  6380. },
  6381. "tag": {
  6382. "_attributes": {
  6383. "swac_text": "决定",
  6384. "swac_alphaidx": "juédìng",
  6385. "swac_pron_phon": "juédìng"
  6386. }
  6387. }
  6388. },
  6389. {
  6390. "_attributes": {
  6391. "path": "chi-8465c6e1.ogg"
  6392. },
  6393. "tag": {
  6394. "_attributes": {
  6395. "swac_text": "热",
  6396. "swac_alphaidx": "rè",
  6397. "swac_pron_phon": "rè"
  6398. }
  6399. }
  6400. },
  6401. {
  6402. "_attributes": {
  6403. "path": "chi-84955524.ogg"
  6404. },
  6405. "tag": {
  6406. "_attributes": {
  6407. "swac_text": "方向",
  6408. "swac_alphaidx": "fāngxiàng",
  6409. "swac_pron_phon": "fāngxiàng"
  6410. }
  6411. }
  6412. },
  6413. {
  6414. "_attributes": {
  6415. "path": "chi-84978086.ogg"
  6416. },
  6417. "tag": {
  6418. "_attributes": {
  6419. "swac_text": "商店",
  6420. "swac_alphaidx": "shāngdiàn",
  6421. "swac_pron_phon": "shāngdiàn"
  6422. }
  6423. }
  6424. },
  6425. {
  6426. "_attributes": {
  6427. "path": "chi-84d903fc.ogg"
  6428. },
  6429. "tag": {
  6430. "_attributes": {
  6431. "swac_text": "了解",
  6432. "swac_alphaidx": "liǎojiě",
  6433. "swac_pron_phon": "liǎojiě"
  6434. }
  6435. }
  6436. },
  6437. {
  6438. "_attributes": {
  6439. "path": "chi-856addd6.ogg"
  6440. },
  6441. "tag": {
  6442. "_attributes": {
  6443. "swac_text": "刻",
  6444. "swac_alphaidx": "kè",
  6445. "swac_pron_phon": "kè"
  6446. }
  6447. }
  6448. },
  6449. {
  6450. "_attributes": {
  6451. "path": "chi-85acc77f.ogg"
  6452. },
  6453. "tag": {
  6454. "_attributes": {
  6455. "swac_text": "变成",
  6456. "swac_alphaidx": "biànchéng",
  6457. "swac_pron_phon": "biànchéng"
  6458. }
  6459. }
  6460. },
  6461. {
  6462. "_attributes": {
  6463. "path": "chi-85c30e95.ogg"
  6464. },
  6465. "tag": {
  6466. "_attributes": {
  6467. "swac_text": "脚",
  6468. "swac_alphaidx": "jiǎo",
  6469. "swac_pron_phon": "jiǎo"
  6470. }
  6471. }
  6472. },
  6473. {
  6474. "_attributes": {
  6475. "path": "chi-85fd7d25.ogg"
  6476. },
  6477. "tag": {
  6478. "_attributes": {
  6479. "swac_text": "基本",
  6480. "swac_alphaidx": "jīběn",
  6481. "swac_pron_phon": "jīběn"
  6482. }
  6483. }
  6484. },
  6485. {
  6486. "_attributes": {
  6487. "path": "chi-86a8d0f7.ogg"
  6488. },
  6489. "tag": {
  6490. "_attributes": {
  6491. "swac_text": "领导",
  6492. "swac_alphaidx": "lǐngdǎo",
  6493. "swac_pron_phon": "lǐngdǎo"
  6494. }
  6495. }
  6496. },
  6497. {
  6498. "_attributes": {
  6499. "path": "chi-8702729c.ogg"
  6500. },
  6501. "tag": {
  6502. "_attributes": {
  6503. "swac_text": "喂",
  6504. "swac_alphaidx": "wèi",
  6505. "swac_pron_phon": "wèi"
  6506. }
  6507. }
  6508. },
  6509. {
  6510. "_attributes": {
  6511. "path": "chi-874154b2.ogg"
  6512. },
  6513. "tag": {
  6514. "_attributes": {
  6515. "swac_text": "朝",
  6516. "swac_alphaidx": "cháo",
  6517. "swac_pron_phon": "cháo"
  6518. }
  6519. }
  6520. },
  6521. {
  6522. "_attributes": {
  6523. "path": "chi-874d5350.ogg"
  6524. },
  6525. "tag": {
  6526. "_attributes": {
  6527. "swac_text": "零",
  6528. "swac_alphaidx": "líng",
  6529. "swac_pron_phon": "líng"
  6530. }
  6531. }
  6532. },
  6533. {
  6534. "_attributes": {
  6535. "path": "chi-878d2412.ogg"
  6536. },
  6537. "tag": {
  6538. "_attributes": {
  6539. "swac_text": "世界",
  6540. "swac_alphaidx": "shìjiè",
  6541. "swac_pron_phon": "shìjiè"
  6542. }
  6543. }
  6544. },
  6545. {
  6546. "_attributes": {
  6547. "path": "chi-87b3fc02.ogg"
  6548. },
  6549. "tag": {
  6550. "_attributes": {
  6551. "swac_text": "躺",
  6552. "swac_alphaidx": "tǎng",
  6553. "swac_pron_phon": "tǎng"
  6554. }
  6555. }
  6556. },
  6557. {
  6558. "_attributes": {
  6559. "path": "chi-87e06503.ogg"
  6560. },
  6561. "tag": {
  6562. "_attributes": {
  6563. "swac_text": "亿",
  6564. "swac_alphaidx": "yì",
  6565. "swac_pron_phon": "yì"
  6566. }
  6567. }
  6568. },
  6569. {
  6570. "_attributes": {
  6571. "path": "chi-883dfa8a.ogg"
  6572. },
  6573. "tag": {
  6574. "_attributes": {
  6575. "swac_text": "比赛",
  6576. "swac_alphaidx": "bǐsài",
  6577. "swac_pron_phon": "bǐsài"
  6578. }
  6579. }
  6580. },
  6581. {
  6582. "_attributes": {
  6583. "path": "chi-88afb64c.ogg"
  6584. },
  6585. "tag": {
  6586. "_attributes": {
  6587. "swac_text": "我",
  6588. "swac_alphaidx": "wǒ",
  6589. "swac_pron_phon": "wǒ"
  6590. }
  6591. }
  6592. },
  6593. {
  6594. "_attributes": {
  6595. "path": "chi-89460117.ogg"
  6596. },
  6597. "tag": {
  6598. "_attributes": {
  6599. "swac_text": "左",
  6600. "swac_alphaidx": "zuǒ",
  6601. "swac_pron_phon": "zuǒ"
  6602. }
  6603. }
  6604. },
  6605. {
  6606. "_attributes": {
  6607. "path": "chi-896d645a.ogg"
  6608. },
  6609. "tag": {
  6610. "_attributes": {
  6611. "swac_text": "太",
  6612. "swac_alphaidx": "tài",
  6613. "swac_pron_phon": "tài"
  6614. }
  6615. }
  6616. },
  6617. {
  6618. "_attributes": {
  6619. "path": "chi-896e2bba.ogg"
  6620. },
  6621. "tag": {
  6622. "_attributes": {
  6623. "swac_text": "辅导",
  6624. "swac_alphaidx": "fǔdǎo",
  6625. "swac_pron_phon": "fǔdǎo"
  6626. }
  6627. }
  6628. },
  6629. {
  6630. "_attributes": {
  6631. "path": "chi-89b17084.ogg"
  6632. },
  6633. "tag": {
  6634. "_attributes": {
  6635. "swac_text": "祝",
  6636. "swac_alphaidx": "zhù",
  6637. "swac_pron_phon": "zhù"
  6638. }
  6639. }
  6640. },
  6641. {
  6642. "_attributes": {
  6643. "path": "chi-8a9ca6be.ogg"
  6644. },
  6645. "tag": {
  6646. "_attributes": {
  6647. "swac_text": "顿",
  6648. "swac_alphaidx": "dùn",
  6649. "swac_pron_phon": "dùn"
  6650. }
  6651. }
  6652. },
  6653. {
  6654. "_attributes": {
  6655. "path": "chi-8ad8e35d.ogg"
  6656. },
  6657. "tag": {
  6658. "_attributes": {
  6659. "swac_text": "音乐",
  6660. "swac_alphaidx": "yīnyuè",
  6661. "swac_pron_phon": "yīnyuè"
  6662. }
  6663. }
  6664. },
  6665. {
  6666. "_attributes": {
  6667. "path": "chi-8b90bb57.ogg"
  6668. },
  6669. "tag": {
  6670. "_attributes": {
  6671. "swac_text": "作业",
  6672. "swac_alphaidx": "zuòyè",
  6673. "swac_pron_phon": "zuòyè"
  6674. }
  6675. }
  6676. },
  6677. {
  6678. "_attributes": {
  6679. "path": "chi-8ba36bb2.ogg"
  6680. },
  6681. "tag": {
  6682. "_attributes": {
  6683. "swac_text": "帽子",
  6684. "swac_alphaidx": "màozi",
  6685. "swac_pron_phon": "màozi"
  6686. }
  6687. }
  6688. },
  6689. {
  6690. "_attributes": {
  6691. "path": "chi-8baf5792.ogg"
  6692. },
  6693. "tag": {
  6694. "_attributes": {
  6695. "swac_text": "父亲",
  6696. "swac_alphaidx": "fùqīn",
  6697. "swac_pron_phon": "fùqīn"
  6698. }
  6699. }
  6700. },
  6701. {
  6702. "_attributes": {
  6703. "path": "chi-8bbf73fc.ogg"
  6704. },
  6705. "tag": {
  6706. "_attributes": {
  6707. "swac_text": "翻",
  6708. "swac_alphaidx": "fān",
  6709. "swac_pron_phon": "fān"
  6710. }
  6711. }
  6712. },
  6713. {
  6714. "_attributes": {
  6715. "path": "chi-8c3f1546.ogg"
  6716. },
  6717. "tag": {
  6718. "_attributes": {
  6719. "swac_text": "学生",
  6720. "swac_alphaidx": "xuésheng",
  6721. "swac_pron_phon": "xuésheng"
  6722. }
  6723. }
  6724. },
  6725. {
  6726. "_attributes": {
  6727. "path": "chi-8cbf3eec.ogg"
  6728. },
  6729. "tag": {
  6730. "_attributes": {
  6731. "swac_text": "或者",
  6732. "swac_alphaidx": "huòzhě",
  6733. "swac_pron_phon": "huòzhě"
  6734. }
  6735. }
  6736. },
  6737. {
  6738. "_attributes": {
  6739. "path": "chi-8d21d38f.ogg"
  6740. },
  6741. "tag": {
  6742. "_attributes": {
  6743. "swac_text": "主要",
  6744. "swac_alphaidx": "zhǔyào",
  6745. "swac_pron_phon": "zhǔyào"
  6746. }
  6747. }
  6748. },
  6749. {
  6750. "_attributes": {
  6751. "path": "chi-8d480200.ogg"
  6752. },
  6753. "tag": {
  6754. "_attributes": {
  6755. "swac_text": "日",
  6756. "swac_alphaidx": "rì",
  6757. "swac_pron_phon": "rì"
  6758. }
  6759. }
  6760. },
  6761. {
  6762. "_attributes": {
  6763. "path": "chi-8dccf871.ogg"
  6764. },
  6765. "tag": {
  6766. "_attributes": {
  6767. "swac_text": "取得",
  6768. "swac_alphaidx": "qǔdé",
  6769. "swac_pron_phon": "qǔdé"
  6770. }
  6771. }
  6772. },
  6773. {
  6774. "_attributes": {
  6775. "path": "chi-8de1c7d6.ogg"
  6776. },
  6777. "tag": {
  6778. "_attributes": {
  6779. "swac_text": "卖",
  6780. "swac_alphaidx": "mài",
  6781. "swac_pron_phon": "mài"
  6782. }
  6783. }
  6784. },
  6785. {
  6786. "_attributes": {
  6787. "path": "chi-8df76885.ogg"
  6788. },
  6789. "tag": {
  6790. "_attributes": {
  6791. "swac_text": "刚才",
  6792. "swac_alphaidx": "gāngcái",
  6793. "swac_pron_phon": "gāngcái"
  6794. }
  6795. }
  6796. },
  6797. {
  6798. "_attributes": {
  6799. "path": "chi-8e0d7040.ogg"
  6800. },
  6801. "tag": {
  6802. "_attributes": {
  6803. "swac_text": "翻译",
  6804. "swac_alphaidx": "fānyì",
  6805. "swac_pron_phon": "fānyì"
  6806. }
  6807. }
  6808. },
  6809. {
  6810. "_attributes": {
  6811. "path": "chi-8e32c057.ogg"
  6812. },
  6813. "tag": {
  6814. "_attributes": {
  6815. "swac_text": "交",
  6816. "swac_alphaidx": "jiāo",
  6817. "swac_pron_phon": "jiāo"
  6818. }
  6819. }
  6820. },
  6821. {
  6822. "_attributes": {
  6823. "path": "chi-8e856478.ogg"
  6824. },
  6825. "tag": {
  6826. "_attributes": {
  6827. "swac_text": "多么",
  6828. "swac_alphaidx": "duōme",
  6829. "swac_pron_phon": "duōme"
  6830. }
  6831. }
  6832. },
  6833. {
  6834. "_attributes": {
  6835. "path": "chi-8edddd02.ogg"
  6836. },
  6837. "tag": {
  6838. "_attributes": {
  6839. "swac_text": "旧",
  6840. "swac_alphaidx": "jiù",
  6841. "swac_pron_phon": "jiù"
  6842. }
  6843. }
  6844. },
  6845. {
  6846. "_attributes": {
  6847. "path": "chi-8ee6751f.ogg"
  6848. },
  6849. "tag": {
  6850. "_attributes": {
  6851. "swac_text": "笔",
  6852. "swac_alphaidx": "bǐ",
  6853. "swac_pron_phon": "bǐ"
  6854. }
  6855. }
  6856. },
  6857. {
  6858. "_attributes": {
  6859. "path": "chi-8f5be8ff.ogg"
  6860. },
  6861. "tag": {
  6862. "_attributes": {
  6863. "swac_text": "北边",
  6864. "swac_alphaidx": "běibiān",
  6865. "swac_pron_phon": "běibiān"
  6866. }
  6867. }
  6868. },
  6869. {
  6870. "_attributes": {
  6871. "path": "chi-8f822007.ogg"
  6872. },
  6873. "tag": {
  6874. "_attributes": {
  6875. "swac_text": "小时",
  6876. "swac_alphaidx": "xiǎoshí",
  6877. "swac_pron_phon": "xiǎoshí"
  6878. }
  6879. }
  6880. },
  6881. {
  6882. "_attributes": {
  6883. "path": "chi-8fac2214.ogg"
  6884. },
  6885. "tag": {
  6886. "_attributes": {
  6887. "swac_text": "种",
  6888. "swac_alphaidx": "zhǒng",
  6889. "swac_pron_phon": "zhǒng"
  6890. }
  6891. }
  6892. },
  6893. {
  6894. "_attributes": {
  6895. "path": "chi-8fbae681.ogg"
  6896. },
  6897. "tag": {
  6898. "_attributes": {
  6899. "swac_text": "飞",
  6900. "swac_alphaidx": "fēi",
  6901. "swac_pron_phon": "fēi"
  6902. }
  6903. }
  6904. },
  6905. {
  6906. "_attributes": {
  6907. "path": "chi-8fe981f9.ogg"
  6908. },
  6909. "tag": {
  6910. "_attributes": {
  6911. "swac_text": "电灯",
  6912. "swac_alphaidx": "diàndēng",
  6913. "swac_pron_phon": "diàndēng"
  6914. }
  6915. }
  6916. },
  6917. {
  6918. "_attributes": {
  6919. "path": "chi-901acd33.ogg"
  6920. },
  6921. "tag": {
  6922. "_attributes": {
  6923. "swac_text": "跑步",
  6924. "swac_alphaidx": "pǎobù",
  6925. "swac_pron_phon": "pǎobù"
  6926. }
  6927. }
  6928. },
  6929. {
  6930. "_attributes": {
  6931. "path": "chi-902c5940.ogg"
  6932. },
  6933. "tag": {
  6934. "_attributes": {
  6935. "swac_text": "又",
  6936. "swac_alphaidx": "yòu",
  6937. "swac_pron_phon": "yòu"
  6938. }
  6939. }
  6940. },
  6941. {
  6942. "_attributes": {
  6943. "path": "chi-902de11e.ogg"
  6944. },
  6945. "tag": {
  6946. "_attributes": {
  6947. "swac_text": "习惯",
  6948. "swac_alphaidx": "xíguàn",
  6949. "swac_pron_phon": "xíguàn"
  6950. }
  6951. }
  6952. },
  6953. {
  6954. "_attributes": {
  6955. "path": "chi-903db3c8.ogg"
  6956. },
  6957. "tag": {
  6958. "_attributes": {
  6959. "swac_text": "通过",
  6960. "swac_alphaidx": "tōngguò",
  6961. "swac_pron_phon": "tōngguò"
  6962. }
  6963. }
  6964. },
  6965. {
  6966. "_attributes": {
  6967. "path": "chi-90a3d9d3.ogg"
  6968. },
  6969. "tag": {
  6970. "_attributes": {
  6971. "swac_text": "碗",
  6972. "swac_alphaidx": "wǎn",
  6973. "swac_pron_phon": "wǎn"
  6974. }
  6975. }
  6976. },
  6977. {
  6978. "_attributes": {
  6979. "path": "chi-90a76f7e.ogg"
  6980. },
  6981. "tag": {
  6982. "_attributes": {
  6983. "swac_text": "花",
  6984. "swac_alphaidx": "huā",
  6985. "swac_pron_phon": "huā"
  6986. }
  6987. }
  6988. },
  6989. {
  6990. "_attributes": {
  6991. "path": "chi-90aca17b.ogg"
  6992. },
  6993. "tag": {
  6994. "_attributes": {
  6995. "swac_text": "紧张",
  6996. "swac_alphaidx": "jǐnzhāng",
  6997. "swac_pron_phon": "jǐnzhāng"
  6998. }
  6999. }
  7000. },
  7001. {
  7002. "_attributes": {
  7003. "path": "chi-90f449a8.ogg"
  7004. },
  7005. "tag": {
  7006. "_attributes": {
  7007. "swac_text": "钱",
  7008. "swac_alphaidx": "qián",
  7009. "swac_pron_phon": "qián"
  7010. }
  7011. }
  7012. },
  7013. {
  7014. "_attributes": {
  7015. "path": "chi-9105a22b.ogg"
  7016. },
  7017. "tag": {
  7018. "_attributes": {
  7019. "swac_text": "洗",
  7020. "swac_alphaidx": "xǐ",
  7021. "swac_pron_phon": "xǐ"
  7022. }
  7023. }
  7024. },
  7025. {
  7026. "_attributes": {
  7027. "path": "chi-9105ed73.ogg"
  7028. },
  7029. "tag": {
  7030. "_attributes": {
  7031. "swac_text": "机器",
  7032. "swac_alphaidx": "jīqì",
  7033. "swac_pron_phon": "jīqì"
  7034. }
  7035. }
  7036. },
  7037. {
  7038. "_attributes": {
  7039. "path": "chi-9169d04a.ogg"
  7040. },
  7041. "tag": {
  7042. "_attributes": {
  7043. "swac_text": "食堂",
  7044. "swac_alphaidx": "shítáng",
  7045. "swac_pron_phon": "shítáng"
  7046. }
  7047. }
  7048. },
  7049. {
  7050. "_attributes": {
  7051. "path": "chi-91802df3.ogg"
  7052. },
  7053. "tag": {
  7054. "_attributes": {
  7055. "swac_text": "嗯",
  7056. "swac_alphaidx": "ng",
  7057. "swac_pron_phon": "ng"
  7058. }
  7059. }
  7060. },
  7061. {
  7062. "_attributes": {
  7063. "path": "chi-91a6b4df.ogg"
  7064. },
  7065. "tag": {
  7066. "_attributes": {
  7067. "swac_text": "一些",
  7068. "swac_alphaidx": "yìxiē",
  7069. "swac_pron_phon": "yìxiē"
  7070. }
  7071. }
  7072. },
  7073. {
  7074. "_attributes": {
  7075. "path": "chi-9249e10c.ogg"
  7076. },
  7077. "tag": {
  7078. "_attributes": {
  7079. "swac_text": "下来",
  7080. "swac_alphaidx": "xiàlái",
  7081. "swac_pron_phon": "xiàlái"
  7082. }
  7083. }
  7084. },
  7085. {
  7086. "_attributes": {
  7087. "path": "chi-9260c507.ogg"
  7088. },
  7089. "tag": {
  7090. "_attributes": {
  7091. "swac_text": "家",
  7092. "swac_alphaidx": "jiā",
  7093. "swac_pron_phon": "jiā"
  7094. }
  7095. }
  7096. },
  7097. {
  7098. "_attributes": {
  7099. "path": "chi-92a5eacf.ogg"
  7100. },
  7101. "tag": {
  7102. "_attributes": {
  7103. "swac_text": "上",
  7104. "swac_alphaidx": "shàng",
  7105. "swac_pron_phon": "shàng"
  7106. }
  7107. }
  7108. },
  7109. {
  7110. "_attributes": {
  7111. "path": "chi-92b651f7.ogg"
  7112. },
  7113. "tag": {
  7114. "_attributes": {
  7115. "swac_text": "儿子",
  7116. "swac_alphaidx": "érzi",
  7117. "swac_pron_phon": "érzi"
  7118. }
  7119. }
  7120. },
  7121. {
  7122. "_attributes": {
  7123. "path": "chi-942fb08c.ogg"
  7124. },
  7125. "tag": {
  7126. "_attributes": {
  7127. "swac_text": "好处",
  7128. "swac_alphaidx": "hǎochu",
  7129. "swac_pron_phon": "hǎochu"
  7130. }
  7131. }
  7132. },
  7133. {
  7134. "_attributes": {
  7135. "path": "chi-9459eb26.ogg"
  7136. },
  7137. "tag": {
  7138. "_attributes": {
  7139. "swac_text": "楼",
  7140. "swac_alphaidx": "lóu",
  7141. "swac_pron_phon": "lóu"
  7142. }
  7143. }
  7144. },
  7145. {
  7146. "_attributes": {
  7147. "path": "chi-94cf2bfd.ogg"
  7148. },
  7149. "tag": {
  7150. "_attributes": {
  7151. "swac_text": "推",
  7152. "swac_alphaidx": "tuī",
  7153. "swac_pron_phon": "tuī"
  7154. }
  7155. }
  7156. },
  7157. {
  7158. "_attributes": {
  7159. "path": "chi-94e357c2.ogg"
  7160. },
  7161. "tag": {
  7162. "_attributes": {
  7163. "swac_text": "为了",
  7164. "swac_alphaidx": "wèile",
  7165. "swac_pron_phon": "wèile"
  7166. }
  7167. }
  7168. },
  7169. {
  7170. "_attributes": {
  7171. "path": "chi-951388f3.ogg"
  7172. },
  7173. "tag": {
  7174. "_attributes": {
  7175. "swac_text": "词典",
  7176. "swac_alphaidx": "cídiǎn",
  7177. "swac_pron_phon": "cídiǎn"
  7178. }
  7179. }
  7180. },
  7181. {
  7182. "_attributes": {
  7183. "path": "chi-9535b3ae.ogg"
  7184. },
  7185. "tag": {
  7186. "_attributes": {
  7187. "swac_text": "一共",
  7188. "swac_alphaidx": "yígòng",
  7189. "swac_pron_phon": "yígòng"
  7190. }
  7191. }
  7192. },
  7193. {
  7194. "_attributes": {
  7195. "path": "chi-955e150d.ogg"
  7196. },
  7197. "tag": {
  7198. "_attributes": {
  7199. "swac_text": "节目",
  7200. "swac_alphaidx": "jiémù",
  7201. "swac_pron_phon": "jiémù"
  7202. }
  7203. }
  7204. },
  7205. {
  7206. "_attributes": {
  7207. "path": "chi-957aea9e.ogg"
  7208. },
  7209. "tag": {
  7210. "_attributes": {
  7211. "swac_text": "她们",
  7212. "swac_alphaidx": "tāmen",
  7213. "swac_pron_phon": "tāmen"
  7214. }
  7215. }
  7216. },
  7217. {
  7218. "_attributes": {
  7219. "path": "chi-95dabfdf.ogg"
  7220. },
  7221. "tag": {
  7222. "_attributes": {
  7223. "swac_text": "口",
  7224. "swac_alphaidx": "kǒu",
  7225. "swac_pron_phon": "kǒu"
  7226. }
  7227. }
  7228. },
  7229. {
  7230. "_attributes": {
  7231. "path": "chi-95f899d2.ogg"
  7232. },
  7233. "tag": {
  7234. "_attributes": {
  7235. "swac_text": "没",
  7236. "swac_alphaidx": "méi",
  7237. "swac_pron_phon": "méi"
  7238. }
  7239. }
  7240. },
  7241. {
  7242. "_attributes": {
  7243. "path": "chi-962f37de.ogg"
  7244. },
  7245. "tag": {
  7246. "_attributes": {
  7247. "swac_text": "片",
  7248. "swac_alphaidx": "piàn",
  7249. "swac_pron_phon": "piàn"
  7250. }
  7251. }
  7252. },
  7253. {
  7254. "_attributes": {
  7255. "path": "chi-964b699e.ogg"
  7256. },
  7257. "tag": {
  7258. "_attributes": {
  7259. "swac_text": "破",
  7260. "swac_alphaidx": "pò",
  7261. "swac_pron_phon": "pò"
  7262. }
  7263. }
  7264. },
  7265. {
  7266. "_attributes": {
  7267. "path": "chi-9695557a.ogg"
  7268. },
  7269. "tag": {
  7270. "_attributes": {
  7271. "swac_text": "年级",
  7272. "swac_alphaidx": "niánjí",
  7273. "swac_pron_phon": "niánjí"
  7274. }
  7275. }
  7276. },
  7277. {
  7278. "_attributes": {
  7279. "path": "chi-96d3bee6.ogg"
  7280. },
  7281. "tag": {
  7282. "_attributes": {
  7283. "swac_text": "图书馆",
  7284. "swac_alphaidx": "túshūguǎn",
  7285. "swac_pron_phon": "túshūguǎn"
  7286. }
  7287. }
  7288. },
  7289. {
  7290. "_attributes": {
  7291. "path": "chi-9780c0fa.ogg"
  7292. },
  7293. "tag": {
  7294. "_attributes": {
  7295. "swac_text": "这么",
  7296. "swac_alphaidx": "zhème",
  7297. "swac_pron_phon": "zhème"
  7298. }
  7299. }
  7300. },
  7301. {
  7302. "_attributes": {
  7303. "path": "chi-97c17b5e.ogg"
  7304. },
  7305. "tag": {
  7306. "_attributes": {
  7307. "swac_text": "吹",
  7308. "swac_alphaidx": "chuī",
  7309. "swac_pron_phon": "chuī"
  7310. }
  7311. }
  7312. },
  7313. {
  7314. "_attributes": {
  7315. "path": "chi-9813b952.ogg"
  7316. },
  7317. "tag": {
  7318. "_attributes": {
  7319. "swac_text": "铅笔",
  7320. "swac_alphaidx": "qiānbǐ",
  7321. "swac_pron_phon": "qiānbǐ"
  7322. }
  7323. }
  7324. },
  7325. {
  7326. "_attributes": {
  7327. "path": "chi-988c9769.ogg"
  7328. },
  7329. "tag": {
  7330. "_attributes": {
  7331. "swac_text": "同时",
  7332. "swac_alphaidx": "tóngshí",
  7333. "swac_pron_phon": "tóngshí"
  7334. }
  7335. }
  7336. },
  7337. {
  7338. "_attributes": {
  7339. "path": "chi-9893f33c.ogg"
  7340. },
  7341. "tag": {
  7342. "_attributes": {
  7343. "swac_text": "棵",
  7344. "swac_alphaidx": "kē",
  7345. "swac_pron_phon": "kē"
  7346. }
  7347. }
  7348. },
  7349. {
  7350. "_attributes": {
  7351. "path": "chi-98cc57b0.ogg"
  7352. },
  7353. "tag": {
  7354. "_attributes": {
  7355. "swac_text": "麻烦",
  7356. "swac_alphaidx": "máfan",
  7357. "swac_pron_phon": "máfan"
  7358. }
  7359. }
  7360. },
  7361. {
  7362. "_attributes": {
  7363. "path": "chi-98d03c89.ogg"
  7364. },
  7365. "tag": {
  7366. "_attributes": {
  7367. "swac_text": "问",
  7368. "swac_alphaidx": "wèn",
  7369. "swac_pron_phon": "wèn"
  7370. }
  7371. }
  7372. },
  7373. {
  7374. "_attributes": {
  7375. "path": "chi-98d5768e.ogg"
  7376. },
  7377. "tag": {
  7378. "_attributes": {
  7379. "swac_text": "克",
  7380. "swac_alphaidx": "kè",
  7381. "swac_pron_phon": "kè"
  7382. }
  7383. }
  7384. },
  7385. {
  7386. "_attributes": {
  7387. "path": "chi-98dc0fcc.ogg"
  7388. },
  7389. "tag": {
  7390. "_attributes": {
  7391. "swac_text": "本",
  7392. "swac_alphaidx": "běn",
  7393. "swac_pron_phon": "běn"
  7394. }
  7395. }
  7396. },
  7397. {
  7398. "_attributes": {
  7399. "path": "chi-98e23e9b.ogg"
  7400. },
  7401. "tag": {
  7402. "_attributes": {
  7403. "swac_text": "以后",
  7404. "swac_alphaidx": "yǐhòu",
  7405. "swac_pron_phon": "yǐhòu"
  7406. }
  7407. }
  7408. },
  7409. {
  7410. "_attributes": {
  7411. "path": "chi-99479c91.ogg"
  7412. },
  7413. "tag": {
  7414. "_attributes": {
  7415. "swac_text": "夜",
  7416. "swac_alphaidx": "yè",
  7417. "swac_pron_phon": "yè"
  7418. }
  7419. }
  7420. },
  7421. {
  7422. "_attributes": {
  7423. "path": "chi-99b78c85.ogg"
  7424. },
  7425. "tag": {
  7426. "_attributes": {
  7427. "swac_text": "那样",
  7428. "swac_alphaidx": "nàyàng",
  7429. "swac_pron_phon": "nàyàng"
  7430. }
  7431. }
  7432. },
  7433. {
  7434. "_attributes": {
  7435. "path": "chi-99d0ff05.ogg"
  7436. },
  7437. "tag": {
  7438. "_attributes": {
  7439. "swac_text": "场",
  7440. "swac_alphaidx": "chǎng",
  7441. "swac_pron_phon": "chǎng"
  7442. }
  7443. }
  7444. },
  7445. {
  7446. "_attributes": {
  7447. "path": "chi-99fa617d.ogg"
  7448. },
  7449. "tag": {
  7450. "_attributes": {
  7451. "swac_text": "吃",
  7452. "swac_alphaidx": "chī",
  7453. "swac_pron_phon": "chī"
  7454. }
  7455. }
  7456. },
  7457. {
  7458. "_attributes": {
  7459. "path": "chi-9a0b3980.ogg"
  7460. },
  7461. "tag": {
  7462. "_attributes": {
  7463. "swac_text": "你们",
  7464. "swac_alphaidx": "nǐmen",
  7465. "swac_pron_phon": "nǐmen"
  7466. }
  7467. }
  7468. },
  7469. {
  7470. "_attributes": {
  7471. "path": "chi-9a1e70fe.ogg"
  7472. },
  7473. "tag": {
  7474. "_attributes": {
  7475. "swac_text": "演出",
  7476. "swac_alphaidx": "yǎnchū",
  7477. "swac_pron_phon": "yǎnchū"
  7478. }
  7479. }
  7480. },
  7481. {
  7482. "_attributes": {
  7483. "path": "chi-9a47e4e5.ogg"
  7484. },
  7485. "tag": {
  7486. "_attributes": {
  7487. "swac_text": "到",
  7488. "swac_alphaidx": "dào",
  7489. "swac_pron_phon": "dào"
  7490. }
  7491. }
  7492. },
  7493. {
  7494. "_attributes": {
  7495. "path": "chi-9ae96f46.ogg"
  7496. },
  7497. "tag": {
  7498. "_attributes": {
  7499. "swac_text": "有意思",
  7500. "swac_alphaidx": "yǒuyìsi",
  7501. "swac_pron_phon": "yǒuyìsi"
  7502. }
  7503. }
  7504. },
  7505. {
  7506. "_attributes": {
  7507. "path": "chi-9b1bb4d2.ogg"
  7508. },
  7509. "tag": {
  7510. "_attributes": {
  7511. "swac_text": "近",
  7512. "swac_alphaidx": "jìn",
  7513. "swac_pron_phon": "jìn"
  7514. }
  7515. }
  7516. },
  7517. {
  7518. "_attributes": {
  7519. "path": "chi-9bad70c0.ogg"
  7520. },
  7521. "tag": {
  7522. "_attributes": {
  7523. "swac_text": "指",
  7524. "swac_alphaidx": "zhǐ",
  7525. "swac_pron_phon": "zhǐ"
  7526. }
  7527. }
  7528. },
  7529. {
  7530. "_attributes": {
  7531. "path": "chi-9bbd7adf.ogg"
  7532. },
  7533. "tag": {
  7534. "_attributes": {
  7535. "swac_text": "完全",
  7536. "swac_alphaidx": "wánquán",
  7537. "swac_pron_phon": "wánquán"
  7538. }
  7539. }
  7540. },
  7541. {
  7542. "_attributes": {
  7543. "path": "chi-9bc31d8b.ogg"
  7544. },
  7545. "tag": {
  7546. "_attributes": {
  7547. "swac_text": "得",
  7548. "swac_alphaidx": "děi",
  7549. "swac_pron_phon": "děi"
  7550. }
  7551. }
  7552. },
  7553. {
  7554. "_attributes": {
  7555. "path": "chi-9c2f21ea.ogg"
  7556. },
  7557. "tag": {
  7558. "_attributes": {
  7559. "swac_text": "原谅",
  7560. "swac_alphaidx": "yuánliàng",
  7561. "swac_pron_phon": "yuánliàng"
  7562. }
  7563. }
  7564. },
  7565. {
  7566. "_attributes": {
  7567. "path": "chi-9c2fbbe9.ogg"
  7568. },
  7569. "tag": {
  7570. "_attributes": {
  7571. "swac_text": "忘",
  7572. "swac_alphaidx": "wàng",
  7573. "swac_pron_phon": "wàng"
  7574. }
  7575. }
  7576. },
  7577. {
  7578. "_attributes": {
  7579. "path": "chi-9c43f979.ogg"
  7580. },
  7581. "tag": {
  7582. "_attributes": {
  7583. "swac_text": "要求",
  7584. "swac_alphaidx": "yāoqiú",
  7585. "swac_pron_phon": "yāoqiú"
  7586. }
  7587. }
  7588. },
  7589. {
  7590. "_attributes": {
  7591. "path": "chi-9ca95c08.ogg"
  7592. },
  7593. "tag": {
  7594. "_attributes": {
  7595. "swac_text": "地方",
  7596. "swac_alphaidx": "dìfang",
  7597. "swac_pron_phon": "dìfang"
  7598. }
  7599. }
  7600. },
  7601. {
  7602. "_attributes": {
  7603. "path": "chi-9d10b158.ogg"
  7604. },
  7605. "tag": {
  7606. "_attributes": {
  7607. "swac_text": "响",
  7608. "swac_alphaidx": "xiǎng",
  7609. "swac_pron_phon": "xiǎng"
  7610. }
  7611. }
  7612. },
  7613. {
  7614. "_attributes": {
  7615. "path": "chi-9d812e91.ogg"
  7616. },
  7617. "tag": {
  7618. "_attributes": {
  7619. "swac_text": "冷",
  7620. "swac_alphaidx": "lěng",
  7621. "swac_pron_phon": "lěng"
  7622. }
  7623. }
  7624. },
  7625. {
  7626. "_attributes": {
  7627. "path": "chi-9d870567.ogg"
  7628. },
  7629. "tag": {
  7630. "_attributes": {
  7631. "swac_text": "广播",
  7632. "swac_alphaidx": "guǎngbō",
  7633. "swac_pron_phon": "guǎngbō"
  7634. }
  7635. }
  7636. },
  7637. {
  7638. "_attributes": {
  7639. "path": "chi-9ddf6215.ogg"
  7640. },
  7641. "tag": {
  7642. "_attributes": {
  7643. "swac_text": "怎么样",
  7644. "swac_alphaidx": "zěnmeyàng",
  7645. "swac_pron_phon": "zěnmeyàng"
  7646. }
  7647. }
  7648. },
  7649. {
  7650. "_attributes": {
  7651. "path": "chi-9e0310e1.ogg"
  7652. },
  7653. "tag": {
  7654. "_attributes": {
  7655. "swac_text": "基础",
  7656. "swac_alphaidx": "jīchǔ",
  7657. "swac_pron_phon": "jīchǔ"
  7658. }
  7659. }
  7660. },
  7661. {
  7662. "_attributes": {
  7663. "path": "chi-9e94452e.ogg"
  7664. },
  7665. "tag": {
  7666. "_attributes": {
  7667. "swac_text": "经验",
  7668. "swac_alphaidx": "jīngyàn",
  7669. "swac_pron_phon": "jīngyàn"
  7670. }
  7671. }
  7672. },
  7673. {
  7674. "_attributes": {
  7675. "path": "chi-9eb4485b.ogg"
  7676. },
  7677. "tag": {
  7678. "_attributes": {
  7679. "swac_text": "着急",
  7680. "swac_alphaidx": "zháojí",
  7681. "swac_pron_phon": "zháojí"
  7682. }
  7683. }
  7684. },
  7685. {
  7686. "_attributes": {
  7687. "path": "chi-9eda7536.ogg"
  7688. },
  7689. "tag": {
  7690. "_attributes": {
  7691. "swac_text": "医院",
  7692. "swac_alphaidx": "yīyuàn",
  7693. "swac_pron_phon": "yīyuàn"
  7694. }
  7695. }
  7696. },
  7697. {
  7698. "_attributes": {
  7699. "path": "chi-9eee6de6.ogg"
  7700. },
  7701. "tag": {
  7702. "_attributes": {
  7703. "swac_text": "电影",
  7704. "swac_alphaidx": "diànyǐng",
  7705. "swac_pron_phon": "diànyǐng"
  7706. }
  7707. }
  7708. },
  7709. {
  7710. "_attributes": {
  7711. "path": "chi-9f5c8f85.ogg"
  7712. },
  7713. "tag": {
  7714. "_attributes": {
  7715. "swac_text": "查",
  7716. "swac_alphaidx": "chá",
  7717. "swac_pron_phon": "chá"
  7718. }
  7719. }
  7720. },
  7721. {
  7722. "_attributes": {
  7723. "path": "chi-9f94c752.ogg"
  7724. },
  7725. "tag": {
  7726. "_attributes": {
  7727. "swac_text": "努力",
  7728. "swac_alphaidx": "nǔlì",
  7729. "swac_pron_phon": "nǔlì"
  7730. }
  7731. }
  7732. },
  7733. {
  7734. "_attributes": {
  7735. "path": "chi-9f96d7db.ogg"
  7736. },
  7737. "tag": {
  7738. "_attributes": {
  7739. "swac_text": "能够",
  7740. "swac_alphaidx": "nénggòu",
  7741. "swac_pron_phon": "nénggòu"
  7742. }
  7743. }
  7744. },
  7745. {
  7746. "_attributes": {
  7747. "path": "chi-9fadbfa8.ogg"
  7748. },
  7749. "tag": {
  7750. "_attributes": {
  7751. "swac_text": "安静",
  7752. "swac_alphaidx": "ānjìng",
  7753. "swac_pron_phon": "ānjìng"
  7754. }
  7755. }
  7756. },
  7757. {
  7758. "_attributes": {
  7759. "path": "chi-9fba6371.ogg"
  7760. },
  7761. "tag": {
  7762. "_attributes": {
  7763. "swac_text": "写",
  7764. "swac_alphaidx": "xiě",
  7765. "swac_pron_phon": "xiě"
  7766. }
  7767. }
  7768. },
  7769. {
  7770. "_attributes": {
  7771. "path": "chi-9fbabc7e.ogg"
  7772. },
  7773. "tag": {
  7774. "_attributes": {
  7775. "swac_text": "热情",
  7776. "swac_alphaidx": "rèqíng",
  7777. "swac_pron_phon": "rèqíng"
  7778. }
  7779. }
  7780. },
  7781. {
  7782. "_attributes": {
  7783. "path": "chi-9ff87b56.ogg"
  7784. },
  7785. "tag": {
  7786. "_attributes": {
  7787. "swac_text": "只",
  7788. "swac_alphaidx": "zhǐ",
  7789. "swac_pron_phon": "zhǐ"
  7790. }
  7791. }
  7792. },
  7793. {
  7794. "_attributes": {
  7795. "path": "chi-a01c76db.ogg"
  7796. },
  7797. "tag": {
  7798. "_attributes": {
  7799. "swac_text": "感冒",
  7800. "swac_alphaidx": "gǎnmào",
  7801. "swac_pron_phon": "gǎnmào"
  7802. }
  7803. }
  7804. },
  7805. {
  7806. "_attributes": {
  7807. "path": "chi-a08a45d6.ogg"
  7808. },
  7809. "tag": {
  7810. "_attributes": {
  7811. "swac_text": "不错",
  7812. "swac_alphaidx": "búcuò",
  7813. "swac_pron_phon": "búcuò"
  7814. }
  7815. }
  7816. },
  7817. {
  7818. "_attributes": {
  7819. "path": "chi-a0995aac.ogg"
  7820. },
  7821. "tag": {
  7822. "_attributes": {
  7823. "swac_text": "桥",
  7824. "swac_alphaidx": "qiáo",
  7825. "swac_pron_phon": "qiáo"
  7826. }
  7827. }
  7828. },
  7829. {
  7830. "_attributes": {
  7831. "path": "chi-a09e3259.ogg"
  7832. },
  7833. "tag": {
  7834. "_attributes": {
  7835. "swac_text": "先",
  7836. "swac_alphaidx": "xiān",
  7837. "swac_pron_phon": "xiān"
  7838. }
  7839. }
  7840. },
  7841. {
  7842. "_attributes": {
  7843. "path": "chi-a0eb07de.ogg"
  7844. },
  7845. "tag": {
  7846. "_attributes": {
  7847. "swac_text": "农业",
  7848. "swac_alphaidx": "nóngyè",
  7849. "swac_pron_phon": "nóngyè"
  7850. }
  7851. }
  7852. },
  7853. {
  7854. "_attributes": {
  7855. "path": "chi-a12f9b22.ogg"
  7856. },
  7857. "tag": {
  7858. "_attributes": {
  7859. "swac_text": "累",
  7860. "swac_alphaidx": "lèi",
  7861. "swac_pron_phon": "lèi"
  7862. }
  7863. }
  7864. },
  7865. {
  7866. "_attributes": {
  7867. "path": "chi-a17ea23e.ogg"
  7868. },
  7869. "tag": {
  7870. "_attributes": {
  7871. "swac_text": "口语",
  7872. "swac_alphaidx": "kǒuyǔ",
  7873. "swac_pron_phon": "kǒuyǔ"
  7874. }
  7875. }
  7876. },
  7877. {
  7878. "_attributes": {
  7879. "path": "chi-a1972983.ogg"
  7880. },
  7881. "tag": {
  7882. "_attributes": {
  7883. "swac_text": "贵",
  7884. "swac_alphaidx": "guì",
  7885. "swac_pron_phon": "guì"
  7886. }
  7887. }
  7888. },
  7889. {
  7890. "_attributes": {
  7891. "path": "chi-a1b071e5.ogg"
  7892. },
  7893. "tag": {
  7894. "_attributes": {
  7895. "swac_text": "生词",
  7896. "swac_alphaidx": "shēngcí",
  7897. "swac_pron_phon": "shēngcí"
  7898. }
  7899. }
  7900. },
  7901. {
  7902. "_attributes": {
  7903. "path": "chi-a22a4166.ogg"
  7904. },
  7905. "tag": {
  7906. "_attributes": {
  7907. "swac_text": "旅行",
  7908. "swac_alphaidx": "lǚxíng",
  7909. "swac_pron_phon": "lǚxíng"
  7910. }
  7911. }
  7912. },
  7913. {
  7914. "_attributes": {
  7915. "path": "chi-a23e5483.ogg"
  7916. },
  7917. "tag": {
  7918. "_attributes": {
  7919. "swac_text": "忽然",
  7920. "swac_alphaidx": "hūrán",
  7921. "swac_pron_phon": "hūrán"
  7922. }
  7923. }
  7924. },
  7925. {
  7926. "_attributes": {
  7927. "path": "chi-a2407229.ogg"
  7928. },
  7929. "tag": {
  7930. "_attributes": {
  7931. "swac_text": "少",
  7932. "swac_alphaidx": "shǎo",
  7933. "swac_pron_phon": "shǎo"
  7934. }
  7935. }
  7936. },
  7937. {
  7938. "_attributes": {
  7939. "path": "chi-a25a0b5f.ogg"
  7940. },
  7941. "tag": {
  7942. "_attributes": {
  7943. "swac_text": "怎么",
  7944. "swac_alphaidx": "zěnme",
  7945. "swac_pron_phon": "zěnme"
  7946. }
  7947. }
  7948. },
  7949. {
  7950. "_attributes": {
  7951. "path": "chi-a25aef06.ogg"
  7952. },
  7953. "tag": {
  7954. "_attributes": {
  7955. "swac_text": "宴会",
  7956. "swac_alphaidx": "yànhuì",
  7957. "swac_pron_phon": "yànhuì"
  7958. }
  7959. }
  7960. },
  7961. {
  7962. "_attributes": {
  7963. "path": "chi-a26537fa.ogg"
  7964. },
  7965. "tag": {
  7966. "_attributes": {
  7967. "swac_text": "机会",
  7968. "swac_alphaidx": "jīhuì",
  7969. "swac_pron_phon": "jīhuì"
  7970. }
  7971. }
  7972. },
  7973. {
  7974. "_attributes": {
  7975. "path": "chi-a2ee8aff.ogg"
  7976. },
  7977. "tag": {
  7978. "_attributes": {
  7979. "swac_text": "下去",
  7980. "swac_alphaidx": "xiàqù",
  7981. "swac_pron_phon": "xiàqù"
  7982. }
  7983. }
  7984. },
  7985. {
  7986. "_attributes": {
  7987. "path": "chi-a303d30c.ogg"
  7988. },
  7989. "tag": {
  7990. "_attributes": {
  7991. "swac_text": "经济",
  7992. "swac_alphaidx": "jīngjì",
  7993. "swac_pron_phon": "jīngjì"
  7994. }
  7995. }
  7996. },
  7997. {
  7998. "_attributes": {
  7999. "path": "chi-a3300f49.ogg"
  8000. },
  8001. "tag": {
  8002. "_attributes": {
  8003. "swac_text": "多",
  8004. "swac_alphaidx": "duō",
  8005. "swac_pron_phon": "duō"
  8006. }
  8007. }
  8008. },
  8009. {
  8010. "_attributes": {
  8011. "path": "chi-a361fbcf.ogg"
  8012. },
  8013. "tag": {
  8014. "_attributes": {
  8015. "swac_text": "给",
  8016. "swac_alphaidx": "gěi",
  8017. "swac_pron_phon": "gěi"
  8018. }
  8019. }
  8020. },
  8021. {
  8022. "_attributes": {
  8023. "path": "chi-a4385874.ogg"
  8024. },
  8025. "tag": {
  8026. "_attributes": {
  8027. "swac_text": "表现",
  8028. "swac_alphaidx": "biǎoxiàn",
  8029. "swac_pron_phon": "biǎoxiàn"
  8030. }
  8031. }
  8032. },
  8033. {
  8034. "_attributes": {
  8035. "path": "chi-a458d690.ogg"
  8036. },
  8037. "tag": {
  8038. "_attributes": {
  8039. "swac_text": "女",
  8040. "swac_alphaidx": "nǚ",
  8041. "swac_pron_phon": "nǚ"
  8042. }
  8043. }
  8044. },
  8045. {
  8046. "_attributes": {
  8047. "path": "chi-a49bf63b.ogg"
  8048. },
  8049. "tag": {
  8050. "_attributes": {
  8051. "swac_text": "先生",
  8052. "swac_alphaidx": "xiānsheng",
  8053. "swac_pron_phon": "xiānsheng"
  8054. }
  8055. }
  8056. },
  8057. {
  8058. "_attributes": {
  8059. "path": "chi-a4b11206.ogg"
  8060. },
  8061. "tag": {
  8062. "_attributes": {
  8063. "swac_text": "知识",
  8064. "swac_alphaidx": "zhīshi",
  8065. "swac_pron_phon": "zhīshi"
  8066. }
  8067. }
  8068. },
  8069. {
  8070. "_attributes": {
  8071. "path": "chi-a4bb41b3.ogg"
  8072. },
  8073. "tag": {
  8074. "_attributes": {
  8075. "swac_text": "重",
  8076. "swac_alphaidx": "zhòng",
  8077. "swac_pron_phon": "zhòng"
  8078. }
  8079. }
  8080. },
  8081. {
  8082. "_attributes": {
  8083. "path": "chi-a4eaef6c.ogg"
  8084. },
  8085. "tag": {
  8086. "_attributes": {
  8087. "swac_text": "眼睛",
  8088. "swac_alphaidx": "yǎnjing",
  8089. "swac_pron_phon": "yǎnjing"
  8090. }
  8091. }
  8092. },
  8093. {
  8094. "_attributes": {
  8095. "path": "chi-a5468d0b.ogg"
  8096. },
  8097. "tag": {
  8098. "_attributes": {
  8099. "swac_text": "举",
  8100. "swac_alphaidx": "jǔ",
  8101. "swac_pron_phon": "jǔ"
  8102. }
  8103. }
  8104. },
  8105. {
  8106. "_attributes": {
  8107. "path": "chi-a563ff2c.ogg"
  8108. },
  8109. "tag": {
  8110. "_attributes": {
  8111. "swac_text": "讲",
  8112. "swac_alphaidx": "jiǎng",
  8113. "swac_pron_phon": "jiǎng"
  8114. }
  8115. }
  8116. },
  8117. {
  8118. "_attributes": {
  8119. "path": "chi-a5a9fa05.ogg"
  8120. },
  8121. "tag": {
  8122. "_attributes": {
  8123. "swac_text": "接",
  8124. "swac_alphaidx": "jiē",
  8125. "swac_pron_phon": "jiē"
  8126. }
  8127. }
  8128. },
  8129. {
  8130. "_attributes": {
  8131. "path": "chi-a7342bcb.ogg"
  8132. },
  8133. "tag": {
  8134. "_attributes": {
  8135. "swac_text": "那么",
  8136. "swac_alphaidx": "nàme",
  8137. "swac_pron_phon": "nàme"
  8138. }
  8139. }
  8140. },
  8141. {
  8142. "_attributes": {
  8143. "path": "chi-a7662d95.ogg"
  8144. },
  8145. "tag": {
  8146. "_attributes": {
  8147. "swac_text": "表演",
  8148. "swac_alphaidx": "biǎoyǎn",
  8149. "swac_pron_phon": "biǎoyǎn"
  8150. }
  8151. }
  8152. },
  8153. {
  8154. "_attributes": {
  8155. "path": "chi-a7837ff8.ogg"
  8156. },
  8157. "tag": {
  8158. "_attributes": {
  8159. "swac_text": "错",
  8160. "swac_alphaidx": "cuò",
  8161. "swac_pron_phon": "cuò"
  8162. }
  8163. }
  8164. },
  8165. {
  8166. "_attributes": {
  8167. "path": "chi-a7863abd.ogg"
  8168. },
  8169. "tag": {
  8170. "_attributes": {
  8171. "swac_text": "声音",
  8172. "swac_alphaidx": "shēngyīn",
  8173. "swac_pron_phon": "shēngyīn"
  8174. }
  8175. }
  8176. },
  8177. {
  8178. "_attributes": {
  8179. "path": "chi-a78dd330.ogg"
  8180. },
  8181. "tag": {
  8182. "_attributes": {
  8183. "swac_text": "正确",
  8184. "swac_alphaidx": "zhèngquè",
  8185. "swac_pron_phon": "zhèngquè"
  8186. }
  8187. }
  8188. },
  8189. {
  8190. "_attributes": {
  8191. "path": "chi-a7fccf29.ogg"
  8192. },
  8193. "tag": {
  8194. "_attributes": {
  8195. "swac_text": "坏",
  8196. "swac_alphaidx": "huài",
  8197. "swac_pron_phon": "huài"
  8198. }
  8199. }
  8200. },
  8201. {
  8202. "_attributes": {
  8203. "path": "chi-a85a136a.ogg"
  8204. },
  8205. "tag": {
  8206. "_attributes": {
  8207. "swac_text": "新",
  8208. "swac_alphaidx": "xīn",
  8209. "swac_pron_phon": "xīn"
  8210. }
  8211. }
  8212. },
  8213. {
  8214. "_attributes": {
  8215. "path": "chi-a872bb1d.ogg"
  8216. },
  8217. "tag": {
  8218. "_attributes": {
  8219. "swac_text": "有些",
  8220. "swac_alphaidx": "yǒuxiē",
  8221. "swac_pron_phon": "yǒuxiē"
  8222. }
  8223. }
  8224. },
  8225. {
  8226. "_attributes": {
  8227. "path": "chi-a8a624bc.ogg"
  8228. },
  8229. "tag": {
  8230. "_attributes": {
  8231. "swac_text": "公园",
  8232. "swac_alphaidx": "gōngyuán",
  8233. "swac_pron_phon": "gōngyuán"
  8234. }
  8235. }
  8236. },
  8237. {
  8238. "_attributes": {
  8239. "path": "chi-a9559897.ogg"
  8240. },
  8241. "tag": {
  8242. "_attributes": {
  8243. "swac_text": "上学",
  8244. "swac_alphaidx": "shàngxué",
  8245. "swac_pron_phon": "shàngxué"
  8246. }
  8247. }
  8248. },
  8249. {
  8250. "_attributes": {
  8251. "path": "chi-a984a42f.ogg"
  8252. },
  8253. "tag": {
  8254. "_attributes": {
  8255. "swac_text": "错误",
  8256. "swac_alphaidx": "cuòwù",
  8257. "swac_pron_phon": "cuòwù"
  8258. }
  8259. }
  8260. },
  8261. {
  8262. "_attributes": {
  8263. "path": "chi-a999725e.ogg"
  8264. },
  8265. "tag": {
  8266. "_attributes": {
  8267. "swac_text": "操场",
  8268. "swac_alphaidx": "cāochǎng",
  8269. "swac_pron_phon": "cāochǎng"
  8270. }
  8271. }
  8272. },
  8273. {
  8274. "_attributes": {
  8275. "path": "chi-a99a7358.ogg"
  8276. },
  8277. "tag": {
  8278. "_attributes": {
  8279. "swac_text": "爬",
  8280. "swac_alphaidx": "pá",
  8281. "swac_pron_phon": "pá"
  8282. }
  8283. }
  8284. },
  8285. {
  8286. "_attributes": {
  8287. "path": "chi-aa776535.ogg"
  8288. },
  8289. "tag": {
  8290. "_attributes": {
  8291. "swac_text": "点",
  8292. "swac_alphaidx": "diǎn",
  8293. "swac_pron_phon": "diǎn"
  8294. }
  8295. }
  8296. },
  8297. {
  8298. "_attributes": {
  8299. "path": "chi-aab469a9.ogg"
  8300. },
  8301. "tag": {
  8302. "_attributes": {
  8303. "swac_text": "都",
  8304. "swac_alphaidx": "dōu",
  8305. "swac_pron_phon": "dōu"
  8306. }
  8307. }
  8308. },
  8309. {
  8310. "_attributes": {
  8311. "path": "chi-ab61b453.ogg"
  8312. },
  8313. "tag": {
  8314. "_attributes": {
  8315. "swac_text": "看见",
  8316. "swac_alphaidx": "kànjiàn",
  8317. "swac_pron_phon": "kànjiàn"
  8318. }
  8319. }
  8320. },
  8321. {
  8322. "_attributes": {
  8323. "path": "chi-abb01e50.ogg"
  8324. },
  8325. "tag": {
  8326. "_attributes": {
  8327. "swac_text": "自行车",
  8328. "swac_alphaidx": "zìxíngchē",
  8329. "swac_pron_phon": "zìxíngchē"
  8330. }
  8331. }
  8332. },
  8333. {
  8334. "_attributes": {
  8335. "path": "chi-abc6d215.ogg"
  8336. },
  8337. "tag": {
  8338. "_attributes": {
  8339. "swac_text": "声调",
  8340. "swac_alphaidx": "shēngdiào",
  8341. "swac_pron_phon": "shēngdiào"
  8342. }
  8343. }
  8344. },
  8345. {
  8346. "_attributes": {
  8347. "path": "chi-aca24145.ogg"
  8348. },
  8349. "tag": {
  8350. "_attributes": {
  8351. "swac_text": "午饭",
  8352. "swac_alphaidx": "wǔfàn",
  8353. "swac_pron_phon": "wǔfàn"
  8354. }
  8355. }
  8356. },
  8357. {
  8358. "_attributes": {
  8359. "path": "chi-acbe6380.ogg"
  8360. },
  8361. "tag": {
  8362. "_attributes": {
  8363. "swac_text": "遇到",
  8364. "swac_alphaidx": "yùdào",
  8365. "swac_pron_phon": "yùdào"
  8366. }
  8367. }
  8368. },
  8369. {
  8370. "_attributes": {
  8371. "path": "chi-acc01b6a.ogg"
  8372. },
  8373. "tag": {
  8374. "_attributes": {
  8375. "swac_text": "复杂",
  8376. "swac_alphaidx": "fùzá",
  8377. "swac_pron_phon": "fùzá"
  8378. }
  8379. }
  8380. },
  8381. {
  8382. "_attributes": {
  8383. "path": "chi-ad32bbe0.ogg"
  8384. },
  8385. "tag": {
  8386. "_attributes": {
  8387. "swac_text": "边",
  8388. "swac_alphaidx": "biān",
  8389. "swac_pron_phon": "biān"
  8390. }
  8391. }
  8392. },
  8393. {
  8394. "_attributes": {
  8395. "path": "chi-ad54f48f.ogg"
  8396. },
  8397. "tag": {
  8398. "_attributes": {
  8399. "swac_text": "常常",
  8400. "swac_alphaidx": "chángcháng",
  8401. "swac_pron_phon": "chángcháng"
  8402. }
  8403. }
  8404. },
  8405. {
  8406. "_attributes": {
  8407. "path": "chi-adbe8ea0.ogg"
  8408. },
  8409. "tag": {
  8410. "_attributes": {
  8411. "swac_text": "可是",
  8412. "swac_alphaidx": "kěshì",
  8413. "swac_pron_phon": "kěshì"
  8414. }
  8415. }
  8416. },
  8417. {
  8418. "_attributes": {
  8419. "path": "chi-ae02f862.ogg"
  8420. },
  8421. "tag": {
  8422. "_attributes": {
  8423. "swac_text": "舒服",
  8424. "swac_alphaidx": "shūfu",
  8425. "swac_pron_phon": "shūfu"
  8426. }
  8427. }
  8428. },
  8429. {
  8430. "_attributes": {
  8431. "path": "chi-ae050c05.ogg"
  8432. },
  8433. "tag": {
  8434. "_attributes": {
  8435. "swac_text": "比",
  8436. "swac_alphaidx": "bǐ",
  8437. "swac_pron_phon": "bǐ"
  8438. }
  8439. }
  8440. },
  8441. {
  8442. "_attributes": {
  8443. "path": "chi-ae0c6189.ogg"
  8444. },
  8445. "tag": {
  8446. "_attributes": {
  8447. "swac_text": "词",
  8448. "swac_alphaidx": "cí",
  8449. "swac_pron_phon": "cí"
  8450. }
  8451. }
  8452. },
  8453. {
  8454. "_attributes": {
  8455. "path": "chi-ae3d85d7.ogg"
  8456. },
  8457. "tag": {
  8458. "_attributes": {
  8459. "swac_text": "苹果",
  8460. "swac_alphaidx": "píngguǒ",
  8461. "swac_pron_phon": "píngguǒ"
  8462. }
  8463. }
  8464. },
  8465. {
  8466. "_attributes": {
  8467. "path": "chi-aed72322.ogg"
  8468. },
  8469. "tag": {
  8470. "_attributes": {
  8471. "swac_text": "嘛",
  8472. "swac_alphaidx": "ma",
  8473. "swac_pron_phon": "ma"
  8474. }
  8475. }
  8476. },
  8477. {
  8478. "_attributes": {
  8479. "path": "chi-af538c9c.ogg"
  8480. },
  8481. "tag": {
  8482. "_attributes": {
  8483. "swac_text": "朋友",
  8484. "swac_alphaidx": "péngyou",
  8485. "swac_pron_phon": "péngyou"
  8486. }
  8487. }
  8488. },
  8489. {
  8490. "_attributes": {
  8491. "path": "chi-af76f2ea.ogg"
  8492. },
  8493. "tag": {
  8494. "_attributes": {
  8495. "swac_text": "语法",
  8496. "swac_alphaidx": "yǔfǎ",
  8497. "swac_pron_phon": "yǔfǎ"
  8498. }
  8499. }
  8500. },
  8501. {
  8502. "_attributes": {
  8503. "path": "chi-b0035bd5.ogg"
  8504. },
  8505. "tag": {
  8506. "_attributes": {
  8507. "swac_text": "喜欢",
  8508. "swac_alphaidx": "xǐhuan",
  8509. "swac_pron_phon": "xǐhuan"
  8510. }
  8511. }
  8512. },
  8513. {
  8514. "_attributes": {
  8515. "path": "chi-b0bd0b82.ogg"
  8516. },
  8517. "tag": {
  8518. "_attributes": {
  8519. "swac_text": "教育",
  8520. "swac_alphaidx": "jiàoyù",
  8521. "swac_pron_phon": "jiàoyù"
  8522. }
  8523. }
  8524. },
  8525. {
  8526. "_attributes": {
  8527. "path": "chi-b13c9232.ogg"
  8528. },
  8529. "tag": {
  8530. "_attributes": {
  8531. "swac_text": "同学",
  8532. "swac_alphaidx": "tóngxué",
  8533. "swac_pron_phon": "tóngxué"
  8534. }
  8535. }
  8536. },
  8537. {
  8538. "_attributes": {
  8539. "path": "chi-b15a2408.ogg"
  8540. },
  8541. "tag": {
  8542. "_attributes": {
  8543. "swac_text": "苦",
  8544. "swac_alphaidx": "kǔ",
  8545. "swac_pron_phon": "kǔ"
  8546. }
  8547. }
  8548. },
  8549. {
  8550. "_attributes": {
  8551. "path": "chi-b173badd.ogg"
  8552. },
  8553. "tag": {
  8554. "_attributes": {
  8555. "swac_text": "建设",
  8556. "swac_alphaidx": "jiànshè",
  8557. "swac_pron_phon": "jiànshè"
  8558. }
  8559. }
  8560. },
  8561. {
  8562. "_attributes": {
  8563. "path": "chi-b29e057a.ogg"
  8564. },
  8565. "tag": {
  8566. "_attributes": {
  8567. "swac_text": "满意",
  8568. "swac_alphaidx": "mǎnyì",
  8569. "swac_pron_phon": "mǎnyì"
  8570. }
  8571. }
  8572. },
  8573. {
  8574. "_attributes": {
  8575. "path": "chi-b30a37e7.ogg"
  8576. },
  8577. "tag": {
  8578. "_attributes": {
  8579. "swac_text": "湖",
  8580. "swac_alphaidx": "hú",
  8581. "swac_pron_phon": "hú"
  8582. }
  8583. }
  8584. },
  8585. {
  8586. "_attributes": {
  8587. "path": "chi-b349dd6b.ogg"
  8588. },
  8589. "tag": {
  8590. "_attributes": {
  8591. "swac_text": "江",
  8592. "swac_alphaidx": "jiāng",
  8593. "swac_pron_phon": "jiāng"
  8594. }
  8595. }
  8596. },
  8597. {
  8598. "_attributes": {
  8599. "path": "chi-b37b182f.ogg"
  8600. },
  8601. "tag": {
  8602. "_attributes": {
  8603. "swac_text": "风",
  8604. "swac_alphaidx": "fēng",
  8605. "swac_pron_phon": "fēng"
  8606. }
  8607. }
  8608. },
  8609. {
  8610. "_attributes": {
  8611. "path": "chi-b3b17406.ogg"
  8612. },
  8613. "tag": {
  8614. "_attributes": {
  8615. "swac_text": "橘子",
  8616. "swac_alphaidx": "júzi",
  8617. "swac_pron_phon": "júzi"
  8618. }
  8619. }
  8620. },
  8621. {
  8622. "_attributes": {
  8623. "path": "chi-b4692692.ogg"
  8624. },
  8625. "tag": {
  8626. "_attributes": {
  8627. "swac_text": "艺术",
  8628. "swac_alphaidx": "yìshù",
  8629. "swac_pron_phon": "yìshù"
  8630. }
  8631. }
  8632. },
  8633. {
  8634. "_attributes": {
  8635. "path": "chi-b469e458.ogg"
  8636. },
  8637. "tag": {
  8638. "_attributes": {
  8639. "swac_text": "雨",
  8640. "swac_alphaidx": "yǔ",
  8641. "swac_pron_phon": "yǔ"
  8642. }
  8643. }
  8644. },
  8645. {
  8646. "_attributes": {
  8647. "path": "chi-b46d6750.ogg"
  8648. },
  8649. "tag": {
  8650. "_attributes": {
  8651. "swac_text": "块",
  8652. "swac_alphaidx": "kuài",
  8653. "swac_pron_phon": "kuài"
  8654. }
  8655. }
  8656. },
  8657. {
  8658. "_attributes": {
  8659. "path": "chi-b4986d35.ogg"
  8660. },
  8661. "tag": {
  8662. "_attributes": {
  8663. "swac_text": "首都",
  8664. "swac_alphaidx": "shǒudū",
  8665. "swac_pron_phon": "shǒudū"
  8666. }
  8667. }
  8668. },
  8669. {
  8670. "_attributes": {
  8671. "path": "chi-b5283f27.ogg"
  8672. },
  8673. "tag": {
  8674. "_attributes": {
  8675. "swac_text": "电车",
  8676. "swac_alphaidx": "diànchē",
  8677. "swac_pron_phon": "diànchē"
  8678. }
  8679. }
  8680. },
  8681. {
  8682. "_attributes": {
  8683. "path": "chi-b61eb438.ogg"
  8684. },
  8685. "tag": {
  8686. "_attributes": {
  8687. "swac_text": "节日",
  8688. "swac_alphaidx": "jiérì",
  8689. "swac_pron_phon": "jiérì"
  8690. }
  8691. }
  8692. },
  8693. {
  8694. "_attributes": {
  8695. "path": "chi-b62494c9.ogg"
  8696. },
  8697. "tag": {
  8698. "_attributes": {
  8699. "swac_text": "怎样",
  8700. "swac_alphaidx": "zěnyàng",
  8701. "swac_pron_phon": "zěnyàng"
  8702. }
  8703. }
  8704. },
  8705. {
  8706. "_attributes": {
  8707. "path": "chi-b6769898.ogg"
  8708. },
  8709. "tag": {
  8710. "_attributes": {
  8711. "swac_text": "公斤",
  8712. "swac_alphaidx": "gōngjīn",
  8713. "swac_pron_phon": "gōngjīn"
  8714. }
  8715. }
  8716. },
  8717. {
  8718. "_attributes": {
  8719. "path": "chi-b75f3736.ogg"
  8720. },
  8721. "tag": {
  8722. "_attributes": {
  8723. "swac_text": "停",
  8724. "swac_alphaidx": "tíng",
  8725. "swac_pron_phon": "tíng"
  8726. }
  8727. }
  8728. },
  8729. {
  8730. "_attributes": {
  8731. "path": "chi-b839ed4a.ogg"
  8732. },
  8733. "tag": {
  8734. "_attributes": {
  8735. "swac_text": "便宜",
  8736. "swac_alphaidx": "piányi",
  8737. "swac_pron_phon": "piányi"
  8738. }
  8739. }
  8740. },
  8741. {
  8742. "_attributes": {
  8743. "path": "chi-b84550ed.ogg"
  8744. },
  8745. "tag": {
  8746. "_attributes": {
  8747. "swac_text": "考试",
  8748. "swac_alphaidx": "kǎoshì",
  8749. "swac_pron_phon": "kǎoshì"
  8750. }
  8751. }
  8752. },
  8753. {
  8754. "_attributes": {
  8755. "path": "chi-b881696a.ogg"
  8756. },
  8757. "tag": {
  8758. "_attributes": {
  8759. "swac_text": "拿",
  8760. "swac_alphaidx": "ná",
  8761. "swac_pron_phon": "ná"
  8762. }
  8763. }
  8764. },
  8765. {
  8766. "_attributes": {
  8767. "path": "chi-b881bbd3.ogg"
  8768. },
  8769. "tag": {
  8770. "_attributes": {
  8771. "swac_text": "秋",
  8772. "swac_alphaidx": "qiū",
  8773. "swac_pron_phon": "qiū"
  8774. }
  8775. }
  8776. },
  8777. {
  8778. "_attributes": {
  8779. "path": "chi-b89bbd5d.ogg"
  8780. },
  8781. "tag": {
  8782. "_attributes": {
  8783. "swac_text": "常",
  8784. "swac_alphaidx": "cháng",
  8785. "swac_pron_phon": "cháng"
  8786. }
  8787. }
  8788. },
  8789. {
  8790. "_attributes": {
  8791. "path": "chi-b8a176e8.ogg"
  8792. },
  8793. "tag": {
  8794. "_attributes": {
  8795. "swac_text": "他们",
  8796. "swac_alphaidx": "tāmen",
  8797. "swac_pron_phon": "tāmen"
  8798. }
  8799. }
  8800. },
  8801. {
  8802. "_attributes": {
  8803. "path": "chi-b8b513e4.ogg"
  8804. },
  8805. "tag": {
  8806. "_attributes": {
  8807. "swac_text": "太阳",
  8808. "swac_alphaidx": "tàiyáng",
  8809. "swac_pron_phon": "tàiyáng"
  8810. }
  8811. }
  8812. },
  8813. {
  8814. "_attributes": {
  8815. "path": "chi-b9059563.ogg"
  8816. },
  8817. "tag": {
  8818. "_attributes": {
  8819. "swac_text": "往",
  8820. "swac_alphaidx": "wǎng",
  8821. "swac_pron_phon": "wǎng"
  8822. }
  8823. }
  8824. },
  8825. {
  8826. "_attributes": {
  8827. "path": "chi-b98fcc52.ogg"
  8828. },
  8829. "tag": {
  8830. "_attributes": {
  8831. "swac_text": "方法",
  8832. "swac_alphaidx": "fāngfǎ",
  8833. "swac_pron_phon": "fāngfǎ"
  8834. }
  8835. }
  8836. },
  8837. {
  8838. "_attributes": {
  8839. "path": "chi-b997425e.ogg"
  8840. },
  8841. "tag": {
  8842. "_attributes": {
  8843. "swac_text": "水果",
  8844. "swac_alphaidx": "shuǐguǒ",
  8845. "swac_pron_phon": "shuǐguǒ"
  8846. }
  8847. }
  8848. },
  8849. {
  8850. "_attributes": {
  8851. "path": "chi-ba197423.ogg"
  8852. },
  8853. "tag": {
  8854. "_attributes": {
  8855. "swac_text": "半天",
  8856. "swac_alphaidx": "bàntiān",
  8857. "swac_pron_phon": "bàntiān"
  8858. }
  8859. }
  8860. },
  8861. {
  8862. "_attributes": {
  8863. "path": "chi-ba1d6921.ogg"
  8864. },
  8865. "tag": {
  8866. "_attributes": {
  8867. "swac_text": "寄",
  8868. "swac_alphaidx": "jì",
  8869. "swac_pron_phon": "jì"
  8870. }
  8871. }
  8872. },
  8873. {
  8874. "_attributes": {
  8875. "path": "chi-ba3cab38.ogg"
  8876. },
  8877. "tag": {
  8878. "_attributes": {
  8879. "swac_text": "姓",
  8880. "swac_alphaidx": "xìng",
  8881. "swac_pron_phon": "xìng"
  8882. }
  8883. }
  8884. },
  8885. {
  8886. "_attributes": {
  8887. "path": "chi-babdde34.ogg"
  8888. },
  8889. "tag": {
  8890. "_attributes": {
  8891. "swac_text": "哪",
  8892. "swac_alphaidx": "na",
  8893. "swac_pron_phon": "na"
  8894. }
  8895. }
  8896. },
  8897. {
  8898. "_attributes": {
  8899. "path": "chi-bb370a12.ogg"
  8900. },
  8901. "tag": {
  8902. "_attributes": {
  8903. "swac_text": "生产",
  8904. "swac_alphaidx": "shēngchǎn",
  8905. "swac_pron_phon": "shēngchǎn"
  8906. }
  8907. }
  8908. },
  8909. {
  8910. "_attributes": {
  8911. "path": "chi-bb681dfa.ogg"
  8912. },
  8913. "tag": {
  8914. "_attributes": {
  8915. "swac_text": "流",
  8916. "swac_alphaidx": "liú",
  8917. "swac_pron_phon": "liú"
  8918. }
  8919. }
  8920. },
  8921. {
  8922. "_attributes": {
  8923. "path": "chi-bb6a9266.ogg"
  8924. },
  8925. "tag": {
  8926. "_attributes": {
  8927. "swac_text": "鸡",
  8928. "swac_alphaidx": "jī",
  8929. "swac_pron_phon": "jī"
  8930. }
  8931. }
  8932. },
  8933. {
  8934. "_attributes": {
  8935. "path": "chi-bbd1025e.ogg"
  8936. },
  8937. "tag": {
  8938. "_attributes": {
  8939. "swac_text": "那",
  8940. "swac_alphaidx": "nà",
  8941. "swac_pron_phon": "nà"
  8942. }
  8943. }
  8944. },
  8945. {
  8946. "_attributes": {
  8947. "path": "chi-bbff84d4.ogg"
  8948. },
  8949. "tag": {
  8950. "_attributes": {
  8951. "swac_text": "黄",
  8952. "swac_alphaidx": "huáng",
  8953. "swac_pron_phon": "huáng"
  8954. }
  8955. }
  8956. },
  8957. {
  8958. "_attributes": {
  8959. "path": "chi-bc297470.ogg"
  8960. },
  8961. "tag": {
  8962. "_attributes": {
  8963. "swac_text": "干",
  8964. "swac_alphaidx": "gàn",
  8965. "swac_pron_phon": "gàn"
  8966. }
  8967. }
  8968. },
  8969. {
  8970. "_attributes": {
  8971. "path": "chi-bc56de8d.ogg"
  8972. },
  8973. "tag": {
  8974. "_attributes": {
  8975. "swac_text": "前边",
  8976. "swac_alphaidx": "qiánbiān",
  8977. "swac_pron_phon": "qiánbiān"
  8978. }
  8979. }
  8980. },
  8981. {
  8982. "_attributes": {
  8983. "path": "chi-bc7c7c3b.ogg"
  8984. },
  8985. "tag": {
  8986. "_attributes": {
  8987. "swac_text": "屋子",
  8988. "swac_alphaidx": "wūzi",
  8989. "swac_pron_phon": "wūzi"
  8990. }
  8991. }
  8992. },
  8993. {
  8994. "_attributes": {
  8995. "path": "chi-bd279654.ogg"
  8996. },
  8997. "tag": {
  8998. "_attributes": {
  8999. "swac_text": "没意思",
  9000. "swac_alphaidx": "méiyìsi",
  9001. "swac_pron_phon": "méiyìsi"
  9002. }
  9003. }
  9004. },
  9005. {
  9006. "_attributes": {
  9007. "path": "chi-bdb8dc9c.ogg"
  9008. },
  9009. "tag": {
  9010. "_attributes": {
  9011. "swac_text": "死",
  9012. "swac_alphaidx": "sǐ",
  9013. "swac_pron_phon": "sǐ"
  9014. }
  9015. }
  9016. },
  9017. {
  9018. "_attributes": {
  9019. "path": "chi-bde988c6.ogg"
  9020. },
  9021. "tag": {
  9022. "_attributes": {
  9023. "swac_text": "邮票",
  9024. "swac_alphaidx": "yóupiào",
  9025. "swac_pron_phon": "yóupiào"
  9026. }
  9027. }
  9028. },
  9029. {
  9030. "_attributes": {
  9031. "path": "chi-bdf187de.ogg"
  9032. },
  9033. "tag": {
  9034. "_attributes": {
  9035. "swac_text": "很",
  9036. "swac_alphaidx": "hěn",
  9037. "swac_pron_phon": "hěn"
  9038. }
  9039. }
  9040. },
  9041. {
  9042. "_attributes": {
  9043. "path": "chi-be459fd5.ogg"
  9044. },
  9045. "tag": {
  9046. "_attributes": {
  9047. "swac_text": "支",
  9048. "swac_alphaidx": "zhī",
  9049. "swac_pron_phon": "zhī"
  9050. }
  9051. }
  9052. },
  9053. {
  9054. "_attributes": {
  9055. "path": "chi-be707e52.ogg"
  9056. },
  9057. "tag": {
  9058. "_attributes": {
  9059. "swac_text": "更",
  9060. "swac_alphaidx": "gèng",
  9061. "swac_pron_phon": "gèng"
  9062. }
  9063. }
  9064. },
  9065. {
  9066. "_attributes": {
  9067. "path": "chi-be8b5516.ogg"
  9068. },
  9069. "tag": {
  9070. "_attributes": {
  9071. "swac_text": "最",
  9072. "swac_alphaidx": "zuì",
  9073. "swac_pron_phon": "zuì"
  9074. }
  9075. }
  9076. },
  9077. {
  9078. "_attributes": {
  9079. "path": "chi-bf2244c1.ogg"
  9080. },
  9081. "tag": {
  9082. "_attributes": {
  9083. "swac_text": "正",
  9084. "swac_alphaidx": "zhèng",
  9085. "swac_pron_phon": "zhèng"
  9086. }
  9087. }
  9088. },
  9089. {
  9090. "_attributes": {
  9091. "path": "chi-bf8b9553.ogg"
  9092. },
  9093. "tag": {
  9094. "_attributes": {
  9095. "swac_text": "咖啡",
  9096. "swac_alphaidx": "kāfēi",
  9097. "swac_pron_phon": "kāfēi"
  9098. }
  9099. }
  9100. },
  9101. {
  9102. "_attributes": {
  9103. "path": "chi-bfa30d81.ogg"
  9104. },
  9105. "tag": {
  9106. "_attributes": {
  9107. "swac_text": "日语",
  9108. "swac_alphaidx": "rìyǔ",
  9109. "swac_pron_phon": "rìyǔ"
  9110. }
  9111. }
  9112. },
  9113. {
  9114. "_attributes": {
  9115. "path": "chi-bfafdca6.ogg"
  9116. },
  9117. "tag": {
  9118. "_attributes": {
  9119. "swac_text": "已经",
  9120. "swac_alphaidx": "yǐjing",
  9121. "swac_pron_phon": "yǐjing"
  9122. }
  9123. }
  9124. },
  9125. {
  9126. "_attributes": {
  9127. "path": "chi-bfe9479f.ogg"
  9128. },
  9129. "tag": {
  9130. "_attributes": {
  9131. "swac_text": "懂",
  9132. "swac_alphaidx": "dǒng",
  9133. "swac_pron_phon": "dǒng"
  9134. }
  9135. }
  9136. },
  9137. {
  9138. "_attributes": {
  9139. "path": "chi-bff65957.ogg"
  9140. },
  9141. "tag": {
  9142. "_attributes": {
  9143. "swac_text": "在",
  9144. "swac_alphaidx": "zài",
  9145. "swac_pron_phon": "zài"
  9146. }
  9147. }
  9148. },
  9149. {
  9150. "_attributes": {
  9151. "path": "chi-c012d47c.ogg"
  9152. },
  9153. "tag": {
  9154. "_attributes": {
  9155. "swac_text": "公里",
  9156. "swac_alphaidx": "gōnglǐ",
  9157. "swac_pron_phon": "gōnglǐ"
  9158. }
  9159. }
  9160. },
  9161. {
  9162. "_attributes": {
  9163. "path": "chi-c03acd4f.ogg"
  9164. },
  9165. "tag": {
  9166. "_attributes": {
  9167. "swac_text": "小姐",
  9168. "swac_alphaidx": "xiǎojie",
  9169. "swac_pron_phon": "xiǎojie"
  9170. }
  9171. }
  9172. },
  9173. {
  9174. "_attributes": {
  9175. "path": "chi-c03f977b.ogg"
  9176. },
  9177. "tag": {
  9178. "_attributes": {
  9179. "swac_text": "菜",
  9180. "swac_alphaidx": "cài",
  9181. "swac_pron_phon": "cài"
  9182. }
  9183. }
  9184. },
  9185. {
  9186. "_attributes": {
  9187. "path": "chi-c06407e4.ogg"
  9188. },
  9189. "tag": {
  9190. "_attributes": {
  9191. "swac_text": "街",
  9192. "swac_alphaidx": "jiē",
  9193. "swac_pron_phon": "jiē"
  9194. }
  9195. }
  9196. },
  9197. {
  9198. "_attributes": {
  9199. "path": "chi-c09c01d2.ogg"
  9200. },
  9201. "tag": {
  9202. "_attributes": {
  9203. "swac_text": "买",
  9204. "swac_alphaidx": "mǎi",
  9205. "swac_pron_phon": "mǎi"
  9206. }
  9207. }
  9208. },
  9209. {
  9210. "_attributes": {
  9211. "path": "chi-c0b8c39c.ogg"
  9212. },
  9213. "tag": {
  9214. "_attributes": {
  9215. "swac_text": "云",
  9216. "swac_alphaidx": "yún",
  9217. "swac_pron_phon": "yún"
  9218. }
  9219. }
  9220. },
  9221. {
  9222. "_attributes": {
  9223. "path": "chi-c0f8fc4b.ogg"
  9224. },
  9225. "tag": {
  9226. "_attributes": {
  9227. "swac_text": "照顾",
  9228. "swac_alphaidx": "zhàogù",
  9229. "swac_pron_phon": "zhàogù"
  9230. }
  9231. }
  9232. },
  9233. {
  9234. "_attributes": {
  9235. "path": "chi-c1475918.ogg"
  9236. },
  9237. "tag": {
  9238. "_attributes": {
  9239. "swac_text": "这个",
  9240. "swac_alphaidx": "zhège",
  9241. "swac_pron_phon": "zhège"
  9242. }
  9243. }
  9244. },
  9245. {
  9246. "_attributes": {
  9247. "path": "chi-c1718d63.ogg"
  9248. },
  9249. "tag": {
  9250. "_attributes": {
  9251. "swac_text": "条件",
  9252. "swac_alphaidx": "tiáojiàn",
  9253. "swac_pron_phon": "tiáojiàn"
  9254. }
  9255. }
  9256. },
  9257. {
  9258. "_attributes": {
  9259. "path": "chi-c1804d9e.ogg"
  9260. },
  9261. "tag": {
  9262. "_attributes": {
  9263. "swac_text": "窗户",
  9264. "swac_alphaidx": "chuānghu",
  9265. "swac_pron_phon": "chuānghu"
  9266. }
  9267. }
  9268. },
  9269. {
  9270. "_attributes": {
  9271. "path": "chi-c183d9ee.ogg"
  9272. },
  9273. "tag": {
  9274. "_attributes": {
  9275. "swac_text": "动",
  9276. "swac_alphaidx": "dòng",
  9277. "swac_pron_phon": "dòng"
  9278. }
  9279. }
  9280. },
  9281. {
  9282. "_attributes": {
  9283. "path": "chi-c1ce04e7.ogg"
  9284. },
  9285. "tag": {
  9286. "_attributes": {
  9287. "swac_text": "开学",
  9288. "swac_alphaidx": "kāixué",
  9289. "swac_pron_phon": "kāixué"
  9290. }
  9291. }
  9292. },
  9293. {
  9294. "_attributes": {
  9295. "path": "chi-c1d52547.ogg"
  9296. },
  9297. "tag": {
  9298. "_attributes": {
  9299. "swac_text": "角",
  9300. "swac_alphaidx": "jiǎo",
  9301. "swac_pron_phon": "jiǎo"
  9302. }
  9303. }
  9304. },
  9305. {
  9306. "_attributes": {
  9307. "path": "chi-c239a0e6.ogg"
  9308. },
  9309. "tag": {
  9310. "_attributes": {
  9311. "swac_text": "渴",
  9312. "swac_alphaidx": "kě",
  9313. "swac_pron_phon": "kě"
  9314. }
  9315. }
  9316. },
  9317. {
  9318. "_attributes": {
  9319. "path": "chi-c2b425cc.ogg"
  9320. },
  9321. "tag": {
  9322. "_attributes": {
  9323. "swac_text": "段",
  9324. "swac_alphaidx": "duàn",
  9325. "swac_pron_phon": "duàn"
  9326. }
  9327. }
  9328. },
  9329. {
  9330. "_attributes": {
  9331. "path": "chi-c2fb2a23.ogg"
  9332. },
  9333. "tag": {
  9334. "_attributes": {
  9335. "swac_text": "页",
  9336. "swac_alphaidx": "yè",
  9337. "swac_pron_phon": "yè"
  9338. }
  9339. }
  9340. },
  9341. {
  9342. "_attributes": {
  9343. "path": "chi-c376e3bd.ogg"
  9344. },
  9345. "tag": {
  9346. "_attributes": {
  9347. "swac_text": "以为",
  9348. "swac_alphaidx": "yǐwéi",
  9349. "swac_pron_phon": "yǐwéi"
  9350. }
  9351. }
  9352. },
  9353. {
  9354. "_attributes": {
  9355. "path": "chi-c37ff7ca.ogg"
  9356. },
  9357. "tag": {
  9358. "_attributes": {
  9359. "swac_text": "低",
  9360. "swac_alphaidx": "dī",
  9361. "swac_pron_phon": "dī"
  9362. }
  9363. }
  9364. },
  9365. {
  9366. "_attributes": {
  9367. "path": "chi-c3b5048f.ogg"
  9368. },
  9369. "tag": {
  9370. "_attributes": {
  9371. "swac_text": "听见",
  9372. "swac_alphaidx": "tīngjiàn",
  9373. "swac_pron_phon": "tīngjiàn"
  9374. }
  9375. }
  9376. },
  9377. {
  9378. "_attributes": {
  9379. "path": "chi-c45331aa.ogg"
  9380. },
  9381. "tag": {
  9382. "_attributes": {
  9383. "swac_text": "干净",
  9384. "swac_alphaidx": "gānjìng",
  9385. "swac_pron_phon": "gānjìng"
  9386. }
  9387. }
  9388. },
  9389. {
  9390. "_attributes": {
  9391. "path": "chi-c4750948.ogg"
  9392. },
  9393. "tag": {
  9394. "_attributes": {
  9395. "swac_text": "汽水",
  9396. "swac_alphaidx": "qìshuǐ",
  9397. "swac_pron_phon": "qìshuǐ"
  9398. }
  9399. }
  9400. },
  9401. {
  9402. "_attributes": {
  9403. "path": "chi-c4761e58.ogg"
  9404. },
  9405. "tag": {
  9406. "_attributes": {
  9407. "swac_text": "起",
  9408. "swac_alphaidx": "qǐ",
  9409. "swac_pron_phon": "qǐ"
  9410. }
  9411. }
  9412. },
  9413. {
  9414. "_attributes": {
  9415. "path": "chi-c4856974.ogg"
  9416. },
  9417. "tag": {
  9418. "_attributes": {
  9419. "swac_text": "占",
  9420. "swac_alphaidx": "zhàn",
  9421. "swac_pron_phon": "zhàn"
  9422. }
  9423. }
  9424. },
  9425. {
  9426. "_attributes": {
  9427. "path": "chi-c4971135.ogg"
  9428. },
  9429. "tag": {
  9430. "_attributes": {
  9431. "swac_text": "短",
  9432. "swac_alphaidx": "duǎn",
  9433. "swac_pron_phon": "duǎn"
  9434. }
  9435. }
  9436. },
  9437. {
  9438. "_attributes": {
  9439. "path": "chi-c4cac1ba.ogg"
  9440. },
  9441. "tag": {
  9442. "_attributes": {
  9443. "swac_text": "感到",
  9444. "swac_alphaidx": "gǎndào",
  9445. "swac_pron_phon": "gǎndào"
  9446. }
  9447. }
  9448. },
  9449. {
  9450. "_attributes": {
  9451. "path": "chi-c51ae5c0.ogg"
  9452. },
  9453. "tag": {
  9454. "_attributes": {
  9455. "swac_text": "别的",
  9456. "swac_alphaidx": "biéde",
  9457. "swac_pron_phon": "biéde"
  9458. }
  9459. }
  9460. },
  9461. {
  9462. "_attributes": {
  9463. "path": "chi-c55f1a6c.ogg"
  9464. },
  9465. "tag": {
  9466. "_attributes": {
  9467. "swac_text": "头",
  9468. "swac_alphaidx": "tóu",
  9469. "swac_pron_phon": "tóu"
  9470. }
  9471. }
  9472. },
  9473. {
  9474. "_attributes": {
  9475. "path": "chi-c584c433.ogg"
  9476. },
  9477. "tag": {
  9478. "_attributes": {
  9479. "swac_text": "愉快",
  9480. "swac_alphaidx": "yúkuài",
  9481. "swac_pron_phon": "yúkuài"
  9482. }
  9483. }
  9484. },
  9485. {
  9486. "_attributes": {
  9487. "path": "chi-c5ae0f7c.ogg"
  9488. },
  9489. "tag": {
  9490. "_attributes": {
  9491. "swac_text": "故事",
  9492. "swac_alphaidx": "gùshi",
  9493. "swac_pron_phon": "gùshi"
  9494. }
  9495. }
  9496. },
  9497. {
  9498. "_attributes": {
  9499. "path": "chi-c649e596.ogg"
  9500. },
  9501. "tag": {
  9502. "_attributes": {
  9503. "swac_text": "复习",
  9504. "swac_alphaidx": "fùxí",
  9505. "swac_pron_phon": "fùxí"
  9506. }
  9507. }
  9508. },
  9509. {
  9510. "_attributes": {
  9511. "path": "chi-c7c60046.ogg"
  9512. },
  9513. "tag": {
  9514. "_attributes": {
  9515. "swac_text": "睡",
  9516. "swac_alphaidx": "shuì",
  9517. "swac_pron_phon": "shuì"
  9518. }
  9519. }
  9520. },
  9521. {
  9522. "_attributes": {
  9523. "path": "chi-c7d79d5a.ogg"
  9524. },
  9525. "tag": {
  9526. "_attributes": {
  9527. "swac_text": "墙",
  9528. "swac_alphaidx": "qiáng",
  9529. "swac_pron_phon": "qiáng"
  9530. }
  9531. }
  9532. },
  9533. {
  9534. "_attributes": {
  9535. "path": "chi-c860bc89.ogg"
  9536. },
  9537. "tag": {
  9538. "_attributes": {
  9539. "swac_text": "幸福",
  9540. "swac_alphaidx": "xìngfú",
  9541. "swac_pron_phon": "xìngfú"
  9542. }
  9543. }
  9544. },
  9545. {
  9546. "_attributes": {
  9547. "path": "chi-c8cb3525.ogg"
  9548. },
  9549. "tag": {
  9550. "_attributes": {
  9551. "swac_text": "老师",
  9552. "swac_alphaidx": "lǎoshī",
  9553. "swac_pron_phon": "lǎoshī"
  9554. }
  9555. }
  9556. },
  9557. {
  9558. "_attributes": {
  9559. "path": "chi-c8f891a6.ogg"
  9560. },
  9561. "tag": {
  9562. "_attributes": {
  9563. "swac_text": "一切",
  9564. "swac_alphaidx": "yíqiè",
  9565. "swac_pron_phon": "yíqiè"
  9566. }
  9567. }
  9568. },
  9569. {
  9570. "_attributes": {
  9571. "path": "chi-c9303d6a.ogg"
  9572. },
  9573. "tag": {
  9574. "_attributes": {
  9575. "swac_text": "练习",
  9576. "swac_alphaidx": "liànxí",
  9577. "swac_pron_phon": "liànxí"
  9578. }
  9579. }
  9580. },
  9581. {
  9582. "_attributes": {
  9583. "path": "chi-c94da6bd.ogg"
  9584. },
  9585. "tag": {
  9586. "_attributes": {
  9587. "swac_text": "目前",
  9588. "swac_alphaidx": "mùqián",
  9589. "swac_pron_phon": "mùqián"
  9590. }
  9591. }
  9592. },
  9593. {
  9594. "_attributes": {
  9595. "path": "chi-c953eb6a.ogg"
  9596. },
  9597. "tag": {
  9598. "_attributes": {
  9599. "swac_text": "那个",
  9600. "swac_alphaidx": "nàge",
  9601. "swac_pron_phon": "nàge"
  9602. }
  9603. }
  9604. },
  9605. {
  9606. "_attributes": {
  9607. "path": "chi-c9d89c6f.ogg"
  9608. },
  9609. "tag": {
  9610. "_attributes": {
  9611. "swac_text": "这些",
  9612. "swac_alphaidx": "zhèxiē",
  9613. "swac_pron_phon": "zhèxiē"
  9614. }
  9615. }
  9616. },
  9617. {
  9618. "_attributes": {
  9619. "path": "chi-c9f90d9b.ogg"
  9620. },
  9621. "tag": {
  9622. "_attributes": {
  9623. "swac_text": "各种",
  9624. "swac_alphaidx": "gèzhǒng",
  9625. "swac_pron_phon": "gèzhǒng"
  9626. }
  9627. }
  9628. },
  9629. {
  9630. "_attributes": {
  9631. "path": "chi-ca01cbc1.ogg"
  9632. },
  9633. "tag": {
  9634. "_attributes": {
  9635. "swac_text": "面包",
  9636. "swac_alphaidx": "miànbāo",
  9637. "swac_pron_phon": "miànbāo"
  9638. }
  9639. }
  9640. },
  9641. {
  9642. "_attributes": {
  9643. "path": "chi-ca02f1ce.ogg"
  9644. },
  9645. "tag": {
  9646. "_attributes": {
  9647. "swac_text": "黑",
  9648. "swac_alphaidx": "hēi",
  9649. "swac_pron_phon": "hēi"
  9650. }
  9651. }
  9652. },
  9653. {
  9654. "_attributes": {
  9655. "path": "chi-ca0dccf3.ogg"
  9656. },
  9657. "tag": {
  9658. "_attributes": {
  9659. "swac_text": "斤",
  9660. "swac_alphaidx": "jīn",
  9661. "swac_pron_phon": "jīn"
  9662. }
  9663. }
  9664. },
  9665. {
  9666. "_attributes": {
  9667. "path": "chi-ca28b16b.ogg"
  9668. },
  9669. "tag": {
  9670. "_attributes": {
  9671. "swac_text": "农村",
  9672. "swac_alphaidx": "nóngcūn",
  9673. "swac_pron_phon": "nóngcūn"
  9674. }
  9675. }
  9676. },
  9677. {
  9678. "_attributes": {
  9679. "path": "chi-caa0926d.ogg"
  9680. },
  9681. "tag": {
  9682. "_attributes": {
  9683. "swac_text": "为什么",
  9684. "swac_alphaidx": "wèishénme",
  9685. "swac_pron_phon": "wèishénme"
  9686. }
  9687. }
  9688. },
  9689. {
  9690. "_attributes": {
  9691. "path": "chi-caaa9af2.ogg"
  9692. },
  9693. "tag": {
  9694. "_attributes": {
  9695. "swac_text": "课本",
  9696. "swac_alphaidx": "kèběn",
  9697. "swac_pron_phon": "kèběn"
  9698. }
  9699. }
  9700. },
  9701. {
  9702. "_attributes": {
  9703. "path": "chi-cab71f45.ogg"
  9704. },
  9705. "tag": {
  9706. "_attributes": {
  9707. "swac_text": "大学",
  9708. "swac_alphaidx": "dàxué",
  9709. "swac_pron_phon": "dàxué"
  9710. }
  9711. }
  9712. },
  9713. {
  9714. "_attributes": {
  9715. "path": "chi-cafa816e.ogg"
  9716. },
  9717. "tag": {
  9718. "_attributes": {
  9719. "swac_text": "脱",
  9720. "swac_alphaidx": "tuō",
  9721. "swac_pron_phon": "tuō"
  9722. }
  9723. }
  9724. },
  9725. {
  9726. "_attributes": {
  9727. "path": "chi-cb19f178.ogg"
  9728. },
  9729. "tag": {
  9730. "_attributes": {
  9731. "swac_text": "一下儿",
  9732. "swac_alphaidx": "yíxiàr",
  9733. "swac_pron_phon": "yíxiàr"
  9734. }
  9735. }
  9736. },
  9737. {
  9738. "_attributes": {
  9739. "path": "chi-cb4703be.ogg"
  9740. },
  9741. "tag": {
  9742. "_attributes": {
  9743. "swac_text": "南边",
  9744. "swac_alphaidx": "nánbiān",
  9745. "swac_pron_phon": "nánbiān"
  9746. }
  9747. }
  9748. },
  9749. {
  9750. "_attributes": {
  9751. "path": "chi-cb4e500d.ogg"
  9752. },
  9753. "tag": {
  9754. "_attributes": {
  9755. "swac_text": "休息",
  9756. "swac_alphaidx": "xiūxi",
  9757. "swac_pron_phon": "xiūxi"
  9758. }
  9759. }
  9760. },
  9761. {
  9762. "_attributes": {
  9763. "path": "chi-cb4edad4.ogg"
  9764. },
  9765. "tag": {
  9766. "_attributes": {
  9767. "swac_text": "别人",
  9768. "swac_alphaidx": "biéren",
  9769. "swac_pron_phon": "biéren"
  9770. }
  9771. }
  9772. },
  9773. {
  9774. "_attributes": {
  9775. "path": "chi-cb564cfa.ogg"
  9776. },
  9777. "tag": {
  9778. "_attributes": {
  9779. "swac_text": "医生",
  9780. "swac_alphaidx": "yīshēng",
  9781. "swac_pron_phon": "yīshēng"
  9782. }
  9783. }
  9784. },
  9785. {
  9786. "_attributes": {
  9787. "path": "chi-cb6aebc5.ogg"
  9788. },
  9789. "tag": {
  9790. "_attributes": {
  9791. "swac_text": "张",
  9792. "swac_alphaidx": "zhāng",
  9793. "swac_pron_phon": "zhāng"
  9794. }
  9795. }
  9796. },
  9797. {
  9798. "_attributes": {
  9799. "path": "chi-cbdc8750.ogg"
  9800. },
  9801. "tag": {
  9802. "_attributes": {
  9803. "swac_text": "利用",
  9804. "swac_alphaidx": "lìyòng",
  9805. "swac_pron_phon": "lìyòng"
  9806. }
  9807. }
  9808. },
  9809. {
  9810. "_attributes": {
  9811. "path": "chi-cc2b6968.ogg"
  9812. },
  9813. "tag": {
  9814. "_attributes": {
  9815. "swac_text": "水",
  9816. "swac_alphaidx": "shuǐ",
  9817. "swac_pron_phon": "shuǐ"
  9818. }
  9819. }
  9820. },
  9821. {
  9822. "_attributes": {
  9823. "path": "chi-cc45cdaa.ogg"
  9824. },
  9825. "tag": {
  9826. "_attributes": {
  9827. "swac_text": "姐姐",
  9828. "swac_alphaidx": "jiějie",
  9829. "swac_pron_phon": "jiějie"
  9830. }
  9831. }
  9832. },
  9833. {
  9834. "_attributes": {
  9835. "path": "chi-cc88bb90.ogg"
  9836. },
  9837. "tag": {
  9838. "_attributes": {
  9839. "swac_text": "哭",
  9840. "swac_alphaidx": "kū",
  9841. "swac_pron_phon": "kū"
  9842. }
  9843. }
  9844. },
  9845. {
  9846. "_attributes": {
  9847. "path": "chi-ccb34dc7.ogg"
  9848. },
  9849. "tag": {
  9850. "_attributes": {
  9851. "swac_text": "得到",
  9852. "swac_alphaidx": "dédào",
  9853. "swac_pron_phon": "dédào"
  9854. }
  9855. }
  9856. },
  9857. {
  9858. "_attributes": {
  9859. "path": "chi-ccb38608.ogg"
  9860. },
  9861. "tag": {
  9862. "_attributes": {
  9863. "swac_text": "字",
  9864. "swac_alphaidx": "zì",
  9865. "swac_pron_phon": "zì"
  9866. }
  9867. }
  9868. },
  9869. {
  9870. "_attributes": {
  9871. "path": "chi-ccd1ca26.ogg"
  9872. },
  9873. "tag": {
  9874. "_attributes": {
  9875. "swac_text": "弟弟",
  9876. "swac_alphaidx": "dìdi",
  9877. "swac_pron_phon": "dìdi"
  9878. }
  9879. }
  9880. },
  9881. {
  9882. "_attributes": {
  9883. "path": "chi-cd57b253.ogg"
  9884. },
  9885. "tag": {
  9886. "_attributes": {
  9887. "swac_text": "装",
  9888. "swac_alphaidx": "zhuāng",
  9889. "swac_pron_phon": "zhuāng"
  9890. }
  9891. }
  9892. },
  9893. {
  9894. "_attributes": {
  9895. "path": "chi-ce4408e9.ogg"
  9896. },
  9897. "tag": {
  9898. "_attributes": {
  9899. "swac_text": "像",
  9900. "swac_alphaidx": "xiàng",
  9901. "swac_pron_phon": "xiàng"
  9902. }
  9903. }
  9904. },
  9905. {
  9906. "_attributes": {
  9907. "path": "chi-ce4687dd.ogg"
  9908. },
  9909. "tag": {
  9910. "_attributes": {
  9911. "swac_text": "多少",
  9912. "swac_alphaidx": "duōshao",
  9913. "swac_pron_phon": "duōshao"
  9914. }
  9915. }
  9916. },
  9917. {
  9918. "_attributes": {
  9919. "path": "chi-ce57e049.ogg"
  9920. },
  9921. "tag": {
  9922. "_attributes": {
  9923. "swac_text": "总是",
  9924. "swac_alphaidx": "zǒngshì",
  9925. "swac_pron_phon": "zǒngshì"
  9926. }
  9927. }
  9928. },
  9929. {
  9930. "_attributes": {
  9931. "path": "chi-ce6bb12f.ogg"
  9932. },
  9933. "tag": {
  9934. "_attributes": {
  9935. "swac_text": "好",
  9936. "swac_alphaidx": "hǎo",
  9937. "swac_pron_phon": "hǎo"
  9938. }
  9939. }
  9940. },
  9941. {
  9942. "_attributes": {
  9943. "path": "chi-ce8c8cf5.ogg"
  9944. },
  9945. "tag": {
  9946. "_attributes": {
  9947. "swac_text": "计划",
  9948. "swac_alphaidx": "jìhuà",
  9949. "swac_pron_phon": "jìhuà"
  9950. }
  9951. }
  9952. },
  9953. {
  9954. "_attributes": {
  9955. "path": "chi-cf218ced.ogg"
  9956. },
  9957. "tag": {
  9958. "_attributes": {
  9959. "swac_text": "问题",
  9960. "swac_alphaidx": "wèntí",
  9961. "swac_pron_phon": "wèntí"
  9962. }
  9963. }
  9964. },
  9965. {
  9966. "_attributes": {
  9967. "path": "chi-cfd25a3a.ogg"
  9968. },
  9969. "tag": {
  9970. "_attributes": {
  9971. "swac_text": "轻",
  9972. "swac_alphaidx": "qīng",
  9973. "swac_pron_phon": "qīng"
  9974. }
  9975. }
  9976. },
  9977. {
  9978. "_attributes": {
  9979. "path": "chi-d078de92.ogg"
  9980. },
  9981. "tag": {
  9982. "_attributes": {
  9983. "swac_text": "一直",
  9984. "swac_alphaidx": "yìzhí",
  9985. "swac_pron_phon": "yìzhí"
  9986. }
  9987. }
  9988. },
  9989. {
  9990. "_attributes": {
  9991. "path": "chi-d0a71cfb.ogg"
  9992. },
  9993. "tag": {
  9994. "_attributes": {
  9995. "swac_text": "细",
  9996. "swac_alphaidx": "xì",
  9997. "swac_pron_phon": "xì"
  9998. }
  9999. }
  10000. },
  10001. {
  10002. "_attributes": {
  10003. "path": "chi-d0ba6096.ogg"
  10004. },
  10005. "tag": {
  10006. "_attributes": {
  10007. "swac_text": "层",
  10008. "swac_alphaidx": "céng",
  10009. "swac_pron_phon": "céng"
  10010. }
  10011. }
  10012. },
  10013. {
  10014. "_attributes": {
  10015. "path": "chi-d0c8c6ff.ogg"
  10016. },
  10017. "tag": {
  10018. "_attributes": {
  10019. "swac_text": "内",
  10020. "swac_alphaidx": "nèi",
  10021. "swac_pron_phon": "nèi"
  10022. }
  10023. }
  10024. },
  10025. {
  10026. "_attributes": {
  10027. "path": "chi-d0e25b6e.ogg"
  10028. },
  10029. "tag": {
  10030. "_attributes": {
  10031. "swac_text": "化学",
  10032. "swac_alphaidx": "huàxué",
  10033. "swac_pron_phon": "huàxué"
  10034. }
  10035. }
  10036. },
  10037. {
  10038. "_attributes": {
  10039. "path": "chi-d1e480c5.ogg"
  10040. },
  10041. "tag": {
  10042. "_attributes": {
  10043. "swac_text": "简单",
  10044. "swac_alphaidx": "jiǎndān",
  10045. "swac_pron_phon": "jiǎndān"
  10046. }
  10047. }
  10048. },
  10049. {
  10050. "_attributes": {
  10051. "path": "chi-d1fd7ab6.ogg"
  10052. },
  10053. "tag": {
  10054. "_attributes": {
  10055. "swac_text": "还",
  10056. "swac_alphaidx": "huàn",
  10057. "swac_pron_phon": "huàn"
  10058. }
  10059. }
  10060. },
  10061. {
  10062. "_attributes": {
  10063. "path": "chi-d25abedb.ogg"
  10064. },
  10065. "tag": {
  10066. "_attributes": {
  10067. "swac_text": "万",
  10068. "swac_alphaidx": "wàn",
  10069. "swac_pron_phon": "wàn"
  10070. }
  10071. }
  10072. },
  10073. {
  10074. "_attributes": {
  10075. "path": "chi-d27b56e4.ogg"
  10076. },
  10077. "tag": {
  10078. "_attributes": {
  10079. "swac_text": "然后",
  10080. "swac_alphaidx": "ránhòu",
  10081. "swac_pron_phon": "ránhòu"
  10082. }
  10083. }
  10084. },
  10085. {
  10086. "_attributes": {
  10087. "path": "chi-d2b84d26.ogg"
  10088. },
  10089. "tag": {
  10090. "_attributes": {
  10091. "swac_text": "酒",
  10092. "swac_alphaidx": "jiǔ",
  10093. "swac_pron_phon": "jiǔ"
  10094. }
  10095. }
  10096. },
  10097. {
  10098. "_attributes": {
  10099. "path": "chi-d2ba2088.ogg"
  10100. },
  10101. "tag": {
  10102. "_attributes": {
  10103. "swac_text": "从前",
  10104. "swac_alphaidx": "cóngqián",
  10105. "swac_pron_phon": "cóngqián"
  10106. }
  10107. }
  10108. },
  10109. {
  10110. "_attributes": {
  10111. "path": "chi-d2c40f38.ogg"
  10112. },
  10113. "tag": {
  10114. "_attributes": {
  10115. "swac_text": "换",
  10116. "swac_alphaidx": "huàn",
  10117. "swac_pron_phon": "huàn"
  10118. }
  10119. }
  10120. },
  10121. {
  10122. "_attributes": {
  10123. "path": "chi-d2cadeb5.ogg"
  10124. },
  10125. "tag": {
  10126. "_attributes": {
  10127. "swac_text": "窗",
  10128. "swac_alphaidx": "chuāng",
  10129. "swac_pron_phon": "chuāng"
  10130. }
  10131. }
  10132. },
  10133. {
  10134. "_attributes": {
  10135. "path": "chi-d3771f7f.ogg"
  10136. },
  10137. "tag": {
  10138. "_attributes": {
  10139. "swac_text": "南",
  10140. "swac_alphaidx": "nán",
  10141. "swac_pron_phon": "nán"
  10142. }
  10143. }
  10144. },
  10145. {
  10146. "_attributes": {
  10147. "path": "chi-d3ce9912.ogg"
  10148. },
  10149. "tag": {
  10150. "_attributes": {
  10151. "swac_text": "告诉",
  10152. "swac_alphaidx": "gàosu",
  10153. "swac_pron_phon": "gàosu"
  10154. }
  10155. }
  10156. },
  10157. {
  10158. "_attributes": {
  10159. "path": "chi-d3e0c7de.ogg"
  10160. },
  10161. "tag": {
  10162. "_attributes": {
  10163. "swac_text": "灯",
  10164. "swac_alphaidx": "dēng",
  10165. "swac_pron_phon": "dēng"
  10166. }
  10167. }
  10168. },
  10169. {
  10170. "_attributes": {
  10171. "path": "chi-d3f600eb.ogg"
  10172. },
  10173. "tag": {
  10174. "_attributes": {
  10175. "swac_text": "车",
  10176. "swac_alphaidx": "chē",
  10177. "swac_pron_phon": "chē"
  10178. }
  10179. }
  10180. },
  10181. {
  10182. "_attributes": {
  10183. "path": "chi-d4096902.ogg"
  10184. },
  10185. "tag": {
  10186. "_attributes": {
  10187. "swac_text": "空气",
  10188. "swac_alphaidx": "kōngqì",
  10189. "swac_pron_phon": "kōngqì"
  10190. }
  10191. }
  10192. },
  10193. {
  10194. "_attributes": {
  10195. "path": "chi-d46b71e2.ogg"
  10196. },
  10197. "tag": {
  10198. "_attributes": {
  10199. "swac_text": "安排",
  10200. "swac_alphaidx": "ānpái",
  10201. "swac_pron_phon": "ānpái"
  10202. }
  10203. }
  10204. },
  10205. {
  10206. "_attributes": {
  10207. "path": "chi-d471d75b.ogg"
  10208. },
  10209. "tag": {
  10210. "_attributes": {
  10211. "swac_text": "吗",
  10212. "swac_alphaidx": "ma",
  10213. "swac_pron_phon": "ma"
  10214. }
  10215. }
  10216. },
  10217. {
  10218. "_attributes": {
  10219. "path": "chi-d4989cba.ogg"
  10220. },
  10221. "tag": {
  10222. "_attributes": {
  10223. "swac_text": "深",
  10224. "swac_alphaidx": "shēn",
  10225. "swac_pron_phon": "shēn"
  10226. }
  10227. }
  10228. },
  10229. {
  10230. "_attributes": {
  10231. "path": "chi-d4b1b436.ogg"
  10232. },
  10233. "tag": {
  10234. "_attributes": {
  10235. "swac_text": "四",
  10236. "swac_alphaidx": "sì",
  10237. "swac_pron_phon": "sì"
  10238. }
  10239. }
  10240. },
  10241. {
  10242. "_attributes": {
  10243. "path": "chi-d58fd11a.ogg"
  10244. },
  10245. "tag": {
  10246. "_attributes": {
  10247. "swac_text": "星期",
  10248. "swac_alphaidx": "xīngqī",
  10249. "swac_pron_phon": "xīngqī"
  10250. }
  10251. }
  10252. },
  10253. {
  10254. "_attributes": {
  10255. "path": "chi-d5c8b94f.ogg"
  10256. },
  10257. "tag": {
  10258. "_attributes": {
  10259. "swac_text": "是",
  10260. "swac_alphaidx": "shì",
  10261. "swac_pron_phon": "shì"
  10262. }
  10263. }
  10264. },
  10265. {
  10266. "_attributes": {
  10267. "path": "chi-d62db7b0.ogg"
  10268. },
  10269. "tag": {
  10270. "_attributes": {
  10271. "swac_text": "一定",
  10272. "swac_alphaidx": "yídìng",
  10273. "swac_pron_phon": "yídìng"
  10274. }
  10275. }
  10276. },
  10277. {
  10278. "_attributes": {
  10279. "path": "chi-d7282504.ogg"
  10280. },
  10281. "tag": {
  10282. "_attributes": {
  10283. "swac_text": "九",
  10284. "swac_alphaidx": "jiǔ",
  10285. "swac_pron_phon": "jiǔ"
  10286. }
  10287. }
  10288. },
  10289. {
  10290. "_attributes": {
  10291. "path": "chi-d73ecb01.ogg"
  10292. },
  10293. "tag": {
  10294. "_attributes": {
  10295. "swac_text": "组织",
  10296. "swac_alphaidx": "zǔzhī",
  10297. "swac_pron_phon": "zǔzhī"
  10298. }
  10299. }
  10300. },
  10301. {
  10302. "_attributes": {
  10303. "path": "chi-d788b6df.ogg"
  10304. },
  10305. "tag": {
  10306. "_attributes": {
  10307. "swac_text": "节",
  10308. "swac_alphaidx": "jié",
  10309. "swac_pron_phon": "jié"
  10310. }
  10311. }
  10312. },
  10313. {
  10314. "_attributes": {
  10315. "path": "chi-d7a95228.ogg"
  10316. },
  10317. "tag": {
  10318. "_attributes": {
  10319. "swac_text": "输",
  10320. "swac_alphaidx": "shū",
  10321. "swac_pron_phon": "shū"
  10322. }
  10323. }
  10324. },
  10325. {
  10326. "_attributes": {
  10327. "path": "chi-d80c6c71.ogg"
  10328. },
  10329. "tag": {
  10330. "_attributes": {
  10331. "swac_text": "一样",
  10332. "swac_alphaidx": "yíyàng",
  10333. "swac_pron_phon": "yíyàng"
  10334. }
  10335. }
  10336. },
  10337. {
  10338. "_attributes": {
  10339. "path": "chi-d92bb8c5.ogg"
  10340. },
  10341. "tag": {
  10342. "_attributes": {
  10343. "swac_text": "哈哈",
  10344. "swac_alphaidx": "hāhā",
  10345. "swac_pron_phon": "hāhā"
  10346. }
  10347. }
  10348. },
  10349. {
  10350. "_attributes": {
  10351. "path": "chi-d9371cfa.ogg"
  10352. },
  10353. "tag": {
  10354. "_attributes": {
  10355. "swac_text": "饭店",
  10356. "swac_alphaidx": "fàndiàn",
  10357. "swac_pron_phon": "fàndiàn"
  10358. }
  10359. }
  10360. },
  10361. {
  10362. "_attributes": {
  10363. "path": "chi-d948c3e1.ogg"
  10364. },
  10365. "tag": {
  10366. "_attributes": {
  10367. "swac_text": "道",
  10368. "swac_alphaidx": "dào",
  10369. "swac_pron_phon": "dào"
  10370. }
  10371. }
  10372. },
  10373. {
  10374. "_attributes": {
  10375. "path": "chi-d9f4611d.ogg"
  10376. },
  10377. "tag": {
  10378. "_attributes": {
  10379. "swac_text": "手",
  10380. "swac_alphaidx": "shǒu",
  10381. "swac_pron_phon": "shǒu"
  10382. }
  10383. }
  10384. },
  10385. {
  10386. "_attributes": {
  10387. "path": "chi-db0d961d.ogg"
  10388. },
  10389. "tag": {
  10390. "_attributes": {
  10391. "swac_text": "电",
  10392. "swac_alphaidx": "diàn",
  10393. "swac_pron_phon": "diàn"
  10394. }
  10395. }
  10396. },
  10397. {
  10398. "_attributes": {
  10399. "path": "chi-db2f7d41.ogg"
  10400. },
  10401. "tag": {
  10402. "_attributes": {
  10403. "swac_text": "穿",
  10404. "swac_alphaidx": "chuān",
  10405. "swac_pron_phon": "chuān"
  10406. }
  10407. }
  10408. },
  10409. {
  10410. "_attributes": {
  10411. "path": "chi-db413ba0.ogg"
  10412. },
  10413. "tag": {
  10414. "_attributes": {
  10415. "swac_text": "昨天",
  10416. "swac_alphaidx": "zuótiān",
  10417. "swac_pron_phon": "zuótiān"
  10418. }
  10419. }
  10420. },
  10421. {
  10422. "_attributes": {
  10423. "path": "chi-dbbf0530.ogg"
  10424. },
  10425. "tag": {
  10426. "_attributes": {
  10427. "swac_text": "当然",
  10428. "swac_alphaidx": "dāngrán",
  10429. "swac_pron_phon": "dāngrán"
  10430. }
  10431. }
  10432. },
  10433. {
  10434. "_attributes": {
  10435. "path": "chi-dbc01925.ogg"
  10436. },
  10437. "tag": {
  10438. "_attributes": {
  10439. "swac_text": "意见",
  10440. "swac_alphaidx": "yìjiàn",
  10441. "swac_pron_phon": "yìjiàn"
  10442. }
  10443. }
  10444. },
  10445. {
  10446. "_attributes": {
  10447. "path": "chi-dbdc313e.ogg"
  10448. },
  10449. "tag": {
  10450. "_attributes": {
  10451. "swac_text": "长",
  10452. "swac_alphaidx": "cháng",
  10453. "swac_pron_phon": "cháng"
  10454. }
  10455. }
  10456. },
  10457. {
  10458. "_attributes": {
  10459. "path": "chi-dc1b9a3c.ogg"
  10460. },
  10461. "tag": {
  10462. "_attributes": {
  10463. "swac_text": "改变",
  10464. "swac_alphaidx": "gǎibiàn",
  10465. "swac_pron_phon": "gǎibiàn"
  10466. }
  10467. }
  10468. },
  10469. {
  10470. "_attributes": {
  10471. "path": "chi-dc8ebfd4.ogg"
  10472. },
  10473. "tag": {
  10474. "_attributes": {
  10475. "swac_text": "了",
  10476. "swac_alphaidx": "liǎo",
  10477. "swac_pron_phon": "liǎo"
  10478. }
  10479. }
  10480. },
  10481. {
  10482. "_attributes": {
  10483. "path": "chi-dcbb8c00.ogg"
  10484. },
  10485. "tag": {
  10486. "_attributes": {
  10487. "swac_text": "把",
  10488. "swac_alphaidx": "bǎ",
  10489. "swac_pron_phon": "bǎ"
  10490. }
  10491. }
  10492. },
  10493. {
  10494. "_attributes": {
  10495. "path": "chi-dcd53fbe.ogg"
  10496. },
  10497. "tag": {
  10498. "_attributes": {
  10499. "swac_text": "画",
  10500. "swac_alphaidx": "huà",
  10501. "swac_pron_phon": "huà"
  10502. }
  10503. }
  10504. },
  10505. {
  10506. "_attributes": {
  10507. "path": "chi-dd1348f7.ogg"
  10508. },
  10509. "tag": {
  10510. "_attributes": {
  10511. "swac_text": "东西",
  10512. "swac_alphaidx": "dōngxi",
  10513. "swac_pron_phon": "dōngxi"
  10514. }
  10515. }
  10516. },
  10517. {
  10518. "_attributes": {
  10519. "path": "chi-dd135c6c.ogg"
  10520. },
  10521. "tag": {
  10522. "_attributes": {
  10523. "swac_text": "文学家",
  10524. "swac_alphaidx": "wénxuéjiā",
  10525. "swac_pron_phon": "wénxuéjiā"
  10526. }
  10527. }
  10528. },
  10529. {
  10530. "_attributes": {
  10531. "path": "chi-ddcc6fb2.ogg"
  10532. },
  10533. "tag": {
  10534. "_attributes": {
  10535. "swac_text": "发生",
  10536. "swac_alphaidx": "fāshēng",
  10537. "swac_pron_phon": "fāshēng"
  10538. }
  10539. }
  10540. },
  10541. {
  10542. "_attributes": {
  10543. "path": "chi-ddd666fc.ogg"
  10544. },
  10545. "tag": {
  10546. "_attributes": {
  10547. "swac_text": "面条儿",
  10548. "swac_alphaidx": "miàntiáor",
  10549. "swac_pron_phon": "miàntiáor"
  10550. }
  10551. }
  10552. },
  10553. {
  10554. "_attributes": {
  10555. "path": "chi-ddf08144.ogg"
  10556. },
  10557. "tag": {
  10558. "_attributes": {
  10559. "swac_text": "矮",
  10560. "swac_alphaidx": "ǎi",
  10561. "swac_pron_phon": "ǎi"
  10562. }
  10563. }
  10564. },
  10565. {
  10566. "_attributes": {
  10567. "path": "chi-de2decbe.ogg"
  10568. },
  10569. "tag": {
  10570. "_attributes": {
  10571. "swac_text": "熟",
  10572. "swac_alphaidx": "shú",
  10573. "swac_pron_phon": "shú"
  10574. }
  10575. }
  10576. },
  10577. {
  10578. "_attributes": {
  10579. "path": "chi-de4637aa.ogg"
  10580. },
  10581. "tag": {
  10582. "_attributes": {
  10583. "swac_text": "生活",
  10584. "swac_alphaidx": "shēnghuó",
  10585. "swac_pron_phon": "shēnghuó"
  10586. }
  10587. }
  10588. },
  10589. {
  10590. "_attributes": {
  10591. "path": "chi-de804483.ogg"
  10592. },
  10593. "tag": {
  10594. "_attributes": {
  10595. "swac_text": "以前",
  10596. "swac_alphaidx": "yǐqián",
  10597. "swac_pron_phon": "yǐqián"
  10598. }
  10599. }
  10600. },
  10601. {
  10602. "_attributes": {
  10603. "path": "chi-de90126a.ogg"
  10604. },
  10605. "tag": {
  10606. "_attributes": {
  10607. "swac_text": "谁",
  10608. "swac_alphaidx": "sheí",
  10609. "swac_pron_phon": "sheí"
  10610. }
  10611. }
  10612. },
  10613. {
  10614. "_attributes": {
  10615. "path": "chi-decfc38b.ogg"
  10616. },
  10617. "tag": {
  10618. "_attributes": {
  10619. "swac_text": "中午",
  10620. "swac_alphaidx": "zhōngwǔ",
  10621. "swac_pron_phon": "zhōngwǔ"
  10622. }
  10623. }
  10624. },
  10625. {
  10626. "_attributes": {
  10627. "path": "chi-deed19f9.ogg"
  10628. },
  10629. "tag": {
  10630. "_attributes": {
  10631. "swac_text": "社会",
  10632. "swac_alphaidx": "shèhuì",
  10633. "swac_pron_phon": "shèhuì"
  10634. }
  10635. }
  10636. },
  10637. {
  10638. "_attributes": {
  10639. "path": "chi-df47225c.ogg"
  10640. },
  10641. "tag": {
  10642. "_attributes": {
  10643. "swac_text": "它",
  10644. "swac_alphaidx": "tā",
  10645. "swac_pron_phon": "tā"
  10646. }
  10647. }
  10648. },
  10649. {
  10650. "_attributes": {
  10651. "path": "chi-df47edd9.ogg"
  10652. },
  10653. "tag": {
  10654. "_attributes": {
  10655. "swac_text": "等",
  10656. "swac_alphaidx": "děng",
  10657. "swac_pron_phon": "děng"
  10658. }
  10659. }
  10660. },
  10661. {
  10662. "_attributes": {
  10663. "path": "chi-df5ee961.ogg"
  10664. },
  10665. "tag": {
  10666. "_attributes": {
  10667. "swac_text": "最后",
  10668. "swac_alphaidx": "zuìhòu",
  10669. "swac_pron_phon": "zuìhòu"
  10670. }
  10671. }
  10672. },
  10673. {
  10674. "_attributes": {
  10675. "path": "chi-dfa01bd0.ogg"
  10676. },
  10677. "tag": {
  10678. "_attributes": {
  10679. "swac_text": "钢笔",
  10680. "swac_alphaidx": "gāngbǐ",
  10681. "swac_pron_phon": "gāngbǐ"
  10682. }
  10683. }
  10684. },
  10685. {
  10686. "_attributes": {
  10687. "path": "chi-dfc73c75.ogg"
  10688. },
  10689. "tag": {
  10690. "_attributes": {
  10691. "swac_text": "就",
  10692. "swac_alphaidx": "jiù",
  10693. "swac_pron_phon": "jiù"
  10694. }
  10695. }
  10696. },
  10697. {
  10698. "_attributes": {
  10699. "path": "chi-e097b867.ogg"
  10700. },
  10701. "tag": {
  10702. "_attributes": {
  10703. "swac_text": "出发",
  10704. "swac_alphaidx": "chūfā",
  10705. "swac_pron_phon": "chūfā"
  10706. }
  10707. }
  10708. },
  10709. {
  10710. "_attributes": {
  10711. "path": "chi-e099e4eb.ogg"
  10712. },
  10713. "tag": {
  10714. "_attributes": {
  10715. "swac_text": "漂亮",
  10716. "swac_alphaidx": "piàoliang",
  10717. "swac_pron_phon": "piàoliang"
  10718. }
  10719. }
  10720. },
  10721. {
  10722. "_attributes": {
  10723. "path": "chi-e0fca344.ogg"
  10724. },
  10725. "tag": {
  10726. "_attributes": {
  10727. "swac_text": "丢",
  10728. "swac_alphaidx": "diū",
  10729. "swac_pron_phon": "diū"
  10730. }
  10731. }
  10732. },
  10733. {
  10734. "_attributes": {
  10735. "path": "chi-e10f9e34.ogg"
  10736. },
  10737. "tag": {
  10738. "_attributes": {
  10739. "swac_text": "上去",
  10740. "swac_alphaidx": "shàngqù",
  10741. "swac_pron_phon": "shàngqù"
  10742. }
  10743. }
  10744. },
  10745. {
  10746. "_attributes": {
  10747. "path": "chi-e14b462d.ogg"
  10748. },
  10749. "tag": {
  10750. "_attributes": {
  10751. "swac_text": "拉",
  10752. "swac_alphaidx": "lā",
  10753. "swac_pron_phon": "lā"
  10754. }
  10755. }
  10756. },
  10757. {
  10758. "_attributes": {
  10759. "path": "chi-e1d611bf.ogg"
  10760. },
  10761. "tag": {
  10762. "_attributes": {
  10763. "swac_text": "草",
  10764. "swac_alphaidx": "cǎo",
  10765. "swac_pron_phon": "cǎo"
  10766. }
  10767. }
  10768. },
  10769. {
  10770. "_attributes": {
  10771. "path": "chi-e204f613.ogg"
  10772. },
  10773. "tag": {
  10774. "_attributes": {
  10775. "swac_text": "骑",
  10776. "swac_alphaidx": "qí",
  10777. "swac_pron_phon": "qí"
  10778. }
  10779. }
  10780. },
  10781. {
  10782. "_attributes": {
  10783. "path": "chi-e215628b.ogg"
  10784. },
  10785. "tag": {
  10786. "_attributes": {
  10787. "swac_text": "一块儿",
  10788. "swac_alphaidx": "yíkuàir",
  10789. "swac_pron_phon": "yíkuàir"
  10790. }
  10791. }
  10792. },
  10793. {
  10794. "_attributes": {
  10795. "path": "chi-e264d5e6.ogg"
  10796. },
  10797. "tag": {
  10798. "_attributes": {
  10799. "swac_text": "收拾",
  10800. "swac_alphaidx": "shōushi",
  10801. "swac_pron_phon": "shōushi"
  10802. }
  10803. }
  10804. },
  10805. {
  10806. "_attributes": {
  10807. "path": "chi-e274e2d9.ogg"
  10808. },
  10809. "tag": {
  10810. "_attributes": {
  10811. "swac_text": "内容",
  10812. "swac_alphaidx": "nèiróng",
  10813. "swac_pron_phon": "nèiróng"
  10814. }
  10815. }
  10816. },
  10817. {
  10818. "_attributes": {
  10819. "path": "chi-e290be13.ogg"
  10820. },
  10821. "tag": {
  10822. "_attributes": {
  10823. "swac_text": "会话",
  10824. "swac_alphaidx": "huìhuà",
  10825. "swac_pron_phon": "huìhuà"
  10826. }
  10827. }
  10828. },
  10829. {
  10830. "_attributes": {
  10831. "path": "chi-e2eed78c.ogg"
  10832. },
  10833. "tag": {
  10834. "_attributes": {
  10835. "swac_text": "邮局",
  10836. "swac_alphaidx": "yóujú",
  10837. "swac_pron_phon": "yóujú"
  10838. }
  10839. }
  10840. },
  10841. {
  10842. "_attributes": {
  10843. "path": "chi-e337e8ba.ogg"
  10844. },
  10845. "tag": {
  10846. "_attributes": {
  10847. "swac_text": "通",
  10848. "swac_alphaidx": "tōng",
  10849. "swac_pron_phon": "tōng"
  10850. }
  10851. }
  10852. },
  10853. {
  10854. "_attributes": {
  10855. "path": "chi-e3c74e8b.ogg"
  10856. },
  10857. "tag": {
  10858. "_attributes": {
  10859. "swac_text": "百",
  10860. "swac_alphaidx": "bǎi",
  10861. "swac_pron_phon": "bǎi"
  10862. }
  10863. }
  10864. },
  10865. {
  10866. "_attributes": {
  10867. "path": "chi-e3c9ab8b.ogg"
  10868. },
  10869. "tag": {
  10870. "_attributes": {
  10871. "swac_text": "宿舍",
  10872. "swac_alphaidx": "sùshè",
  10873. "swac_pron_phon": "sùshè"
  10874. }
  10875. }
  10876. },
  10877. {
  10878. "_attributes": {
  10879. "path": "chi-e4079aa1.ogg"
  10880. },
  10881. "tag": {
  10882. "_attributes": {
  10883. "swac_text": "早饭",
  10884. "swac_alphaidx": "zǎofàn",
  10885. "swac_pron_phon": "zǎofàn"
  10886. }
  10887. }
  10888. },
  10889. {
  10890. "_attributes": {
  10891. "path": "chi-e50493a6.ogg"
  10892. },
  10893. "tag": {
  10894. "_attributes": {
  10895. "swac_text": "杯子",
  10896. "swac_alphaidx": "bēizi",
  10897. "swac_pron_phon": "bēizi"
  10898. }
  10899. }
  10900. },
  10901. {
  10902. "_attributes": {
  10903. "path": "chi-e549d4e8.ogg"
  10904. },
  10905. "tag": {
  10906. "_attributes": {
  10907. "swac_text": "火车",
  10908. "swac_alphaidx": "huǒchē",
  10909. "swac_pron_phon": "huǒchē"
  10910. }
  10911. }
  10912. },
  10913. {
  10914. "_attributes": {
  10915. "path": "chi-e58d8052.ogg"
  10916. },
  10917. "tag": {
  10918. "_attributes": {
  10919. "swac_text": "迟到",
  10920. "swac_alphaidx": "chídào",
  10921. "swac_pron_phon": "chídào"
  10922. }
  10923. }
  10924. },
  10925. {
  10926. "_attributes": {
  10927. "path": "chi-e5e651be.ogg"
  10928. },
  10929. "tag": {
  10930. "_attributes": {
  10931. "swac_text": "样子",
  10932. "swac_alphaidx": "yàngzi",
  10933. "swac_pron_phon": "yàngzi"
  10934. }
  10935. }
  10936. },
  10937. {
  10938. "_attributes": {
  10939. "path": "chi-e6090ceb.ogg"
  10940. },
  10941. "tag": {
  10942. "_attributes": {
  10943. "swac_text": "自己",
  10944. "swac_alphaidx": "zìjǐ",
  10945. "swac_pron_phon": "zìjǐ"
  10946. }
  10947. }
  10948. },
  10949. {
  10950. "_attributes": {
  10951. "path": "chi-e62f2371.ogg"
  10952. },
  10953. "tag": {
  10954. "_attributes": {
  10955. "swac_text": "洗澡",
  10956. "swac_alphaidx": "xǐzǎo",
  10957. "swac_pron_phon": "xǐzǎo"
  10958. }
  10959. }
  10960. },
  10961. {
  10962. "_attributes": {
  10963. "path": "chi-e636cd0d.ogg"
  10964. },
  10965. "tag": {
  10966. "_attributes": {
  10967. "swac_text": "完成",
  10968. "swac_alphaidx": "wánchéng",
  10969. "swac_pron_phon": "wánchéng"
  10970. }
  10971. }
  10972. },
  10973. {
  10974. "_attributes": {
  10975. "path": "chi-e6e5c717.ogg"
  10976. },
  10977. "tag": {
  10978. "_attributes": {
  10979. "swac_text": "紧",
  10980. "swac_alphaidx": "jǐn",
  10981. "swac_pron_phon": "jǐn"
  10982. }
  10983. }
  10984. },
  10985. {
  10986. "_attributes": {
  10987. "path": "chi-e78f21ac.ogg"
  10988. },
  10989. "tag": {
  10990. "_attributes": {
  10991. "swac_text": "哪里",
  10992. "swac_alphaidx": "nǎlǐ",
  10993. "swac_pron_phon": "nǎlǐ"
  10994. }
  10995. }
  10996. },
  10997. {
  10998. "_attributes": {
  10999. "path": "chi-e7b1ef83.ogg"
  11000. },
  11001. "tag": {
  11002. "_attributes": {
  11003. "swac_text": "排球",
  11004. "swac_alphaidx": "páiqiú",
  11005. "swac_pron_phon": "páiqiú"
  11006. }
  11007. }
  11008. },
  11009. {
  11010. "_attributes": {
  11011. "path": "chi-e8165987.ogg"
  11012. },
  11013. "tag": {
  11014. "_attributes": {
  11015. "swac_text": "留学生",
  11016. "swac_alphaidx": "liúxuéshēng",
  11017. "swac_pron_phon": "liúxuéshēng"
  11018. }
  11019. }
  11020. },
  11021. {
  11022. "_attributes": {
  11023. "path": "chi-e837b3b4.ogg"
  11024. },
  11025. "tag": {
  11026. "_attributes": {
  11027. "swac_text": "全",
  11028. "swac_alphaidx": "quán",
  11029. "swac_pron_phon": "quán"
  11030. }
  11031. }
  11032. },
  11033. {
  11034. "_attributes": {
  11035. "path": "chi-e8600c62.ogg"
  11036. },
  11037. "tag": {
  11038. "_attributes": {
  11039. "swac_text": "外",
  11040. "swac_alphaidx": "wài",
  11041. "swac_pron_phon": "wài"
  11042. }
  11043. }
  11044. },
  11045. {
  11046. "_attributes": {
  11047. "path": "chi-e891caa2.ogg"
  11048. },
  11049. "tag": {
  11050. "_attributes": {
  11051. "swac_text": "站",
  11052. "swac_alphaidx": "zhàn",
  11053. "swac_pron_phon": "zhàn"
  11054. }
  11055. }
  11056. },
  11057. {
  11058. "_attributes": {
  11059. "path": "chi-e8b1c0fc.ogg"
  11060. },
  11061. "tag": {
  11062. "_attributes": {
  11063. "swac_text": "继续",
  11064. "swac_alphaidx": "jìxù",
  11065. "swac_pron_phon": "jìxù"
  11066. }
  11067. }
  11068. },
  11069. {
  11070. "_attributes": {
  11071. "path": "chi-e8c77e29.ogg"
  11072. },
  11073. "tag": {
  11074. "_attributes": {
  11075. "swac_text": "晚会",
  11076. "swac_alphaidx": "wǎnhuì",
  11077. "swac_pron_phon": "wǎnhuì"
  11078. }
  11079. }
  11080. },
  11081. {
  11082. "_attributes": {
  11083. "path": "chi-e90a8b8c.ogg"
  11084. },
  11085. "tag": {
  11086. "_attributes": {
  11087. "swac_text": "船",
  11088. "swac_alphaidx": "chuán",
  11089. "swac_pron_phon": "chuán"
  11090. }
  11091. }
  11092. },
  11093. {
  11094. "_attributes": {
  11095. "path": "chi-e9bc0afe.ogg"
  11096. },
  11097. "tag": {
  11098. "_attributes": {
  11099. "swac_text": "里",
  11100. "swac_alphaidx": "lǐ",
  11101. "swac_pron_phon": "lǐ"
  11102. }
  11103. }
  11104. },
  11105. {
  11106. "_attributes": {
  11107. "path": "chi-e9e94a73.ogg"
  11108. },
  11109. "tag": {
  11110. "_attributes": {
  11111. "swac_text": "办公室",
  11112. "swac_alphaidx": "bàngōngshì",
  11113. "swac_pron_phon": "bàngōngshì"
  11114. }
  11115. }
  11116. },
  11117. {
  11118. "_attributes": {
  11119. "path": "chi-ea703f02.ogg"
  11120. },
  11121. "tag": {
  11122. "_attributes": {
  11123. "swac_text": "里边",
  11124. "swac_alphaidx": "lǐbiān",
  11125. "swac_pron_phon": "lǐbiān"
  11126. }
  11127. }
  11128. },
  11129. {
  11130. "_attributes": {
  11131. "path": "chi-ea9aa4e8.ogg"
  11132. },
  11133. "tag": {
  11134. "_attributes": {
  11135. "swac_text": "尤其",
  11136. "swac_alphaidx": "yóuqí",
  11137. "swac_pron_phon": "yóuqí"
  11138. }
  11139. }
  11140. },
  11141. {
  11142. "_attributes": {
  11143. "path": "chi-eb0227e2.ogg"
  11144. },
  11145. "tag": {
  11146. "_attributes": {
  11147. "swac_text": "法语",
  11148. "swac_alphaidx": "fǎyǔ",
  11149. "swac_pron_phon": "fǎyǔ"
  11150. }
  11151. }
  11152. },
  11153. {
  11154. "_attributes": {
  11155. "path": "chi-eb0e0e5b.ogg"
  11156. },
  11157. "tag": {
  11158. "_attributes": {
  11159. "swac_text": "路",
  11160. "swac_alphaidx": "lù",
  11161. "swac_pron_phon": "lù"
  11162. }
  11163. }
  11164. },
  11165. {
  11166. "_attributes": {
  11167. "path": "chi-ec136a18.ogg"
  11168. },
  11169. "tag": {
  11170. "_attributes": {
  11171. "swac_text": "掌握",
  11172. "swac_alphaidx": "zhǎngwò",
  11173. "swac_pron_phon": "zhǎngwò"
  11174. }
  11175. }
  11176. },
  11177. {
  11178. "_attributes": {
  11179. "path": "chi-ec2b0a75.ogg"
  11180. },
  11181. "tag": {
  11182. "_attributes": {
  11183. "swac_text": "通知",
  11184. "swac_alphaidx": "tōngzhī",
  11185. "swac_pron_phon": "tōngzhī"
  11186. }
  11187. }
  11188. },
  11189. {
  11190. "_attributes": {
  11191. "path": "chi-ec38578b.ogg"
  11192. },
  11193. "tag": {
  11194. "_attributes": {
  11195. "swac_text": "希望",
  11196. "swac_alphaidx": "xīwàng",
  11197. "swac_pron_phon": "xīwàng"
  11198. }
  11199. }
  11200. },
  11201. {
  11202. "_attributes": {
  11203. "path": "chi-ec5dd5a1.ogg"
  11204. },
  11205. "tag": {
  11206. "_attributes": {
  11207. "swac_text": "夏",
  11208. "swac_alphaidx": "xià",
  11209. "swac_pron_phon": "xià"
  11210. }
  11211. }
  11212. },
  11213. {
  11214. "_attributes": {
  11215. "path": "chi-ec7b2730.ogg"
  11216. },
  11217. "tag": {
  11218. "_attributes": {
  11219. "swac_text": "歌",
  11220. "swac_alphaidx": "gēge",
  11221. "swac_pron_phon": "gēge"
  11222. }
  11223. }
  11224. },
  11225. {
  11226. "_attributes": {
  11227. "path": "chi-ec81e500.ogg"
  11228. },
  11229. "tag": {
  11230. "_attributes": {
  11231. "swac_text": "回答",
  11232. "swac_alphaidx": "huídá",
  11233. "swac_pron_phon": "huídá"
  11234. }
  11235. }
  11236. },
  11237. {
  11238. "_attributes": {
  11239. "path": "chi-ecea3272.ogg"
  11240. },
  11241. "tag": {
  11242. "_attributes": {
  11243. "swac_text": "见",
  11244. "swac_alphaidx": "jiàn",
  11245. "swac_pron_phon": "jiàn"
  11246. }
  11247. }
  11248. },
  11249. {
  11250. "_attributes": {
  11251. "path": "chi-edcbcc73.ogg"
  11252. },
  11253. "tag": {
  11254. "_attributes": {
  11255. "swac_text": "孩子",
  11256. "swac_alphaidx": "háizi",
  11257. "swac_pron_phon": "háizi"
  11258. }
  11259. }
  11260. },
  11261. {
  11262. "_attributes": {
  11263. "path": "chi-ee0af507.ogg"
  11264. },
  11265. "tag": {
  11266. "_attributes": {
  11267. "swac_text": "认识",
  11268. "swac_alphaidx": "rènshi",
  11269. "swac_pron_phon": "rènshi"
  11270. }
  11271. }
  11272. },
  11273. {
  11274. "_attributes": {
  11275. "path": "chi-ee1616e8.ogg"
  11276. },
  11277. "tag": {
  11278. "_attributes": {
  11279. "swac_text": "马",
  11280. "swac_alphaidx": "mǎ",
  11281. "swac_pron_phon": "mǎ"
  11282. }
  11283. }
  11284. },
  11285. {
  11286. "_attributes": {
  11287. "path": "chi-ee6825ed.ogg"
  11288. },
  11289. "tag": {
  11290. "_attributes": {
  11291. "swac_text": "爸爸",
  11292. "swac_alphaidx": "bàba",
  11293. "swac_pron_phon": "bàba"
  11294. }
  11295. }
  11296. },
  11297. {
  11298. "_attributes": {
  11299. "path": "chi-ee82697d.ogg"
  11300. },
  11301. "tag": {
  11302. "_attributes": {
  11303. "swac_text": "杯",
  11304. "swac_alphaidx": "bēi",
  11305. "swac_pron_phon": "bēi"
  11306. }
  11307. }
  11308. },
  11309. {
  11310. "_attributes": {
  11311. "path": "chi-eee24b9a.ogg"
  11312. },
  11313. "tag": {
  11314. "_attributes": {
  11315. "swac_text": "三",
  11316. "swac_alphaidx": "sān",
  11317. "swac_pron_phon": "sān"
  11318. }
  11319. }
  11320. },
  11321. {
  11322. "_attributes": {
  11323. "path": "chi-ef1b451e.ogg"
  11324. },
  11325. "tag": {
  11326. "_attributes": {
  11327. "swac_text": "啊",
  11328. "swac_alphaidx": "a",
  11329. "swac_pron_phon": "a"
  11330. }
  11331. }
  11332. },
  11333. {
  11334. "_attributes": {
  11335. "path": "chi-ef519f63.ogg"
  11336. },
  11337. "tag": {
  11338. "_attributes": {
  11339. "swac_text": "搬",
  11340. "swac_alphaidx": "bān",
  11341. "swac_pron_phon": "bān"
  11342. }
  11343. }
  11344. },
  11345. {
  11346. "_attributes": {
  11347. "path": "chi-ef78b8bc.ogg"
  11348. },
  11349. "tag": {
  11350. "_attributes": {
  11351. "swac_text": "没有",
  11352. "swac_alphaidx": "méiyǒu",
  11353. "swac_pron_phon": "méiyǒu"
  11354. }
  11355. }
  11356. },
  11357. {
  11358. "_attributes": {
  11359. "path": "chi-efc2af4f.ogg"
  11360. },
  11361. "tag": {
  11362. "_attributes": {
  11363. "swac_text": "倒",
  11364. "swac_alphaidx": "dǎo",
  11365. "swac_pron_phon": "dǎo"
  11366. }
  11367. }
  11368. },
  11369. {
  11370. "_attributes": {
  11371. "path": "chi-efcb8f1c.ogg"
  11372. },
  11373. "tag": {
  11374. "_attributes": {
  11375. "swac_text": "意思",
  11376. "swac_alphaidx": "yìsi",
  11377. "swac_pron_phon": "yìsi"
  11378. }
  11379. }
  11380. },
  11381. {
  11382. "_attributes": {
  11383. "path": "chi-eff0e1d8.ogg"
  11384. },
  11385. "tag": {
  11386. "_attributes": {
  11387. "swac_text": "过去",
  11388. "swac_alphaidx": "guòqù",
  11389. "swac_pron_phon": "guòqù"
  11390. }
  11391. }
  11392. },
  11393. {
  11394. "_attributes": {
  11395. "path": "chi-f02dc948.ogg"
  11396. },
  11397. "tag": {
  11398. "_attributes": {
  11399. "swac_text": "好吃",
  11400. "swac_alphaidx": "hǎochī",
  11401. "swac_pron_phon": "hǎochī"
  11402. }
  11403. }
  11404. },
  11405. {
  11406. "_attributes": {
  11407. "path": "chi-f0413fc8.ogg"
  11408. },
  11409. "tag": {
  11410. "_attributes": {
  11411. "swac_text": "差",
  11412. "swac_alphaidx": "chà",
  11413. "swac_pron_phon": "chà"
  11414. }
  11415. }
  11416. },
  11417. {
  11418. "_attributes": {
  11419. "path": "chi-f0429f26.ogg"
  11420. },
  11421. "tag": {
  11422. "_attributes": {
  11423. "swac_text": "说",
  11424. "swac_alphaidx": "shuō",
  11425. "swac_pron_phon": "shuō"
  11426. }
  11427. }
  11428. },
  11429. {
  11430. "_attributes": {
  11431. "path": "chi-f0534bb8.ogg"
  11432. },
  11433. "tag": {
  11434. "_attributes": {
  11435. "swac_text": "放",
  11436. "swac_alphaidx": "fàng",
  11437. "swac_pron_phon": "fàng"
  11438. }
  11439. }
  11440. },
  11441. {
  11442. "_attributes": {
  11443. "path": "chi-f2299201.ogg"
  11444. },
  11445. "tag": {
  11446. "_attributes": {
  11447. "swac_text": "您",
  11448. "swac_alphaidx": "nín",
  11449. "swac_pron_phon": "nín"
  11450. }
  11451. }
  11452. },
  11453. {
  11454. "_attributes": {
  11455. "path": "chi-f2580e2d.ogg"
  11456. },
  11457. "tag": {
  11458. "_attributes": {
  11459. "swac_text": "月亮",
  11460. "swac_alphaidx": "yuèliang",
  11461. "swac_pron_phon": "yuèliang"
  11462. }
  11463. }
  11464. },
  11465. {
  11466. "_attributes": {
  11467. "path": "chi-f2852b85.ogg"
  11468. },
  11469. "tag": {
  11470. "_attributes": {
  11471. "swac_text": "关",
  11472. "swac_alphaidx": "guān",
  11473. "swac_pron_phon": "guān"
  11474. }
  11475. }
  11476. },
  11477. {
  11478. "_attributes": {
  11479. "path": "chi-f2c57a60.ogg"
  11480. },
  11481. "tag": {
  11482. "_attributes": {
  11483. "swac_text": "马上",
  11484. "swac_alphaidx": "mǎshàng",
  11485. "swac_pron_phon": "mǎshàng"
  11486. }
  11487. }
  11488. },
  11489. {
  11490. "_attributes": {
  11491. "path": "chi-f31748e4.ogg"
  11492. },
  11493. "tag": {
  11494. "_attributes": {
  11495. "swac_text": "主意",
  11496. "swac_alphaidx": "zhǔyi",
  11497. "swac_pron_phon": "zhǔyi"
  11498. }
  11499. }
  11500. },
  11501. {
  11502. "_attributes": {
  11503. "path": "chi-f31af323.ogg"
  11504. },
  11505. "tag": {
  11506. "_attributes": {
  11507. "swac_text": "俩",
  11508. "swac_alphaidx": "liǎ",
  11509. "swac_pron_phon": "liǎ"
  11510. }
  11511. }
  11512. },
  11513. {
  11514. "_attributes": {
  11515. "path": "chi-f32bed9a.ogg"
  11516. },
  11517. "tag": {
  11518. "_attributes": {
  11519. "swac_text": "糖",
  11520. "swac_alphaidx": "táng",
  11521. "swac_pron_phon": "táng"
  11522. }
  11523. }
  11524. },
  11525. {
  11526. "_attributes": {
  11527. "path": "chi-f34727c2.ogg"
  11528. },
  11529. "tag": {
  11530. "_attributes": {
  11531. "swac_text": "实践",
  11532. "swac_alphaidx": "shíjiàn",
  11533. "swac_pron_phon": "shíjiàn"
  11534. }
  11535. }
  11536. },
  11537. {
  11538. "_attributes": {
  11539. "path": "chi-f38326a9.ogg"
  11540. },
  11541. "tag": {
  11542. "_attributes": {
  11543. "swac_text": "够",
  11544. "swac_alphaidx": "gòu",
  11545. "swac_pron_phon": "gòu"
  11546. }
  11547. }
  11548. },
  11549. {
  11550. "_attributes": {
  11551. "path": "chi-f3867a28.ogg"
  11552. },
  11553. "tag": {
  11554. "_attributes": {
  11555. "swac_text": "玩儿",
  11556. "swac_alphaidx": "wánr",
  11557. "swac_pron_phon": "wánr"
  11558. }
  11559. }
  11560. },
  11561. {
  11562. "_attributes": {
  11563. "path": "chi-f392e384.ogg"
  11564. },
  11565. "tag": {
  11566. "_attributes": {
  11567. "swac_text": "对不起",
  11568. "swac_alphaidx": "duìbuqǐ",
  11569. "swac_pron_phon": "duìbuqǐ"
  11570. }
  11571. }
  11572. },
  11573. {
  11574. "_attributes": {
  11575. "path": "chi-f395e8bf.ogg"
  11576. },
  11577. "tag": {
  11578. "_attributes": {
  11579. "swac_text": "要",
  11580. "swac_alphaidx": "yào",
  11581. "swac_pron_phon": "yào"
  11582. }
  11583. }
  11584. },
  11585. {
  11586. "_attributes": {
  11587. "path": "chi-f4371b39.ogg"
  11588. },
  11589. "tag": {
  11590. "_attributes": {
  11591. "swac_text": "贵姓",
  11592. "swac_alphaidx": "guìxìng",
  11593. "swac_pron_phon": "guìxìng"
  11594. }
  11595. }
  11596. },
  11597. {
  11598. "_attributes": {
  11599. "path": "chi-f47966b7.ogg"
  11600. },
  11601. "tag": {
  11602. "_attributes": {
  11603. "swac_text": "代表",
  11604. "swac_alphaidx": "dàibiǎo",
  11605. "swac_pron_phon": "dàibiǎo"
  11606. }
  11607. }
  11608. },
  11609. {
  11610. "_attributes": {
  11611. "path": "chi-f4ab85b2.ogg"
  11612. },
  11613. "tag": {
  11614. "_attributes": {
  11615. "swac_text": "摆",
  11616. "swac_alphaidx": "bǎi",
  11617. "swac_pron_phon": "bǎi"
  11618. }
  11619. }
  11620. },
  11621. {
  11622. "_attributes": {
  11623. "path": "chi-f4d83b05.ogg"
  11624. },
  11625. "tag": {
  11626. "_attributes": {
  11627. "swac_text": "卡车",
  11628. "swac_alphaidx": "kǎchē",
  11629. "swac_pron_phon": "kǎchē"
  11630. }
  11631. }
  11632. },
  11633. {
  11634. "_attributes": {
  11635. "path": "chi-f5003e1a.ogg"
  11636. },
  11637. "tag": {
  11638. "_attributes": {
  11639. "swac_text": "变",
  11640. "swac_alphaidx": "biàn",
  11641. "swac_pron_phon": "biàn"
  11642. }
  11643. }
  11644. },
  11645. {
  11646. "_attributes": {
  11647. "path": "chi-f5273edb.ogg"
  11648. },
  11649. "tag": {
  11650. "_attributes": {
  11651. "swac_text": "报",
  11652. "swac_alphaidx": "bào",
  11653. "swac_pron_phon": "bào"
  11654. }
  11655. }
  11656. },
  11657. {
  11658. "_attributes": {
  11659. "path": "chi-f56dd649.ogg"
  11660. },
  11661. "tag": {
  11662. "_attributes": {
  11663. "swac_text": "真",
  11664. "swac_alphaidx": "zhēn",
  11665. "swac_pron_phon": "zhēn"
  11666. }
  11667. }
  11668. },
  11669. {
  11670. "_attributes": {
  11671. "path": "chi-f5bd5fb8.ogg"
  11672. },
  11673. "tag": {
  11674. "_attributes": {
  11675. "swac_text": "一起",
  11676. "swac_alphaidx": "yìqǐ",
  11677. "swac_pron_phon": "yìqǐ"
  11678. }
  11679. }
  11680. },
  11681. {
  11682. "_attributes": {
  11683. "path": "chi-f5c7fcc6.ogg"
  11684. },
  11685. "tag": {
  11686. "_attributes": {
  11687. "swac_text": "浅",
  11688. "swac_alphaidx": "qiǎn",
  11689. "swac_pron_phon": "qiǎn"
  11690. }
  11691. }
  11692. },
  11693. {
  11694. "_attributes": {
  11695. "path": "chi-f6a9f27d.ogg"
  11696. },
  11697. "tag": {
  11698. "_attributes": {
  11699. "swac_text": "急",
  11700. "swac_alphaidx": "jí",
  11701. "swac_pron_phon": "jí"
  11702. }
  11703. }
  11704. },
  11705. {
  11706. "_attributes": {
  11707. "path": "chi-f7518b01.ogg"
  11708. },
  11709. "tag": {
  11710. "_attributes": {
  11711. "swac_text": "问好",
  11712. "swac_alphaidx": "wènhǎo",
  11713. "swac_pron_phon": "wènhǎo"
  11714. }
  11715. }
  11716. },
  11717. {
  11718. "_attributes": {
  11719. "path": "chi-f77b0299.ogg"
  11720. },
  11721. "tag": {
  11722. "_attributes": {
  11723. "swac_text": "钟头",
  11724. "swac_alphaidx": "zhōngtóu",
  11725. "swac_pron_phon": "zhōngtóu"
  11726. }
  11727. }
  11728. },
  11729. {
  11730. "_attributes": {
  11731. "path": "chi-f788900e.ogg"
  11732. },
  11733. "tag": {
  11734. "_attributes": {
  11735. "swac_text": "姑娘",
  11736. "swac_alphaidx": "gūniang",
  11737. "swac_pron_phon": "gūniang"
  11738. }
  11739. }
  11740. },
  11741. {
  11742. "_attributes": {
  11743. "path": "chi-f7f22050.ogg"
  11744. },
  11745. "tag": {
  11746. "_attributes": {
  11747. "swac_text": "后边",
  11748. "swac_alphaidx": "hòubiān",
  11749. "swac_pron_phon": "hòubiān"
  11750. }
  11751. }
  11752. },
  11753. {
  11754. "_attributes": {
  11755. "path": "chi-f7f9abdf.ogg"
  11756. },
  11757. "tag": {
  11758. "_attributes": {
  11759. "swac_text": "只好",
  11760. "swac_alphaidx": "zhǐhǎo",
  11761. "swac_pron_phon": "zhǐhǎo"
  11762. }
  11763. }
  11764. },
  11765. {
  11766. "_attributes": {
  11767. "path": "chi-f81a1ea7.ogg"
  11768. },
  11769. "tag": {
  11770. "_attributes": {
  11771. "swac_text": "有的",
  11772. "swac_alphaidx": "yǒude",
  11773. "swac_pron_phon": "yǒude"
  11774. }
  11775. }
  11776. },
  11777. {
  11778. "_attributes": {
  11779. "path": "chi-f81af744.ogg"
  11780. },
  11781. "tag": {
  11782. "_attributes": {
  11783. "swac_text": "妹妹",
  11784. "swac_alphaidx": "mèimei",
  11785. "swac_pron_phon": "mèimei"
  11786. }
  11787. }
  11788. },
  11789. {
  11790. "_attributes": {
  11791. "path": "chi-f873ec0d.ogg"
  11792. },
  11793. "tag": {
  11794. "_attributes": {
  11795. "swac_text": "下课",
  11796. "swac_alphaidx": "xiàkè",
  11797. "swac_pron_phon": "xiàkè"
  11798. }
  11799. }
  11800. },
  11801. {
  11802. "_attributes": {
  11803. "path": "chi-f8c71a31.ogg"
  11804. },
  11805. "tag": {
  11806. "_attributes": {
  11807. "swac_text": "明天",
  11808. "swac_alphaidx": "míngtiān",
  11809. "swac_pron_phon": "míngtiān"
  11810. }
  11811. }
  11812. },
  11813. {
  11814. "_attributes": {
  11815. "path": "chi-f98bf5b3.ogg"
  11816. },
  11817. "tag": {
  11818. "_attributes": {
  11819. "swac_text": "袜子",
  11820. "swac_alphaidx": "wàzi",
  11821. "swac_pron_phon": "wàzi"
  11822. }
  11823. }
  11824. },
  11825. {
  11826. "_attributes": {
  11827. "path": "chi-faa2895b.ogg"
  11828. },
  11829. "tag": {
  11830. "_attributes": {
  11831. "swac_text": "啤酒",
  11832. "swac_alphaidx": "píjiǔ",
  11833. "swac_pron_phon": "píjiǔ"
  11834. }
  11835. }
  11836. },
  11837. {
  11838. "_attributes": {
  11839. "path": "chi-fac1d40c.ogg"
  11840. },
  11841. "tag": {
  11842. "_attributes": {
  11843. "swac_text": "开",
  11844. "swac_alphaidx": "kāi",
  11845. "swac_pron_phon": "kāi"
  11846. }
  11847. }
  11848. },
  11849. {
  11850. "_attributes": {
  11851. "path": "chi-facbd28d.ogg"
  11852. },
  11853. "tag": {
  11854. "_attributes": {
  11855. "swac_text": "地",
  11856. "swac_alphaidx": "de",
  11857. "swac_pron_phon": "de"
  11858. }
  11859. }
  11860. },
  11861. {
  11862. "_attributes": {
  11863. "path": "chi-fba5fb8c.ogg"
  11864. },
  11865. "tag": {
  11866. "_attributes": {
  11867. "swac_text": "谢谢",
  11868. "swac_alphaidx": "xièxie",
  11869. "swac_pron_phon": "xièxie"
  11870. }
  11871. }
  11872. },
  11873. {
  11874. "_attributes": {
  11875. "path": "chi-fbfcf3ca.ogg"
  11876. },
  11877. "tag": {
  11878. "_attributes": {
  11879. "swac_text": "道理",
  11880. "swac_alphaidx": "dàolǐ",
  11881. "swac_pron_phon": "dàolǐ"
  11882. }
  11883. }
  11884. },
  11885. {
  11886. "_attributes": {
  11887. "path": "chi-fc057198.ogg"
  11888. },
  11889. "tag": {
  11890. "_attributes": {
  11891. "swac_text": "声",
  11892. "swac_alphaidx": "shēng",
  11893. "swac_pron_phon": "shēng"
  11894. }
  11895. }
  11896. },
  11897. {
  11898. "_attributes": {
  11899. "path": "chi-fd324b9e.ogg"
  11900. },
  11901. "tag": {
  11902. "_attributes": {
  11903. "swac_text": "参观",
  11904. "swac_alphaidx": "cānguān",
  11905. "swac_pron_phon": "cānguān"
  11906. }
  11907. }
  11908. },
  11909. {
  11910. "_attributes": {
  11911. "path": "chi-fd615177.ogg"
  11912. },
  11913. "tag": {
  11914. "_attributes": {
  11915. "swac_text": "情况",
  11916. "swac_alphaidx": "qíngkuàng",
  11917. "swac_pron_phon": "qíngkuàng"
  11918. }
  11919. }
  11920. },
  11921. {
  11922. "_attributes": {
  11923. "path": "chi-fde4e8ab.ogg"
  11924. },
  11925. "tag": {
  11926. "_attributes": {
  11927. "swac_text": "们",
  11928. "swac_alphaidx": "men",
  11929. "swac_pron_phon": "men"
  11930. }
  11931. }
  11932. },
  11933. {
  11934. "_attributes": {
  11935. "path": "chi-fdf5c767.ogg"
  11936. },
  11937. "tag": {
  11938. "_attributes": {
  11939. "swac_text": "城市",
  11940. "swac_alphaidx": "chéngshì",
  11941. "swac_pron_phon": "chéngshì"
  11942. }
  11943. }
  11944. },
  11945. {
  11946. "_attributes": {
  11947. "path": "chi-fe1e1dc5.ogg"
  11948. },
  11949. "tag": {
  11950. "_attributes": {
  11951. "swac_text": "心",
  11952. "swac_alphaidx": "xīn",
  11953. "swac_pron_phon": "xīn"
  11954. }
  11955. }
  11956. },
  11957. {
  11958. "_attributes": {
  11959. "path": "chi-fe61d623.ogg"
  11960. },
  11961. "tag": {
  11962. "_attributes": {
  11963. "swac_text": "夫人",
  11964. "swac_alphaidx": "fūren",
  11965. "swac_pron_phon": "fūren"
  11966. }
  11967. }
  11968. },
  11969. {
  11970. "_attributes": {
  11971. "path": "chi-fe8412c8.ogg"
  11972. },
  11973. "tag": {
  11974. "_attributes": {
  11975. "swac_text": "辛苦",
  11976. "swac_alphaidx": "xīnkǔ",
  11977. "swac_pron_phon": "xīnkǔ"
  11978. }
  11979. }
  11980. },
  11981. {
  11982. "_attributes": {
  11983. "path": "chi-fe91ae2e.ogg"
  11984. },
  11985. "tag": {
  11986. "_attributes": {
  11987. "swac_text": "右",
  11988. "swac_alphaidx": "yòu",
  11989. "swac_pron_phon": "yòu"
  11990. }
  11991. }
  11992. },
  11993. {
  11994. "_attributes": {
  11995. "path": "chi-febec77a.ogg"
  11996. },
  11997. "tag": {
  11998. "_attributes": {
  11999. "swac_text": "农民",
  12000. "swac_alphaidx": "nóngmín",
  12001. "swac_pron_phon": "nóngmín"
  12002. }
  12003. }
  12004. },
  12005. {
  12006. "_attributes": {
  12007. "path": "chi-ff561785.ogg"
  12008. },
  12009. "tag": {
  12010. "_attributes": {
  12011. "swac_text": "汽车",
  12012. "swac_alphaidx": "qìchē",
  12013. "swac_pron_phon": "qìchē"
  12014. }
  12015. }
  12016. },
  12017. {
  12018. "_attributes": {
  12019. "path": "chi-ffdd8716.ogg"
  12020. },
  12021. "tag": {
  12022. "_attributes": {
  12023. "swac_text": "好看",
  12024. "swac_alphaidx": "hǎokàn",
  12025. "swac_pron_phon": "hǎokàn"
  12026. }
  12027. }
  12028. }
  12029. ]
  12030. }
  12031. }
  12032. }