vehicle_style.pb.go 263 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: vehicle_style.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type BrandListRequest struct {
  20. // 品牌名
  21. BrandName string `protobuf:"bytes,1,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  22. // 首字母
  23. Initial string `protobuf:"bytes,2,opt,name=initial,proto3" json:"initial"`
  24. // 是否有图片 -1 1
  25. HasImg int32 `protobuf:"varint,3,opt,name=has_img,json=hasImg,proto3" json:"has_img"`
  26. // 状态 -1 1
  27. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
  28. // 分页
  29. PageSize int32 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  30. Page int32 `protobuf:"varint,6,opt,name=page,proto3" json:"page"`
  31. BrandId string `protobuf:"bytes,7,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  32. OldBrandName string `protobuf:"bytes,8,opt,name=old_brand_name,json=oldBrandName,proto3" json:"old_brand_name"`
  33. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  34. XXX_unrecognized []byte `json:"-"`
  35. XXX_sizecache int32 `json:"-"`
  36. }
  37. func (m *BrandListRequest) Reset() { *m = BrandListRequest{} }
  38. func (m *BrandListRequest) String() string { return proto.CompactTextString(m) }
  39. func (*BrandListRequest) ProtoMessage() {}
  40. func (*BrandListRequest) Descriptor() ([]byte, []int) {
  41. return fileDescriptor_b614324037d99e80, []int{0}
  42. }
  43. func (m *BrandListRequest) XXX_Unmarshal(b []byte) error {
  44. return xxx_messageInfo_BrandListRequest.Unmarshal(m, b)
  45. }
  46. func (m *BrandListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  47. return xxx_messageInfo_BrandListRequest.Marshal(b, m, deterministic)
  48. }
  49. func (m *BrandListRequest) XXX_Merge(src proto.Message) {
  50. xxx_messageInfo_BrandListRequest.Merge(m, src)
  51. }
  52. func (m *BrandListRequest) XXX_Size() int {
  53. return xxx_messageInfo_BrandListRequest.Size(m)
  54. }
  55. func (m *BrandListRequest) XXX_DiscardUnknown() {
  56. xxx_messageInfo_BrandListRequest.DiscardUnknown(m)
  57. }
  58. var xxx_messageInfo_BrandListRequest proto.InternalMessageInfo
  59. func (m *BrandListRequest) GetBrandName() string {
  60. if m != nil {
  61. return m.BrandName
  62. }
  63. return ""
  64. }
  65. func (m *BrandListRequest) GetInitial() string {
  66. if m != nil {
  67. return m.Initial
  68. }
  69. return ""
  70. }
  71. func (m *BrandListRequest) GetHasImg() int32 {
  72. if m != nil {
  73. return m.HasImg
  74. }
  75. return 0
  76. }
  77. func (m *BrandListRequest) GetStatus() int32 {
  78. if m != nil {
  79. return m.Status
  80. }
  81. return 0
  82. }
  83. func (m *BrandListRequest) GetPageSize() int32 {
  84. if m != nil {
  85. return m.PageSize
  86. }
  87. return 0
  88. }
  89. func (m *BrandListRequest) GetPage() int32 {
  90. if m != nil {
  91. return m.Page
  92. }
  93. return 0
  94. }
  95. func (m *BrandListRequest) GetBrandId() string {
  96. if m != nil {
  97. return m.BrandId
  98. }
  99. return ""
  100. }
  101. func (m *BrandListRequest) GetOldBrandName() string {
  102. if m != nil {
  103. return m.OldBrandName
  104. }
  105. return ""
  106. }
  107. type BrandList struct {
  108. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  109. Initial string `protobuf:"bytes,2,opt,name=initial,proto3" json:"initial"`
  110. BrandName string `protobuf:"bytes,3,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  111. BrandId string `protobuf:"bytes,4,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  112. Weight int64 `protobuf:"varint,5,opt,name=weight,proto3" json:"weight"`
  113. HasImg int64 `protobuf:"varint,6,opt,name=has_img,json=hasImg,proto3" json:"has_img"`
  114. Status int64 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  115. Image string `protobuf:"bytes,8,opt,name=image,proto3" json:"image"`
  116. OldBrandName string `protobuf:"bytes,9,opt,name=old_brand_name,json=oldBrandName,proto3" json:"old_brand_name"`
  117. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  118. XXX_unrecognized []byte `json:"-"`
  119. XXX_sizecache int32 `json:"-"`
  120. }
  121. func (m *BrandList) Reset() { *m = BrandList{} }
  122. func (m *BrandList) String() string { return proto.CompactTextString(m) }
  123. func (*BrandList) ProtoMessage() {}
  124. func (*BrandList) Descriptor() ([]byte, []int) {
  125. return fileDescriptor_b614324037d99e80, []int{1}
  126. }
  127. func (m *BrandList) XXX_Unmarshal(b []byte) error {
  128. return xxx_messageInfo_BrandList.Unmarshal(m, b)
  129. }
  130. func (m *BrandList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  131. return xxx_messageInfo_BrandList.Marshal(b, m, deterministic)
  132. }
  133. func (m *BrandList) XXX_Merge(src proto.Message) {
  134. xxx_messageInfo_BrandList.Merge(m, src)
  135. }
  136. func (m *BrandList) XXX_Size() int {
  137. return xxx_messageInfo_BrandList.Size(m)
  138. }
  139. func (m *BrandList) XXX_DiscardUnknown() {
  140. xxx_messageInfo_BrandList.DiscardUnknown(m)
  141. }
  142. var xxx_messageInfo_BrandList proto.InternalMessageInfo
  143. func (m *BrandList) GetId() int64 {
  144. if m != nil {
  145. return m.Id
  146. }
  147. return 0
  148. }
  149. func (m *BrandList) GetInitial() string {
  150. if m != nil {
  151. return m.Initial
  152. }
  153. return ""
  154. }
  155. func (m *BrandList) GetBrandName() string {
  156. if m != nil {
  157. return m.BrandName
  158. }
  159. return ""
  160. }
  161. func (m *BrandList) GetBrandId() string {
  162. if m != nil {
  163. return m.BrandId
  164. }
  165. return ""
  166. }
  167. func (m *BrandList) GetWeight() int64 {
  168. if m != nil {
  169. return m.Weight
  170. }
  171. return 0
  172. }
  173. func (m *BrandList) GetHasImg() int64 {
  174. if m != nil {
  175. return m.HasImg
  176. }
  177. return 0
  178. }
  179. func (m *BrandList) GetStatus() int64 {
  180. if m != nil {
  181. return m.Status
  182. }
  183. return 0
  184. }
  185. func (m *BrandList) GetImage() string {
  186. if m != nil {
  187. return m.Image
  188. }
  189. return ""
  190. }
  191. func (m *BrandList) GetOldBrandName() string {
  192. if m != nil {
  193. return m.OldBrandName
  194. }
  195. return ""
  196. }
  197. type BrandListReply struct {
  198. CurrentPage int64 `protobuf:"varint,1,opt,name=current_page,json=currentPage,proto3" json:"current_page"`
  199. PerPage int64 `protobuf:"varint,2,opt,name=per_page,json=perPage,proto3" json:"per_page"`
  200. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  201. FirstPage int64 `protobuf:"varint,4,opt,name=first_page,json=firstPage,proto3" json:"first_page"`
  202. LastPage int64 `protobuf:"varint,5,opt,name=last_page,json=lastPage,proto3" json:"last_page"`
  203. PrevPage int64 `protobuf:"varint,6,opt,name=prev_page,json=prevPage,proto3" json:"prev_page"`
  204. NextPage int64 `protobuf:"varint,7,opt,name=next_page,json=nextPage,proto3" json:"next_page"`
  205. List []*BrandList `protobuf:"bytes,8,rep,name=list,proto3" json:"list"`
  206. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  207. XXX_unrecognized []byte `json:"-"`
  208. XXX_sizecache int32 `json:"-"`
  209. }
  210. func (m *BrandListReply) Reset() { *m = BrandListReply{} }
  211. func (m *BrandListReply) String() string { return proto.CompactTextString(m) }
  212. func (*BrandListReply) ProtoMessage() {}
  213. func (*BrandListReply) Descriptor() ([]byte, []int) {
  214. return fileDescriptor_b614324037d99e80, []int{2}
  215. }
  216. func (m *BrandListReply) XXX_Unmarshal(b []byte) error {
  217. return xxx_messageInfo_BrandListReply.Unmarshal(m, b)
  218. }
  219. func (m *BrandListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  220. return xxx_messageInfo_BrandListReply.Marshal(b, m, deterministic)
  221. }
  222. func (m *BrandListReply) XXX_Merge(src proto.Message) {
  223. xxx_messageInfo_BrandListReply.Merge(m, src)
  224. }
  225. func (m *BrandListReply) XXX_Size() int {
  226. return xxx_messageInfo_BrandListReply.Size(m)
  227. }
  228. func (m *BrandListReply) XXX_DiscardUnknown() {
  229. xxx_messageInfo_BrandListReply.DiscardUnknown(m)
  230. }
  231. var xxx_messageInfo_BrandListReply proto.InternalMessageInfo
  232. func (m *BrandListReply) GetCurrentPage() int64 {
  233. if m != nil {
  234. return m.CurrentPage
  235. }
  236. return 0
  237. }
  238. func (m *BrandListReply) GetPerPage() int64 {
  239. if m != nil {
  240. return m.PerPage
  241. }
  242. return 0
  243. }
  244. func (m *BrandListReply) GetTotal() int64 {
  245. if m != nil {
  246. return m.Total
  247. }
  248. return 0
  249. }
  250. func (m *BrandListReply) GetFirstPage() int64 {
  251. if m != nil {
  252. return m.FirstPage
  253. }
  254. return 0
  255. }
  256. func (m *BrandListReply) GetLastPage() int64 {
  257. if m != nil {
  258. return m.LastPage
  259. }
  260. return 0
  261. }
  262. func (m *BrandListReply) GetPrevPage() int64 {
  263. if m != nil {
  264. return m.PrevPage
  265. }
  266. return 0
  267. }
  268. func (m *BrandListReply) GetNextPage() int64 {
  269. if m != nil {
  270. return m.NextPage
  271. }
  272. return 0
  273. }
  274. func (m *BrandListReply) GetList() []*BrandList {
  275. if m != nil {
  276. return m.List
  277. }
  278. return nil
  279. }
  280. type SearchRequest struct {
  281. // 1 品牌
  282. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type"`
  283. Search string `protobuf:"bytes,2,opt,name=search,proto3" json:"search"`
  284. BrandId string `protobuf:"bytes,3,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  285. MakerId string `protobuf:"bytes,4,opt,name=maker_id,json=makerId,proto3" json:"maker_id"`
  286. SeriesId string `protobuf:"bytes,5,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  288. XXX_unrecognized []byte `json:"-"`
  289. XXX_sizecache int32 `json:"-"`
  290. }
  291. func (m *SearchRequest) Reset() { *m = SearchRequest{} }
  292. func (m *SearchRequest) String() string { return proto.CompactTextString(m) }
  293. func (*SearchRequest) ProtoMessage() {}
  294. func (*SearchRequest) Descriptor() ([]byte, []int) {
  295. return fileDescriptor_b614324037d99e80, []int{3}
  296. }
  297. func (m *SearchRequest) XXX_Unmarshal(b []byte) error {
  298. return xxx_messageInfo_SearchRequest.Unmarshal(m, b)
  299. }
  300. func (m *SearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  301. return xxx_messageInfo_SearchRequest.Marshal(b, m, deterministic)
  302. }
  303. func (m *SearchRequest) XXX_Merge(src proto.Message) {
  304. xxx_messageInfo_SearchRequest.Merge(m, src)
  305. }
  306. func (m *SearchRequest) XXX_Size() int {
  307. return xxx_messageInfo_SearchRequest.Size(m)
  308. }
  309. func (m *SearchRequest) XXX_DiscardUnknown() {
  310. xxx_messageInfo_SearchRequest.DiscardUnknown(m)
  311. }
  312. var xxx_messageInfo_SearchRequest proto.InternalMessageInfo
  313. func (m *SearchRequest) GetType() int32 {
  314. if m != nil {
  315. return m.Type
  316. }
  317. return 0
  318. }
  319. func (m *SearchRequest) GetSearch() string {
  320. if m != nil {
  321. return m.Search
  322. }
  323. return ""
  324. }
  325. func (m *SearchRequest) GetBrandId() string {
  326. if m != nil {
  327. return m.BrandId
  328. }
  329. return ""
  330. }
  331. func (m *SearchRequest) GetMakerId() string {
  332. if m != nil {
  333. return m.MakerId
  334. }
  335. return ""
  336. }
  337. func (m *SearchRequest) GetSeriesId() string {
  338. if m != nil {
  339. return m.SeriesId
  340. }
  341. return ""
  342. }
  343. type SearchList struct {
  344. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
  345. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  346. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  347. XXX_unrecognized []byte `json:"-"`
  348. XXX_sizecache int32 `json:"-"`
  349. }
  350. func (m *SearchList) Reset() { *m = SearchList{} }
  351. func (m *SearchList) String() string { return proto.CompactTextString(m) }
  352. func (*SearchList) ProtoMessage() {}
  353. func (*SearchList) Descriptor() ([]byte, []int) {
  354. return fileDescriptor_b614324037d99e80, []int{4}
  355. }
  356. func (m *SearchList) XXX_Unmarshal(b []byte) error {
  357. return xxx_messageInfo_SearchList.Unmarshal(m, b)
  358. }
  359. func (m *SearchList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  360. return xxx_messageInfo_SearchList.Marshal(b, m, deterministic)
  361. }
  362. func (m *SearchList) XXX_Merge(src proto.Message) {
  363. xxx_messageInfo_SearchList.Merge(m, src)
  364. }
  365. func (m *SearchList) XXX_Size() int {
  366. return xxx_messageInfo_SearchList.Size(m)
  367. }
  368. func (m *SearchList) XXX_DiscardUnknown() {
  369. xxx_messageInfo_SearchList.DiscardUnknown(m)
  370. }
  371. var xxx_messageInfo_SearchList proto.InternalMessageInfo
  372. func (m *SearchList) GetId() string {
  373. if m != nil {
  374. return m.Id
  375. }
  376. return ""
  377. }
  378. func (m *SearchList) GetName() string {
  379. if m != nil {
  380. return m.Name
  381. }
  382. return ""
  383. }
  384. type SearchReply struct {
  385. List []*SearchList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  386. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  387. XXX_unrecognized []byte `json:"-"`
  388. XXX_sizecache int32 `json:"-"`
  389. }
  390. func (m *SearchReply) Reset() { *m = SearchReply{} }
  391. func (m *SearchReply) String() string { return proto.CompactTextString(m) }
  392. func (*SearchReply) ProtoMessage() {}
  393. func (*SearchReply) Descriptor() ([]byte, []int) {
  394. return fileDescriptor_b614324037d99e80, []int{5}
  395. }
  396. func (m *SearchReply) XXX_Unmarshal(b []byte) error {
  397. return xxx_messageInfo_SearchReply.Unmarshal(m, b)
  398. }
  399. func (m *SearchReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  400. return xxx_messageInfo_SearchReply.Marshal(b, m, deterministic)
  401. }
  402. func (m *SearchReply) XXX_Merge(src proto.Message) {
  403. xxx_messageInfo_SearchReply.Merge(m, src)
  404. }
  405. func (m *SearchReply) XXX_Size() int {
  406. return xxx_messageInfo_SearchReply.Size(m)
  407. }
  408. func (m *SearchReply) XXX_DiscardUnknown() {
  409. xxx_messageInfo_SearchReply.DiscardUnknown(m)
  410. }
  411. var xxx_messageInfo_SearchReply proto.InternalMessageInfo
  412. func (m *SearchReply) GetList() []*SearchList {
  413. if m != nil {
  414. return m.List
  415. }
  416. return nil
  417. }
  418. type UpdateSYBrandRequest struct {
  419. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  420. BrandName string `protobuf:"bytes,2,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  421. Initial string `protobuf:"bytes,3,opt,name=initial,proto3" json:"initial"`
  422. Weight int64 `protobuf:"varint,4,opt,name=weight,proto3" json:"weight"`
  423. Status int64 `protobuf:"varint,5,opt,name=status,proto3" json:"status"`
  424. HasImg int64 `protobuf:"varint,6,opt,name=has_img,json=hasImg,proto3" json:"has_img"`
  425. OldBrandName string `protobuf:"bytes,7,opt,name=old_brand_name,json=oldBrandName,proto3" json:"old_brand_name"`
  426. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  427. XXX_unrecognized []byte `json:"-"`
  428. XXX_sizecache int32 `json:"-"`
  429. }
  430. func (m *UpdateSYBrandRequest) Reset() { *m = UpdateSYBrandRequest{} }
  431. func (m *UpdateSYBrandRequest) String() string { return proto.CompactTextString(m) }
  432. func (*UpdateSYBrandRequest) ProtoMessage() {}
  433. func (*UpdateSYBrandRequest) Descriptor() ([]byte, []int) {
  434. return fileDescriptor_b614324037d99e80, []int{6}
  435. }
  436. func (m *UpdateSYBrandRequest) XXX_Unmarshal(b []byte) error {
  437. return xxx_messageInfo_UpdateSYBrandRequest.Unmarshal(m, b)
  438. }
  439. func (m *UpdateSYBrandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  440. return xxx_messageInfo_UpdateSYBrandRequest.Marshal(b, m, deterministic)
  441. }
  442. func (m *UpdateSYBrandRequest) XXX_Merge(src proto.Message) {
  443. xxx_messageInfo_UpdateSYBrandRequest.Merge(m, src)
  444. }
  445. func (m *UpdateSYBrandRequest) XXX_Size() int {
  446. return xxx_messageInfo_UpdateSYBrandRequest.Size(m)
  447. }
  448. func (m *UpdateSYBrandRequest) XXX_DiscardUnknown() {
  449. xxx_messageInfo_UpdateSYBrandRequest.DiscardUnknown(m)
  450. }
  451. var xxx_messageInfo_UpdateSYBrandRequest proto.InternalMessageInfo
  452. func (m *UpdateSYBrandRequest) GetId() int64 {
  453. if m != nil {
  454. return m.Id
  455. }
  456. return 0
  457. }
  458. func (m *UpdateSYBrandRequest) GetBrandName() string {
  459. if m != nil {
  460. return m.BrandName
  461. }
  462. return ""
  463. }
  464. func (m *UpdateSYBrandRequest) GetInitial() string {
  465. if m != nil {
  466. return m.Initial
  467. }
  468. return ""
  469. }
  470. func (m *UpdateSYBrandRequest) GetWeight() int64 {
  471. if m != nil {
  472. return m.Weight
  473. }
  474. return 0
  475. }
  476. func (m *UpdateSYBrandRequest) GetStatus() int64 {
  477. if m != nil {
  478. return m.Status
  479. }
  480. return 0
  481. }
  482. func (m *UpdateSYBrandRequest) GetHasImg() int64 {
  483. if m != nil {
  484. return m.HasImg
  485. }
  486. return 0
  487. }
  488. func (m *UpdateSYBrandRequest) GetOldBrandName() string {
  489. if m != nil {
  490. return m.OldBrandName
  491. }
  492. return ""
  493. }
  494. type GetMakerRequest struct {
  495. BrandId string `protobuf:"bytes,1,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  496. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  497. XXX_unrecognized []byte `json:"-"`
  498. XXX_sizecache int32 `json:"-"`
  499. }
  500. func (m *GetMakerRequest) Reset() { *m = GetMakerRequest{} }
  501. func (m *GetMakerRequest) String() string { return proto.CompactTextString(m) }
  502. func (*GetMakerRequest) ProtoMessage() {}
  503. func (*GetMakerRequest) Descriptor() ([]byte, []int) {
  504. return fileDescriptor_b614324037d99e80, []int{7}
  505. }
  506. func (m *GetMakerRequest) XXX_Unmarshal(b []byte) error {
  507. return xxx_messageInfo_GetMakerRequest.Unmarshal(m, b)
  508. }
  509. func (m *GetMakerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  510. return xxx_messageInfo_GetMakerRequest.Marshal(b, m, deterministic)
  511. }
  512. func (m *GetMakerRequest) XXX_Merge(src proto.Message) {
  513. xxx_messageInfo_GetMakerRequest.Merge(m, src)
  514. }
  515. func (m *GetMakerRequest) XXX_Size() int {
  516. return xxx_messageInfo_GetMakerRequest.Size(m)
  517. }
  518. func (m *GetMakerRequest) XXX_DiscardUnknown() {
  519. xxx_messageInfo_GetMakerRequest.DiscardUnknown(m)
  520. }
  521. var xxx_messageInfo_GetMakerRequest proto.InternalMessageInfo
  522. func (m *GetMakerRequest) GetBrandId() string {
  523. if m != nil {
  524. return m.BrandId
  525. }
  526. return ""
  527. }
  528. type MakerList struct {
  529. BrandId string `protobuf:"bytes,1,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  530. MakerId string `protobuf:"bytes,2,opt,name=maker_id,json=makerId,proto3" json:"maker_id"`
  531. Maker string `protobuf:"bytes,3,opt,name=maker,proto3" json:"maker"`
  532. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  533. XXX_unrecognized []byte `json:"-"`
  534. XXX_sizecache int32 `json:"-"`
  535. }
  536. func (m *MakerList) Reset() { *m = MakerList{} }
  537. func (m *MakerList) String() string { return proto.CompactTextString(m) }
  538. func (*MakerList) ProtoMessage() {}
  539. func (*MakerList) Descriptor() ([]byte, []int) {
  540. return fileDescriptor_b614324037d99e80, []int{8}
  541. }
  542. func (m *MakerList) XXX_Unmarshal(b []byte) error {
  543. return xxx_messageInfo_MakerList.Unmarshal(m, b)
  544. }
  545. func (m *MakerList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  546. return xxx_messageInfo_MakerList.Marshal(b, m, deterministic)
  547. }
  548. func (m *MakerList) XXX_Merge(src proto.Message) {
  549. xxx_messageInfo_MakerList.Merge(m, src)
  550. }
  551. func (m *MakerList) XXX_Size() int {
  552. return xxx_messageInfo_MakerList.Size(m)
  553. }
  554. func (m *MakerList) XXX_DiscardUnknown() {
  555. xxx_messageInfo_MakerList.DiscardUnknown(m)
  556. }
  557. var xxx_messageInfo_MakerList proto.InternalMessageInfo
  558. func (m *MakerList) GetBrandId() string {
  559. if m != nil {
  560. return m.BrandId
  561. }
  562. return ""
  563. }
  564. func (m *MakerList) GetMakerId() string {
  565. if m != nil {
  566. return m.MakerId
  567. }
  568. return ""
  569. }
  570. func (m *MakerList) GetMaker() string {
  571. if m != nil {
  572. return m.Maker
  573. }
  574. return ""
  575. }
  576. type GetMakerReply struct {
  577. List []*MakerList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  578. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  579. XXX_unrecognized []byte `json:"-"`
  580. XXX_sizecache int32 `json:"-"`
  581. }
  582. func (m *GetMakerReply) Reset() { *m = GetMakerReply{} }
  583. func (m *GetMakerReply) String() string { return proto.CompactTextString(m) }
  584. func (*GetMakerReply) ProtoMessage() {}
  585. func (*GetMakerReply) Descriptor() ([]byte, []int) {
  586. return fileDescriptor_b614324037d99e80, []int{9}
  587. }
  588. func (m *GetMakerReply) XXX_Unmarshal(b []byte) error {
  589. return xxx_messageInfo_GetMakerReply.Unmarshal(m, b)
  590. }
  591. func (m *GetMakerReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  592. return xxx_messageInfo_GetMakerReply.Marshal(b, m, deterministic)
  593. }
  594. func (m *GetMakerReply) XXX_Merge(src proto.Message) {
  595. xxx_messageInfo_GetMakerReply.Merge(m, src)
  596. }
  597. func (m *GetMakerReply) XXX_Size() int {
  598. return xxx_messageInfo_GetMakerReply.Size(m)
  599. }
  600. func (m *GetMakerReply) XXX_DiscardUnknown() {
  601. xxx_messageInfo_GetMakerReply.DiscardUnknown(m)
  602. }
  603. var xxx_messageInfo_GetMakerReply proto.InternalMessageInfo
  604. func (m *GetMakerReply) GetList() []*MakerList {
  605. if m != nil {
  606. return m.List
  607. }
  608. return nil
  609. }
  610. type UpdateMakerRequest struct {
  611. MakerId string `protobuf:"bytes,2,opt,name=maker_id,json=makerId,proto3" json:"maker_id"`
  612. Maker string `protobuf:"bytes,3,opt,name=maker,proto3" json:"maker"`
  613. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  614. XXX_unrecognized []byte `json:"-"`
  615. XXX_sizecache int32 `json:"-"`
  616. }
  617. func (m *UpdateMakerRequest) Reset() { *m = UpdateMakerRequest{} }
  618. func (m *UpdateMakerRequest) String() string { return proto.CompactTextString(m) }
  619. func (*UpdateMakerRequest) ProtoMessage() {}
  620. func (*UpdateMakerRequest) Descriptor() ([]byte, []int) {
  621. return fileDescriptor_b614324037d99e80, []int{10}
  622. }
  623. func (m *UpdateMakerRequest) XXX_Unmarshal(b []byte) error {
  624. return xxx_messageInfo_UpdateMakerRequest.Unmarshal(m, b)
  625. }
  626. func (m *UpdateMakerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  627. return xxx_messageInfo_UpdateMakerRequest.Marshal(b, m, deterministic)
  628. }
  629. func (m *UpdateMakerRequest) XXX_Merge(src proto.Message) {
  630. xxx_messageInfo_UpdateMakerRequest.Merge(m, src)
  631. }
  632. func (m *UpdateMakerRequest) XXX_Size() int {
  633. return xxx_messageInfo_UpdateMakerRequest.Size(m)
  634. }
  635. func (m *UpdateMakerRequest) XXX_DiscardUnknown() {
  636. xxx_messageInfo_UpdateMakerRequest.DiscardUnknown(m)
  637. }
  638. var xxx_messageInfo_UpdateMakerRequest proto.InternalMessageInfo
  639. func (m *UpdateMakerRequest) GetMakerId() string {
  640. if m != nil {
  641. return m.MakerId
  642. }
  643. return ""
  644. }
  645. func (m *UpdateMakerRequest) GetMaker() string {
  646. if m != nil {
  647. return m.Maker
  648. }
  649. return ""
  650. }
  651. type EmptyReply struct {
  652. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  653. XXX_unrecognized []byte `json:"-"`
  654. XXX_sizecache int32 `json:"-"`
  655. }
  656. func (m *EmptyReply) Reset() { *m = EmptyReply{} }
  657. func (m *EmptyReply) String() string { return proto.CompactTextString(m) }
  658. func (*EmptyReply) ProtoMessage() {}
  659. func (*EmptyReply) Descriptor() ([]byte, []int) {
  660. return fileDescriptor_b614324037d99e80, []int{11}
  661. }
  662. func (m *EmptyReply) XXX_Unmarshal(b []byte) error {
  663. return xxx_messageInfo_EmptyReply.Unmarshal(m, b)
  664. }
  665. func (m *EmptyReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  666. return xxx_messageInfo_EmptyReply.Marshal(b, m, deterministic)
  667. }
  668. func (m *EmptyReply) XXX_Merge(src proto.Message) {
  669. xxx_messageInfo_EmptyReply.Merge(m, src)
  670. }
  671. func (m *EmptyReply) XXX_Size() int {
  672. return xxx_messageInfo_EmptyReply.Size(m)
  673. }
  674. func (m *EmptyReply) XXX_DiscardUnknown() {
  675. xxx_messageInfo_EmptyReply.DiscardUnknown(m)
  676. }
  677. var xxx_messageInfo_EmptyReply proto.InternalMessageInfo
  678. type SeriesListRequest struct {
  679. // 品牌名
  680. BrandName string `protobuf:"bytes,1,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  681. // 车系名
  682. SeriesName string `protobuf:"bytes,2,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  683. // 是否有图片 -1 1
  684. HasImg int32 `protobuf:"varint,3,opt,name=has_img,json=hasImg,proto3" json:"has_img"`
  685. // 状态 -1 1
  686. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
  687. // 分页
  688. PageSize int32 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  689. Page int32 `protobuf:"varint,6,opt,name=page,proto3" json:"page"`
  690. BrandId string `protobuf:"bytes,7,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  691. SeriesId string `protobuf:"bytes,8,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  692. OldSeriesName string `protobuf:"bytes,9,opt,name=old_series_name,json=oldSeriesName,proto3" json:"old_series_name"`
  693. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  694. XXX_unrecognized []byte `json:"-"`
  695. XXX_sizecache int32 `json:"-"`
  696. }
  697. func (m *SeriesListRequest) Reset() { *m = SeriesListRequest{} }
  698. func (m *SeriesListRequest) String() string { return proto.CompactTextString(m) }
  699. func (*SeriesListRequest) ProtoMessage() {}
  700. func (*SeriesListRequest) Descriptor() ([]byte, []int) {
  701. return fileDescriptor_b614324037d99e80, []int{12}
  702. }
  703. func (m *SeriesListRequest) XXX_Unmarshal(b []byte) error {
  704. return xxx_messageInfo_SeriesListRequest.Unmarshal(m, b)
  705. }
  706. func (m *SeriesListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  707. return xxx_messageInfo_SeriesListRequest.Marshal(b, m, deterministic)
  708. }
  709. func (m *SeriesListRequest) XXX_Merge(src proto.Message) {
  710. xxx_messageInfo_SeriesListRequest.Merge(m, src)
  711. }
  712. func (m *SeriesListRequest) XXX_Size() int {
  713. return xxx_messageInfo_SeriesListRequest.Size(m)
  714. }
  715. func (m *SeriesListRequest) XXX_DiscardUnknown() {
  716. xxx_messageInfo_SeriesListRequest.DiscardUnknown(m)
  717. }
  718. var xxx_messageInfo_SeriesListRequest proto.InternalMessageInfo
  719. func (m *SeriesListRequest) GetBrandName() string {
  720. if m != nil {
  721. return m.BrandName
  722. }
  723. return ""
  724. }
  725. func (m *SeriesListRequest) GetSeriesName() string {
  726. if m != nil {
  727. return m.SeriesName
  728. }
  729. return ""
  730. }
  731. func (m *SeriesListRequest) GetHasImg() int32 {
  732. if m != nil {
  733. return m.HasImg
  734. }
  735. return 0
  736. }
  737. func (m *SeriesListRequest) GetStatus() int32 {
  738. if m != nil {
  739. return m.Status
  740. }
  741. return 0
  742. }
  743. func (m *SeriesListRequest) GetPageSize() int32 {
  744. if m != nil {
  745. return m.PageSize
  746. }
  747. return 0
  748. }
  749. func (m *SeriesListRequest) GetPage() int32 {
  750. if m != nil {
  751. return m.Page
  752. }
  753. return 0
  754. }
  755. func (m *SeriesListRequest) GetBrandId() string {
  756. if m != nil {
  757. return m.BrandId
  758. }
  759. return ""
  760. }
  761. func (m *SeriesListRequest) GetSeriesId() string {
  762. if m != nil {
  763. return m.SeriesId
  764. }
  765. return ""
  766. }
  767. func (m *SeriesListRequest) GetOldSeriesName() string {
  768. if m != nil {
  769. return m.OldSeriesName
  770. }
  771. return ""
  772. }
  773. type SeriesList struct {
  774. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  775. BrandName string `protobuf:"bytes,2,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  776. SeriesId string `protobuf:"bytes,3,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  777. Maker string `protobuf:"bytes,4,opt,name=maker,proto3" json:"maker"`
  778. SeriesName string `protobuf:"bytes,5,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  779. Status int64 `protobuf:"varint,6,opt,name=status,proto3" json:"status"`
  780. Image string `protobuf:"bytes,7,opt,name=image,proto3" json:"image"`
  781. BrandId string `protobuf:"bytes,8,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  782. OldSeriesName string `protobuf:"bytes,9,opt,name=old_series_name,json=oldSeriesName,proto3" json:"old_series_name"`
  783. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  784. XXX_unrecognized []byte `json:"-"`
  785. XXX_sizecache int32 `json:"-"`
  786. }
  787. func (m *SeriesList) Reset() { *m = SeriesList{} }
  788. func (m *SeriesList) String() string { return proto.CompactTextString(m) }
  789. func (*SeriesList) ProtoMessage() {}
  790. func (*SeriesList) Descriptor() ([]byte, []int) {
  791. return fileDescriptor_b614324037d99e80, []int{13}
  792. }
  793. func (m *SeriesList) XXX_Unmarshal(b []byte) error {
  794. return xxx_messageInfo_SeriesList.Unmarshal(m, b)
  795. }
  796. func (m *SeriesList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  797. return xxx_messageInfo_SeriesList.Marshal(b, m, deterministic)
  798. }
  799. func (m *SeriesList) XXX_Merge(src proto.Message) {
  800. xxx_messageInfo_SeriesList.Merge(m, src)
  801. }
  802. func (m *SeriesList) XXX_Size() int {
  803. return xxx_messageInfo_SeriesList.Size(m)
  804. }
  805. func (m *SeriesList) XXX_DiscardUnknown() {
  806. xxx_messageInfo_SeriesList.DiscardUnknown(m)
  807. }
  808. var xxx_messageInfo_SeriesList proto.InternalMessageInfo
  809. func (m *SeriesList) GetId() int64 {
  810. if m != nil {
  811. return m.Id
  812. }
  813. return 0
  814. }
  815. func (m *SeriesList) GetBrandName() string {
  816. if m != nil {
  817. return m.BrandName
  818. }
  819. return ""
  820. }
  821. func (m *SeriesList) GetSeriesId() string {
  822. if m != nil {
  823. return m.SeriesId
  824. }
  825. return ""
  826. }
  827. func (m *SeriesList) GetMaker() string {
  828. if m != nil {
  829. return m.Maker
  830. }
  831. return ""
  832. }
  833. func (m *SeriesList) GetSeriesName() string {
  834. if m != nil {
  835. return m.SeriesName
  836. }
  837. return ""
  838. }
  839. func (m *SeriesList) GetStatus() int64 {
  840. if m != nil {
  841. return m.Status
  842. }
  843. return 0
  844. }
  845. func (m *SeriesList) GetImage() string {
  846. if m != nil {
  847. return m.Image
  848. }
  849. return ""
  850. }
  851. func (m *SeriesList) GetBrandId() string {
  852. if m != nil {
  853. return m.BrandId
  854. }
  855. return ""
  856. }
  857. func (m *SeriesList) GetOldSeriesName() string {
  858. if m != nil {
  859. return m.OldSeriesName
  860. }
  861. return ""
  862. }
  863. type SeriesListReply struct {
  864. CurrentPage int64 `protobuf:"varint,1,opt,name=current_page,json=currentPage,proto3" json:"current_page"`
  865. PerPage int64 `protobuf:"varint,2,opt,name=per_page,json=perPage,proto3" json:"per_page"`
  866. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  867. FirstPage int64 `protobuf:"varint,4,opt,name=first_page,json=firstPage,proto3" json:"first_page"`
  868. LastPage int64 `protobuf:"varint,5,opt,name=last_page,json=lastPage,proto3" json:"last_page"`
  869. PrevPage int64 `protobuf:"varint,6,opt,name=prev_page,json=prevPage,proto3" json:"prev_page"`
  870. NextPage int64 `protobuf:"varint,7,opt,name=next_page,json=nextPage,proto3" json:"next_page"`
  871. List []*SeriesList `protobuf:"bytes,8,rep,name=list,proto3" json:"list"`
  872. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  873. XXX_unrecognized []byte `json:"-"`
  874. XXX_sizecache int32 `json:"-"`
  875. }
  876. func (m *SeriesListReply) Reset() { *m = SeriesListReply{} }
  877. func (m *SeriesListReply) String() string { return proto.CompactTextString(m) }
  878. func (*SeriesListReply) ProtoMessage() {}
  879. func (*SeriesListReply) Descriptor() ([]byte, []int) {
  880. return fileDescriptor_b614324037d99e80, []int{14}
  881. }
  882. func (m *SeriesListReply) XXX_Unmarshal(b []byte) error {
  883. return xxx_messageInfo_SeriesListReply.Unmarshal(m, b)
  884. }
  885. func (m *SeriesListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  886. return xxx_messageInfo_SeriesListReply.Marshal(b, m, deterministic)
  887. }
  888. func (m *SeriesListReply) XXX_Merge(src proto.Message) {
  889. xxx_messageInfo_SeriesListReply.Merge(m, src)
  890. }
  891. func (m *SeriesListReply) XXX_Size() int {
  892. return xxx_messageInfo_SeriesListReply.Size(m)
  893. }
  894. func (m *SeriesListReply) XXX_DiscardUnknown() {
  895. xxx_messageInfo_SeriesListReply.DiscardUnknown(m)
  896. }
  897. var xxx_messageInfo_SeriesListReply proto.InternalMessageInfo
  898. func (m *SeriesListReply) GetCurrentPage() int64 {
  899. if m != nil {
  900. return m.CurrentPage
  901. }
  902. return 0
  903. }
  904. func (m *SeriesListReply) GetPerPage() int64 {
  905. if m != nil {
  906. return m.PerPage
  907. }
  908. return 0
  909. }
  910. func (m *SeriesListReply) GetTotal() int64 {
  911. if m != nil {
  912. return m.Total
  913. }
  914. return 0
  915. }
  916. func (m *SeriesListReply) GetFirstPage() int64 {
  917. if m != nil {
  918. return m.FirstPage
  919. }
  920. return 0
  921. }
  922. func (m *SeriesListReply) GetLastPage() int64 {
  923. if m != nil {
  924. return m.LastPage
  925. }
  926. return 0
  927. }
  928. func (m *SeriesListReply) GetPrevPage() int64 {
  929. if m != nil {
  930. return m.PrevPage
  931. }
  932. return 0
  933. }
  934. func (m *SeriesListReply) GetNextPage() int64 {
  935. if m != nil {
  936. return m.NextPage
  937. }
  938. return 0
  939. }
  940. func (m *SeriesListReply) GetList() []*SeriesList {
  941. if m != nil {
  942. return m.List
  943. }
  944. return nil
  945. }
  946. type UpdateSeriesRequest struct {
  947. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  948. SeriesName string `protobuf:"bytes,2,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  949. Maker string `protobuf:"bytes,3,opt,name=maker,proto3" json:"maker"`
  950. Status int64 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
  951. HasImg int64 `protobuf:"varint,5,opt,name=has_img,json=hasImg,proto3" json:"has_img"`
  952. OldSeriesName string `protobuf:"bytes,6,opt,name=old_series_name,json=oldSeriesName,proto3" json:"old_series_name"`
  953. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  954. XXX_unrecognized []byte `json:"-"`
  955. XXX_sizecache int32 `json:"-"`
  956. }
  957. func (m *UpdateSeriesRequest) Reset() { *m = UpdateSeriesRequest{} }
  958. func (m *UpdateSeriesRequest) String() string { return proto.CompactTextString(m) }
  959. func (*UpdateSeriesRequest) ProtoMessage() {}
  960. func (*UpdateSeriesRequest) Descriptor() ([]byte, []int) {
  961. return fileDescriptor_b614324037d99e80, []int{15}
  962. }
  963. func (m *UpdateSeriesRequest) XXX_Unmarshal(b []byte) error {
  964. return xxx_messageInfo_UpdateSeriesRequest.Unmarshal(m, b)
  965. }
  966. func (m *UpdateSeriesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  967. return xxx_messageInfo_UpdateSeriesRequest.Marshal(b, m, deterministic)
  968. }
  969. func (m *UpdateSeriesRequest) XXX_Merge(src proto.Message) {
  970. xxx_messageInfo_UpdateSeriesRequest.Merge(m, src)
  971. }
  972. func (m *UpdateSeriesRequest) XXX_Size() int {
  973. return xxx_messageInfo_UpdateSeriesRequest.Size(m)
  974. }
  975. func (m *UpdateSeriesRequest) XXX_DiscardUnknown() {
  976. xxx_messageInfo_UpdateSeriesRequest.DiscardUnknown(m)
  977. }
  978. var xxx_messageInfo_UpdateSeriesRequest proto.InternalMessageInfo
  979. func (m *UpdateSeriesRequest) GetId() int64 {
  980. if m != nil {
  981. return m.Id
  982. }
  983. return 0
  984. }
  985. func (m *UpdateSeriesRequest) GetSeriesName() string {
  986. if m != nil {
  987. return m.SeriesName
  988. }
  989. return ""
  990. }
  991. func (m *UpdateSeriesRequest) GetMaker() string {
  992. if m != nil {
  993. return m.Maker
  994. }
  995. return ""
  996. }
  997. func (m *UpdateSeriesRequest) GetStatus() int64 {
  998. if m != nil {
  999. return m.Status
  1000. }
  1001. return 0
  1002. }
  1003. func (m *UpdateSeriesRequest) GetHasImg() int64 {
  1004. if m != nil {
  1005. return m.HasImg
  1006. }
  1007. return 0
  1008. }
  1009. func (m *UpdateSeriesRequest) GetOldSeriesName() string {
  1010. if m != nil {
  1011. return m.OldSeriesName
  1012. }
  1013. return ""
  1014. }
  1015. type StyleListRequest struct {
  1016. // 品牌名
  1017. BrandName string `protobuf:"bytes,1,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  1018. // 车系名
  1019. SeriesName string `protobuf:"bytes,2,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  1020. // 是否有图片 -1 1
  1021. HasManual int32 `protobuf:"varint,3,opt,name=has_manual,json=hasManual,proto3" json:"has_manual"`
  1022. // 状态 -1 1
  1023. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
  1024. // 分页
  1025. PageSize int32 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1026. Page int32 `protobuf:"varint,6,opt,name=page,proto3" json:"page"`
  1027. // 厂商
  1028. Maker string `protobuf:"bytes,7,opt,name=maker,proto3" json:"maker"`
  1029. // 年份
  1030. ModelYear int64 `protobuf:"varint,8,opt,name=model_year,json=modelYear,proto3" json:"model_year"`
  1031. StyleName string `protobuf:"bytes,9,opt,name=style_name,json=styleName,proto3" json:"style_name"`
  1032. BrandId string `protobuf:"bytes,10,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  1033. SeriesId string `protobuf:"bytes,11,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  1034. StyleId string `protobuf:"bytes,12,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  1035. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1036. XXX_unrecognized []byte `json:"-"`
  1037. XXX_sizecache int32 `json:"-"`
  1038. }
  1039. func (m *StyleListRequest) Reset() { *m = StyleListRequest{} }
  1040. func (m *StyleListRequest) String() string { return proto.CompactTextString(m) }
  1041. func (*StyleListRequest) ProtoMessage() {}
  1042. func (*StyleListRequest) Descriptor() ([]byte, []int) {
  1043. return fileDescriptor_b614324037d99e80, []int{16}
  1044. }
  1045. func (m *StyleListRequest) XXX_Unmarshal(b []byte) error {
  1046. return xxx_messageInfo_StyleListRequest.Unmarshal(m, b)
  1047. }
  1048. func (m *StyleListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1049. return xxx_messageInfo_StyleListRequest.Marshal(b, m, deterministic)
  1050. }
  1051. func (m *StyleListRequest) XXX_Merge(src proto.Message) {
  1052. xxx_messageInfo_StyleListRequest.Merge(m, src)
  1053. }
  1054. func (m *StyleListRequest) XXX_Size() int {
  1055. return xxx_messageInfo_StyleListRequest.Size(m)
  1056. }
  1057. func (m *StyleListRequest) XXX_DiscardUnknown() {
  1058. xxx_messageInfo_StyleListRequest.DiscardUnknown(m)
  1059. }
  1060. var xxx_messageInfo_StyleListRequest proto.InternalMessageInfo
  1061. func (m *StyleListRequest) GetBrandName() string {
  1062. if m != nil {
  1063. return m.BrandName
  1064. }
  1065. return ""
  1066. }
  1067. func (m *StyleListRequest) GetSeriesName() string {
  1068. if m != nil {
  1069. return m.SeriesName
  1070. }
  1071. return ""
  1072. }
  1073. func (m *StyleListRequest) GetHasManual() int32 {
  1074. if m != nil {
  1075. return m.HasManual
  1076. }
  1077. return 0
  1078. }
  1079. func (m *StyleListRequest) GetStatus() int32 {
  1080. if m != nil {
  1081. return m.Status
  1082. }
  1083. return 0
  1084. }
  1085. func (m *StyleListRequest) GetPageSize() int32 {
  1086. if m != nil {
  1087. return m.PageSize
  1088. }
  1089. return 0
  1090. }
  1091. func (m *StyleListRequest) GetPage() int32 {
  1092. if m != nil {
  1093. return m.Page
  1094. }
  1095. return 0
  1096. }
  1097. func (m *StyleListRequest) GetMaker() string {
  1098. if m != nil {
  1099. return m.Maker
  1100. }
  1101. return ""
  1102. }
  1103. func (m *StyleListRequest) GetModelYear() int64 {
  1104. if m != nil {
  1105. return m.ModelYear
  1106. }
  1107. return 0
  1108. }
  1109. func (m *StyleListRequest) GetStyleName() string {
  1110. if m != nil {
  1111. return m.StyleName
  1112. }
  1113. return ""
  1114. }
  1115. func (m *StyleListRequest) GetBrandId() string {
  1116. if m != nil {
  1117. return m.BrandId
  1118. }
  1119. return ""
  1120. }
  1121. func (m *StyleListRequest) GetSeriesId() string {
  1122. if m != nil {
  1123. return m.SeriesId
  1124. }
  1125. return ""
  1126. }
  1127. func (m *StyleListRequest) GetStyleId() string {
  1128. if m != nil {
  1129. return m.StyleId
  1130. }
  1131. return ""
  1132. }
  1133. type StyleList struct {
  1134. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1135. StyleId string `protobuf:"bytes,2,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  1136. BrandName string `protobuf:"bytes,3,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  1137. Maker string `protobuf:"bytes,4,opt,name=maker,proto3" json:"maker"`
  1138. SeriesName string `protobuf:"bytes,5,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  1139. StyleName string `protobuf:"bytes,6,opt,name=style_name,json=styleName,proto3" json:"style_name"`
  1140. Status int64 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  1141. MaintainId int64 `protobuf:"varint,8,opt,name=maintain_id,json=maintainId,proto3" json:"maintain_id"`
  1142. SeriesId string `protobuf:"bytes,9,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  1143. BrandId string `protobuf:"bytes,10,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  1144. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1145. XXX_unrecognized []byte `json:"-"`
  1146. XXX_sizecache int32 `json:"-"`
  1147. }
  1148. func (m *StyleList) Reset() { *m = StyleList{} }
  1149. func (m *StyleList) String() string { return proto.CompactTextString(m) }
  1150. func (*StyleList) ProtoMessage() {}
  1151. func (*StyleList) Descriptor() ([]byte, []int) {
  1152. return fileDescriptor_b614324037d99e80, []int{17}
  1153. }
  1154. func (m *StyleList) XXX_Unmarshal(b []byte) error {
  1155. return xxx_messageInfo_StyleList.Unmarshal(m, b)
  1156. }
  1157. func (m *StyleList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1158. return xxx_messageInfo_StyleList.Marshal(b, m, deterministic)
  1159. }
  1160. func (m *StyleList) XXX_Merge(src proto.Message) {
  1161. xxx_messageInfo_StyleList.Merge(m, src)
  1162. }
  1163. func (m *StyleList) XXX_Size() int {
  1164. return xxx_messageInfo_StyleList.Size(m)
  1165. }
  1166. func (m *StyleList) XXX_DiscardUnknown() {
  1167. xxx_messageInfo_StyleList.DiscardUnknown(m)
  1168. }
  1169. var xxx_messageInfo_StyleList proto.InternalMessageInfo
  1170. func (m *StyleList) GetId() int64 {
  1171. if m != nil {
  1172. return m.Id
  1173. }
  1174. return 0
  1175. }
  1176. func (m *StyleList) GetStyleId() string {
  1177. if m != nil {
  1178. return m.StyleId
  1179. }
  1180. return ""
  1181. }
  1182. func (m *StyleList) GetBrandName() string {
  1183. if m != nil {
  1184. return m.BrandName
  1185. }
  1186. return ""
  1187. }
  1188. func (m *StyleList) GetMaker() string {
  1189. if m != nil {
  1190. return m.Maker
  1191. }
  1192. return ""
  1193. }
  1194. func (m *StyleList) GetSeriesName() string {
  1195. if m != nil {
  1196. return m.SeriesName
  1197. }
  1198. return ""
  1199. }
  1200. func (m *StyleList) GetStyleName() string {
  1201. if m != nil {
  1202. return m.StyleName
  1203. }
  1204. return ""
  1205. }
  1206. func (m *StyleList) GetStatus() int64 {
  1207. if m != nil {
  1208. return m.Status
  1209. }
  1210. return 0
  1211. }
  1212. func (m *StyleList) GetMaintainId() int64 {
  1213. if m != nil {
  1214. return m.MaintainId
  1215. }
  1216. return 0
  1217. }
  1218. func (m *StyleList) GetSeriesId() string {
  1219. if m != nil {
  1220. return m.SeriesId
  1221. }
  1222. return ""
  1223. }
  1224. func (m *StyleList) GetBrandId() string {
  1225. if m != nil {
  1226. return m.BrandId
  1227. }
  1228. return ""
  1229. }
  1230. type StyleListReply struct {
  1231. CurrentPage int64 `protobuf:"varint,1,opt,name=current_page,json=currentPage,proto3" json:"current_page"`
  1232. PerPage int64 `protobuf:"varint,2,opt,name=per_page,json=perPage,proto3" json:"per_page"`
  1233. Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"`
  1234. FirstPage int64 `protobuf:"varint,4,opt,name=first_page,json=firstPage,proto3" json:"first_page"`
  1235. LastPage int64 `protobuf:"varint,5,opt,name=last_page,json=lastPage,proto3" json:"last_page"`
  1236. PrevPage int64 `protobuf:"varint,6,opt,name=prev_page,json=prevPage,proto3" json:"prev_page"`
  1237. NextPage int64 `protobuf:"varint,7,opt,name=next_page,json=nextPage,proto3" json:"next_page"`
  1238. List []*StyleList `protobuf:"bytes,8,rep,name=list,proto3" json:"list"`
  1239. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1240. XXX_unrecognized []byte `json:"-"`
  1241. XXX_sizecache int32 `json:"-"`
  1242. }
  1243. func (m *StyleListReply) Reset() { *m = StyleListReply{} }
  1244. func (m *StyleListReply) String() string { return proto.CompactTextString(m) }
  1245. func (*StyleListReply) ProtoMessage() {}
  1246. func (*StyleListReply) Descriptor() ([]byte, []int) {
  1247. return fileDescriptor_b614324037d99e80, []int{18}
  1248. }
  1249. func (m *StyleListReply) XXX_Unmarshal(b []byte) error {
  1250. return xxx_messageInfo_StyleListReply.Unmarshal(m, b)
  1251. }
  1252. func (m *StyleListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1253. return xxx_messageInfo_StyleListReply.Marshal(b, m, deterministic)
  1254. }
  1255. func (m *StyleListReply) XXX_Merge(src proto.Message) {
  1256. xxx_messageInfo_StyleListReply.Merge(m, src)
  1257. }
  1258. func (m *StyleListReply) XXX_Size() int {
  1259. return xxx_messageInfo_StyleListReply.Size(m)
  1260. }
  1261. func (m *StyleListReply) XXX_DiscardUnknown() {
  1262. xxx_messageInfo_StyleListReply.DiscardUnknown(m)
  1263. }
  1264. var xxx_messageInfo_StyleListReply proto.InternalMessageInfo
  1265. func (m *StyleListReply) GetCurrentPage() int64 {
  1266. if m != nil {
  1267. return m.CurrentPage
  1268. }
  1269. return 0
  1270. }
  1271. func (m *StyleListReply) GetPerPage() int64 {
  1272. if m != nil {
  1273. return m.PerPage
  1274. }
  1275. return 0
  1276. }
  1277. func (m *StyleListReply) GetTotal() int64 {
  1278. if m != nil {
  1279. return m.Total
  1280. }
  1281. return 0
  1282. }
  1283. func (m *StyleListReply) GetFirstPage() int64 {
  1284. if m != nil {
  1285. return m.FirstPage
  1286. }
  1287. return 0
  1288. }
  1289. func (m *StyleListReply) GetLastPage() int64 {
  1290. if m != nil {
  1291. return m.LastPage
  1292. }
  1293. return 0
  1294. }
  1295. func (m *StyleListReply) GetPrevPage() int64 {
  1296. if m != nil {
  1297. return m.PrevPage
  1298. }
  1299. return 0
  1300. }
  1301. func (m *StyleListReply) GetNextPage() int64 {
  1302. if m != nil {
  1303. return m.NextPage
  1304. }
  1305. return 0
  1306. }
  1307. func (m *StyleListReply) GetList() []*StyleList {
  1308. if m != nil {
  1309. return m.List
  1310. }
  1311. return nil
  1312. }
  1313. type UpdateStyleRequest struct {
  1314. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1315. StyleName string `protobuf:"bytes,2,opt,name=style_name,json=styleName,proto3" json:"style_name"`
  1316. Status int32 `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  1317. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1318. XXX_unrecognized []byte `json:"-"`
  1319. XXX_sizecache int32 `json:"-"`
  1320. }
  1321. func (m *UpdateStyleRequest) Reset() { *m = UpdateStyleRequest{} }
  1322. func (m *UpdateStyleRequest) String() string { return proto.CompactTextString(m) }
  1323. func (*UpdateStyleRequest) ProtoMessage() {}
  1324. func (*UpdateStyleRequest) Descriptor() ([]byte, []int) {
  1325. return fileDescriptor_b614324037d99e80, []int{19}
  1326. }
  1327. func (m *UpdateStyleRequest) XXX_Unmarshal(b []byte) error {
  1328. return xxx_messageInfo_UpdateStyleRequest.Unmarshal(m, b)
  1329. }
  1330. func (m *UpdateStyleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1331. return xxx_messageInfo_UpdateStyleRequest.Marshal(b, m, deterministic)
  1332. }
  1333. func (m *UpdateStyleRequest) XXX_Merge(src proto.Message) {
  1334. xxx_messageInfo_UpdateStyleRequest.Merge(m, src)
  1335. }
  1336. func (m *UpdateStyleRequest) XXX_Size() int {
  1337. return xxx_messageInfo_UpdateStyleRequest.Size(m)
  1338. }
  1339. func (m *UpdateStyleRequest) XXX_DiscardUnknown() {
  1340. xxx_messageInfo_UpdateStyleRequest.DiscardUnknown(m)
  1341. }
  1342. var xxx_messageInfo_UpdateStyleRequest proto.InternalMessageInfo
  1343. func (m *UpdateStyleRequest) GetId() int64 {
  1344. if m != nil {
  1345. return m.Id
  1346. }
  1347. return 0
  1348. }
  1349. func (m *UpdateStyleRequest) GetStyleName() string {
  1350. if m != nil {
  1351. return m.StyleName
  1352. }
  1353. return ""
  1354. }
  1355. func (m *UpdateStyleRequest) GetStatus() int32 {
  1356. if m != nil {
  1357. return m.Status
  1358. }
  1359. return 0
  1360. }
  1361. type StyleInfoRequest struct {
  1362. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1364. XXX_unrecognized []byte `json:"-"`
  1365. XXX_sizecache int32 `json:"-"`
  1366. }
  1367. func (m *StyleInfoRequest) Reset() { *m = StyleInfoRequest{} }
  1368. func (m *StyleInfoRequest) String() string { return proto.CompactTextString(m) }
  1369. func (*StyleInfoRequest) ProtoMessage() {}
  1370. func (*StyleInfoRequest) Descriptor() ([]byte, []int) {
  1371. return fileDescriptor_b614324037d99e80, []int{20}
  1372. }
  1373. func (m *StyleInfoRequest) XXX_Unmarshal(b []byte) error {
  1374. return xxx_messageInfo_StyleInfoRequest.Unmarshal(m, b)
  1375. }
  1376. func (m *StyleInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1377. return xxx_messageInfo_StyleInfoRequest.Marshal(b, m, deterministic)
  1378. }
  1379. func (m *StyleInfoRequest) XXX_Merge(src proto.Message) {
  1380. xxx_messageInfo_StyleInfoRequest.Merge(m, src)
  1381. }
  1382. func (m *StyleInfoRequest) XXX_Size() int {
  1383. return xxx_messageInfo_StyleInfoRequest.Size(m)
  1384. }
  1385. func (m *StyleInfoRequest) XXX_DiscardUnknown() {
  1386. xxx_messageInfo_StyleInfoRequest.DiscardUnknown(m)
  1387. }
  1388. var xxx_messageInfo_StyleInfoRequest proto.InternalMessageInfo
  1389. func (m *StyleInfoRequest) GetId() int64 {
  1390. if m != nil {
  1391. return m.Id
  1392. }
  1393. return 0
  1394. }
  1395. type StyleInfoReply struct {
  1396. Aircondition *StyleInfoReply_Aircondition `protobuf:"bytes,1,opt,name=aircondition,proto3" json:"aircondition"`
  1397. Basic *StyleInfoReply_Basic `protobuf:"bytes,2,opt,name=basic,proto3" json:"basic"`
  1398. Body *StyleInfoReply_Body `protobuf:"bytes,3,opt,name=body,proto3" json:"body"`
  1399. Chassis *StyleInfoReply_Chassis `protobuf:"bytes,4,opt,name=chassis,proto3" json:"chassis"`
  1400. Control *StyleInfoReply_Control `protobuf:"bytes,5,opt,name=control,proto3" json:"control"`
  1401. Electric *StyleInfoReply_Electric `protobuf:"bytes,6,opt,name=electric,proto3" json:"electric"`
  1402. Engine *StyleInfoReply_Engine `protobuf:"bytes,7,opt,name=engine,proto3" json:"engine"`
  1403. External *StyleInfoReply_External `protobuf:"bytes,8,opt,name=external,proto3" json:"external"`
  1404. Gearbox *StyleInfoReply_Gearbox `protobuf:"bytes,9,opt,name=gearbox,proto3" json:"gearbox"`
  1405. Intelligent *StyleInfoReply_Intelligent `protobuf:"bytes,10,opt,name=intelligent,proto3" json:"intelligent"`
  1406. Internal *StyleInfoReply_Internal `protobuf:"bytes,11,opt,name=internal,proto3" json:"internal"`
  1407. Light *StyleInfoReply_Light `protobuf:"bytes,12,opt,name=light,proto3" json:"light"`
  1408. Media *StyleInfoReply_Media `protobuf:"bytes,13,opt,name=media,proto3" json:"media"`
  1409. Optional *StyleInfoReply_Optional `protobuf:"bytes,14,opt,name=optional,proto3" json:"optional"`
  1410. Rearview *StyleInfoReply_Rearview `protobuf:"bytes,15,opt,name=rearview,proto3" json:"rearview"`
  1411. Safety *StyleInfoReply_Safety `protobuf:"bytes,16,opt,name=safety,proto3" json:"safety"`
  1412. Seat *StyleInfoReply_Seat `protobuf:"bytes,17,opt,name=seat,proto3" json:"seat"`
  1413. Wheelbrake *StyleInfoReply_Wheelbrake `protobuf:"bytes,18,opt,name=wheelbrake,proto3" json:"wheelbrake"`
  1414. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1415. XXX_unrecognized []byte `json:"-"`
  1416. XXX_sizecache int32 `json:"-"`
  1417. }
  1418. func (m *StyleInfoReply) Reset() { *m = StyleInfoReply{} }
  1419. func (m *StyleInfoReply) String() string { return proto.CompactTextString(m) }
  1420. func (*StyleInfoReply) ProtoMessage() {}
  1421. func (*StyleInfoReply) Descriptor() ([]byte, []int) {
  1422. return fileDescriptor_b614324037d99e80, []int{21}
  1423. }
  1424. func (m *StyleInfoReply) XXX_Unmarshal(b []byte) error {
  1425. return xxx_messageInfo_StyleInfoReply.Unmarshal(m, b)
  1426. }
  1427. func (m *StyleInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1428. return xxx_messageInfo_StyleInfoReply.Marshal(b, m, deterministic)
  1429. }
  1430. func (m *StyleInfoReply) XXX_Merge(src proto.Message) {
  1431. xxx_messageInfo_StyleInfoReply.Merge(m, src)
  1432. }
  1433. func (m *StyleInfoReply) XXX_Size() int {
  1434. return xxx_messageInfo_StyleInfoReply.Size(m)
  1435. }
  1436. func (m *StyleInfoReply) XXX_DiscardUnknown() {
  1437. xxx_messageInfo_StyleInfoReply.DiscardUnknown(m)
  1438. }
  1439. var xxx_messageInfo_StyleInfoReply proto.InternalMessageInfo
  1440. func (m *StyleInfoReply) GetAircondition() *StyleInfoReply_Aircondition {
  1441. if m != nil {
  1442. return m.Aircondition
  1443. }
  1444. return nil
  1445. }
  1446. func (m *StyleInfoReply) GetBasic() *StyleInfoReply_Basic {
  1447. if m != nil {
  1448. return m.Basic
  1449. }
  1450. return nil
  1451. }
  1452. func (m *StyleInfoReply) GetBody() *StyleInfoReply_Body {
  1453. if m != nil {
  1454. return m.Body
  1455. }
  1456. return nil
  1457. }
  1458. func (m *StyleInfoReply) GetChassis() *StyleInfoReply_Chassis {
  1459. if m != nil {
  1460. return m.Chassis
  1461. }
  1462. return nil
  1463. }
  1464. func (m *StyleInfoReply) GetControl() *StyleInfoReply_Control {
  1465. if m != nil {
  1466. return m.Control
  1467. }
  1468. return nil
  1469. }
  1470. func (m *StyleInfoReply) GetElectric() *StyleInfoReply_Electric {
  1471. if m != nil {
  1472. return m.Electric
  1473. }
  1474. return nil
  1475. }
  1476. func (m *StyleInfoReply) GetEngine() *StyleInfoReply_Engine {
  1477. if m != nil {
  1478. return m.Engine
  1479. }
  1480. return nil
  1481. }
  1482. func (m *StyleInfoReply) GetExternal() *StyleInfoReply_External {
  1483. if m != nil {
  1484. return m.External
  1485. }
  1486. return nil
  1487. }
  1488. func (m *StyleInfoReply) GetGearbox() *StyleInfoReply_Gearbox {
  1489. if m != nil {
  1490. return m.Gearbox
  1491. }
  1492. return nil
  1493. }
  1494. func (m *StyleInfoReply) GetIntelligent() *StyleInfoReply_Intelligent {
  1495. if m != nil {
  1496. return m.Intelligent
  1497. }
  1498. return nil
  1499. }
  1500. func (m *StyleInfoReply) GetInternal() *StyleInfoReply_Internal {
  1501. if m != nil {
  1502. return m.Internal
  1503. }
  1504. return nil
  1505. }
  1506. func (m *StyleInfoReply) GetLight() *StyleInfoReply_Light {
  1507. if m != nil {
  1508. return m.Light
  1509. }
  1510. return nil
  1511. }
  1512. func (m *StyleInfoReply) GetMedia() *StyleInfoReply_Media {
  1513. if m != nil {
  1514. return m.Media
  1515. }
  1516. return nil
  1517. }
  1518. func (m *StyleInfoReply) GetOptional() *StyleInfoReply_Optional {
  1519. if m != nil {
  1520. return m.Optional
  1521. }
  1522. return nil
  1523. }
  1524. func (m *StyleInfoReply) GetRearview() *StyleInfoReply_Rearview {
  1525. if m != nil {
  1526. return m.Rearview
  1527. }
  1528. return nil
  1529. }
  1530. func (m *StyleInfoReply) GetSafety() *StyleInfoReply_Safety {
  1531. if m != nil {
  1532. return m.Safety
  1533. }
  1534. return nil
  1535. }
  1536. func (m *StyleInfoReply) GetSeat() *StyleInfoReply_Seat {
  1537. if m != nil {
  1538. return m.Seat
  1539. }
  1540. return nil
  1541. }
  1542. func (m *StyleInfoReply) GetWheelbrake() *StyleInfoReply_Wheelbrake {
  1543. if m != nil {
  1544. return m.Wheelbrake
  1545. }
  1546. return nil
  1547. }
  1548. type StyleInfoReply_Aircondition struct {
  1549. AirconditionControlType string `protobuf:"bytes,1,opt,name=aircondition_control_type,json=airconditionControlType,proto3" json:"aircondition_control_type"`
  1550. CarAirPurifier string `protobuf:"bytes,2,opt,name=car_air_purifier,json=carAirPurifier,proto3" json:"car_air_purifier"`
  1551. FragranceSystem string `protobuf:"bytes,3,opt,name=fragrance_system,json=fragranceSystem,proto3" json:"fragrance_system"`
  1552. NegativeIonGenerator string `protobuf:"bytes,4,opt,name=negative_ion_generator,json=negativeIonGenerator,proto3" json:"negative_ion_generator"`
  1553. Pm25Device string `protobuf:"bytes,5,opt,name=pm25_device,json=pm25Device,proto3" json:"pm25_device"`
  1554. RearIndependentAirConditioner string `protobuf:"bytes,6,opt,name=rear_independent_air_conditioner,json=rearIndependentAirConditioner,proto3" json:"rear_independent_air_conditioner"`
  1555. RearSeatAirOutlet string `protobuf:"bytes,7,opt,name=rear_seat_air_outlet,json=rearSeatAirOutlet,proto3" json:"rear_seat_air_outlet"`
  1556. Refrigerator string `protobuf:"bytes,8,opt,name=refrigerator,proto3" json:"refrigerator"`
  1557. TemperatureZoneControl string `protobuf:"bytes,9,opt,name=temperature_zone_control,json=temperatureZoneControl,proto3" json:"temperature_zone_control"`
  1558. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1559. XXX_unrecognized []byte `json:"-"`
  1560. XXX_sizecache int32 `json:"-"`
  1561. }
  1562. func (m *StyleInfoReply_Aircondition) Reset() { *m = StyleInfoReply_Aircondition{} }
  1563. func (m *StyleInfoReply_Aircondition) String() string { return proto.CompactTextString(m) }
  1564. func (*StyleInfoReply_Aircondition) ProtoMessage() {}
  1565. func (*StyleInfoReply_Aircondition) Descriptor() ([]byte, []int) {
  1566. return fileDescriptor_b614324037d99e80, []int{21, 0}
  1567. }
  1568. func (m *StyleInfoReply_Aircondition) XXX_Unmarshal(b []byte) error {
  1569. return xxx_messageInfo_StyleInfoReply_Aircondition.Unmarshal(m, b)
  1570. }
  1571. func (m *StyleInfoReply_Aircondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1572. return xxx_messageInfo_StyleInfoReply_Aircondition.Marshal(b, m, deterministic)
  1573. }
  1574. func (m *StyleInfoReply_Aircondition) XXX_Merge(src proto.Message) {
  1575. xxx_messageInfo_StyleInfoReply_Aircondition.Merge(m, src)
  1576. }
  1577. func (m *StyleInfoReply_Aircondition) XXX_Size() int {
  1578. return xxx_messageInfo_StyleInfoReply_Aircondition.Size(m)
  1579. }
  1580. func (m *StyleInfoReply_Aircondition) XXX_DiscardUnknown() {
  1581. xxx_messageInfo_StyleInfoReply_Aircondition.DiscardUnknown(m)
  1582. }
  1583. var xxx_messageInfo_StyleInfoReply_Aircondition proto.InternalMessageInfo
  1584. func (m *StyleInfoReply_Aircondition) GetAirconditionControlType() string {
  1585. if m != nil {
  1586. return m.AirconditionControlType
  1587. }
  1588. return ""
  1589. }
  1590. func (m *StyleInfoReply_Aircondition) GetCarAirPurifier() string {
  1591. if m != nil {
  1592. return m.CarAirPurifier
  1593. }
  1594. return ""
  1595. }
  1596. func (m *StyleInfoReply_Aircondition) GetFragranceSystem() string {
  1597. if m != nil {
  1598. return m.FragranceSystem
  1599. }
  1600. return ""
  1601. }
  1602. func (m *StyleInfoReply_Aircondition) GetNegativeIonGenerator() string {
  1603. if m != nil {
  1604. return m.NegativeIonGenerator
  1605. }
  1606. return ""
  1607. }
  1608. func (m *StyleInfoReply_Aircondition) GetPm25Device() string {
  1609. if m != nil {
  1610. return m.Pm25Device
  1611. }
  1612. return ""
  1613. }
  1614. func (m *StyleInfoReply_Aircondition) GetRearIndependentAirConditioner() string {
  1615. if m != nil {
  1616. return m.RearIndependentAirConditioner
  1617. }
  1618. return ""
  1619. }
  1620. func (m *StyleInfoReply_Aircondition) GetRearSeatAirOutlet() string {
  1621. if m != nil {
  1622. return m.RearSeatAirOutlet
  1623. }
  1624. return ""
  1625. }
  1626. func (m *StyleInfoReply_Aircondition) GetRefrigerator() string {
  1627. if m != nil {
  1628. return m.Refrigerator
  1629. }
  1630. return ""
  1631. }
  1632. func (m *StyleInfoReply_Aircondition) GetTemperatureZoneControl() string {
  1633. if m != nil {
  1634. return m.TemperatureZoneControl
  1635. }
  1636. return ""
  1637. }
  1638. type StyleInfoReply_Basic struct {
  1639. Alternator string `protobuf:"bytes,1,opt,name=alternator,proto3" json:"alternator"`
  1640. BrakingDistanceMeasure string `protobuf:"bytes,2,opt,name=braking_distance_measure,json=brakingDistanceMeasure,proto3" json:"braking_distance_measure"`
  1641. BrandName string `protobuf:"bytes,3,opt,name=brand_name,json=brandName,proto3" json:"brand_name"`
  1642. EmissionStandard string `protobuf:"bytes,4,opt,name=emission_standard,json=emissionStandard,proto3" json:"emission_standard"`
  1643. Engine string `protobuf:"bytes,5,opt,name=engine,proto3" json:"engine"`
  1644. FastChargeAmount string `protobuf:"bytes,6,opt,name=fast_charge_amount,json=fastChargeAmount,proto3" json:"fast_charge_amount"`
  1645. FastChargingTime string `protobuf:"bytes,7,opt,name=fast_charging_time,json=fastChargingTime,proto3" json:"fast_charging_time"`
  1646. FuelTypeDetail string `protobuf:"bytes,8,opt,name=fuel_type_detail,json=fuelTypeDetail,proto3" json:"fuel_type_detail"`
  1647. GearboxDesc string `protobuf:"bytes,9,opt,name=gearbox_desc,json=gearboxDesc,proto3" json:"gearbox_desc"`
  1648. HundredAccelerate string `protobuf:"bytes,10,opt,name=hundred_accelerate,json=hundredAccelerate,proto3" json:"hundred_accelerate"`
  1649. HundredAccelerateMeasure string `protobuf:"bytes,11,opt,name=hundred_accelerate_measure,json=hundredAccelerateMeasure,proto3" json:"hundred_accelerate_measure"`
  1650. Level string `protobuf:"bytes,12,opt,name=level,proto3" json:"level"`
  1651. Lwh string `protobuf:"bytes,13,opt,name=lwh,proto3" json:"lwh"`
  1652. Maker string `protobuf:"bytes,14,opt,name=maker,proto3" json:"maker"`
  1653. MaximumPower string `protobuf:"bytes,15,opt,name=maximum_power,json=maximumPower,proto3" json:"maximum_power"`
  1654. MaximumSimulationMilage string `protobuf:"bytes,16,opt,name=maximum_simulation_milage,json=maximumSimulationMilage,proto3" json:"maximum_simulation_milage"`
  1655. MaximumSimulationMilageMeasure string `protobuf:"bytes,17,opt,name=maximum_simulation_milage_measure,json=maximumSimulationMilageMeasure,proto3" json:"maximum_simulation_milage_measure"`
  1656. MaximumSpeed string `protobuf:"bytes,18,opt,name=maximum_speed,json=maximumSpeed,proto3" json:"maximum_speed"`
  1657. MaximumTorque string `protobuf:"bytes,19,opt,name=maximum_torque,json=maximumTorque,proto3" json:"maximum_torque"`
  1658. ModelYear string `protobuf:"bytes,20,opt,name=model_year,json=modelYear,proto3" json:"model_year"`
  1659. OilWearComrehensive string `protobuf:"bytes,21,opt,name=oil_wear_comrehensive,json=oilWearComrehensive,proto3" json:"oil_wear_comrehensive"`
  1660. OilWearMeasure string `protobuf:"bytes,22,opt,name=oil_wear_measure,json=oilWearMeasure,proto3" json:"oil_wear_measure"`
  1661. Price string `protobuf:"bytes,23,opt,name=price,proto3" json:"price"`
  1662. PriceYuan string `protobuf:"bytes,24,opt,name=price_yuan,json=priceYuan,proto3" json:"price_yuan"`
  1663. SeriesId string `protobuf:"bytes,25,opt,name=series_id,json=seriesId,proto3" json:"series_id"`
  1664. SeriesImg string `protobuf:"bytes,26,opt,name=series_img,json=seriesImg,proto3" json:"series_img"`
  1665. SeriesName string `protobuf:"bytes,27,opt,name=series_name,json=seriesName,proto3" json:"series_name"`
  1666. SlowChargingTime string `protobuf:"bytes,28,opt,name=slow_charging_time,json=slowChargingTime,proto3" json:"slow_charging_time"`
  1667. StyleId string `protobuf:"bytes,29,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  1668. StyleName string `protobuf:"bytes,30,opt,name=style_name,json=styleName,proto3" json:"style_name"`
  1669. SubLevel string `protobuf:"bytes,31,opt,name=sub_level,json=subLevel,proto3" json:"sub_level"`
  1670. VehicleStructure string `protobuf:"bytes,32,opt,name=vehicle_structure,json=vehicleStructure,proto3" json:"vehicle_structure"`
  1671. VehicleWarranty string `protobuf:"bytes,33,opt,name=vehicle_warranty,json=vehicleWarranty,proto3" json:"vehicle_warranty"`
  1672. BrandId string `protobuf:"bytes,34,opt,name=brand_id,json=brandId,proto3" json:"brand_id"`
  1673. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1674. XXX_unrecognized []byte `json:"-"`
  1675. XXX_sizecache int32 `json:"-"`
  1676. }
  1677. func (m *StyleInfoReply_Basic) Reset() { *m = StyleInfoReply_Basic{} }
  1678. func (m *StyleInfoReply_Basic) String() string { return proto.CompactTextString(m) }
  1679. func (*StyleInfoReply_Basic) ProtoMessage() {}
  1680. func (*StyleInfoReply_Basic) Descriptor() ([]byte, []int) {
  1681. return fileDescriptor_b614324037d99e80, []int{21, 1}
  1682. }
  1683. func (m *StyleInfoReply_Basic) XXX_Unmarshal(b []byte) error {
  1684. return xxx_messageInfo_StyleInfoReply_Basic.Unmarshal(m, b)
  1685. }
  1686. func (m *StyleInfoReply_Basic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1687. return xxx_messageInfo_StyleInfoReply_Basic.Marshal(b, m, deterministic)
  1688. }
  1689. func (m *StyleInfoReply_Basic) XXX_Merge(src proto.Message) {
  1690. xxx_messageInfo_StyleInfoReply_Basic.Merge(m, src)
  1691. }
  1692. func (m *StyleInfoReply_Basic) XXX_Size() int {
  1693. return xxx_messageInfo_StyleInfoReply_Basic.Size(m)
  1694. }
  1695. func (m *StyleInfoReply_Basic) XXX_DiscardUnknown() {
  1696. xxx_messageInfo_StyleInfoReply_Basic.DiscardUnknown(m)
  1697. }
  1698. var xxx_messageInfo_StyleInfoReply_Basic proto.InternalMessageInfo
  1699. func (m *StyleInfoReply_Basic) GetAlternator() string {
  1700. if m != nil {
  1701. return m.Alternator
  1702. }
  1703. return ""
  1704. }
  1705. func (m *StyleInfoReply_Basic) GetBrakingDistanceMeasure() string {
  1706. if m != nil {
  1707. return m.BrakingDistanceMeasure
  1708. }
  1709. return ""
  1710. }
  1711. func (m *StyleInfoReply_Basic) GetBrandName() string {
  1712. if m != nil {
  1713. return m.BrandName
  1714. }
  1715. return ""
  1716. }
  1717. func (m *StyleInfoReply_Basic) GetEmissionStandard() string {
  1718. if m != nil {
  1719. return m.EmissionStandard
  1720. }
  1721. return ""
  1722. }
  1723. func (m *StyleInfoReply_Basic) GetEngine() string {
  1724. if m != nil {
  1725. return m.Engine
  1726. }
  1727. return ""
  1728. }
  1729. func (m *StyleInfoReply_Basic) GetFastChargeAmount() string {
  1730. if m != nil {
  1731. return m.FastChargeAmount
  1732. }
  1733. return ""
  1734. }
  1735. func (m *StyleInfoReply_Basic) GetFastChargingTime() string {
  1736. if m != nil {
  1737. return m.FastChargingTime
  1738. }
  1739. return ""
  1740. }
  1741. func (m *StyleInfoReply_Basic) GetFuelTypeDetail() string {
  1742. if m != nil {
  1743. return m.FuelTypeDetail
  1744. }
  1745. return ""
  1746. }
  1747. func (m *StyleInfoReply_Basic) GetGearboxDesc() string {
  1748. if m != nil {
  1749. return m.GearboxDesc
  1750. }
  1751. return ""
  1752. }
  1753. func (m *StyleInfoReply_Basic) GetHundredAccelerate() string {
  1754. if m != nil {
  1755. return m.HundredAccelerate
  1756. }
  1757. return ""
  1758. }
  1759. func (m *StyleInfoReply_Basic) GetHundredAccelerateMeasure() string {
  1760. if m != nil {
  1761. return m.HundredAccelerateMeasure
  1762. }
  1763. return ""
  1764. }
  1765. func (m *StyleInfoReply_Basic) GetLevel() string {
  1766. if m != nil {
  1767. return m.Level
  1768. }
  1769. return ""
  1770. }
  1771. func (m *StyleInfoReply_Basic) GetLwh() string {
  1772. if m != nil {
  1773. return m.Lwh
  1774. }
  1775. return ""
  1776. }
  1777. func (m *StyleInfoReply_Basic) GetMaker() string {
  1778. if m != nil {
  1779. return m.Maker
  1780. }
  1781. return ""
  1782. }
  1783. func (m *StyleInfoReply_Basic) GetMaximumPower() string {
  1784. if m != nil {
  1785. return m.MaximumPower
  1786. }
  1787. return ""
  1788. }
  1789. func (m *StyleInfoReply_Basic) GetMaximumSimulationMilage() string {
  1790. if m != nil {
  1791. return m.MaximumSimulationMilage
  1792. }
  1793. return ""
  1794. }
  1795. func (m *StyleInfoReply_Basic) GetMaximumSimulationMilageMeasure() string {
  1796. if m != nil {
  1797. return m.MaximumSimulationMilageMeasure
  1798. }
  1799. return ""
  1800. }
  1801. func (m *StyleInfoReply_Basic) GetMaximumSpeed() string {
  1802. if m != nil {
  1803. return m.MaximumSpeed
  1804. }
  1805. return ""
  1806. }
  1807. func (m *StyleInfoReply_Basic) GetMaximumTorque() string {
  1808. if m != nil {
  1809. return m.MaximumTorque
  1810. }
  1811. return ""
  1812. }
  1813. func (m *StyleInfoReply_Basic) GetModelYear() string {
  1814. if m != nil {
  1815. return m.ModelYear
  1816. }
  1817. return ""
  1818. }
  1819. func (m *StyleInfoReply_Basic) GetOilWearComrehensive() string {
  1820. if m != nil {
  1821. return m.OilWearComrehensive
  1822. }
  1823. return ""
  1824. }
  1825. func (m *StyleInfoReply_Basic) GetOilWearMeasure() string {
  1826. if m != nil {
  1827. return m.OilWearMeasure
  1828. }
  1829. return ""
  1830. }
  1831. func (m *StyleInfoReply_Basic) GetPrice() string {
  1832. if m != nil {
  1833. return m.Price
  1834. }
  1835. return ""
  1836. }
  1837. func (m *StyleInfoReply_Basic) GetPriceYuan() string {
  1838. if m != nil {
  1839. return m.PriceYuan
  1840. }
  1841. return ""
  1842. }
  1843. func (m *StyleInfoReply_Basic) GetSeriesId() string {
  1844. if m != nil {
  1845. return m.SeriesId
  1846. }
  1847. return ""
  1848. }
  1849. func (m *StyleInfoReply_Basic) GetSeriesImg() string {
  1850. if m != nil {
  1851. return m.SeriesImg
  1852. }
  1853. return ""
  1854. }
  1855. func (m *StyleInfoReply_Basic) GetSeriesName() string {
  1856. if m != nil {
  1857. return m.SeriesName
  1858. }
  1859. return ""
  1860. }
  1861. func (m *StyleInfoReply_Basic) GetSlowChargingTime() string {
  1862. if m != nil {
  1863. return m.SlowChargingTime
  1864. }
  1865. return ""
  1866. }
  1867. func (m *StyleInfoReply_Basic) GetStyleId() string {
  1868. if m != nil {
  1869. return m.StyleId
  1870. }
  1871. return ""
  1872. }
  1873. func (m *StyleInfoReply_Basic) GetStyleName() string {
  1874. if m != nil {
  1875. return m.StyleName
  1876. }
  1877. return ""
  1878. }
  1879. func (m *StyleInfoReply_Basic) GetSubLevel() string {
  1880. if m != nil {
  1881. return m.SubLevel
  1882. }
  1883. return ""
  1884. }
  1885. func (m *StyleInfoReply_Basic) GetVehicleStructure() string {
  1886. if m != nil {
  1887. return m.VehicleStructure
  1888. }
  1889. return ""
  1890. }
  1891. func (m *StyleInfoReply_Basic) GetVehicleWarranty() string {
  1892. if m != nil {
  1893. return m.VehicleWarranty
  1894. }
  1895. return ""
  1896. }
  1897. func (m *StyleInfoReply_Basic) GetBrandId() string {
  1898. if m != nil {
  1899. return m.BrandId
  1900. }
  1901. return ""
  1902. }
  1903. type StyleInfoReply_Body struct {
  1904. BackWheelDistance string `protobuf:"bytes,1,opt,name=back_wheel_distance,json=backWheelDistance,proto3" json:"back_wheel_distance"`
  1905. DoorNumber string `protobuf:"bytes,2,opt,name=door_number,json=doorNumber,proto3" json:"door_number"`
  1906. FrontWheelDistance string `protobuf:"bytes,3,opt,name=front_wheel_distance,json=frontWheelDistance,proto3" json:"front_wheel_distance"`
  1907. High string `protobuf:"bytes,4,opt,name=high,proto3" json:"high"`
  1908. Long string `protobuf:"bytes,5,opt,name=long,proto3" json:"long"`
  1909. MinimumGroundClearance string `protobuf:"bytes,6,opt,name=minimum_ground_clearance,json=minimumGroundClearance,proto3" json:"minimum_ground_clearance"`
  1910. OilboxVolume string `protobuf:"bytes,7,opt,name=oilbox_volume,json=oilboxVolume,proto3" json:"oilbox_volume"`
  1911. SeatNumber string `protobuf:"bytes,8,opt,name=seat_number,json=seatNumber,proto3" json:"seat_number"`
  1912. TrunkVolume string `protobuf:"bytes,9,opt,name=trunk_volume,json=trunkVolume,proto3" json:"trunk_volume"`
  1913. UnladenMass string `protobuf:"bytes,10,opt,name=unladen_mass,json=unladenMass,proto3" json:"unladen_mass"`
  1914. Wheelbase string `protobuf:"bytes,11,opt,name=wheelbase,proto3" json:"wheelbase"`
  1915. Wide string `protobuf:"bytes,12,opt,name=wide,proto3" json:"wide"`
  1916. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1917. XXX_unrecognized []byte `json:"-"`
  1918. XXX_sizecache int32 `json:"-"`
  1919. }
  1920. func (m *StyleInfoReply_Body) Reset() { *m = StyleInfoReply_Body{} }
  1921. func (m *StyleInfoReply_Body) String() string { return proto.CompactTextString(m) }
  1922. func (*StyleInfoReply_Body) ProtoMessage() {}
  1923. func (*StyleInfoReply_Body) Descriptor() ([]byte, []int) {
  1924. return fileDescriptor_b614324037d99e80, []int{21, 2}
  1925. }
  1926. func (m *StyleInfoReply_Body) XXX_Unmarshal(b []byte) error {
  1927. return xxx_messageInfo_StyleInfoReply_Body.Unmarshal(m, b)
  1928. }
  1929. func (m *StyleInfoReply_Body) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1930. return xxx_messageInfo_StyleInfoReply_Body.Marshal(b, m, deterministic)
  1931. }
  1932. func (m *StyleInfoReply_Body) XXX_Merge(src proto.Message) {
  1933. xxx_messageInfo_StyleInfoReply_Body.Merge(m, src)
  1934. }
  1935. func (m *StyleInfoReply_Body) XXX_Size() int {
  1936. return xxx_messageInfo_StyleInfoReply_Body.Size(m)
  1937. }
  1938. func (m *StyleInfoReply_Body) XXX_DiscardUnknown() {
  1939. xxx_messageInfo_StyleInfoReply_Body.DiscardUnknown(m)
  1940. }
  1941. var xxx_messageInfo_StyleInfoReply_Body proto.InternalMessageInfo
  1942. func (m *StyleInfoReply_Body) GetBackWheelDistance() string {
  1943. if m != nil {
  1944. return m.BackWheelDistance
  1945. }
  1946. return ""
  1947. }
  1948. func (m *StyleInfoReply_Body) GetDoorNumber() string {
  1949. if m != nil {
  1950. return m.DoorNumber
  1951. }
  1952. return ""
  1953. }
  1954. func (m *StyleInfoReply_Body) GetFrontWheelDistance() string {
  1955. if m != nil {
  1956. return m.FrontWheelDistance
  1957. }
  1958. return ""
  1959. }
  1960. func (m *StyleInfoReply_Body) GetHigh() string {
  1961. if m != nil {
  1962. return m.High
  1963. }
  1964. return ""
  1965. }
  1966. func (m *StyleInfoReply_Body) GetLong() string {
  1967. if m != nil {
  1968. return m.Long
  1969. }
  1970. return ""
  1971. }
  1972. func (m *StyleInfoReply_Body) GetMinimumGroundClearance() string {
  1973. if m != nil {
  1974. return m.MinimumGroundClearance
  1975. }
  1976. return ""
  1977. }
  1978. func (m *StyleInfoReply_Body) GetOilboxVolume() string {
  1979. if m != nil {
  1980. return m.OilboxVolume
  1981. }
  1982. return ""
  1983. }
  1984. func (m *StyleInfoReply_Body) GetSeatNumber() string {
  1985. if m != nil {
  1986. return m.SeatNumber
  1987. }
  1988. return ""
  1989. }
  1990. func (m *StyleInfoReply_Body) GetTrunkVolume() string {
  1991. if m != nil {
  1992. return m.TrunkVolume
  1993. }
  1994. return ""
  1995. }
  1996. func (m *StyleInfoReply_Body) GetUnladenMass() string {
  1997. if m != nil {
  1998. return m.UnladenMass
  1999. }
  2000. return ""
  2001. }
  2002. func (m *StyleInfoReply_Body) GetWheelbase() string {
  2003. if m != nil {
  2004. return m.Wheelbase
  2005. }
  2006. return ""
  2007. }
  2008. func (m *StyleInfoReply_Body) GetWide() string {
  2009. if m != nil {
  2010. return m.Wide
  2011. }
  2012. return ""
  2013. }
  2014. type StyleInfoReply_Chassis struct {
  2015. AssistType string `protobuf:"bytes,1,opt,name=assist_type,json=assistType,proto3" json:"assist_type"`
  2016. BackSuspentionType string `protobuf:"bytes,2,opt,name=back_suspention_type,json=backSuspentionType,proto3" json:"back_suspention_type"`
  2017. BodyStructure string `protobuf:"bytes,3,opt,name=body_structure,json=bodyStructure,proto3" json:"body_structure"`
  2018. DriveType string `protobuf:"bytes,4,opt,name=drive_type,json=driveType,proto3" json:"drive_type"`
  2019. FrontSuspentionType string `protobuf:"bytes,5,opt,name=front_suspention_type,json=frontSuspentionType,proto3" json:"front_suspention_type"`
  2020. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2021. XXX_unrecognized []byte `json:"-"`
  2022. XXX_sizecache int32 `json:"-"`
  2023. }
  2024. func (m *StyleInfoReply_Chassis) Reset() { *m = StyleInfoReply_Chassis{} }
  2025. func (m *StyleInfoReply_Chassis) String() string { return proto.CompactTextString(m) }
  2026. func (*StyleInfoReply_Chassis) ProtoMessage() {}
  2027. func (*StyleInfoReply_Chassis) Descriptor() ([]byte, []int) {
  2028. return fileDescriptor_b614324037d99e80, []int{21, 3}
  2029. }
  2030. func (m *StyleInfoReply_Chassis) XXX_Unmarshal(b []byte) error {
  2031. return xxx_messageInfo_StyleInfoReply_Chassis.Unmarshal(m, b)
  2032. }
  2033. func (m *StyleInfoReply_Chassis) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2034. return xxx_messageInfo_StyleInfoReply_Chassis.Marshal(b, m, deterministic)
  2035. }
  2036. func (m *StyleInfoReply_Chassis) XXX_Merge(src proto.Message) {
  2037. xxx_messageInfo_StyleInfoReply_Chassis.Merge(m, src)
  2038. }
  2039. func (m *StyleInfoReply_Chassis) XXX_Size() int {
  2040. return xxx_messageInfo_StyleInfoReply_Chassis.Size(m)
  2041. }
  2042. func (m *StyleInfoReply_Chassis) XXX_DiscardUnknown() {
  2043. xxx_messageInfo_StyleInfoReply_Chassis.DiscardUnknown(m)
  2044. }
  2045. var xxx_messageInfo_StyleInfoReply_Chassis proto.InternalMessageInfo
  2046. func (m *StyleInfoReply_Chassis) GetAssistType() string {
  2047. if m != nil {
  2048. return m.AssistType
  2049. }
  2050. return ""
  2051. }
  2052. func (m *StyleInfoReply_Chassis) GetBackSuspentionType() string {
  2053. if m != nil {
  2054. return m.BackSuspentionType
  2055. }
  2056. return ""
  2057. }
  2058. func (m *StyleInfoReply_Chassis) GetBodyStructure() string {
  2059. if m != nil {
  2060. return m.BodyStructure
  2061. }
  2062. return ""
  2063. }
  2064. func (m *StyleInfoReply_Chassis) GetDriveType() string {
  2065. if m != nil {
  2066. return m.DriveType
  2067. }
  2068. return ""
  2069. }
  2070. func (m *StyleInfoReply_Chassis) GetFrontSuspentionType() string {
  2071. if m != nil {
  2072. return m.FrontSuspentionType
  2073. }
  2074. return ""
  2075. }
  2076. type StyleInfoReply_Control struct {
  2077. AirSuspension string `protobuf:"bytes,1,opt,name=air_suspension,json=airSuspension,proto3" json:"air_suspension"`
  2078. AscentAssist string `protobuf:"bytes,2,opt,name=ascent_assist,json=ascentAssist,proto3" json:"ascent_assist"`
  2079. AutoHold string `protobuf:"bytes,3,opt,name=auto_hold,json=autoHold,proto3" json:"auto_hold"`
  2080. AutomaticDrivingAssistance string `protobuf:"bytes,4,opt,name=automatic_driving_assistance,json=automaticDrivingAssistance,proto3" json:"automatic_driving_assistance"`
  2081. AutomaticParking string `protobuf:"bytes,5,opt,name=automatic_parking,json=automaticParking,proto3" json:"automatic_parking"`
  2082. BackParkingRador string `protobuf:"bytes,6,opt,name=back_parking_rador,json=backParkingRador,proto3" json:"back_parking_rador"`
  2083. CentralDiffLock string `protobuf:"bytes,7,opt,name=central_diff_lock,json=centralDiffLock,proto3" json:"central_diff_lock"`
  2084. CruiseSystem string `protobuf:"bytes,8,opt,name=cruise_system,json=cruiseSystem,proto3" json:"cruise_system"`
  2085. DrivingModeSelection string `protobuf:"bytes,9,opt,name=driving_mode_selection,json=drivingModeSelection,proto3" json:"driving_mode_selection"`
  2086. EInductionSuspension string `protobuf:"bytes,10,opt,name=e_induction_suspension,json=eInductionSuspension,proto3" json:"e_induction_suspension"`
  2087. Edl string `protobuf:"bytes,11,opt,name=edl,proto3" json:"edl"`
  2088. EngineStartStopTechnology string `protobuf:"bytes,12,opt,name=engine_start_stop_technology,json=engineStartStopTechnology,proto3" json:"engine_start_stop_technology"`
  2089. FrontParkingRador string `protobuf:"bytes,13,opt,name=front_parking_rador,json=frontParkingRador,proto3" json:"front_parking_rador"`
  2090. Hdc string `protobuf:"bytes,14,opt,name=hdc,proto3" json:"hdc"`
  2091. OverallActiveSteeringSystem string `protobuf:"bytes,15,opt,name=overall_active_steering_system,json=overallActiveSteeringSystem,proto3" json:"overall_active_steering_system"`
  2092. ReverseVehicleSideWarningSystem string `protobuf:"bytes,16,opt,name=reverse_vehicle_side_warning_system,json=reverseVehicleSideWarningSystem,proto3" json:"reverse_vehicle_side_warning_system"`
  2093. VariableSteeringRatio string `protobuf:"bytes,17,opt,name=variable_steering_ratio,json=variableSteeringRatio,proto3" json:"variable_steering_ratio"`
  2094. VariableSuspension string `protobuf:"bytes,18,opt,name=variable_suspension,json=variableSuspension,proto3" json:"variable_suspension"`
  2095. WadeSensingSystem string `protobuf:"bytes,19,opt,name=wade_sensing_system,json=wadeSensingSystem,proto3" json:"wade_sensing_system"`
  2096. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2097. XXX_unrecognized []byte `json:"-"`
  2098. XXX_sizecache int32 `json:"-"`
  2099. }
  2100. func (m *StyleInfoReply_Control) Reset() { *m = StyleInfoReply_Control{} }
  2101. func (m *StyleInfoReply_Control) String() string { return proto.CompactTextString(m) }
  2102. func (*StyleInfoReply_Control) ProtoMessage() {}
  2103. func (*StyleInfoReply_Control) Descriptor() ([]byte, []int) {
  2104. return fileDescriptor_b614324037d99e80, []int{21, 4}
  2105. }
  2106. func (m *StyleInfoReply_Control) XXX_Unmarshal(b []byte) error {
  2107. return xxx_messageInfo_StyleInfoReply_Control.Unmarshal(m, b)
  2108. }
  2109. func (m *StyleInfoReply_Control) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2110. return xxx_messageInfo_StyleInfoReply_Control.Marshal(b, m, deterministic)
  2111. }
  2112. func (m *StyleInfoReply_Control) XXX_Merge(src proto.Message) {
  2113. xxx_messageInfo_StyleInfoReply_Control.Merge(m, src)
  2114. }
  2115. func (m *StyleInfoReply_Control) XXX_Size() int {
  2116. return xxx_messageInfo_StyleInfoReply_Control.Size(m)
  2117. }
  2118. func (m *StyleInfoReply_Control) XXX_DiscardUnknown() {
  2119. xxx_messageInfo_StyleInfoReply_Control.DiscardUnknown(m)
  2120. }
  2121. var xxx_messageInfo_StyleInfoReply_Control proto.InternalMessageInfo
  2122. func (m *StyleInfoReply_Control) GetAirSuspension() string {
  2123. if m != nil {
  2124. return m.AirSuspension
  2125. }
  2126. return ""
  2127. }
  2128. func (m *StyleInfoReply_Control) GetAscentAssist() string {
  2129. if m != nil {
  2130. return m.AscentAssist
  2131. }
  2132. return ""
  2133. }
  2134. func (m *StyleInfoReply_Control) GetAutoHold() string {
  2135. if m != nil {
  2136. return m.AutoHold
  2137. }
  2138. return ""
  2139. }
  2140. func (m *StyleInfoReply_Control) GetAutomaticDrivingAssistance() string {
  2141. if m != nil {
  2142. return m.AutomaticDrivingAssistance
  2143. }
  2144. return ""
  2145. }
  2146. func (m *StyleInfoReply_Control) GetAutomaticParking() string {
  2147. if m != nil {
  2148. return m.AutomaticParking
  2149. }
  2150. return ""
  2151. }
  2152. func (m *StyleInfoReply_Control) GetBackParkingRador() string {
  2153. if m != nil {
  2154. return m.BackParkingRador
  2155. }
  2156. return ""
  2157. }
  2158. func (m *StyleInfoReply_Control) GetCentralDiffLock() string {
  2159. if m != nil {
  2160. return m.CentralDiffLock
  2161. }
  2162. return ""
  2163. }
  2164. func (m *StyleInfoReply_Control) GetCruiseSystem() string {
  2165. if m != nil {
  2166. return m.CruiseSystem
  2167. }
  2168. return ""
  2169. }
  2170. func (m *StyleInfoReply_Control) GetDrivingModeSelection() string {
  2171. if m != nil {
  2172. return m.DrivingModeSelection
  2173. }
  2174. return ""
  2175. }
  2176. func (m *StyleInfoReply_Control) GetEInductionSuspension() string {
  2177. if m != nil {
  2178. return m.EInductionSuspension
  2179. }
  2180. return ""
  2181. }
  2182. func (m *StyleInfoReply_Control) GetEdl() string {
  2183. if m != nil {
  2184. return m.Edl
  2185. }
  2186. return ""
  2187. }
  2188. func (m *StyleInfoReply_Control) GetEngineStartStopTechnology() string {
  2189. if m != nil {
  2190. return m.EngineStartStopTechnology
  2191. }
  2192. return ""
  2193. }
  2194. func (m *StyleInfoReply_Control) GetFrontParkingRador() string {
  2195. if m != nil {
  2196. return m.FrontParkingRador
  2197. }
  2198. return ""
  2199. }
  2200. func (m *StyleInfoReply_Control) GetHdc() string {
  2201. if m != nil {
  2202. return m.Hdc
  2203. }
  2204. return ""
  2205. }
  2206. func (m *StyleInfoReply_Control) GetOverallActiveSteeringSystem() string {
  2207. if m != nil {
  2208. return m.OverallActiveSteeringSystem
  2209. }
  2210. return ""
  2211. }
  2212. func (m *StyleInfoReply_Control) GetReverseVehicleSideWarningSystem() string {
  2213. if m != nil {
  2214. return m.ReverseVehicleSideWarningSystem
  2215. }
  2216. return ""
  2217. }
  2218. func (m *StyleInfoReply_Control) GetVariableSteeringRatio() string {
  2219. if m != nil {
  2220. return m.VariableSteeringRatio
  2221. }
  2222. return ""
  2223. }
  2224. func (m *StyleInfoReply_Control) GetVariableSuspension() string {
  2225. if m != nil {
  2226. return m.VariableSuspension
  2227. }
  2228. return ""
  2229. }
  2230. func (m *StyleInfoReply_Control) GetWadeSensingSystem() string {
  2231. if m != nil {
  2232. return m.WadeSensingSystem
  2233. }
  2234. return ""
  2235. }
  2236. type StyleInfoReply_Electric struct {
  2237. BackElectricMaximumPower string `protobuf:"bytes,1,opt,name=back_electric_maximum_power,json=backElectricMaximumPower,proto3" json:"back_electric_maximum_power"`
  2238. BackElectricTorque string `protobuf:"bytes,2,opt,name=back_electric_torque,json=backElectricTorque,proto3" json:"back_electric_torque"`
  2239. BatteryEnergy string `protobuf:"bytes,3,opt,name=battery_energy,json=batteryEnergy,proto3" json:"battery_energy"`
  2240. BatteryPackWarranty string `protobuf:"bytes,4,opt,name=battery_pack_warranty,json=batteryPackWarranty,proto3" json:"battery_pack_warranty"`
  2241. BatteryType string `protobuf:"bytes,5,opt,name=battery_type,json=batteryType,proto3" json:"battery_type"`
  2242. FrontElectricMaximumPower string `protobuf:"bytes,6,opt,name=front_electric_maximum_power,json=frontElectricMaximumPower,proto3" json:"front_electric_maximum_power"`
  2243. FrontElectricTorque string `protobuf:"bytes,7,opt,name=front_electric_torque,json=frontElectricTorque,proto3" json:"front_electric_torque"`
  2244. HundredElectricityConsumption string `protobuf:"bytes,8,opt,name=hundred_electricity_consumption,json=hundredElectricityConsumption,proto3" json:"hundred_electricity_consumption"`
  2245. MaximumSimulationMilage string `protobuf:"bytes,9,opt,name=maximum_simulation_milage,json=maximumSimulationMilage,proto3" json:"maximum_simulation_milage"`
  2246. MotorLayout string `protobuf:"bytes,10,opt,name=motor_layout,json=motorLayout,proto3" json:"motor_layout"`
  2247. MotorNumber string `protobuf:"bytes,11,opt,name=motor_number,json=motorNumber,proto3" json:"motor_number"`
  2248. MotorType string `protobuf:"bytes,12,opt,name=motor_type,json=motorType,proto3" json:"motor_type"`
  2249. SystemIntegratedPower string `protobuf:"bytes,13,opt,name=system_integrated_power,json=systemIntegratedPower,proto3" json:"system_integrated_power"`
  2250. SystemIntegratedTorque string `protobuf:"bytes,14,opt,name=system_integrated_torque,json=systemIntegratedTorque,proto3" json:"system_integrated_torque"`
  2251. TotalMotorPower string `protobuf:"bytes,15,opt,name=total_motor_power,json=totalMotorPower,proto3" json:"total_motor_power"`
  2252. TotalMotorTorque string `protobuf:"bytes,16,opt,name=total_motor_torque,json=totalMotorTorque,proto3" json:"total_motor_torque"`
  2253. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2254. XXX_unrecognized []byte `json:"-"`
  2255. XXX_sizecache int32 `json:"-"`
  2256. }
  2257. func (m *StyleInfoReply_Electric) Reset() { *m = StyleInfoReply_Electric{} }
  2258. func (m *StyleInfoReply_Electric) String() string { return proto.CompactTextString(m) }
  2259. func (*StyleInfoReply_Electric) ProtoMessage() {}
  2260. func (*StyleInfoReply_Electric) Descriptor() ([]byte, []int) {
  2261. return fileDescriptor_b614324037d99e80, []int{21, 5}
  2262. }
  2263. func (m *StyleInfoReply_Electric) XXX_Unmarshal(b []byte) error {
  2264. return xxx_messageInfo_StyleInfoReply_Electric.Unmarshal(m, b)
  2265. }
  2266. func (m *StyleInfoReply_Electric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2267. return xxx_messageInfo_StyleInfoReply_Electric.Marshal(b, m, deterministic)
  2268. }
  2269. func (m *StyleInfoReply_Electric) XXX_Merge(src proto.Message) {
  2270. xxx_messageInfo_StyleInfoReply_Electric.Merge(m, src)
  2271. }
  2272. func (m *StyleInfoReply_Electric) XXX_Size() int {
  2273. return xxx_messageInfo_StyleInfoReply_Electric.Size(m)
  2274. }
  2275. func (m *StyleInfoReply_Electric) XXX_DiscardUnknown() {
  2276. xxx_messageInfo_StyleInfoReply_Electric.DiscardUnknown(m)
  2277. }
  2278. var xxx_messageInfo_StyleInfoReply_Electric proto.InternalMessageInfo
  2279. func (m *StyleInfoReply_Electric) GetBackElectricMaximumPower() string {
  2280. if m != nil {
  2281. return m.BackElectricMaximumPower
  2282. }
  2283. return ""
  2284. }
  2285. func (m *StyleInfoReply_Electric) GetBackElectricTorque() string {
  2286. if m != nil {
  2287. return m.BackElectricTorque
  2288. }
  2289. return ""
  2290. }
  2291. func (m *StyleInfoReply_Electric) GetBatteryEnergy() string {
  2292. if m != nil {
  2293. return m.BatteryEnergy
  2294. }
  2295. return ""
  2296. }
  2297. func (m *StyleInfoReply_Electric) GetBatteryPackWarranty() string {
  2298. if m != nil {
  2299. return m.BatteryPackWarranty
  2300. }
  2301. return ""
  2302. }
  2303. func (m *StyleInfoReply_Electric) GetBatteryType() string {
  2304. if m != nil {
  2305. return m.BatteryType
  2306. }
  2307. return ""
  2308. }
  2309. func (m *StyleInfoReply_Electric) GetFrontElectricMaximumPower() string {
  2310. if m != nil {
  2311. return m.FrontElectricMaximumPower
  2312. }
  2313. return ""
  2314. }
  2315. func (m *StyleInfoReply_Electric) GetFrontElectricTorque() string {
  2316. if m != nil {
  2317. return m.FrontElectricTorque
  2318. }
  2319. return ""
  2320. }
  2321. func (m *StyleInfoReply_Electric) GetHundredElectricityConsumption() string {
  2322. if m != nil {
  2323. return m.HundredElectricityConsumption
  2324. }
  2325. return ""
  2326. }
  2327. func (m *StyleInfoReply_Electric) GetMaximumSimulationMilage() string {
  2328. if m != nil {
  2329. return m.MaximumSimulationMilage
  2330. }
  2331. return ""
  2332. }
  2333. func (m *StyleInfoReply_Electric) GetMotorLayout() string {
  2334. if m != nil {
  2335. return m.MotorLayout
  2336. }
  2337. return ""
  2338. }
  2339. func (m *StyleInfoReply_Electric) GetMotorNumber() string {
  2340. if m != nil {
  2341. return m.MotorNumber
  2342. }
  2343. return ""
  2344. }
  2345. func (m *StyleInfoReply_Electric) GetMotorType() string {
  2346. if m != nil {
  2347. return m.MotorType
  2348. }
  2349. return ""
  2350. }
  2351. func (m *StyleInfoReply_Electric) GetSystemIntegratedPower() string {
  2352. if m != nil {
  2353. return m.SystemIntegratedPower
  2354. }
  2355. return ""
  2356. }
  2357. func (m *StyleInfoReply_Electric) GetSystemIntegratedTorque() string {
  2358. if m != nil {
  2359. return m.SystemIntegratedTorque
  2360. }
  2361. return ""
  2362. }
  2363. func (m *StyleInfoReply_Electric) GetTotalMotorPower() string {
  2364. if m != nil {
  2365. return m.TotalMotorPower
  2366. }
  2367. return ""
  2368. }
  2369. func (m *StyleInfoReply_Electric) GetTotalMotorTorque() string {
  2370. if m != nil {
  2371. return m.TotalMotorTorque
  2372. }
  2373. return ""
  2374. }
  2375. type StyleInfoReply_Engine struct {
  2376. AirIntakForm string `protobuf:"bytes,1,opt,name=air_intak_form,json=airIntakForm,proto3" json:"air_intak_form"`
  2377. CylinderArrangement string `protobuf:"bytes,2,opt,name=cylinder_arrangement,json=cylinderArrangement,proto3" json:"cylinder_arrangement"`
  2378. CylinderDiameter string `protobuf:"bytes,3,opt,name=cylinder_diameter,json=cylinderDiameter,proto3" json:"cylinder_diameter"`
  2379. CylinderHeadMaterial string `protobuf:"bytes,4,opt,name=cylinder_head_material,json=cylinderHeadMaterial,proto3" json:"cylinder_head_material"`
  2380. CylinderMaterial string `protobuf:"bytes,5,opt,name=cylinder_material,json=cylinderMaterial,proto3" json:"cylinder_material"`
  2381. CylinderNumber string `protobuf:"bytes,6,opt,name=cylinder_number,json=cylinderNumber,proto3" json:"cylinder_number"`
  2382. CylinderValveNumber string `protobuf:"bytes,7,opt,name=cylinder_valve_number,json=cylinderValveNumber,proto3" json:"cylinder_valve_number"`
  2383. Displacement string `protobuf:"bytes,8,opt,name=displacement,proto3" json:"displacement"`
  2384. DisplacementL string `protobuf:"bytes,9,opt,name=displacement_l,json=displacementL,proto3" json:"displacement_l"`
  2385. EngineTechnology string `protobuf:"bytes,10,opt,name=engine_technology,json=engineTechnology,proto3" json:"engine_technology"`
  2386. EngineType string `protobuf:"bytes,11,opt,name=engine_type,json=engineType,proto3" json:"engine_type"`
  2387. FuelLable string `protobuf:"bytes,12,opt,name=fuel_lable,json=fuelLable,proto3" json:"fuel_lable"`
  2388. FuelTypeDetail string `protobuf:"bytes,13,opt,name=fuel_type_detail,json=fuelTypeDetail,proto3" json:"fuel_type_detail"`
  2389. MaximumHorsepower string `protobuf:"bytes,14,opt,name=maximum_horsepower,json=maximumHorsepower,proto3" json:"maximum_horsepower"`
  2390. MaximumPowerRpm string `protobuf:"bytes,15,opt,name=maximum_power_rpm,json=maximumPowerRpm,proto3" json:"maximum_power_rpm"`
  2391. OilSupplyMode string `protobuf:"bytes,16,opt,name=oil_supply_mode,json=oilSupplyMode,proto3" json:"oil_supply_mode"`
  2392. PistonStroke string `protobuf:"bytes,17,opt,name=piston_stroke,json=pistonStroke,proto3" json:"piston_stroke"`
  2393. ReductionRatio string `protobuf:"bytes,18,opt,name=reduction_ratio,json=reductionRatio,proto3" json:"reduction_ratio"`
  2394. Rpm string `protobuf:"bytes,19,opt,name=rpm,proto3" json:"rpm"`
  2395. ValveMechanism string `protobuf:"bytes,20,opt,name=valve_mechanism,json=valveMechanism,proto3" json:"valve_mechanism"`
  2396. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2397. XXX_unrecognized []byte `json:"-"`
  2398. XXX_sizecache int32 `json:"-"`
  2399. }
  2400. func (m *StyleInfoReply_Engine) Reset() { *m = StyleInfoReply_Engine{} }
  2401. func (m *StyleInfoReply_Engine) String() string { return proto.CompactTextString(m) }
  2402. func (*StyleInfoReply_Engine) ProtoMessage() {}
  2403. func (*StyleInfoReply_Engine) Descriptor() ([]byte, []int) {
  2404. return fileDescriptor_b614324037d99e80, []int{21, 6}
  2405. }
  2406. func (m *StyleInfoReply_Engine) XXX_Unmarshal(b []byte) error {
  2407. return xxx_messageInfo_StyleInfoReply_Engine.Unmarshal(m, b)
  2408. }
  2409. func (m *StyleInfoReply_Engine) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2410. return xxx_messageInfo_StyleInfoReply_Engine.Marshal(b, m, deterministic)
  2411. }
  2412. func (m *StyleInfoReply_Engine) XXX_Merge(src proto.Message) {
  2413. xxx_messageInfo_StyleInfoReply_Engine.Merge(m, src)
  2414. }
  2415. func (m *StyleInfoReply_Engine) XXX_Size() int {
  2416. return xxx_messageInfo_StyleInfoReply_Engine.Size(m)
  2417. }
  2418. func (m *StyleInfoReply_Engine) XXX_DiscardUnknown() {
  2419. xxx_messageInfo_StyleInfoReply_Engine.DiscardUnknown(m)
  2420. }
  2421. var xxx_messageInfo_StyleInfoReply_Engine proto.InternalMessageInfo
  2422. func (m *StyleInfoReply_Engine) GetAirIntakForm() string {
  2423. if m != nil {
  2424. return m.AirIntakForm
  2425. }
  2426. return ""
  2427. }
  2428. func (m *StyleInfoReply_Engine) GetCylinderArrangement() string {
  2429. if m != nil {
  2430. return m.CylinderArrangement
  2431. }
  2432. return ""
  2433. }
  2434. func (m *StyleInfoReply_Engine) GetCylinderDiameter() string {
  2435. if m != nil {
  2436. return m.CylinderDiameter
  2437. }
  2438. return ""
  2439. }
  2440. func (m *StyleInfoReply_Engine) GetCylinderHeadMaterial() string {
  2441. if m != nil {
  2442. return m.CylinderHeadMaterial
  2443. }
  2444. return ""
  2445. }
  2446. func (m *StyleInfoReply_Engine) GetCylinderMaterial() string {
  2447. if m != nil {
  2448. return m.CylinderMaterial
  2449. }
  2450. return ""
  2451. }
  2452. func (m *StyleInfoReply_Engine) GetCylinderNumber() string {
  2453. if m != nil {
  2454. return m.CylinderNumber
  2455. }
  2456. return ""
  2457. }
  2458. func (m *StyleInfoReply_Engine) GetCylinderValveNumber() string {
  2459. if m != nil {
  2460. return m.CylinderValveNumber
  2461. }
  2462. return ""
  2463. }
  2464. func (m *StyleInfoReply_Engine) GetDisplacement() string {
  2465. if m != nil {
  2466. return m.Displacement
  2467. }
  2468. return ""
  2469. }
  2470. func (m *StyleInfoReply_Engine) GetDisplacementL() string {
  2471. if m != nil {
  2472. return m.DisplacementL
  2473. }
  2474. return ""
  2475. }
  2476. func (m *StyleInfoReply_Engine) GetEngineTechnology() string {
  2477. if m != nil {
  2478. return m.EngineTechnology
  2479. }
  2480. return ""
  2481. }
  2482. func (m *StyleInfoReply_Engine) GetEngineType() string {
  2483. if m != nil {
  2484. return m.EngineType
  2485. }
  2486. return ""
  2487. }
  2488. func (m *StyleInfoReply_Engine) GetFuelLable() string {
  2489. if m != nil {
  2490. return m.FuelLable
  2491. }
  2492. return ""
  2493. }
  2494. func (m *StyleInfoReply_Engine) GetFuelTypeDetail() string {
  2495. if m != nil {
  2496. return m.FuelTypeDetail
  2497. }
  2498. return ""
  2499. }
  2500. func (m *StyleInfoReply_Engine) GetMaximumHorsepower() string {
  2501. if m != nil {
  2502. return m.MaximumHorsepower
  2503. }
  2504. return ""
  2505. }
  2506. func (m *StyleInfoReply_Engine) GetMaximumPowerRpm() string {
  2507. if m != nil {
  2508. return m.MaximumPowerRpm
  2509. }
  2510. return ""
  2511. }
  2512. func (m *StyleInfoReply_Engine) GetOilSupplyMode() string {
  2513. if m != nil {
  2514. return m.OilSupplyMode
  2515. }
  2516. return ""
  2517. }
  2518. func (m *StyleInfoReply_Engine) GetPistonStroke() string {
  2519. if m != nil {
  2520. return m.PistonStroke
  2521. }
  2522. return ""
  2523. }
  2524. func (m *StyleInfoReply_Engine) GetReductionRatio() string {
  2525. if m != nil {
  2526. return m.ReductionRatio
  2527. }
  2528. return ""
  2529. }
  2530. func (m *StyleInfoReply_Engine) GetRpm() string {
  2531. if m != nil {
  2532. return m.Rpm
  2533. }
  2534. return ""
  2535. }
  2536. func (m *StyleInfoReply_Engine) GetValveMechanism() string {
  2537. if m != nil {
  2538. return m.ValveMechanism
  2539. }
  2540. return ""
  2541. }
  2542. type StyleInfoReply_External struct {
  2543. ActiveIntakeGrille string `protobuf:"bytes,1,opt,name=active_intake_grille,json=activeIntakeGrille,proto3" json:"active_intake_grille"`
  2544. BatteryPreHeating string `protobuf:"bytes,2,opt,name=battery_pre_heating,json=batteryPreHeating,proto3" json:"battery_pre_heating"`
  2545. CentralControlLock string `protobuf:"bytes,3,opt,name=central_control_lock,json=centralControlLock,proto3" json:"central_control_lock"`
  2546. ElectricTrunk string `protobuf:"bytes,4,opt,name=electric_trunk,json=electricTrunk,proto3" json:"electric_trunk"`
  2547. ElectronicAntiTheft string `protobuf:"bytes,5,opt,name=electronic_anti_theft,json=electronicAntiTheft,proto3" json:"electronic_anti_theft"`
  2548. Eosd string `protobuf:"bytes,6,opt,name=eosd,proto3" json:"eosd"`
  2549. FramelessDesignDoor string `protobuf:"bytes,7,opt,name=frameless_design_door,json=framelessDesignDoor,proto3" json:"frameless_design_door"`
  2550. HideElectricDoorHandle string `protobuf:"bytes,8,opt,name=hide_electric_door_handle,json=hideElectricDoorHandle,proto3" json:"hide_electric_door_handle"`
  2551. InductiveTrunk string `protobuf:"bytes,9,opt,name=inductive_trunk,json=inductiveTrunk,proto3" json:"inductive_trunk"`
  2552. KeyType string `protobuf:"bytes,10,opt,name=key_type,json=keyType,proto3" json:"key_type"`
  2553. KeylessEntrySystem string `protobuf:"bytes,11,opt,name=keyless_entry_system,json=keylessEntrySystem,proto3" json:"keyless_entry_system"`
  2554. KeylessStartSystem string `protobuf:"bytes,12,opt,name=keyless_start_system,json=keylessStartSystem,proto3" json:"keyless_start_system"`
  2555. OutsidePedal string `protobuf:"bytes,13,opt,name=outside_pedal,json=outsidePedal,proto3" json:"outside_pedal"`
  2556. RearCompartmentPositionMemory string `protobuf:"bytes,14,opt,name=rear_compartment_position_memory,json=rearCompartmentPositionMemory,proto3" json:"rear_compartment_position_memory"`
  2557. RemoteStart string `protobuf:"bytes,15,opt,name=remote_start,json=remoteStart,proto3" json:"remote_start"`
  2558. RimMaterial string `protobuf:"bytes,16,opt,name=rim_material,json=rimMaterial,proto3" json:"rim_material"`
  2559. RoofLuggageRack string `protobuf:"bytes,17,opt,name=roof_luggage_rack,json=roofLuggageRack,proto3" json:"roof_luggage_rack"`
  2560. SideSlidingDoor string `protobuf:"bytes,18,opt,name=side_sliding_door,json=sideSlidingDoor,proto3" json:"side_sliding_door"`
  2561. SkylightType string `protobuf:"bytes,19,opt,name=skylight_type,json=skylightType,proto3" json:"skylight_type"`
  2562. SportsAppearanceKit string `protobuf:"bytes,20,opt,name=sports_appearance_kit,json=sportsAppearanceKit,proto3" json:"sports_appearance_kit"`
  2563. Tail string `protobuf:"bytes,21,opt,name=tail,proto3" json:"tail"`
  2564. TheTailgateGlassOpensIndependently string `protobuf:"bytes,22,opt,name=the_tailgate_glass_opens_independently,json=theTailgateGlassOpensIndependently,proto3" json:"the_tailgate_glass_opens_independently"`
  2565. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2566. XXX_unrecognized []byte `json:"-"`
  2567. XXX_sizecache int32 `json:"-"`
  2568. }
  2569. func (m *StyleInfoReply_External) Reset() { *m = StyleInfoReply_External{} }
  2570. func (m *StyleInfoReply_External) String() string { return proto.CompactTextString(m) }
  2571. func (*StyleInfoReply_External) ProtoMessage() {}
  2572. func (*StyleInfoReply_External) Descriptor() ([]byte, []int) {
  2573. return fileDescriptor_b614324037d99e80, []int{21, 7}
  2574. }
  2575. func (m *StyleInfoReply_External) XXX_Unmarshal(b []byte) error {
  2576. return xxx_messageInfo_StyleInfoReply_External.Unmarshal(m, b)
  2577. }
  2578. func (m *StyleInfoReply_External) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2579. return xxx_messageInfo_StyleInfoReply_External.Marshal(b, m, deterministic)
  2580. }
  2581. func (m *StyleInfoReply_External) XXX_Merge(src proto.Message) {
  2582. xxx_messageInfo_StyleInfoReply_External.Merge(m, src)
  2583. }
  2584. func (m *StyleInfoReply_External) XXX_Size() int {
  2585. return xxx_messageInfo_StyleInfoReply_External.Size(m)
  2586. }
  2587. func (m *StyleInfoReply_External) XXX_DiscardUnknown() {
  2588. xxx_messageInfo_StyleInfoReply_External.DiscardUnknown(m)
  2589. }
  2590. var xxx_messageInfo_StyleInfoReply_External proto.InternalMessageInfo
  2591. func (m *StyleInfoReply_External) GetActiveIntakeGrille() string {
  2592. if m != nil {
  2593. return m.ActiveIntakeGrille
  2594. }
  2595. return ""
  2596. }
  2597. func (m *StyleInfoReply_External) GetBatteryPreHeating() string {
  2598. if m != nil {
  2599. return m.BatteryPreHeating
  2600. }
  2601. return ""
  2602. }
  2603. func (m *StyleInfoReply_External) GetCentralControlLock() string {
  2604. if m != nil {
  2605. return m.CentralControlLock
  2606. }
  2607. return ""
  2608. }
  2609. func (m *StyleInfoReply_External) GetElectricTrunk() string {
  2610. if m != nil {
  2611. return m.ElectricTrunk
  2612. }
  2613. return ""
  2614. }
  2615. func (m *StyleInfoReply_External) GetElectronicAntiTheft() string {
  2616. if m != nil {
  2617. return m.ElectronicAntiTheft
  2618. }
  2619. return ""
  2620. }
  2621. func (m *StyleInfoReply_External) GetEosd() string {
  2622. if m != nil {
  2623. return m.Eosd
  2624. }
  2625. return ""
  2626. }
  2627. func (m *StyleInfoReply_External) GetFramelessDesignDoor() string {
  2628. if m != nil {
  2629. return m.FramelessDesignDoor
  2630. }
  2631. return ""
  2632. }
  2633. func (m *StyleInfoReply_External) GetHideElectricDoorHandle() string {
  2634. if m != nil {
  2635. return m.HideElectricDoorHandle
  2636. }
  2637. return ""
  2638. }
  2639. func (m *StyleInfoReply_External) GetInductiveTrunk() string {
  2640. if m != nil {
  2641. return m.InductiveTrunk
  2642. }
  2643. return ""
  2644. }
  2645. func (m *StyleInfoReply_External) GetKeyType() string {
  2646. if m != nil {
  2647. return m.KeyType
  2648. }
  2649. return ""
  2650. }
  2651. func (m *StyleInfoReply_External) GetKeylessEntrySystem() string {
  2652. if m != nil {
  2653. return m.KeylessEntrySystem
  2654. }
  2655. return ""
  2656. }
  2657. func (m *StyleInfoReply_External) GetKeylessStartSystem() string {
  2658. if m != nil {
  2659. return m.KeylessStartSystem
  2660. }
  2661. return ""
  2662. }
  2663. func (m *StyleInfoReply_External) GetOutsidePedal() string {
  2664. if m != nil {
  2665. return m.OutsidePedal
  2666. }
  2667. return ""
  2668. }
  2669. func (m *StyleInfoReply_External) GetRearCompartmentPositionMemory() string {
  2670. if m != nil {
  2671. return m.RearCompartmentPositionMemory
  2672. }
  2673. return ""
  2674. }
  2675. func (m *StyleInfoReply_External) GetRemoteStart() string {
  2676. if m != nil {
  2677. return m.RemoteStart
  2678. }
  2679. return ""
  2680. }
  2681. func (m *StyleInfoReply_External) GetRimMaterial() string {
  2682. if m != nil {
  2683. return m.RimMaterial
  2684. }
  2685. return ""
  2686. }
  2687. func (m *StyleInfoReply_External) GetRoofLuggageRack() string {
  2688. if m != nil {
  2689. return m.RoofLuggageRack
  2690. }
  2691. return ""
  2692. }
  2693. func (m *StyleInfoReply_External) GetSideSlidingDoor() string {
  2694. if m != nil {
  2695. return m.SideSlidingDoor
  2696. }
  2697. return ""
  2698. }
  2699. func (m *StyleInfoReply_External) GetSkylightType() string {
  2700. if m != nil {
  2701. return m.SkylightType
  2702. }
  2703. return ""
  2704. }
  2705. func (m *StyleInfoReply_External) GetSportsAppearanceKit() string {
  2706. if m != nil {
  2707. return m.SportsAppearanceKit
  2708. }
  2709. return ""
  2710. }
  2711. func (m *StyleInfoReply_External) GetTail() string {
  2712. if m != nil {
  2713. return m.Tail
  2714. }
  2715. return ""
  2716. }
  2717. func (m *StyleInfoReply_External) GetTheTailgateGlassOpensIndependently() string {
  2718. if m != nil {
  2719. return m.TheTailgateGlassOpensIndependently
  2720. }
  2721. return ""
  2722. }
  2723. type StyleInfoReply_Gearbox struct {
  2724. GearNumber string `protobuf:"bytes,1,opt,name=gear_number,json=gearNumber,proto3" json:"gear_number"`
  2725. GearboxDesc string `protobuf:"bytes,2,opt,name=gearbox_desc,json=gearboxDesc,proto3" json:"gearbox_desc"`
  2726. GearboxType string `protobuf:"bytes,3,opt,name=gearbox_type,json=gearboxType,proto3" json:"gearbox_type"`
  2727. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2728. XXX_unrecognized []byte `json:"-"`
  2729. XXX_sizecache int32 `json:"-"`
  2730. }
  2731. func (m *StyleInfoReply_Gearbox) Reset() { *m = StyleInfoReply_Gearbox{} }
  2732. func (m *StyleInfoReply_Gearbox) String() string { return proto.CompactTextString(m) }
  2733. func (*StyleInfoReply_Gearbox) ProtoMessage() {}
  2734. func (*StyleInfoReply_Gearbox) Descriptor() ([]byte, []int) {
  2735. return fileDescriptor_b614324037d99e80, []int{21, 8}
  2736. }
  2737. func (m *StyleInfoReply_Gearbox) XXX_Unmarshal(b []byte) error {
  2738. return xxx_messageInfo_StyleInfoReply_Gearbox.Unmarshal(m, b)
  2739. }
  2740. func (m *StyleInfoReply_Gearbox) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2741. return xxx_messageInfo_StyleInfoReply_Gearbox.Marshal(b, m, deterministic)
  2742. }
  2743. func (m *StyleInfoReply_Gearbox) XXX_Merge(src proto.Message) {
  2744. xxx_messageInfo_StyleInfoReply_Gearbox.Merge(m, src)
  2745. }
  2746. func (m *StyleInfoReply_Gearbox) XXX_Size() int {
  2747. return xxx_messageInfo_StyleInfoReply_Gearbox.Size(m)
  2748. }
  2749. func (m *StyleInfoReply_Gearbox) XXX_DiscardUnknown() {
  2750. xxx_messageInfo_StyleInfoReply_Gearbox.DiscardUnknown(m)
  2751. }
  2752. var xxx_messageInfo_StyleInfoReply_Gearbox proto.InternalMessageInfo
  2753. func (m *StyleInfoReply_Gearbox) GetGearNumber() string {
  2754. if m != nil {
  2755. return m.GearNumber
  2756. }
  2757. return ""
  2758. }
  2759. func (m *StyleInfoReply_Gearbox) GetGearboxDesc() string {
  2760. if m != nil {
  2761. return m.GearboxDesc
  2762. }
  2763. return ""
  2764. }
  2765. func (m *StyleInfoReply_Gearbox) GetGearboxType() string {
  2766. if m != nil {
  2767. return m.GearboxType
  2768. }
  2769. return ""
  2770. }
  2771. type StyleInfoReply_Intelligent struct {
  2772. AuxiliaryDrivingChip string `protobuf:"bytes,1,opt,name=auxiliary_driving_chip,json=auxiliaryDrivingChip,proto3" json:"auxiliary_driving_chip"`
  2773. ChipComputingPower string `protobuf:"bytes,2,opt,name=chip_computing_power,json=chipComputingPower,proto3" json:"chip_computing_power"`
  2774. NumberOfCameras string `protobuf:"bytes,3,opt,name=number_of_cameras,json=numberOfCameras,proto3" json:"number_of_cameras"`
  2775. NumberOfLidars string `protobuf:"bytes,4,opt,name=number_of_lidars,json=numberOfLidars,proto3" json:"number_of_lidars"`
  2776. NumberOfMillimeterWaveRadars string `protobuf:"bytes,5,opt,name=number_of_millimeter_wave_radars,json=numberOfMillimeterWaveRadars,proto3" json:"number_of_millimeter_wave_radars"`
  2777. NumberOfUltrasonicRadars string `protobuf:"bytes,6,opt,name=number_of_ultrasonic_radars,json=numberOfUltrasonicRadars,proto3" json:"number_of_ultrasonic_radars"`
  2778. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2779. XXX_unrecognized []byte `json:"-"`
  2780. XXX_sizecache int32 `json:"-"`
  2781. }
  2782. func (m *StyleInfoReply_Intelligent) Reset() { *m = StyleInfoReply_Intelligent{} }
  2783. func (m *StyleInfoReply_Intelligent) String() string { return proto.CompactTextString(m) }
  2784. func (*StyleInfoReply_Intelligent) ProtoMessage() {}
  2785. func (*StyleInfoReply_Intelligent) Descriptor() ([]byte, []int) {
  2786. return fileDescriptor_b614324037d99e80, []int{21, 9}
  2787. }
  2788. func (m *StyleInfoReply_Intelligent) XXX_Unmarshal(b []byte) error {
  2789. return xxx_messageInfo_StyleInfoReply_Intelligent.Unmarshal(m, b)
  2790. }
  2791. func (m *StyleInfoReply_Intelligent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2792. return xxx_messageInfo_StyleInfoReply_Intelligent.Marshal(b, m, deterministic)
  2793. }
  2794. func (m *StyleInfoReply_Intelligent) XXX_Merge(src proto.Message) {
  2795. xxx_messageInfo_StyleInfoReply_Intelligent.Merge(m, src)
  2796. }
  2797. func (m *StyleInfoReply_Intelligent) XXX_Size() int {
  2798. return xxx_messageInfo_StyleInfoReply_Intelligent.Size(m)
  2799. }
  2800. func (m *StyleInfoReply_Intelligent) XXX_DiscardUnknown() {
  2801. xxx_messageInfo_StyleInfoReply_Intelligent.DiscardUnknown(m)
  2802. }
  2803. var xxx_messageInfo_StyleInfoReply_Intelligent proto.InternalMessageInfo
  2804. func (m *StyleInfoReply_Intelligent) GetAuxiliaryDrivingChip() string {
  2805. if m != nil {
  2806. return m.AuxiliaryDrivingChip
  2807. }
  2808. return ""
  2809. }
  2810. func (m *StyleInfoReply_Intelligent) GetChipComputingPower() string {
  2811. if m != nil {
  2812. return m.ChipComputingPower
  2813. }
  2814. return ""
  2815. }
  2816. func (m *StyleInfoReply_Intelligent) GetNumberOfCameras() string {
  2817. if m != nil {
  2818. return m.NumberOfCameras
  2819. }
  2820. return ""
  2821. }
  2822. func (m *StyleInfoReply_Intelligent) GetNumberOfLidars() string {
  2823. if m != nil {
  2824. return m.NumberOfLidars
  2825. }
  2826. return ""
  2827. }
  2828. func (m *StyleInfoReply_Intelligent) GetNumberOfMillimeterWaveRadars() string {
  2829. if m != nil {
  2830. return m.NumberOfMillimeterWaveRadars
  2831. }
  2832. return ""
  2833. }
  2834. func (m *StyleInfoReply_Intelligent) GetNumberOfUltrasonicRadars() string {
  2835. if m != nil {
  2836. return m.NumberOfUltrasonicRadars
  2837. }
  2838. return ""
  2839. }
  2840. type StyleInfoReply_Internal struct {
  2841. ActiveNoiseReduction string `protobuf:"bytes,1,opt,name=active_noise_reduction,json=activeNoiseReduction,proto3" json:"active_noise_reduction"`
  2842. CarDrivingRecorder string `protobuf:"bytes,2,opt,name=car_driving_recorder,json=carDrivingRecorder,proto3" json:"car_driving_recorder"`
  2843. DrivingComputerDisplay string `protobuf:"bytes,3,opt,name=driving_computer_display,json=drivingComputerDisplay,proto3" json:"driving_computer_display"`
  2844. ElectricallyAdjustablePedal string `protobuf:"bytes,4,opt,name=electrically_adjustable_pedal,json=electricallyAdjustablePedal,proto3" json:"electrically_adjustable_pedal"`
  2845. FullLcdDashboard string `protobuf:"bytes,5,opt,name=full_lcd_dashboard,json=fullLcdDashboard,proto3" json:"full_lcd_dashboard"`
  2846. FullLcdDashboardSize string `protobuf:"bytes,6,opt,name=full_lcd_dashboard_size,json=fullLcdDashboardSize,proto3" json:"full_lcd_dashboard_size"`
  2847. HudRisingNumberDisplay string `protobuf:"bytes,7,opt,name=hud_rising_number_display,json=hudRisingNumberDisplay,proto3" json:"hud_rising_number_display"`
  2848. MobilePhoneWirelessCharging string `protobuf:"bytes,8,opt,name=mobile_phone_wireless_charging,json=mobilePhoneWirelessCharging,proto3" json:"mobile_phone_wireless_charging"`
  2849. MultiFunctionalSteeringWheel string `protobuf:"bytes,9,opt,name=multi_functional_steering_wheel,json=multiFunctionalSteeringWheel,proto3" json:"multi_functional_steering_wheel"`
  2850. SteeringWheelAdjustment string `protobuf:"bytes,10,opt,name=steering_wheel_adjustment,json=steeringWheelAdjustment,proto3" json:"steering_wheel_adjustment"`
  2851. SteeringWheelHeating string `protobuf:"bytes,11,opt,name=steering_wheel_heating,json=steeringWheelHeating,proto3" json:"steering_wheel_heating"`
  2852. SteeringWheelMaterial string `protobuf:"bytes,12,opt,name=steering_wheel_material,json=steeringWheelMaterial,proto3" json:"steering_wheel_material"`
  2853. SteeringWheelRemember string `protobuf:"bytes,13,opt,name=steering_wheel_remember,json=steeringWheelRemember,proto3" json:"steering_wheel_remember"`
  2854. SteeringWheelShift string `protobuf:"bytes,14,opt,name=steering_wheel_shift,json=steeringWheelShift,proto3" json:"steering_wheel_shift"`
  2855. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2856. XXX_unrecognized []byte `json:"-"`
  2857. XXX_sizecache int32 `json:"-"`
  2858. }
  2859. func (m *StyleInfoReply_Internal) Reset() { *m = StyleInfoReply_Internal{} }
  2860. func (m *StyleInfoReply_Internal) String() string { return proto.CompactTextString(m) }
  2861. func (*StyleInfoReply_Internal) ProtoMessage() {}
  2862. func (*StyleInfoReply_Internal) Descriptor() ([]byte, []int) {
  2863. return fileDescriptor_b614324037d99e80, []int{21, 10}
  2864. }
  2865. func (m *StyleInfoReply_Internal) XXX_Unmarshal(b []byte) error {
  2866. return xxx_messageInfo_StyleInfoReply_Internal.Unmarshal(m, b)
  2867. }
  2868. func (m *StyleInfoReply_Internal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2869. return xxx_messageInfo_StyleInfoReply_Internal.Marshal(b, m, deterministic)
  2870. }
  2871. func (m *StyleInfoReply_Internal) XXX_Merge(src proto.Message) {
  2872. xxx_messageInfo_StyleInfoReply_Internal.Merge(m, src)
  2873. }
  2874. func (m *StyleInfoReply_Internal) XXX_Size() int {
  2875. return xxx_messageInfo_StyleInfoReply_Internal.Size(m)
  2876. }
  2877. func (m *StyleInfoReply_Internal) XXX_DiscardUnknown() {
  2878. xxx_messageInfo_StyleInfoReply_Internal.DiscardUnknown(m)
  2879. }
  2880. var xxx_messageInfo_StyleInfoReply_Internal proto.InternalMessageInfo
  2881. func (m *StyleInfoReply_Internal) GetActiveNoiseReduction() string {
  2882. if m != nil {
  2883. return m.ActiveNoiseReduction
  2884. }
  2885. return ""
  2886. }
  2887. func (m *StyleInfoReply_Internal) GetCarDrivingRecorder() string {
  2888. if m != nil {
  2889. return m.CarDrivingRecorder
  2890. }
  2891. return ""
  2892. }
  2893. func (m *StyleInfoReply_Internal) GetDrivingComputerDisplay() string {
  2894. if m != nil {
  2895. return m.DrivingComputerDisplay
  2896. }
  2897. return ""
  2898. }
  2899. func (m *StyleInfoReply_Internal) GetElectricallyAdjustablePedal() string {
  2900. if m != nil {
  2901. return m.ElectricallyAdjustablePedal
  2902. }
  2903. return ""
  2904. }
  2905. func (m *StyleInfoReply_Internal) GetFullLcdDashboard() string {
  2906. if m != nil {
  2907. return m.FullLcdDashboard
  2908. }
  2909. return ""
  2910. }
  2911. func (m *StyleInfoReply_Internal) GetFullLcdDashboardSize() string {
  2912. if m != nil {
  2913. return m.FullLcdDashboardSize
  2914. }
  2915. return ""
  2916. }
  2917. func (m *StyleInfoReply_Internal) GetHudRisingNumberDisplay() string {
  2918. if m != nil {
  2919. return m.HudRisingNumberDisplay
  2920. }
  2921. return ""
  2922. }
  2923. func (m *StyleInfoReply_Internal) GetMobilePhoneWirelessCharging() string {
  2924. if m != nil {
  2925. return m.MobilePhoneWirelessCharging
  2926. }
  2927. return ""
  2928. }
  2929. func (m *StyleInfoReply_Internal) GetMultiFunctionalSteeringWheel() string {
  2930. if m != nil {
  2931. return m.MultiFunctionalSteeringWheel
  2932. }
  2933. return ""
  2934. }
  2935. func (m *StyleInfoReply_Internal) GetSteeringWheelAdjustment() string {
  2936. if m != nil {
  2937. return m.SteeringWheelAdjustment
  2938. }
  2939. return ""
  2940. }
  2941. func (m *StyleInfoReply_Internal) GetSteeringWheelHeating() string {
  2942. if m != nil {
  2943. return m.SteeringWheelHeating
  2944. }
  2945. return ""
  2946. }
  2947. func (m *StyleInfoReply_Internal) GetSteeringWheelMaterial() string {
  2948. if m != nil {
  2949. return m.SteeringWheelMaterial
  2950. }
  2951. return ""
  2952. }
  2953. func (m *StyleInfoReply_Internal) GetSteeringWheelRemember() string {
  2954. if m != nil {
  2955. return m.SteeringWheelRemember
  2956. }
  2957. return ""
  2958. }
  2959. func (m *StyleInfoReply_Internal) GetSteeringWheelShift() string {
  2960. if m != nil {
  2961. return m.SteeringWheelShift
  2962. }
  2963. return ""
  2964. }
  2965. type StyleInfoReply_Light struct {
  2966. AdaptiveFarNear string `protobuf:"bytes,1,opt,name=adaptive_far_near,json=adaptiveFarNear,proto3" json:"adaptive_far_near"`
  2967. Atmosphere string `protobuf:"bytes,2,opt,name=atmosphere,proto3" json:"atmosphere"`
  2968. AutoHead string `protobuf:"bytes,3,opt,name=auto_head,json=autoHead,proto3" json:"auto_head"`
  2969. Clean string `protobuf:"bytes,4,opt,name=clean,proto3" json:"clean"`
  2970. Daytime string `protobuf:"bytes,5,opt,name=daytime,proto3" json:"daytime"`
  2971. Far string `protobuf:"bytes,6,opt,name=far,proto3" json:"far"`
  2972. Fog string `protobuf:"bytes,7,opt,name=fog,proto3" json:"fog"`
  2973. HeadlampDelayOff string `protobuf:"bytes,8,opt,name=headlamp_delay_off,json=headlampDelayOff,proto3" json:"headlamp_delay_off"`
  2974. HeadlampRainFogMode string `protobuf:"bytes,9,opt,name=headlamp_rain_fog_mode,json=headlampRainFogMode,proto3" json:"headlamp_rain_fog_mode"`
  2975. HeightAdjustable string `protobuf:"bytes,10,opt,name=height_adjustable,json=heightAdjustable,proto3" json:"height_adjustable"`
  2976. LightingFeatures string `protobuf:"bytes,11,opt,name=lighting_features,json=lightingFeatures,proto3" json:"lighting_features"`
  2977. Near string `protobuf:"bytes,12,opt,name=near,proto3" json:"near"`
  2978. SideTurn string `protobuf:"bytes,13,opt,name=side_turn,json=sideTurn,proto3" json:"side_turn"`
  2979. SteeringAssistLamp string `protobuf:"bytes,14,opt,name=steering_assist_lamp,json=steeringAssistLamp,proto3" json:"steering_assist_lamp"`
  2980. TouchReadingLamp string `protobuf:"bytes,15,opt,name=touch_reading_lamp,json=touchReadingLamp,proto3" json:"touch_reading_lamp"`
  2981. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2982. XXX_unrecognized []byte `json:"-"`
  2983. XXX_sizecache int32 `json:"-"`
  2984. }
  2985. func (m *StyleInfoReply_Light) Reset() { *m = StyleInfoReply_Light{} }
  2986. func (m *StyleInfoReply_Light) String() string { return proto.CompactTextString(m) }
  2987. func (*StyleInfoReply_Light) ProtoMessage() {}
  2988. func (*StyleInfoReply_Light) Descriptor() ([]byte, []int) {
  2989. return fileDescriptor_b614324037d99e80, []int{21, 11}
  2990. }
  2991. func (m *StyleInfoReply_Light) XXX_Unmarshal(b []byte) error {
  2992. return xxx_messageInfo_StyleInfoReply_Light.Unmarshal(m, b)
  2993. }
  2994. func (m *StyleInfoReply_Light) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2995. return xxx_messageInfo_StyleInfoReply_Light.Marshal(b, m, deterministic)
  2996. }
  2997. func (m *StyleInfoReply_Light) XXX_Merge(src proto.Message) {
  2998. xxx_messageInfo_StyleInfoReply_Light.Merge(m, src)
  2999. }
  3000. func (m *StyleInfoReply_Light) XXX_Size() int {
  3001. return xxx_messageInfo_StyleInfoReply_Light.Size(m)
  3002. }
  3003. func (m *StyleInfoReply_Light) XXX_DiscardUnknown() {
  3004. xxx_messageInfo_StyleInfoReply_Light.DiscardUnknown(m)
  3005. }
  3006. var xxx_messageInfo_StyleInfoReply_Light proto.InternalMessageInfo
  3007. func (m *StyleInfoReply_Light) GetAdaptiveFarNear() string {
  3008. if m != nil {
  3009. return m.AdaptiveFarNear
  3010. }
  3011. return ""
  3012. }
  3013. func (m *StyleInfoReply_Light) GetAtmosphere() string {
  3014. if m != nil {
  3015. return m.Atmosphere
  3016. }
  3017. return ""
  3018. }
  3019. func (m *StyleInfoReply_Light) GetAutoHead() string {
  3020. if m != nil {
  3021. return m.AutoHead
  3022. }
  3023. return ""
  3024. }
  3025. func (m *StyleInfoReply_Light) GetClean() string {
  3026. if m != nil {
  3027. return m.Clean
  3028. }
  3029. return ""
  3030. }
  3031. func (m *StyleInfoReply_Light) GetDaytime() string {
  3032. if m != nil {
  3033. return m.Daytime
  3034. }
  3035. return ""
  3036. }
  3037. func (m *StyleInfoReply_Light) GetFar() string {
  3038. if m != nil {
  3039. return m.Far
  3040. }
  3041. return ""
  3042. }
  3043. func (m *StyleInfoReply_Light) GetFog() string {
  3044. if m != nil {
  3045. return m.Fog
  3046. }
  3047. return ""
  3048. }
  3049. func (m *StyleInfoReply_Light) GetHeadlampDelayOff() string {
  3050. if m != nil {
  3051. return m.HeadlampDelayOff
  3052. }
  3053. return ""
  3054. }
  3055. func (m *StyleInfoReply_Light) GetHeadlampRainFogMode() string {
  3056. if m != nil {
  3057. return m.HeadlampRainFogMode
  3058. }
  3059. return ""
  3060. }
  3061. func (m *StyleInfoReply_Light) GetHeightAdjustable() string {
  3062. if m != nil {
  3063. return m.HeightAdjustable
  3064. }
  3065. return ""
  3066. }
  3067. func (m *StyleInfoReply_Light) GetLightingFeatures() string {
  3068. if m != nil {
  3069. return m.LightingFeatures
  3070. }
  3071. return ""
  3072. }
  3073. func (m *StyleInfoReply_Light) GetNear() string {
  3074. if m != nil {
  3075. return m.Near
  3076. }
  3077. return ""
  3078. }
  3079. func (m *StyleInfoReply_Light) GetSideTurn() string {
  3080. if m != nil {
  3081. return m.SideTurn
  3082. }
  3083. return ""
  3084. }
  3085. func (m *StyleInfoReply_Light) GetSteeringAssistLamp() string {
  3086. if m != nil {
  3087. return m.SteeringAssistLamp
  3088. }
  3089. return ""
  3090. }
  3091. func (m *StyleInfoReply_Light) GetTouchReadingLamp() string {
  3092. if m != nil {
  3093. return m.TouchReadingLamp
  3094. }
  3095. return ""
  3096. }
  3097. type StyleInfoReply_Media struct {
  3098. BackLcd string `protobuf:"bytes,1,opt,name=back_lcd,json=backLcd,proto3" json:"back_lcd"`
  3099. CarInternet string `protobuf:"bytes,2,opt,name=car_internet,json=carInternet,proto3" json:"car_internet"`
  3100. CarPhone string `protobuf:"bytes,3,opt,name=car_phone,json=carPhone,proto3" json:"car_phone"`
  3101. CarTv string `protobuf:"bytes,4,opt,name=car_tv,json=carTv,proto3" json:"car_tv"`
  3102. CdDvd string `protobuf:"bytes,5,opt,name=cd_dvd,json=cdDvd,proto3" json:"cd_dvd"`
  3103. CenterConsoleLargeScreenSize string `protobuf:"bytes,6,opt,name=center_console_large_screen_size,json=centerConsoleLargeScreenSize,proto3" json:"center_console_large_screen_size"`
  3104. CentralColourScreen string `protobuf:"bytes,7,opt,name=central_colour_screen,json=centralColourScreen,proto3" json:"central_colour_screen"`
  3105. CentralLcdSplitScreen string `protobuf:"bytes,8,opt,name=central_lcd_split_screen,json=centralLcdSplitScreen,proto3" json:"central_lcd_split_screen"`
  3106. ChargingInterface string `protobuf:"bytes,9,opt,name=charging_interface,json=chargingInterface,proto3" json:"charging_interface"`
  3107. FaceRecognition string `protobuf:"bytes,10,opt,name=face_recognition,json=faceRecognition,proto3" json:"face_recognition"`
  3108. GestureControl string `protobuf:"bytes,11,opt,name=gesture_control,json=gestureControl,proto3" json:"gesture_control"`
  3109. Gps string `protobuf:"bytes,12,opt,name=gps,proto3" json:"gps"`
  3110. InterfaceOf12V string `protobuf:"bytes,13,opt,name=interface_of12v,json=interfaceOf12v,proto3" json:"interface_of12v"`
  3111. MobileInternet string `protobuf:"bytes,14,opt,name=mobile_internet,json=mobileInternet,proto3" json:"mobile_internet"`
  3112. NavigationTrafficInformationDisplay string `protobuf:"bytes,15,opt,name=navigation_traffic_information_display,json=navigationTrafficInformationDisplay,proto3" json:"navigation_traffic_information_display"`
  3113. NumberOfInterfaces string `protobuf:"bytes,16,opt,name=number_of_interfaces,json=numberOfInterfaces,proto3" json:"number_of_interfaces"`
  3114. Ota string `protobuf:"bytes,17,opt,name=ota,proto3" json:"ota"`
  3115. PowerOf220V string `protobuf:"bytes,18,opt,name=power_of220v,json=powerOf220v,proto3" json:"power_of220v"`
  3116. RearControlMultimedia string `protobuf:"bytes,19,opt,name=rear_control_multimedia,json=rearControlMultimedia,proto3" json:"rear_control_multimedia"`
  3117. RoadRescueCall string `protobuf:"bytes,20,opt,name=road_rescue_call,json=roadRescueCall,proto3" json:"road_rescue_call"`
  3118. SpeakerBrand string `protobuf:"bytes,21,opt,name=speaker_brand,json=speakerBrand,proto3" json:"speaker_brand"`
  3119. SpeakerNumber string `protobuf:"bytes,22,opt,name=speaker_number,json=speakerNumber,proto3" json:"speaker_number"`
  3120. VoiceControl string `protobuf:"bytes,23,opt,name=voice_control,json=voiceControl,proto3" json:"voice_control"`
  3121. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3122. XXX_unrecognized []byte `json:"-"`
  3123. XXX_sizecache int32 `json:"-"`
  3124. }
  3125. func (m *StyleInfoReply_Media) Reset() { *m = StyleInfoReply_Media{} }
  3126. func (m *StyleInfoReply_Media) String() string { return proto.CompactTextString(m) }
  3127. func (*StyleInfoReply_Media) ProtoMessage() {}
  3128. func (*StyleInfoReply_Media) Descriptor() ([]byte, []int) {
  3129. return fileDescriptor_b614324037d99e80, []int{21, 12}
  3130. }
  3131. func (m *StyleInfoReply_Media) XXX_Unmarshal(b []byte) error {
  3132. return xxx_messageInfo_StyleInfoReply_Media.Unmarshal(m, b)
  3133. }
  3134. func (m *StyleInfoReply_Media) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3135. return xxx_messageInfo_StyleInfoReply_Media.Marshal(b, m, deterministic)
  3136. }
  3137. func (m *StyleInfoReply_Media) XXX_Merge(src proto.Message) {
  3138. xxx_messageInfo_StyleInfoReply_Media.Merge(m, src)
  3139. }
  3140. func (m *StyleInfoReply_Media) XXX_Size() int {
  3141. return xxx_messageInfo_StyleInfoReply_Media.Size(m)
  3142. }
  3143. func (m *StyleInfoReply_Media) XXX_DiscardUnknown() {
  3144. xxx_messageInfo_StyleInfoReply_Media.DiscardUnknown(m)
  3145. }
  3146. var xxx_messageInfo_StyleInfoReply_Media proto.InternalMessageInfo
  3147. func (m *StyleInfoReply_Media) GetBackLcd() string {
  3148. if m != nil {
  3149. return m.BackLcd
  3150. }
  3151. return ""
  3152. }
  3153. func (m *StyleInfoReply_Media) GetCarInternet() string {
  3154. if m != nil {
  3155. return m.CarInternet
  3156. }
  3157. return ""
  3158. }
  3159. func (m *StyleInfoReply_Media) GetCarPhone() string {
  3160. if m != nil {
  3161. return m.CarPhone
  3162. }
  3163. return ""
  3164. }
  3165. func (m *StyleInfoReply_Media) GetCarTv() string {
  3166. if m != nil {
  3167. return m.CarTv
  3168. }
  3169. return ""
  3170. }
  3171. func (m *StyleInfoReply_Media) GetCdDvd() string {
  3172. if m != nil {
  3173. return m.CdDvd
  3174. }
  3175. return ""
  3176. }
  3177. func (m *StyleInfoReply_Media) GetCenterConsoleLargeScreenSize() string {
  3178. if m != nil {
  3179. return m.CenterConsoleLargeScreenSize
  3180. }
  3181. return ""
  3182. }
  3183. func (m *StyleInfoReply_Media) GetCentralColourScreen() string {
  3184. if m != nil {
  3185. return m.CentralColourScreen
  3186. }
  3187. return ""
  3188. }
  3189. func (m *StyleInfoReply_Media) GetCentralLcdSplitScreen() string {
  3190. if m != nil {
  3191. return m.CentralLcdSplitScreen
  3192. }
  3193. return ""
  3194. }
  3195. func (m *StyleInfoReply_Media) GetChargingInterface() string {
  3196. if m != nil {
  3197. return m.ChargingInterface
  3198. }
  3199. return ""
  3200. }
  3201. func (m *StyleInfoReply_Media) GetFaceRecognition() string {
  3202. if m != nil {
  3203. return m.FaceRecognition
  3204. }
  3205. return ""
  3206. }
  3207. func (m *StyleInfoReply_Media) GetGestureControl() string {
  3208. if m != nil {
  3209. return m.GestureControl
  3210. }
  3211. return ""
  3212. }
  3213. func (m *StyleInfoReply_Media) GetGps() string {
  3214. if m != nil {
  3215. return m.Gps
  3216. }
  3217. return ""
  3218. }
  3219. func (m *StyleInfoReply_Media) GetInterfaceOf12V() string {
  3220. if m != nil {
  3221. return m.InterfaceOf12V
  3222. }
  3223. return ""
  3224. }
  3225. func (m *StyleInfoReply_Media) GetMobileInternet() string {
  3226. if m != nil {
  3227. return m.MobileInternet
  3228. }
  3229. return ""
  3230. }
  3231. func (m *StyleInfoReply_Media) GetNavigationTrafficInformationDisplay() string {
  3232. if m != nil {
  3233. return m.NavigationTrafficInformationDisplay
  3234. }
  3235. return ""
  3236. }
  3237. func (m *StyleInfoReply_Media) GetNumberOfInterfaces() string {
  3238. if m != nil {
  3239. return m.NumberOfInterfaces
  3240. }
  3241. return ""
  3242. }
  3243. func (m *StyleInfoReply_Media) GetOta() string {
  3244. if m != nil {
  3245. return m.Ota
  3246. }
  3247. return ""
  3248. }
  3249. func (m *StyleInfoReply_Media) GetPowerOf220V() string {
  3250. if m != nil {
  3251. return m.PowerOf220V
  3252. }
  3253. return ""
  3254. }
  3255. func (m *StyleInfoReply_Media) GetRearControlMultimedia() string {
  3256. if m != nil {
  3257. return m.RearControlMultimedia
  3258. }
  3259. return ""
  3260. }
  3261. func (m *StyleInfoReply_Media) GetRoadRescueCall() string {
  3262. if m != nil {
  3263. return m.RoadRescueCall
  3264. }
  3265. return ""
  3266. }
  3267. func (m *StyleInfoReply_Media) GetSpeakerBrand() string {
  3268. if m != nil {
  3269. return m.SpeakerBrand
  3270. }
  3271. return ""
  3272. }
  3273. func (m *StyleInfoReply_Media) GetSpeakerNumber() string {
  3274. if m != nil {
  3275. return m.SpeakerNumber
  3276. }
  3277. return ""
  3278. }
  3279. func (m *StyleInfoReply_Media) GetVoiceControl() string {
  3280. if m != nil {
  3281. return m.VoiceControl
  3282. }
  3283. return ""
  3284. }
  3285. type StyleInfoReply_Optional struct {
  3286. BodyColour string `protobuf:"bytes,1,opt,name=body_colour,json=bodyColour,proto3" json:"body_colour"`
  3287. InteriorColor string `protobuf:"bytes,2,opt,name=interior_color,json=interiorColor,proto3" json:"interior_color"`
  3288. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3289. XXX_unrecognized []byte `json:"-"`
  3290. XXX_sizecache int32 `json:"-"`
  3291. }
  3292. func (m *StyleInfoReply_Optional) Reset() { *m = StyleInfoReply_Optional{} }
  3293. func (m *StyleInfoReply_Optional) String() string { return proto.CompactTextString(m) }
  3294. func (*StyleInfoReply_Optional) ProtoMessage() {}
  3295. func (*StyleInfoReply_Optional) Descriptor() ([]byte, []int) {
  3296. return fileDescriptor_b614324037d99e80, []int{21, 13}
  3297. }
  3298. func (m *StyleInfoReply_Optional) XXX_Unmarshal(b []byte) error {
  3299. return xxx_messageInfo_StyleInfoReply_Optional.Unmarshal(m, b)
  3300. }
  3301. func (m *StyleInfoReply_Optional) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3302. return xxx_messageInfo_StyleInfoReply_Optional.Marshal(b, m, deterministic)
  3303. }
  3304. func (m *StyleInfoReply_Optional) XXX_Merge(src proto.Message) {
  3305. xxx_messageInfo_StyleInfoReply_Optional.Merge(m, src)
  3306. }
  3307. func (m *StyleInfoReply_Optional) XXX_Size() int {
  3308. return xxx_messageInfo_StyleInfoReply_Optional.Size(m)
  3309. }
  3310. func (m *StyleInfoReply_Optional) XXX_DiscardUnknown() {
  3311. xxx_messageInfo_StyleInfoReply_Optional.DiscardUnknown(m)
  3312. }
  3313. var xxx_messageInfo_StyleInfoReply_Optional proto.InternalMessageInfo
  3314. func (m *StyleInfoReply_Optional) GetBodyColour() string {
  3315. if m != nil {
  3316. return m.BodyColour
  3317. }
  3318. return ""
  3319. }
  3320. func (m *StyleInfoReply_Optional) GetInteriorColor() string {
  3321. if m != nil {
  3322. return m.InteriorColor
  3323. }
  3324. return ""
  3325. }
  3326. type StyleInfoReply_Rearview struct {
  3327. AntiPinchHand string `protobuf:"bytes,1,opt,name=anti_pinch_hand,json=antiPinchHand,proto3" json:"anti_pinch_hand"`
  3328. BackElectricWindow string `protobuf:"bytes,2,opt,name=back_electric_window,json=backElectricWindow,proto3" json:"back_electric_window"`
  3329. BackSidePrivacy string `protobuf:"bytes,3,opt,name=back_side_privacy,json=backSidePrivacy,proto3" json:"back_side_privacy"`
  3330. BackSideSunshade string `protobuf:"bytes,4,opt,name=back_side_sunshade,json=backSideSunshade,proto3" json:"back_side_sunshade"`
  3331. BackSunshade string `protobuf:"bytes,5,opt,name=back_sunshade,json=backSunshade,proto3" json:"back_sunshade"`
  3332. BackWiper string `protobuf:"bytes,6,opt,name=back_wiper,json=backWiper,proto3" json:"back_wiper"`
  3333. Cosmetic string `protobuf:"bytes,7,opt,name=cosmetic,proto3" json:"cosmetic"`
  3334. ExteriorRearviewMirrorFunction string `protobuf:"bytes,8,opt,name=exterior_rearview_mirror_function,json=exteriorRearviewMirrorFunction,proto3" json:"exterior_rearview_mirror_function"`
  3335. FrontElectricWindow string `protobuf:"bytes,9,opt,name=front_electric_window,json=frontElectricWindow,proto3" json:"front_electric_window"`
  3336. FrontWiper string `protobuf:"bytes,10,opt,name=front_wiper,json=frontWiper,proto3" json:"front_wiper"`
  3337. HeatableSprayNozzle string `protobuf:"bytes,11,opt,name=heatable_spray_nozzle,json=heatableSprayNozzle,proto3" json:"heatable_spray_nozzle"`
  3338. InteriorRearviewMirrorFunction string `protobuf:"bytes,12,opt,name=interior_rearview_mirror_function,json=interiorRearviewMirrorFunction,proto3" json:"interior_rearview_mirror_function"`
  3339. MultilayerSoundInsulationGlass string `protobuf:"bytes,13,opt,name=multilayer_sound_insulation_glass,json=multilayerSoundInsulationGlass,proto3" json:"multilayer_sound_insulation_glass"`
  3340. WindowOneKey string `protobuf:"bytes,14,opt,name=window_one_key,json=windowOneKey,proto3" json:"window_one_key"`
  3341. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3342. XXX_unrecognized []byte `json:"-"`
  3343. XXX_sizecache int32 `json:"-"`
  3344. }
  3345. func (m *StyleInfoReply_Rearview) Reset() { *m = StyleInfoReply_Rearview{} }
  3346. func (m *StyleInfoReply_Rearview) String() string { return proto.CompactTextString(m) }
  3347. func (*StyleInfoReply_Rearview) ProtoMessage() {}
  3348. func (*StyleInfoReply_Rearview) Descriptor() ([]byte, []int) {
  3349. return fileDescriptor_b614324037d99e80, []int{21, 14}
  3350. }
  3351. func (m *StyleInfoReply_Rearview) XXX_Unmarshal(b []byte) error {
  3352. return xxx_messageInfo_StyleInfoReply_Rearview.Unmarshal(m, b)
  3353. }
  3354. func (m *StyleInfoReply_Rearview) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3355. return xxx_messageInfo_StyleInfoReply_Rearview.Marshal(b, m, deterministic)
  3356. }
  3357. func (m *StyleInfoReply_Rearview) XXX_Merge(src proto.Message) {
  3358. xxx_messageInfo_StyleInfoReply_Rearview.Merge(m, src)
  3359. }
  3360. func (m *StyleInfoReply_Rearview) XXX_Size() int {
  3361. return xxx_messageInfo_StyleInfoReply_Rearview.Size(m)
  3362. }
  3363. func (m *StyleInfoReply_Rearview) XXX_DiscardUnknown() {
  3364. xxx_messageInfo_StyleInfoReply_Rearview.DiscardUnknown(m)
  3365. }
  3366. var xxx_messageInfo_StyleInfoReply_Rearview proto.InternalMessageInfo
  3367. func (m *StyleInfoReply_Rearview) GetAntiPinchHand() string {
  3368. if m != nil {
  3369. return m.AntiPinchHand
  3370. }
  3371. return ""
  3372. }
  3373. func (m *StyleInfoReply_Rearview) GetBackElectricWindow() string {
  3374. if m != nil {
  3375. return m.BackElectricWindow
  3376. }
  3377. return ""
  3378. }
  3379. func (m *StyleInfoReply_Rearview) GetBackSidePrivacy() string {
  3380. if m != nil {
  3381. return m.BackSidePrivacy
  3382. }
  3383. return ""
  3384. }
  3385. func (m *StyleInfoReply_Rearview) GetBackSideSunshade() string {
  3386. if m != nil {
  3387. return m.BackSideSunshade
  3388. }
  3389. return ""
  3390. }
  3391. func (m *StyleInfoReply_Rearview) GetBackSunshade() string {
  3392. if m != nil {
  3393. return m.BackSunshade
  3394. }
  3395. return ""
  3396. }
  3397. func (m *StyleInfoReply_Rearview) GetBackWiper() string {
  3398. if m != nil {
  3399. return m.BackWiper
  3400. }
  3401. return ""
  3402. }
  3403. func (m *StyleInfoReply_Rearview) GetCosmetic() string {
  3404. if m != nil {
  3405. return m.Cosmetic
  3406. }
  3407. return ""
  3408. }
  3409. func (m *StyleInfoReply_Rearview) GetExteriorRearviewMirrorFunction() string {
  3410. if m != nil {
  3411. return m.ExteriorRearviewMirrorFunction
  3412. }
  3413. return ""
  3414. }
  3415. func (m *StyleInfoReply_Rearview) GetFrontElectricWindow() string {
  3416. if m != nil {
  3417. return m.FrontElectricWindow
  3418. }
  3419. return ""
  3420. }
  3421. func (m *StyleInfoReply_Rearview) GetFrontWiper() string {
  3422. if m != nil {
  3423. return m.FrontWiper
  3424. }
  3425. return ""
  3426. }
  3427. func (m *StyleInfoReply_Rearview) GetHeatableSprayNozzle() string {
  3428. if m != nil {
  3429. return m.HeatableSprayNozzle
  3430. }
  3431. return ""
  3432. }
  3433. func (m *StyleInfoReply_Rearview) GetInteriorRearviewMirrorFunction() string {
  3434. if m != nil {
  3435. return m.InteriorRearviewMirrorFunction
  3436. }
  3437. return ""
  3438. }
  3439. func (m *StyleInfoReply_Rearview) GetMultilayerSoundInsulationGlass() string {
  3440. if m != nil {
  3441. return m.MultilayerSoundInsulationGlass
  3442. }
  3443. return ""
  3444. }
  3445. func (m *StyleInfoReply_Rearview) GetWindowOneKey() string {
  3446. if m != nil {
  3447. return m.WindowOneKey
  3448. }
  3449. return ""
  3450. }
  3451. type StyleInfoReply_Safety struct {
  3452. Abs string `protobuf:"bytes,1,opt,name=abs,proto3" json:"abs"`
  3453. ActiveBrake string `protobuf:"bytes,2,opt,name=active_brake,json=activeBrake,proto3" json:"active_brake"`
  3454. AsrTcsTrc string `protobuf:"bytes,3,opt,name=asr_tcs_trc,json=asrTcsTrc,proto3" json:"asr_tcs_trc"`
  3455. AuxiliarySeatAirbag string `protobuf:"bytes,4,opt,name=auxiliary_seat_airbag,json=auxiliarySeatAirbag,proto3" json:"auxiliary_seat_airbag"`
  3456. BackBeltAirbag string `protobuf:"bytes,5,opt,name=back_belt_airbag,json=backBeltAirbag,proto3" json:"back_belt_airbag"`
  3457. BackHeadAirbag string `protobuf:"bytes,6,opt,name=back_head_airbag,json=backHeadAirbag,proto3" json:"back_head_airbag"`
  3458. BackSideAirbag string `protobuf:"bytes,7,opt,name=back_side_airbag,json=backSideAirbag,proto3" json:"back_side_airbag"`
  3459. EbaBasBa string `protobuf:"bytes,8,opt,name=eba_bas_ba,json=ebaBasBa,proto3" json:"eba_bas_ba"`
  3460. EbdCbc string `protobuf:"bytes,9,opt,name=ebd_cbc,json=ebdCbc,proto3" json:"ebd_cbc"`
  3461. Esp string `protobuf:"bytes,10,opt,name=esp,proto3" json:"esp"`
  3462. FatigueDrivingWarning string `protobuf:"bytes,11,opt,name=fatigue_driving_warning,json=fatigueDrivingWarning,proto3" json:"fatigue_driving_warning"`
  3463. FontHeadAirbag string `protobuf:"bytes,12,opt,name=font_head_airbag,json=fontHeadAirbag,proto3" json:"font_head_airbag"`
  3464. FrontMiddleAirbag string `protobuf:"bytes,13,opt,name=front_middle_airbag,json=frontMiddleAirbag,proto3" json:"front_middle_airbag"`
  3465. FrontSideAirbag string `protobuf:"bytes,14,opt,name=front_side_airbag,json=frontSideAirbag,proto3" json:"front_side_airbag"`
  3466. IsoFix string `protobuf:"bytes,15,opt,name=iso_fix,json=isoFix,proto3" json:"iso_fix"`
  3467. KneeAirbag string `protobuf:"bytes,16,opt,name=knee_airbag,json=kneeAirbag,proto3" json:"knee_airbag"`
  3468. LaneDepartureWarningSystem string `protobuf:"bytes,17,opt,name=lane_departure_warning_system,json=laneDepartureWarningSystem,proto3" json:"lane_departure_warning_system"`
  3469. LaneKeeping string `protobuf:"bytes,18,opt,name=lane_keeping,json=laneKeeping,proto3" json:"lane_keeping"`
  3470. MainSeatAirbag string `protobuf:"bytes,19,opt,name=main_seat_airbag,json=mainSeatAirbag,proto3" json:"main_seat_airbag"`
  3471. NightVision string `protobuf:"bytes,20,opt,name=night_vision,json=nightVision,proto3" json:"night_vision"`
  3472. ParallelAuxiliary string `protobuf:"bytes,21,opt,name=parallel_auxiliary,json=parallelAuxiliary,proto3" json:"parallel_auxiliary"`
  3473. PassengerSeatCushionAirbag string `protobuf:"bytes,22,opt,name=passenger_seat_cushion_airbag,json=passengerSeatCushionAirbag,proto3" json:"passenger_seat_cushion_airbag"`
  3474. PassivePedestrianProtection string `protobuf:"bytes,23,opt,name=passive_pedestrian_protection,json=passivePedestrianProtection,proto3" json:"passive_pedestrian_protection"`
  3475. RearCentralAirbag string `protobuf:"bytes,24,opt,name=rear_central_airbag,json=rearCentralAirbag,proto3" json:"rear_central_airbag"`
  3476. RearSeatAntiSlideAirbag string `protobuf:"bytes,25,opt,name=rear_seat_anti_slide_airbag,json=rearSeatAntiSlideAirbag,proto3" json:"rear_seat_anti_slide_airbag"`
  3477. RoadTrafficSignRecognition string `protobuf:"bytes,26,opt,name=road_traffic_sign_recognition,json=roadTrafficSignRecognition,proto3" json:"road_traffic_sign_recognition"`
  3478. RunFlatTire string `protobuf:"bytes,27,opt,name=run_flat_tire,json=runFlatTire,proto3" json:"run_flat_tire"`
  3479. SeatBeltWarning string `protobuf:"bytes,28,opt,name=seat_belt_warning,json=seatBeltWarning,proto3" json:"seat_belt_warning"`
  3480. TirePresureMonitor string `protobuf:"bytes,29,opt,name=tire_presure_monitor,json=tirePresureMonitor,proto3" json:"tire_presure_monitor"`
  3481. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3482. XXX_unrecognized []byte `json:"-"`
  3483. XXX_sizecache int32 `json:"-"`
  3484. }
  3485. func (m *StyleInfoReply_Safety) Reset() { *m = StyleInfoReply_Safety{} }
  3486. func (m *StyleInfoReply_Safety) String() string { return proto.CompactTextString(m) }
  3487. func (*StyleInfoReply_Safety) ProtoMessage() {}
  3488. func (*StyleInfoReply_Safety) Descriptor() ([]byte, []int) {
  3489. return fileDescriptor_b614324037d99e80, []int{21, 15}
  3490. }
  3491. func (m *StyleInfoReply_Safety) XXX_Unmarshal(b []byte) error {
  3492. return xxx_messageInfo_StyleInfoReply_Safety.Unmarshal(m, b)
  3493. }
  3494. func (m *StyleInfoReply_Safety) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3495. return xxx_messageInfo_StyleInfoReply_Safety.Marshal(b, m, deterministic)
  3496. }
  3497. func (m *StyleInfoReply_Safety) XXX_Merge(src proto.Message) {
  3498. xxx_messageInfo_StyleInfoReply_Safety.Merge(m, src)
  3499. }
  3500. func (m *StyleInfoReply_Safety) XXX_Size() int {
  3501. return xxx_messageInfo_StyleInfoReply_Safety.Size(m)
  3502. }
  3503. func (m *StyleInfoReply_Safety) XXX_DiscardUnknown() {
  3504. xxx_messageInfo_StyleInfoReply_Safety.DiscardUnknown(m)
  3505. }
  3506. var xxx_messageInfo_StyleInfoReply_Safety proto.InternalMessageInfo
  3507. func (m *StyleInfoReply_Safety) GetAbs() string {
  3508. if m != nil {
  3509. return m.Abs
  3510. }
  3511. return ""
  3512. }
  3513. func (m *StyleInfoReply_Safety) GetActiveBrake() string {
  3514. if m != nil {
  3515. return m.ActiveBrake
  3516. }
  3517. return ""
  3518. }
  3519. func (m *StyleInfoReply_Safety) GetAsrTcsTrc() string {
  3520. if m != nil {
  3521. return m.AsrTcsTrc
  3522. }
  3523. return ""
  3524. }
  3525. func (m *StyleInfoReply_Safety) GetAuxiliarySeatAirbag() string {
  3526. if m != nil {
  3527. return m.AuxiliarySeatAirbag
  3528. }
  3529. return ""
  3530. }
  3531. func (m *StyleInfoReply_Safety) GetBackBeltAirbag() string {
  3532. if m != nil {
  3533. return m.BackBeltAirbag
  3534. }
  3535. return ""
  3536. }
  3537. func (m *StyleInfoReply_Safety) GetBackHeadAirbag() string {
  3538. if m != nil {
  3539. return m.BackHeadAirbag
  3540. }
  3541. return ""
  3542. }
  3543. func (m *StyleInfoReply_Safety) GetBackSideAirbag() string {
  3544. if m != nil {
  3545. return m.BackSideAirbag
  3546. }
  3547. return ""
  3548. }
  3549. func (m *StyleInfoReply_Safety) GetEbaBasBa() string {
  3550. if m != nil {
  3551. return m.EbaBasBa
  3552. }
  3553. return ""
  3554. }
  3555. func (m *StyleInfoReply_Safety) GetEbdCbc() string {
  3556. if m != nil {
  3557. return m.EbdCbc
  3558. }
  3559. return ""
  3560. }
  3561. func (m *StyleInfoReply_Safety) GetEsp() string {
  3562. if m != nil {
  3563. return m.Esp
  3564. }
  3565. return ""
  3566. }
  3567. func (m *StyleInfoReply_Safety) GetFatigueDrivingWarning() string {
  3568. if m != nil {
  3569. return m.FatigueDrivingWarning
  3570. }
  3571. return ""
  3572. }
  3573. func (m *StyleInfoReply_Safety) GetFontHeadAirbag() string {
  3574. if m != nil {
  3575. return m.FontHeadAirbag
  3576. }
  3577. return ""
  3578. }
  3579. func (m *StyleInfoReply_Safety) GetFrontMiddleAirbag() string {
  3580. if m != nil {
  3581. return m.FrontMiddleAirbag
  3582. }
  3583. return ""
  3584. }
  3585. func (m *StyleInfoReply_Safety) GetFrontSideAirbag() string {
  3586. if m != nil {
  3587. return m.FrontSideAirbag
  3588. }
  3589. return ""
  3590. }
  3591. func (m *StyleInfoReply_Safety) GetIsoFix() string {
  3592. if m != nil {
  3593. return m.IsoFix
  3594. }
  3595. return ""
  3596. }
  3597. func (m *StyleInfoReply_Safety) GetKneeAirbag() string {
  3598. if m != nil {
  3599. return m.KneeAirbag
  3600. }
  3601. return ""
  3602. }
  3603. func (m *StyleInfoReply_Safety) GetLaneDepartureWarningSystem() string {
  3604. if m != nil {
  3605. return m.LaneDepartureWarningSystem
  3606. }
  3607. return ""
  3608. }
  3609. func (m *StyleInfoReply_Safety) GetLaneKeeping() string {
  3610. if m != nil {
  3611. return m.LaneKeeping
  3612. }
  3613. return ""
  3614. }
  3615. func (m *StyleInfoReply_Safety) GetMainSeatAirbag() string {
  3616. if m != nil {
  3617. return m.MainSeatAirbag
  3618. }
  3619. return ""
  3620. }
  3621. func (m *StyleInfoReply_Safety) GetNightVision() string {
  3622. if m != nil {
  3623. return m.NightVision
  3624. }
  3625. return ""
  3626. }
  3627. func (m *StyleInfoReply_Safety) GetParallelAuxiliary() string {
  3628. if m != nil {
  3629. return m.ParallelAuxiliary
  3630. }
  3631. return ""
  3632. }
  3633. func (m *StyleInfoReply_Safety) GetPassengerSeatCushionAirbag() string {
  3634. if m != nil {
  3635. return m.PassengerSeatCushionAirbag
  3636. }
  3637. return ""
  3638. }
  3639. func (m *StyleInfoReply_Safety) GetPassivePedestrianProtection() string {
  3640. if m != nil {
  3641. return m.PassivePedestrianProtection
  3642. }
  3643. return ""
  3644. }
  3645. func (m *StyleInfoReply_Safety) GetRearCentralAirbag() string {
  3646. if m != nil {
  3647. return m.RearCentralAirbag
  3648. }
  3649. return ""
  3650. }
  3651. func (m *StyleInfoReply_Safety) GetRearSeatAntiSlideAirbag() string {
  3652. if m != nil {
  3653. return m.RearSeatAntiSlideAirbag
  3654. }
  3655. return ""
  3656. }
  3657. func (m *StyleInfoReply_Safety) GetRoadTrafficSignRecognition() string {
  3658. if m != nil {
  3659. return m.RoadTrafficSignRecognition
  3660. }
  3661. return ""
  3662. }
  3663. func (m *StyleInfoReply_Safety) GetRunFlatTire() string {
  3664. if m != nil {
  3665. return m.RunFlatTire
  3666. }
  3667. return ""
  3668. }
  3669. func (m *StyleInfoReply_Safety) GetSeatBeltWarning() string {
  3670. if m != nil {
  3671. return m.SeatBeltWarning
  3672. }
  3673. return ""
  3674. }
  3675. func (m *StyleInfoReply_Safety) GetTirePresureMonitor() string {
  3676. if m != nil {
  3677. return m.TirePresureMonitor
  3678. }
  3679. return ""
  3680. }
  3681. type StyleInfoReply_Seat struct {
  3682. AuxiliaryAdjustableButton string `protobuf:"bytes,1,opt,name=auxiliary_adjustable_button,json=auxiliaryAdjustableButton,proto3" json:"auxiliary_adjustable_button"`
  3683. AuxiliaryElectricAdust string `protobuf:"bytes,2,opt,name=auxiliary_electric_adust,json=auxiliaryElectricAdust,proto3" json:"auxiliary_electric_adust"`
  3684. AuxiliarySeatAdjustmentMode string `protobuf:"bytes,3,opt,name=auxiliary_seat_adjustment_mode,json=auxiliarySeatAdjustmentMode,proto3" json:"auxiliary_seat_adjustment_mode"`
  3685. BackCupHolder string `protobuf:"bytes,4,opt,name=back_cup_holder,json=backCupHolder,proto3" json:"back_cup_holder"`
  3686. BackDownType string `protobuf:"bytes,5,opt,name=back_down_type,json=backDownType,proto3" json:"back_down_type"`
  3687. BackFoldTable string `protobuf:"bytes,6,opt,name=back_fold_table,json=backFoldTable,proto3" json:"back_fold_table"`
  3688. BackHandrail string `protobuf:"bytes,7,opt,name=back_handrail,json=backHandrail,proto3" json:"back_handrail"`
  3689. ElectricSeatRemeber string `protobuf:"bytes,8,opt,name=electric_seat_remeber,json=electricSeatRemeber,proto3" json:"electric_seat_remeber"`
  3690. FrontHandrail string `protobuf:"bytes,9,opt,name=front_handrail,json=frontHandrail,proto3" json:"front_handrail"`
  3691. FrontSeatFunction string `protobuf:"bytes,10,opt,name=front_seat_function,json=frontSeatFunction,proto3" json:"front_seat_function"`
  3692. HeatingCoolingCupHolder string `protobuf:"bytes,11,opt,name=heating_cooling_cup_holder,json=heatingCoolingCupHolder,proto3" json:"heating_cooling_cup_holder"`
  3693. MainElectricAdust string `protobuf:"bytes,12,opt,name=main_electric_adust,json=mainElectricAdust,proto3" json:"main_electric_adust"`
  3694. MainSeatAdjustmentMode string `protobuf:"bytes,13,opt,name=main_seat_adjustment_mode,json=mainSeatAdjustmentMode,proto3" json:"main_seat_adjustment_mode"`
  3695. RearSeatElectricAdjustment string `protobuf:"bytes,14,opt,name=rear_seat_electric_adjustment,json=rearSeatElectricAdjustment,proto3" json:"rear_seat_electric_adjustment"`
  3696. RearSeatFunction string `protobuf:"bytes,15,opt,name=rear_seat_function,json=rearSeatFunction,proto3" json:"rear_seat_function"`
  3697. RearSeatPowerDown string `protobuf:"bytes,16,opt,name=rear_seat_power_down,json=rearSeatPowerDown,proto3" json:"rear_seat_power_down"`
  3698. SeatLayoutForm string `protobuf:"bytes,17,opt,name=seat_layout_form,json=seatLayoutForm,proto3" json:"seat_layout_form"`
  3699. SeatMaterial string `protobuf:"bytes,18,opt,name=seat_material,json=seatMaterial,proto3" json:"seat_material"`
  3700. SecondIndependent string `protobuf:"bytes,19,opt,name=second_independent,json=secondIndependent,proto3" json:"second_independent"`
  3701. SecondRowSeatAdjustment string `protobuf:"bytes,20,opt,name=second_row_seat_adjustment,json=secondRowSeatAdjustment,proto3" json:"second_row_seat_adjustment"`
  3702. SportSeat string `protobuf:"bytes,21,opt,name=sport_seat,json=sportSeat,proto3" json:"sport_seat"`
  3703. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3704. XXX_unrecognized []byte `json:"-"`
  3705. XXX_sizecache int32 `json:"-"`
  3706. }
  3707. func (m *StyleInfoReply_Seat) Reset() { *m = StyleInfoReply_Seat{} }
  3708. func (m *StyleInfoReply_Seat) String() string { return proto.CompactTextString(m) }
  3709. func (*StyleInfoReply_Seat) ProtoMessage() {}
  3710. func (*StyleInfoReply_Seat) Descriptor() ([]byte, []int) {
  3711. return fileDescriptor_b614324037d99e80, []int{21, 16}
  3712. }
  3713. func (m *StyleInfoReply_Seat) XXX_Unmarshal(b []byte) error {
  3714. return xxx_messageInfo_StyleInfoReply_Seat.Unmarshal(m, b)
  3715. }
  3716. func (m *StyleInfoReply_Seat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3717. return xxx_messageInfo_StyleInfoReply_Seat.Marshal(b, m, deterministic)
  3718. }
  3719. func (m *StyleInfoReply_Seat) XXX_Merge(src proto.Message) {
  3720. xxx_messageInfo_StyleInfoReply_Seat.Merge(m, src)
  3721. }
  3722. func (m *StyleInfoReply_Seat) XXX_Size() int {
  3723. return xxx_messageInfo_StyleInfoReply_Seat.Size(m)
  3724. }
  3725. func (m *StyleInfoReply_Seat) XXX_DiscardUnknown() {
  3726. xxx_messageInfo_StyleInfoReply_Seat.DiscardUnknown(m)
  3727. }
  3728. var xxx_messageInfo_StyleInfoReply_Seat proto.InternalMessageInfo
  3729. func (m *StyleInfoReply_Seat) GetAuxiliaryAdjustableButton() string {
  3730. if m != nil {
  3731. return m.AuxiliaryAdjustableButton
  3732. }
  3733. return ""
  3734. }
  3735. func (m *StyleInfoReply_Seat) GetAuxiliaryElectricAdust() string {
  3736. if m != nil {
  3737. return m.AuxiliaryElectricAdust
  3738. }
  3739. return ""
  3740. }
  3741. func (m *StyleInfoReply_Seat) GetAuxiliarySeatAdjustmentMode() string {
  3742. if m != nil {
  3743. return m.AuxiliarySeatAdjustmentMode
  3744. }
  3745. return ""
  3746. }
  3747. func (m *StyleInfoReply_Seat) GetBackCupHolder() string {
  3748. if m != nil {
  3749. return m.BackCupHolder
  3750. }
  3751. return ""
  3752. }
  3753. func (m *StyleInfoReply_Seat) GetBackDownType() string {
  3754. if m != nil {
  3755. return m.BackDownType
  3756. }
  3757. return ""
  3758. }
  3759. func (m *StyleInfoReply_Seat) GetBackFoldTable() string {
  3760. if m != nil {
  3761. return m.BackFoldTable
  3762. }
  3763. return ""
  3764. }
  3765. func (m *StyleInfoReply_Seat) GetBackHandrail() string {
  3766. if m != nil {
  3767. return m.BackHandrail
  3768. }
  3769. return ""
  3770. }
  3771. func (m *StyleInfoReply_Seat) GetElectricSeatRemeber() string {
  3772. if m != nil {
  3773. return m.ElectricSeatRemeber
  3774. }
  3775. return ""
  3776. }
  3777. func (m *StyleInfoReply_Seat) GetFrontHandrail() string {
  3778. if m != nil {
  3779. return m.FrontHandrail
  3780. }
  3781. return ""
  3782. }
  3783. func (m *StyleInfoReply_Seat) GetFrontSeatFunction() string {
  3784. if m != nil {
  3785. return m.FrontSeatFunction
  3786. }
  3787. return ""
  3788. }
  3789. func (m *StyleInfoReply_Seat) GetHeatingCoolingCupHolder() string {
  3790. if m != nil {
  3791. return m.HeatingCoolingCupHolder
  3792. }
  3793. return ""
  3794. }
  3795. func (m *StyleInfoReply_Seat) GetMainElectricAdust() string {
  3796. if m != nil {
  3797. return m.MainElectricAdust
  3798. }
  3799. return ""
  3800. }
  3801. func (m *StyleInfoReply_Seat) GetMainSeatAdjustmentMode() string {
  3802. if m != nil {
  3803. return m.MainSeatAdjustmentMode
  3804. }
  3805. return ""
  3806. }
  3807. func (m *StyleInfoReply_Seat) GetRearSeatElectricAdjustment() string {
  3808. if m != nil {
  3809. return m.RearSeatElectricAdjustment
  3810. }
  3811. return ""
  3812. }
  3813. func (m *StyleInfoReply_Seat) GetRearSeatFunction() string {
  3814. if m != nil {
  3815. return m.RearSeatFunction
  3816. }
  3817. return ""
  3818. }
  3819. func (m *StyleInfoReply_Seat) GetRearSeatPowerDown() string {
  3820. if m != nil {
  3821. return m.RearSeatPowerDown
  3822. }
  3823. return ""
  3824. }
  3825. func (m *StyleInfoReply_Seat) GetSeatLayoutForm() string {
  3826. if m != nil {
  3827. return m.SeatLayoutForm
  3828. }
  3829. return ""
  3830. }
  3831. func (m *StyleInfoReply_Seat) GetSeatMaterial() string {
  3832. if m != nil {
  3833. return m.SeatMaterial
  3834. }
  3835. return ""
  3836. }
  3837. func (m *StyleInfoReply_Seat) GetSecondIndependent() string {
  3838. if m != nil {
  3839. return m.SecondIndependent
  3840. }
  3841. return ""
  3842. }
  3843. func (m *StyleInfoReply_Seat) GetSecondRowSeatAdjustment() string {
  3844. if m != nil {
  3845. return m.SecondRowSeatAdjustment
  3846. }
  3847. return ""
  3848. }
  3849. func (m *StyleInfoReply_Seat) GetSportSeat() string {
  3850. if m != nil {
  3851. return m.SportSeat
  3852. }
  3853. return ""
  3854. }
  3855. type StyleInfoReply_Wheelbrake struct {
  3856. BackBrakeType string `protobuf:"bytes,1,opt,name=back_brake_type,json=backBrakeType,proto3" json:"back_brake_type"`
  3857. BackWheelSpecification string `protobuf:"bytes,2,opt,name=back_wheel_specification,json=backWheelSpecification,proto3" json:"back_wheel_specification"`
  3858. FrontBrakeType string `protobuf:"bytes,3,opt,name=front_brake_type,json=frontBrakeType,proto3" json:"front_brake_type"`
  3859. FrontWheelSpecification string `protobuf:"bytes,4,opt,name=front_wheel_specification,json=frontWheelSpecification,proto3" json:"front_wheel_specification"`
  3860. ParkingBrakeType string `protobuf:"bytes,5,opt,name=parking_brake_type,json=parkingBrakeType,proto3" json:"parking_brake_type"`
  3861. SpareWheelSpecification string `protobuf:"bytes,6,opt,name=spare_wheel_specification,json=spareWheelSpecification,proto3" json:"spare_wheel_specification"`
  3862. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3863. XXX_unrecognized []byte `json:"-"`
  3864. XXX_sizecache int32 `json:"-"`
  3865. }
  3866. func (m *StyleInfoReply_Wheelbrake) Reset() { *m = StyleInfoReply_Wheelbrake{} }
  3867. func (m *StyleInfoReply_Wheelbrake) String() string { return proto.CompactTextString(m) }
  3868. func (*StyleInfoReply_Wheelbrake) ProtoMessage() {}
  3869. func (*StyleInfoReply_Wheelbrake) Descriptor() ([]byte, []int) {
  3870. return fileDescriptor_b614324037d99e80, []int{21, 17}
  3871. }
  3872. func (m *StyleInfoReply_Wheelbrake) XXX_Unmarshal(b []byte) error {
  3873. return xxx_messageInfo_StyleInfoReply_Wheelbrake.Unmarshal(m, b)
  3874. }
  3875. func (m *StyleInfoReply_Wheelbrake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3876. return xxx_messageInfo_StyleInfoReply_Wheelbrake.Marshal(b, m, deterministic)
  3877. }
  3878. func (m *StyleInfoReply_Wheelbrake) XXX_Merge(src proto.Message) {
  3879. xxx_messageInfo_StyleInfoReply_Wheelbrake.Merge(m, src)
  3880. }
  3881. func (m *StyleInfoReply_Wheelbrake) XXX_Size() int {
  3882. return xxx_messageInfo_StyleInfoReply_Wheelbrake.Size(m)
  3883. }
  3884. func (m *StyleInfoReply_Wheelbrake) XXX_DiscardUnknown() {
  3885. xxx_messageInfo_StyleInfoReply_Wheelbrake.DiscardUnknown(m)
  3886. }
  3887. var xxx_messageInfo_StyleInfoReply_Wheelbrake proto.InternalMessageInfo
  3888. func (m *StyleInfoReply_Wheelbrake) GetBackBrakeType() string {
  3889. if m != nil {
  3890. return m.BackBrakeType
  3891. }
  3892. return ""
  3893. }
  3894. func (m *StyleInfoReply_Wheelbrake) GetBackWheelSpecification() string {
  3895. if m != nil {
  3896. return m.BackWheelSpecification
  3897. }
  3898. return ""
  3899. }
  3900. func (m *StyleInfoReply_Wheelbrake) GetFrontBrakeType() string {
  3901. if m != nil {
  3902. return m.FrontBrakeType
  3903. }
  3904. return ""
  3905. }
  3906. func (m *StyleInfoReply_Wheelbrake) GetFrontWheelSpecification() string {
  3907. if m != nil {
  3908. return m.FrontWheelSpecification
  3909. }
  3910. return ""
  3911. }
  3912. func (m *StyleInfoReply_Wheelbrake) GetParkingBrakeType() string {
  3913. if m != nil {
  3914. return m.ParkingBrakeType
  3915. }
  3916. return ""
  3917. }
  3918. func (m *StyleInfoReply_Wheelbrake) GetSpareWheelSpecification() string {
  3919. if m != nil {
  3920. return m.SpareWheelSpecification
  3921. }
  3922. return ""
  3923. }
  3924. type UpdateStyleInfoRequest struct {
  3925. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3926. Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  3927. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3928. XXX_unrecognized []byte `json:"-"`
  3929. XXX_sizecache int32 `json:"-"`
  3930. }
  3931. func (m *UpdateStyleInfoRequest) Reset() { *m = UpdateStyleInfoRequest{} }
  3932. func (m *UpdateStyleInfoRequest) String() string { return proto.CompactTextString(m) }
  3933. func (*UpdateStyleInfoRequest) ProtoMessage() {}
  3934. func (*UpdateStyleInfoRequest) Descriptor() ([]byte, []int) {
  3935. return fileDescriptor_b614324037d99e80, []int{22}
  3936. }
  3937. func (m *UpdateStyleInfoRequest) XXX_Unmarshal(b []byte) error {
  3938. return xxx_messageInfo_UpdateStyleInfoRequest.Unmarshal(m, b)
  3939. }
  3940. func (m *UpdateStyleInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3941. return xxx_messageInfo_UpdateStyleInfoRequest.Marshal(b, m, deterministic)
  3942. }
  3943. func (m *UpdateStyleInfoRequest) XXX_Merge(src proto.Message) {
  3944. xxx_messageInfo_UpdateStyleInfoRequest.Merge(m, src)
  3945. }
  3946. func (m *UpdateStyleInfoRequest) XXX_Size() int {
  3947. return xxx_messageInfo_UpdateStyleInfoRequest.Size(m)
  3948. }
  3949. func (m *UpdateStyleInfoRequest) XXX_DiscardUnknown() {
  3950. xxx_messageInfo_UpdateStyleInfoRequest.DiscardUnknown(m)
  3951. }
  3952. var xxx_messageInfo_UpdateStyleInfoRequest proto.InternalMessageInfo
  3953. func (m *UpdateStyleInfoRequest) GetId() int64 {
  3954. if m != nil {
  3955. return m.Id
  3956. }
  3957. return 0
  3958. }
  3959. func (m *UpdateStyleInfoRequest) GetData() string {
  3960. if m != nil {
  3961. return m.Data
  3962. }
  3963. return ""
  3964. }
  3965. type MaintainManualRequest struct {
  3966. StyleId string `protobuf:"bytes,1,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  3967. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3968. XXX_unrecognized []byte `json:"-"`
  3969. XXX_sizecache int32 `json:"-"`
  3970. }
  3971. func (m *MaintainManualRequest) Reset() { *m = MaintainManualRequest{} }
  3972. func (m *MaintainManualRequest) String() string { return proto.CompactTextString(m) }
  3973. func (*MaintainManualRequest) ProtoMessage() {}
  3974. func (*MaintainManualRequest) Descriptor() ([]byte, []int) {
  3975. return fileDescriptor_b614324037d99e80, []int{23}
  3976. }
  3977. func (m *MaintainManualRequest) XXX_Unmarshal(b []byte) error {
  3978. return xxx_messageInfo_MaintainManualRequest.Unmarshal(m, b)
  3979. }
  3980. func (m *MaintainManualRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3981. return xxx_messageInfo_MaintainManualRequest.Marshal(b, m, deterministic)
  3982. }
  3983. func (m *MaintainManualRequest) XXX_Merge(src proto.Message) {
  3984. xxx_messageInfo_MaintainManualRequest.Merge(m, src)
  3985. }
  3986. func (m *MaintainManualRequest) XXX_Size() int {
  3987. return xxx_messageInfo_MaintainManualRequest.Size(m)
  3988. }
  3989. func (m *MaintainManualRequest) XXX_DiscardUnknown() {
  3990. xxx_messageInfo_MaintainManualRequest.DiscardUnknown(m)
  3991. }
  3992. var xxx_messageInfo_MaintainManualRequest proto.InternalMessageInfo
  3993. func (m *MaintainManualRequest) GetStyleId() string {
  3994. if m != nil {
  3995. return m.StyleId
  3996. }
  3997. return ""
  3998. }
  3999. type MaintainItem struct {
  4000. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  4001. Item string `protobuf:"bytes,2,opt,name=item,proto3" json:"item"`
  4002. StartMile int64 `protobuf:"varint,3,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4003. StartDate int64 `protobuf:"varint,4,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4004. MileCycle int64 `protobuf:"varint,5,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4005. DateCycle int64 `protobuf:"varint,6,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4006. StyleId string `protobuf:"bytes,7,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4007. ItemId int64 `protobuf:"varint,8,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4008. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4009. XXX_unrecognized []byte `json:"-"`
  4010. XXX_sizecache int32 `json:"-"`
  4011. }
  4012. func (m *MaintainItem) Reset() { *m = MaintainItem{} }
  4013. func (m *MaintainItem) String() string { return proto.CompactTextString(m) }
  4014. func (*MaintainItem) ProtoMessage() {}
  4015. func (*MaintainItem) Descriptor() ([]byte, []int) {
  4016. return fileDescriptor_b614324037d99e80, []int{24}
  4017. }
  4018. func (m *MaintainItem) XXX_Unmarshal(b []byte) error {
  4019. return xxx_messageInfo_MaintainItem.Unmarshal(m, b)
  4020. }
  4021. func (m *MaintainItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4022. return xxx_messageInfo_MaintainItem.Marshal(b, m, deterministic)
  4023. }
  4024. func (m *MaintainItem) XXX_Merge(src proto.Message) {
  4025. xxx_messageInfo_MaintainItem.Merge(m, src)
  4026. }
  4027. func (m *MaintainItem) XXX_Size() int {
  4028. return xxx_messageInfo_MaintainItem.Size(m)
  4029. }
  4030. func (m *MaintainItem) XXX_DiscardUnknown() {
  4031. xxx_messageInfo_MaintainItem.DiscardUnknown(m)
  4032. }
  4033. var xxx_messageInfo_MaintainItem proto.InternalMessageInfo
  4034. func (m *MaintainItem) GetId() int64 {
  4035. if m != nil {
  4036. return m.Id
  4037. }
  4038. return 0
  4039. }
  4040. func (m *MaintainItem) GetItem() string {
  4041. if m != nil {
  4042. return m.Item
  4043. }
  4044. return ""
  4045. }
  4046. func (m *MaintainItem) GetStartMile() int64 {
  4047. if m != nil {
  4048. return m.StartMile
  4049. }
  4050. return 0
  4051. }
  4052. func (m *MaintainItem) GetStartDate() int64 {
  4053. if m != nil {
  4054. return m.StartDate
  4055. }
  4056. return 0
  4057. }
  4058. func (m *MaintainItem) GetMileCycle() int64 {
  4059. if m != nil {
  4060. return m.MileCycle
  4061. }
  4062. return 0
  4063. }
  4064. func (m *MaintainItem) GetDateCycle() int64 {
  4065. if m != nil {
  4066. return m.DateCycle
  4067. }
  4068. return 0
  4069. }
  4070. func (m *MaintainItem) GetStyleId() string {
  4071. if m != nil {
  4072. return m.StyleId
  4073. }
  4074. return ""
  4075. }
  4076. func (m *MaintainItem) GetItemId() int64 {
  4077. if m != nil {
  4078. return m.ItemId
  4079. }
  4080. return 0
  4081. }
  4082. type MaintainManualReply struct {
  4083. // 保养
  4084. Maintainance []*MaintainItem `protobuf:"bytes,1,rep,name=maintainance,proto3" json:"maintainance"`
  4085. // 维修
  4086. Repair []*MaintainItem `protobuf:"bytes,2,rep,name=repair,proto3" json:"repair"`
  4087. // 清洗
  4088. Wash []*MaintainItem `protobuf:"bytes,3,rep,name=wash,proto3" json:"wash"`
  4089. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4090. XXX_unrecognized []byte `json:"-"`
  4091. XXX_sizecache int32 `json:"-"`
  4092. }
  4093. func (m *MaintainManualReply) Reset() { *m = MaintainManualReply{} }
  4094. func (m *MaintainManualReply) String() string { return proto.CompactTextString(m) }
  4095. func (*MaintainManualReply) ProtoMessage() {}
  4096. func (*MaintainManualReply) Descriptor() ([]byte, []int) {
  4097. return fileDescriptor_b614324037d99e80, []int{25}
  4098. }
  4099. func (m *MaintainManualReply) XXX_Unmarshal(b []byte) error {
  4100. return xxx_messageInfo_MaintainManualReply.Unmarshal(m, b)
  4101. }
  4102. func (m *MaintainManualReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4103. return xxx_messageInfo_MaintainManualReply.Marshal(b, m, deterministic)
  4104. }
  4105. func (m *MaintainManualReply) XXX_Merge(src proto.Message) {
  4106. xxx_messageInfo_MaintainManualReply.Merge(m, src)
  4107. }
  4108. func (m *MaintainManualReply) XXX_Size() int {
  4109. return xxx_messageInfo_MaintainManualReply.Size(m)
  4110. }
  4111. func (m *MaintainManualReply) XXX_DiscardUnknown() {
  4112. xxx_messageInfo_MaintainManualReply.DiscardUnknown(m)
  4113. }
  4114. var xxx_messageInfo_MaintainManualReply proto.InternalMessageInfo
  4115. func (m *MaintainManualReply) GetMaintainance() []*MaintainItem {
  4116. if m != nil {
  4117. return m.Maintainance
  4118. }
  4119. return nil
  4120. }
  4121. func (m *MaintainManualReply) GetRepair() []*MaintainItem {
  4122. if m != nil {
  4123. return m.Repair
  4124. }
  4125. return nil
  4126. }
  4127. func (m *MaintainManualReply) GetWash() []*MaintainItem {
  4128. if m != nil {
  4129. return m.Wash
  4130. }
  4131. return nil
  4132. }
  4133. type ItemListRequest struct {
  4134. ItemType int64 `protobuf:"varint,1,opt,name=item_type,json=itemType,proto3" json:"item_type"`
  4135. StyleId string `protobuf:"bytes,2,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4136. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4137. XXX_unrecognized []byte `json:"-"`
  4138. XXX_sizecache int32 `json:"-"`
  4139. }
  4140. func (m *ItemListRequest) Reset() { *m = ItemListRequest{} }
  4141. func (m *ItemListRequest) String() string { return proto.CompactTextString(m) }
  4142. func (*ItemListRequest) ProtoMessage() {}
  4143. func (*ItemListRequest) Descriptor() ([]byte, []int) {
  4144. return fileDescriptor_b614324037d99e80, []int{26}
  4145. }
  4146. func (m *ItemListRequest) XXX_Unmarshal(b []byte) error {
  4147. return xxx_messageInfo_ItemListRequest.Unmarshal(m, b)
  4148. }
  4149. func (m *ItemListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4150. return xxx_messageInfo_ItemListRequest.Marshal(b, m, deterministic)
  4151. }
  4152. func (m *ItemListRequest) XXX_Merge(src proto.Message) {
  4153. xxx_messageInfo_ItemListRequest.Merge(m, src)
  4154. }
  4155. func (m *ItemListRequest) XXX_Size() int {
  4156. return xxx_messageInfo_ItemListRequest.Size(m)
  4157. }
  4158. func (m *ItemListRequest) XXX_DiscardUnknown() {
  4159. xxx_messageInfo_ItemListRequest.DiscardUnknown(m)
  4160. }
  4161. var xxx_messageInfo_ItemListRequest proto.InternalMessageInfo
  4162. func (m *ItemListRequest) GetItemType() int64 {
  4163. if m != nil {
  4164. return m.ItemType
  4165. }
  4166. return 0
  4167. }
  4168. func (m *ItemListRequest) GetStyleId() string {
  4169. if m != nil {
  4170. return m.StyleId
  4171. }
  4172. return ""
  4173. }
  4174. type ItemListReply struct {
  4175. List []*ItemListReply_Item `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  4176. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4177. XXX_unrecognized []byte `json:"-"`
  4178. XXX_sizecache int32 `json:"-"`
  4179. }
  4180. func (m *ItemListReply) Reset() { *m = ItemListReply{} }
  4181. func (m *ItemListReply) String() string { return proto.CompactTextString(m) }
  4182. func (*ItemListReply) ProtoMessage() {}
  4183. func (*ItemListReply) Descriptor() ([]byte, []int) {
  4184. return fileDescriptor_b614324037d99e80, []int{27}
  4185. }
  4186. func (m *ItemListReply) XXX_Unmarshal(b []byte) error {
  4187. return xxx_messageInfo_ItemListReply.Unmarshal(m, b)
  4188. }
  4189. func (m *ItemListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4190. return xxx_messageInfo_ItemListReply.Marshal(b, m, deterministic)
  4191. }
  4192. func (m *ItemListReply) XXX_Merge(src proto.Message) {
  4193. xxx_messageInfo_ItemListReply.Merge(m, src)
  4194. }
  4195. func (m *ItemListReply) XXX_Size() int {
  4196. return xxx_messageInfo_ItemListReply.Size(m)
  4197. }
  4198. func (m *ItemListReply) XXX_DiscardUnknown() {
  4199. xxx_messageInfo_ItemListReply.DiscardUnknown(m)
  4200. }
  4201. var xxx_messageInfo_ItemListReply proto.InternalMessageInfo
  4202. func (m *ItemListReply) GetList() []*ItemListReply_Item {
  4203. if m != nil {
  4204. return m.List
  4205. }
  4206. return nil
  4207. }
  4208. type ItemListReply_Item struct {
  4209. ItemId int64 `protobuf:"varint,1,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4210. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  4211. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4212. XXX_unrecognized []byte `json:"-"`
  4213. XXX_sizecache int32 `json:"-"`
  4214. }
  4215. func (m *ItemListReply_Item) Reset() { *m = ItemListReply_Item{} }
  4216. func (m *ItemListReply_Item) String() string { return proto.CompactTextString(m) }
  4217. func (*ItemListReply_Item) ProtoMessage() {}
  4218. func (*ItemListReply_Item) Descriptor() ([]byte, []int) {
  4219. return fileDescriptor_b614324037d99e80, []int{27, 0}
  4220. }
  4221. func (m *ItemListReply_Item) XXX_Unmarshal(b []byte) error {
  4222. return xxx_messageInfo_ItemListReply_Item.Unmarshal(m, b)
  4223. }
  4224. func (m *ItemListReply_Item) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4225. return xxx_messageInfo_ItemListReply_Item.Marshal(b, m, deterministic)
  4226. }
  4227. func (m *ItemListReply_Item) XXX_Merge(src proto.Message) {
  4228. xxx_messageInfo_ItemListReply_Item.Merge(m, src)
  4229. }
  4230. func (m *ItemListReply_Item) XXX_Size() int {
  4231. return xxx_messageInfo_ItemListReply_Item.Size(m)
  4232. }
  4233. func (m *ItemListReply_Item) XXX_DiscardUnknown() {
  4234. xxx_messageInfo_ItemListReply_Item.DiscardUnknown(m)
  4235. }
  4236. var xxx_messageInfo_ItemListReply_Item proto.InternalMessageInfo
  4237. func (m *ItemListReply_Item) GetItemId() int64 {
  4238. if m != nil {
  4239. return m.ItemId
  4240. }
  4241. return 0
  4242. }
  4243. func (m *ItemListReply_Item) GetItemName() string {
  4244. if m != nil {
  4245. return m.ItemName
  4246. }
  4247. return ""
  4248. }
  4249. type UpdateMaintainManualRequest struct {
  4250. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  4251. ItemId int64 `protobuf:"varint,2,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4252. StartMile int64 `protobuf:"varint,3,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4253. StartDate int64 `protobuf:"varint,4,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4254. MileCycle int64 `protobuf:"varint,5,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4255. DateCycle int64 `protobuf:"varint,6,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4256. StyleId string `protobuf:"bytes,7,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4257. Name string `protobuf:"bytes,8,opt,name=name,proto3" json:"name"`
  4258. Tid int64 `protobuf:"varint,9,opt,name=tid,proto3" json:"tid"`
  4259. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4260. XXX_unrecognized []byte `json:"-"`
  4261. XXX_sizecache int32 `json:"-"`
  4262. }
  4263. func (m *UpdateMaintainManualRequest) Reset() { *m = UpdateMaintainManualRequest{} }
  4264. func (m *UpdateMaintainManualRequest) String() string { return proto.CompactTextString(m) }
  4265. func (*UpdateMaintainManualRequest) ProtoMessage() {}
  4266. func (*UpdateMaintainManualRequest) Descriptor() ([]byte, []int) {
  4267. return fileDescriptor_b614324037d99e80, []int{28}
  4268. }
  4269. func (m *UpdateMaintainManualRequest) XXX_Unmarshal(b []byte) error {
  4270. return xxx_messageInfo_UpdateMaintainManualRequest.Unmarshal(m, b)
  4271. }
  4272. func (m *UpdateMaintainManualRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4273. return xxx_messageInfo_UpdateMaintainManualRequest.Marshal(b, m, deterministic)
  4274. }
  4275. func (m *UpdateMaintainManualRequest) XXX_Merge(src proto.Message) {
  4276. xxx_messageInfo_UpdateMaintainManualRequest.Merge(m, src)
  4277. }
  4278. func (m *UpdateMaintainManualRequest) XXX_Size() int {
  4279. return xxx_messageInfo_UpdateMaintainManualRequest.Size(m)
  4280. }
  4281. func (m *UpdateMaintainManualRequest) XXX_DiscardUnknown() {
  4282. xxx_messageInfo_UpdateMaintainManualRequest.DiscardUnknown(m)
  4283. }
  4284. var xxx_messageInfo_UpdateMaintainManualRequest proto.InternalMessageInfo
  4285. func (m *UpdateMaintainManualRequest) GetId() int64 {
  4286. if m != nil {
  4287. return m.Id
  4288. }
  4289. return 0
  4290. }
  4291. func (m *UpdateMaintainManualRequest) GetItemId() int64 {
  4292. if m != nil {
  4293. return m.ItemId
  4294. }
  4295. return 0
  4296. }
  4297. func (m *UpdateMaintainManualRequest) GetStartMile() int64 {
  4298. if m != nil {
  4299. return m.StartMile
  4300. }
  4301. return 0
  4302. }
  4303. func (m *UpdateMaintainManualRequest) GetStartDate() int64 {
  4304. if m != nil {
  4305. return m.StartDate
  4306. }
  4307. return 0
  4308. }
  4309. func (m *UpdateMaintainManualRequest) GetMileCycle() int64 {
  4310. if m != nil {
  4311. return m.MileCycle
  4312. }
  4313. return 0
  4314. }
  4315. func (m *UpdateMaintainManualRequest) GetDateCycle() int64 {
  4316. if m != nil {
  4317. return m.DateCycle
  4318. }
  4319. return 0
  4320. }
  4321. func (m *UpdateMaintainManualRequest) GetStyleId() string {
  4322. if m != nil {
  4323. return m.StyleId
  4324. }
  4325. return ""
  4326. }
  4327. func (m *UpdateMaintainManualRequest) GetName() string {
  4328. if m != nil {
  4329. return m.Name
  4330. }
  4331. return ""
  4332. }
  4333. func (m *UpdateMaintainManualRequest) GetTid() int64 {
  4334. if m != nil {
  4335. return m.Tid
  4336. }
  4337. return 0
  4338. }
  4339. type MaintainManualInfoRequest struct {
  4340. StyleId string `protobuf:"bytes,1,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4341. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4342. XXX_unrecognized []byte `json:"-"`
  4343. XXX_sizecache int32 `json:"-"`
  4344. }
  4345. func (m *MaintainManualInfoRequest) Reset() { *m = MaintainManualInfoRequest{} }
  4346. func (m *MaintainManualInfoRequest) String() string { return proto.CompactTextString(m) }
  4347. func (*MaintainManualInfoRequest) ProtoMessage() {}
  4348. func (*MaintainManualInfoRequest) Descriptor() ([]byte, []int) {
  4349. return fileDescriptor_b614324037d99e80, []int{29}
  4350. }
  4351. func (m *MaintainManualInfoRequest) XXX_Unmarshal(b []byte) error {
  4352. return xxx_messageInfo_MaintainManualInfoRequest.Unmarshal(m, b)
  4353. }
  4354. func (m *MaintainManualInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4355. return xxx_messageInfo_MaintainManualInfoRequest.Marshal(b, m, deterministic)
  4356. }
  4357. func (m *MaintainManualInfoRequest) XXX_Merge(src proto.Message) {
  4358. xxx_messageInfo_MaintainManualInfoRequest.Merge(m, src)
  4359. }
  4360. func (m *MaintainManualInfoRequest) XXX_Size() int {
  4361. return xxx_messageInfo_MaintainManualInfoRequest.Size(m)
  4362. }
  4363. func (m *MaintainManualInfoRequest) XXX_DiscardUnknown() {
  4364. xxx_messageInfo_MaintainManualInfoRequest.DiscardUnknown(m)
  4365. }
  4366. var xxx_messageInfo_MaintainManualInfoRequest proto.InternalMessageInfo
  4367. func (m *MaintainManualInfoRequest) GetStyleId() string {
  4368. if m != nil {
  4369. return m.StyleId
  4370. }
  4371. return ""
  4372. }
  4373. type MaintainManualInfoReply struct {
  4374. Wash []*MaintainManualInfoReply_Wash `protobuf:"bytes,1,rep,name=wash,proto3" json:"wash"`
  4375. Repair []*MaintainManualInfoReply_Repair `protobuf:"bytes,2,rep,name=repair,proto3" json:"repair"`
  4376. MaintainItem []*MaintainManualInfoReply_MaintainItem `protobuf:"bytes,3,rep,name=maintain_item,json=maintainItem,proto3" json:"maintain_item"`
  4377. Maintain []*MaintainManualInfoReply_Maintain `protobuf:"bytes,4,rep,name=maintain,proto3" json:"maintain"`
  4378. Cycle *MaintainManualInfoReply_Cycle `protobuf:"bytes,5,opt,name=cycle,proto3" json:"cycle"`
  4379. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4380. XXX_unrecognized []byte `json:"-"`
  4381. XXX_sizecache int32 `json:"-"`
  4382. }
  4383. func (m *MaintainManualInfoReply) Reset() { *m = MaintainManualInfoReply{} }
  4384. func (m *MaintainManualInfoReply) String() string { return proto.CompactTextString(m) }
  4385. func (*MaintainManualInfoReply) ProtoMessage() {}
  4386. func (*MaintainManualInfoReply) Descriptor() ([]byte, []int) {
  4387. return fileDescriptor_b614324037d99e80, []int{30}
  4388. }
  4389. func (m *MaintainManualInfoReply) XXX_Unmarshal(b []byte) error {
  4390. return xxx_messageInfo_MaintainManualInfoReply.Unmarshal(m, b)
  4391. }
  4392. func (m *MaintainManualInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4393. return xxx_messageInfo_MaintainManualInfoReply.Marshal(b, m, deterministic)
  4394. }
  4395. func (m *MaintainManualInfoReply) XXX_Merge(src proto.Message) {
  4396. xxx_messageInfo_MaintainManualInfoReply.Merge(m, src)
  4397. }
  4398. func (m *MaintainManualInfoReply) XXX_Size() int {
  4399. return xxx_messageInfo_MaintainManualInfoReply.Size(m)
  4400. }
  4401. func (m *MaintainManualInfoReply) XXX_DiscardUnknown() {
  4402. xxx_messageInfo_MaintainManualInfoReply.DiscardUnknown(m)
  4403. }
  4404. var xxx_messageInfo_MaintainManualInfoReply proto.InternalMessageInfo
  4405. func (m *MaintainManualInfoReply) GetWash() []*MaintainManualInfoReply_Wash {
  4406. if m != nil {
  4407. return m.Wash
  4408. }
  4409. return nil
  4410. }
  4411. func (m *MaintainManualInfoReply) GetRepair() []*MaintainManualInfoReply_Repair {
  4412. if m != nil {
  4413. return m.Repair
  4414. }
  4415. return nil
  4416. }
  4417. func (m *MaintainManualInfoReply) GetMaintainItem() []*MaintainManualInfoReply_MaintainItem {
  4418. if m != nil {
  4419. return m.MaintainItem
  4420. }
  4421. return nil
  4422. }
  4423. func (m *MaintainManualInfoReply) GetMaintain() []*MaintainManualInfoReply_Maintain {
  4424. if m != nil {
  4425. return m.Maintain
  4426. }
  4427. return nil
  4428. }
  4429. func (m *MaintainManualInfoReply) GetCycle() *MaintainManualInfoReply_Cycle {
  4430. if m != nil {
  4431. return m.Cycle
  4432. }
  4433. return nil
  4434. }
  4435. type MaintainManualInfoReply_Wash struct {
  4436. Cycle uint32 `protobuf:"varint,1,opt,name=cycle,proto3" json:"cycle"`
  4437. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  4438. ItemId uint32 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4439. StartMile int64 `protobuf:"varint,4,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4440. StartDate int64 `protobuf:"varint,5,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4441. MileCycle int64 `protobuf:"varint,6,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4442. DateCycle int64 `protobuf:"varint,7,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4443. StyleId string `protobuf:"bytes,8,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4444. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4445. XXX_unrecognized []byte `json:"-"`
  4446. XXX_sizecache int32 `json:"-"`
  4447. }
  4448. func (m *MaintainManualInfoReply_Wash) Reset() { *m = MaintainManualInfoReply_Wash{} }
  4449. func (m *MaintainManualInfoReply_Wash) String() string { return proto.CompactTextString(m) }
  4450. func (*MaintainManualInfoReply_Wash) ProtoMessage() {}
  4451. func (*MaintainManualInfoReply_Wash) Descriptor() ([]byte, []int) {
  4452. return fileDescriptor_b614324037d99e80, []int{30, 0}
  4453. }
  4454. func (m *MaintainManualInfoReply_Wash) XXX_Unmarshal(b []byte) error {
  4455. return xxx_messageInfo_MaintainManualInfoReply_Wash.Unmarshal(m, b)
  4456. }
  4457. func (m *MaintainManualInfoReply_Wash) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4458. return xxx_messageInfo_MaintainManualInfoReply_Wash.Marshal(b, m, deterministic)
  4459. }
  4460. func (m *MaintainManualInfoReply_Wash) XXX_Merge(src proto.Message) {
  4461. xxx_messageInfo_MaintainManualInfoReply_Wash.Merge(m, src)
  4462. }
  4463. func (m *MaintainManualInfoReply_Wash) XXX_Size() int {
  4464. return xxx_messageInfo_MaintainManualInfoReply_Wash.Size(m)
  4465. }
  4466. func (m *MaintainManualInfoReply_Wash) XXX_DiscardUnknown() {
  4467. xxx_messageInfo_MaintainManualInfoReply_Wash.DiscardUnknown(m)
  4468. }
  4469. var xxx_messageInfo_MaintainManualInfoReply_Wash proto.InternalMessageInfo
  4470. func (m *MaintainManualInfoReply_Wash) GetCycle() uint32 {
  4471. if m != nil {
  4472. return m.Cycle
  4473. }
  4474. return 0
  4475. }
  4476. func (m *MaintainManualInfoReply_Wash) GetItemName() string {
  4477. if m != nil {
  4478. return m.ItemName
  4479. }
  4480. return ""
  4481. }
  4482. func (m *MaintainManualInfoReply_Wash) GetItemId() uint32 {
  4483. if m != nil {
  4484. return m.ItemId
  4485. }
  4486. return 0
  4487. }
  4488. func (m *MaintainManualInfoReply_Wash) GetStartMile() int64 {
  4489. if m != nil {
  4490. return m.StartMile
  4491. }
  4492. return 0
  4493. }
  4494. func (m *MaintainManualInfoReply_Wash) GetStartDate() int64 {
  4495. if m != nil {
  4496. return m.StartDate
  4497. }
  4498. return 0
  4499. }
  4500. func (m *MaintainManualInfoReply_Wash) GetMileCycle() int64 {
  4501. if m != nil {
  4502. return m.MileCycle
  4503. }
  4504. return 0
  4505. }
  4506. func (m *MaintainManualInfoReply_Wash) GetDateCycle() int64 {
  4507. if m != nil {
  4508. return m.DateCycle
  4509. }
  4510. return 0
  4511. }
  4512. func (m *MaintainManualInfoReply_Wash) GetStyleId() string {
  4513. if m != nil {
  4514. return m.StyleId
  4515. }
  4516. return ""
  4517. }
  4518. type MaintainManualInfoReply_Repair struct {
  4519. Cycle uint32 `protobuf:"varint,1,opt,name=cycle,proto3" json:"cycle"`
  4520. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  4521. ItemId uint32 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4522. StartMile int64 `protobuf:"varint,4,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4523. StartDate int64 `protobuf:"varint,5,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4524. MileCycle int64 `protobuf:"varint,6,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4525. DateCycle int64 `protobuf:"varint,7,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4526. StyleId string `protobuf:"bytes,8,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4527. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4528. XXX_unrecognized []byte `json:"-"`
  4529. XXX_sizecache int32 `json:"-"`
  4530. }
  4531. func (m *MaintainManualInfoReply_Repair) Reset() { *m = MaintainManualInfoReply_Repair{} }
  4532. func (m *MaintainManualInfoReply_Repair) String() string { return proto.CompactTextString(m) }
  4533. func (*MaintainManualInfoReply_Repair) ProtoMessage() {}
  4534. func (*MaintainManualInfoReply_Repair) Descriptor() ([]byte, []int) {
  4535. return fileDescriptor_b614324037d99e80, []int{30, 1}
  4536. }
  4537. func (m *MaintainManualInfoReply_Repair) XXX_Unmarshal(b []byte) error {
  4538. return xxx_messageInfo_MaintainManualInfoReply_Repair.Unmarshal(m, b)
  4539. }
  4540. func (m *MaintainManualInfoReply_Repair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4541. return xxx_messageInfo_MaintainManualInfoReply_Repair.Marshal(b, m, deterministic)
  4542. }
  4543. func (m *MaintainManualInfoReply_Repair) XXX_Merge(src proto.Message) {
  4544. xxx_messageInfo_MaintainManualInfoReply_Repair.Merge(m, src)
  4545. }
  4546. func (m *MaintainManualInfoReply_Repair) XXX_Size() int {
  4547. return xxx_messageInfo_MaintainManualInfoReply_Repair.Size(m)
  4548. }
  4549. func (m *MaintainManualInfoReply_Repair) XXX_DiscardUnknown() {
  4550. xxx_messageInfo_MaintainManualInfoReply_Repair.DiscardUnknown(m)
  4551. }
  4552. var xxx_messageInfo_MaintainManualInfoReply_Repair proto.InternalMessageInfo
  4553. func (m *MaintainManualInfoReply_Repair) GetCycle() uint32 {
  4554. if m != nil {
  4555. return m.Cycle
  4556. }
  4557. return 0
  4558. }
  4559. func (m *MaintainManualInfoReply_Repair) GetItemName() string {
  4560. if m != nil {
  4561. return m.ItemName
  4562. }
  4563. return ""
  4564. }
  4565. func (m *MaintainManualInfoReply_Repair) GetItemId() uint32 {
  4566. if m != nil {
  4567. return m.ItemId
  4568. }
  4569. return 0
  4570. }
  4571. func (m *MaintainManualInfoReply_Repair) GetStartMile() int64 {
  4572. if m != nil {
  4573. return m.StartMile
  4574. }
  4575. return 0
  4576. }
  4577. func (m *MaintainManualInfoReply_Repair) GetStartDate() int64 {
  4578. if m != nil {
  4579. return m.StartDate
  4580. }
  4581. return 0
  4582. }
  4583. func (m *MaintainManualInfoReply_Repair) GetMileCycle() int64 {
  4584. if m != nil {
  4585. return m.MileCycle
  4586. }
  4587. return 0
  4588. }
  4589. func (m *MaintainManualInfoReply_Repair) GetDateCycle() int64 {
  4590. if m != nil {
  4591. return m.DateCycle
  4592. }
  4593. return 0
  4594. }
  4595. func (m *MaintainManualInfoReply_Repair) GetStyleId() string {
  4596. if m != nil {
  4597. return m.StyleId
  4598. }
  4599. return ""
  4600. }
  4601. type MaintainManualInfoReply_MaintainItem struct {
  4602. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  4603. ItemId uint32 `protobuf:"varint,2,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4604. StartMile int64 `protobuf:"varint,3,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4605. StartDate int64 `protobuf:"varint,4,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4606. MileCycle int64 `protobuf:"varint,5,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4607. DateCycle int64 `protobuf:"varint,6,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4608. StyleId string `protobuf:"bytes,7,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4609. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4610. XXX_unrecognized []byte `json:"-"`
  4611. XXX_sizecache int32 `json:"-"`
  4612. }
  4613. func (m *MaintainManualInfoReply_MaintainItem) Reset() { *m = MaintainManualInfoReply_MaintainItem{} }
  4614. func (m *MaintainManualInfoReply_MaintainItem) String() string { return proto.CompactTextString(m) }
  4615. func (*MaintainManualInfoReply_MaintainItem) ProtoMessage() {}
  4616. func (*MaintainManualInfoReply_MaintainItem) Descriptor() ([]byte, []int) {
  4617. return fileDescriptor_b614324037d99e80, []int{30, 2}
  4618. }
  4619. func (m *MaintainManualInfoReply_MaintainItem) XXX_Unmarshal(b []byte) error {
  4620. return xxx_messageInfo_MaintainManualInfoReply_MaintainItem.Unmarshal(m, b)
  4621. }
  4622. func (m *MaintainManualInfoReply_MaintainItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4623. return xxx_messageInfo_MaintainManualInfoReply_MaintainItem.Marshal(b, m, deterministic)
  4624. }
  4625. func (m *MaintainManualInfoReply_MaintainItem) XXX_Merge(src proto.Message) {
  4626. xxx_messageInfo_MaintainManualInfoReply_MaintainItem.Merge(m, src)
  4627. }
  4628. func (m *MaintainManualInfoReply_MaintainItem) XXX_Size() int {
  4629. return xxx_messageInfo_MaintainManualInfoReply_MaintainItem.Size(m)
  4630. }
  4631. func (m *MaintainManualInfoReply_MaintainItem) XXX_DiscardUnknown() {
  4632. xxx_messageInfo_MaintainManualInfoReply_MaintainItem.DiscardUnknown(m)
  4633. }
  4634. var xxx_messageInfo_MaintainManualInfoReply_MaintainItem proto.InternalMessageInfo
  4635. func (m *MaintainManualInfoReply_MaintainItem) GetItemName() string {
  4636. if m != nil {
  4637. return m.ItemName
  4638. }
  4639. return ""
  4640. }
  4641. func (m *MaintainManualInfoReply_MaintainItem) GetItemId() uint32 {
  4642. if m != nil {
  4643. return m.ItemId
  4644. }
  4645. return 0
  4646. }
  4647. func (m *MaintainManualInfoReply_MaintainItem) GetStartMile() int64 {
  4648. if m != nil {
  4649. return m.StartMile
  4650. }
  4651. return 0
  4652. }
  4653. func (m *MaintainManualInfoReply_MaintainItem) GetStartDate() int64 {
  4654. if m != nil {
  4655. return m.StartDate
  4656. }
  4657. return 0
  4658. }
  4659. func (m *MaintainManualInfoReply_MaintainItem) GetMileCycle() int64 {
  4660. if m != nil {
  4661. return m.MileCycle
  4662. }
  4663. return 0
  4664. }
  4665. func (m *MaintainManualInfoReply_MaintainItem) GetDateCycle() int64 {
  4666. if m != nil {
  4667. return m.DateCycle
  4668. }
  4669. return 0
  4670. }
  4671. func (m *MaintainManualInfoReply_MaintainItem) GetStyleId() string {
  4672. if m != nil {
  4673. return m.StyleId
  4674. }
  4675. return ""
  4676. }
  4677. type MaintainManualInfoReply_Items struct {
  4678. Level uint32 `protobuf:"varint,1,opt,name=level,proto3" json:"level"`
  4679. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  4680. ItemId uint32 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  4681. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4682. XXX_unrecognized []byte `json:"-"`
  4683. XXX_sizecache int32 `json:"-"`
  4684. }
  4685. func (m *MaintainManualInfoReply_Items) Reset() { *m = MaintainManualInfoReply_Items{} }
  4686. func (m *MaintainManualInfoReply_Items) String() string { return proto.CompactTextString(m) }
  4687. func (*MaintainManualInfoReply_Items) ProtoMessage() {}
  4688. func (*MaintainManualInfoReply_Items) Descriptor() ([]byte, []int) {
  4689. return fileDescriptor_b614324037d99e80, []int{30, 3}
  4690. }
  4691. func (m *MaintainManualInfoReply_Items) XXX_Unmarshal(b []byte) error {
  4692. return xxx_messageInfo_MaintainManualInfoReply_Items.Unmarshal(m, b)
  4693. }
  4694. func (m *MaintainManualInfoReply_Items) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4695. return xxx_messageInfo_MaintainManualInfoReply_Items.Marshal(b, m, deterministic)
  4696. }
  4697. func (m *MaintainManualInfoReply_Items) XXX_Merge(src proto.Message) {
  4698. xxx_messageInfo_MaintainManualInfoReply_Items.Merge(m, src)
  4699. }
  4700. func (m *MaintainManualInfoReply_Items) XXX_Size() int {
  4701. return xxx_messageInfo_MaintainManualInfoReply_Items.Size(m)
  4702. }
  4703. func (m *MaintainManualInfoReply_Items) XXX_DiscardUnknown() {
  4704. xxx_messageInfo_MaintainManualInfoReply_Items.DiscardUnknown(m)
  4705. }
  4706. var xxx_messageInfo_MaintainManualInfoReply_Items proto.InternalMessageInfo
  4707. func (m *MaintainManualInfoReply_Items) GetLevel() uint32 {
  4708. if m != nil {
  4709. return m.Level
  4710. }
  4711. return 0
  4712. }
  4713. func (m *MaintainManualInfoReply_Items) GetItemName() string {
  4714. if m != nil {
  4715. return m.ItemName
  4716. }
  4717. return ""
  4718. }
  4719. func (m *MaintainManualInfoReply_Items) GetItemId() uint32 {
  4720. if m != nil {
  4721. return m.ItemId
  4722. }
  4723. return 0
  4724. }
  4725. type MaintainManualInfoReply_Maintain struct {
  4726. Age uint32 `protobuf:"varint,1,opt,name=age,proto3" json:"age"`
  4727. Mile uint32 `protobuf:"varint,2,opt,name=mile,proto3" json:"mile"`
  4728. Items []*MaintainManualInfoReply_Items `protobuf:"bytes,3,rep,name=items,proto3" json:"items"`
  4729. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4730. XXX_unrecognized []byte `json:"-"`
  4731. XXX_sizecache int32 `json:"-"`
  4732. }
  4733. func (m *MaintainManualInfoReply_Maintain) Reset() { *m = MaintainManualInfoReply_Maintain{} }
  4734. func (m *MaintainManualInfoReply_Maintain) String() string { return proto.CompactTextString(m) }
  4735. func (*MaintainManualInfoReply_Maintain) ProtoMessage() {}
  4736. func (*MaintainManualInfoReply_Maintain) Descriptor() ([]byte, []int) {
  4737. return fileDescriptor_b614324037d99e80, []int{30, 4}
  4738. }
  4739. func (m *MaintainManualInfoReply_Maintain) XXX_Unmarshal(b []byte) error {
  4740. return xxx_messageInfo_MaintainManualInfoReply_Maintain.Unmarshal(m, b)
  4741. }
  4742. func (m *MaintainManualInfoReply_Maintain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4743. return xxx_messageInfo_MaintainManualInfoReply_Maintain.Marshal(b, m, deterministic)
  4744. }
  4745. func (m *MaintainManualInfoReply_Maintain) XXX_Merge(src proto.Message) {
  4746. xxx_messageInfo_MaintainManualInfoReply_Maintain.Merge(m, src)
  4747. }
  4748. func (m *MaintainManualInfoReply_Maintain) XXX_Size() int {
  4749. return xxx_messageInfo_MaintainManualInfoReply_Maintain.Size(m)
  4750. }
  4751. func (m *MaintainManualInfoReply_Maintain) XXX_DiscardUnknown() {
  4752. xxx_messageInfo_MaintainManualInfoReply_Maintain.DiscardUnknown(m)
  4753. }
  4754. var xxx_messageInfo_MaintainManualInfoReply_Maintain proto.InternalMessageInfo
  4755. func (m *MaintainManualInfoReply_Maintain) GetAge() uint32 {
  4756. if m != nil {
  4757. return m.Age
  4758. }
  4759. return 0
  4760. }
  4761. func (m *MaintainManualInfoReply_Maintain) GetMile() uint32 {
  4762. if m != nil {
  4763. return m.Mile
  4764. }
  4765. return 0
  4766. }
  4767. func (m *MaintainManualInfoReply_Maintain) GetItems() []*MaintainManualInfoReply_Items {
  4768. if m != nil {
  4769. return m.Items
  4770. }
  4771. return nil
  4772. }
  4773. type MaintainManualInfoReply_Cycle struct {
  4774. StartMile int64 `protobuf:"varint,1,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  4775. StartDate int64 `protobuf:"varint,2,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  4776. MileCycle int64 `protobuf:"varint,3,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  4777. DateCycle int64 `protobuf:"varint,4,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  4778. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4779. XXX_unrecognized []byte `json:"-"`
  4780. XXX_sizecache int32 `json:"-"`
  4781. }
  4782. func (m *MaintainManualInfoReply_Cycle) Reset() { *m = MaintainManualInfoReply_Cycle{} }
  4783. func (m *MaintainManualInfoReply_Cycle) String() string { return proto.CompactTextString(m) }
  4784. func (*MaintainManualInfoReply_Cycle) ProtoMessage() {}
  4785. func (*MaintainManualInfoReply_Cycle) Descriptor() ([]byte, []int) {
  4786. return fileDescriptor_b614324037d99e80, []int{30, 5}
  4787. }
  4788. func (m *MaintainManualInfoReply_Cycle) XXX_Unmarshal(b []byte) error {
  4789. return xxx_messageInfo_MaintainManualInfoReply_Cycle.Unmarshal(m, b)
  4790. }
  4791. func (m *MaintainManualInfoReply_Cycle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4792. return xxx_messageInfo_MaintainManualInfoReply_Cycle.Marshal(b, m, deterministic)
  4793. }
  4794. func (m *MaintainManualInfoReply_Cycle) XXX_Merge(src proto.Message) {
  4795. xxx_messageInfo_MaintainManualInfoReply_Cycle.Merge(m, src)
  4796. }
  4797. func (m *MaintainManualInfoReply_Cycle) XXX_Size() int {
  4798. return xxx_messageInfo_MaintainManualInfoReply_Cycle.Size(m)
  4799. }
  4800. func (m *MaintainManualInfoReply_Cycle) XXX_DiscardUnknown() {
  4801. xxx_messageInfo_MaintainManualInfoReply_Cycle.DiscardUnknown(m)
  4802. }
  4803. var xxx_messageInfo_MaintainManualInfoReply_Cycle proto.InternalMessageInfo
  4804. func (m *MaintainManualInfoReply_Cycle) GetStartMile() int64 {
  4805. if m != nil {
  4806. return m.StartMile
  4807. }
  4808. return 0
  4809. }
  4810. func (m *MaintainManualInfoReply_Cycle) GetStartDate() int64 {
  4811. if m != nil {
  4812. return m.StartDate
  4813. }
  4814. return 0
  4815. }
  4816. func (m *MaintainManualInfoReply_Cycle) GetMileCycle() int64 {
  4817. if m != nil {
  4818. return m.MileCycle
  4819. }
  4820. return 0
  4821. }
  4822. func (m *MaintainManualInfoReply_Cycle) GetDateCycle() int64 {
  4823. if m != nil {
  4824. return m.DateCycle
  4825. }
  4826. return 0
  4827. }
  4828. type StyleItem struct {
  4829. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  4830. C2Name string `protobuf:"bytes,2,opt,name=c2_name,json=c2Name,proto3" json:"c2_name"`
  4831. C2Id int64 `protobuf:"varint,3,opt,name=c2_id,json=c2Id,proto3" json:"c2_id"`
  4832. Useage string `protobuf:"bytes,4,opt,name=useage,proto3" json:"useage"`
  4833. Detail string `protobuf:"bytes,5,opt,name=detail,proto3" json:"detail"`
  4834. AttributeRule string `protobuf:"bytes,6,opt,name=attribute_rule,json=attributeRule,proto3" json:"attribute_rule"`
  4835. StyleId string `protobuf:"bytes,7,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4836. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4837. XXX_unrecognized []byte `json:"-"`
  4838. XXX_sizecache int32 `json:"-"`
  4839. }
  4840. func (m *StyleItem) Reset() { *m = StyleItem{} }
  4841. func (m *StyleItem) String() string { return proto.CompactTextString(m) }
  4842. func (*StyleItem) ProtoMessage() {}
  4843. func (*StyleItem) Descriptor() ([]byte, []int) {
  4844. return fileDescriptor_b614324037d99e80, []int{31}
  4845. }
  4846. func (m *StyleItem) XXX_Unmarshal(b []byte) error {
  4847. return xxx_messageInfo_StyleItem.Unmarshal(m, b)
  4848. }
  4849. func (m *StyleItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4850. return xxx_messageInfo_StyleItem.Marshal(b, m, deterministic)
  4851. }
  4852. func (m *StyleItem) XXX_Merge(src proto.Message) {
  4853. xxx_messageInfo_StyleItem.Merge(m, src)
  4854. }
  4855. func (m *StyleItem) XXX_Size() int {
  4856. return xxx_messageInfo_StyleItem.Size(m)
  4857. }
  4858. func (m *StyleItem) XXX_DiscardUnknown() {
  4859. xxx_messageInfo_StyleItem.DiscardUnknown(m)
  4860. }
  4861. var xxx_messageInfo_StyleItem proto.InternalMessageInfo
  4862. func (m *StyleItem) GetId() int64 {
  4863. if m != nil {
  4864. return m.Id
  4865. }
  4866. return 0
  4867. }
  4868. func (m *StyleItem) GetC2Name() string {
  4869. if m != nil {
  4870. return m.C2Name
  4871. }
  4872. return ""
  4873. }
  4874. func (m *StyleItem) GetC2Id() int64 {
  4875. if m != nil {
  4876. return m.C2Id
  4877. }
  4878. return 0
  4879. }
  4880. func (m *StyleItem) GetUseage() string {
  4881. if m != nil {
  4882. return m.Useage
  4883. }
  4884. return ""
  4885. }
  4886. func (m *StyleItem) GetDetail() string {
  4887. if m != nil {
  4888. return m.Detail
  4889. }
  4890. return ""
  4891. }
  4892. func (m *StyleItem) GetAttributeRule() string {
  4893. if m != nil {
  4894. return m.AttributeRule
  4895. }
  4896. return ""
  4897. }
  4898. func (m *StyleItem) GetStyleId() string {
  4899. if m != nil {
  4900. return m.StyleId
  4901. }
  4902. return ""
  4903. }
  4904. type StyleItemReply struct {
  4905. List []*StyleItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  4906. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4907. XXX_unrecognized []byte `json:"-"`
  4908. XXX_sizecache int32 `json:"-"`
  4909. }
  4910. func (m *StyleItemReply) Reset() { *m = StyleItemReply{} }
  4911. func (m *StyleItemReply) String() string { return proto.CompactTextString(m) }
  4912. func (*StyleItemReply) ProtoMessage() {}
  4913. func (*StyleItemReply) Descriptor() ([]byte, []int) {
  4914. return fileDescriptor_b614324037d99e80, []int{32}
  4915. }
  4916. func (m *StyleItemReply) XXX_Unmarshal(b []byte) error {
  4917. return xxx_messageInfo_StyleItemReply.Unmarshal(m, b)
  4918. }
  4919. func (m *StyleItemReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4920. return xxx_messageInfo_StyleItemReply.Marshal(b, m, deterministic)
  4921. }
  4922. func (m *StyleItemReply) XXX_Merge(src proto.Message) {
  4923. xxx_messageInfo_StyleItemReply.Merge(m, src)
  4924. }
  4925. func (m *StyleItemReply) XXX_Size() int {
  4926. return xxx_messageInfo_StyleItemReply.Size(m)
  4927. }
  4928. func (m *StyleItemReply) XXX_DiscardUnknown() {
  4929. xxx_messageInfo_StyleItemReply.DiscardUnknown(m)
  4930. }
  4931. var xxx_messageInfo_StyleItemReply proto.InternalMessageInfo
  4932. func (m *StyleItemReply) GetList() []*StyleItem {
  4933. if m != nil {
  4934. return m.List
  4935. }
  4936. return nil
  4937. }
  4938. type C2ListRequest struct {
  4939. StyleId string `protobuf:"bytes,1,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  4940. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4941. XXX_unrecognized []byte `json:"-"`
  4942. XXX_sizecache int32 `json:"-"`
  4943. }
  4944. func (m *C2ListRequest) Reset() { *m = C2ListRequest{} }
  4945. func (m *C2ListRequest) String() string { return proto.CompactTextString(m) }
  4946. func (*C2ListRequest) ProtoMessage() {}
  4947. func (*C2ListRequest) Descriptor() ([]byte, []int) {
  4948. return fileDescriptor_b614324037d99e80, []int{33}
  4949. }
  4950. func (m *C2ListRequest) XXX_Unmarshal(b []byte) error {
  4951. return xxx_messageInfo_C2ListRequest.Unmarshal(m, b)
  4952. }
  4953. func (m *C2ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4954. return xxx_messageInfo_C2ListRequest.Marshal(b, m, deterministic)
  4955. }
  4956. func (m *C2ListRequest) XXX_Merge(src proto.Message) {
  4957. xxx_messageInfo_C2ListRequest.Merge(m, src)
  4958. }
  4959. func (m *C2ListRequest) XXX_Size() int {
  4960. return xxx_messageInfo_C2ListRequest.Size(m)
  4961. }
  4962. func (m *C2ListRequest) XXX_DiscardUnknown() {
  4963. xxx_messageInfo_C2ListRequest.DiscardUnknown(m)
  4964. }
  4965. var xxx_messageInfo_C2ListRequest proto.InternalMessageInfo
  4966. func (m *C2ListRequest) GetStyleId() string {
  4967. if m != nil {
  4968. return m.StyleId
  4969. }
  4970. return ""
  4971. }
  4972. type C2ListReply struct {
  4973. List []*C2ListReply_Info `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  4974. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4975. XXX_unrecognized []byte `json:"-"`
  4976. XXX_sizecache int32 `json:"-"`
  4977. }
  4978. func (m *C2ListReply) Reset() { *m = C2ListReply{} }
  4979. func (m *C2ListReply) String() string { return proto.CompactTextString(m) }
  4980. func (*C2ListReply) ProtoMessage() {}
  4981. func (*C2ListReply) Descriptor() ([]byte, []int) {
  4982. return fileDescriptor_b614324037d99e80, []int{34}
  4983. }
  4984. func (m *C2ListReply) XXX_Unmarshal(b []byte) error {
  4985. return xxx_messageInfo_C2ListReply.Unmarshal(m, b)
  4986. }
  4987. func (m *C2ListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4988. return xxx_messageInfo_C2ListReply.Marshal(b, m, deterministic)
  4989. }
  4990. func (m *C2ListReply) XXX_Merge(src proto.Message) {
  4991. xxx_messageInfo_C2ListReply.Merge(m, src)
  4992. }
  4993. func (m *C2ListReply) XXX_Size() int {
  4994. return xxx_messageInfo_C2ListReply.Size(m)
  4995. }
  4996. func (m *C2ListReply) XXX_DiscardUnknown() {
  4997. xxx_messageInfo_C2ListReply.DiscardUnknown(m)
  4998. }
  4999. var xxx_messageInfo_C2ListReply proto.InternalMessageInfo
  5000. func (m *C2ListReply) GetList() []*C2ListReply_Info {
  5001. if m != nil {
  5002. return m.List
  5003. }
  5004. return nil
  5005. }
  5006. type C2ListReply_Info struct {
  5007. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5008. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  5009. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5010. XXX_unrecognized []byte `json:"-"`
  5011. XXX_sizecache int32 `json:"-"`
  5012. }
  5013. func (m *C2ListReply_Info) Reset() { *m = C2ListReply_Info{} }
  5014. func (m *C2ListReply_Info) String() string { return proto.CompactTextString(m) }
  5015. func (*C2ListReply_Info) ProtoMessage() {}
  5016. func (*C2ListReply_Info) Descriptor() ([]byte, []int) {
  5017. return fileDescriptor_b614324037d99e80, []int{34, 0}
  5018. }
  5019. func (m *C2ListReply_Info) XXX_Unmarshal(b []byte) error {
  5020. return xxx_messageInfo_C2ListReply_Info.Unmarshal(m, b)
  5021. }
  5022. func (m *C2ListReply_Info) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5023. return xxx_messageInfo_C2ListReply_Info.Marshal(b, m, deterministic)
  5024. }
  5025. func (m *C2ListReply_Info) XXX_Merge(src proto.Message) {
  5026. xxx_messageInfo_C2ListReply_Info.Merge(m, src)
  5027. }
  5028. func (m *C2ListReply_Info) XXX_Size() int {
  5029. return xxx_messageInfo_C2ListReply_Info.Size(m)
  5030. }
  5031. func (m *C2ListReply_Info) XXX_DiscardUnknown() {
  5032. xxx_messageInfo_C2ListReply_Info.DiscardUnknown(m)
  5033. }
  5034. var xxx_messageInfo_C2ListReply_Info proto.InternalMessageInfo
  5035. func (m *C2ListReply_Info) GetId() int64 {
  5036. if m != nil {
  5037. return m.Id
  5038. }
  5039. return 0
  5040. }
  5041. func (m *C2ListReply_Info) GetName() string {
  5042. if m != nil {
  5043. return m.Name
  5044. }
  5045. return ""
  5046. }
  5047. type UpdateStyleItemRequest struct {
  5048. List []*StyleItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  5049. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5050. XXX_unrecognized []byte `json:"-"`
  5051. XXX_sizecache int32 `json:"-"`
  5052. }
  5053. func (m *UpdateStyleItemRequest) Reset() { *m = UpdateStyleItemRequest{} }
  5054. func (m *UpdateStyleItemRequest) String() string { return proto.CompactTextString(m) }
  5055. func (*UpdateStyleItemRequest) ProtoMessage() {}
  5056. func (*UpdateStyleItemRequest) Descriptor() ([]byte, []int) {
  5057. return fileDescriptor_b614324037d99e80, []int{35}
  5058. }
  5059. func (m *UpdateStyleItemRequest) XXX_Unmarshal(b []byte) error {
  5060. return xxx_messageInfo_UpdateStyleItemRequest.Unmarshal(m, b)
  5061. }
  5062. func (m *UpdateStyleItemRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5063. return xxx_messageInfo_UpdateStyleItemRequest.Marshal(b, m, deterministic)
  5064. }
  5065. func (m *UpdateStyleItemRequest) XXX_Merge(src proto.Message) {
  5066. xxx_messageInfo_UpdateStyleItemRequest.Merge(m, src)
  5067. }
  5068. func (m *UpdateStyleItemRequest) XXX_Size() int {
  5069. return xxx_messageInfo_UpdateStyleItemRequest.Size(m)
  5070. }
  5071. func (m *UpdateStyleItemRequest) XXX_DiscardUnknown() {
  5072. xxx_messageInfo_UpdateStyleItemRequest.DiscardUnknown(m)
  5073. }
  5074. var xxx_messageInfo_UpdateStyleItemRequest proto.InternalMessageInfo
  5075. func (m *UpdateStyleItemRequest) GetList() []*StyleItem {
  5076. if m != nil {
  5077. return m.List
  5078. }
  5079. return nil
  5080. }
  5081. type DeleteMaintainaceRequest struct {
  5082. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5083. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5084. XXX_unrecognized []byte `json:"-"`
  5085. XXX_sizecache int32 `json:"-"`
  5086. }
  5087. func (m *DeleteMaintainaceRequest) Reset() { *m = DeleteMaintainaceRequest{} }
  5088. func (m *DeleteMaintainaceRequest) String() string { return proto.CompactTextString(m) }
  5089. func (*DeleteMaintainaceRequest) ProtoMessage() {}
  5090. func (*DeleteMaintainaceRequest) Descriptor() ([]byte, []int) {
  5091. return fileDescriptor_b614324037d99e80, []int{36}
  5092. }
  5093. func (m *DeleteMaintainaceRequest) XXX_Unmarshal(b []byte) error {
  5094. return xxx_messageInfo_DeleteMaintainaceRequest.Unmarshal(m, b)
  5095. }
  5096. func (m *DeleteMaintainaceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5097. return xxx_messageInfo_DeleteMaintainaceRequest.Marshal(b, m, deterministic)
  5098. }
  5099. func (m *DeleteMaintainaceRequest) XXX_Merge(src proto.Message) {
  5100. xxx_messageInfo_DeleteMaintainaceRequest.Merge(m, src)
  5101. }
  5102. func (m *DeleteMaintainaceRequest) XXX_Size() int {
  5103. return xxx_messageInfo_DeleteMaintainaceRequest.Size(m)
  5104. }
  5105. func (m *DeleteMaintainaceRequest) XXX_DiscardUnknown() {
  5106. xxx_messageInfo_DeleteMaintainaceRequest.DiscardUnknown(m)
  5107. }
  5108. var xxx_messageInfo_DeleteMaintainaceRequest proto.InternalMessageInfo
  5109. func (m *DeleteMaintainaceRequest) GetId() int64 {
  5110. if m != nil {
  5111. return m.Id
  5112. }
  5113. return 0
  5114. }
  5115. type ExportStyleRequest struct {
  5116. TaskName string `protobuf:"bytes,1,opt,name=task_name,json=taskName,proto3" json:"task_name"`
  5117. Fields string `protobuf:"bytes,2,opt,name=fields,proto3" json:"fields"`
  5118. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5119. XXX_unrecognized []byte `json:"-"`
  5120. XXX_sizecache int32 `json:"-"`
  5121. }
  5122. func (m *ExportStyleRequest) Reset() { *m = ExportStyleRequest{} }
  5123. func (m *ExportStyleRequest) String() string { return proto.CompactTextString(m) }
  5124. func (*ExportStyleRequest) ProtoMessage() {}
  5125. func (*ExportStyleRequest) Descriptor() ([]byte, []int) {
  5126. return fileDescriptor_b614324037d99e80, []int{37}
  5127. }
  5128. func (m *ExportStyleRequest) XXX_Unmarshal(b []byte) error {
  5129. return xxx_messageInfo_ExportStyleRequest.Unmarshal(m, b)
  5130. }
  5131. func (m *ExportStyleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5132. return xxx_messageInfo_ExportStyleRequest.Marshal(b, m, deterministic)
  5133. }
  5134. func (m *ExportStyleRequest) XXX_Merge(src proto.Message) {
  5135. xxx_messageInfo_ExportStyleRequest.Merge(m, src)
  5136. }
  5137. func (m *ExportStyleRequest) XXX_Size() int {
  5138. return xxx_messageInfo_ExportStyleRequest.Size(m)
  5139. }
  5140. func (m *ExportStyleRequest) XXX_DiscardUnknown() {
  5141. xxx_messageInfo_ExportStyleRequest.DiscardUnknown(m)
  5142. }
  5143. var xxx_messageInfo_ExportStyleRequest proto.InternalMessageInfo
  5144. func (m *ExportStyleRequest) GetTaskName() string {
  5145. if m != nil {
  5146. return m.TaskName
  5147. }
  5148. return ""
  5149. }
  5150. func (m *ExportStyleRequest) GetFields() string {
  5151. if m != nil {
  5152. return m.Fields
  5153. }
  5154. return ""
  5155. }
  5156. type ExportStyleReply struct {
  5157. ExportId int64 `protobuf:"varint,1,opt,name=export_id,json=exportId,proto3" json:"export_id"`
  5158. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5159. XXX_unrecognized []byte `json:"-"`
  5160. XXX_sizecache int32 `json:"-"`
  5161. }
  5162. func (m *ExportStyleReply) Reset() { *m = ExportStyleReply{} }
  5163. func (m *ExportStyleReply) String() string { return proto.CompactTextString(m) }
  5164. func (*ExportStyleReply) ProtoMessage() {}
  5165. func (*ExportStyleReply) Descriptor() ([]byte, []int) {
  5166. return fileDescriptor_b614324037d99e80, []int{38}
  5167. }
  5168. func (m *ExportStyleReply) XXX_Unmarshal(b []byte) error {
  5169. return xxx_messageInfo_ExportStyleReply.Unmarshal(m, b)
  5170. }
  5171. func (m *ExportStyleReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5172. return xxx_messageInfo_ExportStyleReply.Marshal(b, m, deterministic)
  5173. }
  5174. func (m *ExportStyleReply) XXX_Merge(src proto.Message) {
  5175. xxx_messageInfo_ExportStyleReply.Merge(m, src)
  5176. }
  5177. func (m *ExportStyleReply) XXX_Size() int {
  5178. return xxx_messageInfo_ExportStyleReply.Size(m)
  5179. }
  5180. func (m *ExportStyleReply) XXX_DiscardUnknown() {
  5181. xxx_messageInfo_ExportStyleReply.DiscardUnknown(m)
  5182. }
  5183. var xxx_messageInfo_ExportStyleReply proto.InternalMessageInfo
  5184. func (m *ExportStyleReply) GetExportId() int64 {
  5185. if m != nil {
  5186. return m.ExportId
  5187. }
  5188. return 0
  5189. }
  5190. type ExportStyleTaskList struct {
  5191. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5192. TaskName string `protobuf:"bytes,2,opt,name=task_name,json=taskName,proto3" json:"task_name"`
  5193. Path string `protobuf:"bytes,3,opt,name=path,proto3" json:"path"`
  5194. CreatedAt string `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  5195. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5196. XXX_unrecognized []byte `json:"-"`
  5197. XXX_sizecache int32 `json:"-"`
  5198. }
  5199. func (m *ExportStyleTaskList) Reset() { *m = ExportStyleTaskList{} }
  5200. func (m *ExportStyleTaskList) String() string { return proto.CompactTextString(m) }
  5201. func (*ExportStyleTaskList) ProtoMessage() {}
  5202. func (*ExportStyleTaskList) Descriptor() ([]byte, []int) {
  5203. return fileDescriptor_b614324037d99e80, []int{39}
  5204. }
  5205. func (m *ExportStyleTaskList) XXX_Unmarshal(b []byte) error {
  5206. return xxx_messageInfo_ExportStyleTaskList.Unmarshal(m, b)
  5207. }
  5208. func (m *ExportStyleTaskList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5209. return xxx_messageInfo_ExportStyleTaskList.Marshal(b, m, deterministic)
  5210. }
  5211. func (m *ExportStyleTaskList) XXX_Merge(src proto.Message) {
  5212. xxx_messageInfo_ExportStyleTaskList.Merge(m, src)
  5213. }
  5214. func (m *ExportStyleTaskList) XXX_Size() int {
  5215. return xxx_messageInfo_ExportStyleTaskList.Size(m)
  5216. }
  5217. func (m *ExportStyleTaskList) XXX_DiscardUnknown() {
  5218. xxx_messageInfo_ExportStyleTaskList.DiscardUnknown(m)
  5219. }
  5220. var xxx_messageInfo_ExportStyleTaskList proto.InternalMessageInfo
  5221. func (m *ExportStyleTaskList) GetId() int64 {
  5222. if m != nil {
  5223. return m.Id
  5224. }
  5225. return 0
  5226. }
  5227. func (m *ExportStyleTaskList) GetTaskName() string {
  5228. if m != nil {
  5229. return m.TaskName
  5230. }
  5231. return ""
  5232. }
  5233. func (m *ExportStyleTaskList) GetPath() string {
  5234. if m != nil {
  5235. return m.Path
  5236. }
  5237. return ""
  5238. }
  5239. func (m *ExportStyleTaskList) GetCreatedAt() string {
  5240. if m != nil {
  5241. return m.CreatedAt
  5242. }
  5243. return ""
  5244. }
  5245. type ExportStyleTaskListReply struct {
  5246. List []*ExportStyleTaskList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  5247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5248. XXX_unrecognized []byte `json:"-"`
  5249. XXX_sizecache int32 `json:"-"`
  5250. }
  5251. func (m *ExportStyleTaskListReply) Reset() { *m = ExportStyleTaskListReply{} }
  5252. func (m *ExportStyleTaskListReply) String() string { return proto.CompactTextString(m) }
  5253. func (*ExportStyleTaskListReply) ProtoMessage() {}
  5254. func (*ExportStyleTaskListReply) Descriptor() ([]byte, []int) {
  5255. return fileDescriptor_b614324037d99e80, []int{40}
  5256. }
  5257. func (m *ExportStyleTaskListReply) XXX_Unmarshal(b []byte) error {
  5258. return xxx_messageInfo_ExportStyleTaskListReply.Unmarshal(m, b)
  5259. }
  5260. func (m *ExportStyleTaskListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5261. return xxx_messageInfo_ExportStyleTaskListReply.Marshal(b, m, deterministic)
  5262. }
  5263. func (m *ExportStyleTaskListReply) XXX_Merge(src proto.Message) {
  5264. xxx_messageInfo_ExportStyleTaskListReply.Merge(m, src)
  5265. }
  5266. func (m *ExportStyleTaskListReply) XXX_Size() int {
  5267. return xxx_messageInfo_ExportStyleTaskListReply.Size(m)
  5268. }
  5269. func (m *ExportStyleTaskListReply) XXX_DiscardUnknown() {
  5270. xxx_messageInfo_ExportStyleTaskListReply.DiscardUnknown(m)
  5271. }
  5272. var xxx_messageInfo_ExportStyleTaskListReply proto.InternalMessageInfo
  5273. func (m *ExportStyleTaskListReply) GetList() []*ExportStyleTaskList {
  5274. if m != nil {
  5275. return m.List
  5276. }
  5277. return nil
  5278. }
  5279. type DeleteExportStyleTaskRequest struct {
  5280. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5281. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5282. XXX_unrecognized []byte `json:"-"`
  5283. XXX_sizecache int32 `json:"-"`
  5284. }
  5285. func (m *DeleteExportStyleTaskRequest) Reset() { *m = DeleteExportStyleTaskRequest{} }
  5286. func (m *DeleteExportStyleTaskRequest) String() string { return proto.CompactTextString(m) }
  5287. func (*DeleteExportStyleTaskRequest) ProtoMessage() {}
  5288. func (*DeleteExportStyleTaskRequest) Descriptor() ([]byte, []int) {
  5289. return fileDescriptor_b614324037d99e80, []int{41}
  5290. }
  5291. func (m *DeleteExportStyleTaskRequest) XXX_Unmarshal(b []byte) error {
  5292. return xxx_messageInfo_DeleteExportStyleTaskRequest.Unmarshal(m, b)
  5293. }
  5294. func (m *DeleteExportStyleTaskRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5295. return xxx_messageInfo_DeleteExportStyleTaskRequest.Marshal(b, m, deterministic)
  5296. }
  5297. func (m *DeleteExportStyleTaskRequest) XXX_Merge(src proto.Message) {
  5298. xxx_messageInfo_DeleteExportStyleTaskRequest.Merge(m, src)
  5299. }
  5300. func (m *DeleteExportStyleTaskRequest) XXX_Size() int {
  5301. return xxx_messageInfo_DeleteExportStyleTaskRequest.Size(m)
  5302. }
  5303. func (m *DeleteExportStyleTaskRequest) XXX_DiscardUnknown() {
  5304. xxx_messageInfo_DeleteExportStyleTaskRequest.DiscardUnknown(m)
  5305. }
  5306. var xxx_messageInfo_DeleteExportStyleTaskRequest proto.InternalMessageInfo
  5307. func (m *DeleteExportStyleTaskRequest) GetId() int64 {
  5308. if m != nil {
  5309. return m.Id
  5310. }
  5311. return 0
  5312. }
  5313. type DeleteStyleItemRequest struct {
  5314. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5315. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5316. XXX_unrecognized []byte `json:"-"`
  5317. XXX_sizecache int32 `json:"-"`
  5318. }
  5319. func (m *DeleteStyleItemRequest) Reset() { *m = DeleteStyleItemRequest{} }
  5320. func (m *DeleteStyleItemRequest) String() string { return proto.CompactTextString(m) }
  5321. func (*DeleteStyleItemRequest) ProtoMessage() {}
  5322. func (*DeleteStyleItemRequest) Descriptor() ([]byte, []int) {
  5323. return fileDescriptor_b614324037d99e80, []int{42}
  5324. }
  5325. func (m *DeleteStyleItemRequest) XXX_Unmarshal(b []byte) error {
  5326. return xxx_messageInfo_DeleteStyleItemRequest.Unmarshal(m, b)
  5327. }
  5328. func (m *DeleteStyleItemRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5329. return xxx_messageInfo_DeleteStyleItemRequest.Marshal(b, m, deterministic)
  5330. }
  5331. func (m *DeleteStyleItemRequest) XXX_Merge(src proto.Message) {
  5332. xxx_messageInfo_DeleteStyleItemRequest.Merge(m, src)
  5333. }
  5334. func (m *DeleteStyleItemRequest) XXX_Size() int {
  5335. return xxx_messageInfo_DeleteStyleItemRequest.Size(m)
  5336. }
  5337. func (m *DeleteStyleItemRequest) XXX_DiscardUnknown() {
  5338. xxx_messageInfo_DeleteStyleItemRequest.DiscardUnknown(m)
  5339. }
  5340. var xxx_messageInfo_DeleteStyleItemRequest proto.InternalMessageInfo
  5341. func (m *DeleteStyleItemRequest) GetId() int64 {
  5342. if m != nil {
  5343. return m.Id
  5344. }
  5345. return 0
  5346. }
  5347. type TemplateListRequest struct {
  5348. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
  5349. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5350. XXX_unrecognized []byte `json:"-"`
  5351. XXX_sizecache int32 `json:"-"`
  5352. }
  5353. func (m *TemplateListRequest) Reset() { *m = TemplateListRequest{} }
  5354. func (m *TemplateListRequest) String() string { return proto.CompactTextString(m) }
  5355. func (*TemplateListRequest) ProtoMessage() {}
  5356. func (*TemplateListRequest) Descriptor() ([]byte, []int) {
  5357. return fileDescriptor_b614324037d99e80, []int{43}
  5358. }
  5359. func (m *TemplateListRequest) XXX_Unmarshal(b []byte) error {
  5360. return xxx_messageInfo_TemplateListRequest.Unmarshal(m, b)
  5361. }
  5362. func (m *TemplateListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5363. return xxx_messageInfo_TemplateListRequest.Marshal(b, m, deterministic)
  5364. }
  5365. func (m *TemplateListRequest) XXX_Merge(src proto.Message) {
  5366. xxx_messageInfo_TemplateListRequest.Merge(m, src)
  5367. }
  5368. func (m *TemplateListRequest) XXX_Size() int {
  5369. return xxx_messageInfo_TemplateListRequest.Size(m)
  5370. }
  5371. func (m *TemplateListRequest) XXX_DiscardUnknown() {
  5372. xxx_messageInfo_TemplateListRequest.DiscardUnknown(m)
  5373. }
  5374. var xxx_messageInfo_TemplateListRequest proto.InternalMessageInfo
  5375. func (m *TemplateListRequest) GetName() string {
  5376. if m != nil {
  5377. return m.Name
  5378. }
  5379. return ""
  5380. }
  5381. type Template struct {
  5382. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5383. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  5384. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5385. XXX_unrecognized []byte `json:"-"`
  5386. XXX_sizecache int32 `json:"-"`
  5387. }
  5388. func (m *Template) Reset() { *m = Template{} }
  5389. func (m *Template) String() string { return proto.CompactTextString(m) }
  5390. func (*Template) ProtoMessage() {}
  5391. func (*Template) Descriptor() ([]byte, []int) {
  5392. return fileDescriptor_b614324037d99e80, []int{44}
  5393. }
  5394. func (m *Template) XXX_Unmarshal(b []byte) error {
  5395. return xxx_messageInfo_Template.Unmarshal(m, b)
  5396. }
  5397. func (m *Template) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5398. return xxx_messageInfo_Template.Marshal(b, m, deterministic)
  5399. }
  5400. func (m *Template) XXX_Merge(src proto.Message) {
  5401. xxx_messageInfo_Template.Merge(m, src)
  5402. }
  5403. func (m *Template) XXX_Size() int {
  5404. return xxx_messageInfo_Template.Size(m)
  5405. }
  5406. func (m *Template) XXX_DiscardUnknown() {
  5407. xxx_messageInfo_Template.DiscardUnknown(m)
  5408. }
  5409. var xxx_messageInfo_Template proto.InternalMessageInfo
  5410. func (m *Template) GetId() int64 {
  5411. if m != nil {
  5412. return m.Id
  5413. }
  5414. return 0
  5415. }
  5416. func (m *Template) GetName() string {
  5417. if m != nil {
  5418. return m.Name
  5419. }
  5420. return ""
  5421. }
  5422. type TemplateListReply struct {
  5423. List []*Template `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  5424. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5425. XXX_unrecognized []byte `json:"-"`
  5426. XXX_sizecache int32 `json:"-"`
  5427. }
  5428. func (m *TemplateListReply) Reset() { *m = TemplateListReply{} }
  5429. func (m *TemplateListReply) String() string { return proto.CompactTextString(m) }
  5430. func (*TemplateListReply) ProtoMessage() {}
  5431. func (*TemplateListReply) Descriptor() ([]byte, []int) {
  5432. return fileDescriptor_b614324037d99e80, []int{45}
  5433. }
  5434. func (m *TemplateListReply) XXX_Unmarshal(b []byte) error {
  5435. return xxx_messageInfo_TemplateListReply.Unmarshal(m, b)
  5436. }
  5437. func (m *TemplateListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5438. return xxx_messageInfo_TemplateListReply.Marshal(b, m, deterministic)
  5439. }
  5440. func (m *TemplateListReply) XXX_Merge(src proto.Message) {
  5441. xxx_messageInfo_TemplateListReply.Merge(m, src)
  5442. }
  5443. func (m *TemplateListReply) XXX_Size() int {
  5444. return xxx_messageInfo_TemplateListReply.Size(m)
  5445. }
  5446. func (m *TemplateListReply) XXX_DiscardUnknown() {
  5447. xxx_messageInfo_TemplateListReply.DiscardUnknown(m)
  5448. }
  5449. var xxx_messageInfo_TemplateListReply proto.InternalMessageInfo
  5450. func (m *TemplateListReply) GetList() []*Template {
  5451. if m != nil {
  5452. return m.List
  5453. }
  5454. return nil
  5455. }
  5456. type TemplateDetailListRequest struct {
  5457. Tid int64 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
  5458. // 分页
  5459. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  5460. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  5461. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5462. XXX_unrecognized []byte `json:"-"`
  5463. XXX_sizecache int32 `json:"-"`
  5464. }
  5465. func (m *TemplateDetailListRequest) Reset() { *m = TemplateDetailListRequest{} }
  5466. func (m *TemplateDetailListRequest) String() string { return proto.CompactTextString(m) }
  5467. func (*TemplateDetailListRequest) ProtoMessage() {}
  5468. func (*TemplateDetailListRequest) Descriptor() ([]byte, []int) {
  5469. return fileDescriptor_b614324037d99e80, []int{46}
  5470. }
  5471. func (m *TemplateDetailListRequest) XXX_Unmarshal(b []byte) error {
  5472. return xxx_messageInfo_TemplateDetailListRequest.Unmarshal(m, b)
  5473. }
  5474. func (m *TemplateDetailListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5475. return xxx_messageInfo_TemplateDetailListRequest.Marshal(b, m, deterministic)
  5476. }
  5477. func (m *TemplateDetailListRequest) XXX_Merge(src proto.Message) {
  5478. xxx_messageInfo_TemplateDetailListRequest.Merge(m, src)
  5479. }
  5480. func (m *TemplateDetailListRequest) XXX_Size() int {
  5481. return xxx_messageInfo_TemplateDetailListRequest.Size(m)
  5482. }
  5483. func (m *TemplateDetailListRequest) XXX_DiscardUnknown() {
  5484. xxx_messageInfo_TemplateDetailListRequest.DiscardUnknown(m)
  5485. }
  5486. var xxx_messageInfo_TemplateDetailListRequest proto.InternalMessageInfo
  5487. func (m *TemplateDetailListRequest) GetTid() int64 {
  5488. if m != nil {
  5489. return m.Tid
  5490. }
  5491. return 0
  5492. }
  5493. func (m *TemplateDetailListRequest) GetPageSize() int32 {
  5494. if m != nil {
  5495. return m.PageSize
  5496. }
  5497. return 0
  5498. }
  5499. func (m *TemplateDetailListRequest) GetPage() int32 {
  5500. if m != nil {
  5501. return m.Page
  5502. }
  5503. return 0
  5504. }
  5505. type TemplateDetail struct {
  5506. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  5507. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  5508. StartMile int64 `protobuf:"varint,3,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  5509. StartDate int64 `protobuf:"varint,4,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  5510. MaintainMileMinCycle int64 `protobuf:"varint,5,opt,name=maintain_mile_min_cycle,json=maintainMileMinCycle,proto3" json:"maintain_mile_min_cycle"`
  5511. MaintainDateMinCycle int64 `protobuf:"varint,6,opt,name=maintain_date_min_cycle,json=maintainDateMinCycle,proto3" json:"maintain_date_min_cycle"`
  5512. Tid int64 `protobuf:"varint,7,opt,name=tid,proto3" json:"tid"`
  5513. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5514. XXX_unrecognized []byte `json:"-"`
  5515. XXX_sizecache int32 `json:"-"`
  5516. }
  5517. func (m *TemplateDetail) Reset() { *m = TemplateDetail{} }
  5518. func (m *TemplateDetail) String() string { return proto.CompactTextString(m) }
  5519. func (*TemplateDetail) ProtoMessage() {}
  5520. func (*TemplateDetail) Descriptor() ([]byte, []int) {
  5521. return fileDescriptor_b614324037d99e80, []int{47}
  5522. }
  5523. func (m *TemplateDetail) XXX_Unmarshal(b []byte) error {
  5524. return xxx_messageInfo_TemplateDetail.Unmarshal(m, b)
  5525. }
  5526. func (m *TemplateDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5527. return xxx_messageInfo_TemplateDetail.Marshal(b, m, deterministic)
  5528. }
  5529. func (m *TemplateDetail) XXX_Merge(src proto.Message) {
  5530. xxx_messageInfo_TemplateDetail.Merge(m, src)
  5531. }
  5532. func (m *TemplateDetail) XXX_Size() int {
  5533. return xxx_messageInfo_TemplateDetail.Size(m)
  5534. }
  5535. func (m *TemplateDetail) XXX_DiscardUnknown() {
  5536. xxx_messageInfo_TemplateDetail.DiscardUnknown(m)
  5537. }
  5538. var xxx_messageInfo_TemplateDetail proto.InternalMessageInfo
  5539. func (m *TemplateDetail) GetId() int64 {
  5540. if m != nil {
  5541. return m.Id
  5542. }
  5543. return 0
  5544. }
  5545. func (m *TemplateDetail) GetName() string {
  5546. if m != nil {
  5547. return m.Name
  5548. }
  5549. return ""
  5550. }
  5551. func (m *TemplateDetail) GetStartMile() int64 {
  5552. if m != nil {
  5553. return m.StartMile
  5554. }
  5555. return 0
  5556. }
  5557. func (m *TemplateDetail) GetStartDate() int64 {
  5558. if m != nil {
  5559. return m.StartDate
  5560. }
  5561. return 0
  5562. }
  5563. func (m *TemplateDetail) GetMaintainMileMinCycle() int64 {
  5564. if m != nil {
  5565. return m.MaintainMileMinCycle
  5566. }
  5567. return 0
  5568. }
  5569. func (m *TemplateDetail) GetMaintainDateMinCycle() int64 {
  5570. if m != nil {
  5571. return m.MaintainDateMinCycle
  5572. }
  5573. return 0
  5574. }
  5575. func (m *TemplateDetail) GetTid() int64 {
  5576. if m != nil {
  5577. return m.Tid
  5578. }
  5579. return 0
  5580. }
  5581. type TemplateDetailListReply struct {
  5582. List []*TemplateDetail `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  5583. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  5584. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5585. XXX_unrecognized []byte `json:"-"`
  5586. XXX_sizecache int32 `json:"-"`
  5587. }
  5588. func (m *TemplateDetailListReply) Reset() { *m = TemplateDetailListReply{} }
  5589. func (m *TemplateDetailListReply) String() string { return proto.CompactTextString(m) }
  5590. func (*TemplateDetailListReply) ProtoMessage() {}
  5591. func (*TemplateDetailListReply) Descriptor() ([]byte, []int) {
  5592. return fileDescriptor_b614324037d99e80, []int{48}
  5593. }
  5594. func (m *TemplateDetailListReply) XXX_Unmarshal(b []byte) error {
  5595. return xxx_messageInfo_TemplateDetailListReply.Unmarshal(m, b)
  5596. }
  5597. func (m *TemplateDetailListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5598. return xxx_messageInfo_TemplateDetailListReply.Marshal(b, m, deterministic)
  5599. }
  5600. func (m *TemplateDetailListReply) XXX_Merge(src proto.Message) {
  5601. xxx_messageInfo_TemplateDetailListReply.Merge(m, src)
  5602. }
  5603. func (m *TemplateDetailListReply) XXX_Size() int {
  5604. return xxx_messageInfo_TemplateDetailListReply.Size(m)
  5605. }
  5606. func (m *TemplateDetailListReply) XXX_DiscardUnknown() {
  5607. xxx_messageInfo_TemplateDetailListReply.DiscardUnknown(m)
  5608. }
  5609. var xxx_messageInfo_TemplateDetailListReply proto.InternalMessageInfo
  5610. func (m *TemplateDetailListReply) GetList() []*TemplateDetail {
  5611. if m != nil {
  5612. return m.List
  5613. }
  5614. return nil
  5615. }
  5616. func (m *TemplateDetailListReply) GetTotal() int64 {
  5617. if m != nil {
  5618. return m.Total
  5619. }
  5620. return 0
  5621. }
  5622. type TemplateDetailRequest struct {
  5623. Tid int64 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
  5624. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5625. XXX_unrecognized []byte `json:"-"`
  5626. XXX_sizecache int32 `json:"-"`
  5627. }
  5628. func (m *TemplateDetailRequest) Reset() { *m = TemplateDetailRequest{} }
  5629. func (m *TemplateDetailRequest) String() string { return proto.CompactTextString(m) }
  5630. func (*TemplateDetailRequest) ProtoMessage() {}
  5631. func (*TemplateDetailRequest) Descriptor() ([]byte, []int) {
  5632. return fileDescriptor_b614324037d99e80, []int{49}
  5633. }
  5634. func (m *TemplateDetailRequest) XXX_Unmarshal(b []byte) error {
  5635. return xxx_messageInfo_TemplateDetailRequest.Unmarshal(m, b)
  5636. }
  5637. func (m *TemplateDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5638. return xxx_messageInfo_TemplateDetailRequest.Marshal(b, m, deterministic)
  5639. }
  5640. func (m *TemplateDetailRequest) XXX_Merge(src proto.Message) {
  5641. xxx_messageInfo_TemplateDetailRequest.Merge(m, src)
  5642. }
  5643. func (m *TemplateDetailRequest) XXX_Size() int {
  5644. return xxx_messageInfo_TemplateDetailRequest.Size(m)
  5645. }
  5646. func (m *TemplateDetailRequest) XXX_DiscardUnknown() {
  5647. xxx_messageInfo_TemplateDetailRequest.DiscardUnknown(m)
  5648. }
  5649. var xxx_messageInfo_TemplateDetailRequest proto.InternalMessageInfo
  5650. func (m *TemplateDetailRequest) GetTid() int64 {
  5651. if m != nil {
  5652. return m.Tid
  5653. }
  5654. return 0
  5655. }
  5656. type TemplateDetailReply struct {
  5657. // 保养
  5658. Maintainance []*MaintainItem `protobuf:"bytes,1,rep,name=maintainance,proto3" json:"maintainance"`
  5659. // 维修
  5660. Repair []*MaintainItem `protobuf:"bytes,2,rep,name=repair,proto3" json:"repair"`
  5661. // 清洗
  5662. Wash []*MaintainItem `protobuf:"bytes,3,rep,name=wash,proto3" json:"wash"`
  5663. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  5664. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5665. XXX_unrecognized []byte `json:"-"`
  5666. XXX_sizecache int32 `json:"-"`
  5667. }
  5668. func (m *TemplateDetailReply) Reset() { *m = TemplateDetailReply{} }
  5669. func (m *TemplateDetailReply) String() string { return proto.CompactTextString(m) }
  5670. func (*TemplateDetailReply) ProtoMessage() {}
  5671. func (*TemplateDetailReply) Descriptor() ([]byte, []int) {
  5672. return fileDescriptor_b614324037d99e80, []int{50}
  5673. }
  5674. func (m *TemplateDetailReply) XXX_Unmarshal(b []byte) error {
  5675. return xxx_messageInfo_TemplateDetailReply.Unmarshal(m, b)
  5676. }
  5677. func (m *TemplateDetailReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5678. return xxx_messageInfo_TemplateDetailReply.Marshal(b, m, deterministic)
  5679. }
  5680. func (m *TemplateDetailReply) XXX_Merge(src proto.Message) {
  5681. xxx_messageInfo_TemplateDetailReply.Merge(m, src)
  5682. }
  5683. func (m *TemplateDetailReply) XXX_Size() int {
  5684. return xxx_messageInfo_TemplateDetailReply.Size(m)
  5685. }
  5686. func (m *TemplateDetailReply) XXX_DiscardUnknown() {
  5687. xxx_messageInfo_TemplateDetailReply.DiscardUnknown(m)
  5688. }
  5689. var xxx_messageInfo_TemplateDetailReply proto.InternalMessageInfo
  5690. func (m *TemplateDetailReply) GetMaintainance() []*MaintainItem {
  5691. if m != nil {
  5692. return m.Maintainance
  5693. }
  5694. return nil
  5695. }
  5696. func (m *TemplateDetailReply) GetRepair() []*MaintainItem {
  5697. if m != nil {
  5698. return m.Repair
  5699. }
  5700. return nil
  5701. }
  5702. func (m *TemplateDetailReply) GetWash() []*MaintainItem {
  5703. if m != nil {
  5704. return m.Wash
  5705. }
  5706. return nil
  5707. }
  5708. func (m *TemplateDetailReply) GetName() string {
  5709. if m != nil {
  5710. return m.Name
  5711. }
  5712. return ""
  5713. }
  5714. type AddTemplateDetailRequest struct {
  5715. Tid int64 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
  5716. ItemId int64 `protobuf:"varint,2,opt,name=item_id,json=itemId,proto3" json:"item_id"`
  5717. StartMile int64 `protobuf:"varint,3,opt,name=start_mile,json=startMile,proto3" json:"start_mile"`
  5718. StartDate int64 `protobuf:"varint,4,opt,name=start_date,json=startDate,proto3" json:"start_date"`
  5719. MileCycle int64 `protobuf:"varint,5,opt,name=mile_cycle,json=mileCycle,proto3" json:"mile_cycle"`
  5720. DateCycle int64 `protobuf:"varint,6,opt,name=date_cycle,json=dateCycle,proto3" json:"date_cycle"`
  5721. StyleId string `protobuf:"bytes,7,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  5722. Name string `protobuf:"bytes,8,opt,name=name,proto3" json:"name"`
  5723. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5724. XXX_unrecognized []byte `json:"-"`
  5725. XXX_sizecache int32 `json:"-"`
  5726. }
  5727. func (m *AddTemplateDetailRequest) Reset() { *m = AddTemplateDetailRequest{} }
  5728. func (m *AddTemplateDetailRequest) String() string { return proto.CompactTextString(m) }
  5729. func (*AddTemplateDetailRequest) ProtoMessage() {}
  5730. func (*AddTemplateDetailRequest) Descriptor() ([]byte, []int) {
  5731. return fileDescriptor_b614324037d99e80, []int{51}
  5732. }
  5733. func (m *AddTemplateDetailRequest) XXX_Unmarshal(b []byte) error {
  5734. return xxx_messageInfo_AddTemplateDetailRequest.Unmarshal(m, b)
  5735. }
  5736. func (m *AddTemplateDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5737. return xxx_messageInfo_AddTemplateDetailRequest.Marshal(b, m, deterministic)
  5738. }
  5739. func (m *AddTemplateDetailRequest) XXX_Merge(src proto.Message) {
  5740. xxx_messageInfo_AddTemplateDetailRequest.Merge(m, src)
  5741. }
  5742. func (m *AddTemplateDetailRequest) XXX_Size() int {
  5743. return xxx_messageInfo_AddTemplateDetailRequest.Size(m)
  5744. }
  5745. func (m *AddTemplateDetailRequest) XXX_DiscardUnknown() {
  5746. xxx_messageInfo_AddTemplateDetailRequest.DiscardUnknown(m)
  5747. }
  5748. var xxx_messageInfo_AddTemplateDetailRequest proto.InternalMessageInfo
  5749. func (m *AddTemplateDetailRequest) GetTid() int64 {
  5750. if m != nil {
  5751. return m.Tid
  5752. }
  5753. return 0
  5754. }
  5755. func (m *AddTemplateDetailRequest) GetItemId() int64 {
  5756. if m != nil {
  5757. return m.ItemId
  5758. }
  5759. return 0
  5760. }
  5761. func (m *AddTemplateDetailRequest) GetStartMile() int64 {
  5762. if m != nil {
  5763. return m.StartMile
  5764. }
  5765. return 0
  5766. }
  5767. func (m *AddTemplateDetailRequest) GetStartDate() int64 {
  5768. if m != nil {
  5769. return m.StartDate
  5770. }
  5771. return 0
  5772. }
  5773. func (m *AddTemplateDetailRequest) GetMileCycle() int64 {
  5774. if m != nil {
  5775. return m.MileCycle
  5776. }
  5777. return 0
  5778. }
  5779. func (m *AddTemplateDetailRequest) GetDateCycle() int64 {
  5780. if m != nil {
  5781. return m.DateCycle
  5782. }
  5783. return 0
  5784. }
  5785. func (m *AddTemplateDetailRequest) GetStyleId() string {
  5786. if m != nil {
  5787. return m.StyleId
  5788. }
  5789. return ""
  5790. }
  5791. func (m *AddTemplateDetailRequest) GetName() string {
  5792. if m != nil {
  5793. return m.Name
  5794. }
  5795. return ""
  5796. }
  5797. type AddTemplateDetailReply struct {
  5798. Tid int64 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
  5799. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5800. XXX_unrecognized []byte `json:"-"`
  5801. XXX_sizecache int32 `json:"-"`
  5802. }
  5803. func (m *AddTemplateDetailReply) Reset() { *m = AddTemplateDetailReply{} }
  5804. func (m *AddTemplateDetailReply) String() string { return proto.CompactTextString(m) }
  5805. func (*AddTemplateDetailReply) ProtoMessage() {}
  5806. func (*AddTemplateDetailReply) Descriptor() ([]byte, []int) {
  5807. return fileDescriptor_b614324037d99e80, []int{52}
  5808. }
  5809. func (m *AddTemplateDetailReply) XXX_Unmarshal(b []byte) error {
  5810. return xxx_messageInfo_AddTemplateDetailReply.Unmarshal(m, b)
  5811. }
  5812. func (m *AddTemplateDetailReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5813. return xxx_messageInfo_AddTemplateDetailReply.Marshal(b, m, deterministic)
  5814. }
  5815. func (m *AddTemplateDetailReply) XXX_Merge(src proto.Message) {
  5816. xxx_messageInfo_AddTemplateDetailReply.Merge(m, src)
  5817. }
  5818. func (m *AddTemplateDetailReply) XXX_Size() int {
  5819. return xxx_messageInfo_AddTemplateDetailReply.Size(m)
  5820. }
  5821. func (m *AddTemplateDetailReply) XXX_DiscardUnknown() {
  5822. xxx_messageInfo_AddTemplateDetailReply.DiscardUnknown(m)
  5823. }
  5824. var xxx_messageInfo_AddTemplateDetailReply proto.InternalMessageInfo
  5825. func (m *AddTemplateDetailReply) GetTid() int64 {
  5826. if m != nil {
  5827. return m.Tid
  5828. }
  5829. return 0
  5830. }
  5831. type ChooseTemplateDetailRequest struct {
  5832. Tid int64 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
  5833. StyleId string `protobuf:"bytes,2,opt,name=style_id,json=styleId,proto3" json:"style_id"`
  5834. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5835. XXX_unrecognized []byte `json:"-"`
  5836. XXX_sizecache int32 `json:"-"`
  5837. }
  5838. func (m *ChooseTemplateDetailRequest) Reset() { *m = ChooseTemplateDetailRequest{} }
  5839. func (m *ChooseTemplateDetailRequest) String() string { return proto.CompactTextString(m) }
  5840. func (*ChooseTemplateDetailRequest) ProtoMessage() {}
  5841. func (*ChooseTemplateDetailRequest) Descriptor() ([]byte, []int) {
  5842. return fileDescriptor_b614324037d99e80, []int{53}
  5843. }
  5844. func (m *ChooseTemplateDetailRequest) XXX_Unmarshal(b []byte) error {
  5845. return xxx_messageInfo_ChooseTemplateDetailRequest.Unmarshal(m, b)
  5846. }
  5847. func (m *ChooseTemplateDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5848. return xxx_messageInfo_ChooseTemplateDetailRequest.Marshal(b, m, deterministic)
  5849. }
  5850. func (m *ChooseTemplateDetailRequest) XXX_Merge(src proto.Message) {
  5851. xxx_messageInfo_ChooseTemplateDetailRequest.Merge(m, src)
  5852. }
  5853. func (m *ChooseTemplateDetailRequest) XXX_Size() int {
  5854. return xxx_messageInfo_ChooseTemplateDetailRequest.Size(m)
  5855. }
  5856. func (m *ChooseTemplateDetailRequest) XXX_DiscardUnknown() {
  5857. xxx_messageInfo_ChooseTemplateDetailRequest.DiscardUnknown(m)
  5858. }
  5859. var xxx_messageInfo_ChooseTemplateDetailRequest proto.InternalMessageInfo
  5860. func (m *ChooseTemplateDetailRequest) GetTid() int64 {
  5861. if m != nil {
  5862. return m.Tid
  5863. }
  5864. return 0
  5865. }
  5866. func (m *ChooseTemplateDetailRequest) GetStyleId() string {
  5867. if m != nil {
  5868. return m.StyleId
  5869. }
  5870. return ""
  5871. }
  5872. type TemplateItemListRequest struct {
  5873. ItemType int64 `protobuf:"varint,1,opt,name=item_type,json=itemType,proto3" json:"item_type"`
  5874. Tid int64 `protobuf:"varint,2,opt,name=tid,proto3" json:"tid"`
  5875. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5876. XXX_unrecognized []byte `json:"-"`
  5877. XXX_sizecache int32 `json:"-"`
  5878. }
  5879. func (m *TemplateItemListRequest) Reset() { *m = TemplateItemListRequest{} }
  5880. func (m *TemplateItemListRequest) String() string { return proto.CompactTextString(m) }
  5881. func (*TemplateItemListRequest) ProtoMessage() {}
  5882. func (*TemplateItemListRequest) Descriptor() ([]byte, []int) {
  5883. return fileDescriptor_b614324037d99e80, []int{54}
  5884. }
  5885. func (m *TemplateItemListRequest) XXX_Unmarshal(b []byte) error {
  5886. return xxx_messageInfo_TemplateItemListRequest.Unmarshal(m, b)
  5887. }
  5888. func (m *TemplateItemListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5889. return xxx_messageInfo_TemplateItemListRequest.Marshal(b, m, deterministic)
  5890. }
  5891. func (m *TemplateItemListRequest) XXX_Merge(src proto.Message) {
  5892. xxx_messageInfo_TemplateItemListRequest.Merge(m, src)
  5893. }
  5894. func (m *TemplateItemListRequest) XXX_Size() int {
  5895. return xxx_messageInfo_TemplateItemListRequest.Size(m)
  5896. }
  5897. func (m *TemplateItemListRequest) XXX_DiscardUnknown() {
  5898. xxx_messageInfo_TemplateItemListRequest.DiscardUnknown(m)
  5899. }
  5900. var xxx_messageInfo_TemplateItemListRequest proto.InternalMessageInfo
  5901. func (m *TemplateItemListRequest) GetItemType() int64 {
  5902. if m != nil {
  5903. return m.ItemType
  5904. }
  5905. return 0
  5906. }
  5907. func (m *TemplateItemListRequest) GetTid() int64 {
  5908. if m != nil {
  5909. return m.Tid
  5910. }
  5911. return 0
  5912. }
  5913. func init() {
  5914. proto.RegisterType((*BrandListRequest)(nil), "v1.BrandListRequest")
  5915. proto.RegisterType((*BrandList)(nil), "v1.BrandList")
  5916. proto.RegisterType((*BrandListReply)(nil), "v1.BrandListReply")
  5917. proto.RegisterType((*SearchRequest)(nil), "v1.SearchRequest")
  5918. proto.RegisterType((*SearchList)(nil), "v1.SearchList")
  5919. proto.RegisterType((*SearchReply)(nil), "v1.SearchReply")
  5920. proto.RegisterType((*UpdateSYBrandRequest)(nil), "v1.UpdateSYBrandRequest")
  5921. proto.RegisterType((*GetMakerRequest)(nil), "v1.GetMakerRequest")
  5922. proto.RegisterType((*MakerList)(nil), "v1.MakerList")
  5923. proto.RegisterType((*GetMakerReply)(nil), "v1.GetMakerReply")
  5924. proto.RegisterType((*UpdateMakerRequest)(nil), "v1.UpdateMakerRequest")
  5925. proto.RegisterType((*EmptyReply)(nil), "v1.EmptyReply")
  5926. proto.RegisterType((*SeriesListRequest)(nil), "v1.SeriesListRequest")
  5927. proto.RegisterType((*SeriesList)(nil), "v1.SeriesList")
  5928. proto.RegisterType((*SeriesListReply)(nil), "v1.SeriesListReply")
  5929. proto.RegisterType((*UpdateSeriesRequest)(nil), "v1.UpdateSeriesRequest")
  5930. proto.RegisterType((*StyleListRequest)(nil), "v1.StyleListRequest")
  5931. proto.RegisterType((*StyleList)(nil), "v1.StyleList")
  5932. proto.RegisterType((*StyleListReply)(nil), "v1.StyleListReply")
  5933. proto.RegisterType((*UpdateStyleRequest)(nil), "v1.UpdateStyleRequest")
  5934. proto.RegisterType((*StyleInfoRequest)(nil), "v1.StyleInfoRequest")
  5935. proto.RegisterType((*StyleInfoReply)(nil), "v1.StyleInfoReply")
  5936. proto.RegisterType((*StyleInfoReply_Aircondition)(nil), "v1.StyleInfoReply.Aircondition")
  5937. proto.RegisterType((*StyleInfoReply_Basic)(nil), "v1.StyleInfoReply.Basic")
  5938. proto.RegisterType((*StyleInfoReply_Body)(nil), "v1.StyleInfoReply.Body")
  5939. proto.RegisterType((*StyleInfoReply_Chassis)(nil), "v1.StyleInfoReply.Chassis")
  5940. proto.RegisterType((*StyleInfoReply_Control)(nil), "v1.StyleInfoReply.Control")
  5941. proto.RegisterType((*StyleInfoReply_Electric)(nil), "v1.StyleInfoReply.Electric")
  5942. proto.RegisterType((*StyleInfoReply_Engine)(nil), "v1.StyleInfoReply.Engine")
  5943. proto.RegisterType((*StyleInfoReply_External)(nil), "v1.StyleInfoReply.External")
  5944. proto.RegisterType((*StyleInfoReply_Gearbox)(nil), "v1.StyleInfoReply.Gearbox")
  5945. proto.RegisterType((*StyleInfoReply_Intelligent)(nil), "v1.StyleInfoReply.Intelligent")
  5946. proto.RegisterType((*StyleInfoReply_Internal)(nil), "v1.StyleInfoReply.Internal")
  5947. proto.RegisterType((*StyleInfoReply_Light)(nil), "v1.StyleInfoReply.Light")
  5948. proto.RegisterType((*StyleInfoReply_Media)(nil), "v1.StyleInfoReply.Media")
  5949. proto.RegisterType((*StyleInfoReply_Optional)(nil), "v1.StyleInfoReply.Optional")
  5950. proto.RegisterType((*StyleInfoReply_Rearview)(nil), "v1.StyleInfoReply.Rearview")
  5951. proto.RegisterType((*StyleInfoReply_Safety)(nil), "v1.StyleInfoReply.Safety")
  5952. proto.RegisterType((*StyleInfoReply_Seat)(nil), "v1.StyleInfoReply.Seat")
  5953. proto.RegisterType((*StyleInfoReply_Wheelbrake)(nil), "v1.StyleInfoReply.Wheelbrake")
  5954. proto.RegisterType((*UpdateStyleInfoRequest)(nil), "v1.UpdateStyleInfoRequest")
  5955. proto.RegisterType((*MaintainManualRequest)(nil), "v1.MaintainManualRequest")
  5956. proto.RegisterType((*MaintainItem)(nil), "v1.MaintainItem")
  5957. proto.RegisterType((*MaintainManualReply)(nil), "v1.MaintainManualReply")
  5958. proto.RegisterType((*ItemListRequest)(nil), "v1.ItemListRequest")
  5959. proto.RegisterType((*ItemListReply)(nil), "v1.ItemListReply")
  5960. proto.RegisterType((*ItemListReply_Item)(nil), "v1.ItemListReply.Item")
  5961. proto.RegisterType((*UpdateMaintainManualRequest)(nil), "v1.UpdateMaintainManualRequest")
  5962. proto.RegisterType((*MaintainManualInfoRequest)(nil), "v1.MaintainManualInfoRequest")
  5963. proto.RegisterType((*MaintainManualInfoReply)(nil), "v1.MaintainManualInfoReply")
  5964. proto.RegisterType((*MaintainManualInfoReply_Wash)(nil), "v1.MaintainManualInfoReply.Wash")
  5965. proto.RegisterType((*MaintainManualInfoReply_Repair)(nil), "v1.MaintainManualInfoReply.Repair")
  5966. proto.RegisterType((*MaintainManualInfoReply_MaintainItem)(nil), "v1.MaintainManualInfoReply.MaintainItem")
  5967. proto.RegisterType((*MaintainManualInfoReply_Items)(nil), "v1.MaintainManualInfoReply.Items")
  5968. proto.RegisterType((*MaintainManualInfoReply_Maintain)(nil), "v1.MaintainManualInfoReply.Maintain")
  5969. proto.RegisterType((*MaintainManualInfoReply_Cycle)(nil), "v1.MaintainManualInfoReply.Cycle")
  5970. proto.RegisterType((*StyleItem)(nil), "v1.StyleItem")
  5971. proto.RegisterType((*StyleItemReply)(nil), "v1.StyleItemReply")
  5972. proto.RegisterType((*C2ListRequest)(nil), "v1.C2ListRequest")
  5973. proto.RegisterType((*C2ListReply)(nil), "v1.C2ListReply")
  5974. proto.RegisterType((*C2ListReply_Info)(nil), "v1.C2ListReply.Info")
  5975. proto.RegisterType((*UpdateStyleItemRequest)(nil), "v1.UpdateStyleItemRequest")
  5976. proto.RegisterType((*DeleteMaintainaceRequest)(nil), "v1.DeleteMaintainaceRequest")
  5977. proto.RegisterType((*ExportStyleRequest)(nil), "v1.ExportStyleRequest")
  5978. proto.RegisterType((*ExportStyleReply)(nil), "v1.ExportStyleReply")
  5979. proto.RegisterType((*ExportStyleTaskList)(nil), "v1.ExportStyleTaskList")
  5980. proto.RegisterType((*ExportStyleTaskListReply)(nil), "v1.ExportStyleTaskListReply")
  5981. proto.RegisterType((*DeleteExportStyleTaskRequest)(nil), "v1.DeleteExportStyleTaskRequest")
  5982. proto.RegisterType((*DeleteStyleItemRequest)(nil), "v1.DeleteStyleItemRequest")
  5983. proto.RegisterType((*TemplateListRequest)(nil), "v1.TemplateListRequest")
  5984. proto.RegisterType((*Template)(nil), "v1.Template")
  5985. proto.RegisterType((*TemplateListReply)(nil), "v1.TemplateListReply")
  5986. proto.RegisterType((*TemplateDetailListRequest)(nil), "v1.TemplateDetailListRequest")
  5987. proto.RegisterType((*TemplateDetail)(nil), "v1.TemplateDetail")
  5988. proto.RegisterType((*TemplateDetailListReply)(nil), "v1.TemplateDetailListReply")
  5989. proto.RegisterType((*TemplateDetailRequest)(nil), "v1.TemplateDetailRequest")
  5990. proto.RegisterType((*TemplateDetailReply)(nil), "v1.TemplateDetailReply")
  5991. proto.RegisterType((*AddTemplateDetailRequest)(nil), "v1.AddTemplateDetailRequest")
  5992. proto.RegisterType((*AddTemplateDetailReply)(nil), "v1.AddTemplateDetailReply")
  5993. proto.RegisterType((*ChooseTemplateDetailRequest)(nil), "v1.ChooseTemplateDetailRequest")
  5994. proto.RegisterType((*TemplateItemListRequest)(nil), "v1.TemplateItemListRequest")
  5995. }
  5996. func init() { proto.RegisterFile("vehicle_style.proto", fileDescriptor_b614324037d99e80) }
  5997. var fileDescriptor_b614324037d99e80 = []byte{
  5998. // 7112 bytes of a gzipped FileDescriptorProto
  5999. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcd, 0x6f, 0x24, 0xc9,
  6000. 0x75, 0x27, 0xf8, 0xcd, 0x0a, 0x16, 0xd9, 0x64, 0x92, 0xdd, 0x2c, 0x16, 0xfb, 0xb3, 0x66, 0x34,
  6001. 0xdb, 0xea, 0x99, 0xe9, 0x99, 0xa1, 0x34, 0xd2, 0x48, 0x1a, 0xad, 0xc4, 0x26, 0xbb, 0x7b, 0xb8,
  6002. 0x6a, 0x4e, 0x37, 0xaa, 0xa8, 0x69, 0x48, 0x0b, 0x6c, 0x22, 0x98, 0x19, 0x55, 0x15, 0xcb, 0xfc,
  6003. 0x52, 0x64, 0x16, 0x39, 0x35, 0xa7, 0x05, 0x74, 0xde, 0x5d, 0x60, 0x81, 0x05, 0x16, 0xd8, 0xbd,
  6004. 0xed, 0x69, 0x2f, 0xbb, 0x7b, 0xf1, 0x49, 0x86, 0xff, 0x04, 0x1d, 0x2c, 0xc0, 0x17, 0x9f, 0xec,
  6005. 0x9b, 0x61, 0xc3, 0xb0, 0x0d, 0x5f, 0x0d, 0x1b, 0xef, 0x23, 0x22, 0x33, 0x8b, 0x45, 0x6a, 0x46,
  6006. 0x16, 0x60, 0x41, 0x3e, 0x31, 0xeb, 0xbd, 0x5f, 0x44, 0x46, 0xbc, 0xf7, 0xe2, 0x7d, 0x44, 0x44,
  6007. 0x52, 0x6c, 0x9e, 0xab, 0xa1, 0x0e, 0x22, 0xe5, 0xe7, 0xc5, 0x38, 0x52, 0x8f, 0x33, 0x93, 0x16,
  6008. 0xa9, 0x37, 0x7b, 0xfe, 0x41, 0xe7, 0xaf, 0x67, 0xc4, 0xfa, 0x13, 0x23, 0x93, 0xf0, 0x85, 0xce,
  6009. 0x8b, 0xae, 0xfa, 0xd9, 0x48, 0xe5, 0x85, 0x77, 0x47, 0x88, 0x53, 0xa0, 0xf9, 0x89, 0x8c, 0x55,
  6010. 0x6b, 0xe6, 0xfe, 0xcc, 0xc3, 0x46, 0xb7, 0x81, 0x94, 0x4f, 0x65, 0xac, 0xbc, 0x96, 0x58, 0xd2,
  6011. 0x89, 0x2e, 0xb4, 0x8c, 0x5a, 0xb3, 0xc8, 0xb3, 0x3f, 0xbd, 0x6d, 0xb1, 0x34, 0x94, 0xb9, 0xaf,
  6012. 0xe3, 0x41, 0x6b, 0xee, 0xfe, 0xcc, 0xc3, 0x85, 0xee, 0xe2, 0x50, 0xe6, 0x47, 0xf1, 0xc0, 0xbb,
  6013. 0x25, 0x16, 0xf3, 0x42, 0x16, 0xa3, 0xbc, 0x35, 0x4f, 0x74, 0xfa, 0xe5, 0xed, 0x8a, 0x46, 0x26,
  6014. 0x07, 0xca, 0xcf, 0xf5, 0x17, 0xaa, 0xb5, 0x80, 0xac, 0x65, 0x20, 0xf4, 0xf4, 0x17, 0xca, 0xf3,
  6015. 0xc4, 0x3c, 0x3c, 0xb7, 0x16, 0x91, 0x8e, 0xcf, 0xde, 0x8e, 0x58, 0xa6, 0xa1, 0xe9, 0xb0, 0xb5,
  6016. 0x44, 0x2f, 0xc7, 0xdf, 0x47, 0xa1, 0xf7, 0xa6, 0x58, 0x4b, 0xa3, 0xd0, 0xaf, 0x8c, 0x7c, 0x19,
  6017. 0x01, 0xcd, 0x34, 0x0a, 0x9f, 0xd8, 0xc1, 0x77, 0xfe, 0x7e, 0x46, 0x34, 0xdc, 0x84, 0xbd, 0x35,
  6018. 0x31, 0xab, 0x43, 0x9c, 0xe1, 0x5c, 0x77, 0x56, 0x87, 0xd7, 0x4c, 0xad, 0x2e, 0x93, 0xb9, 0x49,
  6019. 0x99, 0x54, 0xc7, 0x35, 0x5f, 0x1f, 0xd7, 0x2d, 0xb1, 0x78, 0xa1, 0xf4, 0x60, 0x58, 0xe0, 0x04,
  6020. 0xe7, 0xba, 0xfc, 0xab, 0x2a, 0xac, 0x45, 0x62, 0x5c, 0x12, 0xd6, 0x12, 0xd1, 0x59, 0x58, 0x5b,
  6021. 0x62, 0x41, 0xc7, 0x20, 0x10, 0x9a, 0x17, 0xfd, 0x98, 0x32, 0xed, 0xc6, 0x94, 0x69, 0xff, 0xc3,
  6022. 0x8c, 0x58, 0xab, 0xe8, 0x39, 0x8b, 0xc6, 0xde, 0x03, 0xd1, 0x0c, 0x46, 0xc6, 0xa8, 0xa4, 0xf0,
  6023. 0x51, 0xcc, 0x24, 0x85, 0x15, 0xa6, 0xbd, 0x62, 0x69, 0x67, 0xca, 0x10, 0x7b, 0x16, 0xd9, 0x4b,
  6024. 0x99, 0x32, 0xc8, 0xda, 0x12, 0x0b, 0x45, 0x5a, 0xc8, 0x08, 0x45, 0x31, 0xd7, 0xa5, 0x1f, 0x20,
  6025. 0xa5, 0xbe, 0x36, 0x39, 0xf7, 0x38, 0x8f, 0xac, 0x06, 0x52, 0xb0, 0xd1, 0xae, 0x68, 0x44, 0xd2,
  6026. 0x72, 0x49, 0x1a, 0xcb, 0x40, 0xb0, 0xcc, 0xcc, 0xa8, 0x73, 0xdf, 0xe9, 0x7c, 0xae, 0xbb, 0x0c,
  6027. 0x04, 0xcb, 0x4c, 0xd4, 0xe7, 0xdc, 0x92, 0xc4, 0xb2, 0x0c, 0x04, 0x64, 0x3e, 0x10, 0xf3, 0x91,
  6028. 0xce, 0x8b, 0xd6, 0xf2, 0xfd, 0xb9, 0x87, 0x2b, 0x7b, 0xab, 0x8f, 0xcf, 0x3f, 0x78, 0x5c, 0xce,
  6029. 0x15, 0x59, 0x9d, 0xff, 0x32, 0x23, 0x56, 0x7b, 0x4a, 0x9a, 0x60, 0x68, 0x8d, 0xdc, 0x13, 0xf3,
  6030. 0xc5, 0x38, 0xa3, 0x69, 0x2f, 0x74, 0xf1, 0x19, 0x25, 0x8f, 0x20, 0xd6, 0x3e, 0xff, 0xaa, 0x69,
  6031. 0x77, 0xae, 0xae, 0xdd, 0x1d, 0xb1, 0x1c, 0xcb, 0x33, 0x65, 0x2a, 0x8a, 0xc7, 0xdf, 0x47, 0x21,
  6032. 0x8c, 0x39, 0x57, 0x46, 0xab, 0x1c, 0x78, 0x0b, 0xc8, 0x5b, 0x26, 0xc2, 0x51, 0xd8, 0x79, 0x5f,
  6033. 0x08, 0x1a, 0xcf, 0x84, 0x1d, 0x36, 0xd0, 0x0e, 0x3d, 0x31, 0x8f, 0xaa, 0xa4, 0x61, 0xe0, 0x73,
  6034. 0xe7, 0x03, 0xb1, 0x62, 0x67, 0x00, 0xea, 0xeb, 0xf0, 0xa4, 0x67, 0x70, 0xd2, 0x6b, 0x30, 0xe9,
  6035. 0xb2, 0x43, 0x9e, 0xf5, 0x2f, 0x67, 0xc4, 0xd6, 0x8f, 0xb3, 0x50, 0x16, 0xaa, 0xf7, 0x13, 0x94,
  6036. 0x88, 0x9d, 0xfc, 0xa4, 0xdd, 0xd7, 0xad, 0x7b, 0xf6, 0x9a, 0x15, 0x3f, 0x57, 0x5f, 0x16, 0xa5,
  6037. 0x71, 0xcf, 0xd7, 0x8c, 0xbb, 0xb4, 0xe1, 0x85, 0x9a, 0x0d, 0x5f, 0x69, 0xf4, 0x97, 0xcd, 0x78,
  6038. 0x69, 0x8a, 0x19, 0xbf, 0x23, 0x6e, 0x3c, 0x57, 0xc5, 0x31, 0x08, 0xd8, 0x4e, 0xa5, 0xaa, 0x9b,
  6039. 0x99, 0x9a, 0x6e, 0x3a, 0xaf, 0x45, 0x03, 0xa1, 0x28, 0xe2, 0xab, 0x71, 0x35, 0x1d, 0xce, 0xd6,
  6040. 0x75, 0xb8, 0x25, 0x16, 0xf0, 0x91, 0xe7, 0x4d, 0x3f, 0x3a, 0x7b, 0x62, 0xb5, 0x1c, 0x06, 0xad,
  6041. 0xa5, 0xaa, 0x32, 0xd0, 0x02, 0xdd, 0x9b, 0x59, 0x17, 0x4f, 0x85, 0x47, 0xaa, 0x98, 0x1c, 0xfd,
  6042. 0x57, 0x7b, 0x75, 0x53, 0x88, 0xa7, 0x71, 0x56, 0x8c, 0xf1, 0xbd, 0x9d, 0xff, 0x3e, 0x2b, 0x36,
  6043. 0x7a, 0x68, 0x52, 0x5f, 0xc1, 0x7f, 0xdf, 0x13, 0x2b, 0x6c, 0x97, 0x15, 0x6d, 0x0b, 0x22, 0x21,
  6044. 0xe0, 0x5f, 0xd4, 0x8d, 0xd7, 0x56, 0xcd, 0x72, 0x7d, 0xd5, 0x78, 0x6f, 0x89, 0x1b, 0x60, 0x25,
  6045. 0xd5, 0xe1, 0x93, 0xb7, 0x5b, 0x4d, 0xa3, 0xb0, 0xe7, 0x66, 0xd0, 0xf9, 0x4f, 0xb3, 0xb0, 0xbc,
  6046. 0xac, 0x5c, 0xbe, 0xaa, 0xb9, 0xd7, 0x86, 0x30, 0x37, 0x31, 0x04, 0xa7, 0x96, 0xf9, 0x8a, 0x5a,
  6047. 0x26, 0x65, 0xba, 0x70, 0x49, 0xa6, 0xa5, 0xe8, 0x16, 0xa7, 0x3b, 0xf5, 0xa5, 0xaa, 0x53, 0xaf,
  6048. 0xca, 0x67, 0xb9, 0x2e, 0x9f, 0x2f, 0x2b, 0x82, 0x7f, 0x9c, 0x11, 0x37, 0xaa, 0xa6, 0xf1, 0xfb,
  6049. 0xe5, 0xf2, 0x3b, 0x35, 0x97, 0xcf, 0xde, 0xcf, 0x4d, 0x96, 0x56, 0xdc, 0x1f, 0xcc, 0x88, 0x4d,
  6050. 0xf6, 0x7e, 0xc8, 0xba, 0xca, 0xf9, 0xfd, 0xda, 0xf5, 0x30, 0x75, 0x25, 0x4e, 0x2c, 0x86, 0xa9,
  6051. 0x2e, 0x6e, 0xa1, 0xe6, 0xe2, 0xa6, 0x68, 0x6e, 0x71, 0x9a, 0xe6, 0xfe, 0x6c, 0x56, 0xac, 0xf7,
  6052. 0x20, 0x4f, 0xfb, 0x6d, 0xae, 0xe9, 0x3b, 0x42, 0xc0, 0xa8, 0x62, 0x99, 0x8c, 0x58, 0x83, 0x0b,
  6053. 0xdd, 0xc6, 0x50, 0xe6, 0xc7, 0x48, 0xf8, 0xed, 0xad, 0x6c, 0x27, 0xab, 0xa5, 0xaa, 0xac, 0xee,
  6054. 0x08, 0x11, 0xa7, 0xa1, 0x8a, 0xfc, 0xb1, 0x92, 0x06, 0x2d, 0x7a, 0xae, 0xdb, 0x40, 0xca, 0x4f,
  6055. 0x94, 0x44, 0x36, 0x26, 0xa6, 0x55, 0x73, 0x6e, 0x20, 0xe5, 0x52, 0x72, 0x25, 0xae, 0xf1, 0x16,
  6056. 0x2b, 0x13, 0x4b, 0x75, 0x47, 0x2c, 0x53, 0xb7, 0x3a, 0x6c, 0x35, 0xa9, 0x1d, 0xfe, 0x3e, 0x0a,
  6057. 0x3b, 0xff, 0x6b, 0x56, 0x34, 0x9c, 0x8c, 0x2f, 0x59, 0x44, 0xb5, 0xe1, 0x6c, 0xad, 0xe1, 0xaf,
  6058. 0xcb, 0x03, 0x7f, 0x43, 0xef, 0x50, 0x17, 0xc0, 0xe2, 0xa4, 0x00, 0xae, 0xca, 0x08, 0xef, 0x89,
  6059. 0x95, 0x58, 0xea, 0xa4, 0x90, 0x3a, 0xb1, 0x9e, 0x62, 0xae, 0x2b, 0x2c, 0x69, 0x52, 0x3c, 0x8d,
  6060. 0xcb, 0xe2, 0xb9, 0x42, 0xac, 0x98, 0x2e, 0x56, 0x4c, 0xf0, 0xf7, 0x3e, 0x5d, 0x2c, 0xe7, 0x4a,
  6061. 0xae, 0xe3, 0xdf, 0xdb, 0x60, 0x8d, 0x8c, 0x6b, 0xb2, 0xa6, 0x8a, 0xd6, 0x66, 0xaf, 0xd6, 0xda,
  6062. 0x5c, 0x75, 0x4d, 0x75, 0x3a, 0xbc, 0xbc, 0x8f, 0x92, 0x7e, 0x7a, 0x45, 0xd7, 0x9d, 0x5f, 0xf5,
  6063. 0x59, 0x01, 0x04, 0x02, 0x05, 0x1c, 0x88, 0xa6, 0xd4, 0x26, 0x48, 0x93, 0x50, 0x17, 0x3a, 0x4d,
  6064. 0x10, 0xbc, 0xb2, 0x77, 0xcf, 0x0d, 0xdf, 0x21, 0x1f, 0xef, 0x57, 0x60, 0xdd, 0x5a, 0x23, 0xef,
  6065. 0xb1, 0x58, 0x38, 0x95, 0xb9, 0x0e, 0x70, 0xb4, 0x2b, 0x7b, 0xad, 0x29, 0xad, 0x9f, 0x00, 0xbf,
  6066. 0x4b, 0x30, 0xef, 0x6d, 0x31, 0x7f, 0x9a, 0x86, 0x63, 0x9c, 0xc1, 0xca, 0xde, 0xf6, 0x34, 0x78,
  6067. 0x1a, 0x8e, 0xbb, 0x08, 0xf2, 0xbe, 0x29, 0x96, 0x82, 0xa1, 0xcc, 0x73, 0x4d, 0x5e, 0x64, 0x65,
  6068. 0xaf, 0x3d, 0x05, 0x7f, 0x40, 0x88, 0xae, 0x85, 0x62, 0xab, 0x34, 0x29, 0x4c, 0x1a, 0xa1, 0x8e,
  6069. 0xaf, 0x68, 0x45, 0x88, 0xae, 0x85, 0x7a, 0xdf, 0x16, 0xcb, 0x2a, 0x52, 0x41, 0x61, 0x74, 0x80,
  6070. 0xda, 0x5f, 0xd9, 0xdb, 0x9d, 0xd2, 0xec, 0x29, 0x43, 0xba, 0x0e, 0xec, 0x7d, 0x20, 0x16, 0x55,
  6071. 0x32, 0xd0, 0x09, 0xd9, 0xc5, 0xca, 0xde, 0xce, 0xb4, 0x66, 0x08, 0xe8, 0x32, 0x10, 0xdf, 0xf5,
  6072. 0x79, 0xa1, 0x4c, 0x22, 0x23, 0x5c, 0x63, 0x57, 0xbc, 0x8b, 0x21, 0x5d, 0x07, 0x86, 0xa9, 0x0d,
  6073. 0x94, 0x34, 0xa7, 0xe9, 0xe7, 0xb8, 0xf8, 0xa6, 0x4f, 0xed, 0x39, 0x21, 0xba, 0x16, 0xea, 0xfd,
  6074. 0x50, 0xac, 0xe8, 0xa4, 0x50, 0x51, 0xa4, 0x07, 0x2a, 0x29, 0x70, 0x69, 0xae, 0xec, 0xdd, 0x9d,
  6075. 0xd2, 0xf2, 0xa8, 0x44, 0x75, 0xab, 0x4d, 0x60, 0xc0, 0xf0, 0x13, 0x07, 0xbc, 0x72, 0xe5, 0x80,
  6076. 0x8f, 0x12, 0x3b, 0x60, 0x0b, 0x06, 0xf3, 0x88, 0x30, 0x9b, 0x6f, 0x5e, 0x69, 0x1e, 0x2f, 0x80,
  6077. 0xdf, 0x25, 0x18, 0xe0, 0x63, 0x15, 0x6a, 0xd9, 0x5a, 0xbd, 0x12, 0x7f, 0x0c, 0xfc, 0x2e, 0xc1,
  6078. 0x60, 0x60, 0x69, 0x06, 0x86, 0x28, 0xa3, 0xd6, 0xda, 0x95, 0x03, 0x7b, 0xc9, 0x90, 0xae, 0x03,
  6079. 0x43, 0x43, 0xa3, 0xa4, 0x39, 0xd7, 0xea, 0xa2, 0x75, 0xe3, 0xca, 0x86, 0x5d, 0x86, 0x74, 0x1d,
  6080. 0x18, 0xd4, 0x9d, 0xcb, 0xbe, 0x2a, 0xc6, 0xad, 0xf5, 0x2b, 0xd5, 0xdd, 0x43, 0x40, 0x97, 0x81,
  6081. 0x60, 0xf3, 0xb9, 0x92, 0x45, 0x6b, 0xe3, 0x4a, 0x9b, 0xef, 0x29, 0x59, 0x74, 0x11, 0xe4, 0x7d,
  6082. 0x5f, 0x88, 0x8b, 0xa1, 0x52, 0xd1, 0xa9, 0x91, 0x67, 0xaa, 0xe5, 0x61, 0x93, 0x3b, 0x53, 0x9a,
  6083. 0xbc, 0x76, 0xa0, 0x6e, 0xa5, 0x41, 0xfb, 0x97, 0x73, 0xa2, 0x59, 0x5d, 0xae, 0xde, 0x77, 0xc5,
  6084. 0x4e, 0x75, 0xc1, 0xfa, 0x6c, 0xef, 0xbe, 0xab, 0x55, 0x1b, 0xdd, 0xed, 0x2a, 0x80, 0x17, 0xc6,
  6085. 0x09, 0x94, 0xaf, 0x0f, 0xc5, 0x7a, 0x20, 0x8d, 0x2f, 0xb5, 0xf1, 0xb3, 0x91, 0xd1, 0x7d, 0xad,
  6086. 0x0c, 0x7b, 0xa5, 0xb5, 0x40, 0x9a, 0x7d, 0x6d, 0x5e, 0x31, 0xd5, 0xfb, 0xba, 0x58, 0xef, 0x1b,
  6087. 0x39, 0x30, 0x32, 0x09, 0x94, 0x9f, 0x8f, 0xf3, 0x42, 0xc5, 0x1c, 0xcb, 0x6e, 0x38, 0x7a, 0x0f,
  6088. 0xc9, 0xde, 0x37, 0xc5, 0xad, 0x44, 0x0d, 0x64, 0xa1, 0xcf, 0x95, 0x0f, 0x03, 0x1a, 0xa8, 0x44,
  6089. 0x19, 0x59, 0xa4, 0x36, 0xc4, 0x6d, 0x59, 0xee, 0x51, 0x9a, 0x3c, 0xb7, 0x3c, 0x88, 0x4c, 0x59,
  6090. 0xbc, 0xf7, 0xa1, 0x1f, 0xaa, 0x73, 0x1d, 0xb8, 0x88, 0x07, 0xa4, 0x43, 0xa4, 0x78, 0xcf, 0xc5,
  6091. 0x7d, 0xd0, 0x91, 0xaf, 0x93, 0x50, 0x65, 0x2a, 0x09, 0x21, 0xae, 0xc0, 0xc0, 0xdd, 0xc4, 0x94,
  6092. 0xe1, 0x38, 0x78, 0x07, 0x70, 0x47, 0x25, 0x6c, 0x5f, 0x9b, 0x83, 0x12, 0xe4, 0xbd, 0x27, 0xb6,
  6093. 0xb0, 0x23, 0xd0, 0x06, 0xf6, 0x90, 0x8e, 0x8a, 0x48, 0x15, 0x9c, 0x7f, 0x6c, 0x00, 0x0f, 0xd4,
  6094. 0xb5, 0xaf, 0xcd, 0x4b, 0x64, 0x78, 0x1d, 0xd1, 0x34, 0xaa, 0x6f, 0xf4, 0x80, 0xa7, 0xc1, 0xbb,
  6095. 0x44, 0x55, 0x9a, 0xf7, 0x91, 0x68, 0x15, 0x2a, 0xce, 0xe0, 0xd7, 0xc8, 0x28, 0xff, 0x8b, 0x34,
  6096. 0x51, 0x56, 0x13, 0x1c, 0x46, 0x6f, 0x55, 0xf8, 0x3f, 0x4d, 0x13, 0xc5, 0x7a, 0x68, 0xff, 0x0f,
  6097. 0x21, 0x16, 0xd0, 0x83, 0x7a, 0x77, 0x85, 0x90, 0x11, 0xae, 0x2b, 0x78, 0x0b, 0xa9, 0xae, 0x42,
  6098. 0x81, 0x77, 0x80, 0x0d, 0xe8, 0x64, 0xe0, 0x87, 0x3a, 0x2f, 0x50, 0x15, 0xb1, 0x92, 0xf9, 0xc8,
  6099. 0xd8, 0x58, 0x72, 0x8b, 0xf9, 0x87, 0xcc, 0x3e, 0x26, 0xee, 0xaf, 0xcb, 0x41, 0xde, 0x16, 0x1b,
  6100. 0x2a, 0xd6, 0x79, 0x0e, 0xda, 0x82, 0x86, 0xa1, 0x34, 0x76, 0x6f, 0x62, 0xdd, 0x32, 0x7a, 0x4c,
  6101. 0x87, 0x20, 0xc5, 0xee, 0x90, 0x74, 0x64, 0x7d, 0xde, 0x3b, 0xc2, 0xeb, 0x43, 0xec, 0x0d, 0x86,
  6102. 0xd2, 0x0c, 0x94, 0x2f, 0xe3, 0x74, 0x94, 0x14, 0xac, 0x91, 0x75, 0xe0, 0x1c, 0x20, 0x63, 0x1f,
  6103. 0xe9, 0x75, 0x34, 0xcc, 0xa8, 0xd0, 0xae, 0x82, 0x2f, 0xd1, 0x3a, 0x19, 0x9c, 0xe8, 0x18, 0xed,
  6104. 0xb4, 0x3f, 0x52, 0x64, 0xd3, 0x7e, 0xa8, 0x0a, 0xa9, 0x23, 0xd6, 0xc2, 0x1a, 0xd0, 0xc1, 0x96,
  6105. 0x0f, 0x91, 0x0a, 0x49, 0x07, 0x7b, 0x45, 0x3f, 0x54, 0x79, 0xc0, 0xb2, 0x5f, 0x61, 0xda, 0xa1,
  6106. 0xca, 0x03, 0xef, 0x5d, 0xe1, 0x0d, 0x47, 0x49, 0x68, 0x54, 0xe8, 0xcb, 0x20, 0x50, 0x11, 0xe8,
  6107. 0x44, 0x71, 0x3e, 0xb3, 0xc1, 0x9c, 0x7d, 0xc7, 0xf0, 0x3e, 0x16, 0xed, 0xcb, 0x70, 0x27, 0x77,
  6108. 0xca, 0x20, 0x5b, 0x97, 0x9a, 0x59, 0xc9, 0x6f, 0x89, 0x85, 0x48, 0x9d, 0xab, 0x88, 0xd3, 0x49,
  6109. 0xfa, 0xe1, 0xad, 0x8b, 0xb9, 0xe8, 0x62, 0x88, 0x3e, 0xb0, 0xd1, 0x85, 0xc7, 0x32, 0x0d, 0x5c,
  6110. 0xab, 0xa6, 0x81, 0x6f, 0x88, 0xd5, 0x58, 0x7e, 0xae, 0xe3, 0x51, 0xec, 0x67, 0xe9, 0x85, 0x32,
  6111. 0xe8, 0xc9, 0x1a, 0xdd, 0x26, 0x13, 0x5f, 0x01, 0x0d, 0x1c, 0x80, 0x05, 0xe5, 0x3a, 0x1e, 0x45,
  6112. 0x12, 0xdd, 0x40, 0xac, 0x23, 0x48, 0x65, 0xd6, 0xc9, 0x01, 0x30, 0xa0, 0xe7, 0xf8, 0xc7, 0xc8,
  6113. 0xf6, 0x8e, 0xc4, 0x83, 0x2b, 0xdb, 0xba, 0x39, 0x6e, 0x60, 0x1f, 0x77, 0xaf, 0xe8, 0xc3, 0xce,
  6114. 0xb4, 0x32, 0xd6, 0x3c, 0x53, 0x2a, 0x44, 0xd7, 0x56, 0x8e, 0xb5, 0x07, 0x34, 0xef, 0x6b, 0x62,
  6115. 0xcd, 0x82, 0x8a, 0xd4, 0xfc, 0x6c, 0xa4, 0x5a, 0x9b, 0x54, 0xd0, 0x30, 0xf5, 0x04, 0x89, 0x13,
  6116. 0xd9, 0xff, 0x16, 0xd9, 0x6b, 0x99, 0xfd, 0xef, 0x89, 0x9b, 0xa9, 0x8e, 0xfc, 0x0b, 0x58, 0xc5,
  6117. 0x41, 0x1a, 0x1b, 0x35, 0x54, 0x49, 0xae, 0xcf, 0x55, 0xeb, 0x26, 0x22, 0x37, 0x53, 0x1d, 0xbd,
  6118. 0x56, 0xd2, 0x1c, 0x54, 0x58, 0x60, 0x42, 0xae, 0x8d, 0x9d, 0xd8, 0x2d, 0x32, 0x21, 0x86, 0x57,
  6119. 0x54, 0x96, 0x19, 0xf0, 0x41, 0xdb, 0xa4, 0x0a, 0xfc, 0x01, 0x43, 0xc2, 0x07, 0x7f, 0x3c, 0x92,
  6120. 0x49, 0xab, 0x45, 0x43, 0x42, 0xca, 0x4f, 0x46, 0x32, 0xa9, 0xe7, 0xcd, 0x3b, 0x13, 0x79, 0x33,
  6121. 0xa4, 0x7d, 0xcc, 0x8c, 0x07, 0xad, 0x36, 0xa7, 0x7d, 0xc4, 0x8d, 0x07, 0x93, 0xc9, 0xfe, 0xee,
  6122. 0xa5, 0x64, 0xff, 0x1d, 0xe1, 0xe5, 0x51, 0x7a, 0x31, 0xb1, 0x58, 0x6e, 0xd3, 0x62, 0x01, 0x4e,
  6123. 0x6d, 0xb1, 0x54, 0x6b, 0x91, 0x3b, 0x97, 0x6a, 0x91, 0x4a, 0xfe, 0x79, 0x77, 0x32, 0xff, 0x84,
  6124. 0x49, 0x8c, 0x4e, 0x7d, 0x32, 0xd8, 0x7b, 0x3c, 0x89, 0xd1, 0xe9, 0x0b, 0xb4, 0xd9, 0xb7, 0xc5,
  6125. 0x46, 0x79, 0x26, 0x60, 0x46, 0x01, 0xf8, 0xb1, 0xd6, 0x7d, 0x1a, 0x03, 0x33, 0x7a, 0x96, 0x0e,
  6126. 0xe1, 0xc2, 0x82, 0x2f, 0xa4, 0x31, 0x32, 0x29, 0xc6, 0xad, 0x07, 0x14, 0x2e, 0x98, 0xfe, 0x9a,
  6127. 0xc9, 0xb5, 0xa2, 0xa2, 0x53, 0x2b, 0x2a, 0xda, 0xff, 0x67, 0x4e, 0xcc, 0x43, 0xb6, 0xe8, 0x3d,
  6128. 0x16, 0x9b, 0xa7, 0x32, 0x38, 0xf3, 0x31, 0x0e, 0x3a, 0xe7, 0xc7, 0x2e, 0x72, 0x03, 0x58, 0x18,
  6129. 0x2d, 0xad, 0xdb, 0x03, 0x89, 0x86, 0x69, 0x6a, 0xfc, 0x64, 0x14, 0x9f, 0xba, 0x90, 0x26, 0x80,
  6130. 0xf4, 0x29, 0x52, 0xbc, 0xf7, 0xc5, 0x56, 0xdf, 0xa4, 0x49, 0x31, 0xd9, 0x23, 0xb9, 0x46, 0x0f,
  6131. 0x79, 0xf5, 0x2e, 0x3d, 0x31, 0x3f, 0xd4, 0x83, 0x21, 0xbb, 0x45, 0x7c, 0x06, 0x5a, 0x94, 0x26,
  6132. 0x03, 0x76, 0x84, 0xf8, 0x0c, 0x4e, 0x3a, 0xd6, 0x09, 0x5a, 0xf8, 0xc0, 0xa4, 0xa3, 0x24, 0xf4,
  6133. 0x83, 0x48, 0x49, 0x8c, 0x8f, 0xec, 0x0c, 0x6f, 0x31, 0xff, 0x39, 0xb2, 0x0f, 0x2c, 0x17, 0x16,
  6134. 0x50, 0xaa, 0x23, 0xf0, 0x5c, 0xe7, 0x69, 0x34, 0xaa, 0xec, 0x67, 0x22, 0xf1, 0x33, 0xa4, 0x91,
  6135. 0xad, 0xc8, 0xc2, 0xce, 0x6c, 0xd9, 0xda, 0x8a, 0x2c, 0x78, 0x66, 0x0f, 0x44, 0xb3, 0x30, 0xa3,
  6136. 0xe4, 0xcc, 0x76, 0xc2, 0x0e, 0x10, 0x69, 0xdc, 0xc7, 0x03, 0xd1, 0x1c, 0x25, 0x91, 0x0c, 0x55,
  6137. 0xe2, 0xc7, 0x32, 0xcf, 0xd9, 0xf5, 0xad, 0x30, 0xed, 0x58, 0xe6, 0xb9, 0x77, 0x5b, 0x34, 0x28,
  6138. 0xe7, 0x90, 0xb9, 0xf5, 0x71, 0x25, 0x01, 0xe6, 0x7d, 0xa1, 0x43, 0xc5, 0x3e, 0x0d, 0x9f, 0xdb,
  6139. 0x7f, 0x32, 0x23, 0x96, 0x38, 0x53, 0x87, 0x41, 0xe2, 0x43, 0x51, 0x4d, 0x42, 0x04, 0x91, 0x30,
  6140. 0xef, 0x78, 0x5f, 0x6c, 0xa1, 0x3e, 0xf3, 0x51, 0x9e, 0xa9, 0x04, 0x7d, 0x0e, 0x22, 0x49, 0x51,
  6141. 0x1e, 0xf0, 0x7a, 0x8e, 0x85, 0x2d, 0xbe, 0x26, 0xd6, 0xa0, 0x62, 0xa8, 0x98, 0x1e, 0xa9, 0x6a,
  6142. 0x15, 0xa8, 0xa5, 0xdd, 0xdd, 0x11, 0x22, 0x34, 0x90, 0x78, 0x60, 0x77, 0xa4, 0xab, 0x06, 0x52,
  6143. 0xb0, 0x97, 0x3d, 0x71, 0x93, 0xd4, 0x3e, 0xf9, 0x62, 0xd2, 0xe0, 0x26, 0x32, 0xeb, 0x6f, 0x6e,
  6144. 0xff, 0xe7, 0x25, 0xb1, 0xc4, 0xb1, 0x1a, 0x46, 0x01, 0x09, 0x03, 0xb5, 0xce, 0x6d, 0x4d, 0xd5,
  6145. 0xe8, 0xae, 0x4a, 0x6d, 0x7a, 0x8e, 0x08, 0x9a, 0x94, 0x79, 0x80, 0x09, 0x0a, 0xce, 0x99, 0xe7,
  6146. 0xd5, 0x24, 0xe2, 0x3e, 0xd2, 0x60, 0xb1, 0xc9, 0x51, 0x91, 0xfa, 0xc3, 0x34, 0x72, 0x7b, 0x86,
  6147. 0x40, 0xf8, 0x24, 0x8d, 0x42, 0xef, 0x87, 0xe2, 0x36, 0x3c, 0xc7, 0xb2, 0xd0, 0x81, 0x0f, 0xe3,
  6148. 0x87, 0x55, 0x4f, 0x9d, 0xa1, 0x25, 0xd1, 0xcc, 0xda, 0x0e, 0x73, 0x48, 0x90, 0x7d, 0x87, 0x80,
  6149. 0xe5, 0x5a, 0xf6, 0x90, 0x49, 0x03, 0x69, 0x01, 0x4f, 0x73, 0xdd, 0x31, 0x5e, 0x11, 0x1d, 0x1c,
  6150. 0x0c, 0xea, 0x83, 0x71, 0xbe, 0x91, 0x61, 0x6a, 0xb3, 0xa9, 0x75, 0xe0, 0x30, 0xb0, 0x0b, 0x74,
  6151. 0xef, 0x91, 0xd8, 0x80, 0x79, 0x18, 0x09, 0x0b, 0xa7, 0xdf, 0xf7, 0xa3, 0x34, 0x38, 0x63, 0x63,
  6152. 0xbd, 0xc1, 0x8c, 0x43, 0xdd, 0xef, 0xbf, 0x48, 0x83, 0x33, 0x10, 0x45, 0x60, 0x46, 0x3a, 0x77,
  6153. 0x49, 0x23, 0x27, 0x4f, 0x44, 0x2c, 0x33, 0x46, 0x3b, 0x47, 0x70, 0xf2, 0x7e, 0x8e, 0xb5, 0x17,
  6154. 0x88, 0x97, 0xac, 0x77, 0x8b, 0xb9, 0xc7, 0x69, 0xa8, 0x7a, 0x96, 0x07, 0xad, 0x14, 0x64, 0x83,
  6155. 0x23, 0xfc, 0x59, 0x55, 0x0a, 0x19, 0xf4, 0x96, 0x3a, 0xb2, 0xcc, 0x8a, 0x6e, 0xd6, 0xc5, 0x9c,
  6156. 0x0a, 0x23, 0xb6, 0x69, 0x78, 0xf4, 0x7e, 0x20, 0x6e, 0x53, 0x0a, 0x03, 0xb9, 0x8f, 0x29, 0xfc,
  6157. 0xbc, 0x48, 0x33, 0xbf, 0x50, 0xc1, 0x30, 0x49, 0xa3, 0x74, 0x30, 0x66, 0x2b, 0xdf, 0x21, 0x4c,
  6158. 0x0f, 0x20, 0xbd, 0x22, 0xcd, 0x4e, 0x1c, 0x00, 0xbc, 0x13, 0x59, 0x55, 0x5d, 0x7c, 0x14, 0xdd,
  6159. 0x37, 0x90, 0x55, 0x93, 0xdf, 0xba, 0x98, 0x1b, 0x86, 0x01, 0x47, 0x7a, 0x78, 0xf4, 0x0e, 0xc4,
  6160. 0xdd, 0xf4, 0x5c, 0x19, 0x19, 0x45, 0xbe, 0x0c, 0x30, 0x71, 0xce, 0x0b, 0xa5, 0x0c, 0xf4, 0xc5,
  6161. 0x62, 0xa3, 0xc0, 0xbf, 0xcb, 0xa8, 0x7d, 0x04, 0xf5, 0x18, 0xc3, 0x52, 0x7c, 0x21, 0xde, 0x30,
  6162. 0xea, 0x5c, 0x99, 0x5c, 0xf9, 0xce, 0x51, 0xeb, 0x10, 0x1d, 0x70, 0x52, 0xe9, 0x89, 0x32, 0x82,
  6163. 0x7b, 0x0c, 0xfd, 0x8c, 0x3d, 0xb7, 0x0e, 0xc1, 0x23, 0x27, 0x65, 0x6f, 0xdf, 0x12, 0xdb, 0xe7,
  6164. 0xd2, 0x68, 0x79, 0x1a, 0x55, 0x06, 0x63, 0x20, 0xee, 0x73, 0x3e, 0x70, 0xd3, 0xb2, 0xed, 0x30,
  6165. 0xba, 0xc0, 0xf4, 0xde, 0x13, 0x9b, 0x65, 0xbb, 0x52, 0x25, 0x94, 0x0c, 0x78, 0xae, 0x4d, 0xa9,
  6166. 0x90, 0xc7, 0x62, 0xf3, 0x42, 0xa2, 0xd2, 0x93, 0xbc, 0x32, 0x4c, 0xca, 0x0b, 0x36, 0x80, 0xd5,
  6167. 0x23, 0x0e, 0x0d, 0xac, 0xfd, 0xbf, 0x17, 0xc5, 0xb2, 0xad, 0xd2, 0xbd, 0xef, 0x8b, 0x5d, 0x34,
  6168. 0x5c, 0x5b, 0xac, 0xfb, 0xf5, 0x74, 0x89, 0x56, 0x67, 0x0b, 0x20, 0xb6, 0xc9, 0x71, 0x35, 0x75,
  6169. 0xb2, 0x7e, 0xc8, 0x35, 0xe7, 0xa4, 0xa4, 0xe2, 0x87, 0x6c, 0x3b, 0xce, 0x4c, 0xc0, 0x0f, 0xc9,
  6170. 0xa2, 0x50, 0x66, 0xec, 0x43, 0xe9, 0x32, 0x18, 0x3b, 0x3f, 0x44, 0xd4, 0xa7, 0x48, 0x04, 0x47,
  6171. 0x63, 0x61, 0x19, 0x06, 0x2e, 0x1b, 0x04, 0x69, 0xe1, 0x6e, 0x32, 0xf3, 0x15, 0x44, 0x2e, 0x1b,
  6172. 0x08, 0x1f, 0x88, 0xa6, 0x6d, 0x53, 0xf1, 0x49, 0x2b, 0x4c, 0x43, 0xff, 0xf5, 0x03, 0x71, 0x9b,
  6173. 0x2c, 0xed, 0x8a, 0xf9, 0xd2, 0x8a, 0xdd, 0x41, 0xcc, 0xd4, 0x09, 0x3b, 0x07, 0x38, 0x39, 0xe3,
  6174. 0xa5, 0x8a, 0x03, 0x9c, 0x98, 0xf2, 0x33, 0x71, 0xcf, 0x26, 0xc0, 0xb6, 0x95, 0x2e, 0xc6, 0x50,
  6175. 0xdd, 0xe4, 0xa3, 0x18, 0xcb, 0x6d, 0x5e, 0xd4, 0x77, 0x18, 0xf6, 0xb4, 0x44, 0x1d, 0x94, 0xa0,
  6176. 0xeb, 0xf3, 0xd4, 0xc6, 0xf5, 0x79, 0xea, 0x03, 0xd1, 0x8c, 0xd3, 0x22, 0x35, 0x7e, 0x24, 0xc7,
  6177. 0xe9, 0xa8, 0xb0, 0x21, 0x0b, 0x69, 0x2f, 0x90, 0x54, 0x42, 0x38, 0x34, 0xae, 0x54, 0x20, 0x1c,
  6178. 0x1b, 0x31, 0xad, 0x04, 0x08, 0xca, 0xb7, 0x69, 0xd3, 0xca, 0x22, 0x35, 0x28, 0xdd, 0x6f, 0x89,
  6179. 0x6d, 0x32, 0x3e, 0x5f, 0x27, 0x85, 0x1a, 0x40, 0x1a, 0x1f, 0xb2, 0x60, 0x69, 0x2d, 0xdf, 0x24,
  6180. 0xf6, 0x91, 0xe3, 0x92, 0x50, 0x3f, 0x12, 0xad, 0xcb, 0xed, 0x58, 0xae, 0xb4, 0xc8, 0x6f, 0x4d,
  6181. 0x36, 0x64, 0xd1, 0x3e, 0x12, 0x1b, 0xb8, 0xaf, 0xe9, 0xd3, 0xb0, 0xaa, 0x39, 0xfe, 0x0d, 0x64,
  6182. 0x1c, 0x03, 0x9d, 0xde, 0xf2, 0x8e, 0xf0, 0xaa, 0x58, 0xee, 0x9f, 0x56, 0xf3, 0x7a, 0x09, 0xa6,
  6183. 0x9e, 0xdb, 0x7f, 0xb8, 0x28, 0x16, 0x69, 0x53, 0xca, 0x7b, 0x93, 0x82, 0x96, 0x4e, 0x0a, 0x79,
  6184. 0xe6, 0xf7, 0x53, 0x13, 0xf3, 0xb2, 0x68, 0x4a, 0x6d, 0x8e, 0x80, 0xf8, 0x2c, 0x35, 0xb1, 0xf7,
  6185. 0x81, 0xd8, 0x0a, 0xc6, 0x11, 0x14, 0xd7, 0xc6, 0x47, 0x8b, 0x1c, 0xa8, 0x58, 0x25, 0x36, 0x74,
  6186. 0x6d, 0x5a, 0xde, 0x7e, 0xc9, 0x82, 0x10, 0xe3, 0x9a, 0x84, 0x5a, 0xc6, 0xaa, 0x70, 0x27, 0x1e,
  6187. 0xeb, 0x96, 0x71, 0xc8, 0x74, 0xf0, 0xd6, 0x0e, 0x3c, 0x54, 0x32, 0xf4, 0x63, 0x59, 0x28, 0xa3,
  6188. 0x65, 0x64, 0x77, 0x05, 0x2c, 0xf7, 0x13, 0x25, 0xc3, 0x63, 0xe6, 0xd5, 0x5e, 0xe1, 0x1a, 0x2c,
  6189. 0xd4, 0x5f, 0xe1, 0xc0, 0xff, 0x46, 0xdc, 0x70, 0x60, 0x36, 0x82, 0x45, 0xde, 0xcc, 0x60, 0x32,
  6190. 0xdb, 0xc1, 0x9e, 0xb8, 0xe9, 0x80, 0xe7, 0x32, 0x3a, 0x57, 0x16, 0xbe, 0x54, 0x9f, 0xec, 0x67,
  6191. 0xc0, 0xe3, 0x36, 0x1d, 0xd1, 0x0c, 0x75, 0x9e, 0x45, 0x32, 0x20, 0xb9, 0x70, 0x1c, 0xab, 0xd2,
  6192. 0xc0, 0x39, 0x54, 0x7f, 0xfb, 0xb6, 0xf4, 0x5f, 0xad, 0x52, 0x5f, 0x60, 0xb9, 0x4d, 0x01, 0xa7,
  6193. 0x12, 0x65, 0x04, 0x97, 0xdb, 0xc8, 0xa8, 0x04, 0x97, 0x7b, 0x62, 0xc5, 0x82, 0xc1, 0x68, 0xc9,
  6194. 0xaa, 0x05, 0xc3, 0xc0, 0x6a, 0xef, 0x08, 0x81, 0xb5, 0x71, 0x04, 0x7e, 0xd5, 0x1a, 0x35, 0x50,
  6195. 0x5e, 0x00, 0x61, 0x6a, 0xe9, 0xbc, 0x3a, 0xb5, 0x74, 0x7e, 0x57, 0x78, 0x76, 0x7d, 0x0e, 0x53,
  6196. 0x93, 0x2b, 0xb2, 0x46, 0x32, 0xe0, 0x0d, 0xe6, 0x7c, 0xe2, 0x18, 0x60, 0xbb, 0x35, 0xe7, 0xe3,
  6197. 0x9b, 0xcc, 0x86, 0xa9, 0x1b, 0xd5, 0xfa, 0xb4, 0x9b, 0xc5, 0x78, 0x90, 0xa5, 0x23, 0x3f, 0x1f,
  6198. 0x65, 0x59, 0x34, 0xc6, 0x18, 0xcf, 0x86, 0x0b, 0x19, 0x6f, 0x0f, 0xa9, 0x10, 0xdb, 0x21, 0x5b,
  6199. 0xc8, 0x74, 0x5e, 0xe0, 0x36, 0x84, 0x49, 0xcf, 0x6c, 0xe9, 0xd9, 0x24, 0x62, 0x0f, 0x69, 0xa0,
  6200. 0x66, 0xa3, 0x6c, 0xd4, 0xa7, 0x88, 0x44, 0xd1, 0x65, 0xcd, 0x91, 0x29, 0x14, 0xad, 0x8b, 0x39,
  6201. 0x18, 0x13, 0x45, 0x12, 0x78, 0x84, 0xa6, 0xa4, 0xef, 0x58, 0x05, 0x43, 0x99, 0xe8, 0x3c, 0xe6,
  6202. 0xe2, 0x72, 0x0d, 0xc9, 0xc7, 0x96, 0xda, 0xfe, 0xdb, 0x25, 0xb1, 0x6c, 0xb7, 0x67, 0x21, 0x4a,
  6203. 0x70, 0x54, 0xc6, 0x35, 0xa4, 0xfc, 0x81, 0xd1, 0x51, 0x64, 0xf3, 0x5a, 0x8f, 0x78, 0xb8, 0x92,
  6204. 0xd4, 0x73, 0xe4, 0x50, 0xbd, 0xc2, 0xee, 0xdf, 0x28, 0xb0, 0xf7, 0x02, 0xd2, 0xaf, 0x59, 0x5b,
  6205. 0xaf, 0x90, 0xf3, 0x37, 0xea, 0x13, 0x62, 0xc0, 0x1b, 0x6c, 0x46, 0x65, 0xb7, 0xef, 0x30, 0xa9,
  6206. 0xe2, 0x72, 0x84, 0x79, 0x9c, 0x85, 0x62, 0x5e, 0xf5, 0x35, 0xb1, 0x56, 0xba, 0x70, 0xc8, 0xed,
  6207. 0x79, 0x19, 0xad, 0x5a, 0xea, 0x09, 0x10, 0xc1, 0xd2, 0x89, 0x90, 0x26, 0x3a, 0xf0, 0x65, 0x52,
  6208. 0x68, 0xbf, 0x18, 0xaa, 0x7e, 0x61, 0x13, 0xde, 0x92, 0xb9, 0x9f, 0x14, 0xfa, 0x04, 0x58, 0x90,
  6209. 0xdd, 0xab, 0x34, 0x0f, 0x79, 0xed, 0xe0, 0x33, 0xc5, 0x0d, 0x19, 0xab, 0x48, 0xe5, 0xb9, 0x1f,
  6210. 0xaa, 0x5c, 0x0f, 0x12, 0x1f, 0xca, 0xa9, 0x32, 0x6e, 0x30, 0xf3, 0x10, 0x79, 0x87, 0x69, 0x6a,
  6211. 0xbc, 0xef, 0x88, 0x9d, 0x21, 0xe4, 0x1f, 0x6e, 0x9c, 0x58, 0x92, 0x0d, 0x65, 0x12, 0x46, 0xf6,
  6212. 0x46, 0xd2, 0x2d, 0x00, 0xd8, 0x70, 0x01, 0x8d, 0x3e, 0x41, 0x2e, 0xe8, 0x89, 0x13, 0x3b, 0x48,
  6213. 0xe5, 0x71, 0x7a, 0xb4, 0x92, 0xd6, 0x1c, 0x99, 0xe6, 0xb7, 0x23, 0x96, 0xcf, 0x14, 0xc7, 0x4b,
  6214. 0x3e, 0x91, 0x3a, 0x53, 0x63, 0x5b, 0x63, 0x9c, 0xa9, 0x31, 0x0e, 0x18, 0xc4, 0x37, 0xb6, 0x89,
  6215. 0x05, 0xad, 0x20, 0x8f, 0x79, 0x4f, 0x81, 0xc5, 0x29, 0x4f, 0xa5, 0x05, 0x67, 0x82, 0xd4, 0xa2,
  6216. 0x59, 0x6b, 0x41, 0x19, 0x20, 0xb5, 0x80, 0x92, 0x6d, 0x54, 0x60, 0x96, 0x95, 0xa9, 0x50, 0xda,
  6217. 0x95, 0xd5, 0x64, 0xe2, 0x2b, 0xa0, 0xb9, 0x8d, 0xcb, 0x20, 0x8d, 0x33, 0x69, 0x0a, 0xf4, 0x0c,
  6218. 0x59, 0x9a, 0xd3, 0x6e, 0x6d, 0xac, 0xe2, 0xd4, 0x8c, 0x79, 0x95, 0xe1, 0xc6, 0xe5, 0x41, 0x09,
  6219. 0x7b, 0xc5, 0xa8, 0x63, 0x04, 0x41, 0x84, 0x33, 0x2a, 0x4e, 0x0b, 0x4e, 0x54, 0x79, 0xb1, 0xad,
  6220. 0x10, 0x0d, 0x87, 0x85, 0x10, 0x1d, 0x97, 0xae, 0x72, 0x9d, 0x21, 0x3a, 0x76, 0x5e, 0xf2, 0x91,
  6221. 0xd8, 0x30, 0x69, 0xda, 0xf7, 0xa3, 0xd1, 0x60, 0x20, 0x07, 0xca, 0x37, 0x32, 0x38, 0xe3, 0x75,
  6222. 0x76, 0x03, 0x18, 0x2f, 0x88, 0xde, 0x95, 0xc1, 0x19, 0x60, 0x71, 0x72, 0x79, 0xa4, 0x43, 0xdc,
  6223. 0x76, 0x04, 0x95, 0xd3, 0x62, 0xbb, 0x01, 0x8c, 0x1e, 0xd1, 0x51, 0xdd, 0x6f, 0x88, 0xd5, 0xfc,
  6224. 0x6c, 0x8c, 0xbb, 0xfc, 0xa4, 0x0f, 0x5a, 0x77, 0x4d, 0x4b, 0xb4, 0x05, 0x58, 0x9e, 0xa5, 0xa6,
  6225. 0xc8, 0x7d, 0x99, 0x65, 0x5c, 0xf8, 0xfa, 0x67, 0xba, 0xe0, 0x65, 0xb8, 0x49, 0xcc, 0x7d, 0xc7,
  6226. 0xfb, 0x91, 0xa6, 0x7b, 0x57, 0xe0, 0xb5, 0x68, 0x73, 0x07, 0x9f, 0xbd, 0xae, 0x78, 0xab, 0x18,
  6227. 0x2a, 0x1f, 0x9e, 0x07, 0xb2, 0x50, 0xfe, 0x20, 0x92, 0x79, 0xee, 0xa7, 0x90, 0x53, 0x56, 0x37,
  6228. 0x88, 0xa3, 0x31, 0xef, 0xf1, 0x74, 0x8a, 0xa1, 0x3a, 0x61, 0xf0, 0x73, 0xc0, 0xbe, 0x04, 0xe8,
  6229. 0x51, 0x15, 0xd9, 0xce, 0xc4, 0x12, 0x9f, 0xac, 0x80, 0xd3, 0x1d, 0x80, 0xca, 0x38, 0x2c, 0x70,
  6230. 0x01, 0x0b, 0xa4, 0xb2, 0xca, 0xae, 0x6d, 0x33, 0xce, 0x5e, 0xde, 0x66, 0xac, 0x40, 0x50, 0x1c,
  6231. 0x73, 0x35, 0x08, 0x96, 0x96, 0x7f, 0x3c, 0x2b, 0x56, 0x2a, 0x47, 0x32, 0x10, 0x23, 0xe5, 0xe8,
  6232. 0x73, 0x1d, 0x69, 0x69, 0xc6, 0xae, 0xea, 0x0b, 0x86, 0x3a, 0xe3, 0x11, 0x6c, 0x39, 0x2e, 0xd7,
  6233. 0x7b, 0x07, 0x43, 0x9d, 0xa1, 0xf3, 0x18, 0xea, 0x0c, 0xed, 0x6b, 0x04, 0xee, 0x84, 0xf3, 0x08,
  6234. 0x4e, 0x62, 0x81, 0x77, 0x60, 0x59, 0xaf, 0xac, 0xeb, 0xa6, 0x99, 0xf9, 0x69, 0xdf, 0x0f, 0x64,
  6235. 0xac, 0x8c, 0xcc, 0xed, 0x6e, 0x3e, 0x31, 0x5e, 0xf6, 0x0f, 0x88, 0x0c, 0xf1, 0xa3, 0xc4, 0x46,
  6236. 0x3a, 0x94, 0x26, 0x67, 0x57, 0xb3, 0x66, 0xa1, 0x2f, 0x90, 0xea, 0x3d, 0x13, 0xf7, 0x4b, 0x64,
  6237. 0xac, 0xa3, 0x48, 0x63, 0xe4, 0xf7, 0x2f, 0xe4, 0x39, 0x58, 0x19, 0xb6, 0x24, 0xb7, 0x73, 0xdb,
  6238. 0xb6, 0x3c, 0x76, 0xa8, 0xd7, 0xf2, 0x5c, 0x75, 0x11, 0x03, 0x39, 0x7d, 0xd9, 0xcf, 0x28, 0x2a,
  6239. 0x8c, 0xcc, 0xd1, 0x7b, 0x71, 0x17, 0xe4, 0x96, 0x5a, 0xb6, 0x8b, 0x1f, 0x3b, 0x00, 0x35, 0x6f,
  6240. 0xff, 0xff, 0x45, 0xb1, 0x6c, 0x0f, 0xaa, 0x50, 0xa2, 0xe4, 0x45, 0x92, 0x14, 0x8a, 0x50, 0x17,
  6241. 0x21, 0x9c, 0x44, 0x91, 0xfb, 0x29, 0x30, 0xbb, 0x96, 0x87, 0x12, 0x95, 0xc6, 0x69, 0xc0, 0xa8,
  6242. 0x20, 0x35, 0x61, 0x45, 0xa2, 0xd2, 0xb0, 0xfc, 0xbb, 0xcc, 0x81, 0x14, 0xd0, 0xe9, 0x0b, 0x65,
  6243. 0x8d, 0x29, 0x11, 0x04, 0x7d, 0x5b, 0x20, 0xd8, 0x0a, 0xf7, 0x80, 0xd9, 0x87, 0xc4, 0xf5, 0x9e,
  6244. 0x88, 0x3b, 0xd6, 0x41, 0xca, 0x28, 0x1a, 0xfb, 0x32, 0xfc, 0x8f, 0xa3, 0xbc, 0xc0, 0xf2, 0x89,
  6245. 0x5c, 0x0a, 0x09, 0x7b, 0xb7, 0x0a, 0xda, 0x77, 0x18, 0xf2, 0x30, 0xef, 0x08, 0xaf, 0x3f, 0x8a,
  6246. 0x22, 0x3f, 0x0a, 0x42, 0x3f, 0x94, 0xf9, 0xf0, 0x34, 0x95, 0xc6, 0x5e, 0x20, 0x5c, 0x07, 0xce,
  6247. 0x8b, 0x20, 0x3c, 0xb4, 0x74, 0xef, 0x43, 0xb1, 0x7d, 0x19, 0x4d, 0xf7, 0x35, 0x48, 0xb6, 0x5b,
  6248. 0x93, 0x4d, 0xf0, 0xee, 0x06, 0xb8, 0xf3, 0x51, 0xe8, 0x1b, 0x8d, 0x55, 0x1a, 0x6b, 0xc8, 0xce,
  6249. 0x71, 0x89, 0xdd, 0xf9, 0x28, 0xec, 0x22, 0x9f, 0x96, 0x89, 0x9d, 0xe3, 0x81, 0xb8, 0x1b, 0xa7,
  6250. 0xa7, 0x1a, 0xa6, 0x34, 0x4c, 0x13, 0xe5, 0x5f, 0x68, 0x43, 0x91, 0xc4, 0x6e, 0x68, 0x72, 0x38,
  6251. 0xd8, 0x25, 0xd4, 0x2b, 0x00, 0xbd, 0x66, 0x8c, 0xdd, 0xda, 0xf4, 0x9e, 0x8a, 0x7b, 0xf1, 0x28,
  6252. 0x2a, 0xb4, 0xdf, 0x1f, 0x25, 0x01, 0x1d, 0xf2, 0x95, 0x85, 0x29, 0xee, 0x4d, 0x71, 0x8c, 0xb8,
  6253. 0x8d, 0xb0, 0x67, 0x0e, 0x65, 0xeb, 0x53, 0xdc, 0xcf, 0x83, 0x2a, 0xa4, 0xde, 0x8a, 0x25, 0x1e,
  6254. 0xdb, 0x93, 0xd3, 0x46, 0x77, 0x3b, 0xaf, 0xb6, 0xd8, 0x77, 0x6c, 0xb0, 0xa6, 0x89, 0xb6, 0x36,
  6255. 0xb2, 0x53, 0x50, 0xd9, 0xaa, 0x35, 0xb4, 0xc1, 0x1d, 0xca, 0x8a, 0x7a, 0x2b, 0xe7, 0x9e, 0x9b,
  6256. 0x5c, 0x56, 0x54, 0x9b, 0x39, 0x47, 0x7d, 0xb9, 0x9d, 0x51, 0xb1, 0x42, 0x87, 0xb4, 0x3a, 0xa5,
  6257. 0x5d, 0x97, 0x99, 0x60, 0xbd, 0x13, 0xed, 0xf2, 0xa1, 0xee, 0x17, 0x1c, 0x63, 0xbc, 0x5a, 0xa3,
  6258. 0x1e, 0x70, 0xda, 0xff, 0x6d, 0x5e, 0x2c, 0xe0, 0x29, 0x2d, 0x78, 0x06, 0x19, 0xca, 0x0c, 0x57,
  6259. 0x4c, 0x1f, 0x1c, 0xa0, 0x92, 0xd6, 0xfd, 0xdd, 0xb0, 0x8c, 0x67, 0xd2, 0x7c, 0xaa, 0xa4, 0xc1,
  6260. 0xe3, 0xaa, 0x22, 0x4e, 0xf3, 0x6c, 0xa8, 0xdc, 0x01, 0x54, 0x85, 0x52, 0x6e, 0x70, 0x29, 0x59,
  6261. 0xdf, 0xe0, 0x52, 0x12, 0x2f, 0xc5, 0x05, 0x91, 0x92, 0x89, 0xbd, 0xf6, 0x82, 0x3f, 0xbc, 0x96,
  6262. 0x58, 0x0a, 0xe5, 0x18, 0x77, 0xb7, 0xc9, 0x7a, 0xed, 0x4f, 0xc8, 0xe5, 0xfa, 0xd2, 0xe6, 0xf3,
  6263. 0xf0, 0x88, 0x94, 0x74, 0xc0, 0x96, 0x07, 0x8f, 0xb0, 0x0c, 0xe0, 0x5d, 0x91, 0x8c, 0x33, 0x3f,
  6264. 0x54, 0x91, 0x1c, 0xfb, 0x69, 0xbf, 0xcf, 0xa6, 0xb5, 0x6e, 0x39, 0x87, 0xc0, 0x78, 0xd9, 0xef,
  6265. 0x7b, 0xdf, 0x10, 0xb7, 0x1c, 0xda, 0x48, 0x9d, 0xf8, 0xfd, 0x94, 0xb6, 0x9f, 0xd8, 0x8c, 0x36,
  6266. 0x2d, 0xb7, 0x2b, 0x75, 0xf2, 0x2c, 0xc5, 0xcd, 0x27, 0x48, 0xdd, 0x87, 0x78, 0x5f, 0xb5, 0xb2,
  6267. 0x4e, 0x6d, 0xea, 0x4e, 0x8c, 0x72, 0x6d, 0x02, 0x18, 0x23, 0x1f, 0x28, 0xa2, 0xaf, 0xf0, 0xe0,
  6268. 0x2f, 0x67, 0x4b, 0x59, 0xb7, 0x8c, 0x67, 0x4c, 0xc7, 0x0b, 0xbc, 0x20, 0x6c, 0xde, 0x53, 0x85,
  6269. 0x67, 0xdc, 0x8f, 0x87, 0xf0, 0x5b, 0x8c, 0x4c, 0xc2, 0x3a, 0x5f, 0x06, 0xc2, 0xc9, 0xc8, 0x24,
  6270. 0x35, 0x35, 0xf3, 0x6e, 0x2b, 0x8c, 0x76, 0x52, 0xcd, 0xb4, 0x25, 0xf8, 0x42, 0xc6, 0x19, 0x55,
  6271. 0x90, 0xa3, 0x60, 0xe8, 0x1b, 0x25, 0x31, 0x9c, 0x23, 0xfe, 0x86, 0xad, 0x20, 0x47, 0xc1, 0xb0,
  6272. 0x4b, 0x0c, 0x40, 0xb7, 0x7f, 0xb1, 0x24, 0x16, 0xf0, 0x28, 0x1e, 0x77, 0xe8, 0x65, 0x70, 0x06,
  6273. 0x0e, 0xc3, 0x5d, 0x84, 0x95, 0xc1, 0xd9, 0x8b, 0x20, 0xc4, 0x3b, 0x3e, 0x78, 0x26, 0x0b, 0xfe,
  6274. 0x56, 0xd9, 0x6a, 0x71, 0x25, 0x90, 0xe6, 0x88, 0x49, 0x30, 0x09, 0x80, 0xe0, 0xca, 0xb7, 0x66,
  6275. 0x10, 0x48, 0x83, 0x8b, 0xdc, 0xbb, 0x29, 0x16, 0x81, 0x59, 0x9c, 0x3b, 0x3b, 0x90, 0xe6, 0xe4,
  6276. 0x1c, 0xc9, 0xa1, 0x1f, 0x9e, 0x5b, 0x27, 0xb6, 0x10, 0x84, 0x87, 0xe7, 0x21, 0x44, 0x18, 0x48,
  6277. 0x85, 0x15, 0x1e, 0xfa, 0xe6, 0x69, 0xa4, 0xfc, 0x08, 0xcf, 0x1a, 0xf3, 0xc0, 0x28, 0x95, 0x54,
  6278. 0x5d, 0xd8, 0x6d, 0xc2, 0x1d, 0x10, 0xec, 0x05, 0xa0, 0x7a, 0x08, 0x42, 0x57, 0x06, 0xf5, 0x9f,
  6279. 0x4b, 0xb7, 0xa3, 0x74, 0x64, 0xb8, 0x07, 0x57, 0xff, 0xd9, 0x7c, 0x1b, 0x78, 0xd4, 0xce, 0xfb,
  6280. 0xb6, 0x68, 0xd9, 0x36, 0xe0, 0x38, 0xf3, 0x2c, 0xd2, 0x85, 0x6d, 0x46, 0x26, 0x66, 0xfb, 0x7c,
  6281. 0x11, 0x84, 0x3d, 0xe0, 0x72, 0xc3, 0x77, 0x85, 0xe7, 0xce, 0x6d, 0x50, 0x4e, 0x7d, 0x19, 0x58,
  6282. 0x1b, 0xdb, 0xb0, 0x9c, 0x23, 0xcb, 0xc0, 0x83, 0x76, 0x19, 0x28, 0x0c, 0x3a, 0x83, 0x84, 0x2e,
  6283. 0xee, 0x08, 0x3e, 0x68, 0x97, 0x81, 0xea, 0x96, 0x64, 0xc8, 0x92, 0x07, 0x2a, 0xc7, 0xf3, 0x66,
  6284. 0x7b, 0xd4, 0x4c, 0xd6, 0xb5, 0xc6, 0x64, 0xbb, 0x6d, 0xbd, 0x2e, 0xe6, 0x06, 0x59, 0xce, 0xa6,
  6285. 0x05, 0x8f, 0x94, 0x60, 0xf3, 0x2b, 0xfd, 0xb4, 0xff, 0xc1, 0xde, 0xb9, 0x2d, 0x0a, 0x1d, 0xf9,
  6286. 0x25, 0x50, 0x01, 0xc8, 0xae, 0xdb, 0xe9, 0x98, 0x0c, 0x6c, 0x8d, 0xc8, 0x4e, 0xcd, 0x3d, 0xf1,
  6287. 0x56, 0x22, 0xcf, 0xf5, 0x80, 0x76, 0x75, 0x0a, 0x23, 0xfb, 0x7d, 0x1d, 0xf8, 0x3a, 0xe9, 0xa7,
  6288. 0x26, 0x26, 0x9a, 0x8d, 0x15, 0x64, 0x70, 0x6f, 0x94, 0xe8, 0x13, 0x02, 0x1f, 0x95, 0x58, 0x1b,
  6289. 0x38, 0xde, 0x17, 0x5b, 0x65, 0x2a, 0xe0, 0x46, 0x96, 0x73, 0x5a, 0xeb, 0xd9, 0x1c, 0xc0, 0x49,
  6290. 0x2f, 0x87, 0xa9, 0xa6, 0x85, 0xe4, 0x7c, 0x16, 0x1e, 0xc1, 0x44, 0xa9, 0x3e, 0x4d, 0xfb, 0x7b,
  6291. 0x7b, 0xef, 0x9f, 0x73, 0xfa, 0xba, 0x82, 0xb4, 0x97, 0x48, 0x02, 0x4f, 0xcb, 0x19, 0x3a, 0xd5,
  6292. 0x5e, 0x18, 0x40, 0xe8, 0x9a, 0x0a, 0x25, 0xb1, 0x37, 0x29, 0x31, 0x47, 0xee, 0xb1, 0x63, 0x42,
  6293. 0x6e, 0x64, 0x52, 0x19, 0xfa, 0x46, 0xe5, 0xc1, 0x48, 0xf9, 0x10, 0x9b, 0x6d, 0x3d, 0x09, 0xf4,
  6294. 0x2e, 0x92, 0x0f, 0x64, 0x14, 0x61, 0x72, 0x9c, 0x29, 0xbc, 0xb7, 0x8d, 0x87, 0x5b, 0x9c, 0xcc,
  6295. 0x36, 0x99, 0x88, 0xf7, 0xd5, 0xa1, 0xa6, 0xb3, 0x20, 0x4e, 0x3c, 0x29, 0x79, 0xb5, 0x4d, 0x39,
  6296. 0xf7, 0x7c, 0x43, 0xac, 0x9e, 0xa7, 0x3a, 0x28, 0x95, 0x4e, 0xe7, 0x94, 0x4d, 0x24, 0xda, 0x5b,
  6297. 0x05, 0x5d, 0xb1, 0x6c, 0x2f, 0xc5, 0x40, 0x36, 0x8b, 0x67, 0x27, 0x64, 0xeb, 0x36, 0x9b, 0x05,
  6298. 0x12, 0x59, 0x38, 0xbc, 0x18, 0x85, 0xab, 0x53, 0x83, 0x20, 0x9b, 0xe9, 0xac, 0x5a, 0x2a, 0xe0,
  6299. 0x4c, 0xfb, 0xff, 0x2e, 0x88, 0x65, 0x7b, 0x61, 0x06, 0x4a, 0x7a, 0x2c, 0x27, 0x33, 0x9d, 0x04,
  6300. 0x43, 0xac, 0xea, 0xdc, 0x59, 0x48, 0x52, 0xe8, 0x57, 0x40, 0x85, 0x62, 0xee, 0xf2, 0x16, 0xeb,
  6301. 0x85, 0x4e, 0xc2, 0xf4, 0x62, 0xda, 0x16, 0xeb, 0x6b, 0xe4, 0x40, 0x0c, 0xa2, 0xc3, 0x21, 0x2c,
  6302. 0xab, 0x8c, 0x3e, 0x97, 0x81, 0x4d, 0xa2, 0x6e, 0xe0, 0xc9, 0x10, 0x54, 0x56, 0x44, 0x76, 0x07,
  6303. 0x17, 0x54, 0xa5, 0x8c, 0x92, 0x7c, 0x28, 0x43, 0x7b, 0x3a, 0xb2, 0x6e, 0xc1, 0x3d, 0xa6, 0x83,
  6304. 0xe4, 0xf8, 0xd8, 0x89, 0x81, 0xe4, 0x5d, 0x9a, 0x74, 0xde, 0xc4, 0xa0, 0x3b, 0x42, 0xd0, 0x59,
  6305. 0xa3, 0xce, 0xdc, 0x06, 0x52, 0x03, 0x8f, 0x18, 0x81, 0xe0, 0xb5, 0xc5, 0x72, 0x90, 0xe6, 0xb1,
  6306. 0x2a, 0x74, 0xc0, 0xee, 0xc2, 0xfd, 0xf6, 0x8e, 0xc4, 0x03, 0xbc, 0xc9, 0x05, 0x72, 0xb4, 0xf7,
  6307. 0x89, 0xfc, 0x58, 0x1b, 0x93, 0x1a, 0x97, 0xb5, 0xb0, 0xb3, 0xb8, 0x6b, 0x81, 0x56, 0xa0, 0xc7,
  6308. 0x08, 0xb3, 0x59, 0xcb, 0x94, 0x8d, 0x5a, 0x96, 0x5b, 0x63, 0xca, 0x46, 0x2d, 0x0b, 0xee, 0x9e,
  6309. 0x58, 0xe1, 0x43, 0x4d, 0x1c, 0x3a, 0x79, 0x0d, 0x41, 0x67, 0x99, 0x38, 0xf6, 0x3d, 0x71, 0x13,
  6310. 0x12, 0x16, 0xda, 0x9b, 0xcf, 0x8c, 0x1c, 0xfb, 0x49, 0xfa, 0xc5, 0x17, 0x91, 0xdd, 0x55, 0xda,
  6311. 0xb4, 0xcc, 0x1e, 0xf0, 0x3e, 0x45, 0x16, 0xcc, 0xc9, 0xd9, 0xc6, 0x95, 0x73, 0x22, 0xcf, 0x72,
  6312. 0xd7, 0x02, 0xaf, 0x98, 0xd3, 0x91, 0x78, 0x80, 0x2b, 0x2b, 0x92, 0x63, 0x65, 0xfc, 0x1c, 0x0f,
  6313. 0x47, 0x75, 0x92, 0xdb, 0x9d, 0x60, 0xac, 0xe1, 0xd8, 0x0d, 0xdd, 0x2d, 0x81, 0x3d, 0xc0, 0x1d,
  6314. 0x39, 0x18, 0x56, 0x6f, 0xde, 0x9b, 0x62, 0x8d, 0xe4, 0xe1, 0x43, 0x3e, 0x79, 0xa6, 0x6c, 0x05,
  6315. 0xdd, 0x24, 0xea, 0xcb, 0x44, 0xfd, 0x48, 0x8d, 0xdb, 0x7f, 0xd5, 0x10, 0x8b, 0x74, 0x55, 0x0b,
  6316. 0xfc, 0x82, 0x3c, 0xcd, 0xd9, 0x44, 0xe1, 0x11, 0xfc, 0x02, 0x97, 0x06, 0x74, 0x13, 0x8b, 0x43,
  6317. 0x17, 0xd1, 0x9e, 0x00, 0xc9, 0xbb, 0x2b, 0x56, 0x64, 0x6e, 0xfc, 0x22, 0xc8, 0xfd, 0xc2, 0x04,
  6318. 0xf6, 0xde, 0x8c, 0xcc, 0xcd, 0x49, 0x90, 0x9f, 0x98, 0x00, 0xe4, 0x59, 0xd6, 0x6b, 0xf6, 0x3a,
  6319. 0xd1, 0xa9, 0x1c, 0xd8, 0x5d, 0x7e, 0xc7, 0xe4, 0xfb, 0x44, 0xa7, 0x72, 0x00, 0x3e, 0x03, 0xcd,
  6320. 0xeb, 0x54, 0x45, 0x0e, 0x4e, 0x66, 0xb8, 0x06, 0xf4, 0x27, 0x2a, 0x9a, 0x44, 0xe2, 0x6e, 0x29,
  6321. 0x23, 0x17, 0x4b, 0x24, 0xa4, 0x51, 0x13, 0x48, 0x5c, 0x05, 0x8c, 0x5c, 0x2a, 0x91, 0xb0, 0x06,
  6322. 0x18, 0x79, 0x5b, 0x08, 0x75, 0x2a, 0xfd, 0x53, 0x99, 0xfb, 0xa7, 0xd2, 0x7e, 0x2c, 0xa1, 0x4e,
  6323. 0xe5, 0x13, 0x99, 0x3f, 0x91, 0xde, 0xb6, 0x58, 0x52, 0xa7, 0xa1, 0x1f, 0x9c, 0xda, 0x7b, 0x33,
  6324. 0x8b, 0xea, 0x34, 0x3c, 0x38, 0x0d, 0xf0, 0xd0, 0x2c, 0xcf, 0xd8, 0xa2, 0xe0, 0x11, 0x5c, 0x66,
  6325. 0x5f, 0x16, 0x7a, 0x30, 0x52, 0xae, 0x4c, 0xe2, 0x73, 0x26, 0x36, 0xa6, 0x9b, 0xcc, 0xe6, 0x4a,
  6326. 0x89, 0x0f, 0x97, 0x70, 0x3b, 0x12, 0x4c, 0xb4, 0x3a, 0xa9, 0x26, 0x6f, 0x47, 0xa6, 0x49, 0x51,
  6327. 0x99, 0x94, 0x3b, 0x55, 0x8b, 0x75, 0x18, 0x46, 0x6e, 0x5e, 0xd5, 0x53, 0xb5, 0x63, 0xe4, 0x30,
  6328. 0xfe, 0x91, 0xd8, 0xe0, 0xb3, 0xdd, 0x8a, 0x14, 0xd6, 0xec, 0x15, 0xb5, 0x34, 0x29, 0x2a, 0x62,
  6329. 0xd8, 0x16, 0x4b, 0x3a, 0x4f, 0xfd, 0xbe, 0xfe, 0x9c, 0xa3, 0xd1, 0xa2, 0xce, 0xd3, 0x67, 0x1a,
  6330. 0x0b, 0xff, 0xb3, 0x44, 0xb9, 0xe6, 0x14, 0x67, 0x04, 0x90, 0xb8, 0xe5, 0xbe, 0xb8, 0x13, 0xc9,
  6331. 0x44, 0xf9, 0xa1, 0xca, 0xa4, 0xc1, 0xd0, 0x3b, 0x71, 0xbc, 0x46, 0x91, 0xa7, 0x0d, 0xa0, 0x43,
  6332. 0x8b, 0xa9, 0x9f, 0xac, 0x3d, 0x10, 0x4d, 0xec, 0xe2, 0x4c, 0xa9, 0x0c, 0xe4, 0xc5, 0x01, 0x09,
  6333. 0x68, 0x3f, 0x22, 0x12, 0x48, 0x29, 0x86, 0x94, 0xb4, 0x6a, 0x53, 0x9b, 0x1c, 0x76, 0xa5, 0x4e,
  6334. 0x2a, 0xe6, 0xf4, 0x40, 0x34, 0x13, 0xcc, 0x47, 0xcf, 0x35, 0x9e, 0xb3, 0x51, 0xf8, 0x59, 0x41,
  6335. 0xda, 0x67, 0x48, 0x82, 0x04, 0x24, 0x93, 0x46, 0x46, 0x11, 0xd4, 0x3a, 0xd6, 0x22, 0x39, 0x00,
  6336. 0x6d, 0x58, 0xce, 0xbe, 0x65, 0xc0, 0x0c, 0x33, 0x99, 0xe7, 0x2a, 0x19, 0x28, 0xbe, 0x23, 0x17,
  6337. 0x8c, 0xf2, 0x21, 0x2c, 0x50, 0x1e, 0x08, 0x05, 0xa5, 0xb6, 0x03, 0xc1, 0x68, 0x0e, 0x08, 0xc2,
  6338. 0x83, 0x7a, 0x42, 0x5d, 0xc0, 0xda, 0xca, 0x54, 0xa8, 0xf2, 0xc2, 0x68, 0x99, 0xf8, 0x99, 0x49,
  6339. 0x0b, 0x3e, 0xd6, 0xa5, 0x88, 0xb5, 0xcb, 0xa0, 0x57, 0x0e, 0xf3, 0xca, 0x41, 0x40, 0xfd, 0x14,
  6340. 0x93, 0x39, 0xe9, 0xe2, 0x97, 0xb7, 0xca, 0x4b, 0x7a, 0x07, 0xc4, 0xe1, 0x77, 0x7e, 0x2c, 0x76,
  6341. 0x2b, 0xb7, 0xfa, 0x20, 0x32, 0xe5, 0x51, 0xc5, 0x10, 0xe8, 0x4a, 0xce, 0xb6, 0xbb, 0xdc, 0x97,
  6342. 0x14, 0xba, 0x17, 0x95, 0x06, 0xb1, 0x2f, 0xee, 0x60, 0x24, 0xb7, 0x79, 0x0b, 0x6e, 0x70, 0x56,
  6343. 0x53, 0x30, 0xba, 0xb4, 0xd3, 0x06, 0x10, 0xa7, 0x2b, 0x3d, 0x3d, 0x48, 0xaa, 0xd9, 0x58, 0x47,
  6344. 0xac, 0x9a, 0x51, 0xe2, 0xf7, 0x23, 0x59, 0xf8, 0x85, 0x36, 0xf6, 0x1e, 0xcf, 0x8a, 0x19, 0x25,
  6345. 0xcf, 0x22, 0x59, 0x9c, 0x68, 0x83, 0xe7, 0x3d, 0x38, 0x3e, 0x5c, 0xfc, 0x76, 0xbd, 0xdc, 0xe6,
  6346. 0xfd, 0x34, 0x25, 0x0b, 0x58, 0xfd, 0x76, 0xa5, 0xbc, 0x2f, 0xb6, 0xa0, 0x1b, 0x3f, 0x33, 0x2a,
  6347. 0x07, 0x3b, 0x8b, 0xd3, 0x44, 0x17, 0xa9, 0xe1, 0x2b, 0x3d, 0x1e, 0xf0, 0x5e, 0x11, 0xeb, 0x98,
  6348. 0x38, 0xed, 0xff, 0xba, 0x2c, 0xe6, 0x61, 0x72, 0xde, 0xbf, 0x15, 0xbb, 0xa5, 0x5f, 0xaa, 0x6c,
  6349. 0x28, 0x9c, 0x8e, 0x8a, 0xc2, 0x6d, 0x7d, 0xec, 0x38, 0x48, 0x59, 0xb2, 0x3c, 0x41, 0x80, 0xf7,
  6350. 0x91, 0x68, 0x95, 0xed, 0x5d, 0x00, 0x92, 0xe1, 0xc8, 0x5d, 0x65, 0x28, 0xf7, 0xa9, 0x6c, 0x0c,
  6351. 0xda, 0x07, 0x2e, 0x54, 0xfa, 0x93, 0x1e, 0xd1, 0x95, 0xcf, 0x54, 0x5c, 0x91, 0x13, 0xdd, 0xad,
  6352. 0xbb, 0x46, 0x87, 0xc1, 0x22, 0xeb, 0x2d, 0x81, 0x71, 0xde, 0x0f, 0x46, 0x19, 0xde, 0x8e, 0x70,
  6353. 0x1f, 0x47, 0x60, 0xf4, 0x3e, 0x18, 0x65, 0x9f, 0x20, 0x11, 0x82, 0x00, 0xe2, 0xc2, 0xf4, 0xa2,
  6354. 0x76, 0x8d, 0x03, 0xe3, 0xf9, 0x61, 0x7a, 0x41, 0x37, 0x47, 0x6c, 0x6f, 0xfd, 0x34, 0x0a, 0x7d,
  6355. 0x2a, 0xd8, 0x16, 0xcb, 0xde, 0x9e, 0xa5, 0x51, 0x78, 0x82, 0xd5, 0x9a, 0x4d, 0x0e, 0x20, 0x95,
  6356. 0x31, 0x52, 0x47, 0xf6, 0xfa, 0x0d, 0xfa, 0x5a, 0xa6, 0x95, 0xfb, 0xe9, 0x60, 0x23, 0x30, 0x3d,
  6357. 0x28, 0xc9, 0xcb, 0x8b, 0x38, 0x9b, 0x96, 0x89, 0xf7, 0x7d, 0x89, 0x05, 0xd9, 0x15, 0x39, 0x26,
  6358. 0xd7, 0x33, 0x9f, 0x0a, 0x21, 0xd5, 0x75, 0xed, 0xfc, 0x1d, 0xf6, 0xeb, 0x42, 0xab, 0xa8, 0xf8,
  6359. 0x3b, 0xe8, 0xd5, 0x45, 0xd3, 0xef, 0x89, 0x36, 0xef, 0x3e, 0xf8, 0x41, 0x9a, 0x46, 0xf8, 0xb7,
  6360. 0x14, 0x18, 0x39, 0xe1, 0x6d, 0x46, 0x1c, 0x10, 0xa0, 0x14, 0xdd, 0x63, 0xb1, 0x89, 0x0e, 0x66,
  6361. 0x42, 0xb9, 0x4d, 0x7b, 0xd8, 0xa3, 0x93, 0xba, 0x5e, 0xbf, 0x23, 0x76, 0x2a, 0x0e, 0x69, 0x42,
  6362. 0xa5, 0xab, 0x7c, 0xad, 0xc9, 0x7a, 0xa6, 0xba, 0x36, 0x61, 0x69, 0xb9, 0x85, 0x59, 0x79, 0x9f,
  6363. 0xdb, 0x74, 0x59, 0xe3, 0xa5, 0xc5, 0x4b, 0xb3, 0x7c, 0xb1, 0xdb, 0x77, 0x79, 0x47, 0x78, 0x65,
  6364. 0x17, 0x4e, 0x32, 0x5c, 0xb8, 0xda, 0x76, 0x4e, 0x30, 0xb5, 0xfb, 0xbd, 0x94, 0xfa, 0x83, 0x85,
  6365. 0xb0, 0x33, 0x77, 0xf7, 0x7b, 0x71, 0x2b, 0x14, 0xac, 0x04, 0xbc, 0x2d, 0x62, 0xe9, 0x6c, 0x99,
  6366. 0x8e, 0x48, 0xc9, 0x8d, 0xaf, 0x01, 0x9d, 0xce, 0x97, 0xf1, 0x90, 0x14, 0xd2, 0x78, 0x40, 0xba,
  6367. 0x0d, 0x1c, 0xbe, 0xe3, 0x08, 0x44, 0xb7, 0x6f, 0xf3, 0xae, 0xf0, 0x72, 0x15, 0xa4, 0x98, 0xdc,
  6368. 0xb8, 0xfd, 0x65, 0x7b, 0x9f, 0x81, 0x38, 0x95, 0x8d, 0x67, 0xd0, 0x23, 0xc3, 0x4d, 0x7a, 0x31,
  6369. 0x29, 0x60, 0xf6, 0xe7, 0xdb, 0x84, 0xe8, 0xa6, 0x17, 0x75, 0x01, 0xe3, 0x85, 0xbe, 0x2c, 0x35,
  6370. 0x64, 0x34, 0xec, 0xd3, 0x1b, 0x48, 0x01, 0x60, 0xfb, 0x8f, 0x66, 0x85, 0x28, 0xef, 0x91, 0xbb,
  6371. 0xa5, 0x80, 0xbf, 0xaa, 0x77, 0xb3, 0xd0, 0xf2, 0x31, 0xe7, 0xc1, 0x25, 0xf3, 0x91, 0x68, 0x55,
  6372. 0xae, 0xdb, 0xe5, 0x99, 0x0a, 0x74, 0x5f, 0x07, 0x98, 0x7e, 0xb9, 0x8b, 0xc6, 0xf6, 0xce, 0x5d,
  6373. 0xaf, 0xca, 0xc5, 0xf0, 0x8e, 0x46, 0x5c, 0x79, 0xc5, 0x1c, 0x87, 0x77, 0xa0, 0x97, 0xef, 0xf8,
  6374. 0xae, 0xd8, 0xa9, 0xde, 0xc0, 0xab, 0xbf, 0x84, 0x96, 0xfb, 0x76, 0x79, 0x0d, 0xaf, 0xfe, 0x96,
  6375. 0x77, 0x30, 0xa2, 0xe1, 0x55, 0x9b, 0xca, 0x7b, 0x78, 0xbf, 0x93, 0x39, 0xb5, 0x37, 0xe5, 0x99,
  6376. 0x84, 0x48, 0x3d, 0xe5, 0x4d, 0x8b, 0x2c, 0x5f, 0x00, 0x5c, 0x7e, 0x53, 0xe7, 0x63, 0x71, 0xab,
  6377. 0xf2, 0x59, 0xcf, 0x35, 0xdf, 0xdf, 0x78, 0x9e, 0x98, 0x0f, 0x65, 0x21, 0xed, 0x07, 0xd8, 0xf0,
  6378. 0xdc, 0xd9, 0x13, 0x37, 0x8f, 0xf9, 0xd3, 0x2a, 0xfa, 0x6a, 0xae, 0xf2, 0x11, 0xaf, 0xbb, 0xa2,
  6379. 0x39, 0x53, 0xff, 0xce, 0xec, 0xcf, 0x67, 0x44, 0xd3, 0x36, 0x3a, 0x82, 0x74, 0x61, 0xca, 0x8b,
  6380. 0x34, 0x24, 0x1a, 0xfc, 0x22, 0x78, 0xa6, 0x7b, 0x9d, 0xd2, 0x40, 0xae, 0x14, 0x29, 0xfe, 0x62,
  6381. 0xaa, 0x81, 0x94, 0x63, 0x1d, 0xa9, 0x92, 0x0d, 0x33, 0xb1, 0x5f, 0x4d, 0x21, 0xe5, 0x50, 0x16,
  6382. 0x74, 0xdb, 0x16, 0x2a, 0xfc, 0x60, 0x1c, 0x44, 0xf6, 0xb3, 0xa9, 0x06, 0x50, 0x0e, 0x80, 0x80,
  6383. 0x77, 0xea, 0x64, 0x61, 0xd9, 0xf4, 0xe1, 0x54, 0x03, 0x28, 0xc4, 0xae, 0xce, 0x65, 0xa9, 0x7e,
  6384. 0xdd, 0x14, 0xd2, 0x2c, 0xbc, 0x16, 0x61, 0xbf, 0x34, 0x5b, 0x84, 0x9f, 0x47, 0x61, 0xe7, 0x7f,
  6385. 0xce, 0x88, 0xcd, 0x49, 0xc9, 0x64, 0xd1, 0xd8, 0xfb, 0xa6, 0x68, 0xda, 0x6f, 0xd1, 0xf8, 0x82,
  6386. 0xe7, 0xdc, 0xc3, 0x95, 0xbd, 0x75, 0xfa, 0x3a, 0xba, 0x94, 0x49, 0xb7, 0x86, 0xf2, 0x1e, 0x8a,
  6387. 0x45, 0xa3, 0x32, 0xa9, 0xa1, 0x6c, 0x9d, 0x8e, 0x67, 0xbe, 0xf7, 0xa6, 0x98, 0xbf, 0x90, 0xf9,
  6388. 0xb0, 0x35, 0x77, 0x05, 0x0e, 0xb9, 0x9d, 0x23, 0x71, 0x03, 0x7e, 0x55, 0x3f, 0xa6, 0xdc, 0x15,
  6389. 0x0d, 0x9c, 0x89, 0x5b, 0x33, 0x73, 0xdd, 0x65, 0x20, 0xa0, 0x81, 0x5d, 0xfd, 0xf1, 0x5f, 0x67,
  6390. 0x2c, 0x56, 0xcb, 0xae, 0x60, 0x86, 0x8f, 0x6a, 0xdf, 0x7d, 0xdf, 0x82, 0x11, 0xd4, 0x00, 0x8f,
  6391. 0x69, 0x1c, 0x80, 0x69, 0x7f, 0x2c, 0xe6, 0xd1, 0x02, 0x2a, 0x62, 0x9c, 0xa9, 0x8a, 0xd1, 0x8d,
  6392. 0xaa, 0xf2, 0x35, 0x19, 0x8e, 0x0a, 0x3f, 0x0a, 0xfd, 0xf9, 0xac, 0xd8, 0xb5, 0xdf, 0x8f, 0x4f,
  6393. 0xb3, 0xc1, 0x49, 0xbb, 0xaa, 0xbc, 0x65, 0xb6, 0xf6, 0x96, 0xdf, 0x51, 0xe3, 0xb2, 0xff, 0xf1,
  6394. 0x60, 0xb9, 0xfc, 0x8f, 0x07, 0x50, 0xa7, 0x14, 0xfc, 0xdd, 0xe2, 0x5c, 0x17, 0x1e, 0x3b, 0xdf,
  6395. 0x12, 0x3b, 0xf5, 0xe9, 0x57, 0xd7, 0xf0, 0x35, 0xcb, 0xf0, 0x57, 0x42, 0x6c, 0x4f, 0x6b, 0x48,
  6396. 0x56, 0x4a, 0x56, 0x44, 0x3a, 0xbc, 0x5f, 0xb5, 0xa2, 0x09, 0xe8, 0xe3, 0xd7, 0x32, 0x1f, 0x92,
  6397. 0x55, 0x79, 0xdf, 0x9d, 0xb0, 0xd2, 0xce, 0x75, 0xed, 0xba, 0x88, 0x74, 0x76, 0x7b, 0x2c, 0x56,
  6398. 0xcb, 0xcf, 0x36, 0xe9, 0xd3, 0x1b, 0xe8, 0xe2, 0xe1, 0x75, 0x5d, 0x4c, 0x5f, 0x30, 0x68, 0x50,
  6399. 0x3f, 0x14, 0xcb, 0xf6, 0x77, 0x6b, 0x1e, 0x7b, 0x7a, 0xf3, 0xcb, 0xf4, 0xd4, 0x75, 0xad, 0xbc,
  6400. 0x6f, 0x8b, 0x85, 0x52, 0xa1, 0x2b, 0x7b, 0x0f, 0xae, 0x6b, 0x8e, 0x9a, 0xec, 0x12, 0xbe, 0xfd,
  6401. 0x17, 0x33, 0x62, 0x1e, 0x84, 0x82, 0x07, 0x00, 0xd8, 0x03, 0x08, 0x7e, 0x95, 0xd9, 0xd7, 0x5a,
  6402. 0x74, 0xd5, 0x42, 0xe7, 0xb0, 0xd1, 0x74, 0x0b, 0x9d, 0xbf, 0xde, 0x42, 0x17, 0xae, 0xb7, 0xd0,
  6403. 0xc5, 0xeb, 0x2d, 0x74, 0xe9, 0x3a, 0x0b, 0x5d, 0xae, 0xd9, 0x50, 0xfb, 0x2f, 0x67, 0xc4, 0x22,
  6404. 0x29, 0xf2, 0x5f, 0xc3, 0x6c, 0xff, 0x74, 0x32, 0x70, 0xd5, 0x66, 0x37, 0x73, 0xf5, 0xec, 0x66,
  6405. 0xaf, 0x99, 0xdd, 0xef, 0x8a, 0xb7, 0x69, 0xf7, 0xc4, 0x02, 0x4c, 0x2a, 0x2f, 0x3f, 0xe8, 0x61,
  6406. 0x4d, 0xd2, 0x07, 0x3d, 0xbf, 0x91, 0x26, 0xdb, 0x5a, 0x2c, 0x5b, 0x89, 0xe1, 0x06, 0xd5, 0xc0,
  6407. 0xda, 0x07, 0x3c, 0x82, 0x83, 0x43, 0x19, 0x90, 0x7c, 0xf0, 0x19, 0xd6, 0x1d, 0xb4, 0xcd, 0xd9,
  6408. 0x01, 0x5c, 0xbb, 0xee, 0x70, 0xbc, 0x5d, 0xc2, 0xb7, 0x7f, 0x3e, 0x23, 0x16, 0x9c, 0x0c, 0x2a,
  6409. 0x02, 0x9e, 0xb9, 0x5e, 0xc0, 0xb3, 0xd7, 0x0b, 0x78, 0xee, 0x7a, 0x01, 0xcf, 0x4f, 0x08, 0xb8,
  6410. 0xf3, 0x8b, 0x19, 0xfe, 0x88, 0x7e, 0x6a, 0x66, 0xb3, 0x2d, 0x96, 0x82, 0xbd, 0xaa, 0x08, 0x17,
  6411. 0x83, 0x3d, 0x14, 0xe0, 0xa6, 0x58, 0x08, 0xf6, 0xac, 0xf8, 0xe6, 0xba, 0xf3, 0xc1, 0x1e, 0xfd,
  6412. 0x97, 0xa4, 0x51, 0xae, 0xec, 0x67, 0xe0, 0x8d, 0x2e, 0xff, 0x02, 0x3a, 0x5f, 0x73, 0xe3, 0xef,
  6413. 0xd3, 0xe8, 0x17, 0xde, 0xdd, 0x2f, 0x0a, 0xa3, 0x4f, 0x47, 0x85, 0xf2, 0xcd, 0xa8, 0x2c, 0x03,
  6414. 0x1d, 0xb5, 0x3b, 0xba, 0xd6, 0x06, 0x3a, 0xdf, 0xb0, 0x5f, 0x58, 0x83, 0x47, 0xbd, 0xea, 0xbf,
  6415. 0xb8, 0x94, 0x08, 0xfa, 0x30, 0xfc, 0x91, 0x58, 0x3d, 0xd8, 0xab, 0xa6, 0x12, 0xd7, 0x04, 0x9d,
  6416. 0x40, 0xac, 0x58, 0x2c, 0xf4, 0xfe, 0xb0, 0xd6, 0xfb, 0x16, 0xf4, 0x5e, 0x61, 0x3f, 0x46, 0x4d,
  6417. 0x53, 0xa6, 0xf0, 0x48, 0xcc, 0xc3, 0xaf, 0x69, 0xb9, 0xe2, 0xa5, 0xff, 0x0a, 0xf4, 0xbd, 0x7a,
  6418. 0x4a, 0x8b, 0x73, 0xa1, 0x91, 0x7d, 0xa9, 0xd9, 0xb4, 0x0e, 0x55, 0xa4, 0xca, 0x9c, 0x02, 0x8f,
  6419. 0xa4, 0xa6, 0x7f, 0x91, 0x7e, 0x24, 0xbc, 0xa7, 0x9f, 0x63, 0x29, 0x52, 0xfd, 0x24, 0x7e, 0x57,
  6420. 0x34, 0x0a, 0x99, 0x9f, 0xd5, 0xbc, 0x02, 0x10, 0xec, 0x07, 0xf0, 0x7d, 0xad, 0xa2, 0x30, 0xb7,
  6421. 0x06, 0x40, 0xbf, 0x3a, 0xef, 0x89, 0xf5, 0x5a, 0x57, 0x20, 0x9d, 0x5d, 0xd1, 0x50, 0x48, 0x2b,
  6422. 0xf3, 0xa2, 0x65, 0x22, 0x1c, 0x85, 0x9d, 0x91, 0xd8, 0xac, 0x34, 0x38, 0x91, 0xf9, 0xd9, 0xd4,
  6423. 0x7f, 0xdb, 0x50, 0x1b, 0xcc, 0xec, 0xc4, 0x60, 0xf0, 0x9f, 0x55, 0x14, 0x43, 0xae, 0x5f, 0xf0,
  6424. 0x19, 0xec, 0x3b, 0x30, 0x0a, 0x2f, 0xf8, 0xca, 0xc2, 0x7e, 0x5f, 0xc2, 0x94, 0xfd, 0xa2, 0xf3,
  6425. 0x5c, 0xb4, 0xa6, 0xbc, 0x96, 0xc6, 0xfb, 0x76, 0x4d, 0xba, 0xf8, 0x91, 0xf0, 0x34, 0x2c, 0xc9,
  6426. 0xf9, 0xb1, 0xb8, 0x4d, 0x72, 0x9e, 0x80, 0x5c, 0x25, 0xeb, 0x87, 0xe2, 0x16, 0xe1, 0x2f, 0x29,
  6427. 0x75, 0x12, 0xf9, 0x75, 0xb1, 0x79, 0xa2, 0xe2, 0x2c, 0x92, 0x45, 0xed, 0xbf, 0x85, 0x58, 0x4b,
  6428. 0x99, 0xa9, 0x58, 0xca, 0x63, 0xb1, 0x6c, 0xa1, 0x5f, 0xca, 0xb2, 0x3e, 0x14, 0x1b, 0xf5, 0xae,
  6429. 0x61, 0xda, 0xf7, 0x6b, 0xd3, 0x6e, 0xc2, 0xb4, 0x2d, 0x88, 0xe7, 0xfa, 0x1f, 0xc4, 0x8e, 0xa5,
  6430. 0xd0, 0x4d, 0xd4, 0xea, 0xb8, 0x38, 0xa3, 0x9b, 0x71, 0x19, 0x5d, 0xfd, 0x1f, 0x8c, 0xcc, 0x5e,
  6431. 0xf1, 0x0f, 0x46, 0xe6, 0xca, 0x7f, 0x30, 0xd2, 0xf9, 0xbb, 0x19, 0xb1, 0x56, 0x7f, 0xc1, 0x97,
  6432. 0x99, 0xcd, 0x3f, 0x33, 0x10, 0x7d, 0x28, 0xb6, 0x5d, 0xc6, 0x86, 0x0e, 0x33, 0xd6, 0x49, 0x2d,
  6433. 0x2a, 0x6d, 0x59, 0x36, 0xf4, 0x76, 0xac, 0x13, 0xf2, 0x9f, 0xd5, 0x66, 0xe8, 0x48, 0xcb, 0x66,
  6434. 0x8b, 0xf5, 0x66, 0xf0, 0x16, 0xd7, 0x8c, 0xa5, 0xb4, 0x54, 0xe6, 0xbd, 0xaf, 0xc5, 0xf6, 0x34,
  6435. 0xa1, 0x82, 0x46, 0xde, 0xaa, 0x69, 0xc4, 0xab, 0x6a, 0x84, 0xa0, 0xa4, 0x97, 0xf2, 0x3f, 0x70,
  6436. 0xcc, 0x56, 0xfe, 0x03, 0x47, 0xe7, 0xeb, 0xe2, 0xe6, 0x04, 0xfa, 0x2a, 0x4d, 0x75, 0xfe, 0xdf,
  6437. 0x4c, 0x69, 0x6b, 0x16, 0xfb, 0x3b, 0x53, 0xe5, 0x39, 0x9d, 0xcf, 0x57, 0x2c, 0xf8, 0x6f, 0x66,
  6438. 0x44, 0x6b, 0x3f, 0x0c, 0xbf, 0xe4, 0x04, 0x7f, 0x1f, 0x4a, 0xa6, 0xce, 0x23, 0x71, 0x6b, 0xca,
  6439. 0x8c, 0x41, 0x4d, 0x97, 0x15, 0xfa, 0xef, 0xc4, 0xee, 0xc1, 0x30, 0x4d, 0x73, 0xf5, 0x65, 0x05,
  6440. 0x74, 0x4d, 0x65, 0xfc, 0x49, 0x69, 0xa0, 0x5f, 0xa9, 0xd8, 0xe6, 0x97, 0xcc, 0xba, 0x97, 0x3c,
  6441. 0xd9, 0xf9, 0xe9, 0xb6, 0x0c, 0xe3, 0x77, 0xf9, 0x9b, 0xa7, 0x77, 0xf1, 0x05, 0xef, 0x65, 0xa7,
  6442. 0xef, 0x9d, 0x7f, 0x70, 0xba, 0x88, 0xff, 0xb7, 0xf2, 0x1b, 0xff, 0x14, 0x00, 0x00, 0xff, 0xff,
  6443. 0xd4, 0x92, 0x54, 0xb0, 0xce, 0x52, 0x00, 0x00,
  6444. }