| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290 |
- {
- "createdAt": "2026-09-01T04:58:35.478Z",
- "note": "所有目标表写入前、事务锁定后的完整备份",
- "targetMiaoguoBookIds": [
- 49,
- 7,
- 37,
- 51,
- 9,
- 39,
- 11,
- 41,
- 291,
- 299
- ],
- "targetHanziBookIds": [
- 67,
- 19,
- 49,
- 69,
- 21,
- 51,
- 23,
- 53
- ],
- "targetEnglishBookIds": [
- 197,
- 205
- ],
- "books": [
- {
- "ID": 7,
- "BookIDOld": 19,
- "Category": "语文",
- "LibraryName1": "四年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "写字",
- "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
- "WordType": "汉字",
- "UnitNum": 20,
- "StartID": 0,
- "WordNum": 250,
- "BookImageName": "g4F",
- "KnowledgeImageName": "xz",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
- "Sort": 40,
- "Flag": 0
- },
- {
- "ID": 9,
- "BookIDOld": 21,
- "Category": "语文",
- "LibraryName1": "五年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "写字",
- "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
- "WordType": "汉字",
- "UnitNum": 20,
- "StartID": 0,
- "WordNum": 220,
- "BookImageName": "g5F",
- "KnowledgeImageName": "xz",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
- "Sort": 50,
- "Flag": 0
- },
- {
- "ID": 11,
- "BookIDOld": 23,
- "Category": "语文",
- "LibraryName1": "六年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "写字",
- "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
- "WordType": "汉字",
- "UnitNum": 18,
- "StartID": 0,
- "WordNum": 180,
- "BookImageName": "g6F",
- "KnowledgeImageName": "xz",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
- "Sort": 61,
- "Flag": 0
- },
- {
- "ID": 37,
- "BookIDOld": 49,
- "Category": "语文",
- "LibraryName1": "四年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "词语",
- "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
- "WordType": "词语",
- "UnitNum": 16,
- "StartID": 0,
- "WordNum": 240,
- "BookImageName": "g4F",
- "KnowledgeImageName": "cy",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
- "Sort": 42,
- "Flag": 0
- },
- {
- "ID": 39,
- "BookIDOld": 51,
- "Category": "语文",
- "LibraryName1": "五年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "词语",
- "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
- "WordType": "词语",
- "UnitNum": 16,
- "StartID": 0,
- "WordNum": 222,
- "BookImageName": "g5F",
- "KnowledgeImageName": "cy",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
- "Sort": 52,
- "Flag": 0
- },
- {
- "ID": 41,
- "BookIDOld": 53,
- "Category": "语文",
- "LibraryName1": "六年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "词语",
- "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
- "WordType": "词语",
- "UnitNum": 14,
- "StartID": 0,
- "WordNum": 224,
- "BookImageName": "g6F",
- "KnowledgeImageName": "cy",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
- "Sort": 62,
- "Flag": 0
- },
- {
- "ID": 49,
- "BookIDOld": 67,
- "Category": "语文",
- "LibraryName1": "四年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "识字",
- "Remark": "二类字。这些汉字要求会读,知道含义,不要求书写,为逐步积累汉字量,提高阅读水平打下基础。",
- "WordType": "汉字",
- "UnitNum": 31,
- "StartID": 0,
- "WordNum": 270,
- "BookImageName": "g4F",
- "KnowledgeImageName": "sz",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
- "Sort": 41,
- "Flag": 0
- },
- {
- "ID": 51,
- "BookIDOld": 69,
- "Category": "语文",
- "LibraryName1": "五年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "识字",
- "Remark": "二类字。这些汉字要求会读,知道含义,不要求书写,为逐步积累汉字量,提高阅读水平打下基础。",
- "WordType": "汉字",
- "UnitNum": 26,
- "StartID": 0,
- "WordNum": 217,
- "BookImageName": "g5F",
- "KnowledgeImageName": "sz",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
- "Sort": 51,
- "Flag": 0
- },
- {
- "ID": 291,
- "BookIDOld": 197,
- "Category": "English",
- "LibraryName1": "六年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "单元词汇",
- "Remark": "适合小学年龄段,掌握核心词汇,提分快准狠。",
- "WordType": "单词",
- "UnitNum": 6,
- "StartID": 0,
- "WordNum": 147,
- "BookImageName": "rjPep-g6F",
- "KnowledgeImageName": "weu",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念单词说含义\",\"C\":0,\"Img\":\"picJygs_13\",\"Remark\":\"题目为单词,答出它的发音,配释义等信息。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写单词\",\"C\":0,\"Img\":\"picJygs_14\",\"Remark\":\"题目为单词发音和释义,写出单词。\"}]",
- "Sort": 1,
- "Flag": 0
- },
- {
- "ID": 299,
- "BookIDOld": 205,
- "Category": "English",
- "LibraryName1": "六年级",
- "LibraryName2": "上学期",
- "Grade": "小学",
- "Category2": "课本",
- "BookName": "常用表达法",
- "Remark": "适合小学年龄段,掌握核心表达方法。",
- "WordType": "句子",
- "UnitNum": 6,
- "StartID": 0,
- "WordNum": 39,
- "BookImageName": "rjPep-g6F",
- "KnowledgeImageName": "ue",
- "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念句子说含义\",\"C\":0,\"Img\":\"picJygs_13\",\"Remark\":\"题目为句子,答出它的发音,配释义等信息。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"默写句子\",\"C\":0,\"Img\":\"picJygs_14\",\"Remark\":\"题目为英文句子发音和释义,写出英文句子。\"}]",
- "Sort": 2,
- "Flag": 0
- }
- ],
- "hanziRows": [
- {
- "ID": 226,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文1",
- "Example": "潮据堤阔盼滚顿逐渐堵犹崩震霎余",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 227,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文2",
- "Example": "淘牵鹅卵坑洼填庄稼俗跃葡萄稻熟",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 228,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文5",
- "Example": "豌按舒适暗恐僵硬枪耐探愉曾沟溢",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 229,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文6",
- "Example": "蚊弄科横竖绳系蝇证复研究达驾驶",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 230,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文7",
- "Example": "唤纪技改程超亿核奥益联质哲任善",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 231,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文9",
- "Example": "暮吟题侧峰庐缘降费须逊输",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 232,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文10",
- "Example": "虎操占嫩顺均叠隙茎柄萎瞧固",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 233,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文11",
- "Example": "宅临慎选择址良穴厅卧专即较",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 234,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文12",
- "Example": "睁翻斧劈缓浊丈撑竭累液奔茂滋",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 235,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文13",
- "Example": "日溺返衔",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 236,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文14",
- "Example": "悲惨兽佩坚违抗环锁既狠著愤获",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 237,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文16",
- "Example": "嗅呆奈巢齿躯掩护幼搏庞量愣",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 238,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文17",
- "Example": "级链颤攀猴念辫呵",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 239,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文18",
- "Example": "摸甚跪捶绕顽脖脱概惹昏握摔凭掐",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 240,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文19",
- "Example": "班鼓殷俩练套裤逃亏挖撤堂砸锅",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 241,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文20",
- "Example": "否旋况败椅尤恨帅预溃品丑豪",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 242,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文21",
- "Example": "塞秦征词催醉杰亦雄项",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 243,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文22",
- "Example": "肃默晰振胸怀赞效凡顾训斥",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 244,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文25",
- "Example": "戎尝诸竞唯",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 245,
- "HanziBookID": 19,
- "UnitType": 5,
- "Name": "课文26",
- "Example": "豹派娶媳妇淹逼浮旱徒扔饶骗灌溉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 266,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文1",
- "Example": "宜鹤嫌朱嵌框匣嗜哨恩韵",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 267,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文2",
- "Example": "亩播浇吩咐亭榨慕矮谈",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 268,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文3",
- "Example": "懂兰箩婆糕饼浸缠茶捡",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 269,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文5",
- "Example": "汛洪访鞋挽隔懒惰稳免衡协绰",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 270,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文6",
- "Example": "召臣议缺宫献诺典承抄罪怯拒荆",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 271,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文7",
- "Example": "冠俯喷枚箭浩筒束赤圈置",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 272,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文8",
- "Example": "侵略筑堡党丘妨蔽陷拐",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 273,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文9",
- "Example": "酬珍叮嘱塌焦誓谎延灾悔扶",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 274,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文10",
- "Example": "郎爹嫂辆歹罕纱妻趟托溜婚辈挨",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 275,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文12",
- "Example": "祭乃熏杭亥恃哀拘",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 276,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文13",
- "Example": "泻潜试胎皇履纵疆",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 277,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文14",
- "Example": "毁估损拱辉煌殿陵览境宏唐闯统销奉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 278,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文16",
- "Example": "摄氏殖粮炭区杀菌疗",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 279,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文17",
- "Example": "鼠秀玲珑帽尾歇窝滑拾狭勉梳",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 280,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文18",
- "Example": "辞抑碌吊酷暑噪脊罩竟哇忍械酸权",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 281,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文19",
- "Example": "蚕考疼席糖屑迪钉陪毕煮枕",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 282,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文21",
- "Example": "孙泊愁寺畔",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 284,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文22",
- "Example": "桨榕纠耀桩涨塔梢暇眉抛",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 285,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文24",
- "Example": "耻诲谓诵岂",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 286,
- "HanziBookID": 21,
- "UnitType": 5,
- "Name": "课文25",
- "Example": "舅津斩限凯葛述贾衰统刊琐朴某",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 315,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文1",
- "Example": "毯玻璃裳虹蹄腐稍微",
- "IsLocked": 0,
- "OrderID": 0
- },
- {
- "ID": 316,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文2",
- "Example": "缀窥幽雅案拙帘薄糊蕾恰襟恍怨",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 317,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文3",
- "Example": "德鹊蝉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 318,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文5",
- "Example": "律崖渡索",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 319,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文6",
- "Example": "寇副榴抡贯棋悬沸涧雹屹悦迈屈",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 320,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文7",
- "Example": "政府宾盏栏汇宣阅制坦距隆",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 321,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文10",
- "Example": "疙瘩棍裁筹橡雕跺颓沮丧趴屉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 322,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文11",
- "Example": "谜尚氧倾揭斑燥漠磁素盗培",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 323,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文13",
- "Example": "黎咆哮嗓哑揪瞪呻废",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 324,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文14",
- "Example": "汹涌澎湃熄掀困唉淋嘿糟嘛皱勺",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 325,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文16",
- "Example": "棚粱叭苔藓坪蔗瀑增缝谚",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 326,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文17",
- "Example": "袖篷缩疯瓦柜喧甩嚷蒜酱唇蹦",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 327,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文18",
- "Example": "涯莺",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 328,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文19",
- "Example": "莹裹篮蔼资矿慷慨贡滥基睹",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 329,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文22",
- "Example": "哉巍弦轴锦曝矣",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 330,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文23",
- "Example": "谱莱茵盲纯键缕陶",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 331,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文25",
- "Example": "郑拜租厨毡羞撒缚猬伶俐窜",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 332,
- "HanziBookID": 23,
- "UnitType": 5,
- "Name": "课文26",
- "Example": "搁综澄萍漾削瞬凝骤掷陡",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 475,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文1",
- "Example": "奇观,农历,据说,宽阔,人山人海,滚动,顿时,逐渐,犹如,齐头并进,山崩地裂,霎时,余波,依旧",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 476,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文2",
- "Example": "柔和,鹅卵石,河床,新鲜,修补,坑坑洼洼,庄稼,风俗,葡萄,满意,水稻,成熟,招待,传说",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 477,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文5",
- "Example": "豌豆,按照,暖洋洋,舒适,黑暗,恐怕,僵硬,丰满,等待,强壮,虚弱,耐心,愉快,兴奋,曾经,水沟,洋溢,感激",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 478,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文6",
- "Example": "蚊子,灵巧,科学家,横七竖八,绳子,苍蝇,证明,反复,研究,雷达,显示,驾驶员",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 479,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文7",
- "Example": "呼风唤雨,世纪,技术,改变,程度,超过,腾云驾雾,幻想,原子核,奥秘,日益,联系,物质,哲学,任何,创造,改善",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 480,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文10",
- "Example": "爬山虎,操场,嫩红,舒服,均匀,重叠,空隙,叶柄,反面,触角,弯曲,细小,痕迹,瞧不起,牢固,休想",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 481,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文11",
- "Example": "住宅,临时,功夫,随遇而安,慎重,选择,住址,优良,洞穴,大厅,卧室,专家,即使,平整,清洁,卫生,疲劳",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 482,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文12",
- "Example": "睁眼,黑乎乎,翻身,斧头,缓缓,上升,下降,精疲力竭,血液,奔流不息,汗毛,茂盛,滋润,雨露",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 483,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文14",
- "Example": "人间,悲惨,情景,危害,猛兽,严厉,敬佩,悄悄,坚定,违抗,狠心,尖利,著名,愤愤不平,获得",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 484,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文16",
- "Example": "打猎,猛烈,无可奈何,拍打,嘴角,分明,牙齿,绝望,尖叫,身躯,掩护,幼儿,搏斗,庞大,安然,强大,力量",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 485,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文17",
- "Example": "假日,云彩,石级,发颤,年纪,奋力,猴子,纪念,辫子,笑呵呵,鼓舞,居然",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 486,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文18",
- "Example": "甚至,顽皮,故意,脖子,扑打,忙乱,大概,助威,昏乱,结实,汉子,可笑,无缘无故,平白",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 487,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文19",
- "Example": "文艺,表演,班级,鼓掌,角色,殷切,期待,排练,危机,通情达理,充分,自信,提示,撤换,紧张,哄堂大笑,砸锅,至今",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 488,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文20",
- "Example": "冰天雪地,否则,旋转,重整旗鼓,况且,得心应手,椅子,尤其,手舞足蹈,恨不得,预料,不动声色,顽强,溃败,自豪",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 489,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文22",
- "Example": "严肃,默默,清晰,抱负,胸怀,赞叹,表情,忘怀,果真,非凡,左顾右盼,指望,训斥,体会,分量,响亮",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 490,
- "HanziBookID": 49,
- "UnitType": 2,
- "Name": "课文26",
- "Example": "管理,人烟,媳妇,新娘,眼睁睁,干旱,迎接,徒弟,面如土色,求饶,灌溉,收成",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 507,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文1",
- "Example": "精巧,配合,身段,适宜,白鹤,生硬,寻常,忘却,镜匣,孤独,悠然,嗜好,黄昏,恩惠,美中不足",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 508,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文2",
- "Example": "播种,浇水,吩咐,榨油,爱慕,体面",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 509,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文3",
- "Example": "桂花,懂得,糕饼,茶叶",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 510,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文5",
- "Example": "汛期,山洪,暴发,间隔,唯独,懒惰,平稳,难免,保持,平衡,协调,美感,示意,家常,假如,理所当然,联结",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 511,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文6",
- "Example": "无价之宝,召集,大臣,商议,解决,完好无缺,称赞,商量,允诺,典礼,承诺,得罪,胆怯,示弱,拒绝,职位,同心协力",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 512,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文7",
- "Example": "猎豹,冠军,陆地,俯冲,高速公路,搭乘,火箭,发动机,手电筒,赤道,难以置信",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 513,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文8",
- "Example": "侵略,修筑,粉碎,领导,不计其数,打击,坚持,游击,隐蔽,陷坑,拐弯,无穷无尽",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 514,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文9",
- "Example": "猎物,酬谢,珍宝,叮嘱,复活,议论,崩塌,焦急,发誓,千真万确,谎话,迟延,灾难,镇定,后悔,悲痛,震天动地",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 1035,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文10",
- "Example": "嫂子,剩饭,床铺,亲密,笑嘻嘻,成家立业,好歹,稀罕,妻子,晚霞,一辈子,结婚,相依为命",
- "IsLocked": 1,
- "OrderID": 1
- },
- {
- "ID": 515,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文14",
- "Example": "毁灭,不可估量,损失,举世闻名,众星拱月,金碧辉煌,殿堂,象征,仿照,诗情画意,建筑,漫游,天南海北,饱览,风景名胜,境界,宏伟,奇珍异宝,博物馆,搬运,销毁,罪证,奉命",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 516,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文16",
- "Example": "寸草不生,摄氏度,繁殖,粮食,煤炭,飘浮,地区,杀菌,治疗",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 517,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文17",
- "Example": "松鼠,乖巧,清秀,玲珑,尾巴,歇凉,追逐,警觉,触动,光滑,狭窄,勉强,脱落,梳理",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 518,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文18",
- "Example": "长篇,连续,广播,铁路,辞退,挣钱,压抑,潮湿,忙碌,阴暗,酷暑,炎夏,噪声,瘦弱,脊背,口罩,忍心,机械,数落,权利",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 519,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文19",
- "Example": "渔船,报考,教训,心疼,席子,庙会,彩排,糖果,抽象,启迪,毕业,寄宿,师范,路费,轮换,领略,意境,磨灭,精致",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 521,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文22",
- "Example": "陆续,白茫茫,榕树,纠正,不可计数,照耀,涨潮,树梢,应接不暇,画眉",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 522,
- "HanziBookID": 51,
- "UnitType": 2,
- "Name": "课文25",
- "Example": "舅父,津津有味,英雄,无限,一知半解,述说,厌烦,荒唐,辛酸,访问,书刊,烦琐,真情实感,质朴,刊物",
- "IsLocked": 1,
- "OrderID": 2
- },
- {
- "ID": 535,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文1",
- "Example": "绿毯,线条,柔美,惊叹,回味,目的地,洒脱,玻璃,衣裳,彩虹,马蹄,热乎乎,礼貌,拘束,举杯,感人,会心,微笑",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 536,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文2",
- "Example": "宅院,幽雅,伏案,浑浊,笨拙,眼帘,参差,单薄,文思,梦想,迷蒙,模糊,花蕾,恰如,衣襟,恍然,愁怨,顺心,平淡",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 537,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文6",
- "Example": "日寇,奋战,险要,手榴弹,全神贯注,悬崖,斩钉截铁,热血沸腾,攀登,居高临下,山涧,粉身碎骨,雹子,屹立,眺望,喜悦,壮烈,豪迈,不屈",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 538,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文7",
- "Example": "政府,外宾,汇集,预定,爆发,排山倒海,就位,宣告,雄伟,肃静,语调,完毕,检阅,制服,坦克,一致,距离,高潮,次序",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 539,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文10",
- "Example": "疙瘩,疲倦,呆头呆脑,冰棍,别出心裁,技高一筹,橡皮,跺脚,大步流星,颓然,暴露无遗,沮丧,抽屉,念念有词,忘乎所以,心满意足",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 540,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文11",
- "Example": "发达,理论,类似,猜测,起源,适当,氧气,提供,能源,昼夜,神秘,观测,拍摄,斑点,枯萎,干燥,沙漠,磁场,因素,考察,培养",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 541,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文13",
- "Example": "黎明,咆哮,惊慌,嗓子,跌跌撞撞,拥戴,沙哑,党员,呻吟,废话,吞没,猛然",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 542,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文14",
- "Example": "渔夫,汹涌澎湃,风暴,轰鸣,心惊肉跳,抱怨,倾听,探望,照顾,困难,阴冷,自作自受,湿淋淋,渔网,糟糕,忧虑,后脑勺",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 543,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文16",
- "Example": "活生生,高粱,苔藓,草坪,甘蔗,瀑布,增加,缝隙,软绵绵,谚语,农作物,尽量",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 544,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文17",
- "Example": "斗篷,情况,袖子,瓦蓝,衣柜,预报,喧闹,遮盖,讲座,酱油,逗引,嘴唇",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 545,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文19",
- "Example": "晶莹,摇篮,壮观,和蔼,资源,有限,矿产,无私,慷慨,节制,枯竭,贡献,毁坏,滥用,生态,设想,例如,基地,目睹,子孙",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 546,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文23",
- "Example": "谱写,钢琴,幽静,断断续续,茅屋,失明,纯熟,清幽,琴键,景象,陶醉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 547,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文25",
- "Example": "一望无际,家景,郑重,供品,祭器,讲究,盼望,厨房,毡帽,项圈,刺猬,伶俐,经历,潮汛",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 548,
- "HanziBookID": 53,
- "UnitType": 2,
- "Name": "课文26",
- "Example": "预告,昏沉,错综,澄碧,荡漾,解散,退缩,瘦削,浮动,瞬间,凝视,骤然,凌乱,陡然",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 669,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文1",
- "Example": "盐薄屹昂鼎沸贯浩崩震霎余恢",
- "IsLocked": 0,
- "OrderID": 0
- },
- {
- "ID": 670,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文2",
- "Example": "鹅卵俗跃穗镀埂烁",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 671,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文3",
- "Example": "巢苇罗霸占",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 672,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文4",
- "Example": "昧坠怀",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 673,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文5",
- "Example": "豌僵预揭苔囚框溢",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 674,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文6",
- "Example": "蝙蝠即锐系铛蝇证障碍荧屏",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 675,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文7",
- "Example": "唤纪获赖潜亿索奥舶质哲",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 676,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文8",
- "Example": "避撼喧雀檐",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 677,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "语文园地一",
- "Example": "驻钞培赌媒氛账贺樟杠狡猾",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 678,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文9",
- "Example": "暮瑟缘降骚逊输",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 679,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文10",
- "Example": "均柄蜗曲萎",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 680,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文11",
- "Example": "宅隐毫慎址良掘搜倾骤置抛",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 681,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文12",
- "Example": "劈缓浊丈隆肢躯液",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 682,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文13",
- "Example": "少曰溺返",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 683,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文14",
- "Example": "斯惨盗驰恕押锁遭恶脏愤砸",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 684,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文15",
- "Example": "洪措混项熄浆塌窜颂绩",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 685,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "语文园地二",
- "Example": "圃卉蕾蕊玫茉莉牡丹棠",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 686,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文16",
- "Example": "嗅奈拯嘶哑庞",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 687,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文17",
- "Example": "级链攀相辫呵",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 688,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文18",
- "Example": "谓拳捶顽吁襟膊瓶怖凭欺掐",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 689,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文19",
- "Example": "囊露羡角殷盔撇啊霉亏哄拙唉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 690,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文20",
- "Example": "钉况兵败恨帅彻溃誉丑豪",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 691,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "语文园地三",
- "Example": "韭芹蒜椒藕薯芋",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 692,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文21",
- "Example": "塞秦征将杰",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 693,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文22",
- "Example": "崛范魏晰效淮惑惩训斥难",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 694,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文23",
- "Example": "蓄迫租纠缠邀港扰拒签订宁要妄",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 695,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文24",
- "Example": "延昔茅炕旦媚",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 696,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文25",
- "Example": "戎诸竞唯",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 697,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文26",
- "Example": "豹娶媳巫绅旱徒吊磕凿溉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 698,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "课文27",
- "Example": "拜侯肤扎剂髓纪标",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 699,
- "HanziBookID": 67,
- "UnitType": 1,
- "Name": "语文园地四",
- "Example": "纲授揍键谱锈沫砖矿综氧俱",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 700,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文1",
- "Example": "鹭嫌嵌匣嗜",
- "IsLocked": 0,
- "OrderID": 0
- },
- {
- "ID": 701,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文2",
- "Example": "亩吩榨榴矮",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 702,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文3",
- "Example": "箩杭",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 703,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文4",
- "Example": "蔓幽悉雏哟柜享陪趴睑眸咂",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 704,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文5",
- "Example": "汛挽间惰衡协绰",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 705,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文6",
- "Example": "璧臣强诺划典罪廉抵御辞辱擅缶卿削袍",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 706,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文7",
- "Example": "鸵赢冠",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 707,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文8",
- "Example": "侵略垒任丘搁陷拐岔",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 708,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文9",
- "Example": "酬誓谎牺",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 709,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文10",
- "Example": "嫂恳筛歹罕梭监狱酿瞌落婚",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 710,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文11",
- "Example": "俭皇偎衰珊瑚礁筐拗",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 711,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文12",
- "Example": "乃熏亥恃擞",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 712,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文13",
- "Example": "泻鳞惶胎履哉",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 713,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文14",
- "Example": "估煌珑剔澜瑶陵宏奉烬",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 714,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文15",
- "Example": "瞒域艇矛盾筷炊哼喉咙哽勺搅舀",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 715,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文16",
- "Example": "摄殖炭疗",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 716,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文17",
- "Example": "驯矫歇杈藓狭勉锥",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 717,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文18",
- "Example": "魄抑颓纫噪褐惫耽兜权",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 718,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文19",
- "Example": "茧栈冤枉恍惚跷僻委迪嫁缴榜兼嘲枕",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 719,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文20",
- "Example": "腼腆誊励版祥歧谨",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 720,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文21",
- "Example": "榆畔更聒",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 721,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文22",
- "Example": "桨桩暇",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 722,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文23",
- "Example": "悄累嫦娥嫉妒瓷",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 723,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文24",
- "Example": "耻识寝矣岂",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 724,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文25",
- "Example": "舅宴斩凯葛述传鲁煞寇贾卷刊琐呻某",
- "IsLocked": 1,
- "OrderID": 0
- },
- {
- "ID": 725,
- "HanziBookID": 69,
- "UnitType": 1,
- "Name": "课文26",
- "Example": "喻差瘾奔籍饥偿甸悟馈磁酵皎鉴沥",
- "IsLocked": 1,
- "OrderID": 0
- }
- ],
- "englishRows": [
- {
- "ID": 83907,
- "Word": "science",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['salons]",
- "Translate": "科学",
- "EnglishExplanation": "{\"word\":\"science\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students are studying science in the laboratory.\",\"Translate\":\"学生们正在实验室里学习科学。\",\"Level\":\"A2\"},{\"Sentence\":\"She is interested in science and wants to be a scientist.\",\"Translate\":\"她对科学很感兴趣,想要成为一名科学家。\",\"Level\":\"A2\"},{\"Sentence\":\"The science experiment was a lot of fun.\",\"Translate\":\"这个科学实验很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The science behind climate change is complex.\",\"Translate\":\"气候变化背后的科学原理很复杂。\",\"Level\":\"B1\"},{\"Sentence\":\"The latest scientific discoveries have shed new light on the origins of the universe.\",\"Translate\":\"最新的科学发现为宇宙的起源带来了新的启示。\",\"Level\":\"C1\"},{\"Sentence\":\"The science of genetics has led to many breakthroughs in medicine.\",\"Translate\":\"遗传学为医学带来了许多突破。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"science\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students are studying science in the laboratory.\",\"Translate\":\"学生们正在实验室里学习科学。\",\"Level\":\"A2\"},{\"Sentence\":\"She is interested in science and wants to be a scientist.\",\"Translate\":\"她对科学很感兴趣,想要成为一名科学家。\",\"Level\":\"A2\"},{\"Sentence\":\"The science experiment was a lot of fun.\",\"Translate\":\"这个科学实验很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The science behind climate change is complex.\",\"Translate\":\"气候变化背后的科学原理很复杂。\",\"Level\":\"B1\"},{\"Sentence\":\"The latest scientific discoveries have shed new light on the origins of the universe.\",\"Translate\":\"最新的科学发现为宇宙的起源带来了新的启示。\",\"Level\":\"C1\"},{\"Sentence\":\"The science of genetics has led to many breakthroughs in medicine.\",\"Translate\":\"遗传学为医学带来了许多突破。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83908,
- "Word": "museum",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[mju'ziiom]",
- "Translate": "博物馆",
- "EnglishExplanation": "{\"word\":\"museum\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The museum is open on Sundays.\",\"Translate\":\"博物馆每周日开放。\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to the museum with my friends this weekend.\",\"Translate\":\"这个周末我要和朋友们去博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The museum has a vast collection of art from around the world.\",\"Translate\":\"这家博物馆拥有来自世界各地的丰富艺术藏品。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's new exhibit on modern art is fascinating.\",\"Translate\":\"博物馆的现代艺术新展览非常吸引人。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's curator has carefully selected the artifacts for the exhibition.\",\"Translate\":\"博物馆的馆长精心挑选了展览的文物。\",\"Level\":\"C1\"},{\"Sentence\":\"The museum's architecture is a work of art in itself, reflecting the cultural heritage of the city.\",\"Translate\":\"博物馆的建筑本身就是一件艺术品,反映了这座城市的文化遗产。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"museum\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The museum is open on Sundays.\",\"Translate\":\"博物馆每周日开放。\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to the museum with my friends this weekend.\",\"Translate\":\"这个周末我要和朋友们去博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The museum has a vast collection of art from around the world.\",\"Translate\":\"这家博物馆拥有来自世界各地的丰富艺术藏品。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's new exhibit on modern art is fascinating.\",\"Translate\":\"博物馆的现代艺术新展览非常吸引人。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's curator has carefully selected the artifacts for the exhibition.\",\"Translate\":\"博物馆的馆长精心挑选了展览的文物。\",\"Level\":\"C1\"},{\"Sentence\":\"The museum's architecture is a work of art in itself, reflecting the cultural heritage of the city.\",\"Translate\":\"博物馆的建筑本身就是一件艺术品,反映了这座城市的文化遗产。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83909,
- "Word": "post office",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['paustpfis]",
- "Translate": "邮局",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83910,
- "Word": "bookstore",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['buksto:(r)]",
- "Translate": "书店",
- "EnglishExplanation": "{\"word\":\"bookstore\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I bought a novel at the bookstore.\",\"Translate\":\"我在书店买了一本小说。\",\"Level\":\"A2\"},{\"Sentence\":\"The new bookstore in town has a wide selection of books.\",\"Translate\":\"镇上新开的书店有很丰富的书籍选择。\",\"Level\":\"B1\"},{\"Sentence\":\"After browsing through the shelves for hours, she finally found a rare book at the local bookstore.\",\"Translate\":\"在书架上浏览了几个小时后,她终于在当地的书店找到了这本罕见的书。\",\"Level\":\"B2\"},{\"Sentence\":\"The used bookstore was a treasure trove for collectors, offering a vast array of out-of-print titles.\",\"Translate\":\"这家二手书店是收藏家的宝库,提供了大量绝版书。\",\"Level\":\"C1\"},{\"Sentence\":\"The bookstore's annual literary festival attracted renowned authors from around the world.\",\"Translate\":\"书店一年一度的文学节吸引了来自世界各地的知名作家。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"bookstore\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I bought a novel at the bookstore.\",\"Translate\":\"我在书店买了一本小说。\",\"Level\":\"A2\"},{\"Sentence\":\"The new bookstore in town has a wide selection of books.\",\"Translate\":\"镇上新开的书店有很丰富的书籍选择。\",\"Level\":\"B1\"},{\"Sentence\":\"After browsing through the shelves for hours, she finally found a rare book at the local bookstore.\",\"Translate\":\"在书架上浏览了几个小时后,她终于在当地的书店找到了这本罕见的书。\",\"Level\":\"B2\"},{\"Sentence\":\"The used bookstore was a treasure trove for collectors, offering a vast array of out-of-print titles.\",\"Translate\":\"这家二手书店是收藏家的宝库,提供了大量绝版书。\",\"Level\":\"C1\"},{\"Sentence\":\"The bookstore's annual literary festival attracted renowned authors from around the world.\",\"Translate\":\"书店一年一度的文学节吸引了来自世界各地的知名作家。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83911,
- "Word": "cinema",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['sinama]",
- "Translate": "电影院",
- "EnglishExplanation": "{\"word\":\"cinema\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The new cinema is very big.\",\"Translate\":\"新的电影院非常大。\",\"Level\":\"A2\"},{\"Sentence\":\"Let's go to the cinema tonight.\",\"Translate\":\"今晚我们去电影院吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The cinema is showing a new film.\",\"Translate\":\"电影院正在上映一部新电影。\",\"Level\":\"B1\"},{\"Sentence\":\"The cinema has a great sound system.\",\"Translate\":\"这家电影院有很好的音响系统。\",\"Level\":\"B1\"},{\"Sentence\":\"The art cinema shows independent films.\",\"Translate\":\"艺术电影院放映独立电影。\",\"Level\":\"C1\"},{\"Sentence\":\"The cinema is a popular cultural venue.\",\"Translate\":\"电影院是一个受欢迎的文化场所。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"cinema\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The new cinema is very big.\",\"Translate\":\"新的电影院非常大。\",\"Level\":\"A2\"},{\"Sentence\":\"Let's go to the cinema tonight.\",\"Translate\":\"今晚我们去电影院吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The cinema is showing a new film.\",\"Translate\":\"电影院正在上映一部新电影。\",\"Level\":\"B1\"},{\"Sentence\":\"The cinema has a great sound system.\",\"Translate\":\"这家电影院有很好的音响系统。\",\"Level\":\"B1\"},{\"Sentence\":\"The art cinema shows independent films.\",\"Translate\":\"艺术电影院放映独立电影。\",\"Level\":\"C1\"},{\"Sentence\":\"The cinema is a popular cultural venue.\",\"Translate\":\"电影院是一个受欢迎的文化场所。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83912,
- "Word": "hospital",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[\"hpspitl]",
- "Translate": "医院",
- "EnglishExplanation": "{\"word\":\"hospital\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The hospital is nearby.\",\"Translate\":\"医院就在附近。\",\"Level\":\"A1\"},{\"Sentence\":\"She works at the hospital.\",\"Translate\":\"她在医院工作。\",\"Level\":\"A1\"},{\"Sentence\":\"The hospital has many departments.\",\"Translate\":\"这家医院有很多科室。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is very clean.\",\"Translate\":\"这家医院很干净。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is equipped with advanced medical equipment.\",\"Translate\":\"这家医院配备了先进的医疗设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After the accident, she was rushed to the hospital.\",\"Translate\":\"事故发生后,她被紧急送往医院。\",\"Level\":\"B1\"},{\"Sentence\":\"The hospital has implemented various measures to improve patient care.\",\"Translate\":\"医院实施了各种措施来改善对患者的护理。\",\"Level\":\"B2\"},{\"Sentence\":\"The new hospital will be a major improvement over the old one.\",\"Translate\":\"新医院将比旧医院有很大改进。\",\"Level\":\"B2\"},{\"Sentence\":\"The hospital's management team is working to reduce waiting times.\",\"Translate\":\"医院管理团队正在努力减少等待时间。\",\"Level\":\"C1\"},{\"Sentence\":\"The hospital'",
- "ExampleSentence": "{\"word\":\"hospital\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The hospital is nearby.\",\"Translate\":\"医院就在附近。\",\"Level\":\"A1\"},{\"Sentence\":\"She works at the hospital.\",\"Translate\":\"她在医院工作。\",\"Level\":\"A1\"},{\"Sentence\":\"The hospital has many departments.\",\"Translate\":\"这家医院有很多科室。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is very clean.\",\"Translate\":\"这家医院很干净。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is equipped with advanced medical equipment.\",\"Translate\":\"这家医院配备了先进的医疗设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After the accident, she was rushed to the hospital.\",\"Translate\":\"事故发生后,她被紧急送往医院。\",\"Level\":\"B1\"},{\"Sentence\":\"The hospital has implemented various measures to improve patient care.\",\"Translate\":\"医院实施了各种措施来改善对患者的护理。\",\"Level\":\"B2\"},{\"Sentence\":\"The new hospital will be a major improvement over the old one.\",\"Translate\":\"新医院将比旧医院有很大改进。\",\"Level\":\"B2\"},{\"Sentence\":\"The hospital's management team is working to reduce waiting times.\",\"Translate\":\"医院管理团队正在努力减少等待时间。\",\"Level\":\"C1\"},{\"Sentence\":\"The hospital's innovative approach to healthcare has attracted international attention.\",\"Translate\":\"这家医院在医疗保健方面的创新方法吸引了国际关注。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83913,
- "Word": "crossing",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[krpsin]",
- "Translate": "十字路口",
- "EnglishExplanation": "{\"word\":\"crossing\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Be careful when crossing the road.\",\"Translate\":\"过马路时要小心。\",\"Level\":\"A2\"},{\"Sentence\":\"The crossing was closed due to bad weather.\",\"Translate\":\"由于天气恶劣,渡口被关闭了。\",\"Level\":\"B1\"},{\"Sentence\":\"The pedestrian crossing is just ahead.\",\"Translate\":\"人行横道就在前面。\",\"Level\":\"B2\"},{\"Sentence\":\"The level crossing was blocked by a train.\",\"Translate\":\"平交道口被一辆火车堵住了。\",\"Level\":\"B2\"},{\"Sentence\":\"The climbers faced numerous challenges at the mountain crossing.\",\"Translate\":\"登山者在山脉交叉口面临着许多挑战。\",\"Level\":\"C1\"},{\"Sentence\":\"The border crossing was a complex operation.\",\"Translate\":\"边境口岸是一个复杂的操作。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"crossing\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Be careful when crossing the road.\",\"Translate\":\"过马路时要小心。\",\"Level\":\"A2\"},{\"Sentence\":\"The crossing was closed due to bad weather.\",\"Translate\":\"由于天气恶劣,渡口被关闭了。\",\"Level\":\"B1\"},{\"Sentence\":\"The pedestrian crossing is just ahead.\",\"Translate\":\"人行横道就在前面。\",\"Level\":\"B2\"},{\"Sentence\":\"The level crossing was blocked by a train.\",\"Translate\":\"平交道口被一辆火车堵住了。\",\"Level\":\"B2\"},{\"Sentence\":\"The climbers faced numerous challenges at the mountain crossing.\",\"Translate\":\"登山者在山脉交叉口面临着许多挑战。\",\"Level\":\"C1\"},{\"Sentence\":\"The border crossing was a complex operation.\",\"Translate\":\"边境口岸是一个复杂的操作。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83914,
- "Word": "turn",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[t3in]",
- "Translate": "转弯",
- "EnglishExplanation": "{\"word\":\"turn\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"It's my turn.\",\"Translate\":\"轮到我了。\",\"Level\":\"A1\"},{\"Sentence\":\"Whose turn is it?\",\"Translate\":\"轮到谁了?\",\"Level\":\"A1\"},{\"Sentence\":\"She turned 18 last year.\",\"Translate\":\"她去年满18岁了。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will turn a profit next year.\",\"Translate\":\"这家公司明年将盈利。\",\"Level\":\"B1\"},{\"Sentence\":\"The conversation turned to the topic of climate change.\",\"Translate\":\"谈话转到了气候变化的话题上。\",\"Level\":\"C1\"},{\"Sentence\":\"The scandal turned the politician's life upside down.\",\"Translate\":\"这桩丑闻使那位政治家的生活彻底颠覆了。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"turn\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"It's my turn.\",\"Translate\":\"轮到我了。\",\"Level\":\"A1\"},{\"Sentence\":\"Whose turn is it?\",\"Translate\":\"轮到谁了?\",\"Level\":\"A1\"},{\"Sentence\":\"She turned 18 last year.\",\"Translate\":\"她去年满18岁了。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will turn a profit next year.\",\"Translate\":\"这家公司明年将盈利。\",\"Level\":\"B1\"},{\"Sentence\":\"The conversation turned to the topic of climate change.\",\"Translate\":\"谈话转到了气候变化的话题上。\",\"Level\":\"C1\"},{\"Sentence\":\"The scandal turned the politician's life upside down.\",\"Translate\":\"这桩丑闻使那位政治家的生活彻底颠覆了。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83915,
- "Word": "left",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[left]",
- "Translate": "左",
- "EnglishExplanation": "{\"word\":\"left\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I have one book left.\",\"Translate\":\"我还剩下一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The shop is on the left side of the street.\",\"Translate\":\"这家店在街道的左边。\",\"Level\":\"A1\"},{\"Sentence\":\"She left her bag at home.\",\"Translate\":\"她把包忘在家里了。\",\"Level\":\"A2\"},{\"Sentence\":\"There's nothing left to eat.\",\"Translate\":\"没有剩下的食物可吃了。\",\"Level\":\"A2\"},{\"Sentence\":\"The decision left me feeling rather disappointed.\",\"Translate\":\"这个决定让我感到相当失望。\",\"Level\":\"B1\"},{\"Sentence\":\"The company left the market due to financial issues.\",\"Translate\":\"由于财务问题,这家公司退出了市场。\",\"Level\":\"B1\"},{\"Sentence\":\"The legacy she left behind is still celebrated today.\",\"Translate\":\"她留下的遗产至今仍被人们庆祝。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color left a lasting impression on the viewers.\",\"Translate\":\"艺术家的色彩运用给观众留下了深刻的印象。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"left\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I have one book left.\",\"Translate\":\"我还剩下一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The shop is on the left side of the street.\",\"Translate\":\"这家店在街道的左边。\",\"Level\":\"A1\"},{\"Sentence\":\"She left her bag at home.\",\"Translate\":\"她把包忘在家里了。\",\"Level\":\"A2\"},{\"Sentence\":\"There's nothing left to eat.\",\"Translate\":\"没有剩下的食物可吃了。\",\"Level\":\"A2\"},{\"Sentence\":\"The decision left me feeling rather disappointed.\",\"Translate\":\"这个决定让我感到相当失望。\",\"Level\":\"B1\"},{\"Sentence\":\"The company left the market due to financial issues.\",\"Translate\":\"由于财务问题,这家公司退出了市场。\",\"Level\":\"B1\"},{\"Sentence\":\"The legacy she left behind is still celebrated today.\",\"Translate\":\"她留下的遗产至今仍被人们庆祝。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color left a lasting impression on the viewers.\",\"Translate\":\"艺术家的色彩运用给观众留下了深刻的印象。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83916,
- "Word": "straight",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[streit]",
- "Translate": "笔直地",
- "EnglishExplanation": "{\"word\":\"straight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The road goes straight to the city center.\",\"Translate\":\"这条路直通市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"She has straight brown hair.\",\"Translate\":\"她有直的棕色头发。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit straight and listen carefully.\",\"Translate\":\"老师要求学生们坐直并认真听讲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been going straight for years without any major issues.\",\"Translate\":\"这家公司多年来一直运作正常,没有任何重大问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was determined to get straight to the truth.\",\"Translate\":\"侦探决心直接查明真相。\",\"Level\":\"C1\"},{\"Sentence\":\"After a few detours, we finally drove straight into the sunset.\",\"Translate\":\"经过几次绕路后,我们终于笔直地驶向夕阳。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"straight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The road goes straight to the city center.\",\"Translate\":\"这条路直通市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"She has straight brown hair.\",\"Translate\":\"她有直的棕色头发。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit straight and listen carefully.\",\"Translate\":\"老师要求学生们坐直并认真听讲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been going straight for years without any major issues.\",\"Translate\":\"这家公司多年来一直运作正常,没有任何重大问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was determined to get straight to the truth.\",\"Translate\":\"侦探决心直接查明真相。\",\"Level\":\"C1\"},{\"Sentence\":\"After a few detours, we finally drove straight into the sunset.\",\"Translate\":\"经过几次绕路后,我们终于笔直地驶向夕阳。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83917,
- "Word": "right",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[rat]",
- "Translate": "右",
- "EnglishExplanation": "{\"word\":\"right\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Turn right at the corner.\",\"Translate\":\"在拐角处右转。\",\"Level\":\"A1\"},{\"Sentence\":\"You are right.\",\"Translate\":\"你是对的。\",\"Level\":\"A1\"},{\"Sentence\":\"She has the right to say no.\",\"Translate\":\"她有权说不。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is doing everything right.\",\"Translate\":\"公司正在做一切正确的事情。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made a right decision.\",\"Translate\":\"法官做出了正确的决定。\",\"Level\":\"C1\"},{\"Sentence\":\"It's not right to judge someone based on their appearance.\",\"Translate\":\"根据外貌来判断一个人是不正确的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"right\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Turn right at the corner.\",\"Translate\":\"在拐角处右转。\",\"Level\":\"A1\"},{\"Sentence\":\"You are right.\",\"Translate\":\"你是对的。\",\"Level\":\"A1\"},{\"Sentence\":\"She has the right to say no.\",\"Translate\":\"她有权说不。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is doing everything right.\",\"Translate\":\"公司正在做一切正确的事情。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made a right decision.\",\"Translate\":\"法官做出了正确的决定。\",\"Level\":\"C1\"},{\"Sentence\":\"It's not right to judge someone based on their appearance.\",\"Translate\":\"根据外貌来判断一个人是不正确的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83918,
- "Word": "ask",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[aisk]",
- "Translate": "问",
- "EnglishExplanation": "{\"word\":\"ask\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can I ask you something?\",\"Translate\":\"我能问你点事吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She asked me to help her.\",\"Translate\":\"她让我帮助她。\",\"Level\":\"A1\"},{\"Sentence\":\"I asked him where he was going.\",\"Translate\":\"我问他要去哪里。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to write an essay.\",\"Translate\":\"老师要求学生们写一篇论文。\",\"Level\":\"A2\"},{\"Sentence\":\"The interviewer asked me some challenging questions.\",\"Translate\":\"面试官问了我一些具有挑战性的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will ask for references when you apply for the job.\",\"Translate\":\"当你申请这份工作时,公司会要求提供推荐人。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor asked us to analyze the data critically.\",\"Translate\":\"教授要求我们批判性地分析数据。\",\"Level\":\"C1\"},{\"Sentence\":\"The activist asked the government to reconsider its policy.\",\"Translate\":\"活动家要求政府重新考虑其政策。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"ask\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can I ask you something?\",\"Translate\":\"我能问你点事吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She asked me to help her.\",\"Translate\":\"她让我帮助她。\",\"Level\":\"A1\"},{\"Sentence\":\"I asked him where he was going.\",\"Translate\":\"我问他要去哪里。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to write an essay.\",\"Translate\":\"老师要求学生们写一篇论文。\",\"Level\":\"A2\"},{\"Sentence\":\"The interviewer asked me some challenging questions.\",\"Translate\":\"面试官问了我一些具有挑战性的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will ask for references when you apply for the job.\",\"Translate\":\"当你申请这份工作时,公司会要求提供推荐人。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor asked us to analyze the data critically.\",\"Translate\":\"教授要求我们批判性地分析数据。\",\"Level\":\"C1\"},{\"Sentence\":\"The activist asked the government to reconsider its policy.\",\"Translate\":\"活动家要求政府重新考虑其政策。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83919,
- "Word": "sir",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[s3:(r)]",
- "Translate": "先生(礼貌称呼)",
- "EnglishExplanation": "{\"word\":\"sir\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Yes, sir.\",\"Translate\":\"是的,先生。\",\"Level\":\"A1\"},{\"Sentence\":\"Excuse me, sir.\",\"Translate\":\"先生,对不起。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I help you, sir?\",\"Translate\":\"先生,我能帮您吗?\",\"Level\":\"A2\"},{\"Sentence\":\"Thank you, sir.\",\"Translate\":\"谢谢您,先生。\",\"Level\":\"A2\"}]}",
- "ExampleSentence": "{\"word\":\"sir\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Yes, sir.\",\"Translate\":\"是的,先生。\",\"Level\":\"A1\"},{\"Sentence\":\"Excuse me, sir.\",\"Translate\":\"先生,对不起。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I help you, sir?\",\"Translate\":\"先生,我能帮您吗?\",\"Level\":\"A2\"},{\"Sentence\":\"Thank you, sir.\",\"Translate\":\"谢谢您,先生。\",\"Level\":\"A2\"}]}",
- "Sort": 0
- },
- {
- "ID": 83920,
- "Word": "interesting",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[intrastin]",
- "Translate": "有趣的",
- "EnglishExplanation": "{\"word\":\"interesting\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The movie was very interesting.\",\"Translate\":\"这部电影很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"I found the story quite interesting.\",\"Translate\":\"我觉得这个故事相当有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"The professor gave an interesting lecture on the topic.\",\"Translate\":\"教授就这个话题做了有趣的讲座。\",\"Level\":\"B1\"},{\"Sentence\":\"It's interesting to see how different cultures celebrate the same holiday.\",\"Translate\":\"看看不同的文化如何庆祝同一个节日是很有趣的。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has some interesting implications for the future of the company.\",\"Translate\":\"新政策对公司的未来有一些有趣的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light created an interesting contrast in the painting.\",\"Translate\":\"艺术家对色彩和光线的运用在画中创造了有趣的对比。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"interesting\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The movie was very interesting.\",\"Translate\":\"这部电影很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"I found the story quite interesting.\",\"Translate\":\"我觉得这个故事相当有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"The professor gave an interesting lecture on the topic.\",\"Translate\":\"教授就这个话题做了有趣的讲座。\",\"Level\":\"B1\"},{\"Sentence\":\"It's interesting to see how different cultures celebrate the same holiday.\",\"Translate\":\"看看不同的文化如何庆祝同一个节日是很有趣的。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has some interesting implications for the future of the company.\",\"Translate\":\"新政策对公司的未来有一些有趣的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light created an interesting contrast in the painting.\",\"Translate\":\"艺术家对色彩和光线的运用在画中创造了有趣的对比。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83921,
- "Word": "Italian",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[l'taelian]",
- "Translate": "意大利的",
- "EnglishExplanation": "{\"word\":\"italian\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The italian restaurant near my house is very popular.\",\"Translate\":\"我家附近的意大利餐厅很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"She's italian and loves cooking traditional dishes.\",\"Translate\":\"她是意大利人,喜欢烹饪传统菜肴。\",\"Level\":\"A2\"},{\"Sentence\":\"The italian language is known for its musicality and expressiveness.\",\"Translate\":\"意大利语以其音乐性和表现力而闻名。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian economy is one of the largest in the world.\",\"Translate\":\"意大利经济是世界上最大的经济体之一。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian Renaissance was a cultural and artistic movement that had a profound impact on European history.\",\"Translate\":\"意大利文艺复兴是一场对欧洲历史产生了深远影响的文化和艺术运动。\",\"Level\":\"C1\"},{\"Sentence\":\"The italian government's policies have been subject to intense scrutiny in recent years.\",\"Translate\":\"近年来,意大利政府的政策受到了密切关注。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"italian\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The italian restaurant near my house is very popular.\",\"Translate\":\"我家附近的意大利餐厅很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"She's italian and loves cooking traditional dishes.\",\"Translate\":\"她是意大利人,喜欢烹饪传统菜肴。\",\"Level\":\"A2\"},{\"Sentence\":\"The italian language is known for its musicality and expressiveness.\",\"Translate\":\"意大利语以其音乐性和表现力而闻名。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian economy is one of the largest in the world.\",\"Translate\":\"意大利经济是世界上最大的经济体之一。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian Renaissance was a cultural and artistic movement that had a profound impact on European history.\",\"Translate\":\"意大利文艺复兴是一场对欧洲历史产生了深远影响的文化和艺术运动。\",\"Level\":\"C1\"},{\"Sentence\":\"The italian government's policies have been subject to intense scrutiny in recent years.\",\"Translate\":\"近年来,意大利政府的政策受到了密切关注。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83922,
- "Word": "restaurant",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['restrpnt]",
- "Translate": "餐馆",
- "EnglishExplanation": "{\"word\":\"restaurant\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's go to the restaurant for dinner.\",\"Translate\":\"我们去餐厅吃晚饭吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The new restaurant in town is very popular.\",\"Translate\":\"镇上新开的餐厅很受欢迎。\",\"Level\":\"A1\"},{\"Sentence\":\"I booked a table at the restaurant for our anniversary.\",\"Translate\":\"我为我们的周年纪念在餐厅预订了一张桌子。\",\"Level\":\"B1\"},{\"Sentence\":\"The restaurant serves a variety of cuisines from around the world.\",\"Translate\":\"这家餐厅提供来自世界各地的各种美食。\",\"Level\":\"B1\"},{\"Sentence\":\"The Michelin-starred restaurant is known for its exquisite culinary experience.\",\"Translate\":\"这家米其林星级餐厅以其精致的餐饮体验而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The restaurant's chef is renowned for his innovative and artistic dishes.\",\"Translate\":\"这家餐厅的厨师以其创新和艺术的菜肴而闻名。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"restaurant\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's go to the restaurant for dinner.\",\"Translate\":\"我们去餐厅吃晚饭吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The new restaurant in town is very popular.\",\"Translate\":\"镇上新开的餐厅很受欢迎。\",\"Level\":\"A1\"},{\"Sentence\":\"I booked a table at the restaurant for our anniversary.\",\"Translate\":\"我为我们的周年纪念在餐厅预订了一张桌子。\",\"Level\":\"B1\"},{\"Sentence\":\"The restaurant serves a variety of cuisines from around the world.\",\"Translate\":\"这家餐厅提供来自世界各地的各种美食。\",\"Level\":\"B1\"},{\"Sentence\":\"The Michelin-starred restaurant is known for its exquisite culinary experience.\",\"Translate\":\"这家米其林星级餐厅以其精致的餐饮体验而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The restaurant's chef is renowned for his innovative and artistic dishes.\",\"Translate\":\"这家餐厅的厨师以其创新和艺术的菜肴而闻名。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83923,
- "Word": "pizza",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['pi:tsa]",
- "Translate": "比萨饼",
- "EnglishExplanation": "{\"word\":\"pizza\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I love eating pizza.\",\"Translate\":\"我喜欢吃披萨。\",\"Level\":\"A1\"},{\"Sentence\":\"The pizza is very delicious.\",\"Translate\":\"这个披萨非常好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's order a few pizzas for the party.\",\"Translate\":\"我们为聚会订几个披萨吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The pizza shop is open until midnight.\",\"Translate\":\"这家披萨店营业到半夜。\",\"Level\":\"A2\"},{\"Sentence\":\"The aroma of freshly baked pizza filled the entire street.\",\"Translate\":\"新鲜烘烤的披萨香味充满了整条街。\",\"Level\":\"C1\"},{\"Sentence\":\"The art of making pizza involves a delicate balance between ingredients and cooking techniques.\",\"Translate\":\"制作披萨的艺术在于食材和烹饪技巧之间的微妙平衡。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"pizza\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I love eating pizza.\",\"Translate\":\"我喜欢吃披萨。\",\"Level\":\"A1\"},{\"Sentence\":\"The pizza is very delicious.\",\"Translate\":\"这个披萨非常好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's order a few pizzas for the party.\",\"Translate\":\"我们为聚会订几个披萨吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The pizza shop is open until midnight.\",\"Translate\":\"这家披萨店营业到半夜。\",\"Level\":\"A2\"},{\"Sentence\":\"The aroma of freshly baked pizza filled the entire street.\",\"Translate\":\"新鲜烘烤的披萨香味充满了整条街。\",\"Level\":\"C1\"},{\"Sentence\":\"The art of making pizza involves a delicate balance between ingredients and cooking techniques.\",\"Translate\":\"制作披萨的艺术在于食材和烹饪技巧之间的微妙平衡。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83924,
- "Word": "street",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[strit]",
- "Translate": "大街;街道",
- "EnglishExplanation": "{\"word\":\"street\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The street is very busy.\",\"Translate\":\"这条街很繁忙。\",\"Level\":\"A1\"},{\"Sentence\":\"I live on a quiet street.\",\"Translate\":\"我住在一条安静的街上。\",\"Level\":\"A1\"},{\"Sentence\":\"The street performers entertained the crowd.\",\"Translate\":\"街头表演者娱乐了人群。\",\"Level\":\"B1\"},{\"Sentence\":\"The street festival was a huge success.\",\"Translate\":\"街头节非常成功。\",\"Level\":\"B1\"},{\"Sentence\":\"The street art in the city is impressive.\",\"Translate\":\"城市里的街头艺术令人印象深刻。\",\"Level\":\"C1\"},{\"Sentence\":\"The street protests were a manifestation of the public's dissatisfaction.\",\"Translate\":\"街头抗议是公众不满的表现。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"street\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The street is very busy.\",\"Translate\":\"这条街很繁忙。\",\"Level\":\"A1\"},{\"Sentence\":\"I live on a quiet street.\",\"Translate\":\"我住在一条安静的街上。\",\"Level\":\"A1\"},{\"Sentence\":\"The street performers entertained the crowd.\",\"Translate\":\"街头表演者娱乐了人群。\",\"Level\":\"B1\"},{\"Sentence\":\"The street festival was a huge success.\",\"Translate\":\"街头节非常成功。\",\"Level\":\"B1\"},{\"Sentence\":\"The street art in the city is impressive.\",\"Translate\":\"城市里的街头艺术令人印象深刻。\",\"Level\":\"C1\"},{\"Sentence\":\"The street protests were a manifestation of the public's dissatisfaction.\",\"Translate\":\"街头抗议是公众不满的表现。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83925,
- "Word": "get",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[get]",
- "Translate": "到达",
- "EnglishExplanation": "{\"word\":\"get\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I get up at 7 o'clock every day.\",\"Translate\":\"我每天7点起床。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you get me a glass of water?\",\"Translate\":\"你能给我一杯水吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to get some food from the kitchen.\",\"Translate\":\"我要从厨房拿些食物。\",\"Level\":\"A2\"},{\"Sentence\":\"She gets angry when people are late.\",\"Translate\":\"当人们迟到时,她会生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will get a lot of benefit from the new deal.\",\"Translate\":\"公司将从这笔新交易中获得很多利益。\",\"Level\":\"B1\"},{\"Sentence\":\"It's getting harder to find a good job these days.\",\"Translate\":\"如今找一份好工作越来越难了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has got the support of many employees.\",\"Translate\":\"新政策得到了许多员工的支持。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists got lost in the old city.\",\"Translate\":\"游客们在老城里迷路了。\",\"Level\":\"B2\"},{\"Sentence\":\"The team got to the finals after a series of tough matches.\",\"Translate\":\"经过一系列艰苦的比赛后,这支队伍进入了决赛。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color get",
- "ExampleSentence": "{\"word\":\"get\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I get up at 7 o'clock every day.\",\"Translate\":\"我每天7点起床。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you get me a glass of water?\",\"Translate\":\"你能给我一杯水吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to get some food from the kitchen.\",\"Translate\":\"我要从厨房拿些食物。\",\"Level\":\"A2\"},{\"Sentence\":\"She gets angry when people are late.\",\"Translate\":\"当人们迟到时,她会生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will get a lot of benefit from the new deal.\",\"Translate\":\"公司将从这笔新交易中获得很多利益。\",\"Level\":\"B1\"},{\"Sentence\":\"It's getting harder to find a good job these days.\",\"Translate\":\"如今找一份好工作越来越难了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has got the support of many employees.\",\"Translate\":\"新政策得到了许多员工的支持。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists got lost in the old city.\",\"Translate\":\"游客们在老城里迷路了。\",\"Level\":\"B2\"},{\"Sentence\":\"The team got to the finals after a series of tough matches.\",\"Translate\":\"经过一系列艰苦的比赛后,这支队伍进入了决赛。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color gets across a sense of nostalgia.\",\"Translate\":\"艺术家对色彩的使用传达了一种怀旧的感觉。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83926,
- "Word": "BDS",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "北斗卫星导航系统",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83927,
- "Word": "gave",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[geiv]",
- "Translate": "提供;交给",
- "EnglishExplanation": "{\"word\":\"gave\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She gave me a book.\",\"Translate\":\"她给了我一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us homework.\",\"Translate\":\"老师给了我们作业。\",\"Level\":\"A1\"},{\"Sentence\":\"The charity event gave the community a chance to come together.\",\"Translate\":\"慈善活动让社区有机会聚在一起。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy gave rise to widespread criticism.\",\"Translate\":\"新政策引发了广泛的批评。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist gave expression to her emotions through her paintings.\",\"Translate\":\"艺术家通过她的画作表达了她的情感。\",\"Level\":\"C1\"},{\"Sentence\":\"The historian gave a nuanced analysis of the complex historical events.\",\"Translate\":\"历史学家对复杂的历史事件进行了细致入微的分析。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"gave\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She gave me a book.\",\"Translate\":\"她给了我一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us homework.\",\"Translate\":\"老师给了我们作业。\",\"Level\":\"A1\"},{\"Sentence\":\"The charity event gave the community a chance to come together.\",\"Translate\":\"慈善活动让社区有机会聚在一起。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy gave rise to widespread criticism.\",\"Translate\":\"新政策引发了广泛的批评。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist gave expression to her emotions through her paintings.\",\"Translate\":\"艺术家通过她的画作表达了她的情感。\",\"Level\":\"C1\"},{\"Sentence\":\"The historian gave a nuanced analysis of the complex historical events.\",\"Translate\":\"历史学家对复杂的历史事件进行了细致入微的分析。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83928,
- "Word": "feature",
- "WordRemark": null,
- "Level": "B2",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "['fi:tfa(r)]",
- "Translate": "特点",
- "EnglishExplanation": "{\"word\":\"feature\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The new smartphone will feature an advanced AI camera.\",\"Translate\":\"这款新智能手机将配备先进的AI摄像头。\",\"Level\":\"B2\"},{\"Sentence\":\"The magazine features a story about the latest fashion trends.\",\"Translate\":\"这本杂志刊登了一篇关于最新时尚潮流的文章。\",\"Level\":\"B2\"},{\"Sentence\":\"The city's main attraction is its historic downtown area, which will be featured in the travel brochure.\",\"Translate\":\"这座城市的主要景点是其历史悠久的市中心区域,这将在旅行手册中有特别介绍。\",\"Level\":\"C1\"},{\"Sentence\":\"The film features an all-star cast and has been receiving critical acclaim.\",\"Translate\":\"这部电影由全明星阵容主演,并获得了广泛好评。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"feature\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The new smartphone will feature an advanced AI camera.\",\"Translate\":\"这款新智能手机将配备先进的AI摄像头。\",\"Level\":\"B2\"},{\"Sentence\":\"The magazine features a story about the latest fashion trends.\",\"Translate\":\"这本杂志刊登了一篇关于最新时尚潮流的文章。\",\"Level\":\"B2\"},{\"Sentence\":\"The city's main attraction is its historic downtown area, which will be featured in the travel brochure.\",\"Translate\":\"这座城市的主要景点是其历史悠久的市中心区域,这将在旅行手册中有特别介绍。\",\"Level\":\"C1\"},{\"Sentence\":\"The film features an all-star cast and has been receiving critical acclaim.\",\"Translate\":\"这部电影由全明星阵容主演,并获得了广泛好评。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83929,
- "Word": "follow",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[fplau]",
- "Translate": "跟着",
- "EnglishExplanation": "{\"word\":\"follow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Please follow me.\",\"Translate\":\"请跟我来。\",\"Level\":\"A1\"},{\"Sentence\":\"I will follow your instructions.\",\"Translate\":\"我会按照你的指示做。\",\"Level\":\"A1\"},{\"Sentence\":\"The dog follows its owner everywhere.\",\"Translate\":\"这只狗到处跟着它的主人。\",\"Level\":\"A2\"},{\"Sentence\":\"You should follow the rules.\",\"Translate\":\"你应该遵守规则。\",\"Level\":\"A2\"},{\"Sentence\":\"The police are following a new lead.\",\"Translate\":\"警察正在追查一个新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will follow up on the complaint.\",\"Translate\":\"公司将跟进投诉。\",\"Level\":\"B1\"},{\"Sentence\":\"The consequences of not following the regulations could be severe.\",\"Translate\":\"不遵守规定的后果可能很严重。\",\"Level\":\"C1\"},{\"Sentence\":\"The research will follow a rigorous methodology to ensure accuracy.\",\"Translate\":\"研究将遵循严格的方法以确保准确性。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"follow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Please follow me.\",\"Translate\":\"请跟我来。\",\"Level\":\"A1\"},{\"Sentence\":\"I will follow your instructions.\",\"Translate\":\"我会按照你的指示做。\",\"Level\":\"A1\"},{\"Sentence\":\"The dog follows its owner everywhere.\",\"Translate\":\"这只狗到处跟着它的主人。\",\"Level\":\"A2\"},{\"Sentence\":\"You should follow the rules.\",\"Translate\":\"你应该遵守规则。\",\"Level\":\"A2\"},{\"Sentence\":\"The police are following a new lead.\",\"Translate\":\"警察正在追查一个新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will follow up on the complaint.\",\"Translate\":\"公司将跟进投诉。\",\"Level\":\"B1\"},{\"Sentence\":\"The consequences of not following the regulations could be severe.\",\"Translate\":\"不遵守规定的后果可能很严重。\",\"Level\":\"C1\"},{\"Sentence\":\"The research will follow a rigorous methodology to ensure accuracy.\",\"Translate\":\"研究将遵循严格的方法以确保准确性。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83930,
- "Word": "far",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[fa:(r)]",
- "Translate": "远的",
- "EnglishExplanation": "{\"word\":\"far\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The park is far from here.\",\"Translate\":\"公园离这里很远。\",\"Level\":\"A1\"},{\"Sentence\":\"I have to walk far to get to school.\",\"Translate\":\"我必须走很远的路去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The new employee has come from far and wide to join our team.\",\"Translate\":\"新员工从四面八方来到我们的团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's influence has spread far and wide across the globe.\",\"Translate\":\"公司的影響力已经遍及全球。\",\"Level\":\"B1\"},{\"Sentence\":\"The research has implications that go far beyond the academic community.\",\"Translate\":\"这项研究的影响远远超出了学术界。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has taken the company's commitment to sustainability far beyond what was previously thought possible.\",\"Translate\":\"新政策使公司对可持续发展的承诺远远超出了以前认为可能的范围。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"far\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The park is far from here.\",\"Translate\":\"公园离这里很远。\",\"Level\":\"A1\"},{\"Sentence\":\"I have to walk far to get to school.\",\"Translate\":\"我必须走很远的路去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The new employee has come from far and wide to join our team.\",\"Translate\":\"新员工从四面八方来到我们的团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's influence has spread far and wide across the globe.\",\"Translate\":\"公司的影響力已经遍及全球。\",\"Level\":\"B1\"},{\"Sentence\":\"The research has implications that go far beyond the academic community.\",\"Translate\":\"这项研究的影响远远超出了学术界。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has taken the company's commitment to sustainability far beyond what was previously thought possible.\",\"Translate\":\"新政策使公司对可持续发展的承诺远远超出了以前认为可能的范围。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83931,
- "Word": "tell",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": "[tel]",
- "Translate": "告诉",
- "EnglishExplanation": "{\"word\":\"tell\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you tell me your name?\",\"Translate\":\"你能告诉我你的名字吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She didn't tell me about the party.\",\"Translate\":\"她没有告诉我关于聚会的事。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher will tell us a story.\",\"Translate\":\"老师将给我们讲一个故事。\",\"Level\":\"A2\"},{\"Sentence\":\"He told me that he was tired.\",\"Translate\":\"他告诉我他很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The difference between the two pictures will tell you a lot about the artist's style.\",\"Translate\":\"两幅画之间的差异会告诉你很多关于艺术家的风格。\",\"Level\":\"C1\"},{\"Sentence\":\"Her expression told a story of sadness and loss.\",\"Translate\":\"她的表情诉说着悲伤和失落的故事。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"tell\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you tell me your name?\",\"Translate\":\"你能告诉我你的名字吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She didn't tell me about the party.\",\"Translate\":\"她没有告诉我关于聚会的事。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher will tell us a story.\",\"Translate\":\"老师将给我们讲一个故事。\",\"Level\":\"A2\"},{\"Sentence\":\"He told me that he was tired.\",\"Translate\":\"他告诉我他很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The difference between the two pictures will tell you a lot about the artist's style.\",\"Translate\":\"两幅画之间的差异会告诉你很多关于艺术家的风格。\",\"Level\":\"C1\"},{\"Sentence\":\"Her expression told a story of sadness and loss.\",\"Translate\":\"她的表情诉说着悲伤和失落的故事。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83932,
- "Word": "on foot",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "步行",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83933,
- "Word": "by",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[bal]",
- "Translate": "(表示方式)乘",
- "EnglishExplanation": "{\"word\":\"by\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The book is written by my favorite author.\",\"Translate\":\"这本书由我最喜欢的作者撰写。\",\"Level\":\"A1\"},{\"Sentence\":\"She was standing by the window.\",\"Translate\":\"她站在窗户旁边。\",\"Level\":\"A1\"},{\"Sentence\":\"You can improve your English by practicing every day.\",\"Translate\":\"你可以通过每天练习来提高你的英语水平。\",\"Level\":\"B1\"},{\"Sentence\":\"The painting was created by a famous artist.\",\"Translate\":\"这幅画是由一位著名的艺术家创作的。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been acquired by a multinational corporation.\",\"Translate\":\"这家公司已经被一家跨国公司收购。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy was introduced by the government to stimulate economic growth.\",\"Translate\":\"政府推出了新的政策来刺激经济增长。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"by\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The book is written by my favorite author.\",\"Translate\":\"这本书由我最喜欢的作者撰写。\",\"Level\":\"A1\"},{\"Sentence\":\"She was standing by the window.\",\"Translate\":\"她站在窗户旁边。\",\"Level\":\"A1\"},{\"Sentence\":\"You can improve your English by practicing every day.\",\"Translate\":\"你可以通过每天练习来提高你的英语水平。\",\"Level\":\"B1\"},{\"Sentence\":\"The painting was created by a famous artist.\",\"Translate\":\"这幅画是由一位著名的艺术家创作的。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been acquired by a multinational corporation.\",\"Translate\":\"这家公司已经被一家跨国公司收购。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy was introduced by the government to stimulate economic growth.\",\"Translate\":\"政府推出了新的政策来刺激经济增长。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83934,
- "Word": "bus",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[bas]",
- "Translate": "公共汽车",
- "EnglishExplanation": "{\"word\":\"bus\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the bus to school.\",\"Translate\":\"我坐公交车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The bus is late again.\",\"Translate\":\"公交车又晚点了。\",\"Level\":\"A1\"},{\"Sentence\":\"The buses in this city are very reliable.\",\"Translate\":\"这座城市的公交车非常可靠。\",\"Level\":\"A2\"},{\"Sentence\":\"You can catch the bus at the next stop.\",\"Translate\":\"你可以在下一站搭乘公交车。\",\"Level\":\"A2\"},{\"Sentence\":\"The city is investing in new bus technology to reduce emissions.\",\"Translate\":\"该市正在投资新的公交技术以减少排放。\",\"Level\":\"C1\"},{\"Sentence\":\"The bus network in the city has been expanded to improve connectivity.\",\"Translate\":\"该市的公交网络已经扩大,以改善连接性。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"bus\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the bus to school.\",\"Translate\":\"我坐公交车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The bus is late again.\",\"Translate\":\"公交车又晚点了。\",\"Level\":\"A1\"},{\"Sentence\":\"The buses in this city are very reliable.\",\"Translate\":\"这座城市的公交车非常可靠。\",\"Level\":\"A2\"},{\"Sentence\":\"You can catch the bus at the next stop.\",\"Translate\":\"你可以在下一站搭乘公交车。\",\"Level\":\"A2\"},{\"Sentence\":\"The city is investing in new bus technology to reduce emissions.\",\"Translate\":\"该市正在投资新的公交技术以减少排放。\",\"Level\":\"C1\"},{\"Sentence\":\"The bus network in the city has been expanded to improve connectivity.\",\"Translate\":\"该市的公交网络已经扩大,以改善连接性。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83935,
- "Word": "plane",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[plein]",
- "Translate": "飞机",
- "EnglishExplanation": "{\"word\":\"plane\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will take a plane to Paris tomorrow.\",\"Translate\":\"明天我将乘飞机去巴黎。\",\"Level\":\"A1\"},{\"Sentence\":\"The plane is flying over the mountains.\",\"Translate\":\"飞机正在山上空飞行。\",\"Level\":\"A1\"},{\"Sentence\":\"She booked a plane ticket to New York last week.\",\"Translate\":\"她上周预订了一张去纽约的机票。\",\"Level\":\"A2\"},{\"Sentence\":\"The plane landed safely at the airport.\",\"Translate\":\"飞机安全地降落在机场。\",\"Level\":\"A2\"},{\"Sentence\":\"The pilot navigated the plane through the storm.\",\"Translate\":\"飞行员驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The plane was delayed due to bad weather.\",\"Translate\":\"由于天气恶劣,飞机延误了。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline operates a large fleet of planes.\",\"Translate\":\"这家航空公司经营着一支庞大的机队。\",\"Level\":\"B2\"},{\"Sentence\":\"The plane's engine failed, so it had to make an emergency landing.\",\"Translate\":\"飞机的引擎故障了,所以不得不进行紧急降落。\",\"Level\":\"B2\"},{\"Sentence\":\"The supersonic plane broke the sound barrier.\",\"Translate\":\"超音速飞机突破了音障。\",\"Level\":\"C1\"},{\"Sentence\":\"The aviation ",
- "ExampleSentence": "{\"word\":\"plane\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will take a plane to Paris tomorrow.\",\"Translate\":\"明天我将乘飞机去巴黎。\",\"Level\":\"A1\"},{\"Sentence\":\"The plane is flying over the mountains.\",\"Translate\":\"飞机正在山上空飞行。\",\"Level\":\"A1\"},{\"Sentence\":\"She booked a plane ticket to New York last week.\",\"Translate\":\"她上周预订了一张去纽约的机票。\",\"Level\":\"A2\"},{\"Sentence\":\"The plane landed safely at the airport.\",\"Translate\":\"飞机安全地降落在机场。\",\"Level\":\"A2\"},{\"Sentence\":\"The pilot navigated the plane through the storm.\",\"Translate\":\"飞行员驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The plane was delayed due to bad weather.\",\"Translate\":\"由于天气恶劣,飞机延误了。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline operates a large fleet of planes.\",\"Translate\":\"这家航空公司经营着一支庞大的机队。\",\"Level\":\"B2\"},{\"Sentence\":\"The plane's engine failed, so it had to make an emergency landing.\",\"Translate\":\"飞机的引擎故障了,所以不得不进行紧急降落。\",\"Level\":\"B2\"},{\"Sentence\":\"The supersonic plane broke the sound barrier.\",\"Translate\":\"超音速飞机突破了音障。\",\"Level\":\"C1\"},{\"Sentence\":\"The aviation company is developing a new generation of planes.\",\"Translate\":\"这家航空公司正在开发新一代的飞机。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83936,
- "Word": "taxi",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['taeksi]",
- "Translate": "出租汽车",
- "EnglishExplanation": "{\"word\":\"taxi\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I need to call a taxi to go to the airport.\",\"Translate\":\"我需要叫一辆出租车去机场。\",\"Level\":\"A1\"},{\"Sentence\":\"The taxi driver was very friendly.\",\"Translate\":\"出租车司机很友好。\",\"Level\":\"A1\"},{\"Sentence\":\"You can take a taxi from the hotel to the city center.\",\"Translate\":\"你可以从酒店乘坐出租车到市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"Taxis are readily available at the train station.\",\"Translate\":\"火车站有很多出租车。\",\"Level\":\"A2\"},{\"Sentence\":\"The taxi service in this city is quite reliable.\",\"Translate\":\"这个城市的出租车服务很可靠。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few drinks, we hailed a taxi to get back to our hotel.\",\"Translate\":\"喝了几杯后,我们叫了一辆出租车回酒店。\",\"Level\":\"B1\"},{\"Sentence\":\"The taxi industry has seen significant changes with the rise of ride-hailing apps.\",\"Translate\":\"随着叫车应用的兴起,出租车行业发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"Taxis are an integral part of the urban transportation infrastructure, providing a convenient mode of transport.\",\"Translate\":\"出租车是城市交通基础设施的重要组成部分,提供了一种便捷的交通",
- "ExampleSentence": "{\"word\":\"taxi\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I need to call a taxi to go to the airport.\",\"Translate\":\"我需要叫一辆出租车去机场。\",\"Level\":\"A1\"},{\"Sentence\":\"The taxi driver was very friendly.\",\"Translate\":\"出租车司机很友好。\",\"Level\":\"A1\"},{\"Sentence\":\"You can take a taxi from the hotel to the city center.\",\"Translate\":\"你可以从酒店乘坐出租车到市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"Taxis are readily available at the train station.\",\"Translate\":\"火车站有很多出租车。\",\"Level\":\"A2\"},{\"Sentence\":\"The taxi service in this city is quite reliable.\",\"Translate\":\"这个城市的出租车服务很可靠。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few drinks, we hailed a taxi to get back to our hotel.\",\"Translate\":\"喝了几杯后,我们叫了一辆出租车回酒店。\",\"Level\":\"B1\"},{\"Sentence\":\"The taxi industry has seen significant changes with the rise of ride-hailing apps.\",\"Translate\":\"随着叫车应用的兴起,出租车行业发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"Taxis are an integral part of the urban transportation infrastructure, providing a convenient mode of transport.\",\"Translate\":\"出租车是城市交通基础设施的重要组成部分,提供了一种便捷的交通方式。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83937,
- "Word": "ship",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[Jip]",
- "Translate": "(大)船",
- "EnglishExplanation": "{\"word\":\"ship\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The ship sailed across the ocean.\",\"Translate\":\"这艘船横渡大洋。\",\"Level\":\"A1\"},{\"Sentence\":\"They traveled on a big ship.\",\"Translate\":\"他们乘坐一艘大船旅行。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will ship the goods tomorrow.\",\"Translate\":\"公司明天将发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The goods were shipped last week.\",\"Translate\":\"货物已于上周发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The captain skillfully navigated the ship through the storm.\",\"Translate\":\"船长熟练地驾驶船只穿过风暴。\",\"Level\":\"C1\"},{\"Sentence\":\"The shipping industry has experienced significant changes over the years.\",\"Translate\":\"航运业多年来经历了重大变化。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"ship\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The ship sailed across the ocean.\",\"Translate\":\"这艘船横渡大洋。\",\"Level\":\"A1\"},{\"Sentence\":\"They traveled on a big ship.\",\"Translate\":\"他们乘坐一艘大船旅行。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will ship the goods tomorrow.\",\"Translate\":\"公司明天将发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The goods were shipped last week.\",\"Translate\":\"货物已于上周发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The captain skillfully navigated the ship through the storm.\",\"Translate\":\"船长熟练地驾驶船只穿过风暴。\",\"Level\":\"C1\"},{\"Sentence\":\"The shipping industry has experienced significant changes over the years.\",\"Translate\":\"航运业多年来经历了重大变化。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83938,
- "Word": "subway",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[sabwel]",
- "Translate": "地铁",
- "EnglishExplanation": "{\"word\":\"subway\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the city center by subway.\",\"Translate\":\"我要坐地铁去市中心.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway is very convenient for traveling around the city.\",\"Translate\":\"地铁非常方便城市出行.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway system in Tokyo is very complex, with many different lines.\",\"Translate\":\"东京的地铁系统非常复杂,有很多不同的线路.\",\"Level\":\"B1\"},{\"Sentence\":\"To avoid the crowds, try to avoid traveling during peak hours on the subway.\",\"Translate\":\"为了避开人潮,尽量避免在高峰时段乘坐地铁.\",\"Level\":\"B1\"},{\"Sentence\":\"The new subway line has significantly alleviated traffic congestion in the metropolitan area.\",\"Translate\":\"新的地铁线路大大缓解了大都市地区的交通拥堵.\",\"Level\":\"C1\"},{\"Sentence\":\"Critics argue that the expansion of the subway network has not kept pace with the city's rapid urbanization.\",\"Translate\":\"批评者认为地铁网络的扩张没有跟上城市的快速城市化步伐.\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"subway\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the city center by subway.\",\"Translate\":\"我要坐地铁去市中心.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway is very convenient for traveling around the city.\",\"Translate\":\"地铁非常方便城市出行.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway system in Tokyo is very complex, with many different lines.\",\"Translate\":\"东京的地铁系统非常复杂,有很多不同的线路.\",\"Level\":\"B1\"},{\"Sentence\":\"To avoid the crowds, try to avoid traveling during peak hours on the subway.\",\"Translate\":\"为了避开人潮,尽量避免在高峰时段乘坐地铁.\",\"Level\":\"B1\"},{\"Sentence\":\"The new subway line has significantly alleviated traffic congestion in the metropolitan area.\",\"Translate\":\"新的地铁线路大大缓解了大都市地区的交通拥堵.\",\"Level\":\"C1\"},{\"Sentence\":\"Critics argue that the expansion of the subway network has not kept pace with the city's rapid urbanization.\",\"Translate\":\"批评者认为地铁网络的扩张没有跟上城市的快速城市化步伐.\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83939,
- "Word": "train",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[trein]",
- "Translate": "火车",
- "EnglishExplanation": "{\"word\":\"train\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the train to school.\",\"Translate\":\"我坐火车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is leaving the station.\",\"Translate\":\"火车正在离开车站。\",\"Level\":\"A1\"},{\"Sentence\":\"You need to train hard to become a good athlete.\",\"Translate\":\"你需要努力训练才能成为一名优秀的运动员。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will train new employees next month.\",\"Translate\":\"公司将在下个月培训新员工。\",\"Level\":\"B1\"},{\"Sentence\":\"The team has been training for the championship all season.\",\"Translate\":\"整个赛季,队伍都在为冠军而训练。\",\"Level\":\"C1\"},{\"Sentence\":\"Her years of training have made her a skilled surgeon.\",\"Translate\":\"多年的训练使她成为了一名熟练的外科医生。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"train\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the train to school.\",\"Translate\":\"我坐火车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is leaving the station.\",\"Translate\":\"火车正在离开车站。\",\"Level\":\"A1\"},{\"Sentence\":\"You need to train hard to become a good athlete.\",\"Translate\":\"你需要努力训练才能成为一名优秀的运动员。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will train new employees next month.\",\"Translate\":\"公司将在下个月培训新员工。\",\"Level\":\"B1\"},{\"Sentence\":\"The team has been training for the championship all season.\",\"Translate\":\"整个赛季,队伍都在为冠军而训练。\",\"Level\":\"C1\"},{\"Sentence\":\"Her years of training have made her a skilled surgeon.\",\"Translate\":\"多年的训练使她成为了一名熟练的外科医生。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83940,
- "Word": "slow",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[slau]",
- "Translate": "慢的;放慢速度",
- "EnglishExplanation": "{\"word\":\"slow\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic is slow today.\",\"Translate\":\"今天交通很慢。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a slow learner.\",\"Translate\":\"她是一个学习缓慢的人。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has been slow to adapt to the new technology.\",\"Translate\":\"这家公司在适应新技术方面进展缓慢。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow pace of the hike made it enjoyable for everyone.\",\"Translate\":\"这次徒步旅行的缓慢节奏让每个人都感到愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow and deliberate movements of the yoga instructor were calming.\",\"Translate\":\"瑜伽教练缓慢而刻意的动作令人放松。\",\"Level\":\"C1\"},{\"Sentence\":\"The slow erosion of the coastline is a concern for local residents.\",\"Translate\":\"海岸线的缓慢侵蚀是当地居民关心的问题。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"slow\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic is slow today.\",\"Translate\":\"今天交通很慢。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a slow learner.\",\"Translate\":\"她是一个学习缓慢的人。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has been slow to adapt to the new technology.\",\"Translate\":\"这家公司在适应新技术方面进展缓慢。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow pace of the hike made it enjoyable for everyone.\",\"Translate\":\"这次徒步旅行的缓慢节奏让每个人都感到愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow and deliberate movements of the yoga instructor were calming.\",\"Translate\":\"瑜伽教练缓慢而刻意的动作令人放松。\",\"Level\":\"C1\"},{\"Sentence\":\"The slow erosion of the coastline is a concern for local residents.\",\"Translate\":\"海岸线的缓慢侵蚀是当地居民关心的问题。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83941,
- "Word": "down",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[daun]",
- "Translate": "减少;降低",
- "EnglishExplanation": "{\"word\":\"down\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The sun is going down.\",\"Translate\":\"太阳正在落下。\",\"Level\":\"A1\"},{\"Sentence\":\"She sat down on the chair.\",\"Translate\":\"她坐在椅子上。\",\"Level\":\"A1\"},{\"Sentence\":\"The price of the product is coming down.\",\"Translate\":\"产品的价格正在下降。\",\"Level\":\"B1\"},{\"Sentence\":\"The police are trying to calm the situation down.\",\"Translate\":\"警察正在试图平息局势。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have been scaled down significantly.\",\"Translate\":\"公司的利润已经大幅度缩减。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been written down in the company's handbook.\",\"Translate\":\"新政策已经被写进公司的手册里。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"down\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The sun is going down.\",\"Translate\":\"太阳正在落下。\",\"Level\":\"A1\"},{\"Sentence\":\"She sat down on the chair.\",\"Translate\":\"她坐在椅子上。\",\"Level\":\"A1\"},{\"Sentence\":\"The price of the product is coming down.\",\"Translate\":\"产品的价格正在下降。\",\"Level\":\"B1\"},{\"Sentence\":\"The police are trying to calm the situation down.\",\"Translate\":\"警察正在试图平息局势。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have been scaled down significantly.\",\"Translate\":\"公司的利润已经大幅度缩减。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been written down in the company's handbook.\",\"Translate\":\"新政策已经被写进公司的手册里。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83942,
- "Word": "slow down",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "慢下来",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83943,
- "Word": "stop",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[stpp]",
- "Translate": "停下",
- "EnglishExplanation": "{\"word\":\"stop\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bus will stop at the next corner.\",\"Translate\":\"公交车将在下一个拐角处停下来。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stop making so much noise?\",\"Translate\":\"你能不要再发出这么大的噪音吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stopped to talk to her friend.\",\"Translate\":\"她停下来跟她的朋友聊天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stop producing this product next year.\",\"Translate\":\"这家公司明年将停止生产这个产品。\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy has been implemented to stop pollution.\",\"Translate\":\"新的政策已经实施以阻止污染。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked the students to stop chatting and focus on their work.\",\"Translate\":\"老师要求学生停止聊天,专注于他们的工作。\",\"Level\":\"B1\"},{\"Sentence\":\"The government has taken measures to stop the spread of the disease.\",\"Translate\":\"政府已经采取措施来阻止疾病的传播。\",\"Level\":\"C1\"},{\"Sentence\":\"The protesters were determined to stop the construction of the new highway.\",\"Translate\":\"抗议者们决心阻止新高速公路的建设。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"stop\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bus will stop at the next corner.\",\"Translate\":\"公交车将在下一个拐角处停下来。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stop making so much noise?\",\"Translate\":\"你能不要再发出这么大的噪音吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stopped to talk to her friend.\",\"Translate\":\"她停下来跟她的朋友聊天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stop producing this product next year.\",\"Translate\":\"这家公司明年将停止生产这个产品。\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy has been implemented to stop pollution.\",\"Translate\":\"新的政策已经实施以阻止污染。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked the students to stop chatting and focus on their work.\",\"Translate\":\"老师要求学生停止聊天,专注于他们的工作。\",\"Level\":\"B1\"},{\"Sentence\":\"The government has taken measures to stop the spread of the disease.\",\"Translate\":\"政府已经采取措施来阻止疾病的传播。\",\"Level\":\"C1\"},{\"Sentence\":\"The protesters were determined to stop the construction of the new highway.\",\"Translate\":\"抗议者们决心阻止新高速公路的建设。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83944,
- "Word": "Mrs",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['mISIz]",
- "Translate": "夫人",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83945,
- "Word": "early",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['3:li]",
- "Translate": "早到的",
- "EnglishExplanation": "{\"word\":\"early\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I woke up early to watch the sunrise.\",\"Translate\":\"我早早醒来观看日出。\",\"Level\":\"A1\"},{\"Sentence\":\"The early bird catches the worm.\",\"Translate\":\"早起的鸟儿有虫吃。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made an early diagnosis of the disease.\",\"Translate\":\"研究人员对该疾病进行了早期诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's early success was largely due to its innovative products.\",\"Translate\":\"公司的早期成功在很大程度上归功于其创新的产品。\",\"Level\":\"B1\"},{\"Sentence\":\"The early 20th century saw a significant shift in the global economic landscape.\",\"Translate\":\"20世纪初,全球经济格局发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The early adopters of the new technology were mostly tech enthusiasts.\",\"Translate\":\"新技术的早期采用者大多是科技爱好者。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"early\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I woke up early to watch the sunrise.\",\"Translate\":\"我早早醒来观看日出。\",\"Level\":\"A1\"},{\"Sentence\":\"The early bird catches the worm.\",\"Translate\":\"早起的鸟儿有虫吃。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made an early diagnosis of the disease.\",\"Translate\":\"研究人员对该疾病进行了早期诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's early success was largely due to its innovative products.\",\"Translate\":\"公司的早期成功在很大程度上归功于其创新的产品。\",\"Level\":\"B1\"},{\"Sentence\":\"The early 20th century saw a significant shift in the global economic landscape.\",\"Translate\":\"20世纪初,全球经济格局发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The early adopters of the new technology were mostly tech enthusiasts.\",\"Translate\":\"新技术的早期采用者大多是科技爱好者。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83946,
- "Word": "helmet",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[helmit]",
- "Translate": "头盔",
- "EnglishExplanation": "{\"word\":\"helmet\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The motorcyclist wore a helmet to protect his head.\",\"Translate\":\"骑摩托车的人戴着头盔保护头部。\",\"Level\":\"A2\"},{\"Sentence\":\"All cyclists are required to wear a helmet.\",\"Translate\":\"所有骑自行车的人都必须戴头盔。\",\"Level\":\"A2\"},{\"Sentence\":\"The firefighter's helmet was damaged in the blaze, but fortunately, it still protected his head.\",\"Translate\":\"消防员的头盔在火灾中受损,但幸运的是,它仍然保护了他的头部。\",\"Level\":\"B1\"},{\"Sentence\":\"The new helmet design provides enhanced protection for athletes in high-impact sports.\",\"Translate\":\"新的头盔设计为高冲击运动中的运动员提供了更好的保护。\",\"Level\":\"B1\"},{\"Sentence\":\"The vintage motorcycle collection included an array of helmets, each with its unique historical significance.\",\"Translate\":\"这款老式摩托车收藏品包括一系列头盔,每个头盔都有其独特的历史意义。\",\"Level\":\"C1\"},{\"Sentence\":\"The advanced helmet technology has been adopted by various professional sports teams to minimize injury risks.\",\"Translate\":\"先进的头盔技术已被多支职业运动队采用,以尽量减少受伤风险。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"helmet\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The motorcyclist wore a helmet to protect his head.\",\"Translate\":\"骑摩托车的人戴着头盔保护头部。\",\"Level\":\"A2\"},{\"Sentence\":\"All cyclists are required to wear a helmet.\",\"Translate\":\"所有骑自行车的人都必须戴头盔。\",\"Level\":\"A2\"},{\"Sentence\":\"The firefighter's helmet was damaged in the blaze, but fortunately, it still protected his head.\",\"Translate\":\"消防员的头盔在火灾中受损,但幸运的是,它仍然保护了他的头部。\",\"Level\":\"B1\"},{\"Sentence\":\"The new helmet design provides enhanced protection for athletes in high-impact sports.\",\"Translate\":\"新的头盔设计为高冲击运动中的运动员提供了更好的保护。\",\"Level\":\"B1\"},{\"Sentence\":\"The vintage motorcycle collection included an array of helmets, each with its unique historical significance.\",\"Translate\":\"这款老式摩托车收藏品包括一系列头盔,每个头盔都有其独特的历史意义。\",\"Level\":\"C1\"},{\"Sentence\":\"The advanced helmet technology has been adopted by various professional sports teams to minimize injury risks.\",\"Translate\":\"先进的头盔技术已被多支职业运动队采用,以尽量减少受伤风险。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83947,
- "Word": "must",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[mast]",
- "Translate": "必须",
- "EnglishExplanation": "{\"word\":\"must\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"You must try this cake, it's delicious.\",\"Translate\":\"你一定要试试这个蛋糕,非常好吃。\",\"Level\":\"A2\"},{\"Sentence\":\"She must be very tired after working all night.\",\"Translate\":\"她工作了一整夜,一定很累。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy must be implemented by the end of the month.\",\"Translate\":\"新政策必须在本月底前实施。\",\"Level\":\"B2\"},{\"Sentence\":\"The evidence must be analyzed carefully to draw a conclusion.\",\"Translate\":\"必须仔细分析证据才能得出结论。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's success must be attributed to its innovative approach.\",\"Translate\":\"公司的成功必须归功于其创新的方法。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"must\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"You must try this cake, it's delicious.\",\"Translate\":\"你一定要试试这个蛋糕,非常好吃。\",\"Level\":\"A2\"},{\"Sentence\":\"She must be very tired after working all night.\",\"Translate\":\"她工作了一整夜,一定很累。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy must be implemented by the end of the month.\",\"Translate\":\"新政策必须在本月底前实施。\",\"Level\":\"B2\"},{\"Sentence\":\"The evidence must be analyzed carefully to draw a conclusion.\",\"Translate\":\"必须仔细分析证据才能得出结论。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's success must be attributed to its innovative approach.\",\"Translate\":\"公司的成功必须归功于其创新的方法。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83948,
- "Word": "wear",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[wea(r)]",
- "Translate": "戴",
- "EnglishExplanation": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83949,
- "Word": "attention",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[a'tenfn]",
- "Translate": "注意",
- "EnglishExplanation": "{\"word\":\"attention\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The teacher asked for the students' attention.\",\"Translate\":\"老师要求学生们注意听讲。\",\"Level\":\"A2\"},{\"Sentence\":\"She paid close attention to the instructions.\",\"Translate\":\"她密切关注着指示。\",\"Level\":\"A2\"},{\"Sentence\":\"The company is attracting a lot of attention with its new product.\",\"Translate\":\"这家公司的新产品吸引了很多关注。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of color drew my attention to the painting.\",\"Translate\":\"艺术家对色彩的运用吸引了我的注意力到这幅画上。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture on artificial intelligence garnered significant attention from the academic community.\",\"Translate\":\"教授关于人工智能的讲座引起了学术界的广泛关注。\",\"Level\":\"C1\"},{\"Sentence\":\"The subtle nuances in her argument demanded the audience's undivided attention.\",\"Translate\":\"她论点中的微妙之处要求观众全神贯注。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"attention\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The teacher asked for the students' attention.\",\"Translate\":\"老师要求学生们注意听讲。\",\"Level\":\"A2\"},{\"Sentence\":\"She paid close attention to the instructions.\",\"Translate\":\"她密切关注着指示。\",\"Level\":\"A2\"},{\"Sentence\":\"The company is attracting a lot of attention with its new product.\",\"Translate\":\"这家公司的新产品吸引了很多关注。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of color drew my attention to the painting.\",\"Translate\":\"艺术家对色彩的运用吸引了我的注意力到这幅画上。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture on artificial intelligence garnered significant attention from the academic community.\",\"Translate\":\"教授关于人工智能的讲座引起了学术界的广泛关注。\",\"Level\":\"C1\"},{\"Sentence\":\"The subtle nuances in her argument demanded the audience's undivided attention.\",\"Translate\":\"她论点中的微妙之处要求观众全神贯注。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83950,
- "Word": "pay attention to",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "注意",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83951,
- "Word": "traffic",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['traefik]",
- "Translate": "交通",
- "EnglishExplanation": "{\"word\":\"traffic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic in the city is very heavy.\",\"Translate\":\"城市里的交通很拥堵。\",\"Level\":\"A2\"},{\"Sentence\":\"We were stuck in traffic for hours.\",\"Translate\":\"我们被堵在路上几个小时。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to reduce traffic congestion in urban areas.\",\"Translate\":\"新政策旨在减少城市地区的交通拥堵。\",\"Level\":\"B2\"},{\"Sentence\":\"The traffic management system has been upgraded to improve flow and reduce congestion.\",\"Translate\":\"交通管理系统已经升级,以改善交通流并减少拥堵。\",\"Level\":\"C1\"},{\"Sentence\":\"The city's traffic infrastructure is being revamped to accommodate the growing population.\",\"Translate\":\"城市的交通基础设施正在改造,以适应日益增长的人口。\",\"Level\":\"C1\"},{\"Sentence\":\"There was a lot of traffic on the highway.\",\"Translate\":\"高速公路上有许多交通。\",\"Level\":\"A2\"}]}",
- "ExampleSentence": "{\"word\":\"traffic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic in the city is very heavy.\",\"Translate\":\"城市里的交通很拥堵。\",\"Level\":\"A2\"},{\"Sentence\":\"We were stuck in traffic for hours.\",\"Translate\":\"我们被堵在路上几个小时。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to reduce traffic congestion in urban areas.\",\"Translate\":\"新政策旨在减少城市地区的交通拥堵。\",\"Level\":\"B2\"},{\"Sentence\":\"The traffic management system has been upgraded to improve flow and reduce congestion.\",\"Translate\":\"交通管理系统已经升级,以改善交通流并减少拥堵。\",\"Level\":\"C1\"},{\"Sentence\":\"The city's traffic infrastructure is being revamped to accommodate the growing population.\",\"Translate\":\"城市的交通基础设施正在改造,以适应日益增长的人口。\",\"Level\":\"C1\"},{\"Sentence\":\"There was a lot of traffic on the highway.\",\"Translate\":\"高速公路上有许多交通。\",\"Level\":\"A2\"}]}",
- "Sort": 0
- },
- {
- "ID": 83952,
- "Word": "traffic lights",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "交通信号灯",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83953,
- "Word": "Munich",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[mjuinik]",
- "Translate": "慕尼黑(德国城市)",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83954,
- "Word": "Germany",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['d33:mani]",
- "Translate": "德国",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83955,
- "Word": "Alaska",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[a'laeska]",
- "Translate": "阿拉斯加州(美国)",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83956,
- "Word": "sled",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[sled]",
- "Translate": "雪橇",
- "EnglishExplanation": "{\"word\":\"sled\",\"CEFR_Level\":\"B1\",\"Sentences\":[\n{\"Sentence\":\"The children love to sled down the hill.\",\"Translate\":\"孩子们喜欢从山坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"She sled down the snowy hill on her new sled.\",\"Translate\":\"她乘坐她的新的雪橇从雪坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"Sled racing is a popular winter sport.\",\"Translate\":\"雪橇比赛是一项流行的冬季运动。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The team practiced their sled handling skills.\",\"Translate\":\"团队练习了他们的雪橇操控技巧。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The athletes competed in the luge sled event at the Winter Olympics.\",\"Translate\":\"运动员们在冬季奥运会的单人雪橇项目中竞争。\",\"Level\":\"C1\"},\n{\"Sentence\":\"The design of the sled allowed it to reach high speeds.\",\"Translate\":\"雪橇的设计使其能够达到很高的速度。\",\"Level\":\"C1\"}\n]}",
- "ExampleSentence": "{\"word\":\"sled\",\"CEFR_Level\":\"B1\",\"Sentences\":[\n{\"Sentence\":\"The children love to sled down the hill.\",\"Translate\":\"孩子们喜欢从山坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"She sled down the snowy hill on her new sled.\",\"Translate\":\"她乘坐她的新的雪橇从雪坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"Sled racing is a popular winter sport.\",\"Translate\":\"雪橇比赛是一项流行的冬季运动。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The team practiced their sled handling skills.\",\"Translate\":\"团队练习了他们的雪橇操控技巧。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The athletes competed in the luge sled event at the Winter Olympics.\",\"Translate\":\"运动员们在冬季奥运会的单人雪橇项目中竞争。\",\"Level\":\"C1\"},\n{\"Sentence\":\"The design of the sled allowed it to reach high speeds.\",\"Translate\":\"雪橇的设计使其能够达到很高的速度。\",\"Level\":\"C1\"}\n]}",
- "Sort": 0
- },
- {
- "ID": 83957,
- "Word": "fast",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[faist]",
- "Translate": "快",
- "EnglishExplanation": "{\"word\":\"fast\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The car is very fast.\",\"Translate\":\"这辆车非常快。\",\"Level\":\"A1\"},{\"Sentence\":\"She runs fast.\",\"Translate\":\"她跑得很快。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is too fast to jump onto.\",\"Translate\":\"火车太快了,跳上去很危险。\",\"Level\":\"B1\"},{\"Sentence\":\"The kids were held fast by their parents.\",\"Translate\":\"孩子们被他们的父母紧紧抱住。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has fast become a leader in the industry.\",\"Translate\":\"这家公司迅速成为行业领袖。\",\"Level\":\"C1\"},{\"Sentence\":\"The two friends fast became inseparable.\",\"Translate\":\"这两个朋友很快就形影不离了。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"fast\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The car is very fast.\",\"Translate\":\"这辆车非常快。\",\"Level\":\"A1\"},{\"Sentence\":\"She runs fast.\",\"Translate\":\"她跑得很快。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is too fast to jump onto.\",\"Translate\":\"火车太快了,跳上去很危险。\",\"Level\":\"B1\"},{\"Sentence\":\"The kids were held fast by their parents.\",\"Translate\":\"孩子们被他们的父母紧紧抱住。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has fast become a leader in the industry.\",\"Translate\":\"这家公司迅速成为行业领袖。\",\"Level\":\"C1\"},{\"Sentence\":\"The two friends fast became inseparable.\",\"Translate\":\"这两个朋友很快就形影不离了。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83958,
- "Word": "ferry",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[feri]",
- "Translate": "轮渡",
- "EnglishExplanation": "{\"word\":\"ferry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We took a ferry across the river.\",\"Translate\":\"我们乘渡轮过河。\",\"Level\":\"A2\"},{\"Sentence\":\"The ferry service operates daily.\",\"Translate\":\"渡轮服务每天运营。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has expanded its ferry services to several new destinations.\",\"Translate\":\"这家公司已将其渡轮服务扩展到几个新的目的地。\",\"Level\":\"B1\"},{\"Sentence\":\"Ferry tickets can be booked online in advance.\",\"Translate\":\"渡轮票可以提前在线预订。\",\"Level\":\"B1\"},{\"Sentence\":\"The historical significance of the ferry route is well-documented.\",\"Translate\":\"这条渡轮航线的历史意义有据可查。\",\"Level\":\"C1\"},{\"Sentence\":\"Operating a ferry during a storm requires great skill and caution.\",\"Translate\":\"在暴风雨中操作渡轮需要极大的技巧和谨慎。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"ferry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We took a ferry across the river.\",\"Translate\":\"我们乘渡轮过河。\",\"Level\":\"A2\"},{\"Sentence\":\"The ferry service operates daily.\",\"Translate\":\"渡轮服务每天运营。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has expanded its ferry services to several new destinations.\",\"Translate\":\"这家公司已将其渡轮服务扩展到几个新的目的地。\",\"Level\":\"B1\"},{\"Sentence\":\"Ferry tickets can be booked online in advance.\",\"Translate\":\"渡轮票可以提前在线预订。\",\"Level\":\"B1\"},{\"Sentence\":\"The historical significance of the ferry route is well-documented.\",\"Translate\":\"这条渡轮航线的历史意义有据可查。\",\"Level\":\"C1\"},{\"Sentence\":\"Operating a ferry during a storm requires great skill and caution.\",\"Translate\":\"在暴风雨中操作渡轮需要极大的技巧和谨慎。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83959,
- "Word": "Papa Westray",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "[,paipa 'westrel]",
- "Translate": "帕帕韦斯特雷岛",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83960,
- "Word": "Scotland",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": "['skptland]",
- "Translate": "苏格兰",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83961,
- "Word": "visit",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "['vIzit]",
- "Translate": "拜访",
- "EnglishExplanation": "{\"word\":\"visit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will visit my friend tomorrow.\",\"Translate\":\"我明天将拜访我的朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"She visited the museum last week.\",\"Translate\":\"她上周参观了博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The tourists visited many historical sites during their trip.\",\"Translate\":\"游客们在旅行期间参观了许多历史遗址。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will visit the factory to inspect the production line.\",\"Translate\":\"公司将参观工厂以检查生产线。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture visited the topic of climate change in great detail.\",\"Translate\":\"教授的讲座详细探讨了气候变化的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's latest installation visits the theme of identity and culture.\",\"Translate\":\"艺术家的最新装置作品探讨了身份和文化的主题。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"visit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will visit my friend tomorrow.\",\"Translate\":\"我明天将拜访我的朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"She visited the museum last week.\",\"Translate\":\"她上周参观了博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The tourists visited many historical sites during their trip.\",\"Translate\":\"游客们在旅行期间参观了许多历史遗址。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will visit the factory to inspect the production line.\",\"Translate\":\"公司将参观工厂以检查生产线。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture visited the topic of climate change in great detail.\",\"Translate\":\"教授的讲座详细探讨了气候变化的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's latest installation visits the theme of identity and culture.\",\"Translate\":\"艺术家的最新装置作品探讨了身份和文化的主题。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83962,
- "Word": "film",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[film]",
- "Translate": "电影",
- "EnglishExplanation": "{\"word\":\"film\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students watched a film about the history of China.\",\"Translate\":\"学生们观看了一部关于中国历史的电影。\",\"Level\":\"A2\"},{\"Sentence\":\"She has acted in several film productions.\",\"Translate\":\"她曾在几部电影制作中演出。\",\"Level\":\"B1\"},{\"Sentence\":\"The film festival featured a diverse range of international films.\",\"Translate\":\"电影节展示了各种各样的国际电影。\",\"Level\":\"B2\"},{\"Sentence\":\"The cinematographer is known for his innovative film techniques.\",\"Translate\":\"这位摄影师以其创新的电影技术而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The film was shot on location in various parts of the world.\",\"Translate\":\"这部电影是在世界各地的不同地点拍摄的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"film\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students watched a film about the history of China.\",\"Translate\":\"学生们观看了一部关于中国历史的电影。\",\"Level\":\"A2\"},{\"Sentence\":\"She has acted in several film productions.\",\"Translate\":\"她曾在几部电影制作中演出。\",\"Level\":\"B1\"},{\"Sentence\":\"The film festival featured a diverse range of international films.\",\"Translate\":\"电影节展示了各种各样的国际电影。\",\"Level\":\"B2\"},{\"Sentence\":\"The cinematographer is known for his innovative film techniques.\",\"Translate\":\"这位摄影师以其创新的电影技术而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The film was shot on location in various parts of the world.\",\"Translate\":\"这部电影是在世界各地的不同地点拍摄的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83963,
- "Word": "see a film",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "看电影",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83964,
- "Word": "trip",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[trip]",
- "Translate": "旅行",
- "EnglishExplanation": "{\"word\":\"trip\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The trip was fun.\",\"Translate\":\"这次旅行很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"We went on a trip to the beach.\",\"Translate\":\"我们去海滩旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The trip to Paris was more enjoyable than I expected.\",\"Translate\":\"去巴黎的旅行比我预期的更愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will trip over its own feet if it doesn't adapt to the changing market.\",\"Translate\":\"如果公司不适应不断变化的市场,它将会绊倒在自己的脚上。\",\"Level\":\"B1\"},{\"Sentence\":\"The hikers had to trip along the steep mountain path.\",\"Translate\":\"徒步旅行者不得不沿着陡峭的山路艰难行进。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy might trip up the progress of the project.\",\"Translate\":\"新政策可能会阻碍项目的进展。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"trip\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The trip was fun.\",\"Translate\":\"这次旅行很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"We went on a trip to the beach.\",\"Translate\":\"我们去海滩旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The trip to Paris was more enjoyable than I expected.\",\"Translate\":\"去巴黎的旅行比我预期的更愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will trip over its own feet if it doesn't adapt to the changing market.\",\"Translate\":\"如果公司不适应不断变化的市场,它将会绊倒在自己的脚上。\",\"Level\":\"B1\"},{\"Sentence\":\"The hikers had to trip along the steep mountain path.\",\"Translate\":\"徒步旅行者不得不沿着陡峭的山路艰难行进。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy might trip up the progress of the project.\",\"Translate\":\"新政策可能会阻碍项目的进展。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83965,
- "Word": "take a trip",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "去旅行",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83966,
- "Word": "supermarket",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "['sju:pama:kit]",
- "Translate": "超市",
- "EnglishExplanation": "{\"word\":\"supermarket\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the supermarket to buy some milk.\",\"Translate\":\"我要去超市买些牛奶。\",\"Level\":\"A2\"},{\"Sentence\":\"The supermarket is open until 10 PM.\",\"Translate\":\"超市营业到晚上10点。\",\"Level\":\"A2\"},{\"Sentence\":\"You can find a wide range of products in a supermarket.\",\"Translate\":\"你可以在超市找到各种各样的商品。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket is having a sale on fresh produce this week.\",\"Translate\":\"超市本周正在对新鲜农产品进行促销。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket chain has expanded its operations to several countries.\",\"Translate\":\"这家超市连锁店已经将其业务扩展到多个国家。\",\"Level\":\"C1\"},{\"Sentence\":\"The supermarket's logistics and supply chain management are highly efficient.\",\"Translate\":\"超市的物流和供应链管理非常高效。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"supermarket\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the supermarket to buy some milk.\",\"Translate\":\"我要去超市买些牛奶。\",\"Level\":\"A2\"},{\"Sentence\":\"The supermarket is open until 10 PM.\",\"Translate\":\"超市营业到晚上10点。\",\"Level\":\"A2\"},{\"Sentence\":\"You can find a wide range of products in a supermarket.\",\"Translate\":\"你可以在超市找到各种各样的商品。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket is having a sale on fresh produce this week.\",\"Translate\":\"超市本周正在对新鲜农产品进行促销。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket chain has expanded its operations to several countries.\",\"Translate\":\"这家超市连锁店已经将其业务扩展到多个国家。\",\"Level\":\"C1\"},{\"Sentence\":\"The supermarket's logistics and supply chain management are highly efficient.\",\"Translate\":\"超市的物流和供应链管理非常高效。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83967,
- "Word": "evening",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[ivnin]",
- "Translate": "晚上;傍晚",
- "EnglishExplanation": "{\"word\":\"evening\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will see you this evening.\",\"Translate\":\"我今晚会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The evening sun was shining brightly.\",\"Translate\":\"傍晚的阳光灿烂明亮。\",\"Level\":\"A2\"},{\"Sentence\":\"We had a lovely dinner in the evening.\",\"Translate\":\"我们在晚上享用了一顿美餐。\",\"Level\":\"B1\"},{\"Sentence\":\"The evening news is broadcast at 8 PM.\",\"Translate\":\"晚间新闻在晚上8点播出。\",\"Level\":\"B1\"},{\"Sentence\":\"The concert will take place on a warm summer evening.\",\"Translate\":\"音乐会将在一个温暖的夏夜举行。\",\"Level\":\"C1\"},{\"Sentence\":\"As the evening drew to a close, we said our goodbyes.\",\"Translate\":\"随着夜晚的结束,我们互相道别。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"evening\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will see you this evening.\",\"Translate\":\"我今晚会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The evening sun was shining brightly.\",\"Translate\":\"傍晚的阳光灿烂明亮。\",\"Level\":\"A2\"},{\"Sentence\":\"We had a lovely dinner in the evening.\",\"Translate\":\"我们在晚上享用了一顿美餐。\",\"Level\":\"B1\"},{\"Sentence\":\"The evening news is broadcast at 8 PM.\",\"Translate\":\"晚间新闻在晚上8点播出。\",\"Level\":\"B1\"},{\"Sentence\":\"The concert will take place on a warm summer evening.\",\"Translate\":\"音乐会将在一个温暖的夏夜举行。\",\"Level\":\"C1\"},{\"Sentence\":\"As the evening drew to a close, we said our goodbyes.\",\"Translate\":\"随着夜晚的结束,我们互相道别。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83968,
- "Word": "tonight",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[ta'nalt]",
- "Translate": "在今晚",
- "EnglishExplanation": "{\"word\":\"tonight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the party tonight.\",\"Translate\":\"我今晚要去参加聚会。\",\"Level\":\"A2\"},{\"Sentence\":\"The concert is scheduled for tonight.\",\"Translate\":\"音乐会定于今晚举行。\",\"Level\":\"A2\"},{\"Sentence\":\"We're planning a surprise for our friend tonight.\",\"Translate\":\"我们今晚正为我们的朋友计划一个惊喜。\",\"Level\":\"B1\"},{\"Sentence\":\"The forecast says there's a good chance of rain tonight.\",\"Translate\":\"天气预报说今晚很有可能下雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The debate is going to be broadcast live on television tonight, attracting a large audience.\",\"Translate\":\"今晚辩论将通过电视直播,吸引大量观众。\",\"Level\":\"C1\"},{\"Sentence\":\"Tonight's performance is expected to be the highlight of the festival, featuring renowned artists.\",\"Translate\":\"今晚的演出预计将成为音乐节的亮点,届时将有知名艺术家登台。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"tonight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the party tonight.\",\"Translate\":\"我今晚要去参加聚会。\",\"Level\":\"A2\"},{\"Sentence\":\"The concert is scheduled for tonight.\",\"Translate\":\"音乐会定于今晚举行。\",\"Level\":\"A2\"},{\"Sentence\":\"We're planning a surprise for our friend tonight.\",\"Translate\":\"我们今晚正为我们的朋友计划一个惊喜。\",\"Level\":\"B1\"},{\"Sentence\":\"The forecast says there's a good chance of rain tonight.\",\"Translate\":\"天气预报说今晚很有可能下雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The debate is going to be broadcast live on television tonight, attracting a large audience.\",\"Translate\":\"今晚辩论将通过电视直播,吸引大量观众。\",\"Level\":\"C1\"},{\"Sentence\":\"Tonight's performance is expected to be the highlight of the festival, featuring renowned artists.\",\"Translate\":\"今晚的演出预计将成为音乐节的亮点,届时将有知名艺术家登台。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83969,
- "Word": "tomorrow",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[ta'mprou]",
- "Translate": "明天",
- "EnglishExplanation": "{\"word\":\"tomorrow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will go to school tomorrow.\",\"Translate\":\"我明天去学校。\",\"Level\":\"A1\"},{\"Sentence\":\"The weather forecast says it will rain tomorrow.\",\"Translate\":\"天气预报说明天会下雨。\",\"Level\":\"A1\"},{\"Sentence\":\"We are going to have a test tomorrow, so I need to study tonight.\",\"Translate\":\"我们明天有考试,所以我今晚需要学习。\",\"Level\":\"A2\"},{\"Sentence\":\"Tomorrow is another day to make new plans.\",\"Translate\":\"明天是制定新计划的又一天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will announce its quarterly earnings tomorrow, which will likely impact the stock price.\",\"Translate\":\"公司明天将公布季度收益,这可能会影响股价。\",\"Level\":\"C1\"},{\"Sentence\":\"Tomorrow's meeting will be a crucial step in negotiating the merger between the two companies.\",\"Translate\":\"明天的会议将是两家公司之间谈判合并的关键一步。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"tomorrow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will go to school tomorrow.\",\"Translate\":\"我明天去学校。\",\"Level\":\"A1\"},{\"Sentence\":\"The weather forecast says it will rain tomorrow.\",\"Translate\":\"天气预报说明天会下雨。\",\"Level\":\"A1\"},{\"Sentence\":\"We are going to have a test tomorrow, so I need to study tonight.\",\"Translate\":\"我们明天有考试,所以我今晚需要学习。\",\"Level\":\"A2\"},{\"Sentence\":\"Tomorrow is another day to make new plans.\",\"Translate\":\"明天是制定新计划的又一天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will announce its quarterly earnings tomorrow, which will likely impact the stock price.\",\"Translate\":\"公司明天将公布季度收益,这可能会影响股价。\",\"Level\":\"C1\"},{\"Sentence\":\"Tomorrow's meeting will be a crucial step in negotiating the merger between the two companies.\",\"Translate\":\"明天的会议将是两家公司之间谈判合并的关键一步。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83970,
- "Word": "next week",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "下周",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83971,
- "Word": "dictionary",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "['dikanri]",
- "Translate": "词典",
- "EnglishExplanation": "{\"word\":\"dictionary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I need a dictionary to translate this sentence.\",\"Translate\":\"我需要一本词典来翻译这句话。\",\"Level\":\"A2\"},{\"Sentence\":\"The dictionary on my desk is very useful.\",\"Translate\":\"我桌子上的词典非常有用。\",\"Level\":\"A2\"},{\"Sentence\":\"Using a dictionary can help you improve your vocabulary.\",\"Translate\":\"使用词典可以帮助你提高词汇量。\",\"Level\":\"B1\"},{\"Sentence\":\"The dictionary provides many example sentences for each word.\",\"Translate\":\"这本词典为每个单词提供了许多例句。\",\"Level\":\"B1\"},{\"Sentence\":\"The online dictionary offers a comprehensive resource for language learners.\",\"Translate\":\"在线词典为语言学习者提供了全面的资源。\",\"Level\":\"C1\"},{\"Sentence\":\"Compiling a dictionary requires a vast amount of linguistic data.\",\"Translate\":\"编纂词典需要大量的语言数据。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"dictionary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I need a dictionary to translate this sentence.\",\"Translate\":\"我需要一本词典来翻译这句话。\",\"Level\":\"A2\"},{\"Sentence\":\"The dictionary on my desk is very useful.\",\"Translate\":\"我桌子上的词典非常有用。\",\"Level\":\"A2\"},{\"Sentence\":\"Using a dictionary can help you improve your vocabulary.\",\"Translate\":\"使用词典可以帮助你提高词汇量。\",\"Level\":\"B1\"},{\"Sentence\":\"The dictionary provides many example sentences for each word.\",\"Translate\":\"这本词典为每个单词提供了许多例句。\",\"Level\":\"B1\"},{\"Sentence\":\"The online dictionary offers a comprehensive resource for language learners.\",\"Translate\":\"在线词典为语言学习者提供了全面的资源。\",\"Level\":\"C1\"},{\"Sentence\":\"Compiling a dictionary requires a vast amount of linguistic data.\",\"Translate\":\"编纂词典需要大量的语言数据。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83972,
- "Word": "comic",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[kpmik]",
- "Translate": "滑稽的",
- "EnglishExplanation": "{\"word\":\"comic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The comic book was very popular among children.\",\"Translate\":\"这本漫画书在孩子们中很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"He is a famous comic actor.\",\"Translate\":\"他是一位著名的喜剧演员。\",\"Level\":\"A2\"},{\"Sentence\":\"The comic strip in the newspaper is always entertaining.\",\"Translate\":\"报纸上的连环漫画总是很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The comic relief in the movie was well-received.\",\"Translate\":\"电影中的喜剧缓解很受欢迎。\",\"Level\":\"B1\"},{\"Sentence\":\"The comedian's comic timing was impeccable.\",\"Translate\":\"这位喜剧演员的喜剧时机无可挑剔。\",\"Level\":\"C1\"},{\"Sentence\":\"The graphic novel is a complex comic narrative.\",\"Translate\":\"这部图形小说是一个复杂的漫画叙事。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"comic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The comic book was very popular among children.\",\"Translate\":\"这本漫画书在孩子们中很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"He is a famous comic actor.\",\"Translate\":\"他是一位著名的喜剧演员。\",\"Level\":\"A2\"},{\"Sentence\":\"The comic strip in the newspaper is always entertaining.\",\"Translate\":\"报纸上的连环漫画总是很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The comic relief in the movie was well-received.\",\"Translate\":\"电影中的喜剧缓解很受欢迎。\",\"Level\":\"B1\"},{\"Sentence\":\"The comedian's comic timing was impeccable.\",\"Translate\":\"这位喜剧演员的喜剧时机无可挑剔。\",\"Level\":\"C1\"},{\"Sentence\":\"The graphic novel is a complex comic narrative.\",\"Translate\":\"这部图形小说是一个复杂的漫画叙事。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83973,
- "Word": "comic book",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "连环画册",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83974,
- "Word": "word",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[w3:d]",
- "Translate": "单词",
- "EnglishExplanation": "{\"word\":\"experience\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"She has a lot of experience in teaching English.\",\"Translate\":\"她有丰富的英语教学经验。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is looking for someone with experience in marketing.\",\"Translate\":\"公司正在寻找有市场营销经验的人。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been shaped by our experience of dealing with similar issues in the past.\",\"Translate\":\"新政策的制定受到了我们过去处理类似问题的经验的影响。\",\"Level\":\"B2\"},{\"Sentence\":\"Gaining experience in different fields can broaden one's perspective.\",\"Translate\":\"在不同领域积累经验可以拓宽人的视野。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's extensive experience in research has led to numerous groundbreaking discoveries.\",\"Translate\":\"教授在研究方面的丰富经验带来了许多开创性的发现。\",\"Level\":\"C1\"},{\"Sentence\":\"The experience of living abroad can be both challenging and enriching.\",\"Translate\":\"在国外生活的经历既具有挑战性,又能丰富个人阅历。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"experience\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"She has a lot of experience in teaching English.\",\"Translate\":\"她有丰富的英语教学经验。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is looking for someone with experience in marketing.\",\"Translate\":\"公司正在寻找有市场营销经验的人。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been shaped by our experience of dealing with similar issues in the past.\",\"Translate\":\"新政策的制定受到了我们过去处理类似问题的经验的影响。\",\"Level\":\"B2\"},{\"Sentence\":\"Gaining experience in different fields can broaden one's perspective.\",\"Translate\":\"在不同领域积累经验可以拓宽人的视野。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's extensive experience in research has led to numerous groundbreaking discoveries.\",\"Translate\":\"教授在研究方面的丰富经验带来了许多开创性的发现。\",\"Level\":\"C1\"},{\"Sentence\":\"The experience of living abroad can be both challenging and enriching.\",\"Translate\":\"在国外生活的经历既具有挑战性,又能丰富个人阅历。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83975,
- "Word": "word book",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "单词书",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83976,
- "Word": "postcard",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[paustkaid]",
- "Translate": "明信片",
- "EnglishExplanation": "{\"word\":\"postcard\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I bought a postcard of the Great Wall.\",\"Translate\":\"我买了一张长城的明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"She sent me a postcard from Paris.\",\"Translate\":\"她从巴黎寄给我一张明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"The postcard has a beautiful picture of the beach.\",\"Translate\":\"这张明信片有一张美丽的海滩图片。\",\"Level\":\"A2\"},{\"Sentence\":\"I like to collect postcards from different countries.\",\"Translate\":\"我喜欢收集来自不同国家的明信片。\",\"Level\":\"A2\"},{\"Sentence\":\"The museum gift shop sells postcards with famous paintings.\",\"Translate\":\"博物馆礼品店出售印有著名画作的明信片。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a detailed message on the back of the postcard.\",\"Translate\":\"她在明信片的背面写了一条详细的信息。\",\"Level\":\"B1\"},{\"Sentence\":\"The postcard industry has seen a resurgence with the rise of tourism.\",\"Translate\":\"随着旅游业的兴起,明信片行业经历了复兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's postcards were highly sought after by collectors.\",\"Translate\":\"艺术家的明信片受到收藏家的高度追捧。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"postcard\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I bought a postcard of the Great Wall.\",\"Translate\":\"我买了一张长城的明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"She sent me a postcard from Paris.\",\"Translate\":\"她从巴黎寄给我一张明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"The postcard has a beautiful picture of the beach.\",\"Translate\":\"这张明信片有一张美丽的海滩图片。\",\"Level\":\"A2\"},{\"Sentence\":\"I like to collect postcards from different countries.\",\"Translate\":\"我喜欢收集来自不同国家的明信片。\",\"Level\":\"A2\"},{\"Sentence\":\"The museum gift shop sells postcards with famous paintings.\",\"Translate\":\"博物馆礼品店出售印有著名画作的明信片。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a detailed message on the back of the postcard.\",\"Translate\":\"她在明信片的背面写了一条详细的信息。\",\"Level\":\"B1\"},{\"Sentence\":\"The postcard industry has seen a resurgence with the rise of tourism.\",\"Translate\":\"随着旅游业的兴起,明信片行业经历了复兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's postcards were highly sought after by collectors.\",\"Translate\":\"艺术家的明信片受到收藏家的高度追捧。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83977,
- "Word": "lesson",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[lesn]",
- "Translate": "课",
- "EnglishExplanation": "{\"word\":\"lesson\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Today we learned a new lesson.\",\"Translate\":\"今天我们学了一个新课程。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us a lot of homework for the next lesson.\",\"Translate\":\"老师给我们布置了许多作业,留到下节课。\",\"Level\":\"A1\"},{\"Sentence\":\"She's been having piano lessons for three years.\",\"Translate\":\"她已经上钢琴课三年了。\",\"Level\":\"B1\"},{\"Sentence\":\"The accident taught me a valuable lesson about road safety.\",\"Translate\":\"那次事故让我学到了关于道路安全的一个宝贵教训。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial struggles served as a lesson to its competitors about the importance of diversification.\",\"Translate\":\"该公司的财务困境对竞争对手来说是一个关于多元化重要性的教训。\",\"Level\":\"C1\"},{\"Sentence\":\"The historical event provided a sobering lesson in the dangers of unchecked nationalism.\",\"Translate\":\"这段历史事件给人们敲响了警钟,提醒人们注意不受制约的民族主义的危险。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"lesson\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Today we learned a new lesson.\",\"Translate\":\"今天我们学了一个新课程。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us a lot of homework for the next lesson.\",\"Translate\":\"老师给我们布置了许多作业,留到下节课。\",\"Level\":\"A1\"},{\"Sentence\":\"She's been having piano lessons for three years.\",\"Translate\":\"她已经上钢琴课三年了。\",\"Level\":\"B1\"},{\"Sentence\":\"The accident taught me a valuable lesson about road safety.\",\"Translate\":\"那次事故让我学到了关于道路安全的一个宝贵教训。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial struggles served as a lesson to its competitors about the importance of diversification.\",\"Translate\":\"该公司的财务困境对竞争对手来说是一个关于多元化重要性的教训。\",\"Level\":\"C1\"},{\"Sentence\":\"The historical event provided a sobering lesson in the dangers of unchecked nationalism.\",\"Translate\":\"这段历史事件给人们敲响了警钟,提醒人们注意不受制约的民族主义的危险。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83978,
- "Word": "space",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[speis]",
- "Translate": "太空",
- "EnglishExplanation": "{\"word\":\"space\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"There is a lot of space in this room.\",\"Translate\":\"这个房间里有很多空间。\",\"Level\":\"A2\"},{\"Sentence\":\"Can you give me some space?\",\"Translate\":\"你能给我一些空间吗?\",\"Level\":\"A2\"},{\"Sentence\":\"The company is looking to expand into new markets and create more space for growth.\",\"Translate\":\"公司正在寻找扩展到新的市场并为增长创造更多空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to create a more comfortable space for employees to work.\",\"Translate\":\"新政策旨在为员工创造一个更舒适的工作空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of negative space in the painting created a sense of depth and complexity.\",\"Translate\":\"艺术家在画作中使用负空间创造了一种深度和复杂感。\",\"Level\":\"C1\"},{\"Sentence\":\"The futuristic city was designed with a focus on green space and sustainable living.\",\"Translate\":\"这座未来主义城市的设计注重绿色空间和可持续生活。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"space\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"There is a lot of space in this room.\",\"Translate\":\"这个房间里有很多空间。\",\"Level\":\"A2\"},{\"Sentence\":\"Can you give me some space?\",\"Translate\":\"你能给我一些空间吗?\",\"Level\":\"A2\"},{\"Sentence\":\"The company is looking to expand into new markets and create more space for growth.\",\"Translate\":\"公司正在寻找扩展到新的市场并为增长创造更多空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to create a more comfortable space for employees to work.\",\"Translate\":\"新政策旨在为员工创造一个更舒适的工作空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of negative space in the painting created a sense of depth and complexity.\",\"Translate\":\"艺术家在画作中使用负空间创造了一种深度和复杂感。\",\"Level\":\"C1\"},{\"Sentence\":\"The futuristic city was designed with a focus on green space and sustainable living.\",\"Translate\":\"这座未来主义城市的设计注重绿色空间和可持续生活。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83979,
- "Word": "travel",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[traevl]",
- "Translate": "(尤指长途)旅行",
- "EnglishExplanation": "{\"word\":\"travel\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I love to travel during my vacation.\",\"Translate\":\"我喜欢在假期旅行。\",\"Level\":\"A2\"},{\"Sentence\":\"She has traveled to many countries.\",\"Translate\":\"她已经去过很多国家了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy will facilitate travel between the two countries.\",\"Translate\":\"新政策将促进两国之间的旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"As a travel writer, she has traveled extensively throughout her career.\",\"Translate\":\"作为一名旅行作家,她在职业生涯中广泛旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"The travel industry is expected to recover slowly after the pandemic.\",\"Translate\":\"预计旅游业将在疫情后缓慢复苏。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's travel expenses were scrutinized by the auditors.\",\"Translate\":\"公司的差旅费被审计人员仔细审查。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"travel\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I love to travel during my vacation.\",\"Translate\":\"我喜欢在假期旅行。\",\"Level\":\"A2\"},{\"Sentence\":\"She has traveled to many countries.\",\"Translate\":\"她已经去过很多国家了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy will facilitate travel between the two countries.\",\"Translate\":\"新政策将促进两国之间的旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"As a travel writer, she has traveled extensively throughout her career.\",\"Translate\":\"作为一名旅行作家,她在职业生涯中广泛旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"The travel industry is expected to recover slowly after the pandemic.\",\"Translate\":\"预计旅游业将在疫情后缓慢复苏。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's travel expenses were scrutinized by the auditors.\",\"Translate\":\"公司的差旅费被审计人员仔细审查。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83980,
- "Word": "half",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[haif]",
- "Translate": "一半",
- "EnglishExplanation": "{\"word\":\"half\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bottle is half empty.\",\"Translate\":\"瓶子一半是空的。\",\"Level\":\"A1\"},{\"Sentence\":\"She ate half of the pizza.\",\"Translate\":\"她吃了披萨的一半。\",\"Level\":\"A1\"},{\"Sentence\":\"The cake is cut into halves.\",\"Translate\":\"蛋糕被切成两半。\",\"Level\":\"B1\"},{\"Sentence\":\"The team won by half a point.\",\"Translate\":\"这个队伍以半分的优势获胜。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have halved in the last quarter.\",\"Translate\":\"公司的利润在上个季度减少了一半。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been met with half-hearted support from the community.\",\"Translate\":\"新政策得到了社区不热烈的支持。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"half\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bottle is half empty.\",\"Translate\":\"瓶子一半是空的。\",\"Level\":\"A1\"},{\"Sentence\":\"She ate half of the pizza.\",\"Translate\":\"她吃了披萨的一半。\",\"Level\":\"A1\"},{\"Sentence\":\"The cake is cut into halves.\",\"Translate\":\"蛋糕被切成两半。\",\"Level\":\"B1\"},{\"Sentence\":\"The team won by half a point.\",\"Translate\":\"这个队伍以半分的优势获胜。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have halved in the last quarter.\",\"Translate\":\"公司的利润在上个季度减少了一半。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been met with half-hearted support from the community.\",\"Translate\":\"新政策得到了社区不热烈的支持。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83981,
- "Word": "price",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[prais]",
- "Translate": "价格",
- "EnglishExplanation": "{\"word\":\"price\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The price of this book is 20 dollars.\",\"Translate\":\"这本书的价格是20美元。\",\"Level\":\"A1\"},{\"Sentence\":\"I need to check the price before I buy it.\",\"Translate\":\"在购买之前,我需要查看价格。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will increase the price of their products next month.\",\"Translate\":\"公司将在下个月提高产品的价格。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of oil has fluctuated significantly over the past year.\",\"Translate\":\"过去一年,石油价格波动很大。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of success is often hard work and dedication.\",\"Translate\":\"成功的代价往往是辛勤的工作和奉献。\",\"Level\":\"C1\"},{\"Sentence\":\"The art market is known for its volatile price movements.\",\"Translate\":\"艺术品市场以其价格波动剧烈而闻名。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"price\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The price of this book is 20 dollars.\",\"Translate\":\"这本书的价格是20美元。\",\"Level\":\"A1\"},{\"Sentence\":\"I need to check the price before I buy it.\",\"Translate\":\"在购买之前,我需要查看价格。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will increase the price of their products next month.\",\"Translate\":\"公司将在下个月提高产品的价格。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of oil has fluctuated significantly over the past year.\",\"Translate\":\"过去一年,石油价格波动很大。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of success is often hard work and dedication.\",\"Translate\":\"成功的代价往往是辛勤的工作和奉献。\",\"Level\":\"C1\"},{\"Sentence\":\"The art market is known for its volatile price movements.\",\"Translate\":\"艺术品市场以其价格波动剧烈而闻名。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83982,
- "Word": "Mid-Autumn Festival",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[mid's:tam'festivl]",
- "Translate": "中秋节",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83983,
- "Word": "together",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[ta'geoa(r)]",
- "Translate": "一起",
- "EnglishExplanation": "{\"word\":\"together\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"We are going to the movies together.\",\"Translate\":\"我们要一起去看电影。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's put the pieces together to see the whole picture.\",\"Translate\":\"让我们把这些碎片拼在一起看看全貌。\",\"Level\":\"A2\"},{\"Sentence\":\"The team worked together seamlessly to complete the project ahead of schedule.\",\"Translate\":\"团队合作无间,提前完成了项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The two companies are working together to develop a new technology.\",\"Translate\":\"两家公司正在合作开发一项新技术。\",\"Level\":\"B1\"},{\"Sentence\":\"As they grew together, their bond became unbreakable.\",\"Translate\":\"随着他们一起成长,他们的纽带变得牢不可破。\",\"Level\":\"C1\"},{\"Sentence\":\"The community came together to support the family in need.\",\"Translate\":\"社区团结起来支持需要帮助的家庭。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"together\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"We are going to the movies together.\",\"Translate\":\"我们要一起去看电影。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's put the pieces together to see the whole picture.\",\"Translate\":\"让我们把这些碎片拼在一起看看全貌。\",\"Level\":\"A2\"},{\"Sentence\":\"The team worked together seamlessly to complete the project ahead of schedule.\",\"Translate\":\"团队合作无间,提前完成了项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The two companies are working together to develop a new technology.\",\"Translate\":\"两家公司正在合作开发一项新技术。\",\"Level\":\"B1\"},{\"Sentence\":\"As they grew together, their bond became unbreakable.\",\"Translate\":\"随着他们一起成长,他们的纽带变得牢不可破。\",\"Level\":\"C1\"},{\"Sentence\":\"The community came together to support the family in need.\",\"Translate\":\"社区团结起来支持需要帮助的家庭。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83984,
- "Word": "get together",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "聚会",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83985,
- "Word": "mooncake",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "月饼",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83986,
- "Word": "poem",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "['pauim]",
- "Translate": "诗",
- "EnglishExplanation": "{\"word\":\"poem\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The student recited a beautiful poem in class.\",\"Translate\":\"那个学生在课堂上朗诵了一首美丽的诗。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a poem for her mother's birthday.\",\"Translate\":\"她为母亲的生日写了一首诗。\",\"Level\":\"B1\"},{\"Sentence\":\"The poet's use of imagery in the poem was striking.\",\"Translate\":\"诗人诗中使用的意象非常引人注目。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem explores themes of love and loss.\",\"Translate\":\"这首诗探讨了爱与失去的主题。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem's complex structure and symbolism require close reading.\",\"Translate\":\"这首诗复杂的结构和象征手法需要细读。\",\"Level\":\"C1\"},{\"Sentence\":\"The poet's use of metaphor in the poem adds layers of meaning.\",\"Translate\":\"诗人诗中使用的隐喻增加了多层含义。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"poem\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The student recited a beautiful poem in class.\",\"Translate\":\"那个学生在课堂上朗诵了一首美丽的诗。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a poem for her mother's birthday.\",\"Translate\":\"她为母亲的生日写了一首诗。\",\"Level\":\"B1\"},{\"Sentence\":\"The poet's use of imagery in the poem was striking.\",\"Translate\":\"诗人诗中使用的意象非常引人注目。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem explores themes of love and loss.\",\"Translate\":\"这首诗探讨了爱与失去的主题。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem's complex structure and symbolism require close reading.\",\"Translate\":\"这首诗复杂的结构和象征手法需要细读。\",\"Level\":\"C1\"},{\"Sentence\":\"The poet's use of metaphor in the poem adds layers of meaning.\",\"Translate\":\"诗人诗中使用的隐喻增加了多层含义。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83987,
- "Word": "moon",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": "[muin]",
- "Translate": "月亮",
- "EnglishExplanation": "{\"word\":\"moon\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The moon is shining brightly in the night sky.\",\"Translate\":\"月亮在夜空中闪耀着明亮的光芒。\",\"Level\":\"A1\"},{\"Sentence\":\"The astronauts walked on the moon during their mission.\",\"Translate\":\"宇航员在任务期间在月球上行走。\",\"Level\":\"A2\"},{\"Sentence\":\"The moon orbits the Earth in approximately 28 days.\",\"Translate\":\"月球大约每28天绕地球一圈。\",\"Level\":\"B1\"},{\"Sentence\":\"The full moon has a profound effect on the tides.\",\"Translate\":\"满月对潮汐有着深远的影响。\",\"Level\":\"B1\"},{\"Sentence\":\"The moon's surface is characterized by numerous craters and mountains.\",\"Translate\":\"月球表面以众多的陨石坑和山脉为特征。\",\"Level\":\"C1\"},{\"Sentence\":\"The moon's gravitational influence on the Earth is significant.\",\"Translate\":\"月球对地球的引力影响是显著的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"moon\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The moon is shining brightly in the night sky.\",\"Translate\":\"月亮在夜空中闪耀着明亮的光芒。\",\"Level\":\"A1\"},{\"Sentence\":\"The astronauts walked on the moon during their mission.\",\"Translate\":\"宇航员在任务期间在月球上行走。\",\"Level\":\"A2\"},{\"Sentence\":\"The moon orbits the Earth in approximately 28 days.\",\"Translate\":\"月球大约每28天绕地球一圈。\",\"Level\":\"B1\"},{\"Sentence\":\"The full moon has a profound effect on the tides.\",\"Translate\":\"满月对潮汐有着深远的影响。\",\"Level\":\"B1\"},{\"Sentence\":\"The moon's surface is characterized by numerous craters and mountains.\",\"Translate\":\"月球表面以众多的陨石坑和山脉为特征。\",\"Level\":\"C1\"},{\"Sentence\":\"The moon's gravitational influence on the Earth is significant.\",\"Translate\":\"月球对地球的引力影响是显著的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83988,
- "Word": "studies",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "['stadizl]",
- "Translate": "学习(三单)",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83989,
- "Word": "puzzle",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "['pAzl]",
- "Translate": "谜",
- "EnglishExplanation": "{\"word\":\"puzzle\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The teacher gave the students a puzzle to solve in their free time.\",\"Translate\":\"老师给学生一个谜题,让他们在空闲时间解开。\",\"Level\":\"B1\"},{\"Sentence\":\"She spent hours trying to complete the jigsaw puzzle.\",\"Translate\":\"她花了几个小时试图完成这个拼图游戏。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was faced with a complex puzzle that required careful analysis.\",\"Translate\":\"侦探面临一个复杂的谜题,需要仔细分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The escape room presented a challenging puzzle that the team worked together to solve.\",\"Translate\":\"逃脱室提供了一个具有挑战性的谜题,团队一起合作解决。\",\"Level\":\"B2\"},{\"Sentence\":\"The cryptic message was a puzzle that required a deep understanding of cryptography.\",\"Translate\":\"这个神秘的信息是一个谜题,需要对密码学有深入的了解。\",\"Level\":\"C1\"},{\"Sentence\":\"The professor's research presented a puzzle that had stumped experts for decades.\",\"Translate\":\"教授的研究提出了一个谜题,几十年来一直难倒专家。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"puzzle\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The teacher gave the students a puzzle to solve in their free time.\",\"Translate\":\"老师给学生一个谜题,让他们在空闲时间解开。\",\"Level\":\"B1\"},{\"Sentence\":\"She spent hours trying to complete the jigsaw puzzle.\",\"Translate\":\"她花了几个小时试图完成这个拼图游戏。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was faced with a complex puzzle that required careful analysis.\",\"Translate\":\"侦探面临一个复杂的谜题,需要仔细分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The escape room presented a challenging puzzle that the team worked together to solve.\",\"Translate\":\"逃脱室提供了一个具有挑战性的谜题,团队一起合作解决。\",\"Level\":\"B2\"},{\"Sentence\":\"The cryptic message was a puzzle that required a deep understanding of cryptography.\",\"Translate\":\"这个神秘的信息是一个谜题,需要对密码学有深入的了解。\",\"Level\":\"C1\"},{\"Sentence\":\"The professor's research presented a puzzle that had stumped experts for decades.\",\"Translate\":\"教授的研究提出了一个谜题,几十年来一直难倒专家。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83990,
- "Word": "hiking",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[halkin]",
- "Translate": "远足",
- "EnglishExplanation": "{\"word\":\"hiking\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We went hiking in the mountains last weekend.\",\"Translate\":\"上周末我们去山区徒步旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The hiking trail was challenging but the views were breathtaking.\",\"Translate\":\"徒步小径很有挑战性,但景色令人屏息。\",\"Level\":\"B1\"},{\"Sentence\":\"Having spent years hiking through various terrains, she has developed a keen sense of navigation.\",\"Translate\":\"多年来徒步于各种地形,她培养了敏锐的导航能力。\",\"Level\":\"B2\"},{\"Sentence\":\"The hiking expedition to the remote wilderness area required meticulous planning and physical endurance.\",\"Translate\":\"前往偏远荒野地区的徒步考察需要缜密的计划和身体的耐力。\",\"Level\":\"C1\"},{\"Sentence\":\"The hikers traversed the dense forest with the aid of a compass and topographical maps.\",\"Translate\":\"徒步者借助指南针和地形图穿越了茂密的森林。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"hiking\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We went hiking in the mountains last weekend.\",\"Translate\":\"上周末我们去山区徒步旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The hiking trail was challenging but the views were breathtaking.\",\"Translate\":\"徒步小径很有挑战性,但景色令人屏息。\",\"Level\":\"B1\"},{\"Sentence\":\"Having spent years hiking through various terrains, she has developed a keen sense of navigation.\",\"Translate\":\"多年来徒步于各种地形,她培养了敏锐的导航能力。\",\"Level\":\"B2\"},{\"Sentence\":\"The hiking expedition to the remote wilderness area required meticulous planning and physical endurance.\",\"Translate\":\"前往偏远荒野地区的徒步考察需要缜密的计划和身体的耐力。\",\"Level\":\"C1\"},{\"Sentence\":\"The hikers traversed the dense forest with the aid of a compass and topographical maps.\",\"Translate\":\"徒步者借助指南针和地形图穿越了茂密的森林。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83991,
- "Word": "pen pal",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "['pen pael]",
- "Translate": "笔友",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83992,
- "Word": "hobby",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "['hpbi]",
- "Translate": "业余爱好",
- "EnglishExplanation": "{\"word\":\"hobby\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"My hobby is reading books.\",\"Translate\":\"我的爱好是读书。\",\"Level\":\"A2\"},{\"Sentence\":\"She has many hobbies, including swimming and dancing.\",\"Translate\":\"她有许多爱好,包括游泳和跳舞。\",\"Level\":\"B1\"},{\"Sentence\":\"His hobby of collecting rare stamps has become a lifelong passion.\",\"Translate\":\"他收集稀有邮票的爱好已经成为了一生的热情。\",\"Level\":\"B2\"},{\"Sentence\":\"The hobby of astronomy requires a significant investment of time and resources.\",\"Translate\":\"天文学的爱好需要投入大量的时间和资源。\",\"Level\":\"C1\"},{\"Sentence\":\"As a hobby, she enjoys experimenting with different photography techniques.\",\"Translate\":\"作为一种爱好,她喜欢尝试不同的摄影技巧。\",\"Level\":\"B2\"},{\"Sentence\":\"The development of his hobby into a successful business was unexpected.\",\"Translate\":\"他的爱好发展成成功的事业是意料之外的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"hobby\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"My hobby is reading books.\",\"Translate\":\"我的爱好是读书。\",\"Level\":\"A2\"},{\"Sentence\":\"She has many hobbies, including swimming and dancing.\",\"Translate\":\"她有许多爱好,包括游泳和跳舞。\",\"Level\":\"B1\"},{\"Sentence\":\"His hobby of collecting rare stamps has become a lifelong passion.\",\"Translate\":\"他收集稀有邮票的爱好已经成为了一生的热情。\",\"Level\":\"B2\"},{\"Sentence\":\"The hobby of astronomy requires a significant investment of time and resources.\",\"Translate\":\"天文学的爱好需要投入大量的时间和资源。\",\"Level\":\"C1\"},{\"Sentence\":\"As a hobby, she enjoys experimenting with different photography techniques.\",\"Translate\":\"作为一种爱好,她喜欢尝试不同的摄影技巧。\",\"Level\":\"B2\"},{\"Sentence\":\"The development of his hobby into a successful business was unexpected.\",\"Translate\":\"他的爱好发展成成功的事业是意料之外的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83993,
- "Word": "jasmine",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "['d3aezmin]",
- "Translate": "茉莉",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83994,
- "Word": "idea",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[ar'dia]",
- "Translate": "想法;主意",
- "EnglishExplanation": "{\"word\":\"idea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I have an idea for our project.\",\"Translate\":\"我对我们的项目有一个想法。\",\"Level\":\"A2\"},{\"Sentence\":\"The idea of traveling around the world is exciting.\",\"Translate\":\"环游世界的想法很令人兴奋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy is based on the idea that everyone should contribute.\",\"Translate\":\"新政策基于每个人都应该做出贡献的理念。\",\"Level\":\"B2\"},{\"Sentence\":\"The idea that robots will replace humans is a topic of debate.\",\"Translate\":\"机器人将取代人类的观点是一个有争议的话题。\",\"Level\":\"C1\"},{\"Sentence\":\"The underlying idea of the theory is complex.\",\"Translate\":\"该理论的根本思想很复杂。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"idea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I have an idea for our project.\",\"Translate\":\"我对我们的项目有一个想法。\",\"Level\":\"A2\"},{\"Sentence\":\"The idea of traveling around the world is exciting.\",\"Translate\":\"环游世界的想法很令人兴奋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy is based on the idea that everyone should contribute.\",\"Translate\":\"新政策基于每个人都应该做出贡献的理念。\",\"Level\":\"B2\"},{\"Sentence\":\"The idea that robots will replace humans is a topic of debate.\",\"Translate\":\"机器人将取代人类的观点是一个有争议的话题。\",\"Level\":\"C1\"},{\"Sentence\":\"The underlying idea of the theory is complex.\",\"Translate\":\"该理论的根本思想很复杂。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83995,
- "Word": "Canberra",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[kaenbara]",
- "Translate": "堪培拉(澳大利亚首都)",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 83996,
- "Word": "amazing",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[a'meizin]",
- "Translate": "令人惊奇的",
- "EnglishExplanation": "{\"word\":\"amazing\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The fireworks display was amazing.\",\"Translate\":\"烟花表演很惊艳。\",\"Level\":\"B1\"},{\"Sentence\":\"She has an amazing talent for singing.\",\"Translate\":\"她有惊人的歌唱天赋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone has an amazing feature that allows you to control it with your voice.\",\"Translate\":\"这款新智能手机有一个令人惊奇的功能,可以让你用语音控制它。\",\"Level\":\"B2\"},{\"Sentence\":\"The amazing view from the top of the mountain was breathtaking.\",\"Translate\":\"从山顶上看到的惊人景色令人屏息。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's ability to simplify complex concepts is truly amazing and has helped many students grasp difficult topics.\",\"Translate\":\"教授简化复杂概念的能力确实令人惊叹,帮助许多学生掌握了困难的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The team's amazing resilience in the face of adversity was a testament to their dedication and perseverance.\",\"Translate\":\"团队在逆境中表现出的惊人韧性证明了他们的奉献精神和毅力。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"amazing\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The fireworks display was amazing.\",\"Translate\":\"烟花表演很惊艳。\",\"Level\":\"B1\"},{\"Sentence\":\"She has an amazing talent for singing.\",\"Translate\":\"她有惊人的歌唱天赋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone has an amazing feature that allows you to control it with your voice.\",\"Translate\":\"这款新智能手机有一个令人惊奇的功能,可以让你用语音控制它。\",\"Level\":\"B2\"},{\"Sentence\":\"The amazing view from the top of the mountain was breathtaking.\",\"Translate\":\"从山顶上看到的惊人景色令人屏息。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's ability to simplify complex concepts is truly amazing and has helped many students grasp difficult topics.\",\"Translate\":\"教授简化复杂概念的能力确实令人惊叹,帮助许多学生掌握了困难的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The team's amazing resilience in the face of adversity was a testament to their dedication and perseverance.\",\"Translate\":\"团队在逆境中表现出的惊人韧性证明了他们的奉献精神和毅力。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83997,
- "Word": "shall",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[Jal; Jael]",
- "Translate": "表示征求意见",
- "EnglishExplanation": "{\"word\":\"shall\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We shall go to the park tomorrow.\",\"Translate\":\"我们明天将去公园。\",\"Level\":\"A2\"},{\"Sentence\":\"Shall we dance?\",\"Translate\":\"我们跳舞好吗?\",\"Level\":\"A2\"},{\"Sentence\":\"I shall attend the meeting if I'm free.\",\"Translate\":\"如果我有空,我将参加会议。\",\"Level\":\"B1\"},{\"Sentence\":\"The company shall provide the necessary equipment.\",\"Translate\":\"公司将提供必要的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"It is imperative that the government shall take immediate action to address the crisis.\",\"Translate\":\"政府必须立即采取行动来应对危机。\",\"Level\":\"C1\"},{\"Sentence\":\"The contract stipulates that the supplier shall deliver the goods within three weeks.\",\"Translate\":\"合同规定供应商应在三周内交付货物。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"shall\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We shall go to the park tomorrow.\",\"Translate\":\"我们明天将去公园。\",\"Level\":\"A2\"},{\"Sentence\":\"Shall we dance?\",\"Translate\":\"我们跳舞好吗?\",\"Level\":\"A2\"},{\"Sentence\":\"I shall attend the meeting if I'm free.\",\"Translate\":\"如果我有空,我将参加会议。\",\"Level\":\"B1\"},{\"Sentence\":\"The company shall provide the necessary equipment.\",\"Translate\":\"公司将提供必要的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"It is imperative that the government shall take immediate action to address the crisis.\",\"Translate\":\"政府必须立即采取行动来应对危机。\",\"Level\":\"C1\"},{\"Sentence\":\"The contract stipulates that the supplier shall deliver the goods within three weeks.\",\"Translate\":\"合同规定供应商应在三周内交付货物。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83998,
- "Word": "goal",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[gaul]",
- "Translate": "射门",
- "EnglishExplanation": "{\"word\":\"goal\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The team's goal is to win the championship.\",\"Translate\":\"这个球队的目标是赢得冠军。\",\"Level\":\"A2\"},{\"Sentence\":\"She achieved her goal of running a marathon.\",\"Translate\":\"她实现了跑马拉松的目标。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's goal is to expand its market share.\",\"Translate\":\"公司的目标是扩大其市场份额。\",\"Level\":\"B1\"},{\"Sentence\":\"The goal of the project is to improve the efficiency of the production process.\",\"Translate\":\"该项目的目标是提高生产流程的效率。\",\"Level\":\"B2\"},{\"Sentence\":\"The ultimate goal of the research is to develop a new treatment for the disease.\",\"Translate\":\"这项研究的最终目标是开发出一种新的疾病治疗方法。\",\"Level\":\"C1\"},{\"Sentence\":\"The goal of the policy is to promote sustainable development and reduce carbon emissions.\",\"Translate\":\"这项政策的目标是促进可持续发展并减少碳排放。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"goal\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The team's goal is to win the championship.\",\"Translate\":\"这个球队的目标是赢得冠军。\",\"Level\":\"A2\"},{\"Sentence\":\"She achieved her goal of running a marathon.\",\"Translate\":\"她实现了跑马拉松的目标。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's goal is to expand its market share.\",\"Translate\":\"公司的目标是扩大其市场份额。\",\"Level\":\"B1\"},{\"Sentence\":\"The goal of the project is to improve the efficiency of the production process.\",\"Translate\":\"该项目的目标是提高生产流程的效率。\",\"Level\":\"B2\"},{\"Sentence\":\"The ultimate goal of the research is to develop a new treatment for the disease.\",\"Translate\":\"这项研究的最终目标是开发出一种新的疾病治疗方法。\",\"Level\":\"C1\"},{\"Sentence\":\"The goal of the policy is to promote sustainable development and reduce carbon emissions.\",\"Translate\":\"这项政策的目标是促进可持续发展并减少碳排放。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 83999,
- "Word": "join",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[d30in]",
- "Translate": "加入",
- "EnglishExplanation": "{\"word\":\"join\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll join you for dinner tonight.\",\"Translate\":\"我今晚会和你一起吃晚饭。\",\"Level\":\"A1\"},{\"Sentence\":\"She joined the club last year.\",\"Translate\":\"她去年加入了这个俱乐部。\",\"Level\":\"A1\"},{\"Sentence\":\"The two rivers join at this point.\",\"Translate\":\"两条河流在这个地方汇合。\",\"Level\":\"B1\"},{\"Sentence\":\"Many people joined the protest march.\",\"Translate\":\"很多人加入了抗议游行。\",\"Level\":\"B1\"},{\"Sentence\":\"The new employee will join our team next month.\",\"Translate\":\"新员工下个月将加入我们的团队。\",\"Level\":\"C1\"},{\"Sentence\":\"The company joined forces with a rival firm to create a new product.\",\"Translate\":\"公司与竞争对手公司联手打造新产品。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"join\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll join you for dinner tonight.\",\"Translate\":\"我今晚会和你一起吃晚饭。\",\"Level\":\"A1\"},{\"Sentence\":\"She joined the club last year.\",\"Translate\":\"她去年加入了这个俱乐部。\",\"Level\":\"A1\"},{\"Sentence\":\"The two rivers join at this point.\",\"Translate\":\"两条河流在这个地方汇合。\",\"Level\":\"B1\"},{\"Sentence\":\"Many people joined the protest march.\",\"Translate\":\"很多人加入了抗议游行。\",\"Level\":\"B1\"},{\"Sentence\":\"The new employee will join our team next month.\",\"Translate\":\"新员工下个月将加入我们的团队。\",\"Level\":\"C1\"},{\"Sentence\":\"The company joined forces with a rival firm to create a new product.\",\"Translate\":\"公司与竞争对手公司联手打造新产品。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84000,
- "Word": "club",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[klab]",
- "Translate": "俱乐部",
- "EnglishExplanation": "{\"word\":\"club\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I joined a club to make new friends.\",\"Translate\":\"我加入了一个俱乐部来结交新朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"The club meets every Friday.\",\"Translate\":\"俱乐部每周五聚会。\",\"Level\":\"A1\"},{\"Sentence\":\"She's a member of the school's book club.\",\"Translate\":\"她是学校读书俱乐部的成员。\",\"Level\":\"A2\"},{\"Sentence\":\"The night club was very crowded.\",\"Translate\":\"夜总会非常拥挤。\",\"Level\":\"A2\"},{\"Sentence\":\"The golf club is expensive.\",\"Translate\":\"高尔夫球杆很贵。\",\"Level\":\"B1\"},{\"Sentence\":\"The club has a strict membership policy.\",\"Translate\":\"俱乐部有严格的会员政策。\",\"Level\":\"B1\"},{\"Sentence\":\"The club's atmosphere was electric.\",\"Translate\":\"俱乐部的气氛非常激动人心。\",\"Level\":\"C1\"},{\"Sentence\":\"The club's committee makes all the decisions.\",\"Translate\":\"俱乐部的委员会做出了所有的决定。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"club\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I joined a club to make new friends.\",\"Translate\":\"我加入了一个俱乐部来结交新朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"The club meets every Friday.\",\"Translate\":\"俱乐部每周五聚会。\",\"Level\":\"A1\"},{\"Sentence\":\"She's a member of the school's book club.\",\"Translate\":\"她是学校读书俱乐部的成员。\",\"Level\":\"A2\"},{\"Sentence\":\"The night club was very crowded.\",\"Translate\":\"夜总会非常拥挤。\",\"Level\":\"A2\"},{\"Sentence\":\"The golf club is expensive.\",\"Translate\":\"高尔夫球杆很贵。\",\"Level\":\"B1\"},{\"Sentence\":\"The club has a strict membership policy.\",\"Translate\":\"俱乐部有严格的会员政策。\",\"Level\":\"B1\"},{\"Sentence\":\"The club's atmosphere was electric.\",\"Translate\":\"俱乐部的气氛非常激动人心。\",\"Level\":\"C1\"},{\"Sentence\":\"The club's committee makes all the decisions.\",\"Translate\":\"俱乐部的委员会做出了所有的决定。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84001,
- "Word": "share",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": "[Jea(r)]",
- "Translate": "分享",
- "EnglishExplanation": "{\"word\":\"share\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I share my toys with my friends.\",\"Translate\":\"我和朋友们分享我的玩具。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you share the book with your brother?\",\"Translate\":\"你能和你的哥哥分享这本书吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The company will share the profits with its employees.\",\"Translate\":\"公司将与员工分享利润。\",\"Level\":\"B1\"},{\"Sentence\":\"I share your opinion on this matter.\",\"Translate\":\"我同意你对此事的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity aims to share the burden of poverty among the community.\",\"Translate\":\"慈善机构旨在与社区共同承担贫困的重担。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has sparked debate, with some arguing it will share the wealth more evenly.\",\"Translate\":\"新政策引发了争论,一些人认为它将使财富分配更加均匀。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"share\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I share my toys with my friends.\",\"Translate\":\"我和朋友们分享我的玩具。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you share the book with your brother?\",\"Translate\":\"你能和你的哥哥分享这本书吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The company will share the profits with its employees.\",\"Translate\":\"公司将与员工分享利润。\",\"Level\":\"B1\"},{\"Sentence\":\"I share your opinion on this matter.\",\"Translate\":\"我同意你对此事的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity aims to share the burden of poverty among the community.\",\"Translate\":\"慈善机构旨在与社区共同承担贫困的重担。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has sparked debate, with some arguing it will share the wealth more evenly.\",\"Translate\":\"新政策引发了争论,一些人认为它将使财富分配更加均匀。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84002,
- "Word": "factory",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[faektri]",
- "Translate": "工厂",
- "EnglishExplanation": "{\"word\":\"factory\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory produces cars.\",\"Translate\":\"这家工厂生产汽车。\",\"Level\":\"A2\"},{\"Sentence\":\"Many people work in the factory.\",\"Translate\":\"很多人都在这家工厂工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The new factory will create many jobs.\",\"Translate\":\"这家新工厂将创造许多就业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory is being expanded to increase production.\",\"Translate\":\"这家工厂正在扩建以增加产量。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory's innovative production methods have significantly reduced costs.\",\"Translate\":\"这家工厂的创新生产方法大大降低了成本。\",\"Level\":\"C1\"},{\"Sentence\":\"The factory's management is considering implementing sustainable practices.\",\"Translate\":\"这家工厂的管理层正在考虑实施可持续的做法。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"factory\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory produces cars.\",\"Translate\":\"这家工厂生产汽车。\",\"Level\":\"A2\"},{\"Sentence\":\"Many people work in the factory.\",\"Translate\":\"很多人都在这家工厂工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The new factory will create many jobs.\",\"Translate\":\"这家新工厂将创造许多就业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory is being expanded to increase production.\",\"Translate\":\"这家工厂正在扩建以增加产量。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory's innovative production methods have significantly reduced costs.\",\"Translate\":\"这家工厂的创新生产方法大大降低了成本。\",\"Level\":\"C1\"},{\"Sentence\":\"The factory's management is considering implementing sustainable practices.\",\"Translate\":\"这家工厂的管理层正在考虑实施可持续的做法。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84003,
- "Word": "worker",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[w3:ka(r)]",
- "Translate": "工人",
- "EnglishExplanation": "{\"word\":\"worker\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory employs hundreds of workers.\",\"Translate\":\"这家工厂雇佣了数百名工人。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a dedicated worker and always meets her deadlines.\",\"Translate\":\"她是一位敬业的员工,总是能按时完成任务。\",\"Level\":\"B1\"},{\"Sentence\":\"The construction workers were skilled craftsmen.\",\"Translate\":\"建筑工人都是熟练的工匠。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity relies on volunteer workers to help with events.\",\"Translate\":\"慈善机构依靠志愿者来帮助举办活动。\",\"Level\":\"B2\"},{\"Sentence\":\"The research team consisted of highly motivated knowledge workers.\",\"Translate\":\"研究团队由动力十足的知识工作者组成。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's success is largely due to its innovative workers.\",\"Translate\":\"公司的成功在很大程度上归功于其创新型员工。\",\"Level\":\"C1\"},{\"Sentence\":\"The workers' union negotiated a new contract with the management.\",\"Translate\":\"工会与管理层谈判了一份新的合同。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"worker\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory employs hundreds of workers.\",\"Translate\":\"这家工厂雇佣了数百名工人。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a dedicated worker and always meets her deadlines.\",\"Translate\":\"她是一位敬业的员工,总是能按时完成任务。\",\"Level\":\"B1\"},{\"Sentence\":\"The construction workers were skilled craftsmen.\",\"Translate\":\"建筑工人都是熟练的工匠。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity relies on volunteer workers to help with events.\",\"Translate\":\"慈善机构依靠志愿者来帮助举办活动。\",\"Level\":\"B2\"},{\"Sentence\":\"The research team consisted of highly motivated knowledge workers.\",\"Translate\":\"研究团队由动力十足的知识工作者组成。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's success is largely due to its innovative workers.\",\"Translate\":\"公司的成功在很大程度上归功于其创新型员工。\",\"Level\":\"C1\"},{\"Sentence\":\"The workers' union negotiated a new contract with the management.\",\"Translate\":\"工会与管理层谈判了一份新的合同。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84004,
- "Word": "postman",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[paustman]",
- "Translate": "邮递员",
- "EnglishExplanation": "{\"word\":\"postman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The postman delivered a letter to my door.\",\"Translate\":\"邮递员把一封信送到了我家门口。\",\"Level\":\"A2\"},{\"Sentence\":\"I saw the postman walking down the street.\",\"Translate\":\"我看到邮递员沿着街道走来。\",\"Level\":\"A2\"},{\"Sentence\":\"The postman has to deal with various kinds of weather.\",\"Translate\":\"邮递员必须应对各种天气。\",\"Level\":\"B1\"},{\"Sentence\":\"As a postman, he knows many people in the neighborhood.\",\"Translate\":\"作为一名邮递员,他认识邻近的很多人。\",\"Level\":\"B1\"},{\"Sentence\":\"The postman's diligence ensured that all the mail was delivered on time.\",\"Translate\":\"邮递员的勤勉确保了所有的邮件都能按时送达。\",\"Level\":\"C1\"},{\"Sentence\":\"The postman's route took him through the picturesque countryside.\",\"Translate\":\"邮递员的路线带他穿过风景如画的乡村。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"postman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The postman delivered a letter to my door.\",\"Translate\":\"邮递员把一封信送到了我家门口。\",\"Level\":\"A2\"},{\"Sentence\":\"I saw the postman walking down the street.\",\"Translate\":\"我看到邮递员沿着街道走来。\",\"Level\":\"A2\"},{\"Sentence\":\"The postman has to deal with various kinds of weather.\",\"Translate\":\"邮递员必须应对各种天气。\",\"Level\":\"B1\"},{\"Sentence\":\"As a postman, he knows many people in the neighborhood.\",\"Translate\":\"作为一名邮递员,他认识邻近的很多人。\",\"Level\":\"B1\"},{\"Sentence\":\"The postman's diligence ensured that all the mail was delivered on time.\",\"Translate\":\"邮递员的勤勉确保了所有的邮件都能按时送达。\",\"Level\":\"C1\"},{\"Sentence\":\"The postman's route took him through the picturesque countryside.\",\"Translate\":\"邮递员的路线带他穿过风景如画的乡村。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84005,
- "Word": "businessman",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[\"biznasmaen]",
- "Translate": "商人;企业家",
- "EnglishExplanation": "{\"word\":\"businessman\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The successful businessman invested in several startups.\",\"Translate\":\"这位成功的商人投资了几家初创公司。\",\"Level\":\"B1\"},{\"Sentence\":\"As a young businessman, he was eager to make a name for himself.\",\"Translate\":\"作为一名年轻的商人,他渴望成名。\",\"Level\":\"B1\"},{\"Sentence\":\"The businessman negotiated a deal with the foreign investors.\",\"Translate\":\"这位商人与外国投资者谈判了一笔交易。\",\"Level\":\"B2\"},{\"Sentence\":\"The businessman expanded his company into the global market.\",\"Translate\":\"这位商人将他的公司扩展到了全球市场。\",\"Level\":\"B2\"},{\"Sentence\":\"The seasoned businessman was known for his shrewd investment strategies.\",\"Translate\":\"这位经验丰富的商人以其精明的投资策略而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The businessman was lauded for his innovative approach to entrepreneurship.\",\"Translate\":\"这位商人因其创新的创业方法而受到赞扬。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"businessman\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The successful businessman invested in several startups.\",\"Translate\":\"这位成功的商人投资了几家初创公司。\",\"Level\":\"B1\"},{\"Sentence\":\"As a young businessman, he was eager to make a name for himself.\",\"Translate\":\"作为一名年轻的商人,他渴望成名。\",\"Level\":\"B1\"},{\"Sentence\":\"The businessman negotiated a deal with the foreign investors.\",\"Translate\":\"这位商人与外国投资者谈判了一笔交易。\",\"Level\":\"B2\"},{\"Sentence\":\"The businessman expanded his company into the global market.\",\"Translate\":\"这位商人将他的公司扩展到了全球市场。\",\"Level\":\"B2\"},{\"Sentence\":\"The seasoned businessman was known for his shrewd investment strategies.\",\"Translate\":\"这位经验丰富的商人以其精明的投资策略而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The businessman was lauded for his innovative approach to entrepreneurship.\",\"Translate\":\"这位商人因其创新的创业方法而受到赞扬。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84006,
- "Word": "police officer",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[pa'lis 'pfisa(r)]",
- "Translate": "警察",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84007,
- "Word": "fisherman",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[fifaman]",
- "Translate": "渔民",
- "EnglishExplanation": "{\"word\":\"fisherman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The fisherman caught a big fish.\",\"Translate\":\"渔夫捕到了一条大鱼。\",\"Level\":\"A2\"},{\"Sentence\":\"The fishermen went out to sea early in the morning.\",\"Translate\":\"渔民们一早就出海了。\",\"Level\":\"A2\"},{\"Sentence\":\"The experienced fisherman navigated through the rough waters with ease.\",\"Translate\":\"这位经验丰富的渔民轻松地在汹涌的水域中航行。\",\"Level\":\"B1\"},{\"Sentence\":\"The local fishermen's cooperative managed the fishery resources sustainably.\",\"Translate\":\"当地的渔民合作社可持续地管理渔业资源。\",\"Level\":\"B1\"},{\"Sentence\":\"The fisherman's knowledge of the ocean currents was unparalleled, allowing him to locate the most abundant fishing grounds.\",\"Translate\":\"这位渔夫对洋流的了解无人能及,这使他能够找到最丰富的渔场。\",\"Level\":\"C1\"},{\"Sentence\":\"The fisherman's philosophical musings on the nature of the sea were deeply insightful.\",\"Translate\":\"渔夫对大海本质的哲学思考非常深刻。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"fisherman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The fisherman caught a big fish.\",\"Translate\":\"渔夫捕到了一条大鱼。\",\"Level\":\"A2\"},{\"Sentence\":\"The fishermen went out to sea early in the morning.\",\"Translate\":\"渔民们一早就出海了。\",\"Level\":\"A2\"},{\"Sentence\":\"The experienced fisherman navigated through the rough waters with ease.\",\"Translate\":\"这位经验丰富的渔民轻松地在汹涌的水域中航行。\",\"Level\":\"B1\"},{\"Sentence\":\"The local fishermen's cooperative managed the fishery resources sustainably.\",\"Translate\":\"当地的渔民合作社可持续地管理渔业资源。\",\"Level\":\"B1\"},{\"Sentence\":\"The fisherman's knowledge of the ocean currents was unparalleled, allowing him to locate the most abundant fishing grounds.\",\"Translate\":\"这位渔夫对洋流的了解无人能及,这使他能够找到最丰富的渔场。\",\"Level\":\"C1\"},{\"Sentence\":\"The fisherman's philosophical musings on the nature of the sea were deeply insightful.\",\"Translate\":\"渔夫对大海本质的哲学思考非常深刻。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84008,
- "Word": "scientist",
- "WordRemark": null,
- "Level": "B2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "['saiontist]",
- "Translate": "科学家",
- "EnglishExplanation": "{\"word\":\"scientist\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The scientist conducted an experiment to test the hypothesis.\",\"Translate\":\"这位科学家进行了一项实验来验证这个假设。\",\"Level\":\"B2\"},{\"Sentence\":\"She became a renowned scientist in her field.\",\"Translate\":\"她成为了她所在领域的著名科学家。\",\"Level\":\"B2\"},{\"Sentence\":\"The team of scientists discovered a new species.\",\"Translate\":\"科学家团队发现了一个新物种。\",\"Level\":\"C1\"},{\"Sentence\":\"Scientists are working on developing a new technology.\",\"Translate\":\"科学家们正在致力于开发一项新技术。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"scientist\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The scientist conducted an experiment to test the hypothesis.\",\"Translate\":\"这位科学家进行了一项实验来验证这个假设。\",\"Level\":\"B2\"},{\"Sentence\":\"She became a renowned scientist in her field.\",\"Translate\":\"她成为了她所在领域的著名科学家。\",\"Level\":\"B2\"},{\"Sentence\":\"The team of scientists discovered a new species.\",\"Translate\":\"科学家团队发现了一个新物种。\",\"Level\":\"C1\"},{\"Sentence\":\"Scientists are working on developing a new technology.\",\"Translate\":\"科学家们正在致力于开发一项新技术。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84009,
- "Word": "pilot",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "['pallat]",
- "Translate": "飞行员",
- "EnglishExplanation": "{\"word\":\"pilot\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The pilot flew the plane safely through the storm.\",\"Translate\":\"飞行员安全地驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"She became a pilot after years of training.\",\"Translate\":\"经过多年的培训,她成为了飞行员。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline is recruiting new pilots to join their team.\",\"Translate\":\"航空公司正在招募新飞行员加入他们的团队。\",\"Level\":\"B2\"},{\"Sentence\":\"As a pilot, he had to make quick decisions in emergency situations.\",\"Translate\":\"作为一名飞行员,他必须在紧急情况下迅速做出决定。\",\"Level\":\"B2\"},{\"Sentence\":\"The pilot project was successful, so they're expanding it nationwide.\",\"Translate\":\"试点项目很成功,所以他们正在全国范围内推广。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's pilot program aims to test new technologies.\",\"Translate\":\"公司的试点计划旨在测试新技术。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"pilot\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The pilot flew the plane safely through the storm.\",\"Translate\":\"飞行员安全地驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"She became a pilot after years of training.\",\"Translate\":\"经过多年的培训,她成为了飞行员。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline is recruiting new pilots to join their team.\",\"Translate\":\"航空公司正在招募新飞行员加入他们的团队。\",\"Level\":\"B2\"},{\"Sentence\":\"As a pilot, he had to make quick decisions in emergency situations.\",\"Translate\":\"作为一名飞行员,他必须在紧急情况下迅速做出决定。\",\"Level\":\"B2\"},{\"Sentence\":\"The pilot project was successful, so they're expanding it nationwide.\",\"Translate\":\"试点项目很成功,所以他们正在全国范围内推广。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's pilot program aims to test new technologies.\",\"Translate\":\"公司的试点计划旨在测试新技术。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84010,
- "Word": "coach",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[kauty]",
- "Translate": "教练",
- "EnglishExplanation": "{\"word\":\"coach\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The football coach is very experienced.\",\"Translate\":\"这位足球教练非常有经验。\",\"Level\":\"A2\"},{\"Sentence\":\"She coaches the school basketball team.\",\"Translate\":\"她执教学校篮球队。\",\"Level\":\"A2\"},{\"Sentence\":\"The coach helped me improve my tennis serve.\",\"Translate\":\"教练帮助我改进了发球技术。\",\"Level\":\"B1\"},{\"Sentence\":\"The company hired a coach to train their sales team.\",\"Translate\":\"公司聘请了一位教练来训练销售团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The life coach guided her through a difficult period.\",\"Translate\":\"这位生活教练在她困难时期给予了指导。\",\"Level\":\"C1\"},{\"Sentence\":\"The executive coach worked with the CEO to develop a new strategy.\",\"Translate\":\"高管教练与CEO合作制定了新的战略。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"coach\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The football coach is very experienced.\",\"Translate\":\"这位足球教练非常有经验。\",\"Level\":\"A2\"},{\"Sentence\":\"She coaches the school basketball team.\",\"Translate\":\"她执教学校篮球队。\",\"Level\":\"A2\"},{\"Sentence\":\"The coach helped me improve my tennis serve.\",\"Translate\":\"教练帮助我改进了发球技术。\",\"Level\":\"B1\"},{\"Sentence\":\"The company hired a coach to train their sales team.\",\"Translate\":\"公司聘请了一位教练来训练销售团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The life coach guided her through a difficult period.\",\"Translate\":\"这位生活教练在她困难时期给予了指导。\",\"Level\":\"C1\"},{\"Sentence\":\"The executive coach worked with the CEO to develop a new strategy.\",\"Translate\":\"高管教练与CEO合作制定了新的战略。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84011,
- "Word": "country",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "['kAntri]",
- "Translate": "国家",
- "EnglishExplanation": "{\"word\":\"country\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I live in a beautiful country.\",\"Translate\":\"我住在一个美丽的国家。\",\"Level\":\"A1\"},{\"Sentence\":\"The country is very big.\",\"Translate\":\"这个国家非常大。\",\"Level\":\"A1\"},{\"Sentence\":\"The country has a lot of mountains and rivers.\",\"Translate\":\"这个国家有很多山脉和河流。\",\"Level\":\"A2\"},{\"Sentence\":\"People in the country enjoy a simple life.\",\"Translate\":\"这个国家的人们享受着简单的生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The country's economy is growing rapidly.\",\"Translate\":\"这个国家的经济正在迅速发展。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's culture is very diverse.\",\"Translate\":\"这个国家的文化非常多样。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's history is complex and multifaceted.\",\"Translate\":\"这个国家的历史复杂多样。\",\"Level\":\"C1\"},{\"Sentence\":\"The country's environmental policies have been a subject of debate.\",\"Translate\":\"这个国家的环境政策一直是争论的焦点。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"country\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I live in a beautiful country.\",\"Translate\":\"我住在一个美丽的国家。\",\"Level\":\"A1\"},{\"Sentence\":\"The country is very big.\",\"Translate\":\"这个国家非常大。\",\"Level\":\"A1\"},{\"Sentence\":\"The country has a lot of mountains and rivers.\",\"Translate\":\"这个国家有很多山脉和河流。\",\"Level\":\"A2\"},{\"Sentence\":\"People in the country enjoy a simple life.\",\"Translate\":\"这个国家的人们享受着简单的生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The country's economy is growing rapidly.\",\"Translate\":\"这个国家的经济正在迅速发展。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's culture is very diverse.\",\"Translate\":\"这个国家的文化非常多样。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's history is complex and multifaceted.\",\"Translate\":\"这个国家的历史复杂多样。\",\"Level\":\"C1\"},{\"Sentence\":\"The country's environmental policies have been a subject of debate.\",\"Translate\":\"这个国家的环境政策一直是争论的焦点。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84012,
- "Word": "head teacher",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "校长",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84013,
- "Word": "sea",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[si:]",
- "Translate": "大海",
- "EnglishExplanation": "{\"word\":\"sea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The family went to the sea for their summer vacation.\",\"Translate\":\"这家人去海边度暑假。\",\"Level\":\"A2\"},{\"Sentence\":\"She loves watching the sunset over the sea.\",\"Translate\":\"她喜欢观看海上的日落。\",\"Level\":\"A2\"},{\"Sentence\":\"The sea was calm and peaceful that day.\",\"Translate\":\"那天海面很平静。\",\"Level\":\"B1\"},{\"Sentence\":\"The sea has many different creatures.\",\"Translate\":\"海洋里有许多不同的生物。\",\"Level\":\"B1\"},{\"Sentence\":\"The pollution in the sea is a serious environmental issue.\",\"Translate\":\"海洋污染是一个严重的环境问题。\",\"Level\":\"C1\"},{\"Sentence\":\"The sea level is rising due to climate change.\",\"Translate\":\"由于气候变化,海平面正在上升。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"sea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The family went to the sea for their summer vacation.\",\"Translate\":\"这家人去海边度暑假。\",\"Level\":\"A2\"},{\"Sentence\":\"She loves watching the sunset over the sea.\",\"Translate\":\"她喜欢观看海上的日落。\",\"Level\":\"A2\"},{\"Sentence\":\"The sea was calm and peaceful that day.\",\"Translate\":\"那天海面很平静。\",\"Level\":\"B1\"},{\"Sentence\":\"The sea has many different creatures.\",\"Translate\":\"海洋里有许多不同的生物。\",\"Level\":\"B1\"},{\"Sentence\":\"The pollution in the sea is a serious environmental issue.\",\"Translate\":\"海洋污染是一个严重的环境问题。\",\"Level\":\"C1\"},{\"Sentence\":\"The sea level is rising due to climate change.\",\"Translate\":\"由于气候变化,海平面正在上升。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84014,
- "Word": "stay",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[stel]",
- "Translate": "保持",
- "EnglishExplanation": "{\"word\":\"stay\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will stay here tonight.\",\"Translate\":\"我今晚会呆在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stay for dinner?\",\"Translate\":\"你能留下来吃晚饭吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stayed at home because she was sick.\",\"Translate\":\"她因为生病而呆在家里。\",\"Level\":\"A2\"},{\"Sentence\":\"They are staying with friends for the weekend.\",\"Translate\":\"他们周末和朋友住在一起。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stay competitive by innovating.\",\"Translate\":\"公司将通过创新保持竞争力。\",\"Level\":\"B1\"},{\"Sentence\":\"To stay healthy, you need to exercise regularly.\",\"Translate\":\"为了保持健康,你需要定期锻炼。\",\"Level\":\"B1\"},{\"Sentence\":\"The hotel's reputation has stayed intact despite the crisis.\",\"Translate\":\"尽管发生了危机,但这家酒店的声誉依然完好。\",\"Level\":\"C1\"},{\"Sentence\":\"Staying ahead of the curve requires continuous learning.\",\"Translate\":\"保持领先需要不断学习。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"stay\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will stay here tonight.\",\"Translate\":\"我今晚会呆在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stay for dinner?\",\"Translate\":\"你能留下来吃晚饭吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stayed at home because she was sick.\",\"Translate\":\"她因为生病而呆在家里。\",\"Level\":\"A2\"},{\"Sentence\":\"They are staying with friends for the weekend.\",\"Translate\":\"他们周末和朋友住在一起。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stay competitive by innovating.\",\"Translate\":\"公司将通过创新保持竞争力。\",\"Level\":\"B1\"},{\"Sentence\":\"To stay healthy, you need to exercise regularly.\",\"Translate\":\"为了保持健康,你需要定期锻炼。\",\"Level\":\"B1\"},{\"Sentence\":\"The hotel's reputation has stayed intact despite the crisis.\",\"Translate\":\"尽管发生了危机,但这家酒店的声誉依然完好。\",\"Level\":\"C1\"},{\"Sentence\":\"Staying ahead of the curve requires continuous learning.\",\"Translate\":\"保持领先需要不断学习。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84015,
- "Word": "university",
- "WordRemark": null,
- "Level": "B2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[juinl'v3isati]",
- "Translate": "大学",
- "EnglishExplanation": "{\"word\":\"university\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The university is known for its academic excellence.\",\"Translate\":\"这所大学以其学术卓越而闻名。\",\"Level\":\"B2\"},{\"Sentence\":\"She was accepted into a prestigious university.\",\"Translate\":\"她被一所著名的大学录取了。\",\"Level\":\"B2\"},{\"Sentence\":\"The university offers a wide range of undergraduate and graduate programs.\",\"Translate\":\"这所大学提供广泛的本科和研究生课程。\",\"Level\":\"C1\"},{\"Sentence\":\"Attending a top university can open doors to better career opportunities.\",\"Translate\":\"就读于顶尖大学可以为更好的职业机会打开大门。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"university\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The university is known for its academic excellence.\",\"Translate\":\"这所大学以其学术卓越而闻名。\",\"Level\":\"B2\"},{\"Sentence\":\"She was accepted into a prestigious university.\",\"Translate\":\"她被一所著名的大学录取了。\",\"Level\":\"B2\"},{\"Sentence\":\"The university offers a wide range of undergraduate and graduate programs.\",\"Translate\":\"这所大学提供广泛的本科和研究生课程。\",\"Level\":\"C1\"},{\"Sentence\":\"Attending a top university can open doors to better career opportunities.\",\"Translate\":\"就读于顶尖大学可以为更好的职业机会打开大门。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84016,
- "Word": "gym",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[d3im]",
- "Translate": "体育馆",
- "EnglishExplanation": "{\"word\":\"gym\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I go to the gym every day.\",\"Translate\":\"我每天都去健身房。\",\"Level\":\"A2\"},{\"Sentence\":\"The gym is fully equipped with modern machines.\",\"Translate\":\"健身房配备了现代化的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few months of regular exercise at the gym, I noticed a significant improvement in my overall fitness.\",\"Translate\":\"在健身房定期锻炼几个月后,我注意到我的整体健康状况有了显著改善。\",\"Level\":\"B2\"},{\"Sentence\":\"The gym offers a variety of classes, from yoga to high-intensity interval training, catering to diverse fitness goals and preferences.\",\"Translate\":\"健身房提供多种课程,从瑜伽到高强度间歇训练,满足不同的健身目标和偏好。\",\"Level\":\"C1\"},{\"Sentence\":\"Not only does the gym provide state-of-the-art equipment, but it also fosters a sense of community among its members.\",\"Translate\":\"健身房不仅提供最先进的设备,还在其成员之间培养了一种社区意识。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"gym\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I go to the gym every day.\",\"Translate\":\"我每天都去健身房。\",\"Level\":\"A2\"},{\"Sentence\":\"The gym is fully equipped with modern machines.\",\"Translate\":\"健身房配备了现代化的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few months of regular exercise at the gym, I noticed a significant improvement in my overall fitness.\",\"Translate\":\"在健身房定期锻炼几个月后,我注意到我的整体健康状况有了显著改善。\",\"Level\":\"B2\"},{\"Sentence\":\"The gym offers a variety of classes, from yoga to high-intensity interval training, catering to diverse fitness goals and preferences.\",\"Translate\":\"健身房提供多种课程,从瑜伽到高强度间歇训练,满足不同的健身目标和偏好。\",\"Level\":\"C1\"},{\"Sentence\":\"Not only does the gym provide state-of-the-art equipment, but it also fosters a sense of community among its members.\",\"Translate\":\"健身房不仅提供最先进的设备,还在其成员之间培养了一种社区意识。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84017,
- "Word": "if",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[if]",
- "Translate": "如果",
- "EnglishExplanation": "{\"word\":\"if\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll see you tomorrow if the weather is fine.\",\"Translate\":\"如果天气好,我明天会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"You can come with us if you want.\",\"Translate\":\"如果你想,你可以和我们一起去。\",\"Level\":\"A1\"},{\"Sentence\":\"If I had more time, I would travel more.\",\"Translate\":\"如果我有更多时间,我会去更多地方旅行。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked if we had finished our homework.\",\"Translate\":\"老师问我们是否完成了作业。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I wouldn't do that.\",\"Translate\":\"如果我是你,我不会那样做。\",\"Level\":\"B2\"},{\"Sentence\":\"It's not clear if the new policy will be successful.\",\"Translate\":\"尚不清楚新政策是否会成功。\",\"Level\":\"B2\"},{\"Sentence\":\"If the company had invested earlier, it would be more competitive now.\",\"Translate\":\"如果公司早些时候投资,现在会更具竞争力。\",\"Level\":\"C1\"},{\"Sentence\":\"The debate centered on the question of if artificial intelligence will surpass human intelligence.\",\"Translate\":\"辩论集中在人工智能是否会超越人类智慧的问题上。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"if\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll see you tomorrow if the weather is fine.\",\"Translate\":\"如果天气好,我明天会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"You can come with us if you want.\",\"Translate\":\"如果你想,你可以和我们一起去。\",\"Level\":\"A1\"},{\"Sentence\":\"If I had more time, I would travel more.\",\"Translate\":\"如果我有更多时间,我会去更多地方旅行。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked if we had finished our homework.\",\"Translate\":\"老师问我们是否完成了作业。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I wouldn't do that.\",\"Translate\":\"如果我是你,我不会那样做。\",\"Level\":\"B2\"},{\"Sentence\":\"It's not clear if the new policy will be successful.\",\"Translate\":\"尚不清楚新政策是否会成功。\",\"Level\":\"B2\"},{\"Sentence\":\"If the company had invested earlier, it would be more competitive now.\",\"Translate\":\"如果公司早些时候投资,现在会更具竞争力。\",\"Level\":\"C1\"},{\"Sentence\":\"The debate centered on the question of if artificial intelligence will surpass human intelligence.\",\"Translate\":\"辩论集中在人工智能是否会超越人类智慧的问题上。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84018,
- "Word": "reporter",
- "WordRemark": null,
- "Level": "B1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[rl'po:ta(r)]",
- "Translate": "记者",
- "EnglishExplanation": "{\"word\":\"reporter\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The young reporter asked the politician many tough questions.\",\"Translate\":\"这位年轻的记者向政治家提出了许多尖锐的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"She worked as a reporter for a local newspaper.\",\"Translate\":\"她曾在当地一家报社担任记者。\",\"Level\":\"B1\"},{\"Sentence\":\"The reporter was investigating a story about corruption in the government.\",\"Translate\":\"这位记者正在调查一个关于政府腐败的报道。\",\"Level\":\"B2\"},{\"Sentence\":\"The news channel sent a reporter to cover the breaking news.\",\"Translate\":\"新闻频道派了一名记者来报道突发新闻。\",\"Level\":\"B2\"},{\"Sentence\":\"The investigative reporter uncovered a major scandal that led to widespread reforms.\",\"Translate\":\"调查记者揭露了一起重大丑闻,导致了广泛的改革。\",\"Level\":\"C1\"},{\"Sentence\":\"As a seasoned reporter, she had interviewed numerous world leaders.\",\"Translate\":\"作为一名经验丰富的记者,她采访过许多世界领导人。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"reporter\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The young reporter asked the politician many tough questions.\",\"Translate\":\"这位年轻的记者向政治家提出了许多尖锐的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"She worked as a reporter for a local newspaper.\",\"Translate\":\"她曾在当地一家报社担任记者。\",\"Level\":\"B1\"},{\"Sentence\":\"The reporter was investigating a story about corruption in the government.\",\"Translate\":\"这位记者正在调查一个关于政府腐败的报道。\",\"Level\":\"B2\"},{\"Sentence\":\"The news channel sent a reporter to cover the breaking news.\",\"Translate\":\"新闻频道派了一名记者来报道突发新闻。\",\"Level\":\"B2\"},{\"Sentence\":\"The investigative reporter uncovered a major scandal that led to widespread reforms.\",\"Translate\":\"调查记者揭露了一起重大丑闻,导致了广泛的改革。\",\"Level\":\"C1\"},{\"Sentence\":\"As a seasoned reporter, she had interviewed numerous world leaders.\",\"Translate\":\"作为一名经验丰富的记者,她采访过许多世界领导人。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84019,
- "Word": "use",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[juiz]",
- "Translate": "使用",
- "EnglishExplanation": "{\"word\":\"use\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I use a pen to write.\",\"Translate\":\"我用钢笔写字。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I use your phone?\",\"Translate\":\"我可以用一下你的电话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"We use English in class.\",\"Translate\":\"我们在课堂上使用英语。\",\"Level\":\"A2\"},{\"Sentence\":\"She uses a computer for work.\",\"Translate\":\"她用电脑工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will use the new technology to improve efficiency.\",\"Translate\":\"公司将使用新技术来提高效率。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color was innovative and captivating.\",\"Translate\":\"艺术家对色彩的使用是创新且引人入胜的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"use\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I use a pen to write.\",\"Translate\":\"我用钢笔写字。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I use your phone?\",\"Translate\":\"我可以用一下你的电话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"We use English in class.\",\"Translate\":\"我们在课堂上使用英语。\",\"Level\":\"A2\"},{\"Sentence\":\"She uses a computer for work.\",\"Translate\":\"她用电脑工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will use the new technology to improve efficiency.\",\"Translate\":\"公司将使用新技术来提高效率。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color was innovative and captivating.\",\"Translate\":\"艺术家对色彩的使用是创新且引人入胜的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84020,
- "Word": "type",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[taip]",
- "Translate": "打字",
- "EnglishExplanation": "{\"word\":\"type\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"This is my type of music.\",\"Translate\":\"这是我喜欢的音乐类型。\",\"Level\":\"A2\"},{\"Sentence\":\"She's not my type.\",\"Translate\":\"她不是我喜欢的类型。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will type the documents and send them to you.\",\"Translate\":\"公司将把文件打出来并寄给你。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary is busy typing the report.\",\"Translate\":\"秘书正忙着打报告。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone is considered a game-changer in the tech industry, representing a new type of innovative product.\",\"Translate\":\"这款新型智能手机被认为是科技行业的颠覆者,代表了一种新型的创新产品。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of different materials and techniques resulted in a unique type of sculpture that challenged traditional notions of the art form.\",\"Translate\":\"艺术家使用不同的材料和技巧,创造出一种独特的雕塑类型,挑战了人们对这种艺术形式的传统观念。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"type\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"This is my type of music.\",\"Translate\":\"这是我喜欢的音乐类型。\",\"Level\":\"A2\"},{\"Sentence\":\"She's not my type.\",\"Translate\":\"她不是我喜欢的类型。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will type the documents and send them to you.\",\"Translate\":\"公司将把文件打出来并寄给你。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary is busy typing the report.\",\"Translate\":\"秘书正忙着打报告。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone is considered a game-changer in the tech industry, representing a new type of innovative product.\",\"Translate\":\"这款新型智能手机被认为是科技行业的颠覆者,代表了一种新型的创新产品。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of different materials and techniques resulted in a unique type of sculpture that challenged traditional notions of the art form.\",\"Translate\":\"艺术家使用不同的材料和技巧,创造出一种独特的雕塑类型,挑战了人们对这种艺术形式的传统观念。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84021,
- "Word": "quickly",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "[kwikli]",
- "Translate": "迅速地",
- "EnglishExplanation": "{\"word\":\"quickly\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She quickly finished her homework.\",\"Translate\":\"她很快完成了作业。\",\"Level\":\"A2\"},{\"Sentence\":\"The fire spread quickly throughout the building.\",\"Translate\":\"火势迅速蔓延至整栋大楼。\",\"Level\":\"B1\"},{\"Sentence\":\"The company quickly adapted to the changing market conditions.\",\"Translate\":\"公司迅速适应了不断变化的市场环境。\",\"Level\":\"B2\"},{\"Sentence\":\"The news of the merger spread quickly among investors, causing a surge in stock prices.\",\"Translate\":\"合并的消息迅速在投资者中传播,导致股价飙升。\",\"Level\":\"C1\"},{\"Sentence\":\"As the situation escalated, the response team quickly mobilized to mitigate the damage.\",\"Translate\":\"随着局势升级,响应团队迅速动员以减轻损失。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"quickly\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She quickly finished her homework.\",\"Translate\":\"她很快完成了作业。\",\"Level\":\"A2\"},{\"Sentence\":\"The fire spread quickly throughout the building.\",\"Translate\":\"火势迅速蔓延至整栋大楼。\",\"Level\":\"B1\"},{\"Sentence\":\"The company quickly adapted to the changing market conditions.\",\"Translate\":\"公司迅速适应了不断变化的市场环境。\",\"Level\":\"B2\"},{\"Sentence\":\"The news of the merger spread quickly among investors, causing a surge in stock prices.\",\"Translate\":\"合并的消息迅速在投资者中传播,导致股价飙升。\",\"Level\":\"C1\"},{\"Sentence\":\"As the situation escalated, the response team quickly mobilized to mitigate the damage.\",\"Translate\":\"随着局势升级,响应团队迅速动员以减轻损失。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84022,
- "Word": "secretary",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": "['sekratri]",
- "Translate": "秘书",
- "EnglishExplanation": "{\"word\":\"secretary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The secretary is typing a report.\",\"Translate\":\"秘书正在打一份报告。\",\"Level\":\"A2\"},{\"Sentence\":\"She works as a secretary in a big company.\",\"Translate\":\"她在一家大公司担任秘书。\",\"Level\":\"A2\"},{\"Sentence\":\"The company's secretary is responsible for handling correspondence.\",\"Translate\":\"公司的秘书负责处理信件。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary general of the United Nations is a very important position.\",\"Translate\":\"联合国秘书长是一个非常重要的职位。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary of state will attend the international conference.\",\"Translate\":\"国务卿将出席国际会议。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's secretary played a crucial role in the merger negotiations.\",\"Translate\":\"公司秘书在合并谈判中发挥了至关重要的作用。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"secretary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The secretary is typing a report.\",\"Translate\":\"秘书正在打一份报告。\",\"Level\":\"A2\"},{\"Sentence\":\"She works as a secretary in a big company.\",\"Translate\":\"她在一家大公司担任秘书。\",\"Level\":\"A2\"},{\"Sentence\":\"The company's secretary is responsible for handling correspondence.\",\"Translate\":\"公司的秘书负责处理信件。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary general of the United Nations is a very important position.\",\"Translate\":\"联合国秘书长是一个非常重要的职位。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary of state will attend the international conference.\",\"Translate\":\"国务卿将出席国际会议。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's secretary played a crucial role in the merger negotiations.\",\"Translate\":\"公司秘书在合并谈判中发挥了至关重要的作用。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84023,
- "Word": "angry",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[angri]",
- "Translate": "生气的",
- "EnglishExplanation": "{\"word\":\"angry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was angry with her brother.\",\"Translate\":\"她对她的哥哥很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher was angry at the noisy students.\",\"Translate\":\"老师对吵闹的学生很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The crowd became angry when their team lost the final.\",\"Translate\":\"当他们的队伍输掉决赛时,人群变得愤怒了。\",\"Level\":\"B1\"},{\"Sentence\":\"The angry mob demanded justice.\",\"Translate\":\"愤怒的暴徒要求正义。\",\"Level\":\"B1\"},{\"Sentence\":\"The politician's decision sparked an angry backlash from the community.\",\"Translate\":\"这位政治家的决定引发了社区的愤怒反应。\",\"Level\":\"C1\"},{\"Sentence\":\"The angry tone in her voice was unmistakable.\",\"Translate\":\"她声音中的愤怒语气是毋庸置疑的。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"angry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was angry with her brother.\",\"Translate\":\"她对她的哥哥很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher was angry at the noisy students.\",\"Translate\":\"老师对吵闹的学生很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The crowd became angry when their team lost the final.\",\"Translate\":\"当他们的队伍输掉决赛时,人群变得愤怒了。\",\"Level\":\"B1\"},{\"Sentence\":\"The angry mob demanded justice.\",\"Translate\":\"愤怒的暴徒要求正义。\",\"Level\":\"B1\"},{\"Sentence\":\"The politician's decision sparked an angry backlash from the community.\",\"Translate\":\"这位政治家的决定引发了社区的愤怒反应。\",\"Level\":\"C1\"},{\"Sentence\":\"The angry tone in her voice was unmistakable.\",\"Translate\":\"她声音中的愤怒语气是毋庸置疑的。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84024,
- "Word": "afraid",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[a'freid]",
- "Translate": "害怕",
- "EnglishExplanation": "{\"word\":\"afraid\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm afraid of the dark.\",\"Translate\":\"我害怕黑暗。\",\"Level\":\"A1\"},{\"Sentence\":\"She's afraid to speak in front of the class.\",\"Translate\":\"她害怕在全班面前发言。\",\"Level\":\"A2\"},{\"Sentence\":\"The child was afraid of being left alone at home.\",\"Translate\":\"这个孩子害怕被独自留在家里。\",\"Level\":\"B1\"},{\"Sentence\":\"He's afraid that he might fail the exam.\",\"Translate\":\"他担心自己可能会考试不及格。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is afraid of losing its market share due to the new competitor.\",\"Translate\":\"公司担心由于新竞争者的出现而失去市场份额。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists were afraid to venture out at night due to the high crime rate.\",\"Translate\":\"由于犯罪率高,游客们不敢在晚上外出。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician was afraid of being implicated in the scandal.\",\"Translate\":\"这位政治家担心会卷入丑闻中。\",\"Level\":\"C1\"},{\"Sentence\":\"The researcher was afraid that her groundbreaking discovery might be misused.\",\"Translate\":\"研究人员担心她开创性的发现可能会被滥用。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"afraid\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm afraid of the dark.\",\"Translate\":\"我害怕黑暗。\",\"Level\":\"A1\"},{\"Sentence\":\"She's afraid to speak in front of the class.\",\"Translate\":\"她害怕在全班面前发言。\",\"Level\":\"A2\"},{\"Sentence\":\"The child was afraid of being left alone at home.\",\"Translate\":\"这个孩子害怕被独自留在家里。\",\"Level\":\"B1\"},{\"Sentence\":\"He's afraid that he might fail the exam.\",\"Translate\":\"他担心自己可能会考试不及格。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is afraid of losing its market share due to the new competitor.\",\"Translate\":\"公司担心由于新竞争者的出现而失去市场份额。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists were afraid to venture out at night due to the high crime rate.\",\"Translate\":\"由于犯罪率高,游客们不敢在晚上外出。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician was afraid of being implicated in the scandal.\",\"Translate\":\"这位政治家担心会卷入丑闻中。\",\"Level\":\"C1\"},{\"Sentence\":\"The researcher was afraid that her groundbreaking discovery might be misused.\",\"Translate\":\"研究人员担心她开创性的发现可能会被滥用。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84025,
- "Word": "sad",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[saed]",
- "Translate": "难过的",
- "EnglishExplanation": "{\"word\":\"sad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She looked sad when she heard the news.\",\"Translate\":\"当她听到这个消息时,看起来很悲伤。\",\"Level\":\"A1\"},{\"Sentence\":\"The sad movie made me cry.\",\"Translate\":\"那部悲伤的电影让我哭了。\",\"Level\":\"A1\"},{\"Sentence\":\"He felt sad about leaving his friends behind.\",\"Translate\":\"他对离开朋友们感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The news of the pet's death made the children very sad.\",\"Translate\":\"宠物死亡的消息让孩子们非常难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The artist's use of dark colors conveyed a sad mood.\",\"Translate\":\"艺术家使用深色调传递了一种悲伤的情绪。\",\"Level\":\"C1\"},{\"Sentence\":\"The novel's sad ending left a lasting impression on the readers.\",\"Translate\":\"小说的悲伤结局给读者留下了深刻的印象。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"sad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She looked sad when she heard the news.\",\"Translate\":\"当她听到这个消息时,看起来很悲伤。\",\"Level\":\"A1\"},{\"Sentence\":\"The sad movie made me cry.\",\"Translate\":\"那部悲伤的电影让我哭了。\",\"Level\":\"A1\"},{\"Sentence\":\"He felt sad about leaving his friends behind.\",\"Translate\":\"他对离开朋友们感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The news of the pet's death made the children very sad.\",\"Translate\":\"宠物死亡的消息让孩子们非常难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The artist's use of dark colors conveyed a sad mood.\",\"Translate\":\"艺术家使用深色调传递了一种悲伤的情绪。\",\"Level\":\"C1\"},{\"Sentence\":\"The novel's sad ending left a lasting impression on the readers.\",\"Translate\":\"小说的悲伤结局给读者留下了深刻的印象。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84026,
- "Word": "worried",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[wArid]",
- "Translate": "担心的;发愁的",
- "EnglishExplanation": "{\"word\":\"worried\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was worried about her exam results.\",\"Translate\":\"她担心她的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"The worried look on his face made me feel uneasy.\",\"Translate\":\"他脸上担忧的表情让我感到不安。\",\"Level\":\"B1\"},{\"Sentence\":\"The parents were getting increasingly worried as their child hadn't returned home yet.\",\"Translate\":\"孩子还没回家,父母越来越担心。\",\"Level\":\"B1\"},{\"Sentence\":\"Worried about the impact of climate change, the government has implemented new policies.\",\"Translate\":\"由于担心气候变化的影响,政府实施了新的政策。\",\"Level\":\"B2\"},{\"Sentence\":\"The increasingly worried tone in her voice indicated that something was seriously wrong.\",\"Translate\":\"她声音中越来越担忧的语气表明有些事情非常不对劲。\",\"Level\":\"B2\"},{\"Sentence\":\"The CEO appeared worried about the company's financial future during the meeting.\",\"Translate\":\"在会议期间,首席执行官似乎对公司的财务未来感到担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"Worried by the rising number of cases, the health organization launched an emergency response.\",\"Translate\":\"由于担心病例数量的增加,卫生组织启动了紧急响",
- "ExampleSentence": "{\"word\":\"worried\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was worried about her exam results.\",\"Translate\":\"她担心她的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"The worried look on his face made me feel uneasy.\",\"Translate\":\"他脸上担忧的表情让我感到不安。\",\"Level\":\"B1\"},{\"Sentence\":\"The parents were getting increasingly worried as their child hadn't returned home yet.\",\"Translate\":\"孩子还没回家,父母越来越担心。\",\"Level\":\"B1\"},{\"Sentence\":\"Worried about the impact of climate change, the government has implemented new policies.\",\"Translate\":\"由于担心气候变化的影响,政府实施了新的政策。\",\"Level\":\"B2\"},{\"Sentence\":\"The increasingly worried tone in her voice indicated that something was seriously wrong.\",\"Translate\":\"她声音中越来越担忧的语气表明有些事情非常不对劲。\",\"Level\":\"B2\"},{\"Sentence\":\"The CEO appeared worried about the company's financial future during the meeting.\",\"Translate\":\"在会议期间,首席执行官似乎对公司的财务未来感到担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"Worried by the rising number of cases, the health organization launched an emergency response.\",\"Translate\":\"由于担心病例数量的增加,卫生组织启动了紧急响应。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84027,
- "Word": "happy",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[haepi]",
- "Translate": "高兴的",
- "EnglishExplanation": "{\"word\":\"happy\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm happy to see you.\",\"Translate\":\"我很高兴见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The children were happy playing in the park.\",\"Translate\":\"孩子们在公园里玩得很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"She's happy with her new job.\",\"Translate\":\"她对自己的新工作很满意。\",\"Level\":\"A2\"},{\"Sentence\":\"He felt happy when he got the good news.\",\"Translate\":\"他听到这个好消息时感到很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"The team was happy to have won the championship.\",\"Translate\":\"球队很高兴赢得了冠军。\",\"Level\":\"B1\"},{\"Sentence\":\"The happy couple got married last weekend.\",\"Translate\":\"这对幸福的夫妇上周末结婚了。\",\"Level\":\"B1\"},{\"Sentence\":\"The news made her incredibly happy.\",\"Translate\":\"这个消息让她非常高兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The atmosphere at the party was happy and relaxed.\",\"Translate\":\"聚会上的气氛轻松愉快。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"happy\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm happy to see you.\",\"Translate\":\"我很高兴见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The children were happy playing in the park.\",\"Translate\":\"孩子们在公园里玩得很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"She's happy with her new job.\",\"Translate\":\"她对自己的新工作很满意。\",\"Level\":\"A2\"},{\"Sentence\":\"He felt happy when he got the good news.\",\"Translate\":\"他听到这个好消息时感到很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"The team was happy to have won the championship.\",\"Translate\":\"球队很高兴赢得了冠军。\",\"Level\":\"B1\"},{\"Sentence\":\"The happy couple got married last weekend.\",\"Translate\":\"这对幸福的夫妇上周末结婚了。\",\"Level\":\"B1\"},{\"Sentence\":\"The news made her incredibly happy.\",\"Translate\":\"这个消息让她非常高兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The atmosphere at the party was happy and relaxed.\",\"Translate\":\"聚会上的气氛轻松愉快。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84028,
- "Word": "see a doctor",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "看病",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84029,
- "Word": "wear",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[wea(r)]",
- "Translate": "穿",
- "EnglishExplanation": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84030,
- "Word": "more",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[mo:(r)]",
- "Translate": "更多的",
- "EnglishExplanation": "{\"word\":\"more\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I want more water.\",\"Translate\":\"我要更多的水.\",\"Level\":\"A1\"},{\"Sentence\":\"She is more beautiful than her sister.\",\"Translate\":\"她比她姐姐更漂亮.\",\"Level\":\"A2\"},{\"Sentence\":\"The more I read, the more I understand.\",\"Translate\":\"我读得越多,理解得就越多.\",\"Level\":\"B1\"},{\"Sentence\":\"He is more intelligent than I expected.\",\"Translate\":\"他比我预期的更聪明.\",\"Level\":\"B1\"},{\"Sentence\":\"The more complicated the problem is, the more carefully we need to analyze it.\",\"Translate\":\"问题越复杂,我们就越需要仔细分析.\",\"Level\":\"C1\"},{\"Sentence\":\"She is more of a perfectionist than I am.\",\"Translate\":\"她比我更像一个完美主义者.\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"more\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I want more water.\",\"Translate\":\"我要更多的水.\",\"Level\":\"A1\"},{\"Sentence\":\"She is more beautiful than her sister.\",\"Translate\":\"她比她姐姐更漂亮.\",\"Level\":\"A2\"},{\"Sentence\":\"The more I read, the more I understand.\",\"Translate\":\"我读得越多,理解得就越多.\",\"Level\":\"B1\"},{\"Sentence\":\"He is more intelligent than I expected.\",\"Translate\":\"他比我预期的更聪明.\",\"Level\":\"B1\"},{\"Sentence\":\"The more complicated the problem is, the more carefully we need to analyze it.\",\"Translate\":\"问题越复杂,我们就越需要仔细分析.\",\"Level\":\"C1\"},{\"Sentence\":\"She is more of a perfectionist than I am.\",\"Translate\":\"她比我更像一个完美主义者.\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84031,
- "Word": "deep",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[dip]",
- "Translate": "深的",
- "EnglishExplanation": "{\"word\":\"deep\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The lake is very deep.\",\"Translate\":\"这个湖很深。\",\"Level\":\"A2\"},{\"Sentence\":\"She has a deep voice.\",\"Translate\":\"她有一副深沉的声音。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made a deep analysis of the data.\",\"Translate\":\"研究人员对数据进行了深入的分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The company is in deep financial trouble.\",\"Translate\":\"公司陷入了严重的财务困境。\",\"Level\":\"B2\"},{\"Sentence\":\"The new policy has deep implications for the industry.\",\"Translate\":\"新政策对该行业有着深远的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color creates a deep sense of emotion.\",\"Translate\":\"艺术家对色彩的运用营造出一种深刻的情感氛围。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"deep\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The lake is very deep.\",\"Translate\":\"这个湖很深。\",\"Level\":\"A2\"},{\"Sentence\":\"She has a deep voice.\",\"Translate\":\"她有一副深沉的声音。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made a deep analysis of the data.\",\"Translate\":\"研究人员对数据进行了深入的分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The company is in deep financial trouble.\",\"Translate\":\"公司陷入了严重的财务困境。\",\"Level\":\"B2\"},{\"Sentence\":\"The new policy has deep implications for the industry.\",\"Translate\":\"新政策对该行业有着深远的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color creates a deep sense of emotion.\",\"Translate\":\"艺术家对色彩的运用营造出一种深刻的情感氛围。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84032,
- "Word": "breath",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[brea]",
- "Translate": "呼吸",
- "EnglishExplanation": "{\"word\":\"breath\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Take a deep breath and relax.\",\"Translate\":\"深呼吸然后放松.\",\"Level\":\"A2\"},{\"Sentence\":\"She was out of breath after running.\",\"Translate\":\"她跑步后喘不过气.\",\"Level\":\"A2\"},{\"Sentence\":\"The fresh mountain air filled her lungs with every breath.\",\"Translate\":\"清新的山间空气随着每次呼吸充满了她的肺部.\",\"Level\":\"B1\"},{\"Sentence\":\"His breath smelled of garlic.\",\"Translate\":\"他的呼吸有大蒜味.\",\"Level\":\"B1\"},{\"Sentence\":\"The doctor listened to the patient's breath sounds.\",\"Translate\":\"医生听了病人的呼吸声.\",\"Level\":\"C1\"},{\"Sentence\":\"The sheer terror in her eyes took my breath away.\",\"Translate\":\"她眼中的极度恐惧让我惊呆了.\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"breath\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Take a deep breath and relax.\",\"Translate\":\"深呼吸然后放松.\",\"Level\":\"A2\"},{\"Sentence\":\"She was out of breath after running.\",\"Translate\":\"她跑步后喘不过气.\",\"Level\":\"A2\"},{\"Sentence\":\"The fresh mountain air filled her lungs with every breath.\",\"Translate\":\"清新的山间空气随着每次呼吸充满了她的肺部.\",\"Level\":\"B1\"},{\"Sentence\":\"His breath smelled of garlic.\",\"Translate\":\"他的呼吸有大蒜味.\",\"Level\":\"B1\"},{\"Sentence\":\"The doctor listened to the patient's breath sounds.\",\"Translate\":\"医生听了病人的呼吸声.\",\"Level\":\"C1\"},{\"Sentence\":\"The sheer terror in her eyes took my breath away.\",\"Translate\":\"她眼中的极度恐惧让我惊呆了.\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84033,
- "Word": "take a deep breath",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "深深吸一口气",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84034,
- "Word": "count",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[kaunt]",
- "Translate": "数数",
- "EnglishExplanation": "{\"word\":\"count\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She can count to ten in English.\",\"Translate\":\"她可以用英语数到十。\",\"Level\":\"A2\"},{\"Sentence\":\"The count of students in the class is 30.\",\"Translate\":\"班级里的学生总数是30。\",\"Level\":\"B1\"},{\"Sentence\":\"The count of votes is still ongoing.\",\"Translate\":\"计票仍在进行中。\",\"Level\":\"B1\"},{\"Sentence\":\"The countenance of the city changed after the new development.\",\"Translate\":\"新发展后,城市的面貌发生了变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The count's estate was vast and beautiful.\",\"Translate\":\"伯爵的庄园广阔而美丽。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"count\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She can count to ten in English.\",\"Translate\":\"她可以用英语数到十。\",\"Level\":\"A2\"},{\"Sentence\":\"The count of students in the class is 30.\",\"Translate\":\"班级里的学生总数是30。\",\"Level\":\"B1\"},{\"Sentence\":\"The count of votes is still ongoing.\",\"Translate\":\"计票仍在进行中。\",\"Level\":\"B1\"},{\"Sentence\":\"The countenance of the city changed after the new development.\",\"Translate\":\"新发展后,城市的面貌发生了变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The count's estate was vast and beautiful.\",\"Translate\":\"伯爵的庄园广阔而美丽。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84035,
- "Word": "count to ten",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "数到十",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84036,
- "Word": "chase",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[tfeis]",
- "Translate": "追赶",
- "EnglishExplanation": "{\"word\":\"chase\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The police chased the thief down the street.\",\"Translate\":\"警察在街上追赶小偷。\",\"Level\":\"A2\"},{\"Sentence\":\"The kids love to chase each other in the park.\",\"Translate\":\"孩子们喜欢在公园里互相追逐。\",\"Level\":\"A2\"},{\"Sentence\":\"The detective was tasked with chasing down new leads.\",\"Translate\":\"侦探的任务是追查新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will chase after new business opportunities.\",\"Translate\":\"公司将追求新的商业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's latest series chases the elusive concept of beauty.\",\"Translate\":\"艺术家的最新系列作品追寻着难以捉摸的美丽概念。\",\"Level\":\"C1\"},{\"Sentence\":\"The philosopher's ideas continue to chase the implications of technological advancements.\",\"Translate\":\"哲学家的思想继续追寻技术进步的含义。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"chase\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The police chased the thief down the street.\",\"Translate\":\"警察在街上追赶小偷。\",\"Level\":\"A2\"},{\"Sentence\":\"The kids love to chase each other in the park.\",\"Translate\":\"孩子们喜欢在公园里互相追逐。\",\"Level\":\"A2\"},{\"Sentence\":\"The detective was tasked with chasing down new leads.\",\"Translate\":\"侦探的任务是追查新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will chase after new business opportunities.\",\"Translate\":\"公司将追求新的商业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's latest series chases the elusive concept of beauty.\",\"Translate\":\"艺术家的最新系列作品追寻着难以捉摸的美丽概念。\",\"Level\":\"C1\"},{\"Sentence\":\"The philosopher's ideas continue to chase the implications of technological advancements.\",\"Translate\":\"哲学家的思想继续追寻技术进步的含义。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84037,
- "Word": "mice",
- "WordRemark": null,
- "Level": null,
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[mais]",
- "Translate": "老鼠(复数)",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84038,
- "Word": "bad",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[baed]",
- "Translate": "邪恶的;坏的",
- "EnglishExplanation": "{\"word\":\"bad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The food was bad.\",\"Translate\":\"食物很糟糕。\",\"Level\":\"A1\"},{\"Sentence\":\"He has a bad cold.\",\"Translate\":\"他患了重感冒。\",\"Level\":\"A1\"},{\"Sentence\":\"The air quality is really bad today.\",\"Translate\":\"今天的空气质量很差。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt bad about forgetting her friend's birthday.\",\"Translate\":\"她因为忘记了朋友的生日而感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The bad weather ruined our plans for the picnic.\",\"Translate\":\"糟糕的天气破坏了我们的野餐计划。\",\"Level\":\"B1\"},{\"Sentence\":\"He has a bad habit of biting his nails when he's nervous.\",\"Translate\":\"他有个坏习惯,紧张时就会咬指甲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial situation is getting worse, and it's having a bad impact on the employees.\",\"Translate\":\"公司的财务状况越来越糟糕,对员工产生了不良影响。\",\"Level\":\"B2\"},{\"Sentence\":\"The bad news spread quickly through the town.\",\"Translate\":\"坏消息在镇上迅速传播。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician's scandal had a bad effect on his reputation.\",\"Translate\":\"那位政治家的丑闻对他的声誉产生了恶劣影响。\",\"Level\":\"C1\"},",
- "ExampleSentence": "{\"word\":\"bad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The food was bad.\",\"Translate\":\"食物很糟糕。\",\"Level\":\"A1\"},{\"Sentence\":\"He has a bad cold.\",\"Translate\":\"他患了重感冒。\",\"Level\":\"A1\"},{\"Sentence\":\"The air quality is really bad today.\",\"Translate\":\"今天的空气质量很差。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt bad about forgetting her friend's birthday.\",\"Translate\":\"她因为忘记了朋友的生日而感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The bad weather ruined our plans for the picnic.\",\"Translate\":\"糟糕的天气破坏了我们的野餐计划。\",\"Level\":\"B1\"},{\"Sentence\":\"He has a bad habit of biting his nails when he's nervous.\",\"Translate\":\"他有个坏习惯,紧张时就会咬指甲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial situation is getting worse, and it's having a bad impact on the employees.\",\"Translate\":\"公司的财务状况越来越糟糕,对员工产生了不良影响。\",\"Level\":\"B2\"},{\"Sentence\":\"The bad news spread quickly through the town.\",\"Translate\":\"坏消息在镇上迅速传播。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician's scandal had a bad effect on his reputation.\",\"Translate\":\"那位政治家的丑闻对他的声誉产生了恶劣影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The bad faith shown by the company led to a loss of trust among its customers.\",\"Translate\":\"公司表现出的恶意导致客户对其失去了信任。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84039,
- "Word": "hurt",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[h3:t]",
- "Translate": "(使)受伤",
- "EnglishExplanation": "{\"word\":\"hurt\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I fell down and hurt my knee.\",\"Translate\":\"我摔倒了,伤到了膝盖。\",\"Level\":\"A2\"},{\"Sentence\":\"Be careful not to hurt yourself.\",\"Translate\":\"小心别伤到自己。\",\"Level\":\"A2\"},{\"Sentence\":\"The criticism really hurt her feelings.\",\"Translate\":\"批评真的伤害了她的感情。\",\"Level\":\"B1\"},{\"Sentence\":\"The scandal hurt the company's reputation.\",\"Translate\":\"丑闻损害了公司的声誉。\",\"Level\":\"B1\"},{\"Sentence\":\"The experience left her emotionally hurt and scarred.\",\"Translate\":\"这段经历让她在情感上受到了伤害和创伤。\",\"Level\":\"C1\"},{\"Sentence\":\"The hurt caused by his betrayal still lingered.\",\"Translate\":\"他背叛所带来的伤害仍然挥之不去。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"hurt\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I fell down and hurt my knee.\",\"Translate\":\"我摔倒了,伤到了膝盖。\",\"Level\":\"A2\"},{\"Sentence\":\"Be careful not to hurt yourself.\",\"Translate\":\"小心别伤到自己。\",\"Level\":\"A2\"},{\"Sentence\":\"The criticism really hurt her feelings.\",\"Translate\":\"批评真的伤害了她的感情。\",\"Level\":\"B1\"},{\"Sentence\":\"The scandal hurt the company's reputation.\",\"Translate\":\"丑闻损害了公司的声誉。\",\"Level\":\"B1\"},{\"Sentence\":\"The experience left her emotionally hurt and scarred.\",\"Translate\":\"这段经历让她在情感上受到了伤害和创伤。\",\"Level\":\"C1\"},{\"Sentence\":\"The hurt caused by his betrayal still lingered.\",\"Translate\":\"他背叛所带来的伤害仍然挥之不去。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84040,
- "Word": "ill",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[il]",
- "Translate": "有病;不舒服",
- "EnglishExplanation": "{\"word\":\"ill\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was ill and couldn't come to school.\",\"Translate\":\"她病了,不能来上学。\",\"Level\":\"A2\"},{\"Sentence\":\"The ill child was crying all night.\",\"Translate\":\"那个生病的孩子整夜都在哭。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor treated many ill patients during the epidemic.\",\"Translate\":\"在疫情期间,医生治疗了许多病人。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill effects of smoking are well known.\",\"Translate\":\"吸烟的危害是众所周知的。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill will between the two nations has been growing.\",\"Translate\":\"两国之间的恶意一直在增长。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's ill-conceived strategy led to its downfall.\",\"Translate\":\"公司错误的战略导致了它的垮台。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"ill\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was ill and couldn't come to school.\",\"Translate\":\"她病了,不能来上学。\",\"Level\":\"A2\"},{\"Sentence\":\"The ill child was crying all night.\",\"Translate\":\"那个生病的孩子整夜都在哭。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor treated many ill patients during the epidemic.\",\"Translate\":\"在疫情期间,医生治疗了许多病人。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill effects of smoking are well known.\",\"Translate\":\"吸烟的危害是众所周知的。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill will between the two nations has been growing.\",\"Translate\":\"两国之间的恶意一直在增长。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's ill-conceived strategy led to its downfall.\",\"Translate\":\"公司错误的战略导致了它的垮台。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84041,
- "Word": "wrong",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[rpn]",
- "Translate": "有毛病",
- "EnglishExplanation": "{\"word\":\"wrong\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I think you've got the wrong number.\",\"Translate\":\"我觉得你拨错电话号码了。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor made a wrong diagnosis.\",\"Translate\":\"医生做出了错误的诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"It would be wrong to assume that the project will be easy.\",\"Translate\":\"认为这个项目很容易是错误的。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's wrong investment decisions led to significant financial losses.\",\"Translate\":\"公司错误的投资决定导致了巨大的财务损失。\",\"Level\":\"C1\"},{\"Sentence\":\"The detective realized that the initial suspect was wrong and continued the investigation.\",\"Translate\":\"侦探意识到最初的嫌疑人是错误的,并继续进行调查。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"wrong\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I think you've got the wrong number.\",\"Translate\":\"我觉得你拨错电话号码了。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor made a wrong diagnosis.\",\"Translate\":\"医生做出了错误的诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"It would be wrong to assume that the project will be easy.\",\"Translate\":\"认为这个项目很容易是错误的。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's wrong investment decisions led to significant financial losses.\",\"Translate\":\"公司错误的投资决定导致了巨大的财务损失。\",\"Level\":\"C1\"},{\"Sentence\":\"The detective realized that the initial suspect was wrong and continued the investigation.\",\"Translate\":\"侦探意识到最初的嫌疑人是错误的,并继续进行调查。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84042,
- "Word": "should",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[Jad; Jud]",
- "Translate": "应该",
- "EnglishExplanation": "{\"word\":\"should\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"You should try this cake, it's delicious.\",\"Translate\":\"你应该试试这个蛋糕,它很好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"I think you should take an umbrella, it's raining outside.\",\"Translate\":\"我想你应该带把伞,外面正在下雨。\",\"Level\":\"A2\"},{\"Sentence\":\"The government should invest more in renewable energy sources.\",\"Translate\":\"政府应该在可再生能源上投入更多。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I should consider taking a different approach to solve the problem.\",\"Translate\":\"如果我是你,我会考虑采取不同的方法来解决问题。\",\"Level\":\"B1\"},{\"Sentence\":\"It is suggested that the company should diversify its investments to minimize risk.\",\"Translate\":\"有人建议公司应该多元化投资以最小化风险。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy should, in theory, lead to a significant reduction in carbon emissions by 2050.\",\"Translate\":\"理论上,新政策应该会在2050年前显著减少碳排放。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"should\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"You should try this cake, it's delicious.\",\"Translate\":\"你应该试试这个蛋糕,它很好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"I think you should take an umbrella, it's raining outside.\",\"Translate\":\"我想你应该带把伞,外面正在下雨。\",\"Level\":\"A2\"},{\"Sentence\":\"The government should invest more in renewable energy sources.\",\"Translate\":\"政府应该在可再生能源上投入更多。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I should consider taking a different approach to solve the problem.\",\"Translate\":\"如果我是你,我会考虑采取不同的方法来解决问题。\",\"Level\":\"B1\"},{\"Sentence\":\"It is suggested that the company should diversify its investments to minimize risk.\",\"Translate\":\"有人建议公司应该多元化投资以最小化风险。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy should, in theory, lead to a significant reduction in carbon emissions by 2050.\",\"Translate\":\"理论上,新政策应该会在2050年前显著减少碳排放。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84043,
- "Word": "feel",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[fi:l]",
- "Translate": "觉得;感到",
- "EnglishExplanation": "{\"word\":\"feel\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I feel happy today.\",\"Translate\":\"我今天感觉很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"The water feels cold.\",\"Translate\":\"这水摸起来很冷。\",\"Level\":\"A1\"},{\"Sentence\":\"She feels tired after work.\",\"Translate\":\"她下班后感到很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The fabric feels soft against my skin.\",\"Translate\":\"这布料摸起来很柔软。\",\"Level\":\"A2\"},{\"Sentence\":\"As I walked through the forest, I couldn't help but feel a deep connection to nature.\",\"Translate\":\"当我走过森林时,我不禁感到与自然有着深深的联系。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light creates a feeling that is hard to put into words.\",\"Translate\":\"艺术家对色彩和光线的运用创造出一种难以用语言表达的感觉。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"feel\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I feel happy today.\",\"Translate\":\"我今天感觉很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"The water feels cold.\",\"Translate\":\"这水摸起来很冷。\",\"Level\":\"A1\"},{\"Sentence\":\"She feels tired after work.\",\"Translate\":\"她下班后感到很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The fabric feels soft against my skin.\",\"Translate\":\"这布料摸起来很柔软。\",\"Level\":\"A2\"},{\"Sentence\":\"As I walked through the forest, I couldn't help but feel a deep connection to nature.\",\"Translate\":\"当我走过森林时,我不禁感到与自然有着深深的联系。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light creates a feeling that is hard to put into words.\",\"Translate\":\"艺术家对色彩和光线的运用创造出一种难以用语言表达的感觉。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84044,
- "Word": "well",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[wel]",
- "Translate": "健康;身体好",
- "EnglishExplanation": "{\"word\":\"well\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm feeling well today.\",\"Translate\":\"我今天感觉很好.\",\"Level\":\"A1\"},{\"Sentence\":\"She sings very well.\",\"Translate\":\"她唱歌唱得很好.\",\"Level\":\"A1\"},{\"Sentence\":\"The team played well together.\",\"Translate\":\"团队合作得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"He's doing well in his new job.\",\"Translate\":\"他新工作做得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"The company has done well in the market.\",\"Translate\":\"公司在市场上表现良好.\",\"Level\":\"C1\"},{\"Sentence\":\"It's well known that she's an expert.\",\"Translate\":\"众所周知她是专家.\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"well\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm feeling well today.\",\"Translate\":\"我今天感觉很好.\",\"Level\":\"A1\"},{\"Sentence\":\"She sings very well.\",\"Translate\":\"她唱歌唱得很好.\",\"Level\":\"A1\"},{\"Sentence\":\"The team played well together.\",\"Translate\":\"团队合作得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"He's doing well in his new job.\",\"Translate\":\"他新工作做得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"The company has done well in the market.\",\"Translate\":\"公司在市场上表现良好.\",\"Level\":\"C1\"},{\"Sentence\":\"It's well known that she's an expert.\",\"Translate\":\"众所周知她是专家.\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84045,
- "Word": "sit",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[sit]",
- "Translate": "坐",
- "EnglishExplanation": "{\"word\":\"sit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's sit down and have a rest.\",\"Translate\":\"让我们坐下休息一下吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The baby can't sit up yet.\",\"Translate\":\"这个婴儿还不能坐起来。\",\"Level\":\"A1\"},{\"Sentence\":\"The family usually sit together for dinner.\",\"Translate\":\"这家人通常坐在一起吃晚饭。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit in a circle.\",\"Translate\":\"老师让学生们围成一个圈坐下。\",\"Level\":\"A2\"},{\"Sentence\":\"The committee will sit next Monday to discuss the proposal.\",\"Translate\":\"委员会将在下周一开会讨论这个提案。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been sitting on the table for months.\",\"Translate\":\"新政策已经搁置了几个月。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made the defendant sit through a lengthy lecture.\",\"Translate\":\"法官让被告坐在那里听了一场冗长的训诫。\",\"Level\":\"C1\"},{\"Sentence\":\"The issue has been sitting uneasily with me for some time.\",\"Translate\":\"这个问题让我感到不安已经有一段时间了。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"sit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's sit down and have a rest.\",\"Translate\":\"让我们坐下休息一下吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The baby can't sit up yet.\",\"Translate\":\"这个婴儿还不能坐起来。\",\"Level\":\"A1\"},{\"Sentence\":\"The family usually sit together for dinner.\",\"Translate\":\"这家人通常坐在一起吃晚饭。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit in a circle.\",\"Translate\":\"老师让学生们围成一个圈坐下。\",\"Level\":\"A2\"},{\"Sentence\":\"The committee will sit next Monday to discuss the proposal.\",\"Translate\":\"委员会将在下周一开会讨论这个提案。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been sitting on the table for months.\",\"Translate\":\"新政策已经搁置了几个月。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made the defendant sit through a lengthy lecture.\",\"Translate\":\"法官让被告坐在那里听了一场冗长的训诫。\",\"Level\":\"C1\"},{\"Sentence\":\"The issue has been sitting uneasily with me for some time.\",\"Translate\":\"这个问题让我感到不安已经有一段时间了。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84046,
- "Word": "grass",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[grais]",
- "Translate": "草坪",
- "EnglishExplanation": "{\"word\":\"grass\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The kids are playing on the grass.\",\"Translate\":\"孩子们在草地上玩耍。\",\"Level\":\"A1\"},{\"Sentence\":\"The park has a lot of grass.\",\"Translate\":\"公园里有很多草。\",\"Level\":\"A1\"},{\"Sentence\":\"The grass needs to be watered regularly.\",\"Translate\":\"草需要定期浇水。\",\"Level\":\"A2\"},{\"Sentence\":\"She sat on the grass and read a book.\",\"Translate\":\"她坐在草地上读书。\",\"Level\":\"A2\"},{\"Sentence\":\"The grass was so tall that it needed to be mowed.\",\"Translate\":\"草长得太高了,需要割草了。\",\"Level\":\"B1\"},{\"Sentence\":\"The smell of fresh-cut grass filled the air.\",\"Translate\":\"空气中弥漫着刚割下的草的香味。\",\"Level\":\"B1\"},{\"Sentence\":\"The grass was swaying gently in the breeze.\",\"Translate\":\"草在微风中轻轻摇摆。\",\"Level\":\"C1\"},{\"Sentence\":\"The landscape designer incorporated native grass species into the garden.\",\"Translate\":\"景观设计师在花园中融入了本土草种。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"grass\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The kids are playing on the grass.\",\"Translate\":\"孩子们在草地上玩耍。\",\"Level\":\"A1\"},{\"Sentence\":\"The park has a lot of grass.\",\"Translate\":\"公园里有很多草。\",\"Level\":\"A1\"},{\"Sentence\":\"The grass needs to be watered regularly.\",\"Translate\":\"草需要定期浇水。\",\"Level\":\"A2\"},{\"Sentence\":\"She sat on the grass and read a book.\",\"Translate\":\"她坐在草地上读书。\",\"Level\":\"A2\"},{\"Sentence\":\"The grass was so tall that it needed to be mowed.\",\"Translate\":\"草长得太高了,需要割草了。\",\"Level\":\"B1\"},{\"Sentence\":\"The smell of fresh-cut grass filled the air.\",\"Translate\":\"空气中弥漫着刚割下的草的香味。\",\"Level\":\"B1\"},{\"Sentence\":\"The grass was swaying gently in the breeze.\",\"Translate\":\"草在微风中轻轻摇摆。\",\"Level\":\"C1\"},{\"Sentence\":\"The landscape designer incorporated native grass species into the garden.\",\"Translate\":\"景观设计师在花园中融入了本土草种。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84047,
- "Word": "hear",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[his(r)]",
- "Translate": "听见",
- "EnglishExplanation": "{\"word\":\"hear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I hear a bird singing outside my window.\",\"Translate\":\"我听到一只鸟在窗外唱歌。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you hear me clearly?\",\"Translate\":\"你能听清我说话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I heard the news yesterday.\",\"Translate\":\"我昨天听到了这个消息。\",\"Level\":\"A2\"},{\"Sentence\":\"She heard that the concert was sold out.\",\"Translate\":\"她听说演唱会门票已经售罄了。\",\"Level\":\"A2\"},{\"Sentence\":\"I've heard that the new restaurant is very good.\",\"Translate\":\"我听说那家新餐厅非常好。\",\"Level\":\"B1\"},{\"Sentence\":\"The news was heard by millions of people around the world.\",\"Translate\":\"这个消息被全球数百万人知晓。\",\"Level\":\"B1\"},{\"Sentence\":\"It was heard that the company would be expanding its operations.\",\"Translate\":\"据说公司将扩大其业务。\",\"Level\":\"C1\"},{\"Sentence\":\"The judge heard the case and made a decision.\",\"Translate\":\"法官听取了案件并做出了决定。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"hear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I hear a bird singing outside my window.\",\"Translate\":\"我听到一只鸟在窗外唱歌。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you hear me clearly?\",\"Translate\":\"你能听清我说话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I heard the news yesterday.\",\"Translate\":\"我昨天听到了这个消息。\",\"Level\":\"A2\"},{\"Sentence\":\"She heard that the concert was sold out.\",\"Translate\":\"她听说演唱会门票已经售罄了。\",\"Level\":\"A2\"},{\"Sentence\":\"I've heard that the new restaurant is very good.\",\"Translate\":\"我听说那家新餐厅非常好。\",\"Level\":\"B1\"},{\"Sentence\":\"The news was heard by millions of people around the world.\",\"Translate\":\"这个消息被全球数百万人知晓。\",\"Level\":\"B1\"},{\"Sentence\":\"It was heard that the company would be expanding its operations.\",\"Translate\":\"据说公司将扩大其业务。\",\"Level\":\"C1\"},{\"Sentence\":\"The judge heard the case and made a decision.\",\"Translate\":\"法官听取了案件并做出了决定。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84048,
- "Word": "ant",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[aent]",
- "Translate": "蚂蚁",
- "EnglishExplanation": "{\"word\":\"ant\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The little ant is very strong.\",\"Translate\":\"这只小蚂蚁很强壮。\",\"Level\":\"A2\"},{\"Sentence\":\"Ants live in colonies.\",\"Translate\":\"蚂蚁群居生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The ants are marching in a line.\",\"Translate\":\"蚂蚁正在排队行进。\",\"Level\":\"B1\"},{\"Sentence\":\"The colony of ants worked together to build their nest.\",\"Translate\":\"蚂蚁群共同合作建造它们的巢穴。\",\"Level\":\"B1\"},{\"Sentence\":\"The ant's complex social structure is fascinating.\",\"Translate\":\"蚂蚁复杂的社会结构令人着迷。\",\"Level\":\"C1\"},{\"Sentence\":\"Ants have evolved sophisticated communication methods.\",\"Translate\":\"蚂蚁已经进化出复杂的沟通方式。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"ant\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The little ant is very strong.\",\"Translate\":\"这只小蚂蚁很强壮。\",\"Level\":\"A2\"},{\"Sentence\":\"Ants live in colonies.\",\"Translate\":\"蚂蚁群居生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The ants are marching in a line.\",\"Translate\":\"蚂蚁正在排队行进。\",\"Level\":\"B1\"},{\"Sentence\":\"The colony of ants worked together to build their nest.\",\"Translate\":\"蚂蚁群共同合作建造它们的巢穴。\",\"Level\":\"B1\"},{\"Sentence\":\"The ant's complex social structure is fascinating.\",\"Translate\":\"蚂蚁复杂的社会结构令人着迷。\",\"Level\":\"C1\"},{\"Sentence\":\"Ants have evolved sophisticated communication methods.\",\"Translate\":\"蚂蚁已经进化出复杂的沟通方式。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84049,
- "Word": "worry",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[wAri]",
- "Translate": "担心;担忧",
- "EnglishExplanation": "{\"word\":\"worry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I worry about my exam results.\",\"Translate\":\"我担心我的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"Don't worry, everything will be alright.\",\"Translate\":\"别担心,一切都会好起来的。\",\"Level\":\"A2\"},{\"Sentence\":\"She worries that she might not finish the project on time.\",\"Translate\":\"她担心自己可能无法按时完成项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The constant noise from the construction site is starting to worry the neighbors.\",\"Translate\":\"建筑工地的持续噪音开始让邻居们担心。\",\"Level\":\"B1\"},{\"Sentence\":\"The government's inability to address the economic crisis has caused widespread worry among the population.\",\"Translate\":\"政府无法解决经济危机,这引起了民众的普遍担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"The environmental impact of the new development has been a major worry for local activists.\",\"Translate\":\"新开发项目对环境的影响一直是当地活动家们的一大担忧。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"worry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I worry about my exam results.\",\"Translate\":\"我担心我的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"Don't worry, everything will be alright.\",\"Translate\":\"别担心,一切都会好起来的。\",\"Level\":\"A2\"},{\"Sentence\":\"She worries that she might not finish the project on time.\",\"Translate\":\"她担心自己可能无法按时完成项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The constant noise from the construction site is starting to worry the neighbors.\",\"Translate\":\"建筑工地的持续噪音开始让邻居们担心。\",\"Level\":\"B1\"},{\"Sentence\":\"The government's inability to address the economic crisis has caused widespread worry among the population.\",\"Translate\":\"政府无法解决经济危机,这引起了民众的普遍担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"The environmental impact of the new development has been a major worry for local activists.\",\"Translate\":\"新开发项目对环境的影响一直是当地活动家们的一大担忧。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84050,
- "Word": "stuck",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[stak]",
- "Translate": "陷住;无法移动",
- "EnglishExplanation": "{\"word\":\"stuck\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The wheels got stuck in the mud.\",\"Translate\":\"车轮陷入了泥里。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt stuck in her boring job.\",\"Translate\":\"她觉得自己被困在枯燥的工作中。\",\"Level\":\"B1\"},{\"Sentence\":\"The traffic was so bad that we were stuck on the highway for hours.\",\"Translate\":\"交通状况很糟糕,我们在高速公路上堵了几个小时。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's financial troubles left them stuck with a large debt.\",\"Translate\":\"公司的财务问题使他们背负了巨额债务。\",\"Level\":\"C1\"},{\"Sentence\":\"After the merger, the company was stuck with redundant staff.\",\"Translate\":\"合并后,公司面临着冗员问题。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"stuck\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The wheels got stuck in the mud.\",\"Translate\":\"车轮陷入了泥里。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt stuck in her boring job.\",\"Translate\":\"她觉得自己被困在枯燥的工作中。\",\"Level\":\"B1\"},{\"Sentence\":\"The traffic was so bad that we were stuck on the highway for hours.\",\"Translate\":\"交通状况很糟糕,我们在高速公路上堵了几个小时。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's financial troubles left them stuck with a large debt.\",\"Translate\":\"公司的财务问题使他们背负了巨额债务。\",\"Level\":\"C1\"},{\"Sentence\":\"After the merger, the company was stuck with redundant staff.\",\"Translate\":\"合并后,公司面临着冗员问题。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84051,
- "Word": "mud",
- "WordRemark": null,
- "Level": "A2",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[mAd]",
- "Translate": "泥",
- "EnglishExplanation": "{\"word\":\"mud\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The kids love playing in the mud.\",\"Translate\":\"孩子们喜欢在泥里玩耍.\",\"Level\":\"A2\"},{\"Sentence\":\"After the rain, the road was covered in mud.\",\"Translate\":\"雨后,路上满是泥泞.\",\"Level\":\"A2\"},{\"Sentence\":\"The hikers had to trek through thick mud to reach the campsite.\",\"Translate\":\"徒步旅行者不得不穿过厚厚的泥泞才能到达营地.\",\"Level\":\"B1\"},{\"Sentence\":\"The mud on the bottom of the lake is rich in nutrients.\",\"Translate\":\"湖底的泥富含营养.\",\"Level\":\"B1\"},{\"Sentence\":\"The artist used mud to create a textured sculpture.\",\"Translate\":\"艺术家用泥创作了一件有质感的雕塑.\",\"Level\":\"C1\"},{\"Sentence\":\"The geologist studied the composition of the mud to understand the region's geological history.\",\"Translate\":\"地质学家研究了泥的成分,以了解该地区的地质历史.\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"mud\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The kids love playing in the mud.\",\"Translate\":\"孩子们喜欢在泥里玩耍.\",\"Level\":\"A2\"},{\"Sentence\":\"After the rain, the road was covered in mud.\",\"Translate\":\"雨后,路上满是泥泞.\",\"Level\":\"A2\"},{\"Sentence\":\"The hikers had to trek through thick mud to reach the campsite.\",\"Translate\":\"徒步旅行者不得不穿过厚厚的泥泞才能到达营地.\",\"Level\":\"B1\"},{\"Sentence\":\"The mud on the bottom of the lake is rich in nutrients.\",\"Translate\":\"湖底的泥富含营养.\",\"Level\":\"B1\"},{\"Sentence\":\"The artist used mud to create a textured sculpture.\",\"Translate\":\"艺术家用泥创作了一件有质感的雕塑.\",\"Level\":\"C1\"},{\"Sentence\":\"The geologist studied the composition of the mud to understand the region's geological history.\",\"Translate\":\"地质学家研究了泥的成分,以了解该地区的地质历史.\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84052,
- "Word": "pull",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[pul]",
- "Translate": "拉;拽",
- "EnglishExplanation": "{\"word\":\"pull\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you pull the door open?\",\"Translate\":\"你能拉开门吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The dog likes to pull on its leash.\",\"Translate\":\"这只狗喜欢拽着它的牵引绳\",\"Level\":\"A1\"},{\"Sentence\":\"She pulled out a book from her bag.\",\"Translate\":\"她从包里拿出一本书\",\"Level\":\"A2\"},{\"Sentence\":\"The team pulled together to finish the project.\",\"Translate\":\"团队齐心协力完成了这个项目\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy will pull in more investors.\",\"Translate\":\"新政策将吸引更多的投资者\",\"Level\":\"B1\"},{\"Sentence\":\"The car pulled over to the side of the road.\",\"Translate\":\"汽车靠边停了下来\",\"Level\":\"B1\"},{\"Sentence\":\"The curtains were pulled shut to block the sunlight.\",\"Translate\":\"窗帘被拉上以阻挡阳光\",\"Level\":\"B2\"},{\"Sentence\":\"The company is pulling out all the stops to meet the deadline.\",\"Translate\":\"公司正在全力以赴以赶上截止日期\",\"Level\":\"B2\"},{\"Sentence\":\"The government's decision will pull the economy out of recession.\",\"Translate\":\"政府的决定将使经济摆脱衰退\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color pulls the ",
- "ExampleSentence": "{\"word\":\"pull\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you pull the door open?\",\"Translate\":\"你能拉开门吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The dog likes to pull on its leash.\",\"Translate\":\"这只狗喜欢拽着它的牵引绳\",\"Level\":\"A1\"},{\"Sentence\":\"She pulled out a book from her bag.\",\"Translate\":\"她从包里拿出一本书\",\"Level\":\"A2\"},{\"Sentence\":\"The team pulled together to finish the project.\",\"Translate\":\"团队齐心协力完成了这个项目\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy will pull in more investors.\",\"Translate\":\"新政策将吸引更多的投资者\",\"Level\":\"B1\"},{\"Sentence\":\"The car pulled over to the side of the road.\",\"Translate\":\"汽车靠边停了下来\",\"Level\":\"B1\"},{\"Sentence\":\"The curtains were pulled shut to block the sunlight.\",\"Translate\":\"窗帘被拉上以阻挡阳光\",\"Level\":\"B2\"},{\"Sentence\":\"The company is pulling out all the stops to meet the deadline.\",\"Translate\":\"公司正在全力以赴以赶上截止日期\",\"Level\":\"B2\"},{\"Sentence\":\"The government's decision will pull the economy out of recession.\",\"Translate\":\"政府的决定将使经济摆脱衰退\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color pulls the viewer's eye to the center of the painting.\",\"Translate\":\"艺术家的用色将观者的视线吸引到画作的中心\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84053,
- "Word": "everyone",
- "WordRemark": null,
- "Level": "A1",
- "BookID": 197,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": "[evriwAn]",
- "Translate": "每人",
- "EnglishExplanation": "{\"word\":\"everyone\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Everyone is here.\",\"Translate\":\"每个人都在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"The news made everyone happy.\",\"Translate\":\"这个消息让每个人都很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"It is generally agreed by everyone that this is a great opportunity.\",\"Translate\":\"大家普遍认为这是一个很好的机会。\",\"Level\":\"B1\"},{\"Sentence\":\"Everyone has their own opinion on the matter.\",\"Translate\":\"每个人对这件事都有自己的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The complexity of the issue means that everyone has to work together to find a solution.\",\"Translate\":\"问题的复杂性意味着每个人都必须共同努力来找到解决方案。\",\"Level\":\"C1\"},{\"Sentence\":\"In a world where everyone is connected, information spreads rapidly.\",\"Translate\":\"在一个每个人都相互联系的世界里,信息传播得很快。\",\"Level\":\"C1\"}]}",
- "ExampleSentence": "{\"word\":\"everyone\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Everyone is here.\",\"Translate\":\"每个人都在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"The news made everyone happy.\",\"Translate\":\"这个消息让每个人都很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"It is generally agreed by everyone that this is a great opportunity.\",\"Translate\":\"大家普遍认为这是一个很好的机会。\",\"Level\":\"B1\"},{\"Sentence\":\"Everyone has their own opinion on the matter.\",\"Translate\":\"每个人对这件事都有自己的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The complexity of the issue means that everyone has to work together to find a solution.\",\"Translate\":\"问题的复杂性意味着每个人都必须共同努力来找到解决方案。\",\"Level\":\"C1\"},{\"Sentence\":\"In a world where everyone is connected, information spreads rapidly.\",\"Translate\":\"在一个每个人都相互联系的世界里,信息传播得很快。\",\"Level\":\"C1\"}]}",
- "Sort": 0
- },
- {
- "ID": 84054,
- "Word": "Where is the museum shop?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "博物馆的商店在哪儿?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84055,
- "Word": "Itˈs near the door.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "在大门附近。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84056,
- "Word": "How can we get there?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "我们怎么到那儿?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84057,
- "Word": "Turn left at the bookstore.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "到书店左转。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84087,
- "Word": "Better to ask the way than go astray.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 1,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "问路总比迷路好。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84058,
- "Word": "How do you come to school?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "你怎么来学校的?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84059,
- "Word": "Usually, I come on foot.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "通常我走路来。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84060,
- "Word": "In the USA people on bikes must wear one.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "在美国骑自行车的人必须戴(头盔)。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84061,
- "Word": "Donˈt go at the red light!",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "别闯红灯!",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84062,
- "Word": "I must pay attention to the traffic lights!",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "我必须注意交通信号灯!",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84088,
- "Word": "Horses for courses.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 2,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "知人善任。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84063,
- "Word": "What are you going to do tomorrow?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "你明天打算做什么?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84064,
- "Word": "Iˈm going to have an art lesson.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "我要上美术课。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84065,
- "Word": "Weˈre going to draw some pictures in Renmin Park.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "我们要到人民公园去画画。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84066,
- "Word": "Where are you going?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "你们打算去哪儿?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84067,
- "Word": "Weˈre going to the cinema.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "我们打算去电影院。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84068,
- "Word": "When are you going?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "你们什么时候去?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84089,
- "Word": "Think today and speak tomorrow.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 3,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "三思而后言。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84069,
- "Word": "What are Peterˈs hobbies?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "彼得有什么爱好?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84070,
- "Word": "He likes reading stories.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他喜欢读故事。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84071,
- "Word": "Does he live in Sydney?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他住在悉尼吗?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84072,
- "Word": "No, he doesnˈt.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "不,他没有。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84073,
- "Word": "Does he like doing word puzzles and going hiking?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他喜欢猜字谜和远足吗?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84074,
- "Word": "Yes, he does.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "是的,他喜欢。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84090,
- "Word": "A friend in need is a friend indeed.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 4,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "患难见真情。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84075,
- "Word": "What does he do?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他是做什么的?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84076,
- "Word": "Heˈs a businessman.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他是商人。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84077,
- "Word": "Where does he work?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他在哪儿工作?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84078,
- "Word": "He works at sea.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他在海上工作。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84079,
- "Word": "How does he go to work?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他怎么上班?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84080,
- "Word": "He goes to work by bike.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他骑自行车上班。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84091,
- "Word": "Like father, like son.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 5,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "虎父无犬子。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84081,
- "Word": "Theyˈre afraid of him.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他们害怕他。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84082,
- "Word": "The cat is angry with them.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "猫(警察)很生他们的气。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84083,
- "Word": "Whatˈs wrong?",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "怎么了?",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84084,
- "Word": "Your father is ill.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "你爸爸病了。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84085,
- "Word": "He should see a doctor this morning.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "他今天早上应该去看病。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84086,
- "Word": "Donˈt be sad.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "别伤心。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- },
- {
- "ID": 84092,
- "Word": "No pleasure without pain.",
- "WordRemark": null,
- "Level": null,
- "BookID": 205,
- "LessonID": 6,
- "LessonName": null,
- "Soundmark": null,
- "Translate": "没有苦就没有乐。",
- "EnglishExplanation": "",
- "ExampleSentence": null,
- "Sort": 0
- }
- ]
- }
|